@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/noto-sans-latin-wght-normal.woff2") format("woff2");
}

.pb-scope {
    --pb-ink: #1f3033;
    --pb-muted: #9eabad;
    --pb-copy: #334044;
    --pb-teal: #1f6f78;
    --pb-line: #edf0ee;
    --pb-field-line: #e2e7e6;
    --pb-soft: #f4f2ef;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 32px 16px;
    background: #fff;
    color: var(--pb-ink);
    font-family: "Noto Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body:has(.pb-scope) footer {
    display: none;
}

.pb-scope *,
.pb-scope *::before,
.pb-scope *::after {
    box-sizing: border-box;
}

.pb-scope h1,
.pb-scope h2,
.pb-scope h3,
.pb-scope p {
    margin: 0;
}

.pb-booking {
    display: grid;
    max-width: 1152px;
    margin: 0 auto;
    gap: 24px;
}

.pb-session-card,
.pb-calendar-card {
    border: 1px solid var(--pb-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(31, 48, 51, .05);
}

.pb-session-card {
    padding: 28px 22px;
}

.pb-session-card h1 {
    color: #1c6770;
    font-size: 30px;
    font-weight: 650;
    line-height: 1.12;
    letter-spacing: 0;
}

.pb-session-card > p {
    max-width: 32rem;
    margin-top: 16px;
    color: var(--pb-copy);
    font-size: 15px;
    line-height: 1.75;
}

.pb-selected-card {
    margin-top: 28px;
    border: 1px solid #e7e5e1;
    border-radius: 8px;
    background: var(--pb-soft);
    padding: 20px;
}

.pb-selected-card p,
.pb-time-modal > p {
    color: #56686c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.pb-selected-card div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.pb-selected-card svg {
    width: 20px;
    height: 20px;
    color: var(--pb-teal);
    flex: 0 0 auto;
}

.pb-selected-card strong {
    color: var(--pb-ink);
    font-size: 17px;
    font-weight: 700;
}

.pb-calendar-card {
    padding: 24px 18px 28px;
}

.pb-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.pb-calendar-header h2 {
    max-width: none;
    color: var(--pb-ink);
    font-size: 22px;
    font-weight: 650;
    line-height: 1.08;
    white-space: nowrap;
}

.pb-calendar-header > div {
    display: flex;
    align-items: center;
    gap: 24px;
}

.pb-calendar-months {
    display: grid;
    gap: 28px;
    margin-top: 10px;
}

.pb-month-panel {
    display: grid;
    gap: 14px;
    padding-top: 2px;
}

.pb-month-panel + .pb-month-panel {
    border-top: 1px solid var(--pb-line);
    padding-top: 24px;
}

.pb-month-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pb-month-panel-header h3 {
    color: var(--pb-ink);
    font-size: 22px;
    font-weight: 650;
    line-height: 1.08;
    white-space: nowrap;
}

.pb-timezone-picker {
    position: relative;
    margin: 16px 0 0;
}

.pb-timezone-trigger {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid #d9e7e6;
    border-radius: 14px;
    background: #fff !important;
    background-color: #fff !important;
    color: var(--pb-ink);
    box-shadow: 0 10px 28px rgba(31, 48, 51, .04);
    cursor: pointer;
    overflow: hidden;
}

.pb-timezone-trigger:hover,
.pb-timezone-trigger:focus-visible {
    border-color: #b7cbca !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(31, 111, 120, .10), 0 10px 28px rgba(31, 48, 51, .05);
    outline: none;
}

.pb-timezone-trigger span {
    display: grid;
    gap: 3px;
    text-align: left;
    min-width: 0;
    flex: 1 1 auto;
}

.pb-timezone-trigger strong {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #2e4a4f;
}

.pb-timezone-trigger small {
    color: #6b8288;
    font-size: 14px;
    line-height: 1.35;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pb-timezone-trigger svg {
    width: 20px;
    height: 20px;
    color: var(--pb-teal);
    flex: 0 0 auto;
    transition: transform .18s ease;
}

.pb-timezone-picker.is-open .pb-timezone-trigger svg {
    transform: rotate(180deg);
}

.pb-timezone-popover {
    position: absolute;
    z-index: 5;
    bottom: calc(100% + 12px);
    left: 0;
    width: min(440px, 100%);
    padding: 12px;
    border: 1px solid #dbe7e6;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(18, 37, 41, .15);
}

.pb-timezone-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #dbe4e3;
    border-radius: 12px;
    background: #f8fbfb;
}

.pb-timezone-search svg {
    width: 18px;
    height: 18px;
    color: #789198;
    flex: 0 0 auto;
}

.pb-timezone-search input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--pb-ink);
    font: inherit;
    font-size: 14px;
    outline: none;
}

.pb-timezone-list {
    max-height: 320px;
    margin-top: 12px;
    overflow: auto;
}

.pb-timezone-group {
    display: grid;
    gap: 8px;
    padding: 6px 2px 12px;
}

.pb-timezone-group + .pb-timezone-group {
    border-top: 1px solid #eef3f2;
    margin-top: 8px;
    padding-top: 14px;
}

.pb-timezone-group-title {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 10px 10px 8px;
    border: 0 !important;
    background: transparent !important;
    color: #1f6f78 !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}

.pb-timezone-group-title:hover,
.pb-timezone-group-title:focus-visible,
.pb-timezone-group-title:active {
    background: transparent !important;
    color: #1f6f78 !important;
    outline: none;
    box-shadow: none;
}

.pb-timezone-group-title::after {
    content: "›";
    color: #7b9296;
    font-size: 18px;
    line-height: 1;
    transform: rotate(90deg);
    transition: transform .18s ease;
}

.pb-timezone-group.is-collapsed .pb-timezone-group-title::after {
    transform: rotate(0deg);
}

.pb-timezone-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 54px;
    padding: 12px 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--pb-ink);
    text-align: left;
    cursor: pointer;
}

.pb-timezone-option:hover,
.pb-timezone-option:focus-visible {
    background: #eef6f6;
    outline: none;
}

.pb-timezone-option.is-selected {
    background: #e7f4f4;
}

.pb-timezone-option:hover .pb-timezone-option-main strong,
.pb-timezone-option:focus-visible .pb-timezone-option-main strong,
.pb-timezone-option:hover .pb-timezone-option-main small,
.pb-timezone-option:focus-visible .pb-timezone-option-main small,
.pb-timezone-option:hover .pb-timezone-option-time,
.pb-timezone-option:focus-visible .pb-timezone-option-time {
    color: #16363c;
}

.pb-timezone-option-main {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.pb-timezone-option-main strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.pb-timezone-option-main small {
    display: block;
    color: #6c8288;
    font-size: 12px;
    line-height: 1.3;
    word-break: break-word;
}

.pb-timezone-option-time {
    color: #35565c;
    font-size: 12px;
    font-weight: 700;
    flex: 0 0 auto;
    white-space: nowrap;
}

.pb-timezone-option.is-hidden {
    display: none;
}

.pb-timezone-group.is-collapsed .pb-timezone-option {
    display: none;
}

.pb-timezone-picker.is-open .pb-timezone-popover {
    display: block;
}

.pb-timezone-picker .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.pb-timezone-picker p {
    color: #6d8286;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 480px) {
    .pb-calendar-months {
        gap: 22px;
    }

    .pb-month-panel + .pb-month-panel {
        padding-top: 20px;
    }

    .pb-month-panel-header h3 {
        font-size: 18px;
    }

    .pb-timezone-popover {
        width: min(100%, 420px);
        right: 0;
        left: auto;
    }

    .pb-timezone-trigger {
        min-height: 60px;
        padding: 12px 14px;
    }

    .pb-timezone-trigger small {
        font-size: 13px;
    }

    .pb-timezone-trigger strong,
    .pb-timezone-trigger small {
        max-width: 100%;
    }

    .pb-timezone-option {
        min-height: 50px;
        padding: 10px 8px;
    }

    .pb-timezone-option-time {
        font-size: 11px;
    }
}

.pb-nav-button {
    display: grid !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: var(--pb-teal) !important;
    padding: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
}

.pb-nav-button:hover,
.pb-nav-button:focus-visible {
    background: #f4f7f7 !important;
    outline: 3px solid rgba(31, 111, 120, .15);
}

.pb-nav-button svg {
    width: 20px;
    height: 20px;
}

.pb-weekdays,
.pb-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    text-align: center;
}

.pb-weekdays {
    color: #31565c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.pb-days {
    row-gap: 15px;
    margin-top: 23px;
}

.pb-day,
.pb-day-muted {
    display: grid !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px;
    max-height: 40px;
    place-items: center !important;
    justify-self: center;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: var(--pb-ink);
    font: inherit !important;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    padding: 0 !important;
    box-shadow: none !important;
}

.pb-day {
    position: relative;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.pb-day > span {
    display: block;
    width: 100%;
    line-height: 1 !important;
    text-align: center;
    transform: translateY(.5px);
}

.pb-day:hover,
.pb-day:focus-visible {
    background: #e2e8e8 !important;
    color: var(--pb-ink) !important;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(31, 111, 120, .12) !important;
}

.pb-day-muted {
    color: var(--pb-muted);
}

.pb-day-available::after {
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #31565c;
    content: "";
    transform: translateX(-50%);
}

.pb-day.pb-day-selected,
.pb-day.pb-day-selected:hover,
.pb-day.pb-day-selected:focus,
.pb-day.pb-day-selected:focus-visible {
    background: var(--pb-teal) !important;
    color: #fff !important;
    font-weight: 800 !important;
    box-shadow: none !important;
    outline: 0;
}

.pb-day.pb-day-selected::after {
    display: none;
}

.pb-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 28px;
    color: var(--pb-copy);
    font-size: 12px;
}

.pb-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pb-legend i {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #31565c;
}

.pb-legend span:last-child i {
    background: var(--pb-teal);
}

.pb-modal-backdrop[hidden] {
    display: none !important;
}

.pb-payment-screen[hidden] {
    display: none !important;
}

.pb-booking[hidden] {
    display: none !important;
}

.pb-payment-screen {
    max-width: 920px;
    margin: 0 auto;
}

.pb-payment-back {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 auto 24px;
    border: 0 !important;
    background: transparent !important;
    color: var(--pb-teal) !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: opacity .18s ease;
}

.pb-payment-back:hover {
    opacity: .7;
}

.pb-payment-back svg {
    width: 18px;
    height: 18px;
}

.pb-payment-screen > h2 {
    color: #1b646d;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.pb-payment-layout {
    display: grid;
    gap: 20px;
    margin-top: 44px;
}

.pb-payment-card,
.pb-summary-card {
    border: 1px solid #e7e2db;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(31, 48, 51, .05);
}

.pb-payment-card {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.pb-payment-card h3,
.pb-summary-card h3 {
    margin: 0;
    color: #111;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.pb-payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pb-payment-methods button {
    display: grid !important;
    min-height: 72px !important;
    place-items: center !important;
    border: 1px solid #dfe5e3 !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #566062 !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    padding: 12px 10px !important;
    box-shadow: none !important;
}

.pb-payment-methods button svg {
    width: 22px;
    height: 22px;
    margin-bottom: 8px;
}

.pb-payment-methods button.is-selected {
    border-color: #45888e !important;
    background: #45888e !important;
    color: #fff !important;
}

.pb-payment-card label {
    display: grid;
    gap: 8px;
    color: #4a5c60;
    font-size: 12px;
    font-weight: 700;
}

.pb-payment-card input {
    width: 100%;
    height: 48px;
    border: 1px solid #dfe7e6 !important;
    border-radius: 6px;
    background: #fbfdfd;
    color: var(--pb-ink);
    font: inherit;
    font-size: 15px;
    outline: 0;
    padding: 0 14px;
    box-shadow: none !important;
}

.pb-payment-card input::placeholder {
    color: #b8c2c4;
}

.pb-payment-card input:focus {
    border-color: var(--pb-teal) !important;
    box-shadow: 0 0 0 4px rgba(31, 111, 120, .1) !important;
}

.pb-payment-card label > span {
    position: relative;
    display: flex;
    align-items: center;
}

.pb-payment-card label > span svg {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: #a8b2b4;
    pointer-events: none;
}

.pb-payment-card label > span input {
    padding-left: 42px;
}

.pb-payment-card label > span input:first-child {
    padding-left: 14px;
    padding-right: 42px;
}

.pb-payment-card label > span input:first-child + svg {
    right: 14px;
    left: auto;
}

.pb-payment-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.pb-summary-card {
    align-self: start;
    border-color: #d9e8e7;
    background: #f5fbfa;
    padding: 18px;
}

.pb-summary-card h3 {
    color: #155f67;
}

.pb-summary-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.pb-summary-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
}

.pb-summary-icon svg {
    width: 18px;
    height: 18px;
}

.pb-summary-icon.is-calendar {
    background: #aee6e9;
    color: #227982;
}

.pb-summary-icon.is-user {
    background: #f4e5c2;
    color: #8a744c;
}

.pb-summary-row p {
    color: #3d6266;
    font-size: 11px;
    font-weight: 800;
    margin: 0 0 2px;
}

.pb-summary-row strong {
    color: #203b3f;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
}

.pb-summary-row strong small {
    display: block;
    margin-top: 4px;
    color: #5e787c;
    font-size: 12px;
    font-weight: 600;
}

.pb-costs {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    border-top: 1px solid #dceceb;
    padding-top: 16px;
}

.pb-costs div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pb-costs dt,
.pb-costs dd {
    margin: 0;
    color: #405052;
    font-size: 13px;
}

.pb-costs .pb-total {
    margin-top: 6px;
}

.pb-costs .pb-total dt,
.pb-costs .pb-total dd {
    color: #1b646d;
    font-size: 18px;
    font-weight: 800;
}

.pb-pay-button {
    display: inline-flex !important;
    width: 100%;
    min-height: 52px !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    border: 0 !important;
    border-radius: 6px !important;
    background: #2c7175 !important;
    color: #fff !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 0 18px !important;
    box-shadow: 0 10px 18px rgba(44, 113, 117, .24) !important;
}

.pb-pay-button svg {
    width: 19px;
    height: 19px;
}

.pb-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px !important;
    color: #7c898b;
    font-size: 12px;
}

.pb-secure-note svg {
    width: 14px;
    height: 14px;
}

.pb-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, .58);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pb-time-modal,
.pb-details-modal {
    position: relative;
    width: min(100%, 480px);
    border-radius: 22px;
    background: #fff;
    padding: 32px 24px 28px;
    box-shadow: 0 28px 72px rgba(31, 48, 51, .18);
}

.pb-time-modal h2,
.pb-details-modal h2 {
    max-width: calc(100% - 52px);
    color: #075d66;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0;
}

.pb-time-modal > p,
.pb-details-modal > p {
    margin-top: 14px;
    color: var(--pb-copy);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: none;
}

.pb-modal-close {
    position: absolute;
    top: 28px;
    right: 28px;
    display: grid !important;
    width: 44px !important;
    height: 44px !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: #1f3033 !important;
    padding: 0 !important;
    cursor: pointer;
    box-shadow: none !important;
}

.pb-modal-close:hover,
.pb-modal-close:focus-visible {
    background: #f4f7f7 !important;
    outline: 3px solid rgba(31, 111, 120, .15);
}

.pb-modal-close svg {
    width: 25px;
    height: 25px;
}

.pb-modal-times {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
}

.pb-time-option {
    display: grid !important;
    place-items: center !important;
    gap: 2px !important;
    min-height: 78px !important;
    border: 1px solid #dbe3e3 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #111 !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.15 !important;
    padding: 10px 16px !important;
    text-align: center;
    box-shadow: none !important;
    white-space: normal !important;
}

.pb-time-option-main {
    display: block;
}

.pb-time-option-local {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #5e787c;
    line-height: 1.2;
    white-space: normal;
}

.pb-time-option.is-selected {
    border: 2px solid #075d66 !important;
    background: #eaf1f2 !important;
    color: #075d66 !important;
    font-weight: 700 !important;
}

.pb-time-option.is-disabled {
    opacity: .4 !important;
    background: #f4f7f7 !important;
    cursor: not-allowed !important;
    border-color: #dbe3e3 !important;
}

.pb-modal-continue {
    width: 100%;
    height: 64px !important;
    margin-top: 30px;
    border: 0 !important;
    border-radius: 10px !important;
    background: #2c7175 !important;
    color: #fff !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 0 20px !important;
    box-shadow: none !important;
}

.pb-modal-continue:disabled {
    background: #b8c9ca !important;
    cursor: not-allowed;
}

.pb-details-modal {
    width: min(100%, 430px);
    padding: 38px 28px 30px;
}

.pb-success-modal {
    position: relative;
    width: min(100%, 430px);
    border-radius: 22px;
    background: #fff;
    padding: 40px 28px 30px;
    box-shadow: 0 28px 72px rgba(31, 48, 51, .18);
    text-align: center;
}

.pb-success-icon {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    margin: 6px auto 20px;
    border-radius: 999px;
    background: #e8f7f4;
    color: var(--pb-teal);
}

.pb-success-icon svg {
    width: 34px;
    height: 34px;
}

.pb-success-modal h2 {
    margin: 0;
    color: #075d66;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}

.pb-success-modal > p {
    margin-top: 12px;
    color: #5f6d70;
    font-size: 17px;
    line-height: 1.5;
    text-transform: none;
}

.pb-success-summary {
    display: grid;
    gap: 14px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid #dce8e6;
    border-radius: 16px;
    background: #f5fbfa;
    text-align: left;
}

.pb-success-summary span {
    display: block;
    color: #6a7a7d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pb-success-summary strong {
    display: block;
    margin-top: 4px;
    color: #18353a;
    font-size: 15px;
    font-weight: 700;
}

.pb-success-action {
    width: 100%;
    height: 60px;
    margin-top: 24px;
    border: 0 !important;
    border-radius: 14px !important;
    background: #2c7175 !important;
    color: #fff !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    box-shadow: none !important;
}

.pb-success-action:hover,
.pb-success-action:focus-visible {
    outline: 3px solid rgba(31, 111, 120, .12);
}

.pb-details-modal h2 {
    max-width: none;
    text-align: center;
    font-weight: 700;
}

.pb-details-modal > p {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    color: #6c7779;
    font-size: 18px;
    line-height: 1.45;
    text-align: center;
}

.pb-details-fields {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.pb-details-fields label {
    display: grid;
    gap: 10px;
    color: #747c7d;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.pb-details-fields label > span {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    border: 1px solid #dedfdb;
    border-radius: 14px;
    background: #f4f2ef;
    padding: 0 18px;
    box-shadow: inset 0 0 0 1px rgba(31, 48, 51, .02);
}

.pb-details-fields svg {
    width: 22px;
    height: 22px;
    color: #a8aaa6;
    flex: 0 0 auto;
}

.pb-details-fields input {
    width: 100%;
    min-width: 0;
    height: 54px;
    border: 0 !important;
    background: transparent !important;
    color: var(--pb-ink);
    font: inherit;
    font-size: 17px;
    font-weight: 400;
    outline: 0;
    padding: 0 !important;
    box-shadow: none !important;
}

.pb-details-fields input::placeholder {
    color: #b9bbb7;
}

.pb-details-fields label > span:focus-within {
    border-color: var(--pb-teal);
    box-shadow: 0 0 0 4px rgba(31, 111, 120, .1);
}

.pb-details-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    margin-top: 46px;
}

.pb-back-button,
.pb-details-continue {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px !important;
    border-radius: 14px !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    padding: 0 12px !important;
    box-shadow: none !important;
}

.pb-back-button {
    border: 1px solid #e0e4e3 !important;
    background: #fff !important;
    color: #666f70 !important;
}

.pb-details-continue {
    border: 0 !important;
    background: #2c7175 !important;
    color: #fff !important;
}

.pb-back-button:hover,
.pb-back-button:focus-visible,
.pb-details-continue:hover,
.pb-details-continue:focus-visible {
    outline: 3px solid rgba(31, 111, 120, .12);
}

.pb-back-button svg,
.pb-details-continue svg {
    width: 20px;
    height: 20px;
}

.pb-details-fields label > span.has-error {
    border-color: #d93025 !important;
    background-color: #fff1f0 !important;
}

.pb-error-text {
    margin-top: 6px;
    color: #d93025;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
}

@media (min-width: 640px) {
    .pb-scope {
        padding: 32px 24px;
    }

    .pb-session-card {
        padding: 32px;
    }

    .pb-calendar-card {
        padding: 28px 32px;
    }

    .pb-calendar-header h2 {
        max-width: none;
    }

    .pb-weekdays {
        font-size: 11px;
    }

    .pb-days {
        row-gap: 20px;
    }

    .pb-day,
    .pb-day-muted {
        width: 44px !important;
        height: 44px !important;
        max-width: 44px;
        max-height: 44px;
        font-size: 15px !important;
    }

    .pb-time-modal {
        width: min(100%, 600px);
        border-radius: 24px;
        padding: 42px 42px 34px;
    }

    .pb-time-modal h2 {
        font-size: 36px;
    }

    .pb-time-modal > p {
        font-size: 18px;
    }

    .pb-modal-times {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 34px;
    }

    .pb-payment-screen > h2 {
        font-size: 30px;
    }

    .pb-payment-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, .85fr);
        align-items: start;
        gap: 22px;
    }

    .pb-payment-card {
        padding: 18px;
    }

    .pb-payment-row {
        grid-template-columns: 1fr 1fr;
    }

    .pb-details-modal {
        width: min(100%, 430px);
        border-radius: 18px;
        padding: 42px 40px 40px;
    }

    .pb-details-actions {
        gap: 16px;
    }

    .pb-back-button,
    .pb-details-continue {
        font-size: 16px !important;
        padding: 0 18px !important;
    }
}

@media (min-width: 1024px) {
    .pb-booking {
        display: block;
        max-width: 850px;
        margin: 0 auto;
    }

    .pb-calendar-card {
        width: 100%;
        margin: 0 auto;
    }

    .pb-calendar-card {
        padding: 36px 40px 32px;
    }
}
