.bg_grey-maribell {
    background-color: #FFFAF1 !important;
}

.alert-info {
    width: 90%;
    margin: 10px auto;
}

.mostrar {
    display: block;
}

.ocultar {
    display: none !important;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-maribell {
    width: 47px;
    position: relative;
    left: -25px;
}

.gris_logo {
    color:#646464;
}

.negro {
    color: black;
}

.pb_30 {
    padding-bottom: 30px;
}

.mt_65 {
    margin-top: 65px;
}

.verde  {
    color: green !important;
}

.bg_red_heo {
    background-color: #ff3d00;
}

.fondo-dorado {
    background-color: rgba(255, 215, 0, 0.12) !important;
}

.title img {
    max-height: 100%; /* Ajusta el alto de la imagen al contenedor del texto */
    height: 0.8em; /* Asegúrate de usar unidades relativas */
    vertical-align: baseline; /* Alineación precisa */
}

#question_mark {
    position: relative;
    left: -15px;
}

.spinner-overlay {
    position: fixed;       /* Para cubrir toda la ventana */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;/* Fondo blanco */
    z-index: 9999;         /* Para que esté por encima de todo */
    display: flex;         /* Para centrar el contenido con flexbox */
    align-items: center;   /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
  }
  
  .circular-progress-container {
    position: relative; /* Para que el texto en medio se posicione bien */
    width: 120px;
    height: 120px;
  }
  
  /* Estilo del círculo “base” de fondo */
  .progress-ring__background {
    /* Lo que quieras, p.ej. stroke: #eee; lo traes del HTML */
  }
  
  /* El círculo de progreso */
  .progress-ring__progress {
    transition: stroke-dashoffset 0.1s linear;
  }
  
  /* El texto del porcentaje en el centro */
  .progress-ring__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: sans-serif;
    font-weight: bold;
    font-size: 16px;
  }

/* 1) Permitir que los hijos hagan “wrap” en la siguiente línea */
#search-container .tf-search-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  
    /* fila-sacudida = 0, separación horizontal = 10px */
    gap: 0 10px;
  }
  
  #search-container .tf-search-head p {
    flex: 1 1 100%;
    /* margin-bottom: 0.5rem;  <-- quitas o dejas muy pequeño */
    margin-bottom: 0; 
  }
  
  /* 3) Tu formulario ocupa el espacio sobrante */
  #search-container .tf-mini-search-frm {
    display: flex;
    flex: 1;
    margin: 0;
  }
  
  /* 4) El fieldset e input escalan con el formulario */
  #search-container .tf-mini-search-frm fieldset {
    flex: 1;
    margin: 0;
    padding: 0;
    border: none;
  }
  #search-container .tf-mini-search-frm input {
    width: 100%;
    box-sizing: border-box;
  }

.valido_hasta_txt {
    font-size: 0.9rem;
    display: contents;
    width: 100%;
    color: black;
}

.precio_deseado_txt {
    font-size: 0.9rem;
    left: 5px;
    position: relative;
    color: black;
}

.color-transparente {
    background-color: transparent !important;
    border-color: transparent !important;
    color: black !important;
    font-size: 1.2rem;
}

.color-boton-gris {
    color: #ffffff !important;
    background-color: #a3a3a3;
    border-color: #a3a3a3;
    cursor: default !important;
}

.boton-avisame, .color-boton-configura-precio {
    background-color: green !important;
    border-color: green !important;
    width: 100%;
}

.boton-quitar {
    background-color: red !important;
    border-color: red !important;
    width: 100%;
}

.boton-info {
    background-color:dodgerblue !important;
    border-color: dodgerblue !important;
    width: 100%;
}

.boton-accion {
    font-size: 1.2rem;
    background-color:dodgerblue !important;
    border-color: dodgerblue !important;
    width: 100%;
}

.alto-tarjeta-reducido {
    height: 80% !important;
}

#header .box-nav-ul .item-link-active {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

#header .box-nav-ul .item-link-active::before {
    content: "";
    width: 100%;
    height: 1px;
    top: 99%;
    position: absolute;
    left: 0;
    right: auto;
    z-index: 1;
    background: var(--main);
}

.swiper-slider-superior{
    padding-left: 10%;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 30px 0;
}

.logo_partner {
    width: 160px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.3s;
    cursor: pointer;
}

.logo_partner:hover {
    filter: grayscale(0%);
    transform: scale(1.2);
}

.logo_partner.selected {
    filter: grayscale(0%);
    transform: scale(1.2);
    margin: 0 30px;
}

.logo_partner:not(.selected) {
    filter: grayscale(100%);
    opacity: 0.5;
}

.logo_partner:not(.selected):hover {
    filter: grayscale(0%);
    opacity: 1;
    transition: transform 0.3s;
}

.selected-store {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.selected-store img {
    width: 90px;
    height: auto;
    filter: grayscale(0%);
    transition: transform 0.3s;
}

.selected-store img:hover {
    transform: scale(1.8);
}

.opciones_navegacion {
    padding-top: 25px;
}

.page-search-inner .tf-search-head {
    margin-bottom: 50px !important;
}

.card-product.style-price .card-product-info {
    padding: 40px 37px 0;
    gap: 10px;
}

.card-product .card-product-wrapper img {
    width: auto !important;
}

.card-product .card-product-wrapper:hover .product-img .img-product {
    opacity: 1 !important;
    max-width: 300px !important;
}

.card-product .card-product-wrapper {
    mix-blend-mode: multiply;
}

.card-product {
    height: 100%;
}

.card-product img {
    margin: auto !important;
    width: 80% !important;
}

.tf-slideshow.about-us-page .text {
    font-weight: bold;                   
    border-radius: 8px; 
}

.img-plan {
    height: auto !important;
}

.plan-reactivar .tf-price-table-contents {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-reactivar .tf-price-table-btn .tf-btn {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    min-width: 250px;
}

.plan-reactivar .boton-reactivar-wrapper {
    margin-top: auto;
    text-align: center;
}

.on-sale-wrap, .on-sale-wrap-back {
    position: absolute;
    top: 5px;
    right: 5px;
    left: 5px;
    z-index: 5;
    .on-sale-item {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        word-break: break-word;
        padding: 0 6px;
        min-width: 40px;
        text-transform: capitalize;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        line-height: 22px;
        position: relative;
        background-color: #fc5732;
        color: var(--white);
        border-radius: 999px;
    }
    .sin_oferta {
        background-color: #a3a3a3 !important;
    }
    .segunda_descuento {
        background-color: #ffbb00 !important;
    }    
    .oferta_nxm {
        background-color: #ff0000 !important;
    }    
    .precio_rebajado {
        background-color: #00c203 !important;
    }
    .descuento_especial {
        background-color: #0400ff !important;
    }        
}

.color-boton-comprar-ya {
    background-color: #fa8900 !important;
    border-color: #fa8900 !important;
}

.card-product .card-product-wrapper .on-sale-wrap {
    top: -20px;
    right: 8px;
}

.on-sale-wrap-back {
    top: 10px !important;
    right: 10px !important;
}

.card-product-wrapper {
    height: 630px;
}

.card-plan-wrapper {
    height: 100%;
}

.price_front {
    width: 95%;
    padding-bottom: 70px;
    position: absolute;
    left: 4%;
    bottom: 105px;
}

.te_avisaremos {
    position: relative;
    bottom: 10px;
}

.tf-price-table-btn {
    width: 100%;
    left: 0px;
    position: relative;
    text-align: center;
    margin: auto auto;
}

.blog-detail {
    padding-bottom: 0px !important;
}

.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
    padding-top: 30px;
}

.flip-card-front img, .price-card img {
    max-height: 240px;
    object-fit: contain !important;
}

.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
}

.flip-card-back .card-product-info {
    padding-top: 40px !important;
}

.product-description {
  width: 200px;
  height: 85px;
  overflow: hidden;
}

.flip-card-front, .flip-card-back, .price-card {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    transform: rotateY(0deg);
}

.price-plan {
    
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flipped {
    transform: rotateY(180deg);
}

.back-sin-oferta {
    width: 100%;
    height: 100%;
}

.tf-price-table-contents {
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.tu-proximo-plan {
    padding: 0px 0px 80px 0px;
}

.card-product.style-price .tf-price-table-contents .tf-price-table-btn {
    top: 40px;
}

.success-message {
    padding: 10px 5px 5px 5px;
    display: block;
    text-align: center;
    margin-bottom: 10px;
    font-size: larger;
}

.tipo_oferta {
    align-items: baseline !important;
}

.icon_tipo_oferta {
    line-height: 0px !important;
}

.precio_deseado {
    width: 100%;
}

.precio_deseado input[type="number"]::-webkit-outer-spin-button,
.precio_deseado input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.precio_deseado input[type="number"] {
    -moz-appearance: textfield;
}

.wg-quantity input {
    width: 300px !important;
}

.grid-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Estilo para Google Chrome, Safari, Opera */
input::placeholder {
    color: #999 !important; /* Gris tenue */
}

/* Estilo para Mozilla Firefox */
input::-moz-placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

/* Estilo para Internet Explorer 10-11 */
input:-ms-input-placeholder {
    color: #999 !important;
}

/* Estilo para Microsoft Edge */
input::-ms-input-placeholder {
    color: #999 !important;
}

.announcement-bar-link {
    color: #fff !important;
    text-decoration: none;
}

.announcement-bar-link:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.alerta-item-link {
    color: var(--bs-alert-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.alerta-item-link:hover {
    color: var(--bs-alert-color);
    text-decoration: none;
}

.mensaje_correo_enviado {
    margin: auto;
}

.product-description-12 {
    width: 280px;
    height: 85px;
    overflow: hidden;
}

.product-description {
    width: 100%;
    overflow: hidden;
    display: -webkit-flex !important;
}

.three-lines {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.boton-comprar-ya, .boton-quitar {
    margin-top: 10px;
}

.boton-avisame {
    align-content: center;
}

#isotope-container {
    width: 100%; /* Ajuste dinámico según el contenedor padre */
    height: auto; /* Permite ajustarse al contenido */
    margin: 0 auto; /* Centra el contenedor si es necesario */
}

.tf-control-filter {
    text-align: center;
}

.nav-link {
    font-size: 16px;
}

.tf-slideshow .banner-wrapper .box-content {
    left: 65% !important;
    top: 40% !important;
}

.footer .footer-logo, .footer .footer-heading {
    max-width: 40% !important;
}

#eye_icon {
    position: relative;
    left: -3px;
}

.dominio_pie {
    color: #c2c2c2;
    position: relative;
    top: 10px;
    text-align: center;
    width: 100%;
}

.disponibilidad_nueva {
    margin-bottom: 5px;
}

@media (min-width: 768px) {

    .filtro-select {
        width: 180px;
        margin: 0 auto;
    }

    .widget-tab-3 {
        display: flex; /* Muestra el menú horizontal */
        gap: 30px !important;
    }

    .widget-tab-3 .nav-link {
        font-size: 16px !important;
    }

    .widget-tab-3 .nav-tab-item a {
        line-height: 20px !important;
        padding-bottom: 0px !important;
        border-bottom: 1px solid transparent !important;
    }

    .three-lines {
        -webkit-line-clamp: 5 !important;
        max-height: calc(1.45em * 5);
    }
}

/* Puntos de ruptura */
@media (max-width: 1350px) {
    .boton-quitar, .boton-avisame, .boton-configura-precio, .boton-comprar-ya {
        width: 100%;
        margin: auto auto;
    }

    .boton-comprar-ya, .boton-quitar {
        margin-top: 10px;
    }

    .three-lines {
        -webkit-line-clamp: 5 !important;
        max-height: calc(1.45em * 5);
    }
}

@media (max-width: 1149px) {
    .tf-price-table-contents {
        position: absolute;
        bottom: 45px;
        width: 100%;
    }

    .boton-configura-precio, .boton-avisame {
        margin-top: 10px;
    }

    .three-lines {
        -webkit-line-clamp: 5 !important;
        max-height: calc(1.2em * 5);
    }
}

/* Escritorios pequeños */
@media (max-width: 1024px) {
    .mb-other-content {
        padding-top: 30px;
    }

    .card-product-wrapper {
        height: 650px;
    }

    .card-product .card-product-wrapper .on-sale-wrap {
        top: -5px; 
    }

    .card-product.style-price .tf-price-table-contents ul {
        overflow-y: scroll;
        height: 450px;
    }

    .price_front {
        width: 94%;
        position: absolute;
        bottom: 13%;
        padding-bottom: 115px;
    }

    .tf-price-table-contents {
        position: absolute;
        bottom: 50px;
        width: 100%;
    }

    .boton-comprar-ya, .boton-configura-precio {
        width: 90%;
    }

    .widget-tab-3 {
        gap: 10px !important;
    }

    .three-lines {
        -webkit-line-clamp: 5 !important;
        max-height: calc(1.2em * 5);
    }
}

/* Tabletas y mayores */
@media (max-width: 768px) {
    .price-card .card-product-info {
        margin-top: 30px;
    }

    .filter-group {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    #filter-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .filtro-select {
        width: 100%;        /* Que ocupen la mayor parte, pero no el 100% */
        max-width: 350px;  /* Si no quieres que se estiren demasiado */
        margin: 0 auto;    /* Centra el select horizontalmente */
    }
    .flip-card-inner {
        padding-top: 60px;
    }

    .card-product-wrapper {
        height: 600px;
    }

    .card-product .card-product-wrapper .on-sale-wrap {
        top: -45px; 
        right: 15px; 
        left: 5px;
    }

    .card-product.style-price .card-product-info {
        padding: 0px 20px 0 20px;
    }

    .price_front {
        width: 92%;
        position: absolute;
        bottom: 75px;
    }

    .tf-price-table-contents {
        position: absolute;
        bottom: 75px;
        width: 100%;
    }

    .boton-quitar, .boton-avisame, .color-boton-configura-precio, .boton-configura-precio, .boton-comprar-ya {
        width: 270px;
        margin: auto auto;
    }

    .boton-configura-precio {
        top: 25px;
    }

    .boton-comprar-ya {
        top: 35px;
    }

    .tf-price-table-btn {
        width: 95%;
        left: 0px;
        position: relative
    }

    .boton-quitar {
        margin-top: 15px;
    }

    .widget-tab-3 {
        display: none; /* Oculta el menú horizontal */
    }

    .three-lines {
        -webkit-line-clamp: 3 !important;
        max-height: calc(1.2em * 3);
    }
}

/* Móviles y mayores */
@media (max-width: 576px) {
    #search-container .tf-search-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem; /* un poco de espacio entre filas */
    }

    #search-container .tf-search-head p {
        margin-bottom: 0; 
    }

    #search-container .tf-mini-search-frm {
        flex: none;
        width: 100%;
    }

    #search-container .button-process {
        order: 10;
        flex: none;
        width: 100%;
        margin-top: 0.5rem;
        display: flex;
        justify-content: center;
    }

    .card-product-wrapper {
        height: 620px;
    }

    .card-product .card-product-wrapper .on-sale-wrap {
        top: -20px; 
    }

    .card-product.style-price .tf-price-table-contents {
        padding: 0px 20px 0px 20px !important;
    }

    .swiper-slider-superior {
        padding-left: 0;
        margin-left: 4%;
    }

    .logo_partner {
        width: 130px;
    }

    .price_front {
        position: absolute;
        bottom: 85px;
    }

    .tf-price-table-contents {
        position: absolute;
        width: 100%;
    }

    .tf-price-table-btn {
        width: 100%;
        position: relative
    }

    .boton-comprar-ya, .boton-configura-precio {
        width: 270px;
        left: 0px;
    }

    .boton-quitar, .boton-avisame {
        width: 270px;
        margin: auto auto;
        display: flex;
    }

    .boton-avisame {
        margin-top: 40px;
    }

    .boton-quitar {
        margin-top: 15px;
    }

    .boton-configura-precio {
        top: 0px;
    }

    .boton-comprar-ya {
        top: 10px;
    }

    .tf-slideshow.about-us-page .text {
        font-size: 36px;          
        position: absolute;
        left: -10px;
        top: -170px;
    }

    .three-lines {
        -webkit-line-clamp: 3 !important;
        max-height: calc(1.1em * 3);
    }
}

@media only screen and (max-width: 575px) {
    #header .nav-icon li {
        display: none;
    }
    #header .nav-icon li:last-child {
        display: inline-flex !important;
    }
}

#filter-container {
    text-align: center;
    padding-bottom: 20px;
}

/* Establece un ancho mínimo para el select */
.bootstrap-select {
    min-width: 250px; /* Ajusta este valor según tus necesidades */
}

/* Estilo del botón desplegable */
.bootstrap-select .dropdown-toggle {
    display: flex; /* Asegura que las flechas estén bien posicionadas */
    justify-content: space-between; /* Espaciado entre texto y flecha */
    align-items: center;
    min-height: 40px; /* Ajusta la altura */
}

/* Opcional: elimina flechas duplicadas si persisten */
.bootstrap-select .dropdown-toggle::after {
    content: '' !important; /* Oculta el icono extra */
}

.dropdown.bootstrap-select.image-select.style-default {
    width: 260px;
}

/* Estilo del botón desplegable */
.bootstrap-select > .dropdown-toggle {
    width: 250px !important;
}