.booking-notice {
    max-width: min(34rem, calc(100vw - 2rem));
    padding: 0;
    border: 0;
    background: #fff;
}

.booking-notice::backdrop {
    background: rgba(0, 0, 0, .6);
}

.booking-notice__inner {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
}

.booking-notice__dismiss {
    position: absolute;
    inset-block-start: .5rem;
    inset-inline-end: .5rem;
}

.booking-notice__close {
    padding: .15rem .5rem;
    border: 0;
    background: none;
    color: var(--global-palette-btn-bg) !important;
    font-size: 2.75rem;
    line-height: 1;
    cursor: pointer;
    opacity: 1;
    transition: opacity .2s ease;
}
a.button.button--blue.js-booking-proceed:hover {
    background-color: var(--global-palette-btn-bg) !important;
    border: 2px solid #41b5f1 !important;
}
a.button.button--blue.js-booking-proceed:focus {
    background-color: var(--global-palette-btn-bg) !important;
    border: 2px solid #41b5f1 !important;
}

.booking-notice__close:hover,
.booking-notice__close:focus-visible {
    opacity: 1;
}

.booking-notice__title {
    margin: 0 0 .75rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.booking-notice__text {
    margin: 0 0 1.5rem;
}

.booking-notice__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.booking-notice__text {
    margin: 0 0 1.5rem;
}

.booking-notice__text > *:first-child { margin-block-start: 0; }
.booking-notice__text > *:last-child  { margin-block-end: 0; }

