@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

.booking-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    /* background: #f9f9f9; */
    background:
        radial-gradient(circle at top left,
        rgba(255, 255, 255, 0.55),
        rgba(255, 255, 255, 0.16) 40%,
        rgba(255, 255, 255, 0) 70%
        ),
        radial-gradient(circle at bottom right,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0) 60%
        ),
        rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 999px;
    flex-wrap: nowrap;
}

.agency-type {
    display: flex;
    justify-content: start;
}

.bar-item {
    display: flex;
    align-items: center;
}

.booking-bar select,
.booking-bar input,
.booking-bar button {
    height: 42px;
    border-radius: 999px!important;
    border: none!important;
    padding: 0 25px;
    font-size: 14px;
    outline: none;
}

select[name="vehicule"] {
    min-width: 210px;
}

.bar-select {
    height: 42px;
    border-radius: 999px;
    border: none!important;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
}

.bar-switch {
    background: #fff;
    border-radius: 999px;
    padding: 4px;
    display: flex;
}

.bar-switch input {
    display: none;
}

.switch-btn {
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 999px;
    color: #000;
    user-select: none;
}

.bar-switch input:checked + .switch-btn {
    background: #015d75;
    color: #fff;
}

.bar-submit {
    background: #015d75!important;
    color: #fff!important;
    cursor: pointer;
    font-weight: 600;
}

.booking-bar select {
    background-color: #fff !important;
    color: #015d75 !important;
}

.booking-bar select option {
    background-color: #fff !important;
    color: #015d75 !important;
}





@media (max-width: 1023px) {

    .agency-type {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }

    .booking-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .booking-bar .bar-item {
        width: 100%;
    }

    .booking-bar select,
    .booking-bar input,
    .booking-bar button {
        width: 100%;
        padding: 0 18px;
        font-size: 15px;
    }

    .bar-switch {
        justify-content: center;
        width: 100%;
    }

    .switch-btn {
        flex: 1;
        text-align: center;
    }

    .bar-submit {
        height: 46px;
        font-size: 16px;
    }
}

    .devis-result {
        text-align: left!important;
    }
