/* SELECT MENUS (menus déroulants) */
.select-menu {
    position: relative;
    display: inline-block;
    width: 262px;
    height: 38px;
    margin: 5px;
}

.select-menu.thin {
    width: 25px;
    height: 25px;
}

.select-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 1px solid #C2C2C2;
    border-radius: 4px;
    background-color: #FFF;
    padding: 0 12px;
    cursor: pointer;
}

.select-text {
    color: #757575;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.select-icon {
    transition: transform 0.3s ease;
}

.select-menu.active .select-icon {
    transform: rotate(180deg);
}

.select-options {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 4px;
    background: var(--Gray_02-10, #FFF);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
    z-index: 1000;
    min-width: 100%;
}

.select-menu.active .select-options {
    display: flex;
}

.option {
    display: flex;
    padding: 6px 16px;
    align-items: center;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.option:hover {
    background: #FFFAF5;
}

.option.checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.option.selected {
    background: #FFFCF5;
}

.option.checkbox input[type="checkbox"]:checked + label {
    color: #000;
    font-weight: 400;
}