.online-booking-bg{
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    display: none;
}
.online-booking {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border-radius: 12px;
    width: 100%;
    height: 100%;
}
.online-booking span{
    direction: ltr;
}
.online-booking.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    padding: 60px 0;
}
.online-booking-content {
    background: white;
    border-radius: 12px;
    padding: 40px 50px;
    min-width: 1000px;
    max-width: 1000px;
    height: auto;
    min-height: 710px;
    position: relative;
    margin: auto;
    /*margin: 5% auto 3%;*/
}
.online-booking-content.error-content{
    min-width: 700px;
    max-width: 700px;
    min-height: 430px;
}
.online-booking-content-car{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.online-booking-content .loader-wrap{
    display: block;
    border-radius: 12px;
}
.online-booking-close {
    width: 40px;
    height: 40px;
    position: absolute;
    right: -55px;
    top: -15px;
    cursor: pointer;
}
.online-booking-center{
    min-width: 100%;
}
.online-booking-left {
    flex: 2;
    min-width: 490px;
    max-width: 490px;
    margin-right: 60px;
}
.online-booking .breadcrumbs {
    margin-bottom: 15px;
    display: flex;
    height: 20px;
    align-items: center;
    gap: 9px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .breadcrumbs {
    direction: rtl;
}
.online-booking .breadcrumbs .breadcrumb-item{
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #818181;
}
.online-booking .breadcrumbs .breadcrumb-item.active{
    color: var(--pix-orange);
    cursor: pointer;
}
.online-booking .breadcrumbs .breadcrumb-item.pointer{
    cursor: pointer;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .breadcrumbs svg{
    transform: rotate(180deg);
}
.online-booking .car-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2em;
    color: var(--pix-text-gray);
}

/* STEP 1 */
.online-booking .rental-dates {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .rental-dates {
    direction: rtl;
}
.online-booking .rental-dates .calendar-icon{
    background-color: #F6F7F8;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.online-booking .rental-dates .calendar-icon svg{
    margin-top: -2px;
}
.online-booking .rental-dates .calendar-dates{
    font-size: 14px;
    margin-left: 8px;
    font-weight: 500;
    color: #0F0F0F;
}
.online-booking .rental-dates .calendar-dates i{
    font-family: monospace;
}
.online-booking .section {
    margin-bottom: 10px;
    margin-top: 30px;
}
.online-booking .section .section-title {
    font-size: 22px;
    line-height: normal;
    font-weight: 800;
    margin-bottom: 13px;
    color: var(--pix-text-gray);
}
.online-booking .info-table {
    display: flex;
    padding: 18px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border: 1px solid var(--pix-grey-border);
    border-radius: 8px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .info-table {
    direction: rtl;
}
.info-table.expanded {
    max-height: 1000px; /* любое большое значение */
}
.online-booking .info-table .car-field {
    display: flex;
    line-height: initial;
    margin-top: 10px;
    width: 100%;
}
.online-booking .characteristics .car-field:nth-child(n+3) {
    display: none;
}
.online-booking .info-table .car-field:first-child {
    margin-top: 0;
}
.online-booking .info-table .car-field:last-child {
    color: var(--pix-text-gray);
}
.online-booking .info-table .car-field div:first-child {
    color: #818181;
    font-weight: 500;
}
.online-booking .info-table .car-field .line {
    margin: 0 10px;
    height: 15px;
    flex: 1;
    border-bottom: 1px dashed var(--pix-grey-border);
    min-width: 30px;
}
.online-booking .info-table .car-field div:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--pix-text-gray);
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .info-table .car-field div:last-child {
    text-align: left;
}
.online-booking .more-info {
    margin-top: 12px;
    background: none;
    border: none;
    color: #818181;
    cursor: pointer;
    font-size: 14px;
    line-height: 150%;
    margin-left: auto;
    display: table;
}
.online-booking .more-info span{
    border-bottom: 1px dashed #818181;
    padding-bottom: 1px;
}
.online-booking .more-info span:hover{
    border-bottom: 1px dashed white;
}
.online-booking .more-info svg{
    margin-left: 8px;
}
.online-booking .more-info.active svg{
    transform: rotate(-180deg);
}

.online-booking .online-booking-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .online-booking-right {
    direction: rtl;
}
.online-booking .car-image {
    width: 100%;
    height: 225px;
    border-radius: 8px;
    overflow: hidden;
}
.online-booking .car-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.online-booking .rental-cost {
    margin-top: 30px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
}
.rental-cost-title{
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 5px;
}
.online-booking .rental-line {
    display: flex;
    padding: 15px 0;
    /*justify-content: space-between;*/
    align-items: flex-start;
    flex-wrap: nowrap;
    /*gap: 10px;*/
    align-self: stretch;
    border-bottom: 1px solid var(--pix-grey-border);
    font-weight: 600;
    color: var(--pix-text-gray);
}
/*.online-booking .rental-line.date-info > div {*/
/*    max-width: 75%;*/
/*}*/
.online-booking .options-line{
    padding: 15px 0;
    border-bottom: 1px solid var(--pix-grey-border);
}
.online-booking .options-line-title{
    color: var(--pix-text-gray);
    font-weight: 600;
    font-size: 16px;
}
.online-booking .option-line{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 5px 0;
    font-size: 16px;
}
.online-booking .line {
    margin: 0 15px;
    height: 18px;
    flex: 1;
    border-bottom: 1px dashed var(--pix-grey-border);
}
.online-booking .option-line span:first-child{
    color: #818181;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4em;
    max-width: 66%;
}
.online-booking .option-line span:nth-last-child(2){
    color: var(--pix-text-gray);
    font-weight: 500;
    padding-right: 5px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .option-line span:nth-last-child(2){
    padding-right: 0;
    padding-left: 5px;
}
.online-booking .option-line span:last-child{
    color: var(--pix-text-gray);
    font-weight: 500;
}
.online-booking .options-line.delivery .option-line span{
    line-height: normal;
    font-weight: 500;
}
.online-booking .rental-line .date-interval{
    color: #818181;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4em;
}
.online-booking .rental-line .date-interval i{
    font-family: monospace;
}
.online-booking .rental-line > span:last-child{
    text-align: right;
    white-space: nowrap;
}
.online-booking .rental-line.date-info span:nth-last-child(2){
    margin-left: auto;
    padding-right: 5px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .rental-line.date-info span:nth-last-child(2){
    margin-left: 0;
    margin-right: auto;
    padding-right: 0;
    padding-left: 5px;
}
.online-booking .total-price {
    margin: 18px 0 15px;
    line-height: 1.3em;
    display: flex;
    justify-content: space-between;
}
.online-booking .total-price span:first-child{
    font-weight: 600;
    color: var(--pix-text-gray);
    font-size: 16px;
}
.online-booking .total-price span:not(:first-child){
    font-size: 28px;
    font-weight: 800;
    text-align: right;
    color: #263141;
    white-space: nowrap;
}
.online-booking .total-price span:nth-child(2){
    margin-left: auto;
    padding-right: 8px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .total-price span:nth-child(2){
    margin-left: 0;
    margin-right: auto;
    padding-right: 0;
    padding-left: 8px;
}
.online-booking .rental-line.small{
    padding: 25px 0 10px;
    border-bottom: 0;
    gap: 12px;
    flex-wrap: wrap;
}
.online-booking .rental-line-small{
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
    font-weight: 500;
    line-height: 150%;
    font-size: 14px;
}
.online-booking .rental-line-small .line {
    height: 15px;
}
.online-booking .rental-line-small span:first-child{
    color: #777;
}
.online-booking .rental-line-small span:last-child{
    color: var(--pix-text-gray);
}
/*.online-booking .rental-line.tax-vat > span{*/
/*    max-width: 60%;*/
/*}*/
.online-booking .rental-line #tax-price {
    margin-left: auto;
    white-space: nowrap;
    padding-right: 5px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .rental-line #tax-price {
    margin-left: 0;
    margin-right: auto;
    padding-right: 0;
    padding-left: 5px;
}
.online-booking .rental-cost-note{
    padding-left: 30px;
    background: url("/wp-content/plugins/online-booking/images/exclamation.svg") left top no-repeat;
    font-size: 14px;
    color: #818181;
    line-height: 150%;
    margin-bottom: 5px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .rental-cost-note{
    background: url("/wp-content/plugins/online-booking/images/exclamation.svg") right top no-repeat;
    padding-left: 0;
    padding-right: 30px;
}
.online-booking .continue-btn {
    background: var(--pix-main-color);
    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    height: 44px;
    padding: 4px 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    transition: 0.3s ease;
}
.online-booking .continue-btn.disabled{
    background: #2D2D2D;
    opacity: .3;
    cursor: default;
}
.online-booking .continue-btn:not(.disabled):hover {
    box-shadow: 1px 1px 10px 4px rgba(0, 0, 0, 0.1);
}

.online-booking .car-is-not-available{
    display: flex;
    flex-wrap: nowrap;
    background-color: #FEF5EB;
    padding: 30px 40px;
    gap: 50px;
    margin-top: 20px;
    border-radius: 15px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .car-is-not-available{
    direction: rtl;
}
.online-booking .car-is-not-available .car-img{
    min-width: 146px;
    max-width: 146px;
    height: 94px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.online-booking .car-is-not-available .car-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.online-booking .car-is-not-available .dates-period{
    display: flex;
    flex-wrap: wrap;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: -3px;
    color: var(--pix-orange);
    padding-top: 3px;
}
.online-booking .car-is-not-available .dates-period svg{
    margin-right: 10px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .car-is-not-available .dates-period svg{
    margin-right: 0;
    margin-left: 10px;
}
.online-booking .car-is-not-available .dates-period span{
    padding-top: 3px;
}
.online-booking .car-is-not-available .dates-period .not-available-str{
    min-width: 100%;
    padding-left: 38px;
    font-weight: 800 !important;
}
.online-booking .car-is-not-available .dates-and-car-title div:not(:first-child){
    font-weight: 500;
}
.online-booking .car-is-not-available .dates-and-car-title{
    line-height: 1.5em;
    color: var(--pix-text-gray);
}

a[data-id="whatsapp"] svg{
    margin-right: 3px;
}

.online-booking .custom-datepicker{
    top: 55px;
}
.online-booking .dates-and-title{
    flex: 1;
    border-radius: 8px;
    border: 1px solid white;
    background: url('/wp-content/themes/quattro/images/date.svg') 12px center no-repeat #EEF1F4;
    padding: 0 40px 0 42px;
    color: var(--pix-text-gray);
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 45px;
}
html[lang="ru"] .online-booking .dates-and-title{
    padding: 0 38px 0 40px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .dates-and-title{
    background: url('/wp-content/themes/quattro/images/date.svg') 96% center no-repeat #EEF1F4;
    padding: 0 44px;
    direction: rtl;
    order: 2;
}
.online-booking .dates-and-title:after {
    content: "";
    height: 100%;
    width: 38px;
    position: absolute;
    right: 0;
    vertical-align: top;
    -webkit-transition: color .33s, transform .33s;
    transition: color .33s, transform .33s;
    background: url(/wp-content/themes/quattro/images/arrow-down.svg) center no-repeat #EEF1F4;
    top: 0;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .dates-and-title:after {
    right: auto;
    left: 13px;
}
.online-booking .dates-wrap{
    display: flex;
    flex-wrap: nowrap;
}
.online-booking .dates{
    position: relative;
}
.online-booking .dates:not(.ranges){
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    position: relative;
    gap: 10px;
}
.online-booking .dates .dates-title{
    display: flex;
    position: relative;
    font-size: 14px;
    line-height: 1em;
    font-weight: 700;
    color: var(--pix-text-gray);
    margin-bottom: 5px;
    align-items: center;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .dates .dates-title{
    text-align: right;
    direction: rtl;
}
.online-booking .dates .slash{
    padding: 0 5px;
    display: flex;
    align-items: center;
}
.online-booking .dates input{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
}
.online-booking .dates .date-start,
.online-booking .dates .date-end{
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    cursor: pointer;
    height: 100%;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .dates .date-start,
html:is([lang^="ar"], [lang^="he"]) .online-booking .dates .date-end{
    justify-content: flex-end;
}
.online-booking .dates .dates-wrap span{
    margin-top: 3px;
    letter-spacing: -.2px;
}
html:not([lang="en"]) .online-booking .dates .dates-wrap span{
    letter-spacing: -.3px;
}
html[lang="ru"] .online-booking .dates .dates-wrap span{
    letter-spacing: -.45px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .dates span{
    direction: rtl;
}
.online-booking .errors:not(.notes) .error{
    margin-top: 15px;
    margin-bottom: 10px;
    font-family: var(--pix-main-font);
    font-size: 16px;
    line-height: 16px;
    color: red;
    font-weight: 500;
}
.online-booking .errors.notes .error{
    padding-left: 30px;
    background: url("/wp-content/plugins/online-booking/images/exclamation.svg") left top no-repeat;
    font-size: 14px;
    color: #818181;
    line-height: 22px;
    margin-top: 10px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .errors.notes .error{
    background: url("/wp-content/plugins/online-booking/images/exclamation.svg") right top no-repeat;
    padding-left: 0;
    padding-right: 30px;
}
.online-booking input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.online-booking .dates-and-title .calendar-dates{
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    height: 45px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #0F0F0F;
}
.online-booking .dates-and-title .calendar-dates span{
    margin: 0;
}
.online-booking .dates-and-title .calendar-dates span:first-child{
    padding-right: 4px;
}
.online-booking .dates-and-title .calendar-dates span:last-child{
    padding-left: 4px;
}
.online-booking .dates-and-title .calendar-dates i{
    font-family: monospace;
    padding: 0 3px;
}

.online-booking .alternative-dates-title{
    font-weight: 800;
    font-size: 22px;
    margin-top: 20px;
}
.online-booking .alternative-dates .error {
    color: #d35400;
    font-weight: 600;
    margin-bottom: .5rem;
}
.online-booking .dates-options {
    display: flex;
    flex-direction: column;
}
.online-booking .alternative-dates .date-option {
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    height: 45px;
    margin-top: 10px;
}
.online-booking .alternative-dates .date-option div:not(.checkbox){
    padding-top: 2px;
}
.online-booking .alternative-dates .date-option div:last-child{
    color: #818181;
    font-size: 13px;
    padding-left: 5px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .alternative-dates .date-option {
    direction: rtl;
}
.online-booking .alternative-dates .date-option.active {
    border: 1px solid var(--pix-orange);
    font-size: 14px;
}
.online-booking .alternative-dates .date-option .checkbox {
    margin-right: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    border: 1px solid #2D2D2D;
    position: relative;
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    border-radius: 50%;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .alternative-dates .date-option .checkbox {
    margin-left: 11px;
    margin-right: 0;
}
.online-booking .alternative-dates .date-option.active .checkbox {
    border: 1px solid var(--pix-orange);
}
.online-booking .alternative-dates .date-option .checkbox:after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--pix-orange);
    border-radius: 50%;
    opacity: 0;
}
.online-booking .alternative-dates .date-option.active .checkbox:after {
    opacity: 1;
}
.online-booking .alternative-dates .date-option label {
    cursor: pointer;
    margin: 0;
}
.online-booking .change-dates{
    background: var(--pix-main-color);
    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    min-width: 100px;
    max-width: 100px;
    height: 44px;
    line-height: normal;
    text-align: center;
    padding: 4px 25px;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}
.online-booking .ranges .change-dates{
    min-width: 100%;
    max-width: 100%;
    margin-top: 20px;
    transition: 0s ease;
}

.online-booking .time-picker{
    height: 100%;
    margin-left: 5px;
    white-space: nowrap;
    letter-spacing: -.2px;
}
html:not([lang="en"]) .online-booking .time-picker{
    letter-spacing: -.3px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking  .time-picker{
    margin-left: 0;
    margin-right: 8px;
}
.online-booking .time-selected {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border-radius: 4px;
}
.online-booking .time-label {
    margin-top: 3px;
}
.online-booking .date-wrap .arrow {
    display: none;
}
.online-booking .time-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 10;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
}
.online-booking .time-option {
    padding: 10px;
    cursor: pointer;
}
.online-booking .time-option:hover {
    background-color: #f0f0f0;
}
.online-booking .time-picker.open .time-dropdown {
    display: block;
}
.online-booking .time-picker.open .arrow {
    transform: rotate(180deg);
}
.crm-no-response{
    font-weight: 500;
    margin-top: 20px;
    line-height: 22px;
    display: none;
}

.online-booking .message-us{
    display: flex;
    border-radius: 15px;
    white-space: normal;
    background-color: #F5F5F5;
    flex-direction: column;
    flex: 1;
    padding: 25px 30px;
    align-items: center;
}
.online-booking .message-us-title{
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 800;
    text-align: center;
}
.online-booking .message-us-description{
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%; /* 21px */
    text-align: center;
    color: #818181;
}
.online-booking .message-us a[data-id="whatsapp"],
.online-booking .message-us-long-lease a[data-id="whatsapp"]{
    margin-top: 15px;
    width: 100%;
    max-width: 240px;
    height: 44px;
    color: white !important;
    font-size: 14px;
    font-weight: 800;
    border-radius: 8px;
    background: linear-gradient(180deg, #61D76A 0%, #40CA4B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    line-height: initial;
    order: 1;
}

.online-booking .message-us-long-lease{
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .message-us-long-lease{
    direction: rtl;
}
.online-booking .message-us-long-lease .message-us-title{
    text-align: left;
    font-size: 22px;
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .message-us-long-lease .message-us-title{
    text-align: right;
}
.online-booking .message-us-long-lease .message-us-description{
    text-align: left;
    font-size: 16px;
    padding-right: 15px;
    color: var(--pix-text-gray);
}
html:is([lang^="ar"], [lang^="he"]) .online-booking .message-us-long-lease .message-us-description{
    text-align: right;
    padding-right: 0;
    padding-left: 15px;
}

.online-booking .keep-this-car{
    margin-top: 60px;
}
.online-booking .keep-this-car-title{
    font-weight: 700;
    font-size: 28px;
    line-height: 1em;
    color: var(--pix-text-gray);
}
.online-booking .keep-this-car-info{
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    margin-top: 10px;
    color: var(--pix-text-gray);
}
.online-booking .next-available-periods{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
}
.online-booking .next-available-periods .info-and-dates{
    flex: 0 0 440px;
}
.online-booking .next-available-periods-title{
    margin-top: 30px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1em;
    color: var(--pix-text-gray);
    margin-bottom: 10px;
}

.similar-cars-block{
    margin-top: 60px;
}
.similar-cars-info{
    max-width: 668px;
}
html:is([lang^="ar"], [lang^="he"]) .similar-cars-info{
    margin-left: auto;
}
.similar-cars-info div:first-child{
    font-weight: 700;
    font-size: 28px;
    line-height: 1em;
    color: var(--pix-text-gray);
}
.similar-cars-info div:last-child{
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    margin-top: 10px;
    color: var(--pix-text-gray);
}
.similar-cars-title-wrap {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.similar-cars-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    padding-right: 30px;
    color: var(--pix-text-gray);
}
.similar-cars-title span:not(:first-child){
    color: var(--pix-orange);
}
.similar-cars-title-wrap a {
    color: var(--pix-orange) !important;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-right: 100px;
    white-space: nowrap;
}
.similar-cars-title-wrap a span{
    padding-top: 2px;
}
.similar-cars-title-wrap a svg {
    margin-left: 13px;
}
.similar-cars-block .cars-list{
    margin-top: 10px;
    display: grid;
    gap: 30px 40px;
    grid-template-columns: repeat(3, 1fr);
}
.similar-cars-block .car .image{
    width: 100%;
    height: 156px;
    overflow: hidden;
    border-radius: 8px;
}
.similar-cars-block .car .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.similar-cars-block .car .name{
    font-size: 18px;
    font-weight: 800;
    line-height: normal;
    margin-top: 15px;
    color: var(--pix-text-gray);
}
.similar-cars-block .car .pix-sale-box-price{
    color: var(--pix-text-gray);
    font-weight: 600;
    margin-top: 6px;
}
.similar-cars-block .car .price span:not(:last-child){
    color: var(--pix-orange);
}
.similar-cars-block .owl-nav {
    position: absolute;
    top: -44px;
    right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.similar-cars-block .owl-nav button{
    min-width: 28px;
    max-width: 28px;
    height: 28px;
}
.similar-cars-block .owl-nav button span{
    display: none;
}
.similar-cars-block .owl-nav button.owl-prev{
    margin-right: 10px;
}
.similar-cars-block .owl-nav button.owl-prev.disabled,
.similar-cars-block .owl-nav button.owl-next.disabled {
    opacity: .7;
    cursor: default;
}
.owl-carousel.cars-list .owl-nav button.owl-prev {
    background: url(/wp-content/themes/quattro/images/arrow-left-grey.svg) left center no-repeat;
}
.owl-carousel.cars-list .owl-nav button.owl-next {
    background: url(/wp-content/themes/quattro/images/arrow-right-grey.svg) left center no-repeat;
}
/* STEP 1 */

/* STEP 2 */
.online-booking .additional-options{
    margin-top: 50px;
}
.online-booking .additional-options-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--pix-text-gray);
}
.online-booking .option-card {
    display: flex;
    background-color: #E3F6CF;
    padding: 10px 30px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.option-card.disabled {
    background-color: rgba(238, 241, 244, 0.7);
}
.option-card.disabled {

}
.online-booking .icon {
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    margin-right: 5px;
    margin-left: -10px;
}
.online-booking .icon.no-deposit {
    background: url("/wp-content/plugins/online-booking/images/no-deposit.svg") center no-repeat;
}
.online-booking .icon.octane-shield {
    background: url("/wp-content/plugins/online-booking/images/octane-shield.svg") center no-repeat;
}
.online-booking .icon.octane-freedom {
    background: url("/wp-content/plugins/online-booking/images/octane-freedom.svg") center no-repeat;
}
.online-booking .icon.child-seat {
    background: url("/wp-content/plugins/online-booking/images/child-seat.svg") center no-repeat;
}
.online-booking .icon.additional-driver {
    background: url("/wp-content/plugins/online-booking/images/additional-driver.svg") center no-repeat;
}
.online-booking .option-content {
    flex-grow: 1;
}
.online-booking .option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1em;
    margin-top: 7px;
}
.online-booking .option-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--pix-text-gray);
}
.online-booking .option-price {
    font-weight: 700;
    margin-left: auto;
    margin-right: 20px;
    color: var(--pix-text-gray);
    white-space: nowrap;
}
.online-booking .option-text {
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
    line-height: 150%;
    color: var(--pix-text-gray);
}
.online-booking .option-text *{
    font-size: 14px;
    line-height: 150%;
}
.online-booking .option-text-detail {
    display: none;
}
.online-booking .option-card.disabled .option-text {
    opacity: 0.5;
}
.online-booking .option-subtitle {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 700;
    color: var(--pix-text-gray);
}
.online-booking .option-list {
    font-size: 14px;
    margin-top: 6px;
}
.online-booking .option-list > div {
    margin-bottom: 6px;
}
.online-booking .option-list > div strong {
    font-size: 14px;
    color: var(--pix-text-gray);
    display: block;
}
.online-booking .more-info-option {
    height: 16px;
    font-size: 13px;
    color: #4F5B44;
    line-height: 1em;
    text-decoration: none;
    margin-top: 8px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    cursor: pointer;
}
.online-booking .more-info-option span{
    border-bottom: 1px dashed #4F5B44;
    display: inline-block;
}
.online-booking .more-info-option i{
    background: url("/wp-content/plugins/online-booking/images/arrow-down.svg") right center no-repeat;
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    margin-left: 6px;
}
.online-booking .more-info-option.active i{
    transform: rotate(-180deg);
}
.online-booking .option-card.disabled .more-info-option i{
    background: url("/wp-content/plugins/online-booking/images/arrow-down-grey.svg") right center no-repeat;
}

/* Toggle Switch */
.online-booking .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    margin-bottom: 0;
}
.online-booking .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.online-booking .slider {
    position: absolute;
    cursor: pointer;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: 0.4s;
}
.online-booking .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}
.online-booking input:checked + .slider {
    background-color: #44A222;
}
.online-booking input:checked + .slider:before {
    transform: translateX(18px);
}

/* Driver buttons */
.online-booking .controls {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 7px;
    height: 20px;
}
.online-booking .controls button {
    width: 20px;
    height: 100%;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.online-booking .controls button svg{
    min-width: 40px;
    height: 40px;
    margin-top: 8px;
}
.online-booking .controls span {
    width: 24px;
    height: 100%;
    text-align: center;
    margin: 0 6px;
    line-height: 20px;
}
.option-card[data-code="additional-driver"] .more-info-option{
    margin-top: 14px;
}
/* STEP 2 */

/* STEP 3 */
.booking-form .section-details {
    margin-bottom: 20px;
}
.booking-form .section-title-wrap{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .section-title-wrap{
    direction: rtl;
}
.booking-form .section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.booking-form .section-address {
    padding-left: 26px;
    height: 24px;
    background: url("/wp-content/plugins/online-booking/images/map.svg") left center no-repeat;
    font-weight: 600;
    white-space: nowrap;
    word-break: break-all;
    padding-right: 10px;
}
.booking-form .dropdown-block {
    background: #EEF1F4;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .dropdown-block {
    direction: rtl;
}
.booking-form .dropdown-label {
    display: block;
    color: #818181;
    font-size: 12px;
    margin-bottom: 0;
}
.booking-form .dropdown-wrapper {
    position: relative;
    background: #f0f2f5;
    padding: 0;
    cursor: pointer;
    border: 1px solid transparent;
    outline: none;
    line-height: normal;
}
.booking-form .dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.booking-form .dropdown-title {
    font-weight: 500;
    font-size: 14px;
}
.booking-form .dropdown-price {
    margin-left: auto;
    margin-right: 5px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .dropdown-selected .dropdown-price {
    margin-left: 30px;
    margin-right: auto;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .dropdown-list .dropdown-price {
    margin-left: 6px;
    margin-right: auto;
}
.booking-form .dropdown-price span:first-child{
    font-weight: bold;
    font-size: 14px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .dropdown-price span:first-child{
    padding-left: 5px;
}
.booking-form .dropdown-price span:first-child span{
    padding-left: 5px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .dropdown-price span:first-child span{
    padding-left: 0;
    padding-right: 5px;
}
.booking-form .dropdown-selected .dropdown-price{
    margin-right: 20px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .dropdown-selected .dropdown-price{
    margin-right: 0;
    margin-left: 30px;
}
.dropdown-price-info {
    position: relative;
    display: inline-block;
}
.dropdown-price-info i{
    display: block;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    margin-left: 6px;
    margin-top: -4px;
    background: url("/wp-content/plugins/online-booking/images/info.svg") center no-repeat;
}
.dropdown-price-info-text {
    display: none;
    position: absolute;
    bottom: 120%;
    max-width: 280px;
    min-width: 250px;
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
    padding: 12px 22px 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    font-size: 14px;
    white-space: normal;
}
html:is([lang^="ar"], [lang^="he"]) .dropdown-price-info-text {
    text-align: right !important;
}
.dropdown-price-info-text .close-btn {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 24px;
    padding: 0 8px;
}
.booking-form .dropdown-arrow {
    background: url("/wp-content/plugins/online-booking/images/arrow-down-orange.svg") center no-repeat;
    min-width: 20px;
    max-width: 20px;
    height: 21px;
    margin-top: -22px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .dropdown-arrow {
    position: absolute;
    left: 0;
}
.booking-form .dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    z-index: 10;
    list-style: none;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.booking-form .dropdown-list li {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
/*.booking-form .dropdown-list li.active {*/
/*    background: #EEF1F4;*/
/*}*/
.booking-form .section-item{
    background: #EEF1F4;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}
.booking-form .section-item.time-block,
.booking-form .section-item.time-block *{
    cursor: pointer;
}
.booking-form .section-item.time-block:before{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    background: #EEF1F4;
    border-radius: 8px;
    height: 100%;
    z-index: 1;
}
.booking-form .section-item.time-block:after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -3px;
    background: rgb(255, 153, 0);
    border-radius: 8px;
    height: 100%;
}
.booking-form .section-item.time-block .arrow{
    background: url(images/arrow-down-orange.svg) center no-repeat;
    min-width: 20px;
    max-width: 20px;
    height: 21px;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -10px;
    z-index: 1;
    cursor: pointer;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .section-item.time-block .arrow{
    right: auto;
    left: 16px;
}
.booking-form .section-item.time-block .dropdown-list{
    margin-left: 0;
    width: 100%;
    top: 75%;
    flex-wrap: wrap;
}
.booking-form .section-item.time-block .time-dropdown li{
    padding: 3px 16px;
    min-width: 33%;
    max-width: 33%;
}
.booking-form .section-item label {
    display: block;
    position: relative;
    color: #818181;
    font-size: 12px;
    z-index: 1;
    line-height: 1.2em;
}
.booking-form .section-item input{
    display: block;
    border: 0;
    width: 100%;
    background-color: transparent;
    font-size: 14px;
    line-height: 16px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .section-item input{
    text-align: right;
}
.booking-form .section-item input[type="range"] {
    position: absolute;
    left: 6px;
    bottom: -3px;
    z-index: 1;
}
.booking-form .section-item .time {
    font-size: 14px;
    line-height: 16px;
    position: relative;
    z-index: 1;
}
.booking-form .section-item .time-slider {
    width: calc(100% - 12px);
    -webkit-appearance: none;
    appearance: none;
    --green-start: 33.333%; /* 8:00 */
    --green-end: 91.666%;   /* 22:00 */
    background: linear-gradient(
            to right,
            rgb(255, 153, 0) 0%,
            rgb(255, 153, 0) var(--green-start),
            #3CBA54 var(--green-start),
            #3CBA54 var(--green-end),
            rgb(255, 153, 0) var(--green-end),
            rgb(255, 153, 0) 100%
    );
    height: 3px;
    border-radius: 8px;
    outline: none;
}
.booking-form .section-item .time-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--pix-orange);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
}
.booking-form .section-item .time-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--pix-orange);
    border-radius: 50%;
    cursor: pointer;
}
.booking-form .section-item.time-block > span{
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 12px;
    line-height: 1em;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .section-item.time-block span:last-child{
    right: auto;
    left: 16px;
}
.booking-form .section-item.telegram_nickname-input-wrap:before{
    content: "@";
    position: absolute;
    left: 14px;
    top: 6px;
    color: #2D2D2D;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .section-item.telegram_nickname-input-wrap:before{
    left: auto;
    right: 14px;
}
.booking-form .section-item.telegram_nickname-input-wrap input{
    padding-left: 25px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .section-item.telegram_nickname-input-wrap input{
    padding-left: 0;
    padding-right: 25px;
}
.booking-form .section-summary {
    background: #F5F5F5;
    padding: 23px 30px;
    margin-top: 12px;
    border-radius: 15px;
}
.booking-form .section-summary-title{
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    padding-left: 0;
}
.booking-form .section-summary > div:not(.section-summary-title){
    padding-left: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    background-position: left top !important;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .section-summary > div:not(.section-summary-title){
    direction: rtl;
    background-position: right center !important;
    padding-left: 0;
    padding-right: 30px;
}
.booking-form .time-note,
.booking-form .return-time-note{
    padding-left: 30px;
    background: url("/wp-content/plugins/online-booking/images/exclamation.svg") left top no-repeat;
    font-size: 14px;
    color: #818181;
    line-height: 150%;
    margin-bottom: 18px;
}
.booking-form .time-note a,
.booking-form .return-time-note a{
    color: var(--pix-orange);
    text-decoration: none;
    border-bottom: 1px dashed var(--pix-orange);
    display: table;
    line-height: 1em;
}
.booking-form .time-note a .time,
.booking-form .return-time-note a .time{
    padding-left: 5px;
}
.booking-form .section-summary .location{
    background: url("/wp-content/plugins/online-booking/images/map.svg") no-repeat;
}
.booking-form .section-summary .date{
    background: url("/wp-content/plugins/online-booking/images/calendar.svg") no-repeat;
    display: flex;
}
.booking-form .section-summary .date span:nth-child(2){
    padding-left: 5px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .section-summary .date span:nth-child(2){
    padding-right: 5px;
}
.booking-form .section-summary .note{
    background: url("/wp-content/plugins/online-booking/images/coin.svg") no-repeat;
    font-weight: 800 !important;
}
.booking-form .return-details{
    margin-top: 40px;
}
.booking-form .driver-details{
    margin-top: 40px;
}
.booking-form .phone-input-wrap{
    min-height: 62px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .phone-input-wrap{
    justify-content: flex-end;
}
.booking-form .driver-details .iti__country{
    font-size: 14px;
}
.booking-form .driver-details .iti__country-list{
    width: 230px !important;
}
.booking-form .driver-details .iti__flag-container{
    border-bottom: 0 !important;
    margin-left: -9px;
}
.booking-form .driver-details .iti--allow-dropdown input{
    border: 0;
    margin-top: 3px !important;
    height: 28px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .driver-details .iti--allow-dropdown input{
    max-width: 105px;
    text-align: left;
}
.booking-form .driver-details .iti--allow-dropdown input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #818181 !important;
}
.booking-form .driver-details .iti--allow-dropdown input::-moz-placeholder { /* Firefox 19+ */
    color: #818181 !important;
}
.booking-form .driver-details .iti--allow-dropdown input:-ms-input-placeholder { /* IE 10+ */
    color: #818181 !important;
}
.booking-form .driver-details .iti--allow-dropdown input::-ms-input-placeholder { /* Microsoft Edge */
    color: #818181 !important;
}
.booking-form .driver-details .iti--allow-dropdown input::placeholder { /* Стандарт */
    color: #818181 !important;
}

.booking-form .iti--separate-dial-code .iti__selected-dial-code{
    margin-top:4px;
}
.booking-form .iti__arrow{
    margin-top:4px;
}
.booking-form .section-item-messengers{
    margin-bottom: 25px;
}
.booking-form .messengers-note{
    color: #818181;
    font-size: 14px;
    line-height: 150%;
}
.booking-form .messenger-select{
    margin-top: 10px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .messenger-select{
    justify-content: flex-end;
}
.booking-form .messenger{
    height: 44px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border: 1px solid #EBEBEB;
    padding: 4px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--pix-text-gray);
}
.booking-form .messenger .radio{
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #2D2D2D;
    position: relative;
    margin-right: 8px;
}
.booking-form .messenger.active {
    border: 1px solid var(--pix-orange);
}
.booking-form .messenger.active .radio{
    border: 1px solid var(--pix-orange);
}
.booking-form .messenger.active .radio:before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--pix-orange);
    left: 50%;
    top: 50%;
    margin-left: -4px;
    margin-top: -4px;
}
.booking-form .section-item-messengers input{
    display: none;
}
.booking-form .section-item.addition-info{
    padding: 12px 16px 0;
}
.booking-form textarea {
    width: 100%;
    min-height: 16px;
    height: 16px;
    max-height: 250px;
    min-width: 100%;
    max-width: 100%;
    background-color: transparent;
    border: 0;
    font-size: 14px;
    line-height: 16px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form textarea {
    text-align: right;
}
.booking-form .section-item.addition-info .error-message{
    margin: -5px 0 0;
    padding-bottom: 10px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .checkboxes {
    direction: rtl;
}
.booking-form .checkboxes label {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin: 12px 0 0 0;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.4em;
    pointer-events: none;
}
.booking-form .checkboxes label a{
    color: var(--pix-orange);
    text-decoration: underline;
}
.booking-form .checkboxes label span{
    pointer-events: auto;
}
.booking-form .checkboxes input[type="checkbox"] {
    display: none;
}
.booking-form .checkboxes .checkmark {
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    background-color: transparent;
    border-radius: 3px;
    margin-right: 12px;
    border: 1px solid var(--pix-orange);
}
html:is([lang^="ar"], [lang^="he"]) .booking-form .checkboxes .checkmark {
    margin-left: 12px;
    margin-right: 0;
}
.booking-form .checkboxes label.active .checkmark{
    background-color: var(--pix-orange);
}
.booking-form .checkboxes label.active .checkmark {
    background: url("/wp-content/plugins/online-booking/images/check.svg") center no-repeat var(--pix-orange);
}
.booking-form .error-message{
    min-width: 100%;
    display: block;
    color:red; 
    font-size: 12px; 
    margin-top: 3px;
    font-weight: 600;
}
.booking-form .checkboxes-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.2em;
}

.payment-options-wrap{
    margin-top: 20px;
}
.payment-options-title{
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    color: var(--pix-text-gray);
}
.payment-options{
    margin-top: 16px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}
.payment-option{
    height: 44px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border: 1px solid #EBEBEB;
    padding: 4px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    color: var(--pix-text-gray);
}
html[lang="ru-RU"] .payment-option{
    font-size: 13px;
}
.payment-option .radio{
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #2D2D2D;
    position: relative;
    margin-right: 8px;
    color: var(--pix-text-gray);
}
html:is([lang^="ar"], [lang^="he"]) .payment-option.radio{
    margin-right: 0;
    margin-left: 8px;
}
.payment-option.active {
    border: 1px solid var(--pix-orange);
}
.payment-option.active .radio{
    border: 1px solid var(--pix-orange);
}
.payment-option.active .radio:before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--pix-orange);
    left: 50%;
    top: 50%;
    margin-left: -4px;
    margin-top: -4px;
}
.payment-options-wrap input{
    display: none;
}
/* STEP 3 */

/* STEP 4 */
.button-pay{
    margin-top: 30px;
    min-width: 200px;
    max-width: 200px;
    background: var(--pix-main-color);
    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    height: 44px;
    padding: 4px 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    transition: 0.3s ease;
}
/* STEP 4 */

/* BOOKING CONFIRMED */
.booking-confirmed {
    padding: 50px 0 70px;
    min-height: 80vh;
}
.booking-confirmed .container{
    display: flex;
    flex-wrap: nowrap;
}
.booking-confirmed-left {
    flex: 1;
}
html:is([lang^="ar"], [lang^="he"]) .booking-confirmed-left {
    direction: rtl;
}
.booking-confirmed-right {
    min-width: 350px;
    max-width: 350px;
    margin-left: 100px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-confirmed-right {
    direction: rtl;
}
.booking-confirmed-right .car-image{
    width: 100%;
    height: 225px;
    border-radius: 8px;
    overflow: hidden;
}
.booking-confirmed-right .car-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.booking-confirmed h1 {
    font-size: 36px;
    margin-bottom: 35px;
    color: var(--pix-text-gray);
}
.booking-confirmed .confirmation-box {
    background: #E3F6CF;
    border-radius: 15px;
    padding: 30px 40px;
    margin-bottom: 16px;
}
.booking-confirmed .confirmation-box-text{
    margin: 10px 0 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding-right: 70px;
    color: var(--pix-text-gray);
}
html:is([lang^="ar"], [lang^="he"]) .booking-confirmed .confirmation-box-text{
    padding-right: 0;
    padding-left: 70px;
}
.booking-confirmed .confirmation-box h2 {
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    margin-top: 0;
    color: var(--pix-text-gray);
}
.booking-confirmed .paid-option {
    font-weight: 800;
    margin: 15px 0 0;
    color: var(--pix-text-gray);
}
.booking-confirmed .paid-option strong{
    color: var(--pix-text-gray);
}
.booking-confirmed .paid-option a{
    color: #44A222;
    text-decoration: underline;
    font-weight: 500;
    padding-left: 10px;
}
.booking-confirmed .paid-option a:hover{
    text-decoration: none;
}
.booking-confirmed .checkboxes-note{
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.2em;
}
.booking-confirmed .pickup-return{
    border-radius: 15px;
    padding: 30px 40px;
    background-color: #EEF1F4;
}
.booking-confirmed .pickup-return h3{
    font-size: 16px;
    font-weight: 800;
    color: var(--pix-text-gray);
}
.booking-confirmed .pickup-return .return{
    margin-top: 30px;
}
.booking-confirmed .pickup-return .str{
    padding-left: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    background-position: left top !important;
}
html:is([lang^="ar"], [lang^="he"]) .booking-confirmed .pickup-return .str{
    background-position: right center !important;
    padding-left: 0;
    padding-right: 30px;
}
.booking-confirmed .pickup-return .address{
    background: url("/wp-content/plugins/online-booking/images/map.svg") no-repeat;
}
.booking-confirmed .pickup-return .date{
    background: url("/wp-content/plugins/online-booking/images/calendar.svg") no-repeat;
}
.booking-confirmed .client-details-wrap h3,
.booking-confirmed .requirements h3,
.booking-confirmed .vehicle-specs h3{
    font-size: 22px;
}
.booking-confirmed .client-details-wrap,
.booking-confirmed .requirements,
.booking-confirmed .vehicle-specs{
    margin-top: 40px;
    background-color: white;
}
.booking-confirmed .block-with-rows{
    margin-top: 15px;
    padding: 20px 16px;
    border-radius: 8px;
    border: 1px solid var(--pix-grey-border);
}
.booking-confirmed .block-with-rows .str {
    display: flex;
    line-height: initial;
    width: 100%;
    margin-top: 25px;
    white-space: normal;
}
.booking-confirmed .vehicle-specs .car-field:nth-child(n+8) {
    display: none;
}
.booking-confirmed .block-with-rows .str:first-child {
    margin-top: 0;
}
.booking-confirmed .block-with-rows .str span:first-child {
    color: #818181;
    font-weight: 500;
}
.booking-confirmed .block-with-rows .str .line {
    margin: 0 15px;
    height: 15px;
    min-width: 20px;
    flex: 1;
    border-bottom: 1px dashed var(--pix-grey-border);
}
.booking-confirmed .block-with-rows .str span:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--pix-text-gray);
    word-break: break-word;
}
html:is([lang^="ar"], [lang^="he"]) .booking-confirmed .block-with-rows .str span:last-child {
    text-align: left;
}
.booking-confirmed .more-info {
    margin-top: 12px;
    background: none;
    border: none;
    color: #818181;
    cursor: pointer;
    font-size: 14px;
    line-height: 150%;
    margin-left: auto;
    display: table;
}
.booking-confirmed .more-info span {
    border-bottom: 1px dashed #818181;
    padding-bottom: 1px;
}
.booking-confirmed .more-info svg {
    margin-left: 8px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-confirmed .more-info svg {
    margin: 0 8px 0 0;
}
.booking-confirmed .more-info.active svg {
    transform: rotate(-180deg);
}
.booking-confirmed .back-to-catalolgue{
    margin-top: 40px;
    display: flex;
    height: 44px;
    padding: 4px 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 8px;
    background: var(--pix-text-gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    color: white;
}
.booking-confirmed .rental-cost-title{
    margin-top: 40px;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
}
.booking-confirmed .rental-cost {
    margin-top: 15px;
    background: white;
    padding: 5px 15px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.booking-confirmed .rental-cost-title {
    font-weight: bold;
    margin-bottom: 10px;
}
.booking-confirmed .rental-line {
    display: flex;
    padding: 15px 0;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    align-self: stretch;
    border-bottom: 1px solid var(--pix-grey-border);
    font-weight: 600;
    color: var(--pix-text-gray);
}
.booking-confirmed .rental-line.taxes {
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: nowrap;
}
.booking-confirmed .options-line-title{
    margin-top: 13px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--pix-text-gray);
}
.booking-confirmed .rental-line .date-interval {
    color: #818181;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4em;
}
.booking-confirmed .rental-line > span:nth-last-child(2) {
    margin-left: auto;
}
html:is([lang^="ar"], [lang^="he"]) .booking-confirmed .rental-line > span:nth-last-child(2) {
    margin-left: 0;
    margin-right: auto;
}
.booking-confirmed .rental-line > span:last-child {
    text-align: right;
}
.booking-confirmed .total-price {
    margin: 18px 0 15px;
    line-height: 1.3em;
    display: flex;
    justify-content: space-between;
}
.booking-confirmed .total-price span:first-child {
    font-weight: 600;
    color: var(--pix-text-gray);
    font-size: 16px;
}
.booking-confirmed .total-price span:nth-child(2) {
    margin-left: auto;
    padding-right: 8px;
}
html:is([lang^="ar"], [lang^="he"]) .booking-confirmed .total-price span:nth-child(2) {
    margin-left: 0;
    margin-right: auto;
    padding-left: 8px;
    padding-right: 0;
}
.booking-confirmed .total-price span:not(:first-child) {
    font-size: 28px;
    font-weight: 800;
    text-align: right;
    color: #263141;
    direction: ltr;
}
.booking-confirmed .rental-line.small {
    padding: 15px 0 25px;
    border-bottom: 0;
    gap: 5px;
}
.booking-confirmed .rental-line-small{
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    font-weight: 500;
    line-height: 150%;
    font-size: 14px;
}
.booking-confirmed .rental-line-small .line {
    height: 15px;
}
.booking-confirmed .rental-line-small span{
    color: var(--pix-text-gray);
}
.booking-confirmed .rental-line-small span:first-child{
    color: #777;
}
.booking-confirmed .rental-line-small span:nth-last-child(2){
    margin-left: auto;
}
.booking-confirmed .options-wrap{
    border-bottom: 1px solid var(--pix-grey-border);
    padding-bottom: 10px;
}
.booking-confirmed .option-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 5px 0;
    font-size: 16px;
}
.booking-confirmed .option-line span:first-child {
    color: #818181;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4em;
    max-width: 50%;
}
.booking-confirmed .option-line .line {
    margin: 0 15px;
    height: 18px;
    flex: 1;
    border-bottom: 1px dashed var(--pix-grey-border);
}
.booking-confirmed .option-line span:nth-last-child(2) {
    font-weight: 500;
}
html:is([lang^="ar"], [lang^="he"]) .booking-confirmed .option-line span:nth-last-child(2) {
    padding-left: 5px;
}
.booking-confirmed .option-line span:last-child {
    color: var(--pix-text-gray);
    font-weight: 500;
    padding-left: 5px;
}
.booking-confirmed .status-paid{
    color: #818181;
    line-height: normal;
}
.booking-doesnot-exists{
    max-width: 1330px;
    margin: 0 auto;
}
/* BOOKING CONFIRMED */

/* BOOKING PAYMENT ERROR */
.payment-failed{
    width: 100%;
    display: flex;
    padding: 23px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
    border-radius: 8px;
    background: #DB5050;
}
.payment-failed > div:first-child{
    color: white;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    min-width: 100%;
}
.payment-failed > div:last-child{
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    min-width: 100%;
}
.online-booking-error .buttons{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.online-booking-error .choose-another-method {
    background: none;
    border: none;
    color: #818181;
    cursor: pointer;
    font-size: 14px;
    line-height: 150%;
    display: table;
    height: 44px;
    padding-top: 12px;
}
.online-booking-error .choose-another-method span{
    border-bottom: 1px dashed #818181;
    padding-bottom: 1px;
}
.online-booking-error .choose-another-method span:hover{
    border-bottom: 1px dashed white;
}
.online-booking-error .choose-another-method svg{
    margin-left: 8px;
}
.online-booking-error .choose-another-method.active svg{
    transform: rotate(-180deg);
}
.payment-another-options{
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.payment-another-option{
    height: 44px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border: 1px solid #EBEBEB;
    padding: 4px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    color: var(--pix-text-gray);
}
html[lang="ru-RU"] .payment-another-option{
    font-size: 13px;
}
.payment-another-option .radio{
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #2D2D2D;
    position: relative;
    margin-right: 8px;
    color: var(--pix-text-gray);
}
html:is([lang^="ar"], [lang^="he"]) .payment-another-option.radio{
    margin-right: 0;
    margin-left: 8px;
}
.payment-another-option.active {
    border: 1px solid var(--pix-orange);
}
.payment-another-option.active .radio{
    border: 1px solid var(--pix-orange);
}
.payment-another-option.active .radio:before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--pix-orange);
    left: 50%;
    top: 50%;
    margin-left: -4px;
    margin-top: -4px;
}
.payment-another-options-wrap input{
    display: none;
}
.online-booking-error .try-again{
    display: flex;
    height: 44px;
    padding: 4px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 215px;
    border-radius: 8px;
    background: var(--pix-text-gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    color: white;
    cursor: pointer;
}
.payment-another-options .please-contact-us{
    min-width: 100%;
    font-size: 15px;
    line-height: 1.2em;
}
.payment-another-options a[data-id="whatsapp"]{
    width: 100%;
    max-width: 240px;
    height: 44px;
    color: white !important;
    font-size: 14px;
    font-weight: 800;
    border-radius: 8px;
    background: linear-gradient(180deg, #61D76A 0%, #40CA4B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    line-height: initial;
    order: 1;
}
/* BOOKING PAYMENT ERROR */

/* ORDER VERIFY */
.order-verify-wrap{
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
}
.order-verify-wrap.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.order-verify{
    background: white;
    border-radius: 12px;
    padding: 50px;
    min-width: 500px;
    max-width: 500px;
    min-height: 500px;
    min-height: 500px;
    position: relative;
}
.order-verify .errors{
    margin-bottom: 20px;
}
.order-verify .errors .error{
    color: red;
    line-height: 1em;
}
.order-verify-head{
    margin-bottom: 15px;
    display: none;
    align-items: center;
    gap: 9px;
    background: #FFF;
    box-shadow: 0 6px 20px 0 rgba(45, 45, 45, 0.15);
    position: absolute;
    padding: 15px 30px;
    width: 100%;
    height: 50px;
    left: 0;
    top: 0;
}
.order-verify-head a.go-to-home{
    font-size: 14px;
    line-height: 1em;
    font-style: normal;
    font-weight: 600;
    color: var(--pix-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.order-verify-head a.go-to-home svg {
    margin-right: 15px;
}
.order-verify-title{
    font-weight: 800;
    font-size: 30px;
    line-height: 1.2em;
    padding-right: 30px;
    margin-bottom: 18px;
    color: var(--pix-text-gray);
}
.order-verify .section-item{
    background: #EEF1F4;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
    min-height: 63px;
}
.order-verify .phone-input-wrap{
    display: flex;
    align-items: center;
}
.order-verify .phone-input-wrap {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}
.order-verify .section-item label {
    display: block;
    position: relative;
    color: #818181;
    font-size: 12px;
    margin-bottom: 0;
    z-index: 1;
}
.order-verify .section-item input{
    display: block;
    border: 0;
    width: 100%;
    background-color: transparent;
    font-size: 14px;
    line-height: 16px;
}
html:is([lang^="ar"], [lang^="he"]) .order-verify .section-item input{
    text-align: right;
}
.order-verify .iti__flag-container{
    border-bottom: 0 !important;
}
.order-verify .iti__selected-flag{
    padding: 0 !important;
}
.order-verify .confirm{
    margin-top: 20px;
    width: 100%;
    background: var(--pix-main-color);
    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    height: 44px;
    padding: 4px 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    transition: 0.3s ease;
}
.order-verify .contact-our-manager{
    margin-top: 40px;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
}
.order-verify .contact-our-manager .please-contact-us{
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: var(--pix-text-gray);
    margin-right: 10px;
}
.order-verify .contact-our-manager a{
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    margin-left: auto;
    background: rgba(115, 224, 108, 1);
    border-radius: 100%;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-verify .section-item.addition-info .error-message{
    margin: -5px 0 0;
    padding-bottom: 10px;
}
.order-verify .error-message{
    min-width: 100%;
    display: block;
    color:red;
    font-size: 12px;
    margin-top: 3px;
    font-weight: 600;
}
/* ORDER VERIFY */

@media (min-width: 801px) and (max-width: 1024px) {
    .online-booking-content{
        min-width: 768px;
        max-width: 768px;
        padding: 50px 30px;
    }
    .online-booking-left{
        min-width: 400px;
        max-width: 400px;
        margin-right: 30px;
    }
    .online-booking-close{
        right: -7px;
        top: -50px;
    }
    .online-booking .option-line{
        font-size: 15px;
    }
    .online-booking .option-card{
        padding: 10px 15px 20px;
    }
    .payment-option{
        font-size: 13px;
    }
    .select-dates-wrap{
        padding: 30px;
    }
    .select-dates-wrap .dates{
        flex-wrap: wrap;
    }
    .select-dates-wrap .dates-and-title{
        min-width: 100%;
    }
    .select-dates-wrap .change-dates{
        min-width: 224px;
        max-width: 224px;
    }
    .select-dates-wrap .custom-datepicker{
        top: calc(50% + 10px);
    }
    .select-dates-wrap .custom-datepicker.to-end-date{
        left: 168px;
    }
    .similar-cars-block .cars-list{
        gap: 30px 30px;
    }
    .similar-cars-block .car .image{
        height: 150px;
    }

    .online-booking .next-available-periods{
        gap: 20px;
    }
    .online-booking .next-available-periods .info-and-dates{
        flex: 0 0 400px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .select-dates-wrap .custom-datepicker{
        width: 710px;
        max-width: 710px;
        position: absolute;
        left: 50%;
        transform: translateX(-60.8%);
    }
}
@media (max-width: 1360px) {
    /* BOOKING CONFIRMED */
    .booking-confirmed-right{
        margin-left: 40px;
    }
    /* BOOKING CONFIRMED */
}
@media (min-width: 1001px){
    .dropdown-price-info:hover .dropdown-price-info-text {
        display: block;
    }
    .dropdown-price-info-text {
        left: 50%;
        transform: translateX(-50%);
    }

    .booking-confirmed-right .back-to-catalolgue{
        display: none;
    }
}
@media (max-width: 1000px) {
    .dropdown-price-info-text.active {
        display: block;
    }
    .dropdown-price-info-text .close-btn {
        display: block;
    }
    .dropdown-price-info-text {
        left: 0;
        text-align: left;
        transform: translateX(-67%);
    }
    html:is([lang^="ar"], [lang^="he"]) .dropdown-price-info-text {
        padding: 12px 30px 12px 16px;
        transform: translateX(-35%);
    }

    /* BOOKING CONFIRMED */
    .booking-confirmed .container{
       flex-wrap: wrap;
    }
    .booking-confirmed-left{
        min-width: 100%;
        max-width: 100%;
    }
    .booking-confirmed-right{
        margin-left: 0;
    }
    .booking-confirmed h1{
        font-size: 28px;
        margin-bottom: 12px;
    }
    .booking-confirmed-right .car-iamge{
        display: none;
    }
    .booking-confirmed-left .car-image{
        margin-top: 40px;
        border-radius: 8px;
        height: 212px;
        width: 100%;
        overflow: hidden;
    }
    .booking-confirmed-left .car-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .booking-confirmed-left .back-to-catalolgue{
        display: none;
    }
    .booking-confirmed .rental-cost {
        border: 0;
        padding: 5px 0 15px;
    }
    .booking-confirmed-right{
        min-width: 100%;
        max-width: 100%;
    }
    /* BOOKING CONFIRMED */
}
@media (min-width: 801px) {
    .mobile-rental-cost{
        display: none;
    }
}
@media (max-width: 800px) {
    .online-booking{
        padding-top: 0;
        position: fixed;
        border-radius: 0;
    }
    .online-booking.active {
        padding: 0;
    }
    .online-booking-content{
        min-width: 100%;
        max-width: 100%;
        height: 100%;
        min-height: 100%;
        padding: 50px 30px 30px;
        border-radius: 0;
        margin: 0;
    }
    .online-booking-close {
        z-index: 2;
        right: 15px;
        top: 7px;
    }
    .online-booking-close path {
        stroke: #818181;
    }
    .online-booking-content-car{
        display: block;
        height: 100%;
        overflow-y: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-right: 15px;
        margin-right: -15px;
    }
    .online-booking-content-car.not-available{
        padding-top: 0;
        margin-top: -30px;
        height: calc(100% + 60px);
    }
    .online-booking .breadcrumbs{
        background: #FFF;
        box-shadow: 0 6px 20px 0 rgba(45, 45, 45, 0.15);
        position: absolute;
        padding: 15px 30px;
        width: 100%;
        height: 50px;
        left: 0;
        top: 0;
    }
    .online-booking-left{
        min-width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .online-booking .car-title{
        display: flex;
        flex-wrap: nowrap;
        font-size: 30px;
        margin-bottom: 30px;
    }
    .online-booking .not-available .car-title{
        padding-right: 35px;
        position: relative;
    }
    .online-booking .not-available .car-title .online-booking-close {
        right: -12px;
        top: -10px;
    }
    .online-booking .car-title span{
        padding-right: 30px;
    }
    .online-booking .car-image{
        min-width: 93px;
        max-width: 93px;
        height: 60px;
        margin: 0 0 0 auto;
    }
    .online-booking .rental-cost{
        margin-top: 45px;
    }

    .online-booking .selected-period-no-available{
        margin-top: 0;
    }
    .online-booking .car-is-not-available .dates-period span{
        padding-top: 2px;
    }
    .online-booking .car-is-not-available .dates-period .not-available-str{
        padding-left: 28px;
    }
    .online-booking .car-is-not-available{
        padding: 10px 15px;
        gap: 10px;
    }
    .online-booking .car-is-not-available .car-img{
        min-width: 104px;
        max-width: 104px;
        height: 68px;
    }

    .online-booking .keep-this-car{
        margin-top: 45px;
    }
    .online-booking .next-available-periods{
        display: block;
    }
    .online-booking .info-and-dates {
        margin-bottom: 40px;
    }

    .similar-cars-title-wrap a{
        white-space: nowrap;
        margin-right: 0;
    }

    .mobile-rental-cost{
        position: absolute;
        padding: 15px 30px;
        left: 0;
        bottom: 0;
        background-color: white;
        box-shadow: 0 -6px 20px 0 rgba(45, 45, 45, 0.15);
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }
    html:is([lang^="ar"], [lang^="he"]) .mobile-rental-cost{
        direction: rtl;
    }
    .mobile-rental-cost .continue-btn{
        margin-left: 40px;
        min-width: 200px;
    }
    html:is([lang^="ar"], [lang^="he"]) .mobile-rental-cost .continue-btn{
        margin-left: 0;
        margin-right: auto;
    }
    .mobile-rental-cost .price-and-details .total-price span:last-child{
        margin-right: 7px !important;
    }
    .mobile-rental-cost .price-and-details .total-price{
        justify-content: flex-start;
        margin: 0;
    }
    .mobile-rental-cost .price-and-details .total-price *{
        font-size: 18px !important;
        font-style: normal;
        -webkit-user-select: none; /* Safari, Chrome */
        -moz-user-select: none;    /* Firefox */
        -ms-user-select: none;     /* IE/Edge */
        user-select: none;         /* стандарт */
    }
    .mobile-rental-cost .total-price span:first-child{
        font-weight: 700;
    }
    .mobile-rental-cost .total-price span:nth-child(2){
        margin-left: 7px;
    }
    .mobile-rental-cost .total-price span:nth-child(2){
        padding-right: 0;
    }
    .mobile-rental-cost .price-and-details .price-details{
        font-size: 13px;
        line-height: normal;
        margin-top: 3px;
        font-weight: 500;
        text-decoration: underline;
    }

    .booking-not-available{
        overflow-y: auto;
        height: 100%;
        padding: 30px 20px 0 0;
        margin-right: -20px;
    }
    .select-dates-wrap .dates{
        flex-wrap: wrap;
    }
    .select-dates-wrap .dates-and-title{
        min-width: 100%;
    }
    .select-dates-wrap .date-wrap:nth-child(4){
        margin-top: 20px;
    }
    .select-dates-wrap .change-dates{
        min-width: 224px;
        max-width: 224px;
    }
    .select-dates-wrap .custom-datepicker{
        top: 75px;
    }
    .select-dates-wrap .custom-datepicker.to-end-date{
        top: 160px;
        left: 0;
    }
    .similar-cars-block .cars-list{
        grid-template-columns: repeat(2, 1fr);
    }
    .similar-cars-block .car .image{
        height: 180px;
    }
    .similar-cars-block .car .name{
        font-size: 18px;
    }

    .online-booking .easepick-wrapper{
        top: 30%;
        max-width: 110%;
        min-width: 260px;
    }

    .online-booking-content.error-content {
        min-width: 100%;
        max-width: 100%;
        padding-top: 75px;
    }
    .payment-failed{
        margin-top: 30px;
    }
    .online-booking-error .buttons{
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .choose-another-method-wrap{
        order: 1;
        width: 100%;
    }
    .payment-failed > div:first-child{
        font-size: 18px;
    }
    .online-booking-error .choose-another-method{
        margin: 5px auto;
    }
    .online-booking-error .try-again{
        min-width: 100%;
    }
    .payment-another-options{
        justify-content: center;
    }
    .payment-another-options .please-contact-us{
        text-align: center;
    }
}
@media (max-width: 768px) {
    .booking-confirmed .paid-option a{
        display: block;
        margin-top: 5px;
        padding-left: 0;
    }
}
@media (max-width: 650px) {
    .select-dates-wrap {
        flex-wrap: wrap;
    }
    .info-and-dates{
        min-width: 100%;
    }
    .booking-not-available .not-available-title{
        font-size: 28px;
    }
    .booking-not-available .car-title{
        font-size: 20px !important;
        margin-top: 15px;
    }
}
@media (max-width: 540px) {
    .select-dates-wrap{
        padding: 20px;
    }
    .select-other-dates{
        line-height: initial;
        margin-top: 15px;
    }
    .select-dates-wrap .date-wrap:nth-child(4){
        margin-top: 20px;
    }
    .select-dates-wrap .change-dates{
        min-width: 100%;
        max-width: 100%;
    }
    .similar-cars-block .cars-list{
        grid-template-columns: repeat(1, 1fr);
        margin-top: 18px;
    }
    .similar-cars-block .car .image{
        height: 180px;
    }
    .similar-cars-block .car .name{
        font-size: 16px;
    }
    .similar-cars-title{
        font-size: 22px;
        line-height: normal;
    }
    .similar-cars-title-wrap a{
        font-size: 16px;
        line-height: normal;
        text-align: right;
    }

    .online-booking .dates:not(.ranges){
        display: block;
    }

    .online-booking .message-us-long-lease{
        display: flex;
        border-radius: 15px;
        white-space: normal;
        background-color: #F5F5F5;
        flex-direction: column;
        flex: 1;
        padding: 25px 30px;
        align-items: center;
        margin-top: -30px;
    }
    .online-booking .message-us-long-lease .message-us-title{
        text-align: center;
        font-size: 16px;
    }
    .online-booking .message-us-long-lease .message-us-description{
        text-align: center;
        font-size: 14px;
    }

    /* ORDER VERIFY */
    .order-verify{
        min-width: 100%;
        max-width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 70px 30px 30px;
    }
    .order-verify-head{
        display: block;
        padding: 17px 30px;
    }
    .order-verify .online-booking-close{
        display: none;
    }
    /* ORDER VERIFY */
}
@media (max-width: 480px) {
    .online-booking .breadcrumbs{
        overflow-x: auto;
        padding: 15px 50px 15px 30px;
    }
    .online-booking .breadcrumbs svg{
        min-width: 16px;
    }
    .online-booking .breadcrumb-item{
        white-space: nowrap;
    }
    .online-booking-close {
        width: 51px;
        height: 50px;
        padding: 10px;
        right: 0;
        top: 0;
        background-color: white;
    }
    .online-booking-close g{
        opacity: 0.7;
    }
    .online-booking .car-title{
        font-size: 22px;
    }
    .online-booking .not-available .car-title{
        margin-bottom: 20px;
    }
    .online-booking-content-car{
        padding-top: 20px;
    }
    .online-booking .rental-dates{
        margin-bottom: 12px;
    }
    .online-booking .section .section-title{
        font-size: 18px;
    }
    .online-booking .info-table{
        gap: 14px;
    }
    .online-booking .info-table .car-field{
        font-size: 14px;
    }
    .online-booking .section{
        margin-bottom: 12px;
    }
    .online-booking .rental-cost{
        margin-top: 40px;
    }
    .rental-cost-title{
        font-size: 18px;
        margin-bottom: 7px;
    }
    .online-booking .rental-line{
        font-size: 14px;
    }
    .online-booking .total-price span:first-child{
        font-size: 14px;
    }
    .online-booking .total-price span:not(:first-child){
        font-size: 22px;
    }

    .online-booking .selected-period-no-available{
        margin-top: 18px;
        font-size: 12px;
    }
    .online-booking .selected-period-no-available svg {
        min-width: 16px;
        max-width: 16px;
        height: 16px;
    }
    .online-booking .selected-period-no-available-wrap a[data-id="whatsapp"]{
        margin-top: 30px;
        max-width: 100%;
    }

    .online-booking .car-is-not-available .car-img{
        min-width: 38px;
        max-width: 38px;
        height: 24px;
        border-radius: 5px;
    }
    .online-booking .car-is-not-available .dates-and-car-title{
        font-size: 12px;
    }
    .online-booking .car-is-not-available .dates-period{
        font-size: 12px;
        line-height: 1.2em;
        margin-bottom: 5px;
        padding-top: 0;
    }
    .online-booking .car-is-not-available .dates-period svg{
        min-width: 16px;
        height: 16px;
        margin-right: 0;
    }

    .online-booking .alternative-dates .date-option div:last-child{
        display: none;
    }

    .online-booking .keep-this-car-title{
        font-size: 21px;
    }
    .online-booking .keep-this-car-info{
        font-size: 12px;
    }
    .online-booking .next-available-periods-title{
        font-size: 18px;
    }
    .online-booking .next-available-periods .info-and-dates{
        flex: 1 0 100%;
        width: 100%;
    }

    .online-booking .errors.notes .error{
        font-size: 12px;
        margin-top: 5px;
        background-size: 16px 16px !important;
        background-position: left 3px;
        padding-left: 25px;
    }
    .online-booking .change-dates{
        min-width: 100%;
        max-width: 100%;
        margin-top: 15px;
    }
    .online-booking .dates .dates-wrap span{
        letter-spacing: 0 !important;
    }
    html:not([lang="en"]) .online-booking .dates-and-title .calendar-dates{
        letter-spacing: -.3px;
    }
    .online-booking .info-and-dates{
        margin-bottom: 40px;
    }

    .online-booking .alternative-dates-title{
        font-size: 18px;
    }
    .online-booking .dates .date-start, .online-booking .dates .date-end{
        font-size: 13px;
    }
    .online-booking .alternative-dates .date-option{
        font-size: 13px !important;
    }
    .online-booking .ranges .change-dates{
        margin-top: 10px;
    }
    .online-booking .alternative-dates .date-option >div{
        line-height: 14px;
    }

    .mobile-rental-cost .price-and-details .total-price {
        white-space: nowrap;
    }
    .mobile-rental-cost .continue-btn{
        margin-left: auto;
        max-width: 200px;
    }
    .online-booking .rental-cost-note{
        font-size: 12px;
        background-size: 16px 16px !important;
        background-position: left 3px;
        padding-left: 25px;
        margin-top: -5px;
    }

    .online-booking .message-us{
        margin-top: 30px;
        padding: 25px 20px;
    }

    .similar-cars-block{
        margin-top: 40px;
        margin-bottom: 50px;
        overflow: hidden;
        margin-right: -15px;
        padding-right: 15px;
    }
    .similar-cars-info div:first-child{
        font-size: 21px;
    }
    .similar-cars-info div:last-child{
        font-size: 12px;
    }
    .similar-cars-block .cars-list{
        width: 220px;
    }
    .similar-cars-title-wrap{
        align-items: flex-end;
        margin-top: 25px;
    }
    .similar-cars-title{
        font-size: 17px;
        padding-right: 15px;
    }
    .similar-cars-title span:last-child{
        display: block;
        letter-spacing: -.3px;
        padding-top: 2px;
    }
    .similar-cars-title-wrap a{
        font-size: 14px;
    }
    .similar-cars-title-wrap a svg {
        margin-left: 7px;
    }
    .similar-cars-block .cars-list.owl-carousel .owl-stage-outer{
        overflow: visible;
    }
    .similar-cars-block .owl-carousel.owl-drag .owl-item{
        min-width: 220px;
        max-width: 220px;
    }
    .similar-cars-block .car .image{
        height: 160px;
    }
    .similar-cars-block .car .pix-sale-box-price{
        font-size: 14px;
    }

    /* STEP 2 */
    .online-booking .additional-options-title {
        line-height: normal;
        font-size: 18px;
    }
    .online-booking .option-card{
        padding: 10px 15px 10px;
        position: relative;
    }
    .online-booking .option-header{
        margin-top: 0;
    }
    .online-booking .icon{
        min-width: 50px;
        max-width: 50px;
        height: 50px;
        margin-right: 8px;
        margin-left: -5px;
        background-size: contain !important;
    }
    .online-booking .option-card[data-code="no-deposit"] .icon{
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        margin-left: 0;
        margin-right: 13px;
    }
    .online-booking .option-title{
        font-size: 14px;
    }
    .online-booking .option-price{
        font-size: 14px;
        margin-right: 0;
    }
    .online-booking .switch{
        position: absolute;
        top: 35px;
        right: 14px;
        z-index: 1;
    }
    .online-booking .option-text,
    .online-booking .option-list{
        font-size: 12px;
    }
    .online-booking .option-text *,
    .online-booking .option-list *{
        font-size: 12px !important;
    }
    .online-booking .option-text:nth-child(2){
        padding-right: 50px;
    }
    .online-booking .option-card[data-code="child-seat"] .option-text:nth-child(1){
        padding-right: 50px;
    }
    .online-booking .more-info-option{
        font-size: 12px;
    }
    .online-booking .option-line{
        font-size: 14px;
    }
    .online-booking .rental-line.small{
        padding-top: 16px;
    }
    .booking-form .section-title{
        font-size: 18px;
    }
    .booking-form .section-address{
        font-size: 14px;
        font-weight: 500;
    }
    .booking-form .section-summary {
        padding: 15px 20px;
    }
    .booking-form .section-summary-title{
        font-size: 14px;
        line-height: 16px;
    }
    .booking-form .section-summary > div:not(.section-summary-title){
        line-height: 18px;
        min-height: 22px;
        margin-top: 13px;
    }
    .payment-options-title{
        font-size: 18px;
    }
    .payment-option{
        letter-spacing: -0.2px;
    }
    /* STEP 2 */

    /* STEP 3 */
    .booking-form .dropdown-price{
        margin-right: 6px;
    }
    .booking-form .section-item.telegram_nickname-input-wrap input{
        font-size: 13px;
        line-height: 19px;
    }
    /* STEP 3 */

    /* BOOKING CONFIRMED */
    .booking-confirmed{
        padding-bottom: 30px;
    }
    .booking-confirmed .confirmation-box h2{
        font-size: 14px;
    }
    .booking-confirmed .confirmation-box-text{
        padding-right: 0 !important;
        font-size: 14px;
    }
    .booking-confirmed .paid-full{
        font-size: 14px;
        margin-top: 12px;
    }
    .booking-confirmed .paid-full strong{
        display: block;
        font-size: 14px;
    }
    .booking-confirmed .paid-full a{
        font-size: 14px;
        padding-left: 0;
    }
    .booking-confirmed .confirmation-box{
        padding: 20px 25px;
    }
    .booking-confirmed .pickup-return{
        padding: 20px 25px;
    }
    .booking-confirmed .pickup-return h3{
        font-size: 14px;
    }
    .booking-confirmed .pickup-return .str{
        line-height: 23px;
        margin-top: 10px;
        min-height: 22px;
    }
    .booking-confirmed .pickup-return .return{
        margin-top: 20px;
    }
    .booking-confirmed .client-details-wrap h3,
    .booking-confirmed .requirements h3,
    .booking-confirmed .vehicle-specs h3{
        font-size: 18px;
    }
    .booking-confirmed .block-with-rows{
        margin-top: 12px;
    }
    .booking-confirmed .block-with-rows .str{
        font-size: 14px;
    }
    .booking-confirmed .block-with-rows .str .line{
        margin: 0 8px;
    }
    .booking-confirmed .rental-cost{
        border: 0;
        font-size: 14px;
        padding: 5px 0 15px;
        margin-top: -10px;
    }
    .booking-confirmed .rental-cost-title{
        font-size: 18px;
    }
    .booking-confirmed .options-line-title{
        font-size: 14px;
    }
    .booking-confirmed .option-line{
        font-size: 14px;
    }
    .booking-confirmed .total-price span:not(:first-child){
        font-size: 22px;
    }
    .booking-confirmed-right .back-to-catalolgue{
        margin-top: 20px;
    }
    /* BOOKING CONFIRMED */
}
@media (max-width: 410px) {
    .select-dates-wrap .dates-wrap{
        padding: 0 35px;
        background-position: 8px center;
    }
    .select-dates-wrap .dates-wrap:after{
        right: 0;
    }
}
@media (max-width: 390px) {
    .select-dates-wrap .dates .date-start,
    .select-dates-wrap .dates .date-end{
        letter-spacing: -0.3px;
    }
}
@media (max-width: 385px) {
    .online-booking-content{
        padding: 50px 20px 30px;
    }
}
@media (max-width: 370px) {
    .online-booking .easepick-wrapper{
        left: -5%;
    }
    .online-booking-content{
        padding: 50px 15px 30px;
    }
}
@media (max-width: 340px) {
    .dropdown-price-info-text {
        max-width: 250px;
    }
}
