.todo-application .content-area-wrapper {
    border: 1px solid #ebe9f1;
    border-radius: .428rem
}

.todo-application .content-area-wrapper .sidebar .todo-sidebar {
    background-color: #fff;
    border-bottom-left-radius: .428rem;
    border-top-left-radius: .428rem;
    display: flex;
    height: inherit;
    transition: all .3s ease, background 0s;
    width: 321px
}

.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu {
    width: 100%;
    z-index: 3
}

.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .add-task {
    padding: 1.5rem
}

.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .sidebar-menu-list {
    height: calc(100% - 80px);
    position: relative
}

.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item {
    border: 0;
    border-left: 2px solid transparent;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: .4px;
    padding: .58rem 1.5rem
}

.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item+.list-group-item.active {
    margin-top: 0
}

.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item.active,
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item:focus,
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item:hover {
    background: transparent;
    color: #7367f0
}

.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item.active {
    border-color: #7367f0
}

.todo-application .content-area-wrapper .ql-editor {
    padding-bottom: 0
}

.todo-application .content-area-wrapper .content-right {
    border-left: 1px solid #ebe9f1;
    width: calc(100% - 321px)
}

.todo-application .content-area-wrapper .content-right .todo-app-list {
    height: inherit
}

.todo-application .content-area-wrapper .content-right .app-fixed-search {
    background-color: #fff;
    border-bottom: 1px solid #ebe9f1;
    border-top-right-radius: .357rem;
    padding: .4215rem .5rem
}

.todo-application .content-area-wrapper .content-right .app-fixed-search .input-group:focus-within {
    box-shadow: none
}

.todo-application .content-area-wrapper .content-right .app-fixed-search .input-group-text,
.todo-application .content-area-wrapper .content-right .app-fixed-search input {
    background-color: transparent;
    border: 0
}

.todo-application .content-area-wrapper .content-right .todo-title {
    margin-left: .5rem;
    margin-right: .5rem
}

.todo-application .content-area-wrapper .content-right .completed .todo-title {
    color: #aaabb4
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper {
    background-color: #fff;
    border-radius: 0;
    height: calc(100% - 3.56rem);
    position: relative
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li {
    cursor: pointer;
    padding: .893rem 2rem;
    position: relative;
    transition: all .2s, border-color 0s
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li:not(:first-child) {
    border-top: 1px solid #ebe9f1
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li:hover {
    box-shadow: 0 3px 10px 0 #ebe9f1;
    transform: translateY(-4px);
    transition: all .2s
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-title-wrapper {
    display: flex;
    justify-content: space-between
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .title-wrapper,
.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-item-action,
.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-title-area {
    align-items: center;
    display: flex
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-item-action>small {
    margin-left: auto
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-item-action a {
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1.5
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .badge-wrapper {
    display: flex
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .badge-wrapper .badge:not(:last-child) {
    margin-right: .5rem
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .no-results {
    display: none;
    padding: 1.5rem;
    text-align: center
}

.todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .no-results.show {
    display: block
}

.todo-application .todo-item .drag-icon {
    cursor: move;
    height: 4rem;
    left: .2rem;
    padding: 0 5px;
    position: absolute;
    visibility: hidden;
    width: 1.75rem
}

.todo-application .todo-item:hover .drag-icon {
    visibility: visible
}

.todo-application form .error:not(li):not(input) {
    color: #ea5455;
    font-size: 85%;
    margin-top: .25rem
}

.gu-mirror {
    background-color: #fff;
    border-bottom: 1px solid #ebe9f1;
    border-top: 1px solid #ebe9f1;
    box-shadow: 0 0 10px 0 rgba(34, 41, 47, .25);
    list-style-type: none;
    list-style: none;
    padding: .893rem 2rem
}

.gu-mirror .todo-title-wrapper {
    display: flex;
    justify-content: space-between
}

.gu-mirror .title-wrapper,
.gu-mirror .todo-item-action,
.gu-mirror .todo-title-area {
    align-items: center;
    display: flex
}

.gu-mirror .todo-item-action {
    justify-content: space-between
}

.gu-mirror .todo-title {
    padding-left: 1rem
}

.gu-mirror.completed .todo-title {
    color: #aaabb4
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        top: 100px
    }
    75% {
        opacity: .5;
        top: 0
    }
    to {
        opacity: 1
    }
}

@media(max-width:991.98px) {
    .todo-application .content-area-wrapper .sidebar-left .todo-sidebar {
        border-bottom-left-radius: .25rem;
        border-top-left-radius: .25rem;
        left: 0;
        position: absolute;
        transform: translateX(-110%);
        transition: all .3s ease-in-out;
        z-index: 5
    }
    .todo-application .content-area-wrapper .sidebar-left.show .todo-sidebar {
        transform: translateX(0);
        transition: all .3s ease
    }
    .todo-application .content-area-wrapper .content-right {
        border-left: 0;
        width: 100%
    }
    .todo-application .content-area-wrapper .content-right .app-fixed-search {
        border-top-left-radius: .357rem
    }
    .todo-application .content-area-wrapper .todo-title-wrapper {
        flex-direction: column
    }
    .todo-application .content-area-wrapper .todo-title-wrapper .title-wrapper {
        margin-bottom: .5rem
    }
    .todo-application .content-area-wrapper .todo-title-wrapper .todo-title {
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden
    }
    .todo-application .content-area-wrapper .todo-title-wrapper .badge-wrapper {
        margin-right: auto!important
    }
}

@media(max-width:349.98px) {
    .todo-application .content-area-wrapper .sidebar .todo-sidebar {
        width: 230px
    }
}

.horizontal-menu .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper {
    height: calc(100% - 3.6rem)
}