html,
body {
    overflow: hidden;
}


.dataTables_wrapper > * {
    margin: 0;
}


.dataTables_scrollHeadInner, .dataTable {
    width: 100% !important;
}


.lenis-switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
    margin: 0.5rem 0;
}

    .lenis-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.lenis-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .2s;
    transition: .2s;
}

    .lenis-switch-slider:before {
        position: absolute;
        content: "";
        height: 13px;
        width: 13px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .2s;
        transition: .2s;
    }

input:checked + .lenis-switch-slider {
    background-color: #2196F3;
}

input:focus + .lenis-switch-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .lenis-switch-slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}

/* Rounded lenis-switch-sliders */
.lenis-switch-slider.lenis-switch-round {
    border-radius: 17px;
}

    .lenis-switch-slider.lenis-switch-round:before {
        border-radius: 50%;
    }

.lenis-switch.disabled, .lenis-disabled {
    pointer-events: none;
    opacity: 0.3;
}

.form-group {
    margin-bottom: 5px;
}

.td-overflow { 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;
    max-width: 0px;
}

.dt-td-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; 
}

.cursor-pointer {
    cursor: pointer !important;
}

.cursor-default {
    cursor: default !important;
}


textarea:focus, input:focus, select:focus, button:focus {
    border: 1px solid blue !important;
}

.dataTables_length {
    margin-right: 13px;
}

/* Chrome, Safari, Edge, Opera */
input.lenis-input-numeric::-webkit-outer-spin-button,
input.lenis-input-numeric::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input.lenis-input-numeric {
    -moz-appearance: textfield;
}

.lenis-form-disabled-overlay {
    position: absolute;
    background: white;
    height: 100%;
    width: 100%;
    z-index: 10;
    left: 0;
    top: 0;
    opacity: 0.5;
}

.lenis-form-disabled-overlay-over {
    position: relative;
    z-index: 11;
}


.lenis-form-cancel {
    z-index: 11;
}

.lenis-table-wrapper {
    overflow-y: auto;
    width: 100%;
}

/*select CSS*/
.vs__selected-options {
    max-width: calc(100% - 30px);
}

.vs__dropdown-toggle {
    max-width: 100%;
    min-height: 34px;
}

.vs__selected {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
    min-height: 24px;
}

.full-height {
    height: 100%;
}

.bg-white {
    background-color: white;
}

.grid-columns-dropdown-menu {
    height: calc(100vh - 100px);
    overflow: auto;
}