/* 
    Created on : 22/02/2025
    Author     : Leon Valderrama
*/

:root{
    --azul_wettec: #0092C7;
    --azul_wettec_oscuro: #005473;
    --verde_wettec: #B5E61D;
    --amarillo: #FDC552;
    --amarillo_oscuro:#F6AC47;
    --naranja: #FFB93F;
    --gris: #202020;
    --rojo: #E50F0F;
    --verde: #00CC00;
    --rojo_danger: #d9534f;
    --azul_erecos: #271c7c;
}

.spin_precarga {
    display: inline-block;                 /* asegura que transform funcione bien */
    transform-origin: 50% 50%;             /* centro del giro */
    animation: spin_precarga 1.2s linear infinite;  /* ajusta la velocidad aquí */
    will-change: transform;
}

@keyframes spin_precarga {
    to {
        transform: rotate(360deg);
    }
}


/*FUENTES*/
@font-face {
    font-family: 'Material_Symbols_Rounded';
    font-style: normal;
    src: url(../fonts/iconfont/MaterialSymbolsRounded-Regular.ttf) format('truetype');
}

.material-symbols-rounded {
    font-family: 'Material_Symbols_Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

@font-face {
    font-family: "Fredoka";
    font-style: normal;
    src: url("../fonts/Fredoka-Light.ttf") format("truetype")
}
/*montserrat*/
.fredoka{
    font-family:"Fredoka" !important;
    font-size:16px;
    font-style:normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-y: scroll;
}


body{
    /*font-family:"poppins" !important;*/
    font-family:"Fredoka" !important;
    /*font-size: 16px;*/
    background: transparent;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    overflow-x: hidden;
    /*background: transparent url("../img/fondo3.png") repeat scroll 0px 0px;*/

    /* Fondo */
    background-repeat: no-repeat;          /* evita la cuadrícula */
    background-position: center center;    /* centra la imagen */
    background-size: cover;                /* la expande para cubrir toda la pantalla */
}

main {
    flex: 1 0 auto;
}

/*HEADER*/
.text-small {
    font-size: 85%;
}

thead.encabezado_variedad th{
    background-color: #FCC6BB;
}
thead.encabezado_verde_claro th{
    background-color: #E2FFA8;
}
thead.encabezado_azul_claro th{
    background-color: #BFE2FF;
}

.dropdown-toggle:not(:focus) {
    outline: 0;
}

/*Botones del main*/
.tile-btn{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:.5rem;
    padding:14px 12px;
    border:1px solid #d0d0d0;
    border-radius:10px;
    background:#fff;
    cursor:pointer;
    transition:transform .08s ease, box-shadow .2s ease, border-color .2s ease;
}

.tile-btn img{
    height:100px; /* ajusta si quieres */
    object-fit:contain;
    display:block;
}

.tile-btn span{
    font-weight:600;
    font-size:0.95rem;
    color:#333;
}

.tile-btn:hover,
.tile-btn:focus{
    transform:translateY(-1px);
    box-shadow:0 2px 10px rgba(0,0,0,.06);
    border-color:#bdbdbd;
    outline:none;
}

.tile-btn:active{
    transform:translateY(0);
    box-shadow:0 1px 6px rgba(0,0,0,.05) inset;
}

/* Botón compacto (acceso rápido) */
.quick-btn{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:.35rem;
    padding:10px 8px;
    border:1px solid #d0d0d0;
    border-radius:10px;
    background:#fff;
    cursor:pointer;
    transition:transform .08s ease, box-shadow .2s ease, border-color .2s ease;
}
.quick-btn img{
    height:48px;
    object-fit:contain;
    display:block;
}
.quick-btn span{
    font-weight:600;
    font-size:.85rem;
    color:#333;
}
.quick-btn:hover,.quick-btn:focus{
    transform:translateY(-1px);
    box-shadow:0 2px 8px rgba(0,0,0,.06);
    border-color:#bdbdbd;
    outline:none;
}

/* 5 columnas iguales en md+ */
@media (min-width:768px){
    .col-md-5th{
        flex:0 0 20%;
        max-width:20%;
    }
}

/* Ajustes de separación para que quepan en la card fija */
.row.g-compact{
    --bs-gutter-x: .5rem;
    --bs-gutter-y: .5rem;
}

/*Ajustes para la modal wizard*/
.wizard-steps{
    display:flex;
    gap:1rem;
    list-style:none;
    padding:0;
    margin:0
}
.wizard-steps li{
    flex:1;
    text-align:center;
    padding:.5rem;
    border:1px solid #ddd;
    border-radius:8px;
    color:#666
}
.wizard-steps li.active{
    border-color:#198754;
    color:#198754;
    font-weight:600
}

/*CALIFICADOR*/
/*CALIFICAR*/
.star {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}
.star.hovered,
.star.selected {
    color: #fbc02d; /* Amarillo dorado */
}

.text-bg-orange{
    background-color: #fd7e14 !important; /* naranja bootstrap-ish */
    color: #fff !important;
}

/*VISUALIZAR CALIFICACIÓN*/

.star-rating {
    position: relative;
    display: inline-block;
    font-size: 0.8rem;           /* ajusta el tamaño de las estrellas */
    line-height: 1;
}

/* Fondo: estrellas vacías (gris) */
.stars-background,
.stars-foreground {
    display: flex;
    overflow: hidden;
}

.stars-background i {
    color: #ddd;                 /* color de estrella vacía */
}

/* Frontal: estrellas llenas (sobrepuestas) */
.stars-foreground {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    pointer-events: none;        /* no interfiere con hover/click */
}

.stars-foreground i {
    color: #f5b50a;              /* color de estrella llena */
}

/*FIN DE CALIFICADOR*/

.borde_ok {
    border: 2px solid #28a745 !important;
}

.borde_error {
    border: 2px solid #dc3545 !important;
}


/*CARRUSEL*/
.carousel-item {
    height: 100vh;
    min-height: 300px;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.transition_carousel {
    transition: transform 8s ease;
    opacity: 0.5s ease-out;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
}

.img_header_caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
}

/*sección 3*/
.marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
}

.featurette-divider {
    margin: 3rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
/* rtl:begin:remove */
.featurette-heading {
    letter-spacing: -.05rem;
}

@media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .featurette-heading {
        font-size: 50px;
    }
}

@media (min-width: 62em) {
    .featurette-heading {
        margin-top: 7rem;
    }
}

@media (min-width: 992px) {
    .rounded-lg-3 {
        border-radius: .3rem;
    }
}

.btn-daimob {
    color: #fff !important;
    background-color: var(--naranja) !important;
}
.btn-daimob:hover{
    background-color: #E8A737 !important;
}

/*PRECARGA*/
#precarga {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff no-repeat center center;
}
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff no-repeat center center;
}
#icono_precarga{
    position: fixed;
    top: calc(50% - 20px);
    left: calc(50%  - 20px);
}

@keyframes spin-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

.icn-spinner {
    animation: spin-animation 2s infinite linear;
    display: inline-block;
}

.fade-out {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.fade-out.hidden {
    opacity: 0;
}

/*VIDEO SOSTENIBILIDAD*/

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Estilos para el video */
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Estilos para el contenido superpuesto */
.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}

/* Estilos para la imagen del logo */
.video-content img {
    max-width: 250px;
    margin-bottom: 20px;
}

/* Estilos para la frase */
.video-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

table.cuadricula_tabla>thead>tr>th,
table.cuadricula_tabla>tbody>tr>td{
    border-bottom: 1px solid #d0d0d0 !important;
    /*border-right: 1px solid #d0d0d0 !important;*/
    padding-bottom: 5px !important;
    padding-top: 5px !important;
    font-size: 13px !important;
}

table.cuadricula_tabla_11>thead>tr>th,
table.cuadricula_tabla_11>tbody>tr>td{
    border-bottom: 1px solid #d0d0d0 !important;
    /*border-right: 1px solid #d0d0d0 !important;*/
    padding-bottom: 5px !important;
    padding-top: 5px !important;
    font-size: 11px !important;
}

a:hover{
    cursor: pointer;
    -moz-transition: cursor 500ms ease-in-out;
    -o-transition: cursor 500ms ease-in-out;
    -webkit-transition: cursor 500ms ease-in-out;
    transition: cursor 500ms ease-in-out;
}

.no_sombra,
no_sombra:focus,
no_sombra:hover{
    background-color: #fff !important;
}


.container_2{
    margin:0 auto;
    max-width:1280px;
    width:95%
}

.inline-icon{
    vertical-align: bottom;
    font-size: 18px !important;
    display: inline-flex !important;
    vertical-align: top;
}

.tabs .tab a {
    color: var(--naranja) !important;
    ;
}

/* Rules for sizing the icon. */
.material-icons.md-18 {
    font-size: 18px;
}
.material-icons.md-24 {
    font-size: 24px;
}
.material-icons.md-36 {
    font-size: 36px;
}
.material-icons.md-48 {
    font-size: 48px;
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
    color: rgba(0, 0, 0, 0.54);
}
.material-icons.md-dark.md-inactive {
    color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
    color: rgba(255, 255, 255, 1);
}
.material-icons.md-light.md-inactive {
    color: rgba(255, 255, 255, 0.3);
}

.fixed-action-btn2 {
    position: fixed;
    right: 23px;
    top: 23px;
    padding-top: 15px;
    margin-bottom: 0;
    z-index: 997;
}

/*Clases personalizadas*/
.nopading{
    padding:0px !important;
}
.nopadding_bottom{
    padding-bottom:0px !important;
}
.nopadding_top{
    padding-top:0px !important;
}
.padding_der_5px{
    padding-right:5px !important;
}
.padding_der_10px{
    padding-right:10px !important;
}
.padding_der_15px{
    padding-right:15px !important;
}
.padding_der_20px{
    padding-right:20px !important;
}
.padding_izq_5px{
    padding-left:5px !important;
}
.padding_izq_10px{
    padding-left:10px !important;
}
.padding_izq_15px{
    padding-left:15px !important;
}
.padding_izq_20px{
    padding-left:20px !important;
}
.padding_sup_5px{
    padding-top:5px !important;
}
.padding_sup_10px{
    padding-top:10px !important;
}
.padding_sup_15px{
    padding-top:15px !important;
}
.padding_sup_20px{
    padding-top:20px !important;
}
.padding_inf_5px{
    padding-bottom:5px !important;
}
.padding_inf_10px{
    padding-bottom:10px !important;
}
.padding_inf_15px{
    padding-bottom:15px !important;
}
.padding_inf_20px{
    padding-bottom:20px !important;
}
.nomargen{
    margin:0px !important;
}
.nomargen_bottom{
    margin-bottom:0px !important;
}
.nomargen_top{
    margin-top:0px !important;
}
.margen_der_5px{
    margin-right:5px !important;
}
.margen_der_10px{
    margin-right:10px !important;
}
.margen_der_15px{
    margin-right:15px !important;
}
.margen_der_20px{
    margin-right:20px !important;
}
.margen_der_25px{
    margin-right:25px !important;
}
.margen_der_30px{
    margin-right:30px !important;
}
.margen_izq_5px{
    margin-left:5px !important;
}
.margen_izq_10px{
    margin-left:10px !important;
}
.margen_izq_15px{
    margin-left:15px !important;
}
.margen_izq_20px{
    margin-left:20px !important;
}
.margen_izq_25px{
    margin-left:25px !important;
}
.margen_izq_30px{
    margin-left:30px !important;
}
.margen_sup_5px{
    margin-top:5px !important;
}
.margen_sup_10px{
    margin-top:10px !important;
}
.margen_sup_15px{
    margin-top:15px !important;
}
.margen_sup_20px{
    margin-top:20px !important;
}
.margen_sup_25px{
    margin-top:25px !important;
}
.margen_sup_30px{
    margin-top:30px !important;
}
.margen_inf_5px{
    margin-bottom:5px !important;
}
.margen_inf_10px{
    margin-bottom:10px !important;
}
.margen_inf_15px{
    margin-bottom:15px !important;
}
.margen_inf_20px{
    margin-bottom:20px !important;
}
.margen_inf_25px{
    margin-bottom:25px !important;
}
.margen_inf_30px{
    margin-bottom:30px !important;
}
.fuente_10px{
    font-size:10px !important;
}
.fuente_11px{
    font-size:11px !important;
}
.fuente_12px{
    font-size:12px !important;
}
.fuente_13px{
    font-size:13px !important;
}
.fuente_14px{
    font-size:14px !important;
}
.fuente_15px{
    font-size:15px !important;
}
.fuente_16px{
    font-size:16px !important;
}
.fuente_17px{
    font-size:17px !important;
}
.fuente_18px{
    font-size:18px !important;
}
.fuente_19px{
    font-size:19px !important;
}
.fuente_20px{
    font-size:20px !important;
}
.fuente_21px{
    font-size:21px !important;
}
.fuente_22px{
    font-size:22px !important;
}
.fuente_23px{
    font-size:23px !important;
}
.fuente_24px{
    font-size:24px !important;
}
.fuente_28px{
    font-size:28px !important;
}
.fuente_32px{
    font-size:32px !important;
}
.negrita{
    font-weight: bold;
}
.justificado{
    text-align:justify !important;
}
.subrayado{
    text-decoration:underline;
}
.tachado{
    text-decoration: line-through;
}
.cursiva{
    font-style: italic !important;
}
/* COLORES DE TEXTO */
.texto_rojo{
    color: var(--rojo) !important;
}
.texto_amarillo{
    color: var(--amarillo) !important;
}
.texto_naranja{
    color:var(--naranja) !important;
}
.texto_azul_wettec{
    color:var(--azul_wettec) !important;
}
.texto_gris{
    color: var(--gris) !important;
}
.texto_gris_disabled{
    color: #C0C0C0 !important;
}
.texto_negro{
    color: #000 !important;
}
.texto_blanco{
    color: #FFF !important;
}
.texto_verde{
    color: #33FF33 !important;
}
.texto_verde_oscuro{
    color: #009900 !important;
}
.texto_rojo_danger{
    color: var(--rojo-danger) !important;
}


/* COLORES DE FONDO */
.fondo_blanco{
    background-color: #FFF;
}
.fondo_amarillo{
    background-color: var(--amarillo);
}
.fondo_naranja{
    background-color: var(--naranja);
}
.fondo_rojo{
    background-color: var(--rojo) !important;
}
.fondo_gris{
    background-color: var(--gris) !important;
}
.fondo_verde{
    background-color: var(--verde);
}
.fondo_rojo_claro{
    background-color: #FAEAEA;
}
.fondo_verde_claro{
    background-color: #E5FFCC;
}

.bordeado{
    border: 1px solid #A0A0A0 !important;
    border-radius: 5px;
}

.borde-rojo{
    border: 2px solid #FF0000 !important;
    border-radius: 5px;
}

/* COLORES DE BOTONES */
.floating-button-wettec{
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #f44336; /* Rojo */
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
}

.floating-button-wettec_top{
    position: fixed;
    top: 80px;
    /*right: 20px;*/
    right: 6px;
    width: 56px;
    height: 56px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
}
.floating-button:hover {
    background-color: #d32f2f; /* Rojo más oscuro */
}

.scroll-card-content {
    height: 400px;
    overflow-y: auto;
}

.btn_naranja{
    background-color: var(--naranja);
}
.btn_naranja:focus,
.btn_naranja:active,
.btn_naranja:hover{
    background-color: #FFBE4D !important;
}

.btn_amarillo{
    background-color: var(--amarillo_oscuro)!important;
}
.btn_amarillo:focus,
.btn_amarillo:active,
.btn_amarillo:hover{
    background-color: var(--amarillo_oscuro) !important;
}

/* Borde más oscuro en radios/checkboxes Bootstrap */
.form-check-input {
    border-color: #a3a3a3; /* gris Bootstrap “secondary” */
}
.form-control {
    border: var(--bs-border-width) solid #a3a3a3;
}
.form-select {
    border: var(--bs-border-width) solid #a3a3a3;
}
.date_picker_daimob{
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    /*border: 1px solid #a3a3a3;*/
    border: var(--bs-border-width) solid #a3a3a3;
    border-radius: 0.375rem;
    /*height: 38px;*/
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
    background-clip: padding-box;
}





.input-field label {
    color: rgb(0,0,0);
    font-size: 1rem !important;
}
.input-field input[type=text]:focus + label,
.input-field input[type=number]:focus + label,
.input-field input[type=email]:focus + label,
.input-field input[type=password]:focus + label{
    color: var(--naranja) !important;
}

.input-field .prefix.active {
    color: #E7002D;
}

.input-field input[type=text]:focus,
.input-field input[type=number]:focus,
.input-field input[type=email]:focus,
.input-field input[type=password]:focus{
    border-bottom: 1px solid var(--naranja) !important;
    box-shadow: 0 1px 0 0 var(--naranja) !important;
}

[type="checkbox"]+label{
    color: rgb(0,0,0);
    font-size: 0.8rem !important;
}
[type="checkbox"]:checked+label:before{
    border-right:2px solid var(--naranja);
    border-bottom: 2px solid var(--naranja)
}
.dropdown-content li>span{
    font-size: 0.8rem;
    color: var(--naranja);
}

/* ----- Botones -----*/
.btn_verde{
    background-color:#9BC729 !important;
}
.btn_veige{
    background-color:#6B6B6C !important;
}
.btn_rojo{
    background-color:#E7002D !important;
}
.btn_verde_claro{
    background-color: #8AA79B !important;
}
.btn_veige_claro{
    background-color: #6B6B6C !important;
}
.btn_amarillo_claro{
    background-color: #F7E09F !important;
}
.btn_rojo_claro{
    background-color: #EA9683 !important;
}
.btn_gris{
    background-color: #6E6B6B !important;
}
.btn_gps {
    background-color:#007259;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    border-radius:10px;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-size:19px;
    padding:9px 15px 9px 5px;
    text-decoration:none;
    text-shadow:0px 0px 0px #283966;
}

.select_avisapp{
    border-radius: 7px;
    border: 1px solid #A0A0A0;
}
.btn_gps:hover {
    background-color:#007259;
}
.btn_gps:active {
    position:relative;
    top:1px;
}
.btn_BPA {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border: none;
    border-radius: 10px;
    height: 64px;
    line-height: 64px;
    color: #FFFFFF;
    font-family: Open Sans;
    width: 64px;
    font-size: 10px;
    font-weight: 100;
    padding: 0px;
    box-shadow: 1px 1px 5px 0px #000000;
    -webkit-box-shadow: 1px 1px 5px 0px #000000;
    -moz-box-shadow: 1px 1px 5px 0px #000000;
    text-shadow: 1px 1px 20px #000000;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.btn_BPA:hover {
    background: #1E62D0;
    text-decoration: none;
}
.cerrar_menu,cerrar_menu:hover,cerrar_menu:active,cerrar_menu:focus{
    position: fixed;
    left: 220px;
    top: 10px;
}
.cerrar_menu1,cerrar_menu1:hover,cerrar_menu1:active,cerrar_menu1:focus{
    position: fixed;
    right: 50px;
    top: 10px;
}
.btn_plagas {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border: none !important;
    border-radius: 30px;
    height: 64px;
    line-height: 64px;
    color: #FFFFFF;
    font-family: Open Sans;
    width: 64px;
    font-size: 10px;
    padding: 0px;
    box-shadow: 1px 1px 5px 0px #000000;
    -webkit-box-shadow: 1px 1px 5px 0px #000000;
    -moz-box-shadow: 1px 1px 5px 0px #000000;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.btn_plano,.btn_plano:hover,.btn_plano:active,.btn_plano:focus{
    border:none !important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    color: #000000;
    font-size: 12px;
    font-weight: 200;
    padding: 10px;
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.btn_plano_borde,.btn_plano_borde,.btn_plano_borde:hover,.btn_plbtn_plano_bordeano:active,.btn_plano_borde:focus{
    border:2px solid #B2AB46;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #000000;
    font-size: 16px;
    font-weight: 200;
    padding: 10px;
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    padding: 5px !important;
}
.btn_index,.btn_index:hover,.btn_index:active,.btn_index:focus{
    font-size: 16px !important;
    padding-left: 0 !important;
}
.btn_menu,.btn_menu:hover,.btn_menu:active,.btn_menu:focus{
    width: 90%;
    text-align: left !important;
}

div.stars {
    width: 270px !important;
    display: inline-block !important;
}
input.star {
    display: none !important;
}
label.star {
    float: right !important;
    padding: 10px !important;
    font-size: 36px !important;
    color: #444 !important;
    transition: all .2s !important;
}
input.star:checked ~ label.star:before {
    content: '\f005' !important;
    color: #FD4 !important;
    transition: all .25s !important;
}
input.star-5:checked ~ label.star:before {
    color: #FE7 !important;
    text-shadow: 0 0 20px #952 !important;
}
input.star-1:checked ~ label.star:before {
    color: #F62 !important;
}
label.star:hover {
    transform: rotate(-15deg) scale(1.3) !important;
}
label.star:before {
    content: '\f006' !important;
    font-family: FontAwesome !important;
}
.modal_pantalla_completa{
    max-height: 95% !important;
    max-width:  95% !important;
    top:2% !important;
    height: 95%;
    width: 95% !important;
}

.modal_edit_liq{
    max-height: 90% !important;
    /*max-width:  95% !important;*/
    top:4% !important;
    height: 90%;
    /*width: 95% !important;*/
}

.modal_programacion{
    max-height: 98% !important;
    max-width: 98% !important;
    width: 98% !important;
    top: 1% !important;
    height: 98%;
    border-radius: 10px;
    border: 3px solid #FFB93F !important;
}

.modal_90_alto{
    max-height: 90% !important;
    top:2% !important;
    height: 95%;
    /*width: 95% !important;*/
}

.modal_max_80{
    max-height: 80% !important;
    width: 80% !important;
}

.modal_max_90{
    max-height: 90% !important;
    width: 90% !important;
}

.borde_inf{
    border-bottom: 2px solid #FFFFFF;
}

.borde_inf_gris{
    border-bottom: 1px solid #d0d0d0;
}

.borde_izq{
    border-left: 1px solid #B2AB46;
}

.borde_inf_naranja_2px {
    border-bottom: 2px solid var(--naranja) !important;
}

.borde_izq_gris{
    border-left: 1px solid #d0d0d0;
}
.borde_der_gris{
    border-right: 1px solid #d0d0d0;
}


.texto_error_prefix{
    font-size: 12px;
    color: #FF0000 !important;
    padding-left: 40px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.texto_error{
    font-size: 12px;
    color: #FF0000 !important;
    /*padding-left: 40px;*/
    margin-top: 0px;
    margin-bottom: 0px;
}

p.label_avisapp{
    font-size: 14px !important;
    margin-bottom: 0px !important;
}
p.label_avisapp_prefix{
    font-size: 14px !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    padding-left: 40px;
}
.btn_add{
    position: fixed;
    bottom: 100px;
    right: 50px;
}
.calific_rojo{
    background-color: #FF0000 !important;
}
.calific_naranja{
    background-color: #FFA303 !important;
}
.calific_amarillo{
    background-color: #FFFF00 !important;
}
.calific_verde{
    background-color: #00FF00 !important;
}

.modal-80{
    max-height: 80% !important;
}

.modal-90{
    max-height: 90% !important;
    max-width: 90% !important;
}

.modal-graficas{
    max-height: 90% !important;
    /*max-width: 95% !important;*/
    width: 95% !important;
}

.modal-100{
    max-height: 99% !important;
    max-width: 95% !important;
    width: 90% !important;
}
