.note-editor .card-dark:not(.card-outline) .card-header, .card-dark:not(.card-outline) .card-header a
 {
    color: black;
 }

#file-upload-dropzone.dropzone {
    border-width: 1px;
    border-style: dashed;
}

#file-upload-dropzone.dropzone .dz-message {
    text-align: center;
    margin: 10% 0;
}

#front-custom-css, #admin-custom-css {
    height: 200px;
}

/* ToDo styles */

#completed-tasks > li.draggable label {
    text-decoration: line-through;
}

.todo-box{
    background-color: #fff;
    border-radius: 5px;
}

.todo-title{
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 5px 5px 0 0;
}

#upper-box .todo-title {
    background-color: var(--orange);
}

#lower-box .todo-title {
    background-color: var(--teal);
}

.todo-title h5{
    color: #fff;
    padding: 13px 20px 11px;
    line-height: 1;
    font-size: 16px;
    margin: 0;
}

.btn-add{
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, .3);
    font-size: 15px;
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    padding-top: 10px;
}

.btn-custom {
    color: #ffffff;
    background-color: var(--active-color);
    border-color: var(--active-color);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-custom:hover {
    color: #fff;
}

.btn-add:hover{
    color: #fff;
    background-color: rgba(255, 255, 255, 0.3);
}

.list-group-item{
    background-color: #f6f7fb;
    margin: 5px;
    border-radius: 0 !important;
    border: 0;
    padding: 5px;
    padding-left: 30px;
}

.list-group-item p {
    font-size: 12px;
    padding-left: 20px;
}

.list-group-item .btn{
    font-size: 13px;
    display: inline-block;
    padding: 0 5px;
    color: var(--active-color);
}

.handle {
    position: absolute;
    top: 1px;
    left: 5px;
    color: var(--active-color);
    opacity: 0.6;
    cursor: pointer;
}

/*======================
    Custom checkbox
========================*/

/* [type="checkbox"]{
    margin-right: 5px;
    margin-top: 2px;
} */

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

/* checkbox aspect */

[type="checkbox"]:not(:checked)+label:before,
[type="checkbox"]:checked+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5px;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 3px;
}

/* checked mark aspect */

[type="checkbox"]:not(:checked)+label:after,
[type="checkbox"]:checked+label:after {
    content: '\f00c';
    position: absolute;
    background: var(--teal);
    font-size: 0.8em;
    line-height: 1em;
    border-radius: 3px;
    left: 0px;
    padding-left: 0.5px;
    padding-top: 1.4px;
    text-align: center;
    top:2px;
    width: 15px;
    height: 15px;
    color: #ffffff;
    transition: all 0.4s ease;
    font-family: 'FontAwesome';
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

/* checked mark aspect changes */

[type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

[type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

[type="checkbox"]+label,
[type="checkbox"]:not(:checked)+label,
[type="checkbox"]:checked+label {
    margin: 0;
    line-height: 1.3;
    padding-left: 1.6em;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    color: #222;
    font-weight: 400;
}
