.loader {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; z-index: 1000; text-align: center;
}
.loader__img {
    margin-top: 18px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #fef79f;
    border-bottom: 1px solid #000;
    z-index: 10;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 10px 15px;
    background: #fef79f;
    border-top: 1px solid #000;
    z-index: 10;
}

.container {
    margin-top: 50px;
    margin-bottom: 150px;
    padding-left: 15px;
    padding-right: 15px;
}

.cursor-pointer {
    cursor: pointer;
}

.hidden {
    display: none;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.todo-list li,
.add-task-input {
    margin-top: 10px;
    margin-bottom: 10px;
}

.todo-list li:after {
    content: '';
    display: block;
    margin: 10px 0;
    height: 1px;
    background: #e3dd93;
}

.todo-list__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.todo-list__label,
.todo-list__input,
.add-task-input {
    line-height: 30px;
    border: none;
    width: 100%;
    background: #fef79f;
}

.todo-list__item.complete .todo-list__label {
    text-decoration: line-through;
    color: #aaa;
}

.move-task-btn,
.remove-task-btn {
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 5px;
}

[data-type="today"] .move-task-btn:after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 20px;
    background: url(../img/arrow.png) center 0 no-repeat;
    transform: scale(1, -1);
}

[data-type="tomorrow"] .move-task-btn:after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 20px;
    background: url(../img/arrow.png) center 0 no-repeat;
    transform: scale(-1, -1);
}

.remove-task-btn:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/garbage.png) center 0 no-repeat;
    margin-top: 4px;
}