/**
 *
 * You can write your CSS code here, DO NOT touch the default JavaScript file
 * because it will make it harder for you to update.
 *
 */
/* disable input type number arrow */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dark-theme {
    --bg: #292C35;
    --colorFont: #fff;

    /* filter: invert(1) hue-rotate(180deg); */
}




.chk-dark-light {
    opacity: 0;
    position: absolute;
}


.lbl-dark-light {
    margin: 0;
    background-color: #fff;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    position: relative;
    height: 19px;
    width: 44px;
    transform: scale(1.5);

}

.lbl-dark-light .ball {
    background-color: #6777ef;
    border-radius: 50%;
    position: absolute;
    top: 0.5px;
    left: 2px;
    height: 17px;
    width: 17px;
    transform: translateX(0px);
    transition: transform 0.2s linear;
}

.chk-dark-light:checked+.lbl-dark-light .ball {
    transform: translateX(24px);
}


.fa-moon {
    color: #f1c40f;
}

.fa-sun {
    color: #f39c12;
}

.table-wrapper {
    max-height: 700px;
    overflow: auto;
    display: inline-block;
}

.table-wrapper-llo {
    max-height: 500px;
    overflow: auto;
    display: inline-block;
}

.checkbox-wrapper {
    max-height: 100px;
    overflow: auto;
    display: inline-block;
}

/* CSS for Drag and Drop input */
#modules {

    z-index: 1;
    border-radius: 10px;

}

#modules .drag {
    cursor: pointer;


}

#dropzone {
    padding: 20px;
    background: #eee;
    min-height: 100px;
    margin-bottom: 20px;
    z-index: 0;
    border-radius: 10px;

}

.drop-item {
    cursor: pointer;
    margin-bottom: 10px;
    background-color: rgb(255, 255, 255);
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid rgb(204, 204, 204);
    position: relative;
}

.drop-item .remove {
    position: absolute;
    top: 4px;
    right: 4px;
}


.is-invalid .select2-selection,
.needs-validation~span>.select2-dropdown {
    border-color: red !important;
}





/*# sourceMappingURL=custom.css.map */
