.am-cb-page {
    --cb-green: #3E5338;
    --cb-green-soft: #D9DFD7;
    --cb-green-muted: #738C6A;
    --cb-text: #282828;
    --cb-muted: #686868;
    --cb-border: #C9CEC8;
    --cb-surface: #F2F2F2;
    color: var(--cb-text);
}

.am-cb-page .am-cb-page-shell {
    width: min(calc(100% - 40px), 1200px);
    max-width: 1200px;
    margin-inline: auto;
    padding-top: 28px;
    padding-bottom: 64px;
}

.am-cb-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--cb-muted);
    font-size: 14px;
    line-height: 1.35;
}

.am-cb-breadcrumbs a {
    transition: color .2s ease;
}

.am-cb-breadcrumbs a:hover {
    color: var(--cb-green);
}

.am-cb-page h1,
.am-cb-page h2,
.am-cb-page h3 {
    color: #3F4636;
}

.am-cb-page h1 {
    margin: 0 0 24px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.am-cb-intro > h2,
.am-cb-pricing > h2,
.am-cb-booking > h2,
.am-cb-expect > h2 {
    margin: 0 0 26px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.22;
    text-align: center;
}

.am-cb-intro {
    text-align: center;
}

.am-cb-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    width: 100%;
    max-width: none;
    margin: 0 0 58px;
}

.am-cb-steps__line {
    position: absolute;
    z-index: 0;
    top: 40px;
    left: 0;
    right: 0;
    height: 1px;
    background: #909090;
}

.am-cb-steps__line::before,
.am-cb-steps__line::after {
    position: absolute;
    top: -10px;
    color: #686868;
    font: 400 16px/20px Arial, sans-serif;
}

.am-cb-steps__line::before {
    content: '‹';
    left: -1px;
}

.am-cb-steps__line::after {
    content: '›';
    right: -1px;
}

.am-cb-step {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
}

.am-cb-step__dot {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--cb-green);
    box-shadow: 0 8px 24px rgba(62, 83, 56, .2);
    color: #fff;
}

.am-cb-step__dot svg,
.am-cb-step__dot img {
    width: 42px;
    height: 42px;
}

.am-cb-step__dot svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.am-cb-step__dot img {
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.am-cb-step__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--cb-surface);
}

.am-cb-step__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.am-cb-step h3 {
    margin: 16px 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.am-cb-step p {
    max-width: 340px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.4;
}

.am-cb-step.is-selectable {
    cursor: pointer;
}

.am-cb-step.is-selected .am-cb-step__dot {
    outline: 5px solid rgba(62, 83, 56, .15);
}

.am-cb-pricing {
    margin-bottom: 54px;
}

.am-cb-group-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    border: 1px solid var(--cb-border);
    border-bottom: 0;
}

.am-cb-group-tabs button {
    min-height: 60px;
    padding: 12px 20px;
    border: 0;
    border-right: 1px solid var(--cb-border);
    background: #fff;
    color: var(--cb-text);
    cursor: pointer;
    font: 600 17px/1.25 Montserrat, sans-serif;
    transition: background .2s ease, color .2s ease;
}

.am-cb-group-tabs button:last-child {
    border-right: 0;
}

.am-cb-group-tabs button.is-active,
.am-cb-group-tabs button[aria-selected="true"] {
    background: var(--cb-green);
    color: #fff;
}

.am-cb-group-panel[hidden] {
    display: none;
}

.am-cb-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid var(--cb-border);
    font-size: 14px;
}

.am-cb-table th,
.am-cb-table td {
    height: 46px;
    padding: 8px 12px;
    border-right: 1px solid var(--cb-border);
    border-bottom: 1px solid var(--cb-border);
    text-align: center;
    vertical-align: middle;
}

.am-cb-table thead th {
    height: 58px;
    background: #fff;
    color: var(--cb-text);
    font-size: 16px;
    font-weight: 600;
}

.am-cb-table thead th:first-child,
.am-cb-table tbody th {
    width: 28%;
    text-align: left;
}

.am-cb-table tbody th {
    font-weight: 400;
}

.am-cb-table tbody tr:nth-child(odd) {
    background: var(--cb-green-soft);
}

.am-cb-table .is-yes span {
    color: var(--cb-green);
    font-size: 20px;
}

.am-cb-table .is-no span {
    color: #A64343;
    font-size: 22px;
    font-weight: 400;
}

.am-cb-table__actions {
    background: #fff !important;
}

.am-cb-table__actions td {
    padding: 14px;
}

.am-cb-table__actions .am-button {
    width: 100%;
    min-height: 50px;
    padding-inline: 12px;
}

.am-cb-pricing-mobile {
    display: none;
}

.am-cb-booking {
    margin-bottom: 58px;
}

.am-cb-plan-picker {
    margin-bottom: 26px;
}

.am-cb-plan-picker fieldset {
    margin: 0 0 18px;
    padding: 0;
    border: 0;
}

.am-cb-plan-picker legend {
    margin-bottom: 11px;
    color: #3F4636;
    font-size: 18px;
    font-weight: 600;
}

.am-cb-plan-options {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
}

.am-cb-plan-options label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.am-cb-plan-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.am-cb-check {
    position: relative;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    border: 1px solid var(--cb-text);
    border-radius: 3px;
    background: #fff;
}

.am-cb-plan-options input:focus-visible + .am-cb-check {
    outline: 2px solid var(--cb-green-muted);
    outline-offset: 2px;
}

.am-cb-plan-options input:checked + .am-cb-check::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 7px;
    height: 12px;
    border: solid var(--cb-green);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.am-cb-schedule {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 30px;
    align-items: start;
    margin-bottom: 46px;
}

.am-cb-calendar {
    border: 1px solid #909090;
    border-radius: 4px;
    padding: 16px 22px 20px;
}

.am-cb-calendar__head {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    margin-bottom: 16px;
}

.am-cb-calendar__head button,
.am-cb-mobile-plan-nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--cb-text);
    cursor: pointer;
}

.am-cb-calendar__head button {
    width: 42px;
    height: 42px;
}

.am-cb-calendar__head button:disabled {
    opacity: .3;
    cursor: default;
}

.am-cb-calendar__head svg,
.am-cb-mobile-plan-nav svg,
.am-cb-mobile-group-toggle svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.am-cb-calendar__head strong {
    color: #3F4636;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
}

.am-cb-calendar__week,
.am-cb-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.am-cb-calendar__week {
    margin-bottom: 7px;
}

.am-cb-calendar__week span {
    padding: 6px 0;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.am-cb-day {
    position: relative;
    height: 48px;
    border: 0;
    border-radius: 3px;
    background: #fff;
    color: var(--cb-text);
    cursor: pointer;
    font: 400 14px/1 Montserrat, sans-serif;
}

.am-cb-day:hover:not(:disabled) {
    background: #EDF0EC;
}

.am-cb-day.is-other,
.am-cb-day.is-disabled {
    color: #C2C2C2;
    cursor: default;
}

.am-cb-day.is-full {
    color: transparent;
}

.am-cb-day.is-full::before,
.am-cb-day.is-full::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 2px;
    background: #A64343;
    transform: translate(-50%, -50%) rotate(45deg);
}

.am-cb-day.is-full::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.am-cb-day.is-selected {
    background: var(--cb-green);
    color: #fff;
}

.am-cb-day.is-selected::before,
.am-cb-day.is-selected::after {
    display: none;
}

.am-cb-times h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.am-cb-times > div + div {
    margin-top: 38px;
}

.am-cb-times__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.am-cb-time {
    min-height: 50px;
    padding: 9px;
    border: 0;
    border-radius: 2px;
    background: var(--cb-surface);
    color: var(--cb-text);
    cursor: pointer;
    font: 400 13px/1.2 Montserrat, sans-serif;
}

.am-cb-time:hover:not(:disabled) {
    background: var(--cb-green-soft);
}

.am-cb-time.is-selected {
    background: var(--cb-green);
    color: #fff;
}

.am-cb-time:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.am-cb-times__empty {
    margin: 16px 0 0;
    padding: 12px;
    background: var(--cb-green-soft);
    color: var(--cb-green);
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
}

.am-cb-contact-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, .88fr);
    gap: 28px;
    align-items: start;
}

.am-cb-contact h2 {
    margin: 0 0 18px;
    font-size: 26px;
    font-weight: 600;
    text-align: left;
}

.am-cb-field,
.am-cb-phone-field {
    position: relative;
    display: flex;
    width: 100%;
    height: 56px;
    align-items: center;
    margin-bottom: 12px;
    border: 1px solid var(--cb-text);
    background: #fff;
}

.am-cb-field > span {
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 50%;
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.am-cb-field > span svg {
    width: 19px;
    height: 19px;
}

.am-cb-field input,
.am-cb-phone-field > input {
    width: 100%;
    min-width: 0;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    outline: 0;
    color: var(--cb-text);
    font: 400 15px/1.2 Montserrat, sans-serif;
}

.am-cb-field input {
    padding: 14px 14px 14px 46px;
}

.am-cb-phone-field .am-country-select {
    z-index: 20;
    width: 58px;
    height: 54px;
    flex: 0 0 58px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.am-cb-phone-field .am-country-select__toggle {
    width: 58px;
    height: 54px;
    margin: 0;
    padding: 0 5px 0 7px;
    border: 0;
    background: transparent;
    gap: 4px;
}

.am-cb-phone-field .am-country-select__flag {
    font-size: 22px;
}

.am-cb-phone-field .am-country-select__menu {
    top: calc(100% + 4px);
    right: auto;
    bottom: auto;
    left: 0;
    width: min(260px, calc(100vw - 40px));
    max-height: 240px;
    margin: 0;
    padding: 4px;
    background: #fff;
}

.am-cb-phone-field .am-country-select__option {
    min-height: 38px;
    margin: 0;
    padding: 6px 8px;
    font-size: 13px;
}

.am-cb-phone-field > input {
    padding: 14px 10px 14px 4px;
    text-transform: uppercase;
}

.am-cb-contact small {
    display: block;
    margin-top: -3px;
    color: var(--cb-muted);
    font-size: 10px;
    line-height: 1.35;
}

.am-cb-confirm__box {
    min-height: 168px;
    padding: 20px;
    background: var(--cb-surface);
}

.am-cb-confirm {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    margin-top: 50px;
}

.am-cb-confirm__box h3 {
    margin: 0 0 14px;
    color: var(--cb-text);
    font-size: 18px;
    font-weight: 600;
}

.am-cb-confirm__box p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.35;
}

.am-cb-confirm__date {
    display: flex;
    align-items: center;
    gap: 7px;
}

.am-cb-confirm__date > span:first-child {
    display: inline-flex;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

.am-cb-confirm__date svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--cb-green);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.am-cb-book-button {
    width: 100%;
    min-height: 56px;
    margin-top: auto;
}

.am-cb-book-button:not(:disabled) {
    border-color: var(--cb-green);
    background: var(--cb-green);
    color: #fff;
}

.am-cb-book-button:disabled {
    border: 1px solid var(--cb-border);
    background: var(--cb-surface);
    color: var(--cb-muted);
    cursor: not-allowed;
    transform: none;
}

.am-cb-form-message {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--cb-green-muted);
    border-radius: 3px;
    background: #EEF2EC;
    color: var(--cb-green);
    font-size: 14px;
    line-height: 1.4;
}

.am-cb-form-message.is-success {
    background: var(--cb-green-soft);
}

.am-cb-form-message.is-error {
    background: #F4F5F2;
}

.am-cb-field:has(.is-invalid),
.am-cb-phone-field:has(.is-invalid),
.am-cb-contact .is-invalid {
    border-color: var(--cb-green-muted) !important;
    box-shadow: 0 0 0 2px rgba(115, 140, 106, .14);
}

.am-cb-expect {
    margin-bottom: 0;
}

.am-cb-expect__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.am-cb-expect__image {
    min-height: 520px;
    overflow: hidden;
    background: #DEDEDE;
}

.am-cb-expect__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.am-cb-expect__content {
    display: flex;
    min-width: 0;
    min-height: 520px;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.55;
}

.am-cb-expect__content p {
    margin: 0 0 20px;
}

.am-cb-expect__more[hidden] {
    display: none;
}

.am-cb-more-button {
    width: 100%;
    min-height: 56px;
    gap: 9px;
    margin-top: auto;
}

.am-cb-more-button svg {
    width: 16px;
    height: 10px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s ease;
}

.am-cb-more-button.is-open svg {
    transform: rotate(180deg);
}

@media (max-width: 1023px) {
    .am-cb-step__image {
        height: 230px;
    }

    .am-cb-table th,
    .am-cb-table td {
        padding-inline: 8px;
    }

    .am-cb-schedule {
        grid-template-columns: minmax(0, 1fr) 190px;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .am-cb-page .am-cb-page-shell {
        width: min(calc(100% - 20px), 1200px);
        padding-top: 18px;
        padding-bottom: 36px;
    }

    .am-cb-breadcrumbs {
        gap: 6px;
        margin-bottom: 16px;
        font-size: 10px;
    }

    .am-cb-page h1 {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .am-cb-intro > h2,
    .am-cb-pricing > h2,
    .am-cb-booking > h2,
    .am-cb-expect > h2 {
        margin-bottom: 19px;
        font-size: 21px;
        line-height: 1.18;
    }

    .am-cb-steps {
        display: flex;
        flex-direction: column;
        gap: 34px;
        width: 100%;
        margin: 0 0 40px;
        padding-left: 58px;
    }

    .am-cb-steps__line {
        top: 0;
        right: auto;
        bottom: 0;
        left: 22px;
        width: 1px;
        height: auto;
    }

    .am-cb-steps__line::before {
        top: -10px;
        left: -7px;
        transform: rotate(90deg);
    }

    .am-cb-steps__line::after {
        top: auto;
        right: auto;
        bottom: -10px;
        left: -7px;
        transform: rotate(90deg);
    }

    .am-cb-step__dot {
        position: absolute;
        top: calc((100vw - 78px) / 3 - 22px);
        left: -58px;
        width: 44px;
        height: 44px;
        margin: 0;
    }

    .am-cb-step__dot svg,
    .am-cb-step__dot img {
        width: 25px;
        height: 25px;
    }

    .am-cb-step__image {
        height: auto;
        aspect-ratio: 1.5 / 1;
    }

    .am-cb-step h3 {
        margin: 10px 0 6px;
        font-size: 15px;
    }

    .am-cb-step p {
        font-size: 12px;
        line-height: 1.35;
    }

    .am-cb-pricing {
        margin-bottom: 38px;
    }

    .am-cb-pricing-desktop {
        display: none;
    }

    .am-cb-pricing-mobile {
        display: block;
    }

    .am-cb-mobile-group-toggle {
        display: flex;
        width: 100%;
        min-height: 72px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 18px;
        border: 1px solid var(--cb-border);
        border-bottom: 0;
        border-radius: 4px 4px 0 0;
        background: var(--cb-green);
        color: #fff;
        cursor: pointer;
        font: 500 16px/1.25 Montserrat, sans-serif;
    }

    .am-cb-mobile-group-toggle svg {
        width: 20px;
        height: 20px;
        stroke-width: 2;
    }

    .am-cb-mobile-group[hidden],
    .am-cb-mobile-plan[hidden] {
        display: none;
    }

    .am-cb-mobile-group {
        position: relative;
        border: 1px solid var(--cb-border);
        border-top: 0;
        border-radius: 0 0 4px 4px;
        overflow: hidden;
    }

    .am-cb-mobile-plan {
        position: relative;
    }

    .am-cb-mobile-plan h3 {
        display: flex;
        width: 38%;
        min-height: 55px;
        align-items: center;
        justify-content: center;
        margin: 0 0 0 62%;
        padding: 10px 8px;
        border-left: 1px solid var(--cb-border);
        color: var(--cb-text);
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
    }

    .am-cb-mobile-plan__rows > div {
        display: grid;
        grid-template-columns: 62% 38%;
        min-height: 36px;
        border-top: 1px solid var(--cb-border);
        background: #fff;
    }

    .am-cb-mobile-plan__rows > div:nth-child(odd) {
        background: var(--cb-green-soft);
    }

    .am-cb-mobile-plan__rows span,
    .am-cb-mobile-plan__rows b {
        display: flex;
        align-items: center;
        padding: 7px 16px;
        font-size: 13px;
        line-height: 1.2;
    }

    .am-cb-mobile-plan__rows b {
        justify-content: center;
        border-left: 1px solid var(--cb-border);
        padding-inline: 8px;
        font-size: 19px;
        font-weight: 400;
    }

    .am-cb-mobile-plan__rows .is-yes {
        color: var(--cb-green);
    }

    .am-cb-mobile-plan__rows .is-no {
        color: #A64343;
    }

    .am-cb-mobile-plan__action {
        display: grid;
        grid-template-columns: 62% 38%;
        min-height: 84px;
        border-top: 1px solid var(--cb-border);
        background: #fff;
    }

    .am-cb-mobile-plan__action > div {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        border-left: 1px solid var(--cb-border);
    }

    .am-cb-mobile-plan__action .am-button {
        width: 100%;
        min-width: 0;
        min-height: 51px;
        padding: 10px 8px;
        font-size: 14px;
    }

    .am-cb-mobile-plan-nav {
        position: absolute;
        z-index: 3;
        top: 50%;
        left: 0;
        width: 100%;
        height: 0;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .am-cb-mobile-plan-nav button {
        position: absolute;
        top: -34px;
        width: 29px;
        height: 68px;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(40, 40, 40, .08);
        pointer-events: auto;
    }

    .am-cb-mobile-plan-nav button:first-child {
        left: calc(62% - 1px);
    }

    .am-cb-mobile-plan-nav button:last-child {
        right: -1px;
    }

    .am-cb-mobile-plan-nav svg {
        width: 20px;
        height: 20px;
        stroke: var(--cb-green);
        stroke-width: 1.8;
    }

    .am-cb-booking {
        margin-bottom: 40px;
    }

    .am-cb-plan-picker legend {
        font-size: 15px;
    }

    .am-cb-plan-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 12px;
    }

    .am-cb-plan-options label {
        min-width: 0;
        gap: 6px;
        font-size: 11px;
        line-height: 1.25;
    }

    .am-cb-check {
        width: 17px;
        height: 17px;
        flex-basis: 17px;
    }

    .am-cb-plan-options input:checked + .am-cb-check::after {
        top: 1px;
        left: 4px;
        width: 6px;
        height: 10px;
    }

    .am-cb-schedule {
        display: block;
        margin-bottom: 32px;
    }

    .am-cb-calendar {
        padding: 10px 8px 14px;
    }

    .am-cb-calendar__head {
        grid-template-columns: 36px 1fr 36px;
        margin-bottom: 8px;
    }

    .am-cb-calendar__head button {
        width: 36px;
        height: 36px;
    }

    .am-cb-calendar__head strong {
        font-size: 14px;
    }

    .am-cb-calendar__week span {
        font-size: 9px;
    }

    .am-cb-day {
        height: 36px;
        font-size: 10px;
    }

    .am-cb-day.is-full::before,
    .am-cb-day.is-full::after {
        width: 20px;
        height: 1.5px;
    }

    .am-cb-times {
        margin-top: 18px;
    }

    .am-cb-times > div + div {
        margin-top: 15px;
    }

    .am-cb-times h3 {
        margin-bottom: 8px;
        font-size: 13px;
        text-align: left;
    }

    .am-cb-times__grid {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .am-cb-time {
        min-height: 38px;
        font-size: 10px;
    }

    .am-cb-contact-row {
        display: block;
    }

    .am-cb-contact h2 {
        margin-bottom: 13px;
        font-size: 21px;
        text-align: center;
    }

    .am-cb-field,
    .am-cb-phone-field {
        height: 50px;
        margin-bottom: 9px;
    }

    .am-cb-field > span {
        left: 12px;
        width: 17px;
        height: 17px;
    }

    .am-cb-field > span svg {
        width: 17px;
        height: 17px;
    }

    .am-cb-field input {
        padding: 12px 10px 12px 38px;
        font-size: 12px;
    }

    .am-cb-phone-field .am-country-select,
    .am-cb-phone-field .am-country-select__toggle {
        width: 54px;
    }

    .am-cb-phone-field .am-country-select {
        height: 48px;
        flex-basis: 54px;
    }

    .am-cb-phone-field .am-country-select__toggle {
        height: 48px;
    }

    .am-cb-phone-field > input {
        padding-left: 3px;
        font-size: 12px;
    }

    .am-cb-contact small {
        font-size: 8px;
    }

    .am-cb-confirm {
        display: block;
        min-height: 0;
        margin-top: 14px;
    }

    .am-cb-confirm__box {
        min-height: 146px;
        padding: 15px;
    }

    .am-cb-confirm__box h3 {
        font-size: 14px;
    }

    .am-cb-confirm__box p {
        font-size: 11px;
    }

    .am-cb-book-button {
        min-height: 49px;
        margin-top: 12px;
        font-size: 11px;
    }

    .am-cb-expect > h2 {
        text-align: left;
    }

    .am-cb-expect__grid {
        display: block;
    }

    .am-cb-expect__image {
        min-height: 0;
        margin-bottom: 14px;
        aspect-ratio: .72 / 1;
    }

    .am-cb-expect__content {
        min-height: 0;
        font-size: 12px;
        line-height: 1.4;
    }

    .am-cb-expect__content p {
        margin-bottom: 12px;
    }

    .am-cb-more-button {
        min-height: 49px;
        margin-top: 12px;
        font-size: 11px;
    }
}
