/* @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'); */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

html,
body {
    /* font-family: 'Poppins', sans-serif; */
    /* font-family: 'Montserrat', sans-serif; */
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    scroll-behavior: smooth;
    font-size: 95%;
    background-color: #ffffff !important;
    margin: 0;
    height: 100%;
    width: 100%;

}

label {
    color: #313030;
    font-weight: bold;
}

.bg-alert {
    background: #ac0c94 !important;
    border: 1px solid #9c1b89 !important;
    color: #ffffff !important;
}

.bg-dismiss {
    background: #f89292 !important;
    border: 1px solid #e27575 !important;
    color: #000000 !important;
}

.bg-important {
    background: #2104a5 !important;
    border: 1px solid #2a0daf !important;
    color: #ffffff !important;
}

.bg-clear {
    background: #ebebec !important;
    border: 1px solid #9e9e9f !important;
    color: #000000 !important;
}
.bg-clear-plus {
    background: #c6c6ca !important;
    border: 1px solid #9e9e9f !important;
    color: #000000 !important;
}

.table-light-bold {
    --bs-table-bg: #f2ede2;
    --bs-table-color: #333;
    --bs-table-border-color: #ccc;
}

.bg-primary {
    background: #D1532A !important;
}


.btn-primary {
    background: #D1532A;
    border: #EF8A2B;
}

.btn-primary:hover {
    background: #EF8A2B;
}

.btn-outline-primary {
    background: #fff;
    border: 1px solid #D1532A;
    color: #D1532A;
    color: #000;
}

.btn-outline-primary:hover {
    background: #EF8A2B;
    color: #fff;
    border: 1px solid #D1532A;

}

.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: #dbdada !important;
}

.nav-link {
    color: #D1532A !important;
}

.nav-link:hover {
    color: #090909 !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: #6C6E6D !important;
    font-weight: bold;
}

.text-secondary {
    color: #6C6E6D !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: #D1532A;
    /* 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;
}

input[type="radio"] {
  transform: scale(1.5);   /* aumenta el tamaño */
  margin: 5px;             /* ajusta separación */
}

@media (max-width: 991px) {
    body {
        font-size: 80%;
    }

    .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;
    }



}

/* Mostrar en landscape */
@media screen and (orientation: landscape) {
    .th-orientation {
        display: table-cell !important;
    }
}

/* Ocultar en portrait */
@media screen and (orientation: portrait) {
    .th-orientation {
        display: none !important;
    }
}