.select-base {
    position: relative;
    font-family: 'BentonBook', sans-serif;
    font-size: 15.008px;
    font-style: normal;
    font-weight: 350;
    line-height: 24px;
}

/* Div Search */
.select-div {
    background: var(--bbva-grey-200);
    border: 2px solid var(--bbva-grey-600);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.select-div-span {
    width: 100%;
    height: 52px;
    flex-grow: 2;
}

.select-search-input {
    background-color: var(--bbva-grey-200);
    border: 0;
    flex-grow: 2;
    cursor: pointer;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 52px;
    min-height: unset !important;
}

.select-search-input:focus {
    cursor: default;
    border: 0;
    box-shadow: none !important;
    background-color: var(--bbva-grey-200)
}
/* FIN Div Search */

.select-icon-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}

i.icon-rotation {
    transform: rotate(0deg);
    transition: transform 0.18s linear;
}

i.icon-rotation.open {
    transform: rotate(180deg);
    transition: transform transform 0.18s linear;
}

/* Select Div de Opciones/Select-All/Btn-Filter  */
.select-options-div {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    background-color: var(--bbva-grey-200);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    visibility: hidden;
    max-height: 0;
    transition: visibility 0s 0.2s, max-height 0.2s ease-in-out;
    z-index: 1000;
}

.select-options-div.open {
    visibility: visible;
    transition: visibility 0s 0s, max-height 0.2s ease-in-out;
    max-height: 900px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* FIN Multiselect Div de Opciones/Select-All/Btn-Filter  */

/* Listado con scroll - Sin Select-All / Btn-Filter */
.select-list-options {
    background: var(--bbva-grey-200);
    /*border: 1px solid #ced4da;*/
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
}

/* FIN Listado con scroll - Sin Select-All / Btn-Filter */

/* Opcion unitaria listado */
.select-option-card {
    background: #FFFFFF;
    color: var(--bbva-midnight-blue);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.select-option-card.selected {
    background: var(--bbva-electric-blue);
    color: white;
}

.check-icon {
    display: none;
    color: white;
}

.select-option-card.selected .check-icon {
    display: inline-block;
    /* Muestra el ticket ✔ cuando se selecciona */
}

/* Fin Opcion unitaria listado */