/******************* SCROLL SEARCH *******************/
    
    .scroll-helper {
      position: fixed;
      top: 54px;
      width: 100%;
      background-color: #f1f1f1;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transform: translateY(-100%);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
      z-index: 99;      
    }

    .scroll-helper.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .scroll-helper input {
      padding: 10px;
      width: 80%;
      max-width: 400px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {

      .scroll-helper input {
        width: 95%;
      }
    }
/******************* SCROLL SEARCH *******************/    

.container-progressbar {
    width: 100%;
    margin: 0;
    text-align: center;
}

.progressbar-container {
    width: 100%;
    background: #eeeeee;
    margin-top: 0;
    height: 20px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #4caf50;
    transition: width 0.2s ease-in-out;
}


        /* Contenedor principal */
        .contenedor-switch {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            /*padding: 10px;*/
            /*border: 1px solid #ddd;*/
            /*border-radius: 10px;*/
            /*background-color: #f9f9f9;*/
        }

        /* Div izquierdo (precio + texto) */
        .izquierda-switch {
            display: flex;
            flex-direction: column;
        }

        .precio-switch {
            font-size: 18px;
            font-weight: bold;
            color: #333; /* Color por defecto */
            transition: color 0.3s, transform 0.3s;
        }

        .texto-switch {
            font-size: 14px;
            color: #666;
        }

        /* Estilos para el switch */
        .switch {
            position: relative;
            display: inline-block;
            width: 40px;
            height: 20px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider-switch {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.4s;
            border-radius: 20px;
        }

        .slider-switch:before {
            position: absolute;
            content: "";
            height: 14px;
            width: 14px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
        }

        input:checked + .slider-switch {
            background-color: #4CAF50;
        }

        input:checked + .slider-switch:before {
            transform: translateX(20px);
        }

        /* Precio activado */
        .precio-activo {
            color: #4CAF50 !important;
            transform: scale(1.1);
        }

        /*************************************/

                /* Div izquierdo (precio + texto) */
                .izquierda-switch-big {
                    display: flex;
                    flex-direction: column;
                }
        
                .precio-switch-big {
                    font-size: 28px;
                    font-weight: bold;
                    color: #3d464d; /* Color por defecto */
                    transition: color 0.3s, transform 0.3s;
                }
        
                .texto-switch-big {
                    font-size: 28px;
                    color: #666;
                }
        
                /* Estilos para el switch */
                .switch-big {
                    position: relative;
                    display: inline-block;
                    width: 40px;
                    height: 20px;
                }
        
                .switch-big input {
                    opacity: 0;
                    width: 0;
                    height: 0;
                }
        
                .slider-switch-big {
                    position: absolute;
                    cursor: pointer;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background-color: #ccc;
                    transition: 0.4s;
                    border-radius: 20px;
                }
        
                .slider-switch-big:before {
                    position: absolute;
                    content: "";
                    height: 14px;
                    width: 14px;
                    left: 3px;
                    bottom: 3px;
                    background-color: white;
                    transition: 0.4s;
                    border-radius: 50%;
                }
        
                input:checked + .slider-switch-big {
                    background-color: #4CAF50;
                }
        
                input:checked + .slider-switch-big:before {
                    transform: translateX(20px);
                }
        
                /* Precio activado */
                .precio-activo-big {
                    color: #4CAF50 !important;
                    transform: scale(1.1);
                }