
#arrow {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    top: calc(100%);
    border-top: 25px solid #F9B104;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.form-full-height {
    height: calc(80vh);
}

@media (min-width: 768px) {
    .form-full-height {
        height: auto;
    }
}

#cgu_form {
    text-align: left;
    font-size: 0.8em;
    line-height: 1;
}

.input-group-text {
    min-width: 50px;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}


.overlay {
    display: none; /* Masqué par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fond grisé */
    z-index: 1000; /* Au-dessus de tout */
}

.fixed-bottom-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%; /* 100% de la largeur */
    z-index: 1000; /* Pour s'assurer que le bouton est au-dessus des autres éléments */
    border-radius: 0; /* Supprimer les bordures arrondies */
    display: none;
    background-color: #F9B104;
    border: 1px solid #F9B104;
}

.contact .droite {
    background-color: #FFFFFF;
    padding: 0;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px 1px #000;
}

.contact .droite .section
{
    padding: 0;
}

@media (width <= 992px ) {
    .bloc_desktop {
        display: none;
    }

    .bloc_mobile {
        display: block;
    }

    #lead_form {
        position: relative !important;
        width: 100%;
        max-width: 100%;
        top: 0;
        margin-top: 10px;
    }

    .fixed-bottom-btn {
        display: block;

        * {
            color: white;
        }
    }

    main > .container-fluid > .row {
        padding: 0 !important;
        flex-direction: row-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    main > .container-fluid > .row>.col-lg-4 {
        padding-left: 15px !important;
        padding-right: 15px!important;
    }

    #lead_form {
        position: relative !important;
        width: 100%;
        max-width: 100%;
        top: 0 !important;
        margin-top: 10px;
    }

    #lead_form > row {
        margin: 0;
    }

    .contact .droite {
        box-shadow: none;
        margin: 0;
        border-radius: 0;
        border: 5px solid #F9B104;
    }

    .form_title {
        border-radius: 0;
        box-shadow: none;
    }
}

#lead_form {
    position: fixed;
    /*top: 140px;*/
    top: calc(60px * 2 + 0.5rem + 10px);
    z-index: 2;
}

ul.dropdown-menu.show {
    max-height: 300px !important;
    overflow-y: auto!important;
}

.lead_form_active {
    z-index: 1001 !important;
}

.email-suggestions {
    position: absolute;
    top: 100%;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ced4da;
    background: #fff;
}

.row.radio-row {
    -ms-overflow-style: scrollbar;
    scrollbar-width: thin;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.row.radio-row::-webkit-scrollbar {
    width: 8px;
}
.row.radio-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.row.radio-row::-webkit-scrollbar-track {
    background: #f1f1f1;
}