/* .slides {
    max-height: 624px;
    overflow: hidden;
} */

#nav-toggle {
        background: #1fb37f;
        position: absolute;
        right: 0;
        top: 49%;
        height: 45px;
        width: 50px;
        cursor: pointer;
    }
    
    #nav-toggle span,
    #nav-toggle span:before,
    #nav-toggle span:after {
        cursor: pointer;
        border-radius: 1px;
        height: 2px;
        width: 30px;
        right: 0;
        margin: auto;
        background: white;
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        content: '';
    }
    
    #nav-toggle span:before {
        top: -10px;
    }
    
    #nav-toggle span:after {
        top: 10px;
    }
    
    #nav-toggle span,
    #nav-toggle span:before,
    #nav-toggle span:after {
        transition: all 0.5s ease-in-out;
    }
    
    #nav-toggle.active span {
        background-color: transparent;
    }
    
    #nav-toggle.active span:before,
    #nav-toggle.active span:after {
        top: 0;
    }
    
    #nav-toggle.active span:before {
        transform: rotate(135deg);
    }
    
    #nav-toggle.active span:after {
        transform: rotate(-135deg);
    }
    
    @media(max-width:575px) {
        #nav-toggle {
            height: 35px;
            width: 40px;
        }
        #nav-toggle span {
            top: 49%;
        }
        #nav-toggle span,
        #nav-toggle span::before,
        #nav-toggle span::after {
            width: 20px;
        }
        #nav-toggle span::before {
            top: -8px;
        }
        #nav-toggle span::after {
            top: 8px;
        }
    }
    /*select*/
    
    .filter label {
        width: 100%;
        float: left;
    }
    
    .center {
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    select {
        z-index: 3;
        float: left;
    }
    /** Custom Select **/
    
    .custom-select-wrapper {
        position: relative;
        display: inline-block;
        user-select: none;
        cursor: pointer;
        width: 100%;
    }
    
    .custom-select-wrapper select {
        display: none;
    }
    
    .custom-select {
        position: relative;
        display: inline-block;
        width: 100%;
    }
    
    .custom-select::after {
        position: absolute;
        content: '';
        right: 0;
        width: 70px;
        height: 70px;
        background: #fff;
        top: 0;
        z-index: 1;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    
    .custom-select-trigger {
        position: relative;
        display: block;
        min-width: 250px;
        height: 70px;
        padding: 0 65px 0 25px;
        font-weight: 100;
        white-space: nowrap;
        color: #000;
        line-height: 70px;
        background-color: #ffffff;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        overflow-x: hidden;
    }
    /* .custom-select-trigger:hover {
    -webkit-box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1);
    box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1);
} */
    
    .custom-select-trigger:before {
        position: absolute;
        display: block;
        content: "";
        width: 1px;
        top: 24px;
        bottom: 20px;
        right: 60px;
        margin-top: -3px;
        border-right: 1px solid #c7d1d6;
        transition: all 0.35s ease-out;
        transform-origin: 50% 0;
        opacity: 0.5;
    }
    
    .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: "";
        width: 10px;
        height: 10px;
        top: 50%;
        right: 25px;
        margin-top: -3px;
        border-bottom: 1px solid #1fb37f;
        border-right: 1px solid #1fb37f;
        transform: rotate(45deg) translateY(-50%);
        transition: all 0.35s ease-out;
        transform-origin: 50% 0;
    }
    /* .custom-select-trigger:after {
    position: absolute;
    display: block;
    content: "";
    width: 70px;
    height: 100%;
    top: 0;
    right: 0;
    margin-top: 0;
    background: #ffffff;
    border-bottom: 1px solid #1fb37f;
    border-right: 1px solid #1fb37f;
    transform: rotate(0deg) translateY(-0%);
    transition: all 0.35s ease-out;
    transform-origin: 50% 0;
} */
    
    .custom-select.opened .custom-select-trigger:after {
        margin-top: 3px;
        transform: rotate(-135deg) translateY(-50%);
    }
    
    .custom-options {
        position: absolute;
        display: block;
        top: 100%;
        left: 0%;
        right: 0;
        width: 100%;
        margin: 10px 0;
        border-radius: 10px;
        box-sizing: border-box;
        /*  box-shadow: 0 2px 1px rgba(0, 0, 0, .1); */
        background: #fff;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-15px);
        border: 0;
    }
    
    .custom-select.opened .custom-options {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(-8px);
        /* -webkit-box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1);
    box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1); */
        box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.03);
    }
    
    .option-hover:before {
        background: #f9f9f9;
    }
    
    .custom-option {
        position: relative;
        display: block;
        padding: 0 22px;
        color: #000;
        font-size: 15px;
        line-height: 24px;
        padding: 12px 22px;
        cursor: pointer;
        transition: all 0.05s ease-in-out;
        border-bottom: 1px dashed #f1f1f1;
    }
    
    .custom-option:first-of-type {
        border-radius: 4px 4px 0 0;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
    }
    
    .custom-option:last-of-type {
        border-bottom: 0;
        border-radius: 0 0 4px 4px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    
    .custom-option:hover,
    .custom-option.selection {
        color: #fff;
        background-color: #1fb37f;
    }
    /*search animated input*/
    /*     
    .input-field {
        position: relative;
        width: 100%;
        height: 44px;
        line-height: 44px;
    }
    
    .filter label {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        color: #000;
        transition: 0.2s all;
        cursor: text;
        height: 70px;
        padding: 15px 35px;
        border-radius: 10px;
        white-space: nowrap;
    }
    
    .filter input {
        width: 100%;
        border: 0;
        outline: 0;
        padding: 0.5rem 0;
        box-shadow: none;
        color: #111;
        height: 70px;
        padding: 20px;
        border-radius: 10px;
    }
    
    input:invalid {
        outline: 0;
    }
    
    input:focus,
    input:valid {
        border-color: #1fb37f;
    }
    
    input:focus~label,
    input:valid~label {
        font-size: 14px;
        top: -24px;
        color: #1fb37f;
    } */
    /*Expand text*/
    
    .expand-button {
        cursor: pointer;
        display: block;
        width: 50%;
        margin-top: 1rem;
        margin-left: auto;
        margin-right: auto;
        border: 4px solid #005858;
        border-radius: 3px;
        background-color: darkcyan;
        color: white;
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .expand-button:hover,
    .expand-button:active,
    .expand-button:focus {
        background-color: #007272;
    }
    
    .special-text {
        position: relative;
        max-height: 100px;
        overflow: hidden;
        transition: max-height 1s ease;
    }
    
    .special-text.-expanded {
        max-height: 100vh;
    }
    
    .special-text:not(.-expanded)::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(rgba(255, 255, 255, 0), white);
        transition: 400ms all;
    }
    /*sticky*/
    
    #sidebar {
        float: left;
        width: 100%;
        color: #ffbdbd;
        will-change: min-height;
    }
    
    #sidebar .sidebar__inner {
        position: relative;
        transform: translate(0, 0);
        transform: translate3d(0, 0, 0);
        will-change: position, transform;
    }
    /*scroll*/
    
    .mCSB_scrollTools .mCSB_draggerRail {
        background-color: rgba(0, 0, 0, .1);
    }
    /* .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        background: #1fb37f;
        background-color: #1fb37f;
    } */
    
 .inner-section section.search-listing .side-bar .accordion .accordion-item .accordion-collapse .accordion-body .custom-checkbox {
    align-items: inherit !important;;
}

.inner-section section.search-listing .side-bar .accordion .accordion-item .accordion-collapse .accordion-body .custom-checkbox input {
    display: flex;
    flex-shrink: 0;
}

.inner-section section.search-listing .side-bar .accordion .accordion-item .accordion-collapse .accordion-body .custom-checkbox label {
    font-size: 14px;
    line-height: 24px;
}

.add-more-inner form#advancesearchform input#advancedsearch {
    width: auto;
    height: 50px;
    background-color: #1fb37f;
    border-radius: 6px;
    border: none;
    float: right;
    margin-top: 10px;
}  
.tab-pane.new form#elibrary-searchform input#searchsubmit {
    width: auto;
    height: 50px;
    background-color: #1fb37f;
    border-radius: 6px;
    border: none;
    float: right;
    margin-top: 0px;
}  
#main section.banner.inner-banner .banner-inner .filter form .filter-inner .nav-btn-wrap input {
    width: auto;
    height: auto;
    background-color: #1fb37f;
    border-radius: 6px;
    border: none;
}