/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.27.4.1741772913
Updated: 2025-03-12 10:48:33

*/
@import url('../Divi/style.css');

/* Contenedor del "select" */
.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
}

/* Flecha simulada */
.custom-select::after {
    content: "▼"; /* Flecha de select */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
}

/* Caja de opciones: OCULTA por defecto */
.custom-options {
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Opciones dentro del "select" */
.custom-options div {
    padding: 10px;
    font-size: 16px;
    color: black;
    background: white;
}

/* Opción tachada */
.custom-options .disabled-option {
    text-decoration: line-through;
    color: gray;
}

/* Mostrar opciones SOLO cuando el usuario pase el ratón (hover) */
.custom-select:hover + .custom-options {
    display: block;
}
