.card-header.todo-header {
    background-color: unset !important;
    border-bottom: unset !important;
}

.card-header.todo-header h5 {
    margin-top: 15px;
    font-size: 22px;
}

.todo .action-box {
    background: transparent;
    height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.todo .action-box .icon {
    vertical-align: 0
}

.todo .action-box.completed {
    background: #05a34a;
    border: 1px solid #05a34a;
    border-radius: 4px
}

.todo .action-box.completed .icon {
    color: #fff;
    font-size: 14px
}

.todo .action-box.large {
    height: 30px;
    width: 30px
}

.todo .action-box.large .icon {
    font-size: 20px;
    vertical-align: -5px;
    line-height: 1.8;
}

.todo .action-box.large .icon .icon-trash {
    color: #6571ff
}

.todo .action-box.large .icon .icon-check {
    color: #6571ff
}

.todo .todo-list-wrapper {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.todo .todo-list-wrapper .mark-all-tasks {
    position: absolute;
    top: 30px;
    right: 30px
}

html[dir="rtl"] .todo .todo-list-wrapper .mark-all-tasks {
    left: 30px;
    right: unset;
}

.todo .todo-list-wrapper .mark-all-tasks .mark-all-tasks-container {
    overflow: hidden;
    position: relative
}

.todo .todo-list-wrapper .mark-all-tasks .mark-all-btn {
    cursor: pointer;
    display: inline-block;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease
}

.todo .todo-list-wrapper .mark-all-tasks .mark-all-btn#mark-all-finished {
    color: #05a34a
}

.todo .todo-list-wrapper .mark-all-tasks .mark-all-btn#mark-all-incomplete {
    color: #e52727
}

.todo .todo-list-wrapper .mark-all-tasks .mark-all-btn#mark-all-incomplete .action-box {
    border: 2px solid #e52727;
    border-radius: 4px
}

.todo .todo-list-wrapper .mark-all-tasks .mark-all-btn#mark-all-incomplete .action-box .icon {
    color: #e52727
}

.todo .todo-list-wrapper .mark-all-tasks .mark-all-btn.move-up {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    position: absolute;
    right: 0
}

.todo .todo-list-wrapper .mark-all-tasks .mark-all-btn.move-down {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    position: absolute;
    right: 0
}

.todo .todo-list-wrapper .mark-all-tasks .btn-label {
    margin-right: 5px;
    font-weight: 600
}

.todo .todo-list-wrapper .todo-list-footer {
    position: relative
}

.todo .todo-list-wrapper .todo-list-footer h5 {
    text-align: center;
    color: #efefef
}

.todo .todo-list-wrapper .todo-list-footer .add-task-btn-wrapper {
    padding-top: 30px
}

.todo .todo-list-wrapper .todo-list-footer .add-task-btn.hide {
    opacity: 0;
    display: none
}

.todo .todo-list-wrapper .todo-list-footer .add-task-btn:hover {
    background: #6571ff
}

.todo .todo-list-wrapper .todo-list-footer .add-task-btn:hover .icon {
    color: #ecf3fa
}

.todo .todo-list-wrapper .todo-list-footer .add-task-btn .icon {
    color: #6571ff;
    font-size: 20px
}

.todo .todo-list-wrapper .todo-list-footer .new-task-wrapper {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    max-height: 0;
    overflow: hidden
}

.todo .todo-list-wrapper .todo-list-footer .new-task-wrapper textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #ecf3fa;
    height: 90px;
    padding: 10px 15px;
    margin-bottom: 24px;
    border-radius: 4px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.todo .todo-list-wrapper .todo-list-footer .new-task-wrapper textarea:focus {
    border: 1px solid #efefef;
    outline: none
}

.todo .todo-list-wrapper .todo-list-footer .new-task-wrapper textarea.error {
    border: 1px solid #e52727;
    outline: none
}

.todo .todo-list-wrapper .todo-list-footer .new-task-wrapper .error-message {
    color: #e52727;
    font-style: italic
}

.todo .todo-list-wrapper .todo-list-footer .new-task-wrapper.visible {
    max-height: 300px;
    overflow: auto
}

.todo .todo-list-wrapper .todo-list-footer .new-task-wrapper::after {
    content: "";
    display: block;
    clear: both
}

.todo .todo-list-wrapper .todo-list-body {
    max-height: 500px;
    overflow: auto
}

.todo .todo-list-wrapper #todo-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.todo .todo-list-wrapper #todo-list li {
    margin: 0;
    padding: 0
}

.todo .todo-list-wrapper #todo-list li .task-container {
    display: table;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #ecf3fa;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-transition: background 200ms ease;
    transition: background 200ms ease
}

.todo .todo-list-wrapper #todo-list li .task-container .task-label {
    display: block;
    font-size: 17px;
    vertical-align: middle;
    color: #999;
    word-break: break-word;
    padding-top: 5px
}

.todo .todo-list-wrapper #todo-list li .task-container .task-action-btn {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    min-width: 65px
}

html[dir="rtl"] .todo .todo-list-wrapper #todo-list li .task-container .task-action-btn {
    text-align: left;
}

.todo .todo-list-wrapper #todo-list li .task-container .task-action-btn .action-box {
    margin-left: 5px;
    margin-top: 2px;
    border: 1px solid transparent;
    margin-bottom: 2px
}

.todo .todo-list-wrapper #todo-list li .task-container .task-action-btn .action-box:hover {
    border: 1px solid #59667a;
    background: #fff;
    border-radius: 4px
}

.todo .todo-list-wrapper #todo-list li .task-container .task-action-btn .action-box:hover .icon {
    color: #59667a;
    line-height: 1.8;
}

.todo .todo-list-wrapper #todo-list li .task-container:hover h4 {
    color: #2c323f;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.todo .todo-list-wrapper #todo-list li.completed .task-container .complete-btn {
    border: 1px solid #05a34a;
    border-radius: 4px
}

.todo .todo-list-wrapper #todo-list li.completed .task-container .complete-btn .icon {
    font-weight: bold;
    line-height: 1.8;
}

.todo .todo-list-wrapper #todo-list li.completed .task-container .complete-btn:hover {
    background: #fff;
    border: 1px solid #05a34a
}

.todo .todo-list-wrapper #todo-list li.completed .task-container .complete-btn:hover .icon {
    color: #fff
}

.todo .todo-list-wrapper #todo-list li.completed .task-container .task-label {
    text-decoration: line-through;
    color: #6571ff
}

.todo .todo-list-wrapper #todo-list li.new .task-container {
    -webkit-animation: taskHighlighter 2000ms linear 1;
    animation: taskHighlighter 2000ms linear 1
}

.todo .todo-list-wrapper .todo-list-header h5 {
    text-align: center;
    color: #efefef
}

.todo .notification-popup {
    position: fixed;
    top: 50px;
    right: 10px;
    width: 300px;
    display: inline-block;
    background: #05a34a;
    border: 1px solid #05a34a;
    color: #fff;
    padding: 20px;
    z-index: 999;
    opacity: 0.9;
    border-radius: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.todo .notification-popup.success {
    background: #05a34a;
    border: 1px solid #05a34a
}

.todo .notification-popup p {
    margin-top: 0;
    margin-bottom: 0
}

.todo .notification-popup .task {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block
}

.todo .notification-popup .notification-text {
    font-size: 14px;
    display: inline-block;
    overflow: hidden
}

.todo .notification-popup.hide {
    opacity: 0;
    visibility: hidden
}

@-webkit-keyframes taskHighlighter {
    0% {
        background: rgba(68, 102, 242, 0.5)
    }

    100% {
        background: #fff
    }
}

@keyframes taskHighlighter {
    0% {
        background: rgba(68, 102, 242, 0.5)
    }

    100% {
        background: #fff
    }
}

html[dir="rtl"] .todo .todo-list-wrapper .mark-all-tasks {
    left: 30px;
    right: unset
}

html[dir="rtl"] .todo .todo-list-wrapper .mark-all-tasks .btn-label {
    margin-left: 5px;
    margin-right: unset
}

html[dir="rtl"] .todo .todo-list-wrapper #todo-list li .task-container .task-action-btn {
    text-align: left
}

html[dir="rtl"] .todo .notification-popup {
    left: 10px;
    right: unset;
}

html[dir="rtl"] .todo-options .badges-todo h6 {
    margin-left: 10px;
    margin-right: unset
}

html[dir="rtl"] .todo-options .badges-todo h6:last-child {
    margin-left: 0
}

html[dir="rtl"] .todo-list-btns .dropdown-basic .btn-group .form-group .checkbox {
    padding-right: 14px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding-left: unset;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset
}

html[dir="rtl"] .todo-list-btns .dropdown-basic .separated-btn {
    margin-right: -6px;
    margin-left: unset
}

html[dir="rtl"] .todo-list-btns .dropdown-basic .separated-btn .btn {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px
}

html[dir="rtl"] .search-todo .dropdown-basic .btn-group {
    margin-left: 18px;
    margin-right: unset
}

/*# sourceMappingURL=todo.css.map */