.form-input-select{
    width: 100%;
    outline: none;
    padding: 1rem;
    color: #6b6b6b;
    font-size: 2rem;
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid var(--red);
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    cursor: pointer;
}

.form-input-select:focus{
    border: 2px solid var(--red);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input-select-option{
    color: #6b6b6b;
    font-size: 2rem;
    cursor: pointer;
}

.form-input-select-option:checked {
    color: var(--red);
}

.form-input-select-option:hover {
    color: var(--red);
    cursor: pointer;
}
