.dropdown {
    height: 56px;
    box-sizing: border-box;
    border: 1px solid;
    border-color: var(--grey2);
    border-radius: 8px;
    position: relative;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    width: 100%;
    align-self: initial;
    box-sizing: border-box;
    display: inline-flex;
    font: inherit;
    vertical-align: baseline;
    position: relative;
}

.dropdown .label{
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    cursor: default;
    position: absolute;
    pointer-events: none;
    top: 0;
    transform-origin: 0px 0px;
    height: 24px;
    display: flex;
    flex-direction: row;
    line-height: 24px;
    font-size: 16px;
    transform: translateY(16px) scale(1);
    transition: transform 150ms ease 0s, width 150ms ease 0s;
    left: 12px;
    width: calc((100%-24px)/1);
    padding-right: 0px;
    color: var(--grey5);   
    color: var(--blue);
    transform: translateY(8px) scale(0.75);
    height: 21.3333px;
    box-sizing: border-box;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--grey1);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    text-align: left;
    border-radius: 8px;
    max-height: 15rem;
    min-width: 15rem;
    max-width: 20rem;
    overflow-y: scroll;
    padding: 1rem;
}

.dropdown-content label {
    display: flex;
    align-items: center; /* Alinea verticalmente el checkbox y el texto */
    margin: 1rem;
    cursor: pointer;
    transition: .3s ease all;

}

.dropdown-content label:hover {
    color: var(--blue);
}


.dropdown-content .separator {
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

.dropdown-input {
    width: 200px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;

    width: 100%;
    height: 100%;
    position: absolute;
    margin: 0;
    padding: 12px 0 0 12px;
    border: 0;
    background-color: var(--white);
    outline: 0;
}

.dropdown-input.read-only {
   *background-color: #f9f9f9;
    cursor: pointer;
}


.dropdown-content label input[type='checkbox'] {
    cursor: pointer;
    min-height: 1.2rem;
    min-width: 1.2rem;
    user-select: none;
    outline: 1px solid transparent;
    vertical-align: middle;
    transition: box-shadow 0.3s;
    border-radius: 2px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;


}

.dropdown-content label input[type='checkbox']:checked{
    background-color: var(--blue);
    color: var(--blue);
}