.tbgt_grille_tarifaire_section {
    width: 100%;
    background-color: #ffffff;
    padding: 1em;
    margin-bottom: 20px;
}

.tbgt_grille_tarifaire_container {
    max-width: 1170px;
    margin: auto;
}

.tbgt_categorie_name {
    font-weight: bold;
    color: var(----auxin-featured-color-1);
    font-size: 18px;
}

.tbgt_service_container {
    background-color: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%);
    border-radius: 20px;
    margin-bottom: 50px;
}

.tbgt_service_list {
    margin-bottom: 0;
    padding-left: 0!important;
}

li.tbgt_service_row {
    border-bottom: solid 1px #e6e6e6;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    align-items: center;
    flex-wrap: wrap;
}

li.tbgt_service_row:last-child{
    border: none;
    margin-bottom: 0;
}
.tbgt_service_left_row {
    width: 55%;
}
.tbgt_service_right_row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 40%;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 15px 0;
}

.tbgt_service_left_row p,
.tbgt_service_right_row p {
    margin: 0;
}

.tbgt_reservation_btn {
    font-weight: bold;
    color: var(----auxin-featured-color-1);
    border-radius: 10px;
    border: none;
    font-size: 13px;
    padding: 10px 14px;
    background-color: var(--auxin-featured-color-2 );
}

.tbgt_quote_text {
    color:  var(--auxin-featured-color-2 );
    font-weight: bold;
    text-align: end;
}

@media (max-width: 700px) {
    .tbgt_service_right_row {
        gap: 10px;
    }

    .tbgt_service_container {
        padding: 15px 30px;
    }
}

@media (max-width: 450px) {
    .tbgt_service_container {
        padding: 10px 20px;
    }

    .tbgt_service_left_row,
    .tbgt_service_right_row {
        width: 100%;
    }

    .tbgt_service_right_row {
        flex-direction: row-reverse;
    }
}