/* VARIABLES DE DISEÑO */
:root {
   /* --primary-blue: #004BCE;
    --light-blue: #00A3E0;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #F4F7FC;
    --white: #FFFFFF;*/
    --primary-blue: #004BCE;
    --light-blue: #00A3E0;
    --water-blue: #CBDDFA; /* Azul difuminado suave */
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: rgba(244, 247, 252, 0.45); /* Hacemos los fondos un poco transparentes */
    --white: #FFFFFF;
}
/*CSS THEME BLUE ORIGINAL*/
.page-wrapper {
     background: none !important;/*PARA REMOVER BACKGROUND GRIS*/
}

.content{ /*COLOR DE TEXTO PRINCIPAL*/
    color:#000 !important;
}

/*PRECARGA RIPPLE*/
.preloader{ /*PRECARGAR*/
    /*background-image: linear-gradient(to right, #006bb3, #003c7e, #006bb3) !important;*/
    
    background-image: linear-gradient(to left, var(--light-blue), var(--primary-blue)) !important;
    color: #fff !important;
}

/*PRECARGA RIPPLE*/
.preloader2{ /*PRECARGAR*/
    /*background-image: linear-gradient(to right, #006bb3, #003c7e, #006bb3) !important;*/
    background-image: linear-gradient(to left, #020d37, #020f43) !important;
   /* background-image: linear-gradient(to left, var(--light-blue), var(--water-blue), var(--light-blue)) !important;*/
    color: #fff !important;
}


.link_no_style {
    /* 1. Remover el subrayado */
    text-decoration: none;

    /* 2. Establecer un color de texto deseado (ej. el color del texto circundante) */
    color: inherit; 
    
    /* 3. Remover el cursor de mano si no quieres que parezca un enlace */
    /*cursor: default;*/

    /* 4. Asegurarse de que no cambie al ser visitado, enfocado o al pasar el ratón */
    /* El 'color: inherit' de arriba normalmente es suficiente, pero si quieres ser más específico: */
    
    /* Estado Normal (sin visitar) */
    color: black; 
}

/* Evitar que cambie de estilo al pasar el ratón */
.link_no_style:hover, 
.link_no_style:focus,
.link_no_style:active,
.link_no_style:visited {
    color: black; /* O el color que desees */
    text-decoration: none;
}

/*.lds-ripple {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    position: absolute;
    top: calc(50% - 3.5px);
    left: calc(50% - 3.5px);
}*/

.lds-ripple .lds-pos {
    /*position: absolute;*/
    /*border: 2px solid #2962ff;*/
    border: 5px solid #fff;
    /*opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0,0.1,0.5,1) infinite;*/
}

/*PRECARGA ROLLER*/
/*Roller*/
.lds-roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cef;
  margin: -3px 0 0 -3px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*FIN PRECARGA*/

.body-white{ /*BACKGROUND DE PANTALLAS DE DATOS*/
    background: none !important;
     /*background: url('../../../../images/background-white.jpg') !important;
     background-size: cover !important;
     background-repeat: no-repeat !important;*/
}

.body-white2{ /*BACKGROUND DE PANTALLAS DE DATOS*/
     background: url('../../../../images/background-white.jpg') !important;
     background-size: cover !important;
     background-repeat: no-repeat !important;
}

.card_border_round /*BORDE REDONDEADO DE PANTALLA DE DATOS*/
{
    border-radius:20px !important;
}

.no-background /*ELIMINAR BACGKRAOUDNS*/
{
    background-color: transparent !important;
}

.footer_center /*ALINEACION DEL FOOTER*/
{
    font-weight: bold !important;
    font-size:18px;
    position: fixed !important; /*ABAJO*/
    bottom: 0% !important; /*SIN MARGEN*/
    /*right: 30% !important; /*POSICION CENTRADA*/
    /*background-image: linear-gradient(to left, #042041, #1a1daf) !important;*/
    background-image: linear-gradient(to left, #020d37, #020f43) !important;
    width: 100% !important;
    z-index: 5 !important; /*POR ERROR SLIDER*/
    align-items: center;
}
.footer_center2 /*ALINEACION DEL FOOTER SOLO PARA INDEX POR SLIDER -- SIN USO*/
{ 
   font-weight: bold !important;
    font-size:18px;
   /* position: fixed !important; /*ABAJO*/ 
   /* bottom: 0% !important; /*SIN MARGEN*/
    /*right: 30% !important; /*POSICION CENTRADA*/
    /*background-image: linear-gradient(to left, #1f262d, #333b43) !important;*/
    /*background-image: linear-gradient(to left, #042041, #1a1daf) !important;*/
    background-image: linear-gradient(to left, #020d37, #020f43) !important;
    width: 100% !important;
    z-index: 5 !important;
    align-items: center;
}

.link_footer{ /*LINK DE FOOTER*/
    color:#fff !important;
    text-align: center; /*POSICION CENTRADA*/
}


/*BARRA LATERAL IZQUIERDA*/
#main-wrapper .left-sidebar[data-sidebarbg=skin5], #main-wrapper .left-sidebar[data-sidebarbg=skin5] ul {
    background-image: linear-gradient(to right, #1f262d, #333b43) !important;
    color: #fff !important;
}

/*ESQUINA DE LOGO*/ 
#main-wrapper .topbar .top-navbar .navbar-header[data-logobg=skin5] {
   background-image: linear-gradient(to right, #1f262d, #333b43) !important;
    color: #fff !important;
}

/*BARRA SUPERIOR*/
#main-wrapper .topbar .navbar-collapse[data-navbarbg=skin5], #main-wrapper .topbar[data-navbarbg=skin5] {
    background-image: linear-gradient(to left, #1f262d, #333b43) !important;
    color: #fff !important;
}
#navbarSupportedContent {
   background-image: linear-gradient(to left, #1f262d, #333b43) !important;
    color: #fff !important;
}

/*MENU ACTIVO - SELECCIONADO*/
.sidebar-nav ul .sidebar-item.selected>.sidebar-link {
    /*background: #27a9e3;*/ /*INFO COLOR*/
    background-image: linear-gradient(to right, #003c7e, #006bb3) !important;
    opacity: 1;
}

/*CABECERAS DE PANTALLA DE DATOS*/
.window-title{
    /*background-image: linear-gradient(to right, #006bb3, #003c7e, #006bb3) !important;
    border-radius: 20px;*/
    /*color: #27258b !important;*/
    color: var(--primary-blue) !important;
    padding: 15px;
    text-align: center;
    font-size: 25px;
    font-weight: 800!important;
    text-transform: uppercase;
}

.window-title-left{
    /*background-image: linear-gradient(to right, #006bb3, #003c7e, #006bb3) !important;
    border-radius: 20px;*/
    /*color: #27258b !important;*/
    color: var(--primary-blue) !important;
    padding: 15px;
    text-align: left;
    font-size: 25px;
    font-weight: 800!important;
    text-transform: uppercase;
}

/*CLASES ADICIONALES DE CATALOGO*/
.catalog_top_round{
    border-top-left-radius: 20px !important; 
    border-top-right-radius: 20px !important;
}

.catalog_border{
    border: 1px,solid,black !important;
}

/*CUADROS DE ESTADOS DE CUENTA*/
.card{
    /*flex-direction: row;*/
}
.card-hover
{
    background-color: transparent !important;
}
.box_success /*SIN VENCER*/
{
    color: #fff !important;
    background-color: #0e670e!important;  
    border-color: #0e670e !important; 
    width:100% !important;
    /*border-radius:20px !important;*/   
}
.box_error /*VENCIDO*/
{
    color: #fff !important;
    background-color: #a50d0d !important;
    border-color: #a50d0d !important;
    width:100% !important;
    /*border-radius:20px !important;*/ 
}
.box_warning/*APUNTO DE VENCER*/
{
    color: #fff !important;
    background-color: #b57d42 !important;
    border-color: #b57d42 !important;
    border-radius:20px !important;
}

.box_theme
{
    color: #fff !important;

    border-color: #003c7e !important;
    border-radius:20px !important;
}

/*CAJA DE PRECARGA DE FORMULARIOS*/
.preloader_data {
    /*background-image: linear-gradient(to right, #006bb3, #003c7e, #006bb3) !important;*/
    /*background-image: linear-gradient(to left, #020d37, #020f43) !important;*/
    background-image: linear-gradient(to left, var(--light-blue), var(--primary-blue)) !important;
    padding: 15px;
    border-radius: 20px;
}

/*ELEMETOS DE FORMULARIOS*/
.field_rounded /*CAMPOS REDONDEADOS*/
{
    /*border-radius:10px !important;*/
    color:#000 !important; /*COLOR DE TEXTO DE CAMPOS*/
    border-color: #9f9c9c !important; /*COLOR DE BORDE DE CAMPOS*/
}

.field_error /*CAMPOS ERRONEO*/
{
    border: 3px #a50d0d solid  !important;
    border-radius: 20px !important;
}

.field_error_text /*CAMPOS ERRONEO*/
{
    color: #a50d0d !important;
}

.field_success /*CAMPOS CORRECTOS*/
{
    border: 3px #0e670e solid  !important;
    border-radius: 20px !important;
}

.field_success_text /*CAMPOS ERRONEO*/
{
    color: #0e670e !important;
}

/*TAMAÑO DE ICONOS*/
.mdi-eye:before
{
    font-size: 20px!important;
} 
.mdi-lead-pencil:before
{
    font-size: 20px!important;
} 


.btn_facebook
{
    color: #fff !important;
    background-color: #2255a4 !important;
    border-color: #2255a4 !important;
}
.btn_instagram
{
    color: #fff !important;
    background-color: #f6047d !important;
    border-color: #f6047d !important;
}
.btn_twitter
{
    color: #fff !important;
    background-color: #000 !important;
    border-color: #000 !important;
}
.btn_threads
{
    color: #fff !important;
    background-color: #000 !important;
    border-color: #000 !important;
}
.btn_tiktok
{
    color: #fff !important;
    background-color: #000 !important;
    border-color: #000 !important;
}


.btn_cancel{ /*BOTON CANCEL*/
    color: #fff !important;
    background-color: #a50d0d !important;
    border-color: #a50d0d !important;  
    border-radius:20px !important; 
}
.btn_cancel:hover{ /*BOTON CANCEL*/
    color: #fff !important;
    background-color: #a50d0d !important;
    border-color: #a50d0d !important;
    border-radius:20px !important; 
}

.btn_done{/*BOTON SUCCESS*/
    color: #fff !important; 
    background-color: #0e670e !important;
    border-color: #0e670e!important;
    border-radius:20px !important;   
}

.btn_done:hover {/*BOTON SUCCESS*/
    color: #fff !important;
    background-color: #0e670e;
    border-color: #0e670e;
    border-radius:20px !important;   
}  

.btn_view
{
   color: #27258b !important;
    background-color: transparent; !important;
    border: none !important;
    /*border-radius:20px;*/
}

.btn_edit
{
    color: #27258b !important;
    background-color: transparent; !important;
    border: none !important;
    /*border-radius:20px;*/
}

.btn_backer
{
    color: #fff !important;
    background-color: #b57d42 !important;
    border-color: #b57d42 !important;
    /*border-radius:20px;*/
}


.btn_collapse{/*BOTON SUCCESS*/
    color: #fff !important; 
    background-color: #006bb3 !important;
    /*background-image: linear-gradient(to right, #006bb3, #003c7e) !important;*/
    /*background-image: linear-gradient(to left, #27258b, #020f43) !important;*/
    background-image: linear-gradient(to left, var(--light-blue), var(--primary-blue)) !important;
    border-color: transparent !important;
    border-radius:20px !important;   
}

.btn_collapse:hover {/*BOTON SUCCESS*/
    color: #fff !important;
    /*background-image: linear-gradient(to right, #006bb3, #003c7e) !important;*/
    /*background-image: linear-gradient(to left, #27258b, #020f43) !important;*/
    background-image: linear-gradient(to left, var(--light-blue), var(--primary-blue)) !important;
    border-color: transparent !important;
    border-radius:20px !important;   
}  

.btn_collapse_red{ /*BOTON CANCEL*/
    color: #27258b !important;
    background-color: transparent; !important;
    border: none !important;
    border-radius:20px;
}
.btn_collapse_red:hover{ /*BOTON CANCEL*/
      color: #27258b !important;
    background-color: transparent !important;
    border: none !important;
    border-radius:20px;
}


/*INDEX SLIDER*/
  .carousel-inner img {
    width: 100%;
    height: 100%;
  }

 /*MODAL HEADER AND FOOTER*/
.modal-header{ 
    /*background-color: #003c7e !important;*/
   /* background-image: linear-gradient(to right, #003c7e, #006bb3) !important; */
   /*background-image: linear-gradient(to left, #27258b, #020f43) !important;*/
   background-image: linear-gradient(to left, var(--light-blue), var(--primary-blue)) !important;
    color: #fff !important;
}
.modal-footer{
    /*background-color: #003c7e !important;*/
   /* background-image: linear-gradient(to right, #003c7e, #006bb3) !important;*/
    /*background-image: linear-gradient(to left, #27258b, #020f43) !important;*/
   background-image: linear-gradient(to left, var(--light-blue), var(--primary-blue)) !important;
    color: #fff !important;
}

/*SWEETALERT2*/
.swal2-popup {
    /*background-image: linear-gradient(to right, #006bb3, #003c7e, #006bb3) !important;*/
    /*background-image: linear-gradient(to left, #27258b, #020f43) !important;*/
   background-image: linear-gradient(to left, var(--light-blue), var(--primary-blue)) !important;
    border-radius:20px !important;
    text-color:#fff !important;
}

.swal2-content {
    text-color:#fff !important;
    color: #fff !important;
}

.swal2-title {
    text-color:#fff !important;
    color: #fff !important;
}

/*ICONO ERROR*/
.swal2-icon.swal2-error {
    border-color: #a50d0d !important;
    color: #a50d0d !important;
}
.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    border-color: #a50d0d !important;
    color: #a50d0d !important;
    background-color: #a50d0d !important;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    border-color: #a50d0d !important;
    color: #a50d0d !important;
     background-color: #a50d0d !important;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    border-color: #a50d0d !important;
    color: #a50d0d !important;
     background-color: #a50d0d !important;
}

/*ICON SUCCESS*/

.swal2-icon.swal2-success {
    border-color: #0e670e !important;
    color: #0e670e !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: #0e670e !important;
    color: #0e670e !important;
  /*  background-color: #0e670e !important;*/

}

.swal2-popup.swal2-toast .swal2-success {
  border-color: #0e670e !important;
    color: #0e670e !important;
    background-color: #0e670e !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
  border-color: #0e670e !important;
    color: #0e670e !important;
    background-color: #0e670e !important;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
    border-color: #0e670e !important;
    color: #0e670e !important;
    background-color: #0e670e !important;
}
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
    border-color: #0e670e !important;
    color: #0e670e !important;
    background-color: #0e670e !important;
}
 
 /*EFECTO DE SUCCESS*/
.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
   /* border-color: #0e670e !important;*/
   /* color: #0e670e !important;*/
    display: none!important;
   /* background-color: #0e670e !important;*/
}
.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
   /* border-color: #0e670e !important;*/
    /*color: #0e670e !important;*/
    display: none!important;
   /* background-color: #0e670e !important;*/
}
.swal2-icon.swal2-success .swal2-success-fix {
    display: none!important;
}

/*BOTON CONFIRMAR*/
.swal2-styled.swal2-confirm {
    color: #fff !important;
    background-color: #0e670e !important;
    border-color: #0e670e !important;
    border-radius:20px !important;
}

.swal2-styled.swal2-confirm:focus {
    color: #fff !important;
    background-color: #0e670e !important;
    border-color: #0e670e !important;
    border-radius:20px !important;
}

/*WARNING*/
.swal2-icon.swal2-warning {
    border-color: #b57d42 !important;;
    color: #b57d42 !important;;
}


/*BOTON CANCELAR*/
.swal2-styled.swal2-cancel {
    color: #fff !important;
    background-color: #a50d0d !important;
    border-color: #a50d0d !important;
    border-radius:20px !important;
}

.swal2-styled.swal2-cancel:focus {
    color: #fff !important;
    background-color: #a50d0d !important;
    border-color: #a50d0d !important;
    border-radius:20px !important;
}


/*FIN SWEET ALERT*/

/*TABLAS DE CONTENIDOS*/
/*TABLE*/
.table-responsive
{
    /*PARA CUANDO SEAN POCOS REGISTROS LAS TABLAS NO GENEREN SCROLL*/
    /*overflow-x:unset; */
    /*REMOVIDO POR OVERFLOW DE TABLAS CON EXCESO DE DATA*/
}


/*TABLE HEADERS*/
.thead_data{
    /*background-image: linear-gradient(to right, #003c7e, #006bb3) !important;*/
    /*color: #27258b!important;*/
    color: var(--primary-blue); 
    font-weight: bold !important;
    padding: 0.6rem !important; /*REDUCCION DE CABECERAS DE HEADER*/
}
.text_import_table
{
    text-align:right !important;
}

tbody, td, tfoot, th, thead, tr { /*BORDE DE FONDO DE FILAS DE TABLA*/
    border-bottom: 3px solid #27258b !important;
    /*border-width: 0px !important;*/
}

/*ICONO SORT*/
/*.glyphicon-sort
{
    color:#80808099 !important;
}*/

/*SUBMENU DE ACCIONES*/
.dropdown-menu /*NO CAMBIAR COLORES -> COLOR CLASS INFO */
{
    /*background-image: linear-gradient(to right, #003c7e, #006bb3) !important;*/
    background-color: #31b0d5 !important; 
    color: #fff !important;
}
.dropdown-menu>li>a {
     color: #fff !important;
}

.dropdown-menu>li>a:hover {
    /*background-image: linear-gradient(to right, #003c7e, #006bb3) !important;*/
    background-color: #31b0d5 !important; 
    color: #fff !important;
}

.dropdown-menu>li>a:focus {
    /*background-image: linear-gradient(to right, #003c7e, #006bb3) !important;*/
    background-color: #31b0d5 !important; 
    color: #fff !important;
}

/*AJUSTES DATEPICKER*/
.datepicker .datepicker-switch, 
.datepicker-switch:hover, /*OBJETO DE MES*/
.datepicker .next, /*PROXIMO*/
.datepicker .next:hover, 
.datepicker .prev, /*ANTERIOR*/
.datepicker .prev:hover, 
.datepicker tfoot tr th:hover {
     background-image: linear-gradient(to right, #006bb3, #003c7e, #006bb3) !important;
     border-radius:0px !important;
}

.datepicker .datepicker .day, /*DIAS DE MES (FECHAS)*/
.datepicker .day:hover, 
.datepicker .dow, /*OBJETO DE DIAS DE SEMANA*/
.datepicker .dow:hover, 
.datepicker tfoot tr th:hover {
   /* background-color: #31b0d5 !important; /*INFO COLOR*/
     background-image: linear-gradient(to right, #006bb3, #003c7e, #006bb3) !important;
     border-radius:0px !important;
}


/*DIAS CON FOCUS*/
.datepicker table tr td.day.focused, .datepicker table tr td.day:hover {
    background-color: #31b0d5 !important; 
    color: #fff !important;
}   

/*DIAS DE MESES ANTERIORES*/
.datepicker table tr td.new, .datepicker table tr td.old {
    /*color: #999;*/
    color: #fff !important;
} 

/*DIA ACTUAL*/
.datepicker table tr td.today 
{
    color: #fff !important;
    background-image: linear-gradient(to right, #003c7e, #006bb3) !important;
}

/*DIA ACTUAL CON HOVER*/
.datepicker table tr td.today:hover 
{
     color: #fff !important;
      background-image: linear-gradient(to right, #003c7e, #006bb3) !important;
}

/*AJUSTES DATERANGER*/


/*DIVISOR DE FILAS PARA SUBTITULOS*/
.divider{
    border-top: 5px solid;
    border-image: linear-gradient(to right, var(--primary-blue) , var(--light-blue), var(--primary-blue)) 1 0 0 0 !important;
    padding-top: 5px !important;/*ESPACIO PARA SEPARAR BORDE*/
}

.divider2{ /*NO CAMBIAR -> COLOR BLANCO DE BORDE*/
    border-top: 5px solid;
    border-image: #fff !important;/*linear-gradient(to right, #006bb3, #003c7e, #006bb3) 1 0 0 0 !important;*/
    padding-top: 5px !important;/*ESPACIO PARA SEPARAR BORDE*/
}

/*AJUSTE DE FILAS*/
.row{
 margin-left:0px !important;   
 margin-right:0px !important; 
}

/*BACKGROUNDS DE BODY*/

/*BODY - LUEGO DE LOGGEAR*/
.body-logged-login{ /*BACKGROUND DE FONDO*/
    /*background: url('../../images/background-blue.jpg') !important;*/
    background-image: url('pl_sandwich.jpg') !important;
     background-size: cover !important;  /* <--- ¡Añadido el ; ! 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
    height: 100% !important;
    /* Oscurecer con overlay */
    background-color: rgba(0, 0, 0, 0.4); /* negro con 40% opacidad */
    background-blend-mode: darken;        /* mezcla el color con la imagen */
}



.body-logged{ /*BACKGROUND DE FONDO*/
    /*background: url('../../images/background-blue.jpg') !important;*/
    /*background-image: linear-gradient(to right, #006bb3, #003c7e, #006bb3) !important;*/
    background: url('../../../../images/background-white.jpg') !important;
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
    height: 100% !important;
    /* Oscurecer con overlay */
    background-color: rgba(0, 0, 0, 0.4); /* negro con 40% opacidad */
    background-blend-mode: darken;        /* mezcla el color con la imagen */
}

/*BODY - VENTANA DE LOGIN*/

/*BODY - VENTANA DE LOGIN*/
.background-ventas_mo{  /*BACKGROUND DE LOGINS*/
     background: url('../../../../images/themes/black_orange_monts/MO_portal.jpg') !important;
   /*   background: url('publicidad_1.png') !important;*/
     background-size: cover !important;
     background-repeat: no-repeat !important;
     /* TRANSITION */
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
}

.background-ventas-login{  /*BACKGROUND DE LOGINS*/
     background: url('../../../../images/Log_in2.jpg') !important;
   /*   background: url('publicidad_1.png') !important;*/
     background-size: cover !important;
     background-repeat: no-repeat !important;
     /* TRANSITION */
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
}
/* Capa oscura transparente */
.background-ventas-login::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* negro con 50% de transparencia */
z-index: 1;
}

.background-ventas-login2{  /*BACKGROUND DE LOGINS*/
    /* background: url('../../../../images/Log_in2.jpg') !important;*/
   /*   background: url('publicidad_1.png') !important;*/
     background-image: linear-gradient(to left, var(--light-blue), var(--water-blue), var(--light-blue)) !important;
     background-size: cover !important;
     background-repeat: no-repeat !important;
     /* TRANSITION */
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
}




.background-ventas1{  /*BACKGROUND DE LOGINS*/
     background: url('../../../../images/ventas_1.jpeg') !important;
   /*   background: url('publicidad_1.png') !important;*/
     background-size: cover !important;
     background-repeat: no-repeat !important;
     /* TRANSITION */
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
}

.background-ventas2{ /*BACKGROUND DE LOGINS*/
     background: url('../../../../images/ventas_2.jpg') !important;
   /*   background: url('publicidad_1.png') !important;*/
     background-size: cover !important;
     background-repeat: no-repeat !important;
     /* TRANSITION */
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
}

.background-ventas3{ /*BACKGROUND DE LOGINS*/
     background: url('../../../../images/buildings.jpg') !important;
   /*   background: url('publicidad_1.png') !important;*/
     background-size: cover !important;
     background-repeat: no-repeat !important;
     /* TRANSITION */
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
}

.background-ventas4{ /*BACKGROUND DE LOGINS*/
     background: url('../../../../images/buildings2.jpg') !important;
   /*   background: url('publicidad_1.png') !important;*/
     background-size: cover !important;
     background-repeat: no-repeat !important;
     /* TRANSITION */
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
}

.background-ventas5{ /*BACKGROUND DE LOGINS*/
     background: url('../../../../images/buildings3.jpg') !important;
   /*   background: url('publicidad_1.png') !important;*/
     background-size: cover !important;
     background-repeat: no-repeat !important;
     /* TRANSITION */
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
}

/*MARCA DE AGUA FORM FACTURA*/
.marca_agua:after {
 content: "NO VÁLIDO"; 
  font-size: 15em;  
  color: #8080802b;
  z-index: 9999;
 
  display: block;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 0;
  left: 15%;
    
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  -o-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/*RELOJ JS*/
 .clockdate-wrapper {
          background-color: #004c8f !important;
          padding:25px !important;
          /*max-width:350px;*/
          width:100% !important;
          text-align:center !important;
          border-radius:5px !important;
          margin:0 auto !important;
         /* margin-top:15%; */
      }
      .clock_js{
          background-color:#08569b !important;
          font-family: sans-serif !important;
          font-size:60px !important;
          text-shadow:0px 0px 1px #fff !important;
          color:#fff !important;
      }
      .clock_js span {
          color:#fff !important;
          text-shadow:0px 0px 1px #333 !important;
          font-size:30px !important;
          position:relative !important;
          top:-27px !important;
          left:-10px !important;
      }
      .date_js {
          letter-spacing:10px!important;
          font-size:30px!important;
          font-family:arial,sans-serif!important;
          color:#fff!important;
      }

/*TEXT MUTED EN VENTANAS DE DETALLE*/
.text-muted{
   color: #63696f !important; 
}      

/*NO INTERLINEADOS*/
.no_interl{
    margin-top:0px !important;
    margin-bottom:0px !important;
    padding-top:0px !important;
    padding-bottom:0px !important;
}

/*logo de carrito*/
.buy_cart_logo
{
    width:65% !important; 
    margin-top:25px !important;
}

/*DISEÑOS DE BACKGROUND DE LOGIN*/
.background-login{
     background: url('../../background-login.jpg') !important;
     background-size: cover !important;
     background-repeat: no-repeat !important;
}



.background-login1{
     background: url('../../ventas_1.jpeg') !important;
   /*   background: url('publicidad_1.png') !important;*/
     background-size: cover !important;
     background-repeat: no-repeat !important;
     /* TRANSITION */
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
}

.background-login2{
     background: url('../../ventas_2.jpg') !important;
   /*   background: url('publicidad_1.png') !important;*/
     background-size: cover !important;
     background-repeat: no-repeat !important;
     /* TRANSITION */
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
}

/*CAROUSEL*/
.carousel-control-next,
.carousel-control-prev,
.carousel-control-next:focus, 
.carousel-control-next:hover, 
.carousel-control-prev:focus, 
.carousel-control-prev:hover {
    opacity: 0 !important; /*REMOVER BORDE A BOTONES LATERALES DE SLIDER*/
}
/*DRAGG FILES*/
.area {
    width: 100%;
    height: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 4px dashed royalblue;
    background-color: lightblue;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: alpha(opacity=70);
    -khtml-opacity: 0.70;
    -moz-opacity: 0.70;
    opacity: 0.70;
    text-align: center;
    color: #000 !important;
}

.area:hover,
.area.dragging,
.area.uploading {
    filter: alpha(opacity=90);
    -khtml-opacity: 0.90;
    -moz-opacity: 0.90;
    opacity: 0.90;
    border: 4px dashed royalblue;
    background-color: lightblue;
}

.uploaded{
    filter: alpha(opacity=100) !important;
    -khtml-opacity: 1 !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important;
     background-color: lime !important;
     border: 4px dashed forestgreen !important;
}
.area input {
    width: 400%;
    height: 75%;
    margin-left: -300%;
    border: none;
    cursor: pointer;
}

.area input:focus {
    outline: none;
}

.full-width-btn
{
width: -webkit-fill-available !important;
width:  -moz-available !important;
}

/*USAR EN CASO DE 2 DRAGGABLES*/
.area2 {
    width: 100%;
    height: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 4px dashed royalblue;
    background-color: lightblue;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: alpha(opacity=70);
    -khtml-opacity: 0.70;
    -moz-opacity: 0.70;
    opacity: 0.70;
    text-align: center;
    color: #000 !important;
}

.area2:hover,
.area2.dragging,
.area2.uploading {
    filter: alpha(opacity=90);
    -khtml-opacity: 0.90;
    -moz-opacity: 0.90;
    opacity: 0.90;
    border: 4px dashed royalblue;
    background-color: lightblue;
}

.uploaded2{
    filter: alpha(opacity=100) !important;
    -khtml-opacity: 1 !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important;
     background-color: lime !important;
     border: 4px dashed forestgreen !important;
}
.area2 input {
    width: 400%;
    height: 75%;
    margin-left: -300%;
    border: none;
    cursor: pointer;
}

.area2 input:focus {
    outline: none;
}

/*USAR EN CASO DE 2 DRAGGABLES*/
.area3 {
    width: 100%;
    height: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 4px dashed royalblue;
    background-color: lightblue;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: alpha(opacity=70);
    -khtml-opacity: 0.70;
    -moz-opacity: 0.70;
    opacity: 0.70;
    text-align: center;
    color: #000 !important;
}

.area3:hover,
.area3.dragging,
.area3.uploading {
    filter: alpha(opacity=90);
    -khtml-opacity: 0.90;
    -moz-opacity: 0.90;
    opacity: 0.90;
    border: 4px dashed royalblue;
    background-color: lightblue;
}

.uploaded3{
    filter: alpha(opacity=100) !important;
    -khtml-opacity: 1 !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important;
     background-color: lime !important;
     border: 4px dashed forestgreen !important;
}
.area3 input {
    width: 400%;
    height: 75%;
    margin-left: -300%;
    border: none;
    cursor: pointer;
}

.area3 input:focus {
    outline: none;
}

/*USAR EN CASO DE 2 DRAGGABLES*/
.area4 {
    width: 100%;
    height: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 4px dashed royalblue;
    background-color: lightblue;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: alpha(opacity=70);
    -khtml-opacity: 0.70;
    -moz-opacity: 0.70;
    opacity: 0.70;
    text-align: center;
    color: #000 !important;
}

.area4:hover,
.area4.dragging,
.area4.uploading {
    filter: alpha(opacity=90);
    -khtml-opacity: 0.90;
    -moz-opacity: 0.90;
    opacity: 0.90;
    border: 4px dashed royalblue;
    background-color: lightblue;
}

.uploaded4{
    filter: alpha(opacity=100) !important;
    -khtml-opacity: 1 !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important;
     background-color: lime !important;
     border: 4px dashed forestgreen !important;
}
.area4 input {
    width: 400%;
    height: 75%;
    margin-left: -300%;
    border: none;
    cursor: pointer;
}

.area4 input:focus {
    outline: none;
}

/*USAR EN CASO DE 2 DRAGGABLES*/
.area5 {
    width: 100%;
    height: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 4px dashed royalblue;
    background-color: lightblue;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: alpha(opacity=70);
    -khtml-opacity: 0.70;
    -moz-opacity: 0.70;
    opacity: 0.70;
    text-align: center;
    color: #000 !important;
}

.area5:hover,
.area5.dragging,
.area5.uploading {
    filter: alpha(opacity=90);
    -khtml-opacity: 0.90;
    -moz-opacity: 0.90;
    opacity: 0.90;
    border: 4px dashed royalblue;
    background-color: lightblue;
}

.uploaded5{
    filter: alpha(opacity=100) !important;
    -khtml-opacity: 1 !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important;
     background-color: lime !important;
     border: 4px dashed forestgreen !important;
}
.area5 input {
    width: 400%;
    height: 75%;
    margin-left: -300%;
    border: none;
    cursor: pointer;
}

.area5 input:focus {
    outline: none;
}

/*PREVIEW DE CARGA DE IMAGENES*/
.preview_image{
    max-width:50% !important;
}



/*SELECT 2*/
.select2-container--classic .select2-selection--single, 
.select2-container--default .select2-selection--multiple, 
.select2-container--default .select2-selection--single, 
.select2-container--default .select2-selection--single .select2-selection__arrow, 
.select2-container--default .select2-selection--single .select2-selection__rendered {
    /*border-radius: 20px !important;*/
    border-color: #9f9c9c !important; /*COLOR DE BORDE DE CAMPOS*/
    color: #000 !important; /*COLOR DE TEXTO*/
}

.select2-container--open .select2-dropdown--below {
    /*border-radius: 20px !important;*/
}

.select2-search .select2-search--dropdown {
     /*border-radius: 20px !important;*/
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  /* border-radius: 20px !important;*/
}
.select2-container--default .select2-results>.select2-results__options {
    /*border-radius: 20px !important;*/
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    /*border-radius: 20px !important;*/
}   

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #3c8dbc !important;
    border: 1px solid #367fa9 !important;
}    

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    height: inherit !important; /*Hide overflow on select2 multiple*/
}

.select2-selection__arrow/*hide down arrow on selec2*/
{
    display:none !important;
}

/*FULL CALENDAR*/
.fc-event{
    height:100% !important;
    align-items: center;
}

.fc button, .fc table, body .fc {/*TAMAÑO DE LETRA*/
    font-size: 12px !important;
    align-items: center;
    
}

    
.fc-toolbar .fc-button { /*BOTONES DE CALENDARIO*/
    color: #fff !important;
    background-color: #636e72;
    opacity: 1 !important;
    border-radius: 20px !important;
    border-style: none !important;
}

.fc-toolbar .fc-button:hover {
    color: #fff !important;
    background-image: linear-gradient(to right, #003c7e, #006bb3) !important;
    opacity: 1 !important;
    border-radius: 20px !important;
    border-style: none !important;
}

.fc-toolbar .fc-button-group { 
    border-style: none !important;
 }

.fc-toolbar .fc-center { /*TITULO MES*/
    display: inline-block;
    padding-left: 35px !important;
    padding-right: 35px !important;
    padding-top: 5px;
    font-size: 10px;;
    border-radius: 20px !important;
    color: #fff !important;
    background-color: #636e72;
    text-transform: uppercase;
    margin-left:5px;
}
.fc-center h2 {
    font-size:15px;
}

thead tbody {
    border:none;
}

.fc-toolbar {
    display: flex;
    justify-content: center; /* todo el contenido a la derecha */
}

 .fc-left {
    float: right;              /* quita el float */
}

.fc-today-button {
    display: none !important;
  }
  

.fc-head, .fc-row .fc-widget-header/*CABECERA DE FILAS*/
{
    color: #fff !important;
    background-color: #0984e3 !important;
    height: 30px;
}


.fc-content-skeleton table tbody, td, tfoot, th, thead, tr {
    border-bottom: none;
}


/*DIAS*//*SIN 3D EFECT*/
/*.fc-body
{
    color: #fff !important;
    background-image: linear-gradient(to right, #003c7e, #006bb3) !important;
}

.fc-unthemed td.fc-today {
    color: #fff !important;
    background-image: linear-gradient(to right, #003c7e, #006bb3) !important;
}*/



/*DIAS*/ /*CON 3D EFECT*/
.fc-mon, .fc-tue, .fc-wed, .fc-thu, .fc-fri, .fc-sat, .fc-sun{ 
    color: #fff !important;
    background-color: #636e72 !important;
    z-index: 1;
    font-weight :bold !important;
    position: relative;
    text-transform: uppercase;
    font-size:13px;
}

.fc-future, .fc-past, .fc-other-month, .fc-day-number{
   /* color: #fff !important;*/
}

.fc-day-top.fc-other-month { /*SOMBRA GRIS DIAS PASADOS*/
   /* opacity: .3 !important;*/
    opacity: 1 !important;
    font-weight :normal !important;

}
.fc-widget-content { /*BORDES DE DIAS*/
     border-color: #fff !important;
}

.fc .fc-row .fc-content-skeleton table, .fc .fc-row .fc-content-skeleton td, .fc .fc-row .fc-helper-skeleton td {
     border-color: #fff !important;
}

   /*CK EDITOR*/
.ck .ck-powered-by{
    display:none!important;
}

.ck.ck-balloon-panel.ck-balloon-panel_visible {
     display:none!important;
}



/*SCROLLBAR - CHROME / SAFARI / EDGE*/
/*FIREFOX USA OTROS SELECTOLES LO CUAL IMPIDE MODIFICARLA*/
/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  /*box-shadow: inset 0 0 5px grey; */
  /*border-radius: 10px;*/
  background: #1f262d;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  /*background: #003c7e; */
  background: #1c2751;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
   /*background: #13457d;*/
   background: #28335f;
}


/*CLASES NUEVA PARA AJUSTAR ESTILO*/
.hide_elements
{
    display:none!important;
}

/*CLASES NUEVAS VENTANA: LOGIN*/
.topbar_login
{
    display:none!important;/*NO MOSTRAR TOPBAR EN LOGIN*/
}
.left_sidebar_login
{
    display:none!important;/*NO MOSTRAR SIDEBAR EN LOGIN*/
}
.topbar_logged
{
    display:none!important;/*NO MOSTRAR TOPBAR LUEGO DE LOGGEAR*/
}
.left-sidebar { /*BARRA IZQUIERDA LUEGO DE LOGGEAR*/

padding-top: 0px !important; /*REMOVER ESPACIO*/
}

/*BACKGROUND DE BARRA LATERAL*/
#main-wrapper .left-sidebar[data-sidebarbg=skin5], #main-wrapper .left-sidebar[data-sidebarbg=skin5] ul {
    /*background-image: linear-gradient(to right, #1f262d, #333b43) !important;*/
    /*background-image:  url(siderbar.png) !important;*/
    background-image: linear-gradient(to left, #020d37, #020f43) !important;
    color: #fff !important;
}


.position_body_donation
{
     z-index: 5 !important; /*PARA PERMITIR QUE LA PANTALLA DE LOGIN QUEDE EXTERNA*/
}

.position_login
{
    z-index: 5; /*PARA PERMITIR QUE LA PANTALLA DE LOGIN QUEDE EXTERNA*/
    /*margin-top: 10%!important;*/
    /*PARA AFECTAR FONDO SOBREESCRIBIENDO EL WHITE*/
    background-image: none !important;
    background-color:rgba(64,66,75,0.3)!important;
}   
/*IMPORTANTE - SOBREESCRIBIR MARGEN DE BARRA IZQUIERDA*/
/*#main-wrapper[data-sidebartype=full] .page-wrapper {*/
.margin_setted_login
{
    margin-left: 0!important;
}

.login_title
{
    color:#fff!important;
}

.btn_login{/*BOTON LOGIN*/
    color: #fff !important; 
    background-image: none !important;
    background-color: #b57d42 !important;
    border-color: #b57d42 !important; 
    border-radius: 10px!important;
    width:100% !important;
}

.btn_login:hover {/*BOTON LOGIN*/
    color: #fff !important;
    background-image: none !important;
    background-color: #b57d42 !important;
    border-color: #b57d42 !important; 
    width:100% !important;
    border-radius: 10px!important;
}  

.login_pass_forgot
{
     text-decoration: none;
     color: inherit; 
     color: #fff !important;
     font-weight: bold; 
}
.login_pass_forgot:hover, 
.login_pass_forgot:focus,
.login_pass_forgot:active,
.login_pass_forgot:visited
{
    color: #fff !important; /* O el color que desees */
    text-decoration: none;
    font-weight: bold; 
}

.login_contact_us
{
     text-decoration: none;
     color: inherit; 
     color: #fff !important;
     font-weight: bold; 
         font-size: 20px!important;
}
.login_contact_us:hover, 
.login_contact_us:focus,
.login_contact_us:active,
.login_contact_us:visited
{
    color: #fff !important; /* O el color que desees */
    text-decoration: none;
    font-weight: bold; 
     font-size: 20px!important;
}


.logo_alt_img{
    max-width: 50% !important;
}

/*CLASES DE CONTACT US*/
.position_contact_us1
{
    display: none!important;
    z-index: 5; /*PARA PERMITIR QUE LA PANTALLA DE LOGIN QUEDE EXTERNA*/
    /*margin-top: 10%!important;*/
    /*PARA AFECTAR FONDO SOBREESCRIBIENDO EL WHITE*/
    background-image: none !important;
    background-color:rgba(64,66,75,0.3)!important;
    color: white;

}  

/*CLASES DE CONTACT US*/
.position_contact_us2
{
    display: none!important;
    z-index: 5; /*PARA PERMITIR QUE LA PANTALLA DE LOGIN QUEDE EXTERNA*/
    /*margin-top: 10%!important;*/
    /*PARA AFECTAR FONDO SOBREESCRIBIENDO EL WHITE*/
    background-image: none !important;
    background-color:rgba(64,66,75,0.3)!important;
    color: white;

}  

/*CLASES DE CONTACT US*/
.position_contact_us3
{
    z-index: 5; /*PARA PERMITIR QUE LA PANTALLA DE LOGIN QUEDE EXTERNA*/
    /*margin-top: 10%!important;*/
    /*PARA AFECTAR FONDO SOBREESCRIBIENDO EL WHITE*/
    /*background-image: none !important;
    background-color:rgba(64,66,75,0.3)!important;
    color: white;*/
}  

.position_contact_us4
{
    z-index: 5; /*PARA PERMITIR QUE LA PANTALLA DE LOGIN QUEDE EXTERNA*/
    /*margin-top: 10%!important;*/
    /*PARA AFECTAR FONDO SOBREESCRIBIENDO EL WHITE*/
    /*background-image: none !important;
    background-color:rgba(64,66,75,0.3)!important;
    color: white;*/
}  

.return_contact_us
{
    display:block;
}

/*ESTILOS POR   COLLAGE DE FOTO EN CONTACTANOS*/
.collage-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10px, 0.5fr));
    gap: 5px;
    padding: 20px;
    justify-items: center;
  }
  
  .polaroid {
    background: white;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 6px;
    text-align: center;
    width: 100%;
    max-width: 130px;
    position: relative;
    transform: rotate(-2deg);
  }
  
  /* En pantallas menores a 576px (Bootstrap XS) */
  @media (max-width: 576px) {
    .polaroid {
      width: 800px;
      transform: none; /* opcional: quitar rotación en móviles */
    }
    .collage-grid {
        grid-template-columns:  none;
    }
    .right-position{
        width: 100%;
        text-align: center;
        margin-top:10px;
        margin-bottom:10px;
    }
    .left-position {
        max-width: 120px;
        top:0px;
        left:35%;
        margin-bottom: 20px;
        justify-content: center;
      
    }

  }
  
  .polaroid img {
    width: 100%;
    height: 120px;
    border-radius: 4px;
  }
  
  .polaroid .caption {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #1a1ead;
  }

  .polaroid:nth-child(even) {
    transform: rotate(1deg);
  }
  /* Cinta arriba */
.polaroid::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    /*background: #f5d76e; /* color cinta tipo masking tape */
    background: #ebeae6; /*cinta tipo transparente*/
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/*CLASES DE LOGIN INDEX_PL_CLIENTS_1*/
.bottom-bar {
    position: fixed !important; /*ABAJO*/
    bottom: 0% !important; /*SIN MARGEN*/
    left: 0px;
    width: 100%;
    height: 220px;
    /*background: linear-gradient(to right, #003c7e, #002b5c, #003c7e);*/
    background-image: linear-gradient(to left, #020d37, #020f43) !important;
    margin:0px;
    padding:0px;
    overflow-x: auto;   /* activa scroll vertical */
    overflow-y: hidden; /* evita scroll horizontal */

}
.not-margin {
    margin:0px;
    padding:0px;
}

.icon-box {
    flex: 0 0 auto;     /* evita que se reduzcan */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1); /* fondo gris claro translúcido */
    border-radius: 20px;
    margin: 10px;
    color: #f0f0f0; /* color de ícono y texto */
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  
  .icon-box:hover {
    background-color: rgba(255, 255, 255, 0.2); /* efecto hover */
    cursor: pointer;
  }
  
  .icon-box i {
    font-size: 50px;
    margin-bottom: 6px;
          /* Estilo más delgado (si el ícono lo permite) */
    color: rgba(255, 255, 255, 0.4); /* Blanco con 60% de opacidad */
    transition: color 0.3s ease;

  }

  .icon-container {
    display: flex;
    overflow-x: auto;   /* activa scroll horizontal */
    overflow-y: hidden; /* evita scroll vertical */
    white-space: nowrap; /* mantiene íconos en una sola línea */
    gap: 15px;
    padding: 20px;
  }
.pb-fx {
    bottom: 200px;
    position: absolute;
}

.bg-gray {
    background-color: rgba(178, 190, 195, 0.6); /* 80% opaco */
    border-radius: 10px;
    border:solid 2px gray;
}

.text-colored {
    /*color: #27258b !important;*/
    color: var(--primary-blue) !important;
} 

.text_bolded{
    font-weight: 800 !important;
}

.image_detail_cart{
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
}
.image_detail_cart_cell
{
    width:25%;
    max-width:25%;
}

.menu_type_1{
    display:none;
}
.menu_type_2{
    
}

  /*TABLAS RESPONSIVE*/
@media screen and (max-width: 768px) {
    .preview_image{
        max-width:100% !important;
    }

    .table_mobile {
        border: 0 !important;
      }
  
      .table_mobile {
          width: 50% !important;
          max-width: 100% !important;
          min-width: 100% !important;
          margin-bottom: 20px !important;
          font-size: 12px !important;
      }
      
      .table_mobile th {
        /*border: none !important;
        clip: rect(0 0 0 0) !important;
        height: 1px !important;
        margin: -1px !important;
        overflow: hidden !important;;
        padding: 0 !important;
        position: absolute !important;
        width: 1px !important;*/
        display: block !important;
        text-align: justify !important;
      }
      
      .table_mobile tr {
        /*border-bottom: 3px solid #ddd;*/
        display: block !important;
        margin-bottom: .625em !important;
      }
      
      .table_mobile td {
        /*border-bottom: 1px solid #ddd;*/
        display: block !important;
        /*font-size: .8em;*/
        text-align: justify !important;
      }
      
      .table_mobile td::before {
        /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label) !important;
        float: left !important; 
        font-weight: bold !important;
        /*text-transform: uppercase;*/
      }
      
      .table_mobile td:last-child {
        border-bottom: 0 !important;
      }

      /*TEXTOS IMPORTE DE TABLA A LA IZQUIERDA EN TELF*/
      .text_import_table
      {
        text-align:left !important;
      }

      /*2OBJETOS DE CATALOGO POR LINEA EN TELEFONO*/
      .catalog_mobile {
            width: 50% !important;
            max-width: 50% !important;;
        }

      /*logo de carrito*/
      .buy_cart_logo_mobile
      {
            width:45% !important; 
            margin-top:25px !important;
      }  

      .logo_alt_img_mobile{
            max-width: 25% !important;
      }

      /*AJUSTE D BARRA SUPERIOR - SOLO MOBILE*/ 
      .topbar_logged_mobile
        {
            display:block!important;/*NO MOSTRAR TOPBAR LUEGO DE LOGGEAR*/
            /*background-image: linear-gradient(to left, #020d37, #020f43) !important;
            color: #fff !important;*/
        }      
        #main-wrapper .topbar .top-navbar .navbar-header[data-logobg=skin5] {
           background-image: linear-gradient(to left, #020d37, #020f43) !important;
            color: #fff !important;
        }
        #main-wrapper .topbar .navbar-collapse[data-navbarbg=skin5], #main-wrapper .topbar[data-navbarbg=skin5] {
            background-image: linear-gradient(to left, #020d37, #020f43) !important;
            color: #fff !important;
        }
        #navbarSupportedContent {
           background-image: linear-gradient(to left, #020d37, #020f43) !important;
            color: #fff !important;
        }
        .navbar-brand
        {
            display:none!important;
        }

}

@media screen and (min-width: 768px) and (max-width: 1169px) {
.text_menu_hide {
     display:none;
    }
}


/* Clase para desvanecer el contenido */
.fade-transition {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* El estado por defecto del tbody debe ser visible */
.tbody_transition {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

/*RECIBO DE PAGO PUNTO DE VENTA*/
.recibo_pago_pv
{
    background: #fff; 
    color: #000; 
    padding: 15px; 
    border: 1px dashed #ccc; 
    border-radius: 4px; 
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}
.recibo_pago_pv_text
{
   font-family: "Courier New", "Courier", monospace; 
   font-size: 13px; 
   line-height: 1.4; 
   margin: 0;
   text-align: left;
   white-space: pre-wrap;
}