.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

td img {
    max-height: 75px;
}


/********* START MULTI-SELECT STYLES ***********/
    .custom-input option{
        background: #F4F4F4;
        position: absolute;
        /* width: 100%; */
        -webkit-box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
        -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
        box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
        z-index: 7;
        max-height: 150px;
        overflow-y: auto;
    }
    .placeholder-wrapper.multi .chosen-container{
        display: block !important;
        width: -webkit-calc(100% - 22px) !important;
        width: -moz-calc(100% - 22px) !important;
        width: calc(100% - 22px) !important;
        height: 33px;
        padding: 22px 11px 0;
        font-family: inherit;
        font-size: 15px;
        line-height: 1.25;
        border: transparent;
        border-style: none none solid;
        -webkit-border-image: initial;
        -moz-border-image: initial;
        -o-border-image: initial;
        border-image: initial;
        border-bottom: 1px solid #666;
        background: #f4f4f4;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
        -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        -moz-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -moz-box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out, -moz-box-shadow .15s ease-in-out;
        box-sizing: content-box;
    }
    .placeholder-wrapper.multi .chosen-container{
        height: auto !important;
        min-height: 33px;
    }
    .placeholder-wrapper.multi .chosen-container ul.chosen-choices {
        background: #F4F4F4;
        border: none;
    }
    .placeholder-wrapper.multi .chosen-container .chosen-drop{
        left: 0;
        top: 102%;
        border: none;
    }
    .placeholder-wrapper.multi .chosen-container.chosen-container-active .chosen-choices{
        box-shadow: none;
    }
    .placeholder-wrapper.multi .chosen-container-multi .chosen-choices {
        padding: 0 5px 0 0;
    }
    .placeholder-wrapper.multi .chosen-container-multi .chosen-results {
        background: #F4F4F4;
        -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
        box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
        max-height: 150px;
        overflow-y: auto;
    }
    .placeholder-wrapper.multi .chosen-container-multi .chosen-results li {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -moz-box;
        display: flex;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: auto;
        margin: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
        z-index: 9;
        line-height: inherit;
        font-family: 'BentonSansBBVA-Book';
        font-weight: 400;
        font-size: 1rem;
        letter-spacing: -0.19px;
        text-align: left;
        border-top: 1px solid #E9E9E9;
        padding: 0.8rem 0.625rem;
        -webkit-flex: 1;
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: normal;
        cursor: pointer;
    }
    .placeholder-wrapper.multi .chosen-container-multi .chosen-results li.highlighted {
        background: #E9E9E9;
        color: inherit;
    }
/********* END MULTI-SELECT STYLES ***********/

/********* START UPLOAD FILES STYLES ***********/
    .file-select {
        display: flex;
        align-items: center;
    }
    .file-select::before {
        display: flex;
        align-items: center;
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: block;
        width: -webkit-calc(100% - 22px);
        width: -moz-calc(100% - 22px);
        width: calc(100% - 22px);
        height: 33px;
        padding: 22px 11px 0;
        font-family: inherit;
        font-size: 15px;
        line-height: 1.5;
        border: transparent;
        border-style: none none solid;
        -webkit-border-image: initial;
        -moz-border-image: initial;
        -o-border-image: initial;
        border-image: initial;
        border-bottom: 1px solid #666;
        background: #f4f4f4;
        background-clip: padding-box;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
        -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        -moz-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -moz-box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out, -moz-box-shadow .15s ease-in-out;
        box-sizing: content-box;
    }
    .file-select input[type="file"] {
        opacity: 0;
        width: 200px;
        height: 32px;
        display: inline-block;
    }
    #exam_file_span{
        position: absolute;
        top: 0;
        display: block;
        padding: 22px 11px 0;
        font-family: inherit;
        font-size: 15px;
        line-height: 1.5;
    }
    #exam_file_icon{
        position: absolute;
        right: 12px;
    }

/********* END UPLOAD FILES STYLES ***********/
.fancy{
    max-height: 612.9px !important;
}
@media (min-width: 992px) {
    .fancy{
        width: 997.5px !important;
        max-width: 1024px !important;
        max-height: 612.9px !important;
    }
}