#seznamUkol {
    min-height: 400px;
}
#ukolnicek h2 {
    padding: 0 0 20px 0;
}
#ukolnicek h3 {
    text-align: center;
    display: none;
}
#ukolnicek ul {
    margin: 0;
    padding: 0;
}
#ukolnicek ul li {
    list-style-type: none;
    cursor: pointer;
    position: relative;
    padding: 12px 8px 12px 40px;
    background: #eee;
    font-size: 18px;
    transition: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#ukolnicek ul li:nth-child(odd) {
    background: #f9f9f9;
}
#ukolnicek ul li:hover {
    background: burlywood;
}
#ukolnicek ul li.checked {
    background: #888;
    color: #fff;
    text-decoration: line-through;
}
#ukolnicek ul li.checked::before {
    content: '';
    position: absolute;
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    top: 10px;
    left: 16px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
}
#ukolnicek .close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 16px 12px 16px;
}
#ukolnicek .close:hover {
    background-color: #f44336;
    color: white;
}
#zadejUkol {
    background-color: tomato;
    padding: 30px 20px;
    color: white;
    text-align: center;
    border-radius: 10px 10px 0 0;
}
#zadejUkol:after {
    content: "";
    display: table;
    clear: both;
}
#ukolnicek input {
    border: none;
    width: 75%;
    padding: 10px;
    float: left;
    font-size: 16px;
}
#ukolnicek .addBtn {
    padding: 10px 10px 9px 10px;
    width: 25%;
    background: #d9d9d9;
    color: #555;
    float: left;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
#ukolnicek .addBtn:hover {
    background-color: #bbb;
}

@media only screen and (min-width: 580px) {
#zadejUkol {
    padding: 30px 40px;
}
}

