.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  width:20%;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 20% !important;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

/*# sourceMappingURL=glide.core.css.map */

@media (min-width: 40em){
    #footer .wf-container{
        display: flex;
        justify-content: center;
    }
}

.footer .widget{
    margin-bottom: 15px;
}

.card {
    box-shadow: 0 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
    transition-property: transform;
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.235, 0, 0.05, 0.95);
    z-index: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    text-align: left;

    height: auto;
    width: 330px;
}

@media (max-width: 40em){
    .card{
        width: unset;
    }
}

@media (min-width: 40em){
    .glide__slides {
        list-style: none !important;
    }
}

.glide__slides > li {
        margin: 10px;
    } 

@media (max-width: 40em){
    .glide__slides > li {
        margin: unset;
    } 
}

@media (max-width: 40em){
    .glide__slide {
        margin: unset !important;
    }  
}

.ch{
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none; 
    margin-left: 20px;
    margin-top: 5px;
}

.card img{
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none; 
    aspect-ratio: 3/2;
}

.ah{
    user-select: none;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
    font-weight: 500;
    display:block;
    margin: unset !important;
    margin-left: 20px !important;
    margin-top: 5px !important;
    color: #3c3c3c;
}

/* Estilos para el modal */
.modal {
  display: none; 
  position: fixed;
  
  justify-content: center;
  align-items: center;
  z-index: 12; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.8); 
}

.modal-contenido {
    background-color: #fefefe;
    border: 1px solid #888;
    width: 50%;
    height: 75%;
    border-radius: 12px;
}
/*
@media (min-width: 1660px){
        .modal-contenido {
      margin: 11% auto 0 !important;
    }
}
*/
@media (max-width: 1366px){
        .modal-contenido {
    height: 80%;
    }
}


@media (max-width: 40em){
        .modal-contenido {
      margin: 200% auto 0;
      width: 100%;
      border-radius: 12px;
      height: auto;
      
      overflow: scroll;
      overflow-x: hidden;
    }
}



.cerrarModal {
  color: #fff;
  float: right;
  font-size: 34px;
  font-weight: bold;
  margin-right: 10px;
  margin-top: 5px;
}

.cerrarModal:hover,
.cerrarModal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.card:hover{
    box-shadow: 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.15);
    transform: translateX(-10px);
    transition: transform 0.2s cubic-bezier(0.235, 0, 0.05, 0.95);
    z-index: 0;
    cursor: pointer;
}

.btn-slide {
    position: absolute;
    top: 120px;
    content: "";
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: #66c6d5;
    box-shadow: 0 2rem 5rem 0 rgba(0, 0, 0, 0.15);
    z-index: 1;
    cursor: pointer;
    border: none !important;
    transition: transform 0.2s ease-in-out;
}

@media (max-width: 40em){
    .btn-slide {
        
    }
}

.btn-slide svg {
    margin-bottom: 2px;
}

.btn-slide:active {
  transform: scale(1.1); 
}

.btn-slide-n {
    left: calc(100% - 100px);
}

.btn-slide-b {
    display: none;
    left: 100px
}

@media (max-width: 40em){
        .btn-slide-b {
        left: calc(100% - 100px);
    }
}

/* tabla dentro del modal*/

.modal th {
    padding: 5px 10px 5px 5px;
    border-bottom: 1px solid lightgray;
}



.modal-contenido table tr td:first-child {
  font-size: 15px;
  padding: 10px 10px 5px 15px;
  line-height: 2rem;
}

.modal-contenido table tr:last-child td {
    background: #FFF;
    box-shadow: 0 0 16px 0 rgba(102, 130, 156, 0.10);
}

@media (max-width: 40em){
    .modal-contenido table tr td:first-child {
    padding: 10px 15px 10px 15px;
    }
}

.modal-contenido table tr:nth-child(even) {
  background-color: #f2f2f2; 
}

.modal-contenido table {
    border-bottom: unset !important;
    margin: unset !important;
}

.modal-contenido td:nth-child(n+2), .modal-contenido th {
    text-align: center !important;
}

@media (max-width: 40em){
    .modal-contenido th:nth-child(1)  {
    font-size: 19px;
    padding: unset;
    }
}

@media (max-width: 40em){
    .titulo-head  {
    display:none;
    }
}

.modal-contenido th:nth-child(1)  {
    text-align: center !important;
}

.modal-contenido table tr td{
    display: flex;
}

@media (max-width:40em){
    .modal-contenido table tr td{
    align-items: center;
    }
}

@media (max-width: 40em){
    .modal-compare .modal-contenido table tr td{
    line-height: 1rem !important;
    }
}
/*
.modal-contenido table tbody tr:nth-last-child(-n+2) td {
            color: #0077b9;
            font-weight: 500;
            font-size: 1rem !important;
}

@media (max-width: 40em){
    .modal-contenido table tbody tr:nth-last-child(-n+2) td {
                font-size: 1.2rem !important;
    }
}
.modal-contenido table tbody tr:nth-last-child(-n+2) td:nth-child(n+2) {
            font-size: 1.2rem !important;
}
*/
.modal-contenido table thead {
    width: 100%;
    background-color: #f7f9fa;
    border-bottom: 1px solid rgba(0,0,0,.09);
    color: #444;
    font-size: 16px;
    font-weight: 400;
    position: sticky;
    top: 0;
    z-index: 2;
}

.modal-contenido table tr th {
    display: flex;
    flex-direction: row;
    padding: 15px 10px 15px 15px;
}

/*
@media (max-width: 40em){
    .modal-contenido table tbody tr:nth-last-child(-n+2) td:nth-child(n+2) {
                font-size: 1rem !important;
    }
}
@media (min-width: 40em){
        .modal-contenido table tbody tr:nth-last-child(-n+2) td {
            padding: 15px 10px 15px 15px !important;
            display: flex;
            flex-direction: row;
        }
}
*/
.desc{
    font-size: 17px;
    background-color: #0077b9;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 22px;
    padding-top: 22px;
    color: #fff;
    font-weight: 400;
    border-radius: 10px 10px 0px 0px;
}

@media (max-width: 40em){
        .desc {
            font-size: 15px;
            padding: 12px 12px;
    }
}

.modal-table {
    overflow: scroll;
    overflow-x: hidden;
    height: 85%;
}

@media (max-width: 1367px){
    .modal-table {
        height: 73%;
    }
}

.modal-table table {
    width: 100%;
}

.option-td {
    padding: 15px 10px 4px 5px !important;
}

.table-sep{
    background: #0077b9;
    padding: 1px !important;
}

.info-button{
    font-family:Gilroy;
}

@media (max-width: 40em){
    .info-button {
    font-size: 12px;
    width: 140px;
    color: #0077b9 !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 18px;
    font-weight: 500;
    }
}

@media (min-width: 40em){
    .info-button {
    font-size: 14px;
    background-color: transparent;
    color: #0077b9 !important;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    }
}


.modal-compare .comp{
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-around;
    width: 70%;
    margin: auto;
    
    font-weight: 400;
    color: black;
    
	gap: 11px;
}

.modal-compare .comp > div, .modal-compare .comp{
	margin: 0;
}

.modal-compare .modal-contenido table thead {
	border: none;
}

@media (max-width:40em){
    .modal-compare .comp{
    gap: 0;
    font-size: 14px;
    width:75%;
    }
}

.comp-precio {
    display: flex;
    font-size: 1.35rem;
    flex-direction: row;
    text-align: center;
    justify-content: space-around;
    width: 70%;
    
    color: #000;
    font-family: Ubuntu;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.3px;
}

.comp-head {
    display: flex;
    font-size: 1.1rem;
    flex-direction: row;
    text-align: center;
    justify-content: space-around;
    width: 70%;
}

.comp-link {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-around;
    width: 70%;
}

@media (max-width: 40em){
    .comp-link {
        width: 100%;
        padding: 5px 0;
        font-size: 20px;
    }
}

@media (max-width: 40em){
    .comp-precio {
        width: 100%;
        padding: 15px 0;
        font-size: 20px;
    }
}

@media (max-width: 40em){
    .comp-head {
    font-size: 1rem;
    padding: 11px 5px;
    gap: 10px;
    width:75%;
    }
}

.comp > div {
    width: 50%;
    padding: 20px 20px;
    margin: auto;
    line-height: normal;
    position: relative;
}

@media (max-width:40em){
    .comp > div{
    padding: 11px 15px;
    }
}

.comp-head > div {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    width: 50%;
    
    padding: 0 5px;
    position: relative;
    justify-content: center;
}

.h-mod{
    margin-top: 20px;
    margin-left: 75px;
}

@media (max-width: 40em){
    .h-mod{
        margin: 0 0 10px;
    }
}

.titulo {
    text-align: left;
    width: 30%;
    color: black;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.curr-s, .opt-s {
    color: #0077b9;
} 

.curr, .opt {
    width: 130px;
}

.svg-icon {
    margin-top: 12px;
    width: 15%;
    height: 15%;
    margin-left: 5px;
}

@media (max-width: 40em){
    .svg-icon{
    margin-top: 12px;

    width: 20%;
    height: 20%;    
    }
}

.titulo-precio {
    text-align: left;
    width: 30%;
    padding-left: 3rem;
}

@media (max-width: 40em){
    .titulo-precio {
        text-align: center;
        width: 25%;
        font-size: 16px;
        padding:0;
    }
}

@media (max-width: 40em){
    .titulo-link  {
    display:none;
    }
}

.titulo-link {
    text-align: left;
    width: 30%;
}

.titulo-head {
    text-align: left;
    width: 30%;
}

.modal-compare .titulo{
    line-height: 1rem;
    padding-left: 3rem;
}

@media (max-width: 40em){
    .modal-compare .titulo {
    width:25%;    
    
    /* text-align: center; */
    font-size: 16px;
    font-weight: 500;
    padding-top: 5px;
    line-height: normal;
    justify-content: center;
    padding-left: 15px;
    flex-direction: column;
    padding: 11px 0px 11px 15px;
    align-content: flex-start;
    }
}

@media (max-width: 40em){
    .modal-compare .titulo:nth-last-child(-n+2) {
        font-size: 14px;
    }
}

/** modal compare **/

.glide-compare{
padding: 0 10%;
}

.glide-compare .card {
	width:auto;
}

.glide-compare .ah {
	    color: #6E808E;
    font-family: Gilroy;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
	margin-left: 30px !important;
	margin-top: 0 !important;
}

.glide-compare .ch {
    margin: 20px 30px 15px 30px;
    color: #000;
    font-family: Ubuntu;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.3px;
}

@media (min-width:1800px){
	.glide-compare .ch {
			font-size: 1.5rem;
	}	
}

@media (max-width:1350px){
	.glide-compare .ch {
			font-size: 1rem;
	}	
}

.glide-compare .compare-wrp {
	  display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 23px;
    color: #6E808E;
    font-family: Gilroy;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.modal-compare{
	  display: none;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.3s ease-out;
}

.modal-compare .modal-contenido{
    text-align: center;
    width: 80%;
    min-width: 270px;
    background-color: white;
    box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 0 0 10px;	
	height: auto;
	position:relative;
}

@media (max-width:40em){
	.modal-compare .modal-contenido{
	width: 100%;
	border:none;
	border-radius:0;
	box-shadow:unset;
	margin: 0;
	}
}

@media (max-width:40em){
	.titulo-head{
	width:30%;
	display: block !important;
	}
}

.modal-compare .modal-contenido table tr:first-child td .curr, .modal-compare .modal-contenido table tr:first-child td .opt{
	    border-radius: 12px 12px 0 0;
    background: #FBFCFD;
}

.modal-compare .curr-s, .modal-compare .opt-s{
	background: #FBFCFD;
}

/* Selecciona el último tr dentro de la tabla */
.modal-compare .modal-contenido 
table tbody tr:last-child td {
  padding: 5px 0 11px !important;
}

.modal-compare .modal-contenido table tbody tr:nth-last-child(2) td {
  padding-bottom: 11px;
}

@media (max-width:40em){
        .modal-compare .modal-contenido table tbody tr:last-child td{
        padding: 11px 0 5px !important;    
    }
}

@media (max-width:40em){
        .modal-compare .modal-contenido table tbody tr:last-child td .comp-precio{
        padding: 0;    
    }
}


.modal-compare .svg-icon {
    width: 55px;
    height: 55px;
}



.modal-compare .modal-contenido table tr td .curr, .modal-compare .modal-contenido table tr td .opt{
    background: #FBFCFD;
}

.compare-ars{
	  color: #7B99AF;
    text-align: center;
    font-family: Ubuntu;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.3px;
}

.modal-compare .modal-contenido table tr td{
    padding: 0;
    line-height: 1.5rem;
}

.modal-compare .modal-contenido table tr:last-child td{
	line-height: 4.5rem;
}

.modal-contenido table tr th{
	padding: 33px 10px;
}

.modal-compare .cerrarModal{
    position: absolute;
    z-index: 21;
    right: 1%;
    color: #000000;
}

@media (max-width:40em){
    .modal-compare .cerrarModal{
    position: absolute;
    z-index: 21;
    left: 6%;
    top: 3%;
    color: #000000;
    }
}

.cerrar-mobile{
    display:none;
}

.cerrar-desktop{
    display:none;
}

@media (max-width:40em){
    .cerrar-mobile{
    display:block;   
    }    
}

@media (min-width:1000px){
    .cerrar-desktop{
    display:block;   
    }    
}

.modal-compare .modal-table{
	  overflow: auto;
    overflow-x: hidden;
    height: 100%;
	border-radius: 16px;
}

.modal-compare .modal-table table{
	border-collapse: collapse;
}

.modal-compare .modal-contenido table tr{
	background: #fff;
}

.modal-compare th{
	border:none;
}

.comprice-container{
	  display: flex;
    gap: 11px;
    align-items: center;
}

@media (max-width:40em){
    .comprice-container{
    flex-direction:column;
    }
}

.modal-compare .modal-contenido table tr td .comprice-container .curr, .modal-compare .modal-contenido table tr td .comprice-container .opt{
	background:transparent;
}

@media (min-width:1800px){
	.modal-compare .modal-contenido{
	width: 50%;
	}
}

