@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* Bootstrap overrides (formerly bootstrap-overrides.scss) */
@media (max-width: 810px) {
    .container-md, .container-sm, .container {
        max-width: 762px;
    }
}

:root {
    --trappd-blue: #0879FD;
    --trappd-background-footer: #363536;
    --trappd-form-placeholder: #B1B0B1;
}
/* Fonts */

/* Variables */

/*--------------------------------------------------------------
# Bootstrap
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* ==== utilities/alignments ==== */
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* ==== utilities/screen_reader ==== */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* ==== utilities/buttons ==== */
.vc_btn3-container {
    .vc_btn3 {
        font-family: 'Orbitron', sans-serif !important;
        font-weight: normal !important;
        border: none !important;
        text-transform: uppercase;
        transition: all .3s;
        position: relative;
        overflow: hidden;
        z-index: 1;
        padding-left: 30px !important;
        padding-right: 30px !important;
        border-radius: 4px !important;

        &:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 100%;
            transition: all .3s;
            z-index: -1;
            background: black;
            opacity: 0.2;
        }

        &:hover {
            &:before {
                width: 100%;
            }
        }
    }

    .vc_btn3-color-primary {
        color: white !important;
        background: var(--trappd-blue) !important;
    }

    .vc_btn3-color-black {
        color: white !important;
        background: black !important;

        &:before {
            background: gray;
        }
    }
}

/* ==== utilities/forms ==== */
input[type="text"], input[type="email"], select {
    border-radius: 0 !important;
}

/* ==== utilities/animations ==== */
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

/*--------------------------------------------------------------
# App
--------------------------------------------------------------*/

/* ==== general ==== */
html, body {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 1px;
    font-weight: 200;
    overflow-x: hidden;
    line-height: 26px;
    background: black;
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    line-height: 1.4;
    color: var(--trappd-blue);

    & h1 {
        font-size: 45px;
    }

    & h2 {
        color: red;
        font-size: 29px;
    }

    & h3 {
        font-size: 29px;
        font-weight: normal;
    }
}

.whiteText {
    h1, h2, h3, h4, h5, h6, p, li {
        color: white !important;
        text-shadow: 1px 1px 3px black;
    }
}

.focusedText {
    letter-spacing: 2px;
    font-weight: normal;
    font-size: 14px;
}

.buttonShadow {
    box-shadow: 2px 2px 7px 0 rgb(0 0 0 / 40%);
}

p:empty {
    display: none;
}

.sectionIndexPriority {
    position: relative;
    z-index: 10;
}

.blueContainer {
    background: var(--trappd-blue);
    width: 100%;
    padding: 46px 90px;

    @media (max-width: 900px) {
        padding: 20px 20px;
    }
}

.blackContainer {
    background: black;
}

#discountAppliedMessage, #discountErrorMessage {
    font-weight: bold;
    color: white !important;
    text-shadow: 1px 1px black;
}

.grecaptcha-badge {
    display: none !important;
}

/* ==== header ==== */
header {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    padding-left: 60px;
    padding-right: 10px;
    padding-top: 14px;
    display: flex;
    align-items: center;

    @media (max-width: 1515px) {
        padding-left: 10px;
    }
    @media (max-width: 500px) {
        padding-left: 0;
    }

    .headerRightSide {
        display: flex;
        flex-grow: 1;
        flex-direction: row-reverse;
        justify-content: space-between;
        @media (max-width: 1515px) {
            flex-direction: row;
            justify-content: flex-end;
            align-items: center;
        }

        @media (max-width: 500px) {
            #headerBookNow .vc_general.vc_btn3 {
                padding: 10px 12px !important;
                font-size: 10px;
            }
        }

        #vueHeaderBasket {
            margin-right: 59px;
            margin-left: 33px;
            position: relative;
            top: 11px;

            img {
                /* filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.5)); */
            }

            @media (max-width: 600px) {
                margin-right: 42px;
                margin-left: 6px;
                top: 6px;

                /* img { */
                /*    width: 33px; */
                /* } */
            }
        }

        #headerNav {
            #mega-menu-wrap-main-menu .mega-menu-toggle {
                position: relative;
                top: -2px;
                background: none;

                img {
                    filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.5));
                }
            }

            #mega-menu-wrap-main-menu #mega-menu-main-menu > li:first-child {
              width: 49px;
              overflow: hidden;
            }

            @media (max-width: 1515px) {
                #mega-menu-wrap-main-menu #mega-menu-main-menu {
                    position: absolute;
                    right: 0;
                    width: 257px;
                    top: 47px;
                    & > li:first-child {
                      width:auto;
                    }
                }
            }

            .mega-menu-wrap {
                background: none;

                .mega-menu {
                    .mega-menu-item {
                        &.mega-current-menu-item, &.mega-current_page_item, &:hover {
                            > .mega-menu-link {
                                background: none !important;
                                border-bottom: 3px solid var(--trappd-blue) !important;
                            }
                        }

                        > .mega-menu-link {
                            text-transform: uppercase !important;
                            padding: 0 15px !important;
                            font-size: 13px !important;

                            &:before {
                                position: relative !important;
                                top: -2px !important;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* ==== footer ==== */
footer {
    background: var(--trappd-background-footer);
    margin-top: 2em;
    padding-top: 3em;

    .divider {
        height: 1px;
        background: white;
        margin: 2.2em 0;
    }

    #footerCopyright {
        background: black;
        color: white;
        padding: 22px 0;
        font-size: 12px;
        font-weight: normal;

        @media (max-width: 500px) {
            text-align: center;
        }

        a {
            color: white;
            text-decoration: none;
        }
    }

    #footerSocialIcons {
        ul {
            list-style: none;
            padding: 0;
            margin: 0;

            li {
                display: inline-block;
                padding: 0 10px;

                &:hover {
                    opacity: 0.5;
                }

                svg {
                    height: 45px;
                    width: auto;
                    fill: white;
                    color: white;
                }

                &.youtube {
                    svg {
                        fill: #fe0000;
                    }
                }

                &.instagram {
                    svg {
                        fill: #f4019b;
                    }
                }

                &.twitter {
                    svg {
                        fill: #1c96e9;
                    }
                }

                &.facebook {
                    svg {
                        fill: #0e8ef1;
                    }
                }

            }
        }
    }

    #footerNewsletterSignup {
        .forminator-ui {
            display: flex;

            .forminator-row {
                margin-bottom: 0 !important;
                flex-grow: 1;

                &.forminator-row-last {
                    flex-grow: 0;
                }
            }

            .forminator-label {
                display: none;
            }

            .forminator-input, .forminator-textarea {
                background: white !important;
                border: none !important;
                color: black !important;
                border-radius: 0 !important;
                height: 46px;
                padding-left: 25px;
                padding-right: 25px;

                &::placeholder {
                    color: var(--trappd-form-placeholder);
                    opacity: 1
                }
            }

            .forminator-button-submit {
                height: 47px;
            }
        }
    }

    .widgetContainer {
        height: 100%;

        .widget_block#block-8 {
            height: 100%;
        }

        .widget-title {
            color: white;
            font-family: "Open Sans", serif;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 0;
            line-height: inherit;
        }

        .menu {
            list-style: none;
            padding: 0;
            margin: 0 0 10px;

            li {
                position: relative;
                font-weight: 200;
                letter-spacing: 1px;
                white-space: nowrap;
                line-height: 1.7;

                &:before {
                    content: "> ";
                    color: white;
                }

                a {
                    font-size: 13px;
                    color: white;
                    text-decoration: none;
                }
            }
        }

        &.footerLogos {
            text-align: center;

            @media (max-width: 600px) {
                .widget {
                    display: inline-block;
                    margin-left: .5em;
                    margin-right: .5em;
                }
            }
        }
    }
}

.latestPostsContainer {
    height: 100%;

    .col-md-4 {
        height: 100%;
    }

    .post {
        height: 100%;
        padding: 40px 20px;
        max-height: 343px;
        overflow: hidden;
        position: relative;
        border: 1px solid var(--trappd-blue);
        display: flex;

        .background {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-position: center center;

            &::after {
                content: " ";
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                background: black;
                opacity: 0.7;
            }
        }

        .content {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            .title {
                color: white;
                font-family: "Open Sans", serif;
                font-size: 12px;
                font-weight: bold;
                line-height: inherit;
                margin-bottom: 8px;
            }

            .description {
                color: white;
                font-size: 12px;
                letter-spacing: 1px;
                margin-bottom: 2em;
                line-height: 17px;
                font-weight: 400;
            }

            .vc_btn3-container {
                margin-bottom: 0;
                display: block;

                .vc_btn3 {
                    display: block;
                }
            }
        }
    }
}

/**
Responsive
 */

@media (max-width: 1199px) {
    footer {
        .container .row:first-child {
            .col-md-2,
            .col-md-6 {
                width: 25%;
            }
        }
    }
    footer .latestPostsContainer {
        .col-md-4 {
            width: 100%;

            &:nth-child(2),
            &:nth-child(3) {
                display: none;
            }
        }
    }
}

@media (max-width: 991px) {
    footer {
        .container .row:first-child {
            .col-md-2,
            .col-md-6 {
                width: 25%;
            }
        }
    }
}

@media (max-width: 991px) {
    .latestPostsContainer {
        .col-md-4 {
            width: 100%;

            &:nth-child(2) {
                display: none;
            }
        }
    }

    footer {
        .container {
            .row:nth-child(2) {
                .col-md-5, .col-md-7 {
                    width: 50%
                }
            }
        }
    }
}

@media (max-width: 767px) {
    footer {
        .container {
            .row:first-child {
                .col-md-2:first-child {
                    width: 30%;
                }

                .col-md-2 {
                    width: 35%;
                }

                .col-md-6 {
                    display: none;
                }
            }

            .row:nth-child(2) {
                .col-md-5, .col-md-7 {
                    width: 100%;
                    margin-bottom: 30px;
                }
            }
        }
    }

    .latestPostsContainer {
        display: none;
    }

    #footerSocialIcons {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    footer {
        .container {
            .row {
                .footerCol1 {
                    width: 100% !important;
                    margin-bottom: 30px;
                }

                .footerCol2, .footerCol4 {
                    width: 50% !important;
                }
            }

            #footerSocialIcons ul {
                display: flex;
            }

            #footerNewsletterSignup .forminator-ui {
                flex-direction: column;
                align-items: center;

                input[type=email] {
                    margin-bottom: 16px;
                }
            }
        }
    }
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* ==== components/banners ==== */
.banner-top-image-mask,
.banner-bottom-image-mask {
    position: relative;

    .vc_row {
        z-index: 2;
    }
}

.banner-top-image-mask:before,
.banner-bottom-image-mask:after {
    content: "" !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: auto !important;
    visibility: visible !important;
    display: block !important;
    background: black;
    z-index: 1;
}

.banner-top-image-mask {
    &:before {
        mask-image: linear-gradient(to bottom, black 0%, transparent 40%);
    }
}

.banner-bottom-image-mask {
    padding-bottom: 20px;

    &:after {
        mask-image: linear-gradient(to top, black 0%, transparent 40%);
    }
}

.banner-section-646 {
    min-height: 646px;
}

.banner-section-348 {
    min-height: 348px;
}

.vc_section.banner-section-490 {
    min-height: 490px;
}

.vc_section.logos,
.vc_row.logos {
    @media (max-width: 767px) {
        img {
            max-width: 120px;
            max-height: 120px;
        }
    }
}

.vc_section.banner-section-490.rageRooms {
    @media (max-width: 600px) {
        background-position: 28.5% center !important;
    }

    .vc_btn3-container {
        width: 100%;
        display: flex;

        .vc_btn3 {
            position: relative;
            top: 200px;
            margin: 0 auto;
        }
    }

}

/* ==== components/contact-row ==== */
#contactUsRow {

    .forminator-ui {
        .forminator-row {
            margin-bottom: 23px !important;
        }

        .forminator-label {
            display: none;
        }

        .forminator-input, .forminator-textarea {
            background: black !important;
            border: 3px solid var(--trappd-blue) !important;
            color: white !important;

            &::placeholder {
                color: var(--trappd-form-placeholder);
                opacity: 1
            }
        }
    }

}

/* ==== components/rooms-shortcode ==== */
.roomsShortcode {

    #roomResults {
        position: relative;
        top: -1rem;
    }

    h2.roomResults {
        color: white;
        margin-bottom: 1em;

        span.seeAll {
            color: var(--trappd-blue);
            font-size: 0.7em;
        }
    }

    @media (min-width: 1400px) {
        > .container {
            max-width: 100%;
            padding-left: 0;
            padding-right: 0;
        }
    }

    @media (max-width: 1399px) {
        > .container {
            padding-left: 15px;
            padding-right: 15px;
        }
    }

    .room {
        display: flex;
        height: 21vw;
        overflow: hidden;
        position: relative;

        @media (max-width: 1399px) {
            display: block;
            height: auto;
        }

        .bannerImage {
            position: absolute;
            width: 57%;
            content: "" !important;
            height: auto !important;
            visibility: visible !important;
            display: block !important;

            @media (max-width: 1399px) {
                position: relative;
                width: 100%;
            }

            @media (min-width: 1400px) {
                .bannerImageSecondMask {
                    mask-image: none !important;
                }
            }

            img {
                width: 100%;
                height: auto;
            }
        }

        &.roomDirLeft {
            .bannerImage {
                mask-image: linear-gradient(to left, black 65%, transparent 100%);
                right: 0;

                .bannerImageSecondMask {
                    mask-image: linear-gradient(to right, black 65%, transparent 100%);
                }
            }

            .background {
                left: 0;
            }

            .branches {
                right: 0;
            }
        }

        &.roomDirRight {
            .bannerImage {
                mask-image: linear-gradient(to right, black 65%, transparent 100%);
                left: 0;

                .bannerImageSecondMask {
                    mask-image: linear-gradient(to left, black 65%, transparent 100%);
                }
            }

            .background {
                right: 0;
            }

            .contentCol {
                margin-left: auto;
            }
        }

        @media (max-width: 1399px) {
            .contentCol.col-md-4 {
                width: 50%;
                margin: 1rem auto 4rem;
            }
            .background {
                display: none;
            }
        }
        @media (max-width: 991px) {
            .contentCol.col-md-4 {
                width: 80%;
            }
        }
        @media (max-width: 600px) {
            .contentCol.col-md-4 {
                width: 100%;
            }
            .container {
                padding-left: 0;
                padding-right: 0;
            }
        }

        .background {
            background: black;
            position: absolute;
            top: 0;
            bottom: 0;
            width: 44%;
        }

        .container {
            margin-top: auto;
            margin-bottom: auto;
            position: relative;

            .branches {
                color: var(--trappd-blue);
                text-transform: uppercase;
                font-size: 14px;
                font-weight: 600;
                margin-bottom: 10px;
            }
        }

        .bannerContent {
            .difficultyLevel {
                color: white;
                text-transform: uppercase;
                font-weight: bold;
                letter-spacing: 1px;

                svg {
                    width: 22px;
                    height: auto;
                }
            }

            .title {
                color: white;
                margin: 0;
                line-height: 32px;
            }

            .description {
                line-height: 16px;
                margin-bottom: 1.5em;
                font-size: 13px;
                letter-spacing: 1px;
                font-weight: 400;
            }

            .footer {
                display: flex;

                .escapeRate, .scareFactor {
                    color: var(--trappd-blue);
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    font-weight: 600;
                    margin-top: auto;
                    margin-bottom: auto;
                    margin-right: 30px;
                }

                .bookNow {
                    flex-grow: 1;

                    .vc_btn3-container, .vc_btn3 {
                        display: block;
                    }

                    @media (max-width: 600px) {
                        .vc_btn3 {
                            padding: 17px 11px !important;
                            font-size: 12px;
                        }
                    }
                }
            }
        }
    }
}

/* ==== components/search-filter-shortcode ==== */
.searchFilterShortcode {

    @media (max-width:991px) {
        &.typeSearch {
            margin-top:26px;
        }
    }

    &.typeLocation {
        .search-label {
            text-transform: uppercase;
            margin-right: 1em;
            letter-spacing: 0;
            font-size: 15px;
        }

        form {
            flex-grow: 1;
        }
    }

    &.typeSearch, &.typeLocation {
        form {
            display: flex;

            .input {
                flex-grow: 1;
                background: white;
                border-radius: 3px;
                padding: 10px;
                display: flex;

                @media (min-width: 992px) {
                    max-width: 340px;
                }

                svg {
                    width: 46px;
                    height: auto;
                    color: #0879FD;
                    fill: #0879FD;
                    border-right: 1px solid var(--trappd-form-placeholder);
                    padding-right: 16px;
                    margin-right: 11px;
                }

                input {
                    background: none;
                    border: none;
                    box-shadow: none;
                    color: black;
                    width: auto;
                    flex-grow: 1;

                    &:focus, &:focus-visible, &:focus-within {
                        border: none;
                        outline: none;
                    }

                    &::placeholder {
                        color: var(--trappd-form-placeholder);
                    }
                }
            }

            .vc_btn3-container {
                button {
                    height: 100%;
                    margin-left: -8px;
                    border-radius: 0 4px 4px 0 !important;
                    padding: 0 14px !important;
                }
            }
        }
    }
}

.searchFilterValidationMessage {
    background-color: var(--trappd-blue);

    h6 {
        color: white;
        text-align: center;
        line-height: 2;
        margin-top: 1em;
    }
}

/* ==== components/room-slider-shortcode ==== */
.roomSliderShortcodeNormal {

    .slick-list {
        overflow: inherit;
    }

    .slick-prev {
        left: 55px;

        &:before {
            content: "<";
        }
    }

    .slick-next {
        right: 55px;

        &:before {
            content: ">";
        }
    }

    .slick-prev, .slick-next {
        z-index: 10;
        width: 50px;
        height: 50px;

        &:before {
            font-family: Orbitron, serif;
            font-size: 45px;
            position: relative;
            top: -4px;
            color: white;
            z-index: 10;
            opacity: 1;
        }

        &:after {
            content: " ";
            border: 3px solid var(--trappd-blue);
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            position: absolute;
            border-radius: 100%;
            background: var(--trappd-blue);
        }
    }

    .room {
        position: relative;
        float: left;

        .bannerImage {
            img {
                width: 100%;
                height: auto;
            }

            &:after {
                content: "" !important;
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                top: 0;
                height: auto !important;
                visibility: visible !important;
                display: block !important;
                background: black;
                z-index: 1;
                mask-image: linear-gradient(to top, black 8%, transparent 29%);
            }
        }

        .buttons {
            display: flex;
        }

        .spacesLeftAlert {
            color: white;
            background: var(--trappd-blue);
            text-align: center;
            position: absolute;
            left: 23px;
            right: 23px;
            border-radius: 4px;
            z-index: 100;
            font-family: 'Orbitron', sans-serif;
            line-height: 1.5em;
            padding: 8px 0;
        }

        .contentCol {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            text-align: center;

            .branches {
                display: inline-block;
                color: white;
                background: rgba(0, 0, 0, 0.7);
                text-transform: uppercase;
                position: relative;
                top: 30px;
                padding: 5px 19px;
                border-radius: 0 12px 0 12px;
                font-size: 14px;
                font-weight: 600;
            }

            .footer {
                position: absolute;
                bottom: 25px;
                left: 35px;
                right: 35px;
                @media (max-width: 500px) {
                    bottom: 10px;
                }

                .vc_btn3-container.vc_btn3-inline {
                    width: 100%;

                    .vc_btn3 {
                        width: 75%;
                        padding-left: 0 !important;
                        padding-right: 0 !important;
                        @media (max-width: 500px) {
                            width: 100%;
                            padding: 10px !important;
                        }
                    }
                }

                .text {
                    font-weight: 600;
                    background: rgba(0, 0, 0, 0.3);
                    padding: 5px 19px;
                    font-size: 13px;

                    span {
                        font-weight: bold;
                    }

                    .spacesLeft {
                        margin-top: 1em;
                        font-size: 16px;
                    }
                }
            }
        }
    }
}

.roomSliderShortcodeSmall {

    margin-bottom: 4rem !important;

    .slick-prev {
        left: -60px;

        &:before {
            content: "<";
        }
    }

    .slick-next {
        right: -60px;

        &:before {
            content: ">";
        }
    }

    .slick-prev, .slick-next {
        width: 50px;
        height: 50px;

        &:before {
            font-family: Orbitron, serif;
            font-size: 45px;
            position: relative;
            top: -4px;
            color: var(--trappd-blue);
            z-index: 10;
            opacity: 1;
        }
    }

    .slick-track {
        display: flex;

        @media (max-width: 1199px) {
            .slick-slide {
                display: flex;
                height: auto;

                & > div {
                    display: flex;
                }
            }
        }
    }

    .room {
        float: left;
        display: flex !important;

        .bannerImage {
            max-height: 153px;
            overflow: hidden;

            @media (max-width: 1199px) {
                margin-bottom: 10px;
            }

            img {
                width: 100%;
                height: auto;
            }
        }

        @media (max-width: 1199px) {
            .row {
                flex-direction: column;
                padding: 0 10px;
            }
        }

        .contentCol {
            .title {
                text-transform: uppercase;
                color: white;
                line-height: 21px;
                font-size: 15px;
            }

            .footer {
                height: 100%;
                display: flex;
                flex-direction: column;

                .text {
                    font-weight: 300;
                    font-size: 14px;
                    color: var(--trappd-blue);
                    font-family: "Orbitron", sans-serif;
                    margin-bottom: 1em;
                    line-height: 19px;
                }

                .bookNow {
                    margin-top: auto;

                    .vc_general {
                        background: black !important;
                        border-radius: 0 !important;
                        border: 2px solid var(--trappd-blue) !important;
                        padding: 10px;
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

/* ==== components/testimonials-shortcode ==== */
.testimonialsShortcode {
    .slick-prev {
        left: -60px;

        &:before {
            content: "<";
        }
    }

    .slick-next {
        right: -60px;

        &:before {
            content: ">";
        }
    }

    .slick-prev, .slick-next {
        width: 50px;
        height: 50px;

        &:before {
            font-family: Orbitron, serif;
            font-size: 45px;
            position: relative;
            top: -4px;
            color: white;
            z-index: 10;
            opacity: 1;
        }
    }

    .testimonial {
        h2 {
            color: white;
            font-weight: bold;
        }

        .logo {
            text-align: right;

            img {
                margin-left: auto;
            }
        }

        .contentCol {
            padding-left: 4.5em;
            position: relative;

            &:before {
                content: url('/wp-content/themes/trappd/assets/images/quote.svg');
                position: absolute;
                top: 20px;
                left: 0;
            }

            .title {
                color: white;
                text-transform: uppercase;
                font-size: 16px;
                margin-bottom: 0;
                font-weight: bold;
            }

            .description {
                font-weight: 300;
            }
        }

        .footer {
            margin-top: 2em;

            .companyName {
                text-transform: uppercase;
                font-family: Orbitron, serif;
                font-weight: 700;
                display: inline-block;

                &:after {
                    content: " ";
                    background: white;
                    width: 1px;
                    margin-left: 30px;
                    margin-right: 30px;
                    display: inline-block;
                    height: 21px;
                    position: relative;
                    top: 5px;
                }
            }

            .employeeName {
                text-transform: uppercase;
                font-family: Orbitron, serif;
                font-weight: 400;
                display: inline-block;
            }
        }
    }
}

/* ==== components/gallery-slider-shortcode ==== */
.roomGallerySliderShortcode {
    .slick-prev {
        left: 0;

        &:before {
            content: "<";
        }
    }

    .slick-next {
        right: 0;

        &:before {
            content: ">";
        }
    }

    .slick-prev, .slick-next {
        width: 66px;
        height: 100%;
        z-index: 10;
        background: rgba(0,0,0,0.3);

        &:before {
            font-family: Orbitron, serif;
            font-size: 45px;
            position: relative;
            top: -4px;
            color: white;
            z-index: 10;
            opacity: 1;
        }
    }
}

/* ==== components/booking-summary ==== */
.bookingFormSummary {
    h4 {
        font-size: 18px;
        line-height: inherit;
        margin-bottom: 12px;
    }

    .summaryRoomDetailsContainer {
        margin-right: 1em;

        @media (max-width: 600px) {
            margin-right: 0;
        }

        .summaryRoomDetails {
            list-style: none;
            padding: 0;
            margin: 0;

            li {
                border-bottom: 1px solid white;
                margin-bottom: 1.5em;
                padding-bottom: 1.5em;

                @media (max-width: 600px) {
                    flex-direction: column;
                }

                .image {
                    max-width: 253px;
                    margin-right: 1em;

                    @media (max-width: 600px) {
                        max-width: 100%;
                        margin-right: 0;
                        margin-bottom: 1em;
                    }

                    img {
                        width: 100%;
                        height: auto;
                    }
                }

                .details {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    text-transform: uppercase;

                    .price {
                        font-size: 22px;
                        font-family: "Orbitron", sans-serif;
                        text-align: right;
                    }
                }
            }
        }

        .summaryFooter {
            @media (max-width: 600px) {
                margin-bottom: 1.5em;
            }

            .price {
                font-size: 28px;
                font-family: "Orbitron", sans-serif;
                text-align: right;

                small {
                    font-size: 16px;
                    margin-right: 1em;
                }
            }
        }
    }

    form {
        .formContainer {
            border: 2px solid white;
            padding: 28px 35px;

            @media (max-width: 800px) {
                padding: 28px 23px;
            }
        }

        .vc_btn3-container {
            text-align: right;
            margin-top: 1em;

            @media (max-width: 600px) {
                text-align: center;
            }

            button {
                width: 260px;
                font-size: 16px;
            }

            button.btnApplyVoucher {
                position: relative;

                &.spinnerActive {
                    color: #484848 !important;

                    &::before {
                        display: none;
                    }

                    &::after {
                        content: ' ';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: url('/wp-content/themes/trappd/assets/images/spinner2.gif') center no-repeat;
                        background-size: 13%;
                    }
                }
            }
        }
    }
}

/* ==== components/popup-book-now ==== */
#popupBookNow {
    background: #2f7bf5;
    padding: 75px 115px;
    @media (max-width: 550px) {
        padding: 50px;
        h2 {
            line-height: 1.5;
        }
    }
}

@media (max-width: 550px) {
    .pum-container {
        top: 0 !important;
    }
}

/* ==== components/branch-map-shortcode ==== */
#shortcodeBranchMap {
    width: 100%;
    height: 421px;
}

/* ==== components/branch-map-filter ==== */
#branchMapFilterWrap {
    position: relative;
    overflow: hidden;
    height: 0;
    transition:all 0.8s ease-in-out;

    &.visible {
        height: 462px;
    }
}

#branchMapFilter {
    position: absolute;
    width: 100%;
    height: 421px;
    margin-bottom: 35px;
}

/* ==== components/leaflet ==== */
.leaflet-container {

    .leaflet-popup {
        .leaflet-popup-tip {
            background: var(--trappd-background-footer);
        }

        .leaflet-popup-content-wrapper {
            background: var(--trappd-background-footer);
            color: white;
            border-radius: 0;
            padding: 0;
            width: auto;
            margin: 0;
            font-size: 12px;

            .leaflet-popup-content {
                margin: 0;
                padding: 21px;
                width: 400px !important;

                @media (max-width: 600px) {
                    width: auto !important;
                    min-width: 242px;

                    .contact {
                        margin: 0.5em !important;
                    }
                }

                .name {
                    font-weight: bold;
                    margin-bottom: 8px;
                }

                .address {

                }

                .button a {
                    background: var(--trappd-blue) !important;
                    font-family: "Orbitron", sans-serif !important;
                    padding: 5px 8px;
                    margin: 8px 0;
                    display: inline-block;
                    border-radius: 3px;
                }

                .contact {
                    margin-top: -1em;

                    span {
                        font-weight: bold;
                        display: block;
                        margin-top: 1em;
                    }
                }

                a {
                    color: white;
                    text-decoration: none;

                    &:hover {
                        opacity: 0.7;
                    }
                }
            }
        }

        &.youAreHere .leaflet-popup-content-wrapper .leaflet-popup-content {
            white-space: nowrap;
            width: auto !important;
        }
    }
}

/* ==== components/branch-contact-list ==== */
ul.branchContactList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 4% 15px 6% !important;
    padding: 0;

    li {
        width: 50%;
        @media (max-width: 1000px) {
            width: 48%;
        }
        @media (max-width: 550px) {
            width: 100%;
        }
        list-style: none;
        text-align: center;
        margin-bottom: 3rem !important;

        a {
            color: white;
            text-decoration: none;
            font-weight: 600;

            &.vc_btn3 {
                padding: 10px 18px !important;
            }

            &:hover {
                text-decoration: underline;
            }
        }
    }
}

/* ==== components/vc-toggle ==== */
.trappdToggles {
    text-align: center;

    .vc_toggle {
        position: relative;
        display: inline-block;
        margin: 10px 10px;

        .vc_toggle_title {
            h4{
                font-size: 14px;
                color: white;
            }
            border: 2px solid var(--trappd-blue);
            padding: 6px 22px;
        }

        i.vc_toggle_icon {
            display: none;
        }

        .vc_toggle_content {
            position: absolute;
            bottom: 100%;
            background-color: #363536;
            padding: 16px 19px 0 !important;
            margin-bottom: 0;
            z-index: 10;
        }
    }
}

/* ==== components/offers-page-grid ==== */
.offers-page-grid {
    .vc-gitem-zone-height-mode-auto:before {
        padding-top: 0;
    }

    .vc_gitem-zone-a .vc_gitem-row-position-top {
        position: static;
    }
}

.specialOffer {
    border: 2px solid var(--trappd-blue);
    border-radius: 3rem;

    img.vc_single_image-img {
        border-radius: 2.1rem 2.1rem 0 0;
        aspect-ratio: 3/1;
        object-fit: cover;
    }
}

/* ==== components/popup-advert-image ==== */
#popmake-74443 {
    max-width: calc(100% - 60px);
    height: auto;
    margin-bottom: 0;
    margin-left: 30px;
    margin-right: 30px;

    #advertImagePopup {

        .wpb_single_image {
            margin-bottom: 0;

            img {
                width: 100%;
                height: auto;
            }
        }

    }
}

/* ==== components/rage-overnight-slider ==== */
.rageOvernightSliderRow {
  .vc_column-inner {
    padding: 0 !important;
  }

  .wpb_content_element {
    margin: 0 !important;
  }

  .slick-list {
    overflow: inherit;
  }

  .slick-prev {
    left: 55px;

    &:before {
      content: "<";
    }
  }

  .slick-next {
    right: 55px;

    &:before {
      content: ">";
    }
  }

  .slick-prev, .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;

    @media (max-width: 767px) {
      bottom: 4%;
      top: unset;
      transform: none;
    }

    &:before {
      font-family: Orbitron, serif;
      font-size: 45px;
      position: relative;
      top: -4px;
      color: white;
      z-index: 10;
      opacity: 1;
    }

    &:after {
      content: " ";
      border: 3px solid var(--trappd-blue);
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      position: absolute;
      border-radius: 100%;
      background: var(--trappd-blue);
    }
  }

  .sliderItem {
    position: relative;

    img {
      width: 100vw;
      height: auto;

      &.desktop {
        display: none;
        @media (min-width: 768px) {
          display: inline-block;
        }
      }

      &.mobile {
        display: inline-block;
        @media (min-width: 768px) {
          display: none;
        }
      }
    }

    .vc_btn3-container {
      position: absolute;
      width: 100%;
      bottom: 17%;
      margin: 0 !important;
      text-align: center;
      @media (min-width: 768px) {
        width: auto;
        bottom: 3%;
        right: 11%;
      }
    }
  }
}

/* ==== components/vc-sections ==== */
/* Reusable WPBakery sections ([wwp_vc_sections]), formerly the Visual Composer Sections plugin CSS */
.wwp-vc-sections-element .vc_column-inner {
    padding-top: 0 !important;
}

/*--------------------------------------------------------------
# Vue Components
--------------------------------------------------------------*/

/* ==== components/vue/basket ==== */
.vueBasket {

    .vueBasketLoading {
        svg {
            width: 100px;
            text-align: center;
            margin-left: auto;
            display: block;
            margin-right: auto;
            fill: white;
            animation: spin 1s linear infinite;
        }
    }

    > h5 {
        color: white;
        text-transform: uppercase;
        font-size: 18px;
        line-height: inherit;
        margin-bottom: 12px;
    }

    .basketItems {
        list-style: none;
        margin: 0;
        padding: 0;
        overflow: hidden;

        li {
            border-bottom: 1px solid white;
            margin-bottom: 1.5em;
            padding-bottom: 1.5em;
            text-transform: uppercase;

            @media (max-width: 600px) {
                flex-direction: column;
            }

            .image {
                img {
                    max-width: 320px;
                }
            }

            .details {
                display: flex;
                flex-direction: column;
                justify-content: center;
                position: relative;
                margin-left: 2em;

                @media (max-width: 600px) {
                    margin-left: 0;
                    margin-top: 1em;
                }

                h3 {
                    color: white;
                    line-height: inherit;
                }

                .branch {
                    font-family: "Orbitron", sans-serif;
                }

                .price {
                    font-size: 28px;
                    font-family: "Orbitron", sans-serif;
                    text-align: right;

                    small {
                        font-size: 16px;
                        margin-right: 1em;
                    }
                }

                .btnRemoveItem {
                    position: absolute;
                    top: 14px;
                    right: 18px;
                    cursor: pointer;

                    @media (max-width: 810px) {
                        right: 0;
                        top: 71px;
                    }

                    svg {
                        width: 26px;
                        fill: white;

                        &:hover {
                            fill: red;
                        }
                    }
                }
            }
        }
    }

    .basketItemsFooter {
        border-bottom: 1px solid white;
        margin-bottom: 1.5em;
        padding-bottom: 1.5em;

        @media (max-width: 600px) {
            text-align: center;
        }

        .price {
            font-size: 28px;
            font-family: "Orbitron", sans-serif;

            @media (max-width: 600px) {
                margin-bottom: 0.5em;
            }

            small {
                font-size: 16px;
                margin-right: 1em;
            }
        }

        .btnCheckout {
            width: 300px;
        }
    }
}

/* ==== components/vue/booking-form ==== */
.bookingForm {
    position: relative;

    .btnBack {
        fill: white;
        width: 42px;
        position: absolute;
        left: 25px;
        top: 25px;
        cursor: pointer;
        z-index: 99;

        @media (max-width: 810px) {
            width: 25px;
            left: 6px;
            top: 7px;
        }

        &:hover {
            opacity: .8;
        }
    }

    .slider {
        .slick-list {
            height: auto !important;
        }

        .bookingFormStep1 {
            .bookingFormBranchContainer {
                h5, h4 {
                    color: white;
                    text-transform: uppercase;
                    font-size: 18px;
                    text-align: center;
                    line-height: inherit;
                    margin-bottom: 12px;
                }

                .note {
                    text-align: center;
                    font-weight: 200;
                    font-family: "Orbitron", sans-serif;
                    text-transform: uppercase;
                    font-size: 14px;

                    @media (max-width: 810px) {
                        font-size: 12px;
                        max-width: 600px;
                        margin-left: auto;
                        margin-right: auto;
                    }
                }

                .bookingFormBranches {
                    justify-content: center;
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    color: white;

                    li {
                        text-align: center;
                        padding: 10px;
                        cursor: pointer;
                        position: relative;

                        @media (min-width: 500px) {
                            max-width: 350px;
                        }

                        .closed, .branchLimited {
                            position: absolute;
                            top: 0;
                            left: 20px;
                            right: 20px;
                            bottom: 0;
                            display: flex;
                            flex-direction: column;

                            .closedMessage, .branchLimitedMessage {
                                z-index: 10;
                                color: #721c24;
                                background: #f8d7da;
                                border: 1px #f5c6cb;
                                font-weight: 200;
                                text-transform: uppercase;
                                font-family: "Orbitron", sans-serif;
                                letter-spacing: 2px;
                                padding: 10px;
                                border-radius: 12px;
                            }

                            .branchLimitedMessage {
                                font-size: 12px;
                            }
                        }

                        h4 {
                            font-size: 16px;
                            margin: 10px 0
                        }

                        &:hover {
                            opacity: 0.8;
                        }
                    }
                }
            }
        }

        .bookingFormStep2 {
            > div {
                margin-left: auto;
                margin-right: auto;
                max-width: 1097px;
                display: block;
            }

            .bookingFormCalendar {
                #bookingFormDatePicker {
                    display: none;
                }

                .easepick-wrapper {
                    display: block;
                    margin-bottom: 2em;
                    text-align: center;
                }
            }

            .bookingFormTimesContainer {
                h5 {
                    color: white;
                    text-transform: uppercase;
                    font-size: 16px;
                }

                .bookingFormTimes {
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    li {
                        display: flex;
                        align-items: center;
                        font-size: 24px;
                        text-transform: uppercase;
                        margin-bottom: 0.5em;

                        @media (max-width: 810px) {
                            font-size: 16px;
                        }

                        .icon {
                            margin-right: 1em;
                        }

                        .time {
                            flex: 1;
                        }

                        .location {
                            flex: 1;
                            font-weight: 600;

                            @media (max-width: 600px) {
                                display: none;
                            }
                        }

                        .action {
                            flex: 1;
                            text-align: right;

                            .vc_btn3-container {
                                margin: 0 !important;
                            }
                        }
                    }

                }
            }
        }

        .bookingFormStep3 {
            > div {
                margin-left: auto;
                margin-right: auto;
                max-width: 1097px;
                display: block;
            }
        }
    }

}

/* ==== components/vue/gift-voucher-form ==== */
.giftVoucherForm {
    h5, h4, h3 {
        color: white;
        text-transform: uppercase;
        font-size: 18px;
        line-height: inherit;
        margin-bottom: 12px;
    }

    form {
        .vc_btn3-container {
            text-align: right;
            margin-top: 0;

            button {
                /* width: 260px; */
                /* font-size: 16px; */

                @media (max-width: 900px) {
                    font-size: 12px;
                    margin-top: 8px;
                }
            }
        }
    }

    .priceContainer {
        margin-top: 1em;

        .discount {
            font-weight: bold;
        }

        h4 {
            font-size: 28px;
            margin-bottom: 0;

            @media (max-width: 900px) {
                font-size: 22px;
            }

            small {
                font-size: 16px;
                margin-right: 1em;
                display: block;
                margin-bottom: 0.3em;

                @media (max-width: 900px) {
                    font-size: 14px;
                }
            }
        }
    }

    .loading {
        width: 24px;
        animation: spin 2s linear infinite;
    }

}

/* ==== components/vue/header-basket ==== */
.headerBasket {
    position: relative;
    font-family: 'Orbitron', sans-serif;

    a {
        color: white;
        text-decoration: none;
    }

    img {
        width: 42px;
        height: auto;
    }

    .count {
        position: absolute;
        top: -5px;
        right: -33px;
        background: #0879FD;
        border-radius: 100%;
        width: 26px;
        height: 26px;
        text-align: center;
        line-height: 26px;
        font-size: 12px;
        padding-left: 2px;
    }
}

.headerBasketPopout {
    padding: 31px 30px;
    width: 550px;
    position: absolute;
    right: -33px;
    top: calc(100% + 22px);

    @media (max-width: 810px) {
        right: -100px;
    }

    @media (max-width: 600px) {
        padding: 17px 10px;
        width: 100vw;
        right: -98px;

        h3, .branch {
            font-size: 12px;
        }

        .vueBasket {
            .basketItemsFooter {
                .price {
                    font-size: 20px;

                    small {
                        font-size: 13px;
                        display: block
                    }
                }

                a.vc_general {
                    font-size: 11px;
                    margin-top: 8px;
                }
            }
        }
    }

    .vueBasket {
        .basketItems {
            li {
                .image {
                    width: 176px;

                    img {
                        width: 100%;
                        height: auto;
                    }
                }

                .details {
                    font-size: 14px;

                    h3 {
                        font-size: 14px;
                        margin-bottom: 0;
                    }

                    .price {
                        font-size: 18px;
                    }
                }

                .btnRemoveItem {
                    position: absolute;
                    top: calc(50% - 15px);
                    right: 0;
                    cursor: pointer;

                    svg {
                        width: 19px;
                        fill: white;

                        &:hover {
                            fill: red;
                        }
                    }
                }
            }

            .noItems {
                border-bottom: none;
                padding-bottom: 0;
                margin-bottom: 0;

                h6 {
                    margin-bottom: 0;
                    font-size: 14px;
                }
            }
        }

        .basketItemsFooter {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }
    }
}

/* ==== components/vue/checkout ==== */
.vueCheckout {

    .StripeElement {
        background: white;
        padding: 22px;
        border-radius: 4px;
        border: 3px solid black;
    }

}

/* ==== components/vue/checkout-complete ==== */
body.checkoutCompletePage {
    #pageHeader {
        padding-top: 7em;
        padding-bottom: 5em;
        margin-bottom: 0;
    }

    .icon {
        height: 4rem;
        img {
            max-height:100%;
        }
    }
}

.vueCheckoutComplete {

    .background {
        background-image: url("/wp-content/themes/trappd/assets/images/checkout-complete-bg.jpg");
        text-align: center;
        padding: 27px;
        height: max(50vh, 350px);

        .price {
            font-weight: bold;
            font-family: Orbitron, serif;
            font-size: 32px;
        }

        .priceDescription {
            font-family: Orbitron, serif;
            font-size: 18px;
            margin-top: 1em;
        }

        .divider {
            border-top: 1px solid white;
            margin-top: 1.5em;
            padding-top: 1.5em;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        .emailSubscribe {
            font-size: 14px;
        }
    }

    .containerBackground {
        background: rgba(0, 0, 0, 0.6);
        padding: 15px 10px;
        max-width: 700px;
        margin: auto;
    }

}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/

/* ==== pages/generic-page ==== */
#pageHeader {
    background: black;
    padding-top: 10em;
    background: url("/wp-content/uploads/2022/04/main3-1-1.jpg") no-repeat;
    padding-bottom: 8em;
    margin-bottom: 3em;
    background-position: center center;
    background-size: cover;

    h1 {
        text-transform: uppercase;
        color: white;
    }

    p {
        color: white;
        font-size: 20px;
        text-transform: uppercase;
    }
}

#travelsChoiceAwardLogo {
    position: absolute;
    top: 13px;
    right: 49px;
    max-width: 110px;
    @media (max-width:500px) {
        top: -19px;
        right: 23px;
        max-width: 75px;
    }
}

/* ==== pages/single-room ==== */
body.single-room {
    @media (max-width: 600px) {
        h1 {
            text-align: center;
            font-size: 30px;
            margin-bottom: 4em !important;
        }
    }

    .roomAttributesHeader {
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 4em;

        @media (max-width: 810px) {
            .scareFactor, .escapeRate, .difficultyLevel {
                span {
                    display: block;
                }
            }

            > div:nth-child(3) {
                border-right: none;
            }
        }

        @media (max-width: 600px) {
            .difficultyLevel {
                margin-top: 7px;
                text-align: center;
            }

            > div:nth-child(2) {
                border-right: none;
            }
        }

        div:nth-child(4) {
            text-align: right;

            @media (max-width: 810px) {
                text-align: center;
                margin-top: 14px;
            }
        }

        .wpb_text_column {
            margin-bottom: 0;
        }

        .wpb_column {
            border-right: 1px solid #444a4d;

            &:last-child {
                border-right: none;
            }
        }

        .difficultyLevel {
            svg {
                width: 28px;
                height: auto;
                position: relative;
                top: -3px;
            }
        }
    }

    .roomContent {
        font-weight: 300;
        border-right: 1px solid #444a4d;
        padding-right: 5em;
        margin-right: 3em;

        @media (max-width: 600px) {
            padding: 0;
            margin: 0;
            border: none;
            text-align: center;
        }
    }

    .branchesInfo {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 3rem 0 0;

        @media (max-width: 600px) {
            padding-bottom: 0;
            border-top: 1px solid white;
            margin-top: 3em;
        }

        div {
            width: 45%;

            h6 {
                font-family: "Open Sans", serif;
                color: white;
                letter-spacing: 1px;
                font-weight: 600;
            }

            address {
                min-height: 5rem;
            }

            p {
                margin-bottom: 2rem;
            }

            a {
                color: white;
                text-decoration: none;

                &:hover {
                    text-decoration: underline;
                }
            }

            @media (max-width: 500px), (min-width:768px) and (max-width:1199px) {
                width: 100%;
                margin-bottom: 0;
                address {
                    min-height: 0;
                }
                p {
                    margin-bottom: 1rem;
                }
            }

        }
    }

    .additionalInfo {
        padding: 0 0 3rem;

        h6 {
            font-family: "Open Sans", serif;
            color: white;
            letter-spacing: 1px;
            font-weight: 600;
        }
    }
}

/* ==== pages/blog ==== */
.blogPostsArchive {
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    article {
        width: 31%;
        @media (max-width: 767px) {
            width: 48%;
        }
        @media (max-width: 500px) {
            width: 100%;
        }
        padding-bottom: 1rem;

        .featuredImage {
            position: relative;
            padding: 90% 0 0;
            margin-bottom: 10px;

            img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }

        h2 a {
            text-decoration: none;
        }
    }
}

.blogPagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Orbitron", sans-serif;
    font-size: 16px;

    .prev,
    .next {
        display: none;
    }
}

.blogPost {
    display: flex;
    justify-content: center;

    article {
        max-width: 800px;

        img {
            max-width: 100%;
            margin-bottom: 1rem;
        }
    }

    h1 a {
        text-decoration: none;
    }
}

/* ==== pages/home ==== */
body.home {

    .imgFullWidth img {
        width: 100%;
        height: auto;
    }

    .channelFourLogo img {
        max-height: 139px;
    }

    h1 {
        font-size: 26px;

        @media (max-width: 600px) {
            font-size: 18px;
        }
    }

    #homePageBlackBoxBanner {
        width: 100%;

        @media (max-width: 600px) {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
        }

        > .vc_column-inner {
            width: auto;
            flex-grow: 0;

            @media (max-width: 600px) {
                margin-left: auto;
                margin-right: auto;
            }
        }
    }

    #homePageBanner {
        @media (max-width: 600px) {
            min-height: 168.335vw !important;
            position: relative;
        }

        .background {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;

            &.mobile {
                display: none;
                background-position: center top !important;
            }

            @media (max-width: 600px) {
                &.desktop {
                    display: none;
                }

                &.mobile {
                    display: block;
                }
            }
        }
    }

    #homepageSpacesAvailable {
        @media (max-width: 600px) {
            margin-top: -8px !important;
            text-align: center;
            padding: 0 !important;
            border-top: 13px solid var(--trappd-blue);

            #homePageAvailableText {
                display: none;
            }
        }
    }

    #bannerContentRow {
        z-index: 10;

        @media (max-width: 600px) {
            .wpb_text_column {
                margin-bottom: 8px !important;
            }

            .focusedText {
                font-size: 12px;
            }
        }
    }

}

/* ==== pages/rage-room-page ==== */
body.page-id-156 {

    .bookingForm {
        &.blueContainer {
            background: #525252;
        }

        h5 {
            color: white;
        }
    }

}

/* ==== pages/giftcard-page ==== */
body.page-id-163 {

    .giftcardDownloads {
        .wpb_single_image {
            float: left;
            max-width: 168px;

            @media (max-width: 900px) {
                max-width: 160px;
            }

            & + .wpb_single_image {
                margin-left: 1em;
            }
        }
    }

}

/* ==== components/vue/checkout (formerly the scoped <style> block in checkout.vue) ==== */
#vueCheckoutForm {
    .paypalButtonWrapper {
        position: relative;
    }
    #paypalButtonContainer {
        background: #fff;
        padding: 12px 10px 2px;
        border-radius: 6px 6px 0 0;
        min-height:155px;
    }
    #googlePayButtonContainer {
        background: #fff;
        padding: 0 10px 12px;
        border-radius: 0 0 6px 6px;
    }
    #googlePayButtonContainer > * {
        width: 100%;
    }
    .paypalProcessingOverlay {
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.9);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        border-radius: 4px;
        pointer-events: auto;
    }
    .paypalProcessingOverlay .spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #e0e0e0;
        border-top-color: #003087;
        border-radius: 50%;
        animation: paypalSpin 0.9s linear infinite;
    }
    .paypalProcessingOverlay .processingText {
        margin-top: 12px;
        color: #333;
        font-size: 0.95rem;
        font-weight: 700;
    }
}

@keyframes paypalSpin {
    to { transform: rotate(360deg); }
}
