


  #devis {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    opacity: 0;
    display: none;
    background-color: #00496B;
    width: 100%;
    z-index: 9999999;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* Pour Internet Explorer et Edge */
    scrollbar-width: none;     /* Pour Firefox */
}


#devis::-webkit-scrollbar {
    display: none;  /* Pour Chrome, Safari et Opera */
}


#devis .ms-5{
    margin-left: 0 !important;
}

#devis .mt-4{
    margin-top: 3rem !important;
}

/* Couleurs */
.yellow { color: #EFD500 !important; }
.white { color: #ffffff !important; }

/* Typographie */
.f-20 { font-size: 20px; }
.f-60 { font-size: 60px; }
.fw-400 { font-weight: 400; }
.fw-700 { font-weight: 700; }
.text-italic { font-style: italic; }

/* Utilitaires */
.none { display: none !important; }
.w-222 { width: 222px; }

/* Formulaire - inputs */
#devis input[type="text"],
#devis input[type="number"],
#devis input[type="tel"],
#devis input[type="email"],
#devis textarea {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 15px 20px;
    width: 100%;
    font-size: 18px;
    border-radius: 0;
}

#devis input::placeholder,
#devis textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

#devis textarea {
    min-height: 120px;
    resize: vertical;
}

/* Custom Select (dropdowns) */
.customselect {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.customselect img {
    transition: transform 0.3s ease;
    width: 20px;
}

.customselect img.rotate {
    transform: rotate(180deg);
}

/* Date picker */
#devis .date {
    position: relative;
}

#devis .date input {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 15px 20px;
    width: 100%;
}

/* Checkbox */
.checkbox_regular {
    align-items: center;
}

.square-check {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.checkbox-image {
    width: 14px;
    height: 14px;
}

/* Bouton */
.btn-white {
    background-color: #ffffff;
    color: #00496B;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #EFD500;
    color: #00496B;
}

/* Logo dans la modale */
#devis .logo {
    max-width: 200px;
    height: auto;
}

/* Bouton fermer */
.devis-close {
    color: #ffffff;
    text-decoration: none;
}

.nav-button-close {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
}

.nav-button-close span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    top: 50%;
    left: 0;
}

.nav-button-close .cros1 {
    transform: rotate(45deg);
}

.nav-button-close .cros2 {
    transform: rotate(-45deg);
}

/* Dropdown menu */
#devis .dropdown-menu {
    background-color: #00496B;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    width: 100%;
}

#devis .dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
    cursor: pointer;
}

#devis .dropdown-item:hover,
#devis .dropdown-item.selected {
    background-color: rgba(255, 255, 255, 0.1);
    color: #EFD500;
}

#devis .dropdown-menu.show {
    display: block;
}
