.modalInicioRedi {
    display: flex;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;

    --color-primary: #2B8B4B;
    --color-secondary: #FFDC5D;
    --color-text: #333333;
    --color-var1: #ccc;
}

.modalInicioRedi-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 4px solid #ffd321;
}

.modalInicioRedi h2 {
    color: #016d38;
    margin-bottom: 20px;
}

.modalInicioRedi p {
    margin-bottom: 20px;
}

.modalInicioRedi .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
    border-radius: 1.2em;
    padding: 8px 30px;
    line-height: 1;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    background-color: var(--color-primary);
    color: #fff;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    filter: grayscale(0);
    opacity: 1;
}

.modalInicioRedi .btn:disabled {
    filter: grayscale(1);
    opacity: .5;
    cursor: not-allowed;
}

.modalInicioRedi.hidden {
    display: none;
}

.modalInicioRedi select {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 20px;
}

.modalInicioRedi select::-ms-expand {
    display: none;
}

.modalInicioRedi select:hover {
    border-color: #888;
}

.modalInicioRedi select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 1px 1px var(--color-secondary);
    outline: none;
}

.modalInicioRedi select option:hover {
    background-color: var(--color-secondary) !important;
    color: var(--color-text);
}