/*!
 * Apariencia de selects options
 */

 .atributo select {
    --selectHoverCol: #8A33FF;
    --selectedCol: #8A33FF;
    padding-left: 30px !important;
    padding-right: 20px !important;
    background-color: #514C67;
    border-radius: 50px;
    overflow-y: hidden;

    min-width: 180px;
    max-width: max-content;
    
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    background-image: linear-gradient(to right, #514C67 0%, #514C67 0%, transparent 0%, transparent 0%),
                    linear-gradient(to right, #514C67 0%, #514C67 0%, transparent 0%, transparent 0%),
                    linear-gradient(to right, #514C67 0%, #514C67 0%, transparent 0%, transparent 0%),
                    url("../../img/historic/dropdown_arrow.svg"); /* Ruta a la imagen de la flecha */
    background-size: 0.5em 2px, 0.5em 2px, 1em 2px, 20px auto; /* Ancho y altura de las flechas y la imagen */
    background-position: calc(100% - 10px) center, calc(100% - 5px) center, 100% 50%, right center; /* Posición de las flechas y la imagen */
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-origin: content-box; /* Agrega padding solo a la imagen de la flecha */
    
    border: none;
    color: white;

    font-style: normal;
    font-weight: 700;
    font-family: 'Quicksand';
    font-size: 12px;
    text-transform: uppercase;
}

.atributo select:focus {
    border-radius: 25px;
    
    background: #08000F;
    outline: none;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.atributo .select-wrap {
    position: absolute;
}

.atributo .select-wrap:focus-within select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10
}

.atributo option {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 12px;
}

.atributo option:hover {
    background-color: var(--selectHoverCol);
    color: #fff;
}

.atributo option:checked {
    box-shadow: 0 0 1em 100px var(--selectedCol) inset;
}

.elemento {
    margin-top: 10px;
    margin-bottom: 30px;
    
}

.sep {
    height: 2px;
}

.elementomaterial{
    width: 265px;
}

.elementofloculante{
    width: 190px;

}

.elementodiagnostico{
    width: 190px;
}