/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */



/* ANIMACIÓN DE FORMULARIOS FLOAT LABELS */
/* =========================================
   Floating Label (Elementor Form)
   Clase widget: float
   Estructura: label + input dentro de .elementor-field-group
   ========================================= */

.float .elementor-field-group{
  position: relative;
}

/* Deja espacio arriba para el label cuando "sube" */
.float .elementor-field-textual{
  padding-top: 18px !important;
}

/* LABEL como placeholder (sobre el input) */
.float .elementor-field-group > .elementor-field-label{
  position: absolute;
  left: 20px;                 /* ajusta si tu input tiene padding diferente */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  margin: 0 !important;
  opacity: .75;
  line-height: 1;
  transition: top .18s ease, transform .18s ease, opacity .18s ease, font-size .18s ease;
  z-index: 2;
}

/* Placeholder visible por defecto */
.float .elementor-field-textual::placeholder{
  opacity: 1;
  transition: opacity .15s ease;
}

/* Al enfocar o cuando hay texto: label sube */
.float .elementor-field-group.is-focus > .elementor-field-label,
.float .elementor-field-group.is-filled > .elementor-field-label{
  top: 3px;
  transform: translateY(0);
  opacity: 1;
  font-size: 14px;
}

/* Al enfocar o con texto: ocultar placeholder para que no choque */
.float .elementor-field-group.is-focus .elementor-field-textual::placeholder,
.float .elementor-field-group.is-filled .elementor-field-textual::placeholder{
  opacity: 0;
}



/* SUBIR LABEL DE MENSAJE */
/* SUBIR LABEL DE MENSAJE */
/* =========================================
   FIX: Campo MENSAJE (textarea) - evitar que el texto se monte en el label
   Solo afecta .elementor-field-group-mensaje y .elementor-field-group-mensaje_contacto
========================================= */

/* Label en reposo arriba */
.float .elementor-field-group-mensaje > .elementor-field-label,
.float .elementor-field-group-mensaje_contacto > .elementor-field-label{
  top: 14px !important;                 
  transform: translateY(0) !important;  
}

/* Dar MÁS espacio arriba dentro del textarea */
.float .elementor-field-group-mensaje textarea.elementor-field-textual,
.float .elementor-field-group-mensaje_contacto textarea.elementor-field-textual{
  padding-top: 27px !important;
  padding-bottom: 12px !important;
}

/* Responsive */
@media (max-width: 767px){
  .float .elementor-field-group-mensaje > .elementor-field-label,
  .float .elementor-field-group-mensaje_contacto > .elementor-field-label{
    top: 14px !important;
    transform: translateY(0) !important;
  }

  .float .elementor-field-group-mensaje textarea.elementor-field-textual,
  .float .elementor-field-group-mensaje_contacto textarea.elementor-field-textual{
    padding-top: 27px !important;
    padding-bottom: 12px !important;
  }
}



/* RESPONSIVE DE LOS LABELS FLOTANTES EN FORMULARIO DE FOOTER SUSCRIBETE */
/* =========================================
   Floating Label (RESPONSIVE fine-tune)
   Solo móvil/tablet
   ========================================= */
@media (max-width: 767px){

  /* 1) Más espacio arriba para que el cursor/texto no quede pegado al label */
  .float .elementor-field-textual{
    padding-top: 24px !important;  /* 👈 sube/baja: 22–28 */
    padding-bottom: 10px !important; /* opcional: más “aire” */
  }

  /* 2) Transición más suave (menos brusca) */
  .float .elementor-field-group > .elementor-field-label{
    transition:
      top .28s cubic-bezier(.2,.8,.2,1),
      transform .28s cubic-bezier(.2,.8,.2,1),
      opacity .22s ease,
      font-size .28s cubic-bezier(.2,.8,.2,1);
  }

  /* 3) Cuando sube: que suba un poco más (más separación visual) */
  .float .elementor-field-group.is-focus > .elementor-field-label,
  .float .elementor-field-group.is-filled > .elementor-field-label{
    top: 3px;          /* 👈 más arriba (antes 7px). Prueba 2–5 */
    font-size: 14px;   /* 👈 el tamaño que ya te gustó (ajustable) */
  }

  /* 4) (Opcional) En reposo, bajar un poquito el label para que se sienta centrado */
  .float .elementor-field-group > .elementor-field-label{
    top: 50%;          /* 👈 50% era perfecto en desktop; en móvil a veces se ve mejor 52–56 */
  }
}


/* =========================================
   FLOATING LABEL - AJUSTES SOLO CAMPO TELÉFONO
   Widget: .float
   Group wrapper: .elementor-field-group-telefono
   Input: #form-field-telefono
========================================= */

/* 1) Ocultar placeholder SOLO del input teléfono */
.float .elementor-field-group-telefono input#form-field-telefono::placeholder,
.float .elementor-field-group-phone input#form-field-phone::placeholder,
.float .elementor-field-group-telefono_factura input#form-field-telefono_factura::placeholder, #confirm_user_password::placeholder{
  opacity: 0 !important;
}
.float .elementor-field-group-telefono input#form-field-telefono::-webkit-input-placeholder,
.float .elementor-field-group-phone input#form-field-phone::-webkit-input-placeholder,
.float .elementor-field-group-telefono_factura input#form-field-telefono_factura::-webkit-input-placeholder{ opacity: 0 !important; }

.float .elementor-field-group-telefono input#form-field-telefono::-moz-placeholder,
.float .elementor-field-group-phone input#form-field-phone::-moz-placeholder,
.float .elementor-field-group-telefono_factura input#form-field-telefono_factura::-moz-placeholder{ opacity: 0 !important; }

.float .elementor-field-group-telefono input#form-field-telefono:-ms-input-placeholder,
.float .elementor-field-group-phone input#form-field-phone:-ms-input-placeholder,
.float .elementor-field-group-telefono_factura input#form-field-telefono_factura:-ms-input-placeholder{ opacity: 0 !important; }

/* 2) Mover el LABEL a la derecha para que no se monte con la bandera */
.float .elementor-field-group-telefono > .elementor-field-label,
.float .elementor-field-group-phone > .elementor-field-label,
.float .elementor-field-group-telefono_factura > .elementor-field-label{
  left: 50px !important; /* ajusta 58–78 */
}

/* 3) Mantener ese left cuando sube (focus/filled) */
.float .elementor-field-group-telefono.is-focus > .elementor-field-label,
.float .elementor-field-group-telefono.is-filled > .elementor-field-label,
.float .elementor-field-group-phone.is-focus > .elementor-field-label,
.float .elementor-field-group-phone.is-filled > .elementor-field-label,
.float .elementor-field-group-telefono_factura.is-focus > .elementor-field-label,
.float .elementor-field-group-telefono_factura.is-filled > .elementor-field-label{
  left: 20px !important;
}

/* 4) Dar espacio al texto del input para no quedar debajo de la bandera */
.float .elementor-field-group-telefono input#form-field-telefono,
.float .elementor-field-group-phone input#form-field-phone,
.float .elementor-field-group-telefono_factura input#form-field-telefono_factura{
  padding-left: 51px !important; /* ajusta 70–92 */
}

/* 5) Responsive */
@media (max-width: 767px){
  .float .elementor-field-group-telefono > .elementor-field-label,
  .float .elementor-field-group-telefono.is-focus > .elementor-field-label,
  .float .elementor-field-group-telefono.is-filled > .elementor-field-label,
  .float .elementor-field-group-phone > .elementor-field-label,
  .float .elementor-field-group-phone.is-focus > .elementor-field-label,
  .float .elementor-field-group-phone.is-filled > .elementor-field-label,
  .float .elementor-field-group-telefono_factura > .elementor-field-label,
  .float .elementor-field-group-telefono_factura.is-focus > .elementor-field-label,
  .float .elementor-field-group-telefono_factura.is-filled > .elementor-field-label{
    left: 55px !important;
  }

  .float .elementor-field-group-telefono input#form-field-telefono,
  .float .elementor-field-group-phone input#form-field-telefono_contacto,
  .float .elementor-field-group-telefono_factura input#form-field-telefono_factura{
    padding-left: 51px !important;
  }
}


/* Subir el dropdown por encima de labels/campos */
.float .elementor-field-group-telefono .iti__dropdown-content,
.float .elementor-field-group-phone .iti__dropdown-content,
.float .elementor-field-group-telefono_factura .iti__dropdown-content{
  z-index: 4 !important;
}


/* =========================================
   EXCLUIR MES Y AÑO DE EXPIRACIÓN DEL FLOAT
========================================= */
.float .elementor-field-group-card_month > .elementor-field-label,
.float .elementor-field-group-card_year > .elementor-field-label{
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  opacity: 1 !important;
  display: block !important;
  margin: 0 0 8px 0 !important;
  pointer-events: auto !important;
  z-index: auto !important;
}

/* quitar el espacio extra superior del efecto float solo en esos selects */
.float .elementor-field-group-card_month .elementor-field-textual,
.float .elementor-field-group-card_year .elementor-field-textual{
  padding-top: 10px !important;
}

/* por si alguna regla global sigue empujando raro */
.float .elementor-field-group-card_month,
.float .elementor-field-group-card_year{
  position: static !important;
}


/* =========================================
   FLOATING LABEL PARA ULTIMATE MEMBER
   (MISMOS ESTILOS QUE ELEMENTOR)
   ========================================= */

/* Contenedor del campo - igual que .elementor-field-group */
.um-field.um-float-field {
  position: relative;
}

#um_field_3595_confirm_user_password .um-field-area input::placeholder {
  opacity: 0 !important;
  color: transparent !important;
}

/* Label flotante - MISMO ESTILO que Elementor */
.um-field.um-float-field .um-field-label {
  position: absolute;
  left: 20px;
  top: 50%;
	transform: translateY(-25%);
  pointer-events: none;
  margin: 0 !important;
  opacity: 0.75;
  line-height: 1;
  transition: top 0.18s ease, transform 0.18s ease, opacity 0.18s ease, font-size 0.18s ease;
  z-index: 2;
  background: transparent;
  padding: 0;
}
 
.um-err .um-field.um-float-field .um-field-label{
	    top: 30%;
}

.um.um-password input.um-form-field {
	    border-radius: 20px;
    height: 47px !important;
}
.um-field.um-float-field .um-field-label label {
  font-size: 15px;
  color: #6c757d;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

/* Inputs - MISMO padding que Elementor */
.um-field.um-float-field .um-field-area input,
.um-field.um-float-field .um-field-area select {
  width: 100%;
  padding: 18px 12px 6px 12px !important;
  font-size: 15px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background: #fff;
  transition: all 0.18s ease;
  box-sizing: border-box;
	height: auto !important;
    border-radius: 20px !important;
}

/* Textarea - igual que .elementor-field-group-mensaje */
.um-field.um-float-field .um-field-area textarea {
  width: 100%;
  padding: 27px 12px 12px 12px !important;
  font-size: 15px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background: #fff;
  resize: vertical;
  transition: all 0.18s ease;
  box-sizing: border-box;
}

/* Placeholder visible por defecto - IGUAL que Elementor */
.um-field.um-float-field .um-field-area input::placeholder,
.um-field.um-float-field .um-field-area textarea::placeholder {
  opacity: 1;
  transition: opacity 0.15s ease;
  color: #adb5bd;
}

/* AL ENFOCAR O CUANDO HAY TEXTO: label sube - MISMO COMPORTAMIENTO */
.um-field.um-float-field.um-is-focus .um-field-label,
.um-field.um-float-field.um-is-filled .um-field-label {
  top: 3px;
  transform: translateY(50%);
  opacity: 1;
  font-size: 14px;
}

.um-field.um-float-field.um-is-focus .um-field-label label,
.um-field.um-float-field.um-is-filled .um-field-label label {
  font-size: 14px;
}

/* Color del label cuando está focused */
.um-field.um-float-field.um-is-focus .um-field-label label {
  color: #3a6ea5;
}

/* Color del label cuando tiene texto (no focused) */
.um-field.um-float-field.um-is-filled .um-field-label label {
  color: #6c757d;
}

/* AL ENFOCAR O CON TEXTO: ocultar placeholder - IGUAL que Elementor */
.um-field.um-float-field.um-is-focus .um-field-area input::placeholder,
.um-field.um-float-field.um-is-filled .um-field-area input::placeholder,
.um-field.um-float-field.um-is-focus .um-field-area textarea::placeholder,
.um-field.um-float-field.um-is-filled .um-field-area textarea::placeholder {
  opacity: 0;
}

/* Borde al focus */
.um-field.um-float-field .um-field-area input:focus,
.um-field.um-float-field .um-field-area textarea:focus,
.um-field.um-float-field .um-field-area select:focus {
  border-color: #3a6ea5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(58,110,165,0.1);
}

/* RESPONSIVE PARA UM - IGUAL que Elementor */
@media (max-width: 767px) {
  .um-field.um-float-field .um-field-area input,
  .um-field.um-float-field .um-field-area select {
    padding-top: 24px !important;
    padding-bottom: 10px !important;
  }
  
  .um-field.um-float-field .um-field-label {
    transition: top 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
                opacity 0.22s ease,
                font-size 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  
  .um-field.um-float-field.um-is-focus .um-field-label,
  .um-field.um-float-field.um-is-filled .um-field-label {
    top: 3px;
    font-size: 14px;
  }
  
  .um-field.um-float-field .um-field-area textarea {
    padding-top: 27px !important;
    padding-bottom: 12px !important;
  }
}

/* EXCLUIR CHECKBOXES Y RADIOS */
.um-field.um-float-field.um-field-type_checkbox .um-field-label,
.um-field.um-float-field.um-field-type_radio .um-field-label {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  opacity: 1 !important;
  display: block !important;
  margin: 0 0 8px 0 !important;
  pointer-events: auto !important;
}

.um-field.um-float-field.um-field-type_checkbox .um-field-area input,
.um-field.um-float-field.um-field-type_radio .um-field-area input {
  padding: 10px 12px !important;
}

/* SELECTS - mismo estilo */
.um-field.um-float-field .um-field-area select {
  padding: 18px 12px 6px 12px !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
	
.show-mobil {
	display: none !important;
}
   
.um input.um-button{
    font-weight: 400 !important;
    text-transform: uppercase !important;
    border-radius: 14px 14px 14px 14px !important;
    padding: 6.5px 40px !important;
    background: #02568A !important;
    width: auto !important;
    min-width: auto !important;
    border: 1px solid #02568A !important;
}
.um input.um-button:hover{
	 background: #FFF !important;
	color: #02568A !important;
}

	

/* =========================================
   EXCLUIR MES Y AÑO DE EXPIRACIÓN DEL FLOAT
========================================= */
.float .elementor-field-group-card_month > .elementor-field-label,
.float .elementor-field-group-card_year > .elementor-field-label{
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  opacity: 1 !important;
  display: block !important;
  margin: 0 0 8px 0 !important;
  pointer-events: auto !important;
  z-index: auto !important;
}

/* quitar el espacio extra superior del efecto float solo en esos selects */
.float .elementor-field-group-card_month .elementor-field-textual,
.float .elementor-field-group-card_year .elementor-field-textual{
  padding-top: 10px !important;
}

/* por si alguna regla global sigue empujando raro */
.float .elementor-field-group-card_month,
.float .elementor-field-group-card_year{
  position: static !important;
}









/* Preview navigation for the desktop most-viewed carousel */
@media (min-width: 1025px){
  .car-peek .peek-side.is-visible{
    pointer-events: auto;
    cursor: pointer;
    touch-action: manipulation;
  }

  .car-peek .peek-side::before,
  .car-peek .peek-side::after,
  .car-peek .peek-side img{
    pointer-events: none;
  }
}





svg.e-font-icon-svg:hover {
    fill: #ED7923 !important;
}

.elementor-widget-login {
    background: #f6f6f6;
    border-radius: 41px;
}

.elementor-widget-login .elementor-form-fields-wrapper {
    justify-content: space-between;
}

.elementor-widget-login .elementor-field-group {
    width: 48% !important;
}

.elementor-widget-login .elementor-field-type-text input {
    border: none;
    background: #e5e5e5;
    border-radius: 20px;
    font-size: 16px;
    color: #646566;
}

.elementor-widget-login .elementor-field-group .elementor-button {
    min-height: 28px;
}

.elementor-widget-login .elementor-field-group.elementor-column.elementor-col-100:last-child {
    justify-content: right;
	width:100%!important;
}

.elementor-widget-login .elementor-field-group.elementor-column.elementor-col-100:nth-last-child(2){
	    justify-content: right;
	width:100%!important;
	order:1;
}

.content-cus-cl:after {
    content: '“';
    position: absolute;
    top: 0;
    left: 40px;
    font-size: 143px;
    color: #9E9D9D;
    z-index: 0;
}

.text-form-tcn {
    color: #fff;
    font-size: 50px;
    text-align: center;
    font-weight: bold;
}

.show-mobil {
    display: none !important;
}

.testimo-skin .elementor-testimonial .elementor-testimonial__footer {
    margin: 0;
    order: -1;
}

.testimo-skin .elementor-testimonial {
    display: flex;
    flex-direction: column;
}

.swiper-pagination {
    text-align: left;
}

.page-id-711 .bread-section {
    position: absolute;
    z-index: 1;
}

.elementor-swiper-button {
    z-index: 1 !important;
}

.float textarea.elementor-field-textual {
    resize: none;
    padding-top: 40px !important;
}

.float .elementor-field-group.elementor-field-type-textarea > .elementor-field-label {
    top: 25px;
}

.e-n-accordion-item .elementor-element {
    margin-top: -20px;
    z-index: -1;
}

li ul.sub-menu {
    min-width: 280px !important;
    border-radius: 0px 0px 41px 41px;
    margin-left: -25px !important;
}

.float .elementor-field-type-upload .elementor-field-label{
	display:none;
}

.aw-acc-body{
	background: #f4f4f4;
    border-radius: 0px 0px 40px 40px;
    margin-top: -50px;
    z-index: 1;
    position: relative;
    padding: 60px 20px 20px 20px;
    margin-bottom: 20px;
}

@media(max-width:767px){

    [data-id="0687090"], [data-id="f922d36"], [data-id="a6ec96f"]{
        margin-top: 20px;
    }
	
	li ul.sub-menu{
		    margin-left: 0px !important;
    	padding: 0 10px;
	}

    .custom-tax-select{
        width:100%;
        height:47px;
		color:#02568A!important;
        padding:0 15px;
        border:1px solid #dcdcdc;
        border-radius:20px;
        background:#fff;
        font-size:15px;
        appearance:none;
        -webkit-appearance:none;
        background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat:no-repeat;
        background-position:right 15px center;
        background-size:14px;
    }

}


.elementor-field-type-select .elementor-field-label{
	display:none;
}

.float .elementor-field-type-select select{
	padding-top: 12px !important;
    padding-bottom: 12px;
}

.show-mobil.login{
	display:none!important;
}

.promocion-single{
    display: none;
}

.mostrar-promocion-single .promocion-single{
    display: block;
}

#breadcrumbs span br{
	display:none!important;
}

.elementor-skin-slideshow .elementor-thumbnails-swiper .swiper-slide:not(.swiper-slide-active):after{
display:none;
}

.elementor-skin-slideshow .elementor-thumbnails-swiper .swiper-slide.swiper-slide-active:after{
	background-color: rgba(0, 0, 0, .3);
    content: "";
    inset: 0;
    position: absolute;
	display:block!important;
}

/*locaciones*/
.aw-map-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    font-family: inherit;
    align-items: stretch;
}

.aw-left-panel {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.aw-right-panel {
    width: 51%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aw-acc-header {
    background-color: #02568A;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 25px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
	position:relative;
	z-index:2;
}

.aw-acc-header.active {
    background-color: #ED7923;
}

.aw-acc-icon {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins';
    border: 1.5px solid #ffffff;
    color: #ffffff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0.1;
}

.aw-acc-body {
    display: none;
}

.aw-acc-body .aw-acc-list-item {
    position: relative;
}

.aw-acc-body .aw-acc-list-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -13px;
    width: calc(100% - 10px);
    height: 1px;
    background: #d9dde3;
}

.aw-map-container {
    width: 100%;
    height: auto;
    border-radius: 40px;
    overflow: hidden;
    background: #f3f4f6;
}

.aw-map-container iframe, .aw-map-container .locate-anything-map {
    width: 100% !important;
    height: 100% !important;
    border-radius: 40px !important;
}

.aw-entry-content {
    color: #3f3f46;
    font-size: 15px;
    line-height: 1.6;
}

#hidden-la-nav {
    position: absolute !important;
    left: -9999px !important;
    top: 0 !important;
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: -1 !important;
}

/* .leaflet-popup {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0) !important;
} */

.aw-item-title {
    font-weight: 500;
    color: #02568A;
    transition: all 0.2s ease;
}

.aw-acc-list-item {
    background: transparent;
    color: #02568A;
    padding: 8px 0;
    margin-bottom: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 0;
}

.aw-acc-list-item:hover,
.aw-acc-list-item.active {
    background: transparent;
    color: #02568A;
}

.aw-acc-list-item:hover .aw-item-title,
.aw-acc-list-item.active .aw-item-title {
    color: #02568A;
    font-weight: 700;
}

.aw-item-hidden-content {
    display: none;
    margin-top: 10px;
    padding-top: 4px;
    color: #3f3f46;
    font-size: 15px;
    line-height: 1.6;
}

.aw-acc-list-item.active .aw-item-hidden-content {
    display: block;
}

.aw-item-hidden-content p,
.aw-item-hidden-content ul,
.aw-item-hidden-content ol {
    margin-bottom: 8px;
}

.aw-item-hidden-content ul,
.aw-item-hidden-content ol {
    padding-left: 18px;
}

.aw-filter-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.aw-filter-select-wrap {
    flex: 1 1 280px;
    position: relative;
}

.aw-filter-select {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: #f3f4f6;
    color: #02568A;
    font-size: 15px;
    font-family: inherit;
    padding: 0 42px 0 22px;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

.aw-filter-select-wrap::after {
    content: "";
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml;utf8,<svg aria-hidden='true' viewBox='0 0 320 512' xmlns='http://www.w3.org/2000/svg'><path fill='%23293D56' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/></svg>");
}

.aw-filter-select:focus {
    box-shadow: 0 0 0 2px rgba(251, 178, 3, 0.25);
}

.aw-filter-reset,
.aw-filter-reset:visited {
    height: 48px;
    min-width: 120px;
    border: none;
    border-radius: 999px;
    background: #02568A;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    padding: 0 22px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    outline: none;
    box-shadow: none;
}

.aw-filter-reset:hover {
    background: #ED7923;
    color: #FFF;
    transform: translateY(-1px);
}

.aw-filter-reset:focus,
.aw-filter-reset:active,
.aw-filter-reset:focus-visible {
    background: #02568A !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.aw-filter-reset:hover:focus,
.aw-filter-reset:hover:active,
.aw-filter-reset:hover:focus-visible {
    background: #ED7923 !important;
    color: #02568A !important;
}

.aw-acc-group.aw-hidden-filter,
.aw-acc-group.aw-hidden-page {
    display: none !important;
}

.aw-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.aw-page-btn {
    background: #f3f4f6;
    border: none;
    color: #02568A;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aw-page-btn:hover,
.aw-page-btn.active {
    background: #FBB203;
    color: #ffffff;
}

.aw-item-hidden-content ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.aw-item-hidden-content ul li {
    position: relative;
    padding-left: 25px;
}

.aw-item-hidden-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-color: currentColor;
    -webkit-mask-image: url('/wp-content/uploads/2026/04/garrapata-1.svg');
    mask-image: url('/wp-content/uploads/2026/04/garrapata-1.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
	border-radius:5px;
}

.awesome-marker {
    background-image: url(/wp-content/uploads/2026/05/pin.webp) !important;
	background-position: center !important;
    background-size: contain !important;
}

.awesome-marker i{
    display: none !important;
}


.card-item-sh{
	        width: auto;
        min-width: 450px;
}

.card-item-sh.card1{
    max-width: min-content;
}



.swiper-slide-active {
    position: relative;
}

.swiper-slide-active .elementor-carousel-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}


.swiper-slide-active .elementor-carousel-image::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 300;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.swiper-slide-active .elementor-carousel-image:hover::before,
.swiper-slide-active .elementor-carousel-image:hover::after {
    opacity: 1;
}


.swiper-slide-active .elementor-carousel-image {
    position: relative;
}
	
.um.um-register .um-notice.success{
	display:none!important;
}

.um-account-profile-link{
	display:none!important;
}

.um-account-meta{
	    cursor: none;
    pointer-events: none;
}

.um-account-meta .um-account-meta-img{
	display:none;
}
.um-account-icon {
    display: none;
}

.um-faicon-angle-right{
	    color: white;
}

.um-account-side li a span.um-account-title{
	    color: #fff!important;
}

.um-account-side li {
    background: #ed7923!important;
    border-radius: 20px;
}

.um-account-side li a.current, .um-account-side li a.current:hover, .um-account-side li a:hover{
	 background: #02568A!important;
    border-radius: 20px;
	color: #fff!important;
}

.um-account-name{
	    padding-top: 0!important;
}
.um-account-main div.um-account-heading{
	    padding-bottom: 12px;
}
.um-account-heading i{
	display:none;
}

.um-account-side ul{
gap: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.elementor-slideshow__footer {
    display: none;
}

body.home .bread-section, body.home .back-section{
	display:none;
}


.country-dropdown{
    position:relative;
    display:inline-block;
}

.country-current{
    cursor:pointer;
}

.country-list{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:200px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    padding:8px 0;
    opacity:0;
    visibility:hidden;
    transition:.2s;
    z-index:999;
}

.country-dropdown:hover .country-list{
    opacity:1;
    visibility:visible;
	z-index:999999;
}

.country-list a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    text-decoration:none;
    color:#000;
}

.country-list a:hover{
    background:#f5f5f5;
}

.lang-switcher-clean{
    display:flex;
    gap:10px;
    align-items:center;
}

.country-list-click{
    display: none;
    flex-direction: column;
    position: absolute;
    background: #Fff;
    z-index: 99999;
    padding: 10px;
    width: max-content;
    border-radius: 41px;
    left: -8px;
}

.country-list-click a img:hover{
    zoom: 1.05;
    transition: 0.3s;
}

.country-dropdown-click.active .country-list-click{
    display: flex;
}


.lang-switcher-clean a{
    font-size:14px;
    text-decoration:none;
    transition:.2s;
    color:#02568A;
}

.lang-switcher-clean a:hover{
    color:#ED7923;
    font-weight: 600;
}

.lang-switcher-clean a.active{
    color:#ED7923;
}

.elementor-lightbox .elementor-lightbox-image{
	box-shadow:none!important;
}

.elementor-location-archive .e-loop-item .elementor-widget-theme-post-featured-image img{
    height: 253px;
    object-fit: contain;
}

.um-account-tab.um-account-tab-boletines .um-col-alt.um-col-alt-b{
    display: none;
}


.aw-navigation-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .aw-nav-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 41px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            background-color: #fff;
            color: #333;
        }
        
        .aw-nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .aw-nav-btn-waze:hover {
            border-color: #33ccff;
            background-color: #f0faff;
        }
        
        .aw-nav-btn-google:hover {
            border-color: #4285f4;
            background-color: #f0f5ff;
        }
        
        .aw-nav-icon {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }
        
        .aw-nav-btn span {
            font-size: 14px;
        }

@media (max-width: 768px) {
	
	.elementor-lightbox .elementor-lightbox-image{
	padding:20px!important;
}
	
    .aw-left-panel, .aw-right-panel {
        width: 100%;
    }
    .aw-map-container {
        height: 400px;
        margin-top: 20px;
    }
    .aw-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .aw-filter-select-wrap,
    .aw-filter-reset {
        width: 100%;
    }
	
	.aw-filter-select-wrap {
			flex: 0 0 auto;
	}
	.elementor-field-group input, .elementor-field-group select {
		border-radius: 40px !important;
		height: 47px;
	}
}



@media only screen and (min-width: 768px) {

    .elementor-shortcode .content-resum{
        height: 140px;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

	.um-row._um_row_1{
		    max-width: 70%;
    margin: auto!important;
	}
    .servicios-loop .swiper-slide.active-hover{
        width: 600px !important;
        transition: 0.3s;
    }

    .servicios-loop .swiper-slide.small-slide{
        width: 295px !important;
        transition: 0.3s;
    }

    .content-servicios-loop {
        display: none;
    }

	
	.swiper-slide.active-hover .content-servicios-loop{
		display: flex;
	}
	


    .servicios-m-sec .swiper-wrapper {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .servicios-m-sec .swiper-slide {
        flex: 1 !important;
        width: auto !important;
        margin-right: 0 !important;
        transition: flex 0.35s ease-out !important;
        display: flex !important;
    }

    .servicios-m-sec .swiper-slide .elementor-heading-title,
    .servicios-m-sec .swiper-slide .elementor-widget-text-editor,
    .servicios-m-sec .swiper-slide .elementor-widget-button,
    .servicios-m-sec .swiper-slide .elementor-widget-text-editor p {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .servicios-m-sec .swiper-slide.active {
        flex: 2 !important;
    }

    .servicios-m-sec .swiper-slide.active .elementor-heading-title,
    .servicios-m-sec .swiper-slide.active .elementor-widget-text-editor,
    .servicios-m-sec .swiper-slide.active .elementor-widget-button,
    .servicios-m-sec .swiper-slide.active .elementor-widget-text-editor p {
        opacity: 1;
        visibility: visible;
    }

    .servicios-m-sec .swiper-slide:hover {
        flex: 2 !important;
    }

    .servicios-m-sec .swiper-slide:hover .elementor-heading-title,
    .servicios-m-sec .swiper-slide:hover .elementor-widget-text-editor,
    .servicios-m-sec .swiper-slide:hover .elementor-widget-button,
    .servicios-m-sec .swiper-slide:hover .elementor-widget-text-editor p {
        opacity: 1;
        visibility: visible;
    }

    .servicios-m-sec .e-con-inner {
        transition: none;
    }

    .servicios-m-sec .swiper-slide .e-con,
    .servicios-m-sec .swiper-slide .e-con-inner {
        transform: none !important;
    }

    .servicios-m-sec .e-con.e-child,
    .servicios-m-sec .e-con-inner {
        height: auto !important;
    }

    .slider-product .swiper-slide-next .btn-sp {
        margin-top: 0px !important;
    }

    .slider-product {
        transition: all 0.3s;
    }

    .slider-product .text-product-s {
        text-align: center;
    }

    .slider-product .e-loop-item .e-con-inner {
        justify-content: end;
    }

    .slider-product .e-loop-item .e-con-inner img {
        width: 40%;
        filter: grayscale(100%);
		opacity: 0.6;
    }

    .slider-product .text-product-s,
    .slider-product .btn-sp,
    .slider-product .elementor-widget-theme-post-title {
        opacity: 0 !important;
        height: 0 !important;
        margin: 0 !important;
    }

    .slider-product .swiper-slide-next .text-product-s,
    .slider-product .swiper-slide-next .btn-sp,
    .slider-product .e-loop-item.swiper-slide-next .elementor-widget-theme-post-title {
        opacity: 1 !important;
        height: auto !important;
    }

    .slider-product .swiper-slide-next .elementor-widget-theme-post-featured-image {
        padding: 40px;
        border: 0.7px solid #9e9d9d;
        border-radius: 40px;
    }

    .slider-product .e-loop-item.swiper-slide-next .e-con-inner img {
        width: 100%;
        filter: grayscale(0%);
		height:400px;
		object-fit:contain;
		opacity: 1;
    }

    .slider-product .e-loop-item.swiper-slide-next .text-product-s {
        max-width: 480px;
        margin: auto !important;
        font-size: 15px;
        color: #9e9d9d;
    }

   
}

@media (max-width: 768px) {

    .slider-product{
        margin-bottom: 20px!important;
    }

    .slider-product .elementor-swiper-button-prev.elementor-swiper-button{
        top: calc(var(--arrow-prev-top-align) + 20px - var(--arrow-prev-caption-spacing))!important;
    }

    .slider-product .elementor-swiper-button.elementor-swiper-button-next{
        top: calc(var(--arrow-next-top-align) + 20px - var(--arrow-next-caption-spacing))!important;
    }

    .slider-product .elementor-widget-image img{
        height: 250px;
        object-fit: contain;
    } 

	.logged-in .show-mobil.login{
		display:block!important;
	}
	

    .text-form-tcn {
        font-size: 25px;
    }

    .text-shortcode {
        text-align: center;
    }

    .content-cus-cl:after {
        left: 0px;
        top: -20px;
    }

    .elementor-widget-login .elementor-form-fields-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .elementor-widget-login .elementor-field-group {
        width: 100% !important;
    }

    .elementor-widget-login .elementor-field-group.elementor-column.elementor-col-100:last-child {
        justify-content: center;
    }

    .elementor-widget-login .elementor-field-group .elementor-button {
        margin: auto;
    }

    .servicios-m-sec .swiper-wrapper {
        gap: 8px !important;
    }

    .servicios-m-sec .swiper-slide {
        transition: flex 0.3s ease-out !important;
    }

    .text-product-s {
        text-align: center;
    }
	
	.show-mobil {
		display: block !important;
	}
}

#breadcrumbs span a{
	font-family: "Poppins";
}

.form-tax input:checked + span .label-text {
    font-weight: bold !important;
}