@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

#ama_booking_container,
#ama_booking_container ::before,
#ama_booking_container ::after,
#ama_booking_container * {
    box-sizing: border-box
}

#ama_booking_container {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    transition: opacity .2s;
}

@media (min-width: 880px) {
    #ama_booking_container.loading {
        opacity: .5;
        pointer-events: none;
    }
}

@media (max-width: 880px) {
    #ama_booking_container.loading .booking-system > :not(.booking-system-footer),
    #ama_booking_container.loading .booking-system-footer > * {
        opacity: .5;
        pointer-events: none;
    }
}

.booking-system input::-webkit-outer-spin-button,
.booking-system input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.booking-system input[type=number] {
    -moz-appearance: textfield
}

.booking-system {
    --booking-gutter-x: 15px;

    --booking-primary-color: #2A435B;
    --booking-primary-rgb: 42, 67, 91;

    --booking-secondary-color: #9EE3C3;

    --booking-font-family: 'Inter', sans-serif;
    --booking-font-size: 16px;
    --booking-line-height: 24px;
    --booking-font-weight: 400;

    --booking-title-margin: 0 0 40px 0;
    --booking-title-font-size: 36px;
    --booking-title-line-height: 44px;
    --booking-title-font-family: inherit;
    --booking-title-font-weight: 700;

    --booking-btn-color: var(--booking-primary-color);
    --booking-btn-bgcolor: var(--booking-secondary-color);
    --booking-btn-border-color: var(--booking-btn-bgcolor);
    --booking-btn-border-width: 2px;
    --booking-btn-padding-y: calc(15px - var(--booking-btn-border-width));
    --booking-btn-padding-x: calc(24px - var(--booking-btn-border-width));
    --booking-btn-border-radius: 25px;
    --booking-btn-min-height: 50px;
    --booking-btn-font-size: 16px;
    --booking-btn-line-height: 20px;
    --booking-btn-font-weight: 700;

    --booking-calendar-text-color: var(--booking-primary-color);
    --booking-calendar-default-color: #E9ECEE;
    --booking-calendar-active-color: var(--booking-secondary-color);

    --booking-nav-color: rgba(var(--booking-primary-rgb), 1);
    --booking-nav-disabled-color: rgba(var(--booking-primary-rgb), .3);
    --booking-nav-active-color: rgba(255, 255, 255, 1);
    --booking-nav-bgcolor: rgba(var(--booking-primary-rgb), .1);
    --booking-nav-disabled-bgcolor: rgba(var(--booking-primary-rgb), .1);
    --booking-nav-active-bgcolor: rgba(var(--booking-primary-rgb), 1);
    --booking-nav-border-radius: 4px;
    --booking-nav-text-transform: uppercase;
    --booking-nav-font-weight: 700;
    --booking-nav-min-height: 40px;

    font-family: var(--booking-font-family);
    font-size: var(--booking-font-size);
    font-weight: var(--booking-font-weight);
    line-height: var(--booking-line-height);
    color: var(--booking-primary-color);
}

.booking-system * {
    outline: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0
}

.booking-system *[data-layout="cols-2"],
.booking-system *[data-layout="cols-3"],
.booking-system *[data-layout="cols-4"] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
}

.booking-system .is-sticky {
    position: sticky;
    top: 20px
}

.booking-system *[data-layout="cols-3"] {
    grid-template-columns: repeat(3, 1fr)
}

.booking-system *[data-layout="cols-4"] {
    grid-template-columns: repeat(4, 1fr)
}

.booking-system .is-hidden {
    display: none
}

.booking-system .ama-editor > * + * {
    margin-top: 15px
}

.booking-pane h2 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700
}

.booking-pane h2 + * {
    margin-top: 20px
}

.booking-system .has-smaller-font-size {
    font-size: 13px;
    line-height: 16px
}

.booking-system .has-big-font-size {
    font-size: 22px;
    line-height: 26px
}

.booking-system a, .booking-system a {
    color: inherit;
    text-decoration: underline
}

.booking-system a:hover, .booking-system a:hover {
    color: var(--booking-secondary-color)
}

/* booking-btn */
.booking-btn {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: var(--booking-btn-font-size);
    line-height: var(--booking-btn-line-height);
    font-weight: var(--booking-btn-font-weight);
    color: var(--booking-btn-color);
    background-color: var(--booking-btn-bgcolor);
    padding: var(--booking-btn-padding-y) var(--booking-btn-padding-x);
    border-radius: var(--booking-btn-border-radius);
    min-height: var(--booking-btn-min-height);
    border: var(--booking-btn-border-width) solid;
    border-color: var(--booking-btn-border-color);
}

.booking-btn:disabled {
    opacity: .3
}

.booking-btn:not(:disabled) {
    cursor: pointer
}

.booking-btn.has-arrow-left::before,
.booking-btn.has-arrow-right::after {
    content: '';
    display: block;
    width: 16px;
    height: 12px;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    background-color: currentColor
}

.booking-btn.has-arrow-left::before {
    margin-right: 7px;
    mask-image: url(../images/arrow-left.svg);
    -webkit-mask-image: url(../images/arrow-left.svg)
}

.booking-btn.has-arrow-right::after {
    margin-left: 7px;
    mask-image: url(../images/arrow-right.svg);
    -webkit-mask-image: url(../images/arrow-right.svg)
}

.booking-pane:not(.active) {
    display: none
}

/* booking-system--title */
.booking-system--title {
    font-family: var(--booking-title-font-family);
    font-size: var(--booking-title-font-size);
    line-height: var(--booking-title-line-height);
    font-weight: var(--booking-title-font-weight);
    margin: var(--booking-title-margin);
    text-align: center
}

/* booking-nav */
.booking-nav {
    list-style: none;
    padding: 0;
    margin: -15px -15px 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.booking-nav > li {
    padding: 15px;
    flex: 1 0 0;
    max-width: 25%
}

.booking-nav .booking-nav__item {
    position: relative;
    height: 100%;
    padding: 5px 10px;
    border: none;
    color: var(--booking-nav-color);
    background-color: var(--booking-nav-bgcolor);
    cursor: default;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: var(--booking-nav-font-weight);
    border-radius: var(--booking-nav-border-radius);
    text-transform: var(--booking-nav-text-transform);
    min-height: var(--booking-nav-min-height);
    font-size: var(--booking-nav-font-size, inherit);
    line-height: var(--booking-nav-line-height, inherit);
}

.booking-nav .booking-nav__item:not([disabled]) {
    cursor: pointer;
}

@media (max-width: 880px) {
    .booking-system {
        --booking-nav-min-height: 20px;
        --booking-nav-font-size: 90%;
        --booking-nav-line-height: 1.2;
    }
}

.booking-nav .booking-nav__item:disabled {
    color: var(--booking-nav-disabled-color);
    background-color: var(--booking-nav-disabled-bgcolor);
    pointer-events: none
}

.booking-nav .booking-nav__item:not(:disabled).active {
    color: var(--booking-nav-active-color);
    background-color: var(--booking-nav-active-bgcolor);
}

/* booking-system-footer */
.booking-system-footer {
    margin: 25px -15px -15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.booking-system-footer > button {
    margin: 15px
}

@media (max-width: 880px) {
    .booking-system-footer {
        position: fixed;
        bottom: 0;
    }

    .booking-system-footer {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        margin: 0;
        background: white;
        z-index: 50000;
    }
}

/** Menus */

.booking-menus {
    --booking-menu-border-radius: 8px;
    --booking-menu-border-width: 1px;
    --booking-menu-border-color: rgba(var(--booking-primary-rgb), .1);
    --booking-menu-bgcolor: #fff;
    --booking-padding-y: calc(15px - var(--booking-menu-border-width));
    --booking-padding-x: calc(15px - var(--booking-menu-border-width))
}

.booking-menus--columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 880px) {
    .booking-menus--columns {
        grid-template-columns: 1fr;
    }
}

.booking-menu-item {
    position: relative;
}

.booking-menu-item__select {
    background-color: var(--booking-menu-bgcolor);
    border: var(--booking-menu-border-width) solid;
    border-color: var(--booking-menu-border-color);
    padding: var(--booking-padding-y) var(--booking-padding-x);
    border-radius: var(--booking-menu-border-radius);
    transition: box-shadow .3s linear, padding .3s linear;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    cursor: pointer;
    height: 100%;
}

.booking-menus--columns .booking-menu-item + .booking-menu-item {
    margin-top: 0;
}

.booking-menu-item__toggle {
    display: none;
}

@media (min-width: 880px) {
    .booking-menu-item__toggle {
        display: none;
    }
}

@media (max-width: 880px) {
    .booking-menu-item__toggle {
        display: block;
        position: absolute;
        top: var(--booking-padding-y);
        right: var(--booking-padding-x);
        height: 30px;
        width: 30px;
        padding: 0;
        line-height: 30px;
        border: none;
        background: var(--booking-nav-active-bgcolor);
        color: var(--booking-nav-active-color);
        border-radius: 30px;
        font-family: monospace;
        font-style: italic;
        font-weight: 700;
        font-size: 20px;
    }
}

.booking-menu-item__thumb {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: relative
}

.booking-menu-item__thumb:empty {
    background-color: #efefef;
    border-radius: 50%
}

.booking-menu-item__thumb > img {
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%
}

@media (min-width: 880px) {
    .item__content--desc {
        display: block !important;
    }
}

@media (max-width: 880px) {
    .item__content--desc {
        display: none;
    }
}

.booking-menu-item__content > * + * {
    margin-top: 12px
}

.item__content--subtitle {
    display: block;
    font-size: 22px;
    color: var(--booking-primary-color);
    font-weight: 700;
}

.item__content--subtitle:not(:last-child) {
    margin-bottom: 10px;
}

.booking-menu-item__content > .item__content--title {
    position: relative;
    padding-left: 42px;
    min-height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: #000;
}


.booking-menu-item__content > .item__content--title sup {
    display: inline-block;
    margin-left: 4px;
    font-size: 60%;
}

.booking-menu-item__content > .item__content--title::before,
.booking-menu-item__content > .item__content--title::after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 50%
}

.booking-menu-item__content > .item__content--title::before {
    width: 30px;
    height: 30px;
    border: 1px solid var(--booking-primary-color);
    background-color: #fff;
    top: 0;
    left: 0
}

.booking-menu-item__content > .item__content--title::after {
    opacity: 0;
    width: 14px;
    height: 14px;
    top: 8px;
    left: 8px;
    background-color: var(--booking-primary-color);
    transition: opacity .3s linear
}

.booking-menu-item.active .booking-menu-item__select .booking-menu-item__content > .item__content--title::before {
    border-color: var(--booking-secondary-color);
    background-color: var(--booking-secondary-color)
}

.booking-menu-item.active .booking-menu-item__select .booking-menu-item__content > .item__content--title::after {
    opacity: 1
}

.booking-menu-item__content > .item__content--desc {
    color: #707070
}

.booking-menu-item:hover,
.booking-menu-item.active .booking-menu-item__select {
    --booking-menu-border-color: rgba(var(--booking-primary-rgb), 1)
}

.booking-menu-item.active .booking-menu-item__select {
    /*--booking-menu-border-width: 3px*/
    box-shadow: inset 0 0 0 2px var(--booking-primary-color);
}

.booking-menu-item + .booking-menu-item {
    margin-top: 20px
}

/* booking-room-item */
.booking-room-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 30px;
    padding-top: 20px;
    height: 500px;
    padding-right: 8px;
}

.booking-room-item .simplebar-scrollbar:before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
    background: var(--booking-primary-color);
}

.booking-room-item .simplebar-content {
    overflow-x: hidden;
}

.booking-room-item .simplebar-horizontal {
    display: none !important;
}

.booking-room-item .simplebar-track.simplebar-vertical {
    width: 5px;
    background: rgba(0, 0, 0, .2);
}

.booking-room-item--no-image {
    grid-template-columns: 1fr;
}

.booking-room-item + .booking-room-item {
    margin-top: 20px
}

.booking-room-item > .booking-room-title {
    grid-column: auto/span 2;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700
}

.booking-room-item > .booking-room-img {
    width: 170px;
    height: 170px;
    overflow: hidden;
    position: relative
}

.booking-room-item > .booking-room-img:empty {
    background-color: #efefef;
    border-radius: 50%
}

.booking-room-item > .booking-room-img > img {
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%
}

.booking-room-time > .room-time {
    position: relative
}

.booking-room-time > .room-unavailable {
    opacity: .5;
}

.booking-room-time > .room-time > input[type="checkbox"],
.booking-room-time > .room-time > input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.booking-room-time > .room-time > label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 20px;
    line-height: 20px;
}

.booking-room-time > .room-time > input:not(:disabled) + label {
    cursor: pointer
}

.booking-room-time > .room-time > input:disabled + label {
    pointer-events: none;
    color: rgba(var(--booking-primary-rgb), .3)
}

.booking-room-time > .room-time + .room-time {
    margin-top: 3px;
    padding-top: 3px;
    border-top: 1px solid #E9ECEE
}

.booking-room-time > .room-time label > span {
    display: block;
    position: relative
}

.booking-room-time > .room-time label > span:not(:last-child) {
    margin-right: 20px
}

.booking-room-time > .room-time label > span.room-time {
    padding-left: 30px;
    width: 140px
}

.booking-room-time > .room-time label > span.room-time::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    mask-image: url(../images/time.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-image: url(../images/time.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    background-color: currentColor;
    position: absolute;
    top: 0;
    left: 0
}

.booking-room-time > .room-time label > span.room-price {
    font-weight: 700
}

.booking-room-time > .room-time label > span.room-select {
    flex: 1 0 0;
    text-align: right;
    text-transform: uppercase
}

.booking-room-time > .room-time input:not(:disabled) + label > span.room-select {
    padding-right: 30px
}

.booking-room-time > .room-time input + label > span.room-select::before,
.booking-room-time > .room-time input + label > span.room-select::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%
}

.booking-room-time > .room-time input:not(:disabled) + label > span.room-select::before {
    width: 20px;
    height: 20px;
    border: 1px solid currentColor;
    background-color: #fff
}

.booking-room-time > .room-time input:not(:disabled) + label > span.room-select::after {
    width: 10px;
    height: 10px;
    top: 5px;
    right: 5px;
    background-color: var(--booking-primary-color);
    opacity: 0;
    transition: opacity .3s linear
}

.booking-room-time > .room-time input:not(:disabled) + label:hover > span.room-select::after {
    opacity: .5
}

.booking-room-time > .room-time input:checked + label > span.room-select::before {
    background-color: var(--booking-secondary-color);
    border-color: var(--booking-secondary-color)
}

.booking-room-time > .room-time input:checked + label > span.room-select::after {
    opacity: 1
}

/* booking-calendar */
.booking-system .ui-datepicker {
    border: 1px solid rgba(var(--booking-primary-rgb), .1);
    background-color: #fff;
    border-radius: 8px;
    padding: calc(10px - 1px);
    color: var(--booking-calendar-text-color);
    text-align: center
}

.booking-system .ui-datepicker-calendar {
    width: 100%;
    border-collapse: collapse;
    color: var(--booking-calendar-text-color)
}

.booking-system .ui-datepicker-calendar a {
    text-decoration: none
}

.booking-system .ui-datepicker-calendar,
.booking-system .ui-datepicker-calendar thead,
.booking-system .ui-datepicker-calendar tbody,
.booking-system .ui-datepicker-calendar tfoot,
.booking-system .ui-datepicker-calendar th,
.booking-system .ui-datepicker-calendar td {
    display: block
}

.booking-system .ui-datepicker-calendar tr {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px
}

.booking-system .ui-datepicker-calendar thead + tbody,
.booking-system .ui-datepicker-calendar tr + tr {
    margin-top: 10px
}

.booking-system .ui-datepicker-calendar th,
.booking-system .ui-datepicker-calendar td {
    padding: 0;
    font-weight: 700
}

.booking-system .ui-datepicker-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 46px;
    padding: 8px;
    border-radius: 4px;
    background-color: var(--booking-calendar-default-color);
    margin-bottom: 10px
}

.booking-system .ui-datepicker-header > .ui-datepicker-prev {
    order: 0
}

.booking-system .ui-datepicker-header > .ui-datepicker-title {
    order: 1
}

.booking-system .ui-datepicker-header > .ui-datepicker-next {
    order: 2
}

.booking-system .ui-datepicker-header > .ui-datepicker-prev,
.booking-system .ui-datepicker-header > .ui-datepicker-next {
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: var(--booking-calendar-text-color);
    border-radius: 50%;
    overflow: hidden;
    text-indent: -5000px;
    position: relative;
    cursor: pointer
}

.booking-system .ui-datepicker-header > .ui-datepicker-prev.ui-state-disabled,
.booking-system .ui-datepicker-header > .ui-datepicker-next.ui-state-disabled {
    opacity: .3;
    pointer-events: none
}

.booking-system .ui-datepicker-header > .ui-datepicker-prev::before,
.booking-system .ui-datepicker-header > .ui-datepicker-next::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: currentColor;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.booking-system .ui-datepicker-header > .ui-datepicker-prev::before {
    mask-image: url(../images/arrow-left.svg);
    -webkit-mask-image: url(../images/arrow-left.svg)
}

.booking-system .ui-datepicker-header > .ui-datepicker-next::before {
    mask-image: url(../images/arrow-right.svg);
    -webkit-mask-image: url(../images/arrow-right.svg)
}

.booking-system .ui-datepicker-header > .ui-datepicker-title {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700
}

.booking-system .ui-datepicker-calendar thead th > span,
.booking-system .ui-datepicker-calendar .ui-state-default {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid;
    color: var(--booking-calendar-text-color);
    border-color: var(--booking-calendar-default-color);
    border-radius: 4px;
    width: 100%;
    height: 40px
}

.booking-system .ui-datepicker-calendar a.ui-state-default:hover,
.booking-system .ui-datepicker-calendar .ui-state-active {
    border-color: var(--booking-calendar-active-color)
}

.booking-system .ui-datepicker-calendar .ui-state-active {
    background-color: var(--booking-calendar-active-color)
}

.booking-system .ui-datepicker-calendar thead th > span {
    background-color: var(--booking-calendar-default-color)
}

.booking-system .ui-datepicker-calendar .ui-state-disabled > * {
    opacity: .3;
    pointer-events: none
}

/* booking-services */
.booking-service {
    padding: calc(10px - 1px);
    border: 1px solid;
    border-color: rgba(var(--booking-primary-rgb), .1);
    background-color: #fff;
    border-radius: 8px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 10px;
    text-align: center;
    width: 100%;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto
}

.booking-service__img {
    margin: 0 auto;
    max-width: 260px;
    height: 160px;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px
}

.booking-service__img:empty {
    background-color: #efefef
}

.booking-service__img > img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
    transform: translate(-50%, -50%)
}

.booking-system .product-list-item-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700
}

.booking-system .product-list-item-title + .product-list-item-price {
    margin-top: 10px
}

.booking-system .product-list-item-price {
    font-size: 14px;
    line-height: 24px
}

.booking-system .product-list-item-price > strong {
    font-size: 18px;
    line-height: 24px
}

.booking-system .quantity {
    width: 90px;
    height: 30px;
    border: 1px solid;
    border-color: rgba(var(--booking-primary-rgb), .1);
    position: relative;
    border-radius: 100px;
    overflow: hidden;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.booking-system .quantity .minus,
.booking-system .quantity .plus {
    font-weight: 400;
    display: block;
    width: 20px;
    height: 20px;
    top: 50%;
    border-color: rgba(var(--booking-primary-rgb), .1);
    background-color: #fff;
    background-position: center;
    background-size: 12px auto;
    background-repeat: no-repeat;
    border-radius: 100px;
    text-align: center;
    padding: 0;
    font-size: 16px;
    line-height: 10px;
    color: var(--booking-primary-color);
    transform: translateY(-50%);
    position: absolute;
    cursor: pointer;
    overflow: hidden;
    text-indent: -5000px
}

.booking-system .quantity .minus {
    background-image: url(../images/minus.svg)
}

.booking-system .quantity .plus {
    background-image: url(../images/plus.svg)
}

.booking-system .quantity .minus {
    left: 4px
}

.booking-system .quantity .plus {
    right: 4px
}

.booking-system .quantity .qty {
    display: block;
    text-align: center;
    width: 100%;
    border: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700
}

/* booking-form */
.booking-totals {
    padding: calc(10px - 1px);
    border: 1px solid;
    border-color: rgba(var(--booking-primary-rgb), .1);
    background-color: #fff;
    border-radius: 8px;
}

/* booking table */
.booking-system .text-left {
    text-align: left
}

.booking-system .text-center {
    text-align: center
}

.booking-system .text-right {
    text-align: right
}

.booking-system .booking-table {
    width: 100%;
    border-collapse: collapse
}

.booking-system .booking-table th,
.booking-system .booking-table td {
    padding: 10px;
    vertical-align: baseline;
    border: none
}

.booking-system .booking-table thead th {
    background-color: rgba(var(--booking-primary-rgb), .1)
}

.booking-system .booking-table thead tr > th:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.booking-system .booking-table thead tr > th:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.booking-system .booking-table tbody tr > * {
    padding-top: 10px;
    padding-bottom: 10px
}

.booking-system .booking-table tbody tr + tr > *,
.booking-system .booking-table tfoot td {
    border-top: 1px solid #E9ECEE
}

.booking-system .booking-form .booking-table tfoot td {
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px
}

@media (max-width: 1199px) {
    .booking-room-item > .booking-room-img {
        width: 100px;
        height: 100px
    }

    .booking-nav {
        margin: -5px -5px 15px
    }

    .booking-nav > li {
        padding: 5px
    }
}

@media (max-width: 992px) {
    .booking-system *[data-layout="cols-2"] {
        grid-template-columns: 1fr
    }

    .booking-system *[data-layout="cols-4"] {
        grid-template-columns: repeat(3, 1fr)
    }

    .booking-menus {
        --booking-padding-y: calc(20px - var(--booking-menu-border-width));
        --booking-padding-x: calc(20px - var(--booking-menu-border-width));
    }
}

@media (max-width: 767px) {
    .booking-system *[data-layout="cols-4"] {
        grid-template-columns: repeat(2, 1fr)
    }

    .booking-nav > li {
        min-width: 50%;
        max-width: 50%
    }
}

@media (max-width: 567px) {
    .booking-system *[data-layout="cols-3"],
    .booking-system *[data-layout="cols-4"] {
        grid-template-columns: 1fr
    }

    .booking-system .booking-services[data-layout="cols-4"] {
        grid-template-columns: repeat(2, 1fr)
    }

    .booking-room-item {
        align-items: center;
        gap: 20px
    }

    .booking-room-item > .booking-room-img {
        width: 50px;
        height: 50px;
        order: -1
    }

    .booking-room-item > .booking-room-title {
        grid-column: auto/span 1
    }

    .booking-room-item > .booking-room-time {
        grid-column: auto/span 2
    }
}

@media (max-width: 420px) {
    .booking-system .booking-services[data-layout="cols-4"] {
        grid-template-columns: 1fr
    }

    .booking-nav > li {
        min-width: 100%;
        max-width: 100%
    }
}

.ama-row {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * var(--booking-gutter-x))
}

.ama-row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding: var(--booking-gutter-x)
}

.ama-row-narrow {
    margin: -10px calc(-1 * var(--booking-gutter-x))
}

.ama-row-narrow > * {
    padding: 10px var(--booking-gutter-x)
}

.ama-col {
    flex: 1 0 0
}

.ama-row-cols-auto > * {
    flex: 0 0 auto;
    width: auto
}

.ama-row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%
}

.ama-row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%
}

.ama-row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.33334%
}

.ama-row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%
}

.ama-row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%
}

.ama-row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.66668%
}

.ama-col-auto {
    flex: 0 0 auto;
    width: auto
}

.ama-col-1 {
    flex: 0 0 auto;
    width: 8.33334%
}

.ama-col-2 {
    flex: 0 0 auto;
    width: 16.66668%
}

.ama-col-3 {
    flex: 0 0 auto;
    width: 25%
}

.ama-col-4 {
    flex: 0 0 auto;
    width: 33.33334%
}

.ama-col-5 {
    flex: 0 0 auto;
    width: 41.66668%
}

.ama-col-6 {
    flex: 0 0 auto;
    width: 50%
}

.ama-col-7 {
    flex: 0 0 auto;
    width: 58.33334%
}

.ama-col-8 {
    flex: 0 0 auto;
    width: 66.66668%
}

.ama-col-9 {
    flex: 0 0 auto;
    width: 75%
}

.ama-col-10 {
    flex: 0 0 auto;
    width: 83.33334%
}

.ama-col-11 {
    flex: 0 0 auto;
    width: 91.66668%
}

.ama-col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33334%
}

.offset-2 {
    margin-left: 16.66668%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33334%
}

.offset-5 {
    margin-left: 41.66668%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33334%
}

.offset-8 {
    margin-left: 66.66668%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33334%
}

.offset-11 {
    margin-left: 91.66668%
}

@media (min-width: 576px) {
    .ama-col-sm {
        flex: 1 0 0
    }

    .ama-row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .ama-row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .ama-row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .ama-row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.33334%
    }

    .ama-row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .ama-row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .ama-row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.66668%
    }

    .ama-col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .ama-col-sm-1 {
        flex: 0 0 auto;
        width: 8.33334%
    }

    .ama-col-sm-2 {
        flex: 0 0 auto;
        width: 16.66668%
    }

    .ama-col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .ama-col-sm-4 {
        flex: 0 0 auto;
        width: 33.33334%
    }

    .ama-col-sm-5 {
        flex: 0 0 auto;
        width: 41.66668%
    }

    .ama-col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .ama-col-sm-7 {
        flex: 0 0 auto;
        width: 58.33334%
    }

    .ama-col-sm-8 {
        flex: 0 0 auto;
        width: 66.66668%
    }

    .ama-col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .ama-col-sm-10 {
        flex: 0 0 auto;
        width: 83.33334%
    }

    .ama-col-sm-11 {
        flex: 0 0 auto;
        width: 91.66668%
    }

    .ama-col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33334%
    }

    .offset-sm-2 {
        margin-left: 16.66668%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33334%
    }

    .offset-sm-5 {
        margin-left: 41.66668%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33334%
    }

    .offset-sm-8 {
        margin-left: 66.66668%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33334%
    }

    .offset-sm-11 {
        margin-left: 91.66668%
    }
}

@media (min-width: 768px) {
    .ama-col-md {
        flex: 1 0 0
    }

    .ama-row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .ama-row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .ama-row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .ama-row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.33334%
    }

    .ama-row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .ama-row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .ama-row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.66668%
    }

    .ama-col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .ama-col-md-1 {
        flex: 0 0 auto;
        width: 8.33334%
    }

    .ama-col-md-2 {
        flex: 0 0 auto;
        width: 16.66668%
    }

    .ama-col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .ama-col-md-4 {
        flex: 0 0 auto;
        width: 33.33334%
    }

    .ama-col-md-5 {
        flex: 0 0 auto;
        width: 41.66668%
    }

    .ama-col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .ama-col-md-7 {
        flex: 0 0 auto;
        width: 58.33334%
    }

    .ama-col-md-8 {
        flex: 0 0 auto;
        width: 66.66668%
    }

    .ama-col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .ama-col-md-10 {
        flex: 0 0 auto;
        width: 83.33334%
    }

    .ama-col-md-11 {
        flex: 0 0 auto;
        width: 91.66668%
    }

    .ama-col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33334%
    }

    .offset-md-2 {
        margin-left: 16.66668%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33334%
    }

    .offset-md-5 {
        margin-left: 41.66668%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33334%
    }

    .offset-md-8 {
        margin-left: 66.66668%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33334%
    }

    .offset-md-11 {
        margin-left: 91.66668%
    }
}

@media (min-width: 992px) {
    .ama-col-lg {
        flex: 1 0 0
    }

    .ama-row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .ama-row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .ama-row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .ama-row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.33334%
    }

    .ama-row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .ama-row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .ama-row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.66668%
    }

    .ama-col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .ama-col-lg-1 {
        flex: 0 0 auto;
        width: 8.33334%
    }

    .ama-col-lg-2 {
        flex: 0 0 auto;
        width: 16.66668%
    }

    .ama-col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .ama-col-lg-4 {
        flex: 0 0 auto;
        width: 33.33334%
    }

    .ama-col-lg-5 {
        flex: 0 0 auto;
        width: 41.66668%
    }

    .ama-col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .ama-col-lg-7 {
        flex: 0 0 auto;
        width: 58.33334%
    }

    .ama-col-lg-8 {
        flex: 0 0 auto;
        width: 66.66668%
    }

    .ama-col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .ama-col-lg-10 {
        flex: 0 0 auto;
        width: 83.33334%
    }

    .ama-col-lg-11 {
        flex: 0 0 auto;
        width: 91.66668%
    }

    .ama-col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33334%
    }

    .offset-lg-2 {
        margin-left: 16.66668%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33334%
    }

    .offset-lg-5 {
        margin-left: 41.66668%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33334%
    }

    .offset-lg-8 {
        margin-left: 66.66668%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33334%
    }

    .offset-lg-11 {
        margin-left: 91.66668%
    }
}

@media (min-width: 1200px) {
    .ama-col-xl {
        flex: 1 0 0
    }

    .ama-row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .ama-row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .ama-row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .ama-row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.33334%
    }

    .ama-row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .ama-row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .ama-row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.66668%
    }

    .ama-col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .ama-col-xl-1 {
        flex: 0 0 auto;
        width: 8.33334%
    }

    .ama-col-xl-2 {
        flex: 0 0 auto;
        width: 16.66668%
    }

    .ama-col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .ama-col-xl-4 {
        flex: 0 0 auto;
        width: 33.33334%
    }

    .ama-col-xl-5 {
        flex: 0 0 auto;
        width: 41.66668%
    }

    .ama-col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .ama-col-xl-7 {
        flex: 0 0 auto;
        width: 58.33334%
    }

    .ama-col-xl-8 {
        flex: 0 0 auto;
        width: 66.66668%
    }

    .ama-col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .ama-col-xl-10 {
        flex: 0 0 auto;
        width: 83.33334%
    }

    .ama-col-xl-11 {
        flex: 0 0 auto;
        width: 91.66668%
    }

    .ama-col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33334%
    }

    .offset-xl-2 {
        margin-left: 16.66668%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33334%
    }

    .offset-xl-5 {
        margin-left: 41.66668%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33334%
    }

    .offset-xl-8 {
        margin-left: 66.66668%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33334%
    }

    .offset-xl-11 {
        margin-left: 91.66668%
    }
}

@media (min-width: 1400px) {
    .ama-col-xxl {
        flex: 1 0 0
    }

    .ama-row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .ama-row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .ama-row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .ama-row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.33334%
    }

    .ama-row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .ama-row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .ama-row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.66668%
    }

    .ama-col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .ama-col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33334%
    }

    .ama-col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66668%
    }

    .ama-col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .ama-col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33334%
    }

    .ama-col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66668%
    }

    .ama-col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .ama-col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33334%
    }

    .ama-col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66668%
    }

    .ama-col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .ama-col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33334%
    }

    .ama-col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66668%
    }

    .ama-col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.33334%
    }

    .offset-xxl-2 {
        margin-left: 16.66668%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.33334%
    }

    .offset-xxl-5 {
        margin-left: 41.66668%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.33334%
    }

    .offset-xxl-8 {
        margin-left: 66.66668%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.33334%
    }

    .offset-xxl-11 {
        margin-left: 91.66668%
    }
}


.booking-system .form-group > label:first-child {
    display: block;
    margin-bottom: 10px;
    line-height: 18px
}

.booking-system .form-control {
    display: block;
    width: 100%;
    border-radius: 4px;
    min-height: 40px;
    padding: 7px 12px;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid;
    border-color: var(--booking-primary-color);
    background-color: #fff;
    transition: border-color .3s linear;
    appearance: none
}

.booking-system select.form-control {
    padding: .375rem 2.25rem .375rem .75rem;
    -moz-padding-start: calc(.75rem - 3px);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px
}

.booking-system .form-control:hover,
.booking-system .form-control:focus {
    border-color: var(--booking-secondary-color)
}

.booking-system textarea.form-control {
    min-height: 100px;
    height: 100%;
    max-height: 100px;
}

.ama_payments {
    padding: calc(10px - 1px);
    border: 1px solid;
    border-color: rgba(var(--booking-primary-rgb), .1);
    background-color: #fff;
    border-radius: 8px;
}

.ama_payments ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.ama_payment_method + .ama_payment_method {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #E9ECEE
}

.booking-system .styled-checkbox,
.booking-system .styled-radio {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: -5px;
    cursor: pointer
}

.booking-system .styled-checkbox span,
.booking-system .styled-radio span {
    margin-bottom: 0 !important;
}

.booking-system .styled-checkbox > input[type="checkbox"] + *,
.booking-system .styled-radio > input[type="radio"] + * {
    padding: 5px;
    display: block;
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    line-height: 24px
}

.booking-system .styled-checkbox > input[type="checkbox"] + *::before,
.booking-system .styled-checkbox > input[type="checkbox"] + *::after,
.booking-system .styled-radio > input[type="radio"] + *::before,
.booking-system .styled-radio > input[type="radio"] + *::after {
    content: '';
    display: block;
    border-radius: 50%;
    position: absolute;
}

.booking-system .styled-checkbox > input[type="checkbox"] + *::before,
.booking-system .styled-radio > input[type="radio"] + *::before {
    width: 20px;
    height: 20px;
    border: 1px solid;
    border-color: var(--booking-primary-color);
    background-color: #fff;
    top: 7px;
    left: 7px;
}

.booking-system .styled-checkbox > input[type="checkbox"] + *::after,
.booking-system .styled-radio > input[type="radio"] + *::after {
    width: 10px;
    height: 10px;
    background-color: var(--booking-primary-color);
    opacity: 0;
    top: 12px;
    left: 12px
}

.booking-system .styled-checkbox > input[type="checkbox"]:checked + *::before,
.booking-system .styled-radio > input[type="radio"]:checked + *::before {
    border-color: var(--booking-secondary-color);
    background-color: var(--booking-secondary-color)
}

.booking-system .styled-checkbox > input[type="checkbox"]:checked + *::after,
.booking-system .styled-radio > input[type="radio"]:checked + *::after {
    opacity: 1
}

.booking-system .styled-checkbox img,
.booking-system .styled-radio img {
    display: block;
    width: 100%;
    max-width: 100px
}

.booking-system .styled-checkbox > input[type="checkbox"],
.booking-system .styled-radio > input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.booking-system .payment-suboptions {
    display: flex;
    flex-wrap: wrap;
    margin: -5px -10px
}

.booking-system .payment-suboptions > p {
    width: 100%
}

.booking-system .payment-suboptions > * {
    padding: 5px 10px
}

.booking-system .ama_payment_hide {
    padding-left: 35px;
    padding-top: 10px
}

.booking-system .ama_payment_hide > * + * {
    margin-top: 5px
}

.booking-menu-additional {
    padding: calc(10px - 1px);
    border: 1px solid;
    border-color: rgba(var(--booking-primary-rgb), .1);
    background-color: #fff;
    border-radius: 8px
}

.booking-menu-additional + .booking-menu-additional {
    margin-top: 10px
}

.booking-menu-additional > h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700
}

.booking-menu-additional > h4 + * {
    margin-top: 16px
}

.booking-menu-additional h3,
.booking-system .bordered-box h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700
}

.booking-menu-additional h3 + *,
.booking-system .bordered-box h4 + * {
    margin-top: 16px
}

.booking-menu-additional * + .booking-services {
    margin-top: 16px
}