.booking-checkout {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px; 
}
 
.booking-checkout > .column-left {  
    flex: 2 1 0%;
    max-width: 66.666%;
}
.booking-checkout > .column-right {
    flex: 1 1 0%;
    max-width: 33.333%;
}
.page-template-booking-checkout .site-footer, 
.otgs-development-site-front-end,
.page-template-booking-checkout .header-menu-container,
.page-template-booking-checkout .column-left form button[type="submit"]{
    display:none !important;
}
.booking-checkout h3,
.booking-checkout [data-field=dati_passeggero] .form-html-field,
.booking-checkout [data-field=dati_fatturazione] .form-html-field {
    font-size: 25px;
    font-family: var(--wp--preset--font-family--avenir);
    margin-bottom:10px;
    color:var(--wp--preset--color--accent)
}
.booking-checkout [data-field=dati_fatturazione] .form-html-field {
    margin-top:10px;
}
.booking-checkout section {
    position:relative;
    margin-bottom:26px;
}
.booking-checkout .booking-summary__checkout{
    width: auto;
    padding: 10px 25px;
    background-color: var(--wp--preset--color--accent);
    opacity: 0.8;
    border: none;
    text-transform: uppercase;
    color: var(--wp--preset--color--text);
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    line-height: 1.5;
    box-sizing:border-box;
}
.booking-checkout .booking-summary__checkout {
    margin-top:15px;
}
.booking-checkout .booking-summary__checkout {
    position:relative;
    display:block;
    text-align:center;
    width: 100%;
    margin-bottom:15px;
}
.booking-checkout .booking-summary__checkout:hover {
    opacity: 1;
}
.booking-checkout .back-link {
    width: auto;
    padding: 10px 25px;
    background-color: var(--wp--preset--color--accent);
    opacity: 0.8;
    border: none;
    text-transform: uppercase;
    color: var(--wp--preset--color--text);
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    line-height: 1.5;
    display: inline-block;
    margin-left: 12px;
}
.booking-checkout form[data-form="booking"] {
    position: relative;
    width: 100%;
    margin-top: 20px;
    font-size: 0;
}
@media (max-width:992px){
    .booking-checkout {
        flex-direction: column;
    }
    .booking-checkout > .column-left {
        flex: none;
        max-width: none;
        width: 100%;
        display: block;
    }
    .booking-checkout > .column-right {
        flex: none;
        max-width: none;
        width: 100%;
        display: block;
    }
}