/*==================================================
        MENU TYPE DE TRAJET PERSONNALISÉ
==================================================*/

/* Conteneur */
#serviceSelect {
    position: relative;
    width: 100%;
}

/* Bouton principal */
#serviceSelect .custom-select-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    width: 100% !important;
    min-height: 54px !important;

    padding: 15px 18px !important;

    border: 1px solid rgba(123, 46, 255, 0.35) !important;
    border-radius: 14px !important;

    background: #151515 !important;
    color: #ffffff !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;

    text-align: left !important;

    cursor: pointer !important;
}

/* Texte du bouton */
#serviceSelect .custom-select-value {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Flèche */
#serviceSelect .custom-select-trigger i {
    color: #ffffff !important;
}

/* Menu déroulant */
#serviceSelect .custom-select-options {
    position: absolute !important;

    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: 0 !important;

    z-index: 9999 !important;

    display: none !important;

    padding: 6px !important;

    background: #15151c !important;

    border: 1px solid rgba(123, 46, 255, 0.35) !important;
    border-radius: 14px !important;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.45) !important;

    overflow: hidden !important;
}

/* Menu ouvert */
#serviceSelect.open .custom-select-options {
    display: block !important;
}

/* CHAQUE OPTION */
#serviceSelect .custom-select-option {
    display: block !important;

    width: 100% !important;
    min-height: 48px !important;

    margin: 0 !important;
    padding: 13px 15px !important;

    border: 0 !important;
    border-radius: 9px !important;

    background: #15151c !important;

    color: #ffffff !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;

    line-height: 1.4 !important;

    text-align: left !important;

    opacity: 1 !important;
    visibility: visible !important;

    cursor: pointer !important;

    appearance: none !important;
    -webkit-appearance: none !important;
}

/* Option au survol */
#serviceSelect .custom-select-option:hover,
#serviceSelect .custom-select-option:focus {
    background: #7B2EFF !important;
    color: #ffffff !important;

    outline: none !important;
}

/* Option sélectionnée */
#serviceSelect .custom-select-option.selected {
    background: rgba(123, 46, 255, 0.30) !important;
    color: #ffffff !important;

    font-weight: 600 !important;
}

/* Bouton lorsque le menu est ouvert */
#serviceSelect.open .custom-select-trigger {
    border-color: #7B2EFF !important;

    background: #1b1824 !important;

    box-shadow:
        0 0 20px rgba(123, 46, 255, 0.18) !important;
}


/*==================================================
        MOBILE
==================================================*/

@media (max-width: 576px) {

    #serviceSelect .custom-select-trigger {
        min-height: 54px !important;
        padding: 15px 17px !important;
    }

    #serviceSelect .custom-select-option {
        min-height: 46px !important;
        padding: 12px 14px !important;
    }

}