@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=MuseoModerno:wght@900&display=swap');
html,
body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    font-size: 95%;
}

#main-menu{
    font-size: 90% !important;
}

.bg-primary{
    background: #1B609D !important;
}


.btn-primary {
    background: #1B609D;
    border: #EF8A2B;
}

.btn-primary:hover {
    background: #EF8A2B;
}

.btn-outline-primary {
    background: #fff;
    border: 1px solid #1B609D;
    color: #1B609D;
    color: #000;
}

.btn-outline-primary:hover{
    background: #EF8A2B;
    color: #fff;
    border: 1px solid #1B609D;

}

.btn-height{
    height: 3em;
}
.display-md{
    display: none;
}
.display-lg{
    display: block;
}
.dropdown-menu{
    font-size: 0.9em;

}
.dropdown-menu > li > .dropdown-item:hover {
    background: #e2c4a8 !important;
}

.nav-link:hover{
    color: #EF8A2B !important;
}


/* .nav-link:hover, .dropdown-toggle:hover{
    color: #EF8A2B !important;
} */

.logo-lg{
    max-width: 100px;
}
.btn-100{
    max-width: 100%;
}
.btn-50{
    max-width: 50%;
}

.top-divider{
    min-height: 8%;
}
.fs-0{
    font-size: 4em;
}

.floating-height{
    height: 3.5rem;
}

.text-active-menu{
    color: #EF8A2B !important;
}

.fs-7{
    font-size: 0.8em;
}
/******* Modal *************/

.overlay {
    display: none;
    -webkit-transition: 2s ease-in-out;
    -moz-transition: 2s ease-in-out;
    -o-transition: 2s ease-in-out;
    -ms-transition: 2s ease-in-out;
    -webkit-appearance: none;
    transition: 2s all;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(51, 51, 51, 0.7);
    z-index: 10;
}

.overlayShow {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(51, 51, 51, 0.7);
    z-index: 100001 !important;
    -webkit-transition: 2s ease-in-out;
    -moz-transition: 2s ease-in-out;
    -o-transition: 2s ease-in-out;
    -ms-transition: 2s ease-in-out;
    -webkit-appearance: none;
    transition: 2s all;
}

.bg-transparent{
    opacity: 1;
}

.live_search {
    position: absolute;
    display: none;
    z-index: 2;
    top: 40px;
    background: #ffffff;
    padding: 6px 4px 6px 2px;
    color: #000000;
    min-width: 200px;
}

.item-suggest {
    font-size: 1em;
    background: #d5d4d4;
    color: #000000;
    /* padding: 6px 2px 6px 2px; */

}

.w-15{
    width: 15%;
}
.w-20{
    width: 20%;
}
.w-30{
    width: 30%;
}
.w-35{
    width: 35%;
}
.w-40{
    width: 40%;
}
.w-55{
    width: 55%;
}

.filter-icon {
    cursor: pointer;
    margin-left: 5px;
    color: #888;
    /* default color */
    transition: color 0.3s ease;
}

.filter-icon.active {
    color: #007bff;
    /* blue when active */
}

.table-fixed-thead {
    width: 100%;
    border-collapse: collapse;
}

.table-fixed-thead thead th {
    position: sticky;
    top: 70px;
    /* ajusta según la altura de tu menú superior */
    background-color: #fff;
    z-index: 10;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
    /* opcional */
}

#totalRow {
    display: table-row !important;
}

@media (max-width: 991px) {
    .display-md {
        display: block;
    }
    .display-lg{
        display: none;
    }
    .btn-100{
        width: 100%;
    }
    .btn-50, .form-register{
        width: 100%;
    }
    .logo-md{
        max-width: 100px;
    }
    .form-register{
        width: 100%;
    }
    .fs-0{
        font-size: 3em;
    }
}