body {
    background-image: url('/images/bg.jpeg');
    background-size: cover;
    animation: slidein 100s forwards infinite alternate;
}

@keyframes slidein {
    from {
        background-position: top;
        background-size: 3000px;
    }

    to {
        background-position: -100px 0px;
        background-size: 2750px;
    }

}


.hide {
    display: none;
}

.pt-10 {
    padding-top: 10px;
}

.margin-right {
    margin-right: 10px;
}

.logo-wrapper {
    background-color: white;
    margin-top: 10px;
    height: 141px;
    text-align: center;
}

.logo {

    background: white;
}

.dayofmon {
    text-align: right;
}

.nav-items {
    margin-top: 10px;
    font-size: 20px;
    padding: 10px;
    color: white;
    border-radius: 5px;
    opacity: 0.8;
}

.nav-items>i {
    margin-right: 10px;
}

.nav-items>span {
    float: right;
    margin-top: 3px;
}

.overview {
    text-align: center;
    padding: 25px;
    color: gray;
    font-weight: bold;
    font-size: 20px;
    margin: 10px 0px;
    background: white;
}

.task {
    margin-top: 10px;
    padding: 20px;
    color: black;
    text-align: center;
    position: relative;
    background: white;
    display: flex;
    justify-content: space-between;
}

.task input {
    border: none;
    width: 100%;
}

.input-task-controls > i {
    cursor: pointer;
}

/* Calender UI Start */

.calenderUI {
    position: absolute;
    width: 250px;
    height: 300px;
    background-color: white;
    right: 0px;
    top: 80px;
    padding: 5px;
    z-index: 10;
}

.calenderUI div {
    height: 25%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calenderUI div p {
    margin: 0px;
    font-size: 20px;
    color: white;
}

.year {
    background-color: lightgreen;

}

.month {
    background-color: purple;
}

.days {
    background-color: red;
}

.time {
    background-color: lightpink;
}

.year :first-child,
.month :first-child,
.days :first-child,
.time :first-child {
    position: absolute;
    left: 10px;
    font-size: 20px;
    color: white;
}

.year :nth-child(3),
.month :nth-child(3),
.days :nth-child(3),
.time :nth-child(5) {
    position: absolute;
    font-size: 20px;
    right: 18px;
    color: white;
}

.time .fa-arrow-circle-right {
    position: absolute;
    font-size: 20px;
    right: 45px;
    color: white;
}

.time .fa-arrow-circle-left {
    position: absolute;
    font-size: 20px;
    left: 35px;
    color: white;
}

.time p {
    position: absolute;
    font-size: 20px;
    left: 101x;
    color: white;
}

#repeatBadge {
    position: absolute;
    top: 5px;
    right: 57px;
    width: 55px;
    text-align: center;
    color: black;
    background-color: none;
    font-weight: normal;
}

#saveTask {
    color: green;
}

/* Calender UI End */

.taskText {
    font-style: normal !important;
    cursor: default !important;
}

.dateText {
    font-style: normal;
    font-size: small;
}

.del {
    color: red;
    cursor: pointer;
}

.complete {
    color: green;
    cursor: pointer;
}

.newTask>i {
    font-style: normal;
    padding-bottom: 6px;
}

/* Task syles */
.newTask,
.completeTask,
.incompleteTask,
.ongoingTask {
    margin-top: 10px;
    padding: 20px;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
}

.newTask>div>.badge {
    background-color: green !important;
}

.completeTask>div>.badge {
    background-color: black !important;
}

.incompleteTask>div>.badge {
    background-color: red !important;
}

.ongoingTask>div>.badge {
    background-color: blue !important;
}

.top-section-task {
    display: flex;

}

.bottom-section-task {
    display: flex;
    justify-content: space-between;
    justify-items: center;
    margin-top: 10px;
}

.task-controls-del {
    display: flex;
    justify-content: right;
}

.taskText {
    margin-left: 10px;
}


@media screen and (max-width: 991px) {
    .overview {
        font-size: 16px;
    }

    .top-section-task {
        flex-direction: column;
    }

    .bottom-section-task {
        flex-direction: row;
    }

    .taskText {
        margin-left: 0px;
        margin-top: 10px;
    }

    .task-controls:first-child {
        margin-right: 10px
    }

}