/* 
    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_penagos: #3a3981;
    --azul_penagos_claro: #03afef;
}


/*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: "Montserrat";
    font-style: normal;
    src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype")
}

.montserrat{
    font-family:"Montserrat" !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:"Montserrat" !important;
    /*font-size: 16px;*/
    /*background: transparent !important;*/
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    overflow-x: hidden;
    /* background: transparent url("../img/fondo3.png") repeat scroll 0px 0px;*/
}

main {
    flex: 1 0 auto;
}

/*HEADER*/
.text-small {
    font-size: 85%;
}

.dropdown-toggle:not(:focus) {
    outline: 0;
}

/*CALIFICADOR*/
/*CALIFICAR*/
.star {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}
.star.hovered,
.star.selected {
    color: #fbc02d; /* Amarillo dorado */
}

/*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);
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: "Flaticon";
        src: url("../fonts/icons/Flaticon.svg#Flaticon") format("svg");
    }
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
    /*font-size: 20px;*/
    font-style: normal;
    margin-left: 10px;
}
.flaticon-calendar:before {
    content: "\f100";
}
.flaticon-facebook:before {
    content: "\f101";
}
.flaticon-instagram:before {
    content: "\f102";
}
.flaticon-user:before {
    content: "\f103";
}
.flaticon-lock:before {
    content: "\f104";
}
.flaticon-menu:before {
    content: "\f105";
}
.flaticon-user-1:before {
    content: "\f106";
}
.flaticon-pin:before {
    content: "\f107";
}
.flaticon-smile:before {
    content: "\f108";
}
.flaticon-qr-code:before {
    content: "\f109";
}
.flaticon-mail:before {
    content: "\f10a";
}
.flaticon-add:before {
    content: "\f10b";
}
.flaticon-arrow:before {
    content: "\f10c";
}
.flaticon-home:before {
    content: "\f10d";
}
.flaticon-sad:before {
    content: "\f10e";
}
.flaticon-loading:before {
    content: "\f10f";
}
.flaticon-left-arrow:before {
    content: "\f110";
}
.flaticon-telephone:before {
    content: "\f111";
}
.flaticon-internet:before {
    content: "\f112";
}
.flaticon-target:before {
    content: "\f113";
}
.flaticon-unlock:before {
    content: "\f114";
}
.flaticon-thunderbolt:before {
    content: "\f115";
}
.flaticon-expand:before {
    content: "\f116";
}
.flaticon-refresh:before {
    content: "\f117";
}
.flaticon-cube:before {
    content: "\f118";
}
.flaticon-key:before {
    content: "\f119";
}
.flaticon-down-arrow:before {
    content: "\f11a";
}
.flaticon-question:before {
    content: "\f11b";
}
.flaticon-hide:before {
    content: "\f11c";
}
.flaticon-diskette:before {
    content: "\f11d";
}
.flaticon-eye:before {
    content: "\f11e";
}
.flaticon-select:before {
    content: "\f11f";
}
.flaticon-clicker:before {
    content: "\f120";
}
.flaticon-wall-clock:before {
    content: "\f121";
}
.flaticon-check:before {
    content: "\f122";
}
.flaticon-idea:before {
    content: "\f123";
}
.flaticon-credit-card:before {
    content: "\f124";
}
.flaticon-filter:before {
    content: "\f125";
}
.flaticon-leaf:before {
    content: "\f126";
}
.flaticon-delete:before {
    content: "\f127";
}
.flaticon-youtube:before {
    content: "\f128";
}
.flaticon-right-arrow:before {
    content: "\f129";
}
.flaticon-power-button:before {
    content: "\f12a";
}
.flaticon-menu-1:before {
    content: "\f12b";
}
.flaticon-video-camera:before {
    content: "\f12c";
}
.flaticon-tools:before {
    content: "\f12d";
}
.flaticon-wifi:before {
    content: "\f12e";
}
.flaticon-edit:before {
    content: "\f12f";
}
.flaticon-chat:before {
    content: "\f130";
}
.flaticon-reply:before {
    content: "\f131";
}
.flaticon-bluetooth:before {
    content: "\f132";
}
.flaticon-audio:before {
    content: "\f133";
}
.flaticon-download:before {
    content: "\f134";
}
.flaticon-share:before {
    content: "\f135";
}
.flaticon-tv:before {
    content: "\f136";
}
.flaticon-upload:before {
    content: "\f137";
}
.flaticon-wind:before {
    content: "\f138";
}
.flaticon-play-button:before {
    content: "\f139";
}
.flaticon-user-2:before {
    content: "\f13a";
}
.flaticon-exit:before {
    content: "\f13b";
}
.flaticon-star:before {
    content: "\f13c";
}
.flaticon-wheel-chair:before {
    content: "\f13d";
}
.flaticon-image:before {
    content: "\f13e";
}
.flaticon-upload-1:before {
    content: "\f13f";
}
.flaticon-pin-1:before {
    content: "\f140";
}
.flaticon-user-3:before {
    content: "\f141";
}
.flaticon-attach:before {
    content: "\f142";
}
.flaticon-cursor:before {
    content: "\f143";
}
.flaticon-like:before {
    content: "\f144";
}
.flaticon-folder:before {
    content: "\f145";
}
.flaticon-temperature:before {
    content: "\f146";
}
.flaticon-trash:before {
    content: "\f147";
}
.flaticon-phone:before {
    content: "\f148";
}
.flaticon-photo-camera:before {
    content: "\f149";
}
.flaticon-bell:before {
    content: "\f14a";
}
.flaticon-link:before {
    content: "\f14b";
}
.flaticon-print:before {
    content: "\f14c";
}
.flaticon-bell-1:before {
    content: "\f14d";
}
.flaticon-graph:before {
    content: "\f14e";
}
.flaticon-medal:before {
    content: "\f14f";
}
.flaticon-trash-1:before {
    content: "\f150";
}
.flaticon-file:before {
    content: "\f151";
}
.flaticon-file-1:before {
    content: "\f152";
}
.flaticon-mixer:before {
    content: "\f153";
}
.flaticon-down-arrow-1:before {
    content: "\f154";
}
.flaticon-back:before {
    content: "\f155";
}
.flaticon-bullhorn:before {
    content: "\f156";
}
.flaticon-clipboard:before {
    content: "\f157";
}
.flaticon-speaker:before {
    content: "\f158";
}
.flaticon-silent:before {
    content: "\f159";
}
.flaticon-sun:before {
    content: "\f15a";
}
.flaticon-moon:before {
    content: "\f15b";
}
.flaticon-see:before {
    content: "\f15c";
}
.flaticon-ui:before {
    content: "\f15d";
}
.flaticon-compass:before {
    content: "\f15e";
}
.flaticon-flag:before {
    content: "\f15f";
}
.flaticon-usb:before {
    content: "\f160";
}
.flaticon-order:before {
    content: "\f161";
}
.flaticon-layout:before {
    content: "\f162";
}
.flaticon-pencil:before {
    content: "\f163";
}
.flaticon-bag:before {
    content: "\f164";
}
.flaticon-download-1:before {
    content: "\f165";
}
.flaticon-push-pin:before {
    content: "\f166";
}
.flaticon-hourglass:before {
    content: "\f167";
}
.flaticon-send:before {
    content: "\f168";
}
.flaticon-minimize:before {
    content: "\f169";
}
.flaticon-text:before {
    content: "\f16a";
}
.flaticon-fast-forward:before {
    content: "\f16b";
}
.flaticon-return:before {
    content: "\f16c";
}
.flaticon-up-arrow:before {
    content: "\f16d";
}
.flaticon-reply-all:before {
    content: "\f16e";
}
.flaticon-music:before {
    content: "\f16f";
}
.flaticon-scissors:before {
    content: "\f170";
}
.flaticon-umbrella:before {
    content: "\f171";
}
.flaticon-phone-1:before {
    content: "\f172";
}
.flaticon-upload-2:before {
    content: "\f173";
}
.flaticon-text-1:before {
    content: "\f174";
}
.flaticon-highlighter:before {
    content: "\f175";
}
.flaticon-up-arrow-1:before {
    content: "\f176";
}
.flaticon-dislike:before {
    content: "\f177";
}
.flaticon-connection:before {
    content: "\f178";
}
.flaticon-safari:before {
    content: "\f179";
}
.flaticon-multimedia-option:before {
    content: "\f17a";
}
.flaticon-rewind:before {
    content: "\f17b";
}
.flaticon-forest:before {
    content: "\f17c";
}
.flaticon-night:before {
    content: "\f17d";
}
.flaticon-leaf-1:before {
    content: "\f17e";
}
.flaticon-map:before {
    content: "\f17f";
}
.flaticon-mosquito:before {
    content: "\f180";
}
.flaticon-boot:before {
    content: "\f181";
}
.flaticon-leaf-2:before {
    content: "\f182";
}
.flaticon-user-4:before {
    content: "\f183";
}
.flaticon-id-card:before {
    content: "\f184";
}
.flaticon-paper-plane:before {
    content: "\f185";
}
.flaticon-user-5:before {
    content: "\f186";
}
.flaticon-key-1:before {
    content: "\f187";
}
.flaticon-user-6:before {
    content: "\f188";
}
.flaticon-warning:before {
    content: "\f189";
}
.flaticon-shield:before {
    content: "\f18a";
}
.flaticon-computer:before {
    content: "\f18b";
}
.flaticon-antivirus:before {
    content: "\f18c";
}
.flaticon-distance:before {
    content: "\f18d";
}
.flaticon-map-1:before {
    content: "\f18e";
}
.flaticon-phone-2:before {
    content: "\f18f";
}
.flaticon-avocado:before {
    content: "\f190";
}
.flaticon-half-avocado:before {
    content: "\f191";
}
.flaticon-avocado-1:before {
    content: "\f192";
}
.flaticon-avocado-2:before {
    content: "\f193";
}
.flaticon-organic:before {
    content: "\f194";
}
.flaticon-avocado-3:before {
    content: "\f195";
}
.flaticon-avocado-4:before {
    content: "\f196";
}
.flaticon-cockroach:before {
    content: "\f197";
}
.flaticon-firefly:before {
    content: "\f198";
}
.flaticon-fly:before {
    content: "\f199";
}
.flaticon-moth:before {
    content: "\f19a";
}
.flaticon-chrysalid:before {
    content: "\f19b";
}
.flaticon-centipide:before {
    content: "\f19c";
}
.flaticon-heart:before {
    content: "\f19d";
}
.flaticon-diagram:before {
    content: "\f19e";
}
.flaticon-random:before {
    content: "\f19f";
}
.flaticon-chrome:before {
    content: "\f1a0";
}
.flaticon-snow:before {
    content: "\f1a1";
}
.flaticon-shield-1:before {
    content: "\f1a2";
}
.flaticon-send-1:before {
    content: "\f1a3";
}
.flaticon-down-arrow-2:before {
    content: "\f1a4";
}
.flaticon-calculator:before {
    content: "\f1a5";
}
.flaticon-radio:before {
    content: "\f1a6";
}
.flaticon-smiley:before {
    content: "\f1a7";
}
.flaticon-tag:before {
    content: "\f1a8";
}
.flaticon-dashboard:before {
    content: "\f1a9";
}
.flaticon-shopping-cart:before {
    content: "\f1aa";
}
.flaticon-twitter:before {
    content: "\f1ab";
}
.flaticon-gear:before {
    content: "\f1ac";
}
.flaticon-info:before {
    content: "\f1ad";
}
.flaticon-screenshot:before {
    content: "\f1ae";
}
.flaticon-plus:before {
    content: "\f1af";
}
.flaticon-joke:before {
    content: "\f1b0";
}
.flaticon-stop:before {
    content: "\f1b1";
}
.flaticon-eraser:before {
    content: "\f1b2";
}
.flaticon-diamond:before {
    content: "\f1b3";
}
.flaticon-money:before {
    content: "\f1b4";
}
.flaticon-down-arrow-3:before {
    content: "\f1b5";
}
.flaticon-pause:before {
    content: "\f1b6";
}
.flaticon-smile-1:before {
    content: "\f1b7";
}
.flaticon-switch-off:before {
    content: "\f1b8";
}
.flaticon-minus:before {
    content: "\f1b9";
}
.flaticon-mobile-phone:before {
    content: "\f1ba";
}
.flaticon-surprise:before {
    content: "\f1bb";
}
.flaticon-cash:before {
    content: "\f1bc";
}
.flaticon-bookmark:before {
    content: "\f1bd";
}
.flaticon-switch:before {
    content: "\f1be";
}
.flaticon-move:before {
    content: "\f1bf";
}
.flaticon-puzzle:before {
    content: "\f1c0";
}
.flaticon-firefox:before {
    content: "\f1c1";
}
.flaticon-cut:before {
    content: "\f1c2";
}
.flaticon-film-strip:before {
    content: "\f1c3";
}
.flaticon-mute:before {
    content: "\f1c4";
}
.flaticon-text-2:before {
    content: "\f1c5";
}
.flaticon-bucket:before {
    content: "\f1c6";
}
.flaticon-businessman:before {
    content: "\f1c7";
}
.flaticon-target-1:before {
    content: "\f1c8";
}
.flaticon-money-bag:before {
    content: "\f1c9";
}
.flaticon-package:before {
    content: "\f1ca";
}
.flaticon-businessman-1:before {
    content: "\f1cb";
}
.flaticon-contract:before {
    content: "\f1cc";
}
.flaticon-magnifying-glass:before {
    content: "\f1cd";
}
.flaticon-goal:before {
    content: "\f1ce";
}
.flaticon-key-2:before {
    content: "\f1cf";
}
.flaticon-teamwork:before {
    content: "\f1d0";
}
.flaticon-blur:before {
    content: "\f1d1";
}
.flaticon-mountains:before {
    content: "\f1d2";
}
.flaticon-sunset:before {
    content: "\f1d3";
}
.flaticon-ph-meter:before {
    content: "\f1d4";
}
.flaticon-rain:before {
    content: "\f1d5";
}
.flaticon-water:before {
    content: "\f1d6";
}
.flaticon-water-1:before {
    content: "\f1d7";
}
.flaticon-sprout:before {
    content: "\f1d9";
}
.flaticon-leaf-3:before {
    content: "\f1da";
}
.flaticon-sprout-1:before {
    content: "\f1db";
}
.flaticon-tree:before {
    content: "\f1dc";
}
.flaticon-bug:before {
    content: "\f1dd";
}
.flaticon-leaf-4:before {
    content: "\f1de";
}
.flaticon-plant:before {
    content: "\f1df";
}
.flaticon-plant-1:before {
    content: "\f1e0";
}
.flaticon-garden:before {
    content: "\f1e1";
}
.flaticon-rice:before {
    content: "\f1e2";
}
.flaticon-farm:before {
    content: "\f1e3";
}
.flaticon-hop:before {
    content: "\f1e4";
}
.flaticon-tractor:before {
    content: "\f1e5";
}
.flaticon-wheelbarrow-1:before {
    content: "\f1e6";
}
.flaticon-seed:before {
    content: "\f1e7";
}
.flaticon-handcraft:before {
    content: "\f1e8";
}
.flaticon-farm-1:before {
    content: "\f1e9";
}
.flaticon-farm-2:before {
    content: "\f1ea";
}
.flaticon-sprout-2:before {
    content: "\f1eb";
}
.flaticon-tree-1:before {
    content: "\f1ec";
}
.flaticon-wheelbarrow:before {
    content: "\f1ed";
}
.flaticon-oil:before {
    content: "\f1ee";
}
.flaticon-grass:before {
    content: "\f1ef";
}
.flaticon-rice-1:before {
    content: "\f1f0";
}
.flaticon-seed-1:before {
    content: "\f1f1";
}
.flaticon-farm-3:before {
    content: "\f1f2";
}
.flaticon-seed-2:before {
    content: "\f1f3";
}
.flaticon-seed-3:before {
    content: "\f1f4";
}
.flaticon-farmer:before {
    content: "\f1f5";
}
.flaticon-garden-1:before {
    content: "\f1f6";
}

.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_azul_penagos{
    color:var(--azul_penagos) !important;
}
.texto_azul_penagos_claro{
    color:var(--azul_penagos_claro) !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;
}


[type="radio"]:checked+label:after, [type="radio"].with-gap:checked+label:after {
    background-color: #E7002D;
    z-index: 0;
}
[type="radio"]:checked+label:after, [type="radio"].with-gap:checked+label:before, [type="radio"].with-gap:checked+label:after {
    border: 2px solid #E7002D;
}
.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;
}
