.workshops_input {
    background-color: #f0f0f0;
    padding-left: 10px;
    border: none !important;
    height: 45px !important;
}
.workshops_container-input {
    border: 1px solid #9f9f9f;
}
.workshops_symbol-price {
    left: 25px;
}
.workshops_main-paragraph {
    font-size: 30px;
    font-family: "proximanova-bold";
}

.form-control {
    height: 60px;
    border-radius: 10px;
    border: 1px solid #9f9f9f;
}
.form-select {
    height: 60px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #9f9f9f;
}

input::placeholder {
    padding-left: 0; /* Cambia este valor según el padding deseado */
    color: gray; /* Opcional: Cambia el color del placeholder */
}

.workshops_search-form {
    max-width: 100%;
}

.workshops_search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.workshops_dropdown,
.workshops_dropdown_country {
    flex: 1;
    width: 252px;
    height: 60px;
    padding: 15px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2rem;
    background-color: #fff;
    appearance: none; /* Elimina estilos nativos */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000000" viewBox="0 0 24 24"><path d="M12 16l-6-6h12l-6 6z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center; /* Asegura la posición correcta */
    background-size: 30px;
    line-height: 1.5; /* Centra el texto verticalmente */
    cursor: pointer; /* Cambia el cursor a pointer */
}

/* Estilos específicos para el select */
.workshops_dropdown_country,
.workshops_dropdown {
    height: 60px !important;
    padding: 10px !important;
    border-radius: 10px;
    border: 1px solid #9f9f9f;
}

/* Asegura que los inputs y selects tengan el mismo tamaño */
.form-control {
    width: 100%; /* Asegura que el input y el select ocupen todo el espacio disponible */
}

.workshops_symbol-price .workshops_input {
    border: none !important;
    height: 26px;
    border-radius: 12px;
}

/*------------------------
checkbox
------------------------------*/
/* Cambié el nombre de la clase de 'container' a 'custom-radio-container' */
.custom-radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.custom-radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.custom-radio-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.custom-radio-container input:checked ~ .checkmark {
    background-color: white;
    border: 1px solid #6fbe6d;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio-container .checkmark:after {
    top: 4px;
    left: 4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #6fbe6d;
}

input {
    border: 1px solid #ced4da; /* Estilo normal */
}
input.touched:invalid {
    border: 2px solid red !important; /* Solo después de interacción */
}

@media (max-width: 768px) {
    .form-control {
        width: 100%; /* Asegura que el input y el select ocupen todo el espacio disponible */
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 100%;
    }
    .workshops_input {
        background-color: transparent;
        border: 1px solid #9f9f9f !important;
        padding-left: 30px;
    }
    .workshops_container-input {
        border: none;
    }
    .workshops_symbol-price {
        left: 10px;
        top: 10px;
    }
    .workshops_main-paragraph {
        font-size: 16px;
    }
    .workshops_dropdown_country {
        margin-top: 1rem !important;
        width: 100%;
        height: 60px;
    }
    .workshops_dropdown {
        margin-top: 1rem !important;
    }
    .form_input_poblation {
        margin-top: 1rem !important;
    }
}


.loading-dots::after {
    content: '...';
    animation: loadingDots 1s infinite;
}

@keyframes loadingDots {
    0% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
}

