/* Suite colours */
/* convert to em from px */
/* convert to rem from px */
/* unit conversion used by font size */
/* media query mixins that use breakpoints set in constants.scss */
/* Slightly lighten a color
 * @access public
 * @param {Color} $color - color to tint
 * @param {Number} $percentage - percentage of `$color` in returned color
 * @return {Color}
 */
/* Slightly darken a color
 * @access public
 * @param {Color} $color - color to shade
 * @param {Number} $percentage - percentage of `$color` in returned color
 * @return {Color}
 */
body.hidden-scroll {
    overflow: hidden;
}

.sl-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    display: none;
    z-index: 1035;
}

.sl-wrapper {
    z-index: 1040;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
}

    .sl-wrapper * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .sl-wrapper button {
        border: 0 none;
        background: transparent;
        font-size: 28px;
        padding: 0;
        cursor: pointer;
    }

        .sl-wrapper button:hover {
            opacity: 0.7;
        }

    .sl-wrapper .sl-close {
        display: none;
        position: fixed;
        right: 30px;
        top: 30px;
        z-index: 10060;
        margin-top: -14px;
        margin-right: -14px;
        height: 44px;
        width: 44px;
        line-height: 44px;
        font-family: Arial, Baskerville, monospace;
        color: #000;
        font-size: 3rem;
    }

    .sl-wrapper .sl-counter {
        display: none;
        position: fixed;
        top: 30px;
        left: 30px;
        z-index: 1060;
        color: #000;
        font-size: 1rem;
    }

    .sl-wrapper .sl-navigation {
        width: 100%;
        display: none;
    }

        .sl-wrapper .sl-navigation button {
            position: fixed;
            top: 50%;
            margin-top: -22px;
            height: 44px;
            width: 22px;
            line-height: 44px;
            text-align: center;
            display: block;
            z-index: 10060;
            font-family: Arial, Baskerville, monospace;
            color: #000;
        }

            .sl-wrapper .sl-navigation button.sl-next {
                right: 5px;
                font-size: 2rem;
            }

            .sl-wrapper .sl-navigation button.sl-prev {
                left: 5px;
                font-size: 2rem;
            }

@media (min-width: 35.5em) {
    .sl-wrapper .sl-navigation button {
        width: 44px;
    }

        .sl-wrapper .sl-navigation button.sl-next {
            right: 10px;
            font-size: 3rem;
        }

        .sl-wrapper .sl-navigation button.sl-prev {
            left: 10px;
            font-size: 3rem;
        }
}

@media (min-width: 50em) {
    .sl-wrapper .sl-navigation button {
        width: 44px;
    }

        .sl-wrapper .sl-navigation button.sl-next {
            right: 20px;
            font-size: 3rem;
        }

        .sl-wrapper .sl-navigation button.sl-prev {
            left: 20px;
            font-size: 3rem;
        }
}

.sl-wrapper.sl-dir-rtl .sl-navigation {
    direction: ltr;
}

.sl-wrapper .sl-image {
    position: fixed;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 10000;
}

    .sl-wrapper .sl-image img {
        margin: 0;
        padding: 0;
        display: block;
        border: 0 none;
        width: 100%;
        height: auto;
    }

@media (min-width: 35.5em) {
    .sl-wrapper .sl-image img {
        border: 0 none;
    }
}

@media (min-width: 50em) {
    .sl-wrapper .sl-image img {
        border: 0 none;
    }
}

.sl-wrapper .sl-image iframe {
    background: #000;
    border: 0 none;
}

@media (min-width: 35.5em) {
    .sl-wrapper .sl-image iframe {
        border: 0 none;
    }
}

@media (min-width: 50em) {
    .sl-wrapper .sl-image iframe {
        border: 0 none;
    }
}

.sl-wrapper .sl-image .sl-caption {
    display: none;
    padding: 10px;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

    .sl-wrapper .sl-image .sl-caption.pos-top {
        bottom: auto;
        top: 0;
    }

    .sl-wrapper .sl-image .sl-caption.pos-outside {
        bottom: auto;
    }

.sl-wrapper .sl-image .sl-download {
    display: none;
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #000;
    z-index: 1060;
}

.sl-spinner {
    display: none;
    border: 5px solid #333;
    border-radius: 40px;
    height: 40px;
    left: 50%;
    margin: -20px 0 0 -20px;
    opacity: 0;
    position: fixed;
    top: 50%;
    width: 40px;
    z-index: 1007;
    -webkit-animation: pulsate 1s ease-out infinite;
    animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.sl-transition {
    transition: -webkit-transform ease 200ms;
    -webkit-transition: -webkit-transform ease 200ms;
    transition: transform ease 200ms;
    transition: transform ease 200ms, -webkit-transform ease 200ms;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

    /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
    audio:not([controls]) {
        display: none;
        height: 0;
    }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
    background-color: transparent;
}

    /**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
    a:active,
    a:hover {
        outline: 0;
    }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
    background: #FF0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

    /**
 * Re-set default cursor for disabled elements.
 */
    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    /**
 * Remove inner padding and border in Firefox 4+.
 */
    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
    line-height: normal;
}

    /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
    input[type="checkbox"],
    input[type="radio"] {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        /* 1 */
        padding: 0;
        /* 2 */
    }

    /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
    input[type="search"] {
        -webkit-appearance: textfield;
        /* 1 */
        -webkit-box-sizing: content-box;
        /* 2 */
        box-sizing: content-box;
    }

        /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #C0C0C0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

body {
    width: 100%;
}

    body.cancel-transitions * {
        -webkit-transition: none !important;
        transition: none !important;
    }

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.inline {
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.svg-sprite {
    display: none;
}

.inner-container,
.ecommerce.newshoppingcart .eventsContainer,
.ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent,
.ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.entityLogin .login,
.ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin > div[class^=step-],
.ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration > div[class^=step-],
.forgot-password[data-v-4645f1f2] .contact-box,
.ecommerce.new-checkout,
.fixture-list-wrapper > div {
    position: relative;
    width: 100%;
    max-width: 1248px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media all and (max-width: 576px) {
    .inner-container,
    .ecommerce.newshoppingcart .eventsContainer,
    .ecommerce.myAccountComponent .payment-manager,
    .ecommerce.myAccountComponent .update-contact-main,
    .ecommerce.myAccountComponent .manage-email-main,
    .ecommerce.myAccountComponent .manage-password-main,
    .ecommerce.myAccountComponent,
    .ecommerce.entityLogin .customer-intro,
    .ecommerce.entityLogin .options-container,
    .ecommerce.entityLogin .options-container + .submit-btn,
    .ecommerce.accountRegistration .customer-intro,
    .ecommerce.accountRegistration .options-container,
    .ecommerce.accountRegistration .options-container + .submit-btn,
    .ecommerce.entityLogin .login,
    .ecommerce.entityLogin .forgot-password,
    .ecommerce.entityLogin > div[class^=step-],
    .ecommerce.accountRegistration .login,
    .ecommerce.accountRegistration .forgot-password,
    .ecommerce.accountRegistration > div[class^=step-],
    .forgot-password[data-v-4645f1f2] .contact-box,
    .ecommerce.new-checkout,
    .fixture-list-wrapper > div {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.inner-container--sm {
    max-width: 616px;
}

.inner-container--md,
.inner-container .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .inner-container .eventsContainer,
.inner-container .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .inner-container .payment-manager,
.inner-container .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .inner-container .update-contact-main,
.inner-container .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .inner-container .manage-email-main,
.inner-container .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .inner-container .manage-password-main,
.inner-container .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .inner-container .customer-intro,
.inner-container .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .inner-container .options-container,
.inner-container .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .inner-container .options-container + .submit-btn,
.inner-container .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .inner-container .customer-intro,
.inner-container .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .inner-container .options-container,
.inner-container .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .inner-container .options-container + .submit-btn,
.inner-container .ecommerce.entityLogin .login,
.ecommerce.entityLogin .inner-container .login,
.inner-container .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .inner-container .forgot-password,
.inner-container .ecommerce.entityLogin > div[class^=step-],
.inner-container .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .inner-container .login,
.inner-container .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .inner-container .forgot-password,
.inner-container .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.newshoppingcart .eventsContainer,
.ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .manage-password-main,
.ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.entityLogin .login,
.ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin > div[class^=step-],
.ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration > div[class^=step-],
.forgot-password[data-v-4645f1f2] .contact-box,
.ecommerce.newshoppingcart .eventsContainer .eventsContainer,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.newshoppingcart .eventsContainer .payment-manager,
.ecommerce.newshoppingcart .ecommerce.myAccountComponent .eventsContainer .payment-manager,
.ecommerce.myAccountComponent .payment-manager .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.myAccountComponent .payment-manager .eventsContainer,
.ecommerce.myAccountComponent .payment-manager .payment-manager,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .payment-manager .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.newshoppingcart .eventsContainer .update-contact-main,
.ecommerce.newshoppingcart .ecommerce.myAccountComponent .eventsContainer .update-contact-main,
.ecommerce.myAccountComponent .payment-manager .update-contact-main,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .payment-manager .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.newshoppingcart .eventsContainer .manage-email-main,
.ecommerce.newshoppingcart .ecommerce.myAccountComponent .eventsContainer .manage-email-main,
.ecommerce.myAccountComponent .payment-manager .manage-email-main,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .payment-manager .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.newshoppingcart .eventsContainer .manage-password-main,
.ecommerce.newshoppingcart .ecommerce.myAccountComponent .eventsContainer .manage-password-main,
.ecommerce.myAccountComponent .payment-manager .manage-password-main,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.myAccountComponent .update-contact-main .eventsContainer,
.ecommerce.myAccountComponent .update-contact-main .payment-manager,
.ecommerce.myAccountComponent .update-contact-main .update-contact-main,
.ecommerce.myAccountComponent .update-contact-main .manage-email-main,
.ecommerce.myAccountComponent .update-contact-main .manage-password-main,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.myAccountComponent .manage-email-main .eventsContainer,
.ecommerce.myAccountComponent .manage-email-main .payment-manager,
.ecommerce.myAccountComponent .manage-email-main .update-contact-main,
.ecommerce.myAccountComponent .manage-email-main .manage-email-main,
.ecommerce.myAccountComponent .manage-email-main .manage-password-main,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.myAccountComponent .manage-password-main .eventsContainer,
.ecommerce.myAccountComponent .manage-password-main .payment-manager,
.ecommerce.myAccountComponent .manage-password-main .update-contact-main,
.ecommerce.myAccountComponent .manage-password-main .manage-email-main,
.ecommerce.myAccountComponent .manage-password-main .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.myAccountComponent .eventsContainer,
.ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .manage-password-main,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.entityLogin .customer-intro,
.ecommerce.myAccountComponent .payment-manager .ecommerce.entityLogin .customer-intro,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.entityLogin .customer-intro,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.entityLogin .customer-intro,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.entityLogin .customer-intro,
.ecommerce.myAccountComponent .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .ecommerce.newshoppingcart .eventsContainer .customer-intro,
.ecommerce.newshoppingcart .ecommerce.entityLogin .eventsContainer .customer-intro,
.ecommerce.entityLogin .ecommerce.myAccountComponent .payment-manager .customer-intro,
.ecommerce.myAccountComponent .ecommerce.entityLogin .payment-manager .customer-intro,
.ecommerce.entityLogin .ecommerce.myAccountComponent .update-contact-main .customer-intro,
.ecommerce.myAccountComponent .ecommerce.entityLogin .update-contact-main .customer-intro,
.ecommerce.entityLogin .ecommerce.myAccountComponent .manage-email-main .customer-intro,
.ecommerce.myAccountComponent .ecommerce.entityLogin .manage-email-main .customer-intro,
.ecommerce.entityLogin .ecommerce.myAccountComponent .manage-password-main .customer-intro,
.ecommerce.myAccountComponent .ecommerce.entityLogin .manage-password-main .customer-intro,
.ecommerce.entityLogin .ecommerce.myAccountComponent .customer-intro,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.entityLogin .options-container,
.ecommerce.myAccountComponent .payment-manager .ecommerce.entityLogin .options-container,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.entityLogin .options-container,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.entityLogin .options-container,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.entityLogin .options-container,
.ecommerce.myAccountComponent .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .ecommerce.newshoppingcart .eventsContainer .options-container,
.ecommerce.newshoppingcart .ecommerce.entityLogin .eventsContainer .options-container,
.ecommerce.entityLogin .ecommerce.myAccountComponent .payment-manager .options-container,
.ecommerce.myAccountComponent .ecommerce.entityLogin .payment-manager .options-container,
.ecommerce.entityLogin .ecommerce.myAccountComponent .update-contact-main .options-container,
.ecommerce.myAccountComponent .ecommerce.entityLogin .update-contact-main .options-container,
.ecommerce.entityLogin .ecommerce.myAccountComponent .manage-email-main .options-container,
.ecommerce.myAccountComponent .ecommerce.entityLogin .manage-email-main .options-container,
.ecommerce.entityLogin .ecommerce.myAccountComponent .manage-password-main .options-container,
.ecommerce.myAccountComponent .ecommerce.entityLogin .manage-password-main .options-container,
.ecommerce.entityLogin .ecommerce.myAccountComponent .options-container,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.myAccountComponent .payment-manager .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.myAccountComponent .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.newshoppingcart .eventsContainer .options-container + .submit-btn,
.ecommerce.newshoppingcart .ecommerce.entityLogin .eventsContainer .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.myAccountComponent .payment-manager .options-container + .submit-btn,
.ecommerce.myAccountComponent .ecommerce.entityLogin .payment-manager .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.myAccountComponent .update-contact-main .options-container + .submit-btn,
.ecommerce.myAccountComponent .ecommerce.entityLogin .update-contact-main .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.myAccountComponent .manage-email-main .options-container + .submit-btn,
.ecommerce.myAccountComponent .ecommerce.entityLogin .manage-email-main .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.myAccountComponent .manage-password-main .options-container + .submit-btn,
.ecommerce.myAccountComponent .ecommerce.entityLogin .manage-password-main .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.myAccountComponent .options-container + .submit-btn,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.accountRegistration .customer-intro,
.ecommerce.myAccountComponent .payment-manager .ecommerce.accountRegistration .customer-intro,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.accountRegistration .customer-intro,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.accountRegistration .customer-intro,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.accountRegistration .customer-intro,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .ecommerce.newshoppingcart .eventsContainer .customer-intro,
.ecommerce.newshoppingcart .ecommerce.accountRegistration .eventsContainer .customer-intro,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .payment-manager .customer-intro,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .payment-manager .customer-intro,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .update-contact-main .customer-intro,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .update-contact-main .customer-intro,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .manage-email-main .customer-intro,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .manage-email-main .customer-intro,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .manage-password-main .customer-intro,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .manage-password-main .customer-intro,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .customer-intro,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.accountRegistration .options-container,
.ecommerce.myAccountComponent .payment-manager .ecommerce.accountRegistration .options-container,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.accountRegistration .options-container,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.accountRegistration .options-container,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.accountRegistration .options-container,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .ecommerce.newshoppingcart .eventsContainer .options-container,
.ecommerce.newshoppingcart .ecommerce.accountRegistration .eventsContainer .options-container,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .payment-manager .options-container,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .payment-manager .options-container,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .update-contact-main .options-container,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .update-contact-main .options-container,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .manage-email-main .options-container,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .manage-email-main .options-container,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .manage-password-main .options-container,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .manage-password-main .options-container,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .options-container,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.myAccountComponent .payment-manager .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.newshoppingcart .eventsContainer .options-container + .submit-btn,
.ecommerce.newshoppingcart .ecommerce.accountRegistration .eventsContainer .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .payment-manager .options-container + .submit-btn,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .payment-manager .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .update-contact-main .options-container + .submit-btn,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .update-contact-main .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .manage-email-main .options-container + .submit-btn,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .manage-email-main .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .manage-password-main .options-container + .submit-btn,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .manage-password-main .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .options-container + .submit-btn,
.ecommerce.entityLogin .customer-intro .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.entityLogin .customer-intro .eventsContainer,
.ecommerce.entityLogin .customer-intro .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.entityLogin .customer-intro .payment-manager,
.ecommerce.entityLogin .customer-intro .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .customer-intro .update-contact-main,
.ecommerce.entityLogin .customer-intro .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .customer-intro .manage-email-main,
.ecommerce.entityLogin .customer-intro .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .customer-intro .manage-password-main,
.ecommerce.entityLogin .customer-intro .customer-intro,
.ecommerce.entityLogin .customer-intro .options-container,
.ecommerce.entityLogin .customer-intro .options-container + .submit-btn,
.ecommerce.entityLogin .customer-intro .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .ecommerce.entityLogin .customer-intro .customer-intro,
.ecommerce.entityLogin .customer-intro .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .ecommerce.entityLogin .customer-intro .options-container,
.ecommerce.entityLogin .customer-intro .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.entityLogin .customer-intro .options-container + .submit-btn,
.ecommerce.entityLogin .options-container .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.entityLogin .options-container .eventsContainer,
.ecommerce.entityLogin .options-container .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.entityLogin .options-container .payment-manager,
.ecommerce.entityLogin .options-container .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .options-container .update-contact-main,
.ecommerce.entityLogin .options-container .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .options-container .manage-email-main,
.ecommerce.entityLogin .options-container .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .options-container .manage-password-main,
.ecommerce.entityLogin .options-container .customer-intro,
.ecommerce.entityLogin .options-container .options-container,
.ecommerce.entityLogin .options-container .options-container + .submit-btn,
.ecommerce.entityLogin .options-container .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container .customer-intro,
.ecommerce.entityLogin .options-container .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container .options-container,
.ecommerce.entityLogin .options-container .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container .options-container + .submit-btn,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.entityLogin .options-container + .submit-btn .eventsContainer,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.entityLogin .options-container + .submit-btn .payment-manager,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .options-container + .submit-btn .update-contact-main,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .options-container + .submit-btn .manage-email-main,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .options-container + .submit-btn .manage-password-main,
.ecommerce.entityLogin .options-container + .submit-btn .customer-intro,
.ecommerce.entityLogin .options-container + .submit-btn .options-container,
.ecommerce.entityLogin .options-container + .submit-btn .options-container + .submit-btn,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container + .submit-btn .customer-intro,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container + .submit-btn .options-container,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container + .submit-btn .options-container + .submit-btn,
.ecommerce.accountRegistration .customer-intro .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.accountRegistration .customer-intro .eventsContainer,
.ecommerce.accountRegistration .customer-intro .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .customer-intro .payment-manager,
.ecommerce.accountRegistration .customer-intro .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .customer-intro .update-contact-main,
.ecommerce.accountRegistration .customer-intro .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .customer-intro .manage-email-main,
.ecommerce.accountRegistration .customer-intro .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .customer-intro .manage-password-main,
.ecommerce.accountRegistration .customer-intro .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .ecommerce.accountRegistration .customer-intro .customer-intro,
.ecommerce.accountRegistration .customer-intro .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .ecommerce.accountRegistration .customer-intro .options-container,
.ecommerce.accountRegistration .customer-intro .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.accountRegistration .customer-intro .options-container + .submit-btn,
.ecommerce.accountRegistration .customer-intro .customer-intro,
.ecommerce.accountRegistration .customer-intro .options-container,
.ecommerce.accountRegistration .customer-intro .options-container + .submit-btn,
.ecommerce.accountRegistration .options-container .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.accountRegistration .options-container .eventsContainer,
.ecommerce.accountRegistration .options-container .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .options-container .payment-manager,
.ecommerce.accountRegistration .options-container .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .options-container .update-contact-main,
.ecommerce.accountRegistration .options-container .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .options-container .manage-email-main,
.ecommerce.accountRegistration .options-container .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .options-container .manage-password-main,
.ecommerce.accountRegistration .options-container .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container .customer-intro,
.ecommerce.accountRegistration .options-container .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container .options-container,
.ecommerce.accountRegistration .options-container .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container .options-container + .submit-btn,
.ecommerce.accountRegistration .options-container .customer-intro,
.ecommerce.accountRegistration .options-container .options-container,
.ecommerce.accountRegistration .options-container .options-container + .submit-btn,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.accountRegistration .options-container + .submit-btn .eventsContainer,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .options-container + .submit-btn .payment-manager,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .options-container + .submit-btn .update-contact-main,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .options-container + .submit-btn .manage-email-main,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .options-container + .submit-btn .manage-password-main,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container + .submit-btn .customer-intro,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container + .submit-btn .options-container,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container + .submit-btn .options-container + .submit-btn,
.ecommerce.accountRegistration .options-container + .submit-btn .customer-intro,
.ecommerce.accountRegistration .options-container + .submit-btn .options-container,
.ecommerce.accountRegistration .options-container + .submit-btn .options-container + .submit-btn,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.entityLogin .login,
.ecommerce.myAccountComponent .payment-manager .ecommerce.entityLogin .login,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.entityLogin .login,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.entityLogin .login,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.entityLogin .login,
.ecommerce.myAccountComponent .ecommerce.entityLogin .login,
.ecommerce.entityLogin .customer-intro .ecommerce.entityLogin .login,
.ecommerce.entityLogin .options-container .ecommerce.entityLogin .login,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.entityLogin .login,
.ecommerce.accountRegistration .customer-intro .ecommerce.entityLogin .login,
.ecommerce.accountRegistration .options-container .ecommerce.entityLogin .login,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.entityLogin .login,
.ecommerce.entityLogin .ecommerce.newshoppingcart .eventsContainer .login,
.ecommerce.newshoppingcart .ecommerce.entityLogin .eventsContainer .login,
.ecommerce.entityLogin .ecommerce.myAccountComponent .payment-manager .login,
.ecommerce.myAccountComponent .ecommerce.entityLogin .payment-manager .login,
.ecommerce.entityLogin .ecommerce.myAccountComponent .update-contact-main .login,
.ecommerce.myAccountComponent .ecommerce.entityLogin .update-contact-main .login,
.ecommerce.entityLogin .ecommerce.myAccountComponent .manage-email-main .login,
.ecommerce.myAccountComponent .ecommerce.entityLogin .manage-email-main .login,
.ecommerce.entityLogin .ecommerce.myAccountComponent .manage-password-main .login,
.ecommerce.myAccountComponent .ecommerce.entityLogin .manage-password-main .login,
.ecommerce.entityLogin .ecommerce.myAccountComponent .login,
.ecommerce.entityLogin .customer-intro .login,
.ecommerce.entityLogin .options-container .login,
.ecommerce.entityLogin .options-container + .submit-btn .login,
.ecommerce.entityLogin .ecommerce.accountRegistration .customer-intro .login,
.ecommerce.accountRegistration .ecommerce.entityLogin .customer-intro .login,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container .login,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container .login,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container + .submit-btn .login,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container + .submit-btn .login,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.entityLogin .forgot-password,
.ecommerce.myAccountComponent .payment-manager .ecommerce.entityLogin .forgot-password,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.entityLogin .forgot-password,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.entityLogin .forgot-password,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.entityLogin .forgot-password,
.ecommerce.myAccountComponent .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .customer-intro .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .options-container .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.entityLogin .forgot-password,
.ecommerce.accountRegistration .customer-intro .ecommerce.entityLogin .forgot-password,
.ecommerce.accountRegistration .options-container .ecommerce.entityLogin .forgot-password,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .ecommerce.newshoppingcart .eventsContainer .forgot-password,
.ecommerce.newshoppingcart .ecommerce.entityLogin .eventsContainer .forgot-password,
.ecommerce.entityLogin .ecommerce.myAccountComponent .payment-manager .forgot-password,
.ecommerce.myAccountComponent .ecommerce.entityLogin .payment-manager .forgot-password,
.ecommerce.entityLogin .ecommerce.myAccountComponent .update-contact-main .forgot-password,
.ecommerce.myAccountComponent .ecommerce.entityLogin .update-contact-main .forgot-password,
.ecommerce.entityLogin .ecommerce.myAccountComponent .manage-email-main .forgot-password,
.ecommerce.myAccountComponent .ecommerce.entityLogin .manage-email-main .forgot-password,
.ecommerce.entityLogin .ecommerce.myAccountComponent .manage-password-main .forgot-password,
.ecommerce.myAccountComponent .ecommerce.entityLogin .manage-password-main .forgot-password,
.ecommerce.entityLogin .ecommerce.myAccountComponent .forgot-password,
.ecommerce.entityLogin .customer-intro .forgot-password,
.ecommerce.entityLogin .options-container .forgot-password,
.ecommerce.entityLogin .options-container + .submit-btn .forgot-password,
.ecommerce.entityLogin .ecommerce.accountRegistration .customer-intro .forgot-password,
.ecommerce.accountRegistration .ecommerce.entityLogin .customer-intro .forgot-password,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container .forgot-password,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container .forgot-password,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container + .submit-btn .forgot-password,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container + .submit-btn .forgot-password,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.entityLogin > div[class^=step-],
.ecommerce.myAccountComponent .payment-manager .ecommerce.entityLogin > div[class^=step-],
.ecommerce.myAccountComponent .update-contact-main .ecommerce.entityLogin > div[class^=step-],
.ecommerce.myAccountComponent .manage-email-main .ecommerce.entityLogin > div[class^=step-],
.ecommerce.myAccountComponent .manage-password-main .ecommerce.entityLogin > div[class^=step-],
.ecommerce.myAccountComponent .ecommerce.entityLogin > div[class^=step-],
.ecommerce.entityLogin .customer-intro .ecommerce.entityLogin > div[class^=step-],
.ecommerce.entityLogin .options-container .ecommerce.entityLogin > div[class^=step-],
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.entityLogin > div[class^=step-],
.ecommerce.accountRegistration .customer-intro .ecommerce.entityLogin > div[class^=step-],
.ecommerce.accountRegistration .options-container .ecommerce.entityLogin > div[class^=step-],
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.entityLogin > div[class^=step-],
.ecommerce.newshoppingcart .eventsContainer .ecommerce.accountRegistration .login,
.ecommerce.myAccountComponent .payment-manager .ecommerce.accountRegistration .login,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.accountRegistration .login,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.accountRegistration .login,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.accountRegistration .login,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .login,
.ecommerce.entityLogin .customer-intro .ecommerce.accountRegistration .login,
.ecommerce.entityLogin .options-container .ecommerce.accountRegistration .login,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .customer-intro .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .options-container .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .ecommerce.newshoppingcart .eventsContainer .login,
.ecommerce.newshoppingcart .ecommerce.accountRegistration .eventsContainer .login,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .payment-manager .login,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .payment-manager .login,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .update-contact-main .login,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .update-contact-main .login,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .manage-email-main .login,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .manage-email-main .login,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .manage-password-main .login,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .manage-password-main .login,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .login,
.ecommerce.accountRegistration .ecommerce.entityLogin .customer-intro .login,
.ecommerce.entityLogin .ecommerce.accountRegistration .customer-intro .login,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container .login,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container .login,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container + .submit-btn .login,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container + .submit-btn .login,
.ecommerce.accountRegistration .customer-intro .login,
.ecommerce.accountRegistration .options-container .login,
.ecommerce.accountRegistration .options-container + .submit-btn .login,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.accountRegistration .forgot-password,
.ecommerce.myAccountComponent .payment-manager .ecommerce.accountRegistration .forgot-password,
.ecommerce.myAccountComponent .update-contact-main .ecommerce.accountRegistration .forgot-password,
.ecommerce.myAccountComponent .manage-email-main .ecommerce.accountRegistration .forgot-password,
.ecommerce.myAccountComponent .manage-password-main .ecommerce.accountRegistration .forgot-password,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .forgot-password,
.ecommerce.entityLogin .customer-intro .ecommerce.accountRegistration .forgot-password,
.ecommerce.entityLogin .options-container .ecommerce.accountRegistration .forgot-password,
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .customer-intro .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .options-container .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .ecommerce.newshoppingcart .eventsContainer .forgot-password,
.ecommerce.newshoppingcart .ecommerce.accountRegistration .eventsContainer .forgot-password,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .payment-manager .forgot-password,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .payment-manager .forgot-password,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .update-contact-main .forgot-password,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .update-contact-main .forgot-password,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .manage-email-main .forgot-password,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .manage-email-main .forgot-password,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .manage-password-main .forgot-password,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .manage-password-main .forgot-password,
.ecommerce.accountRegistration .ecommerce.myAccountComponent .forgot-password,
.ecommerce.accountRegistration .ecommerce.entityLogin .customer-intro .forgot-password,
.ecommerce.entityLogin .ecommerce.accountRegistration .customer-intro .forgot-password,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container .forgot-password,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container .forgot-password,
.ecommerce.accountRegistration .ecommerce.entityLogin .options-container + .submit-btn .forgot-password,
.ecommerce.entityLogin .ecommerce.accountRegistration .options-container + .submit-btn .forgot-password,
.ecommerce.accountRegistration .customer-intro .forgot-password,
.ecommerce.accountRegistration .options-container .forgot-password,
.ecommerce.accountRegistration .options-container + .submit-btn .forgot-password,
.ecommerce.newshoppingcart .eventsContainer .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.myAccountComponent .payment-manager .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.myAccountComponent .update-contact-main .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.myAccountComponent .manage-email-main .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.myAccountComponent .manage-password-main .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.myAccountComponent .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.entityLogin .customer-intro .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.entityLogin .options-container .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.entityLogin .options-container + .submit-btn .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.accountRegistration .customer-intro .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.accountRegistration .options-container .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.accountRegistration .options-container + .submit-btn .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.entityLogin .login .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.entityLogin .login .eventsContainer,
.ecommerce.entityLogin .login .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.entityLogin .login .payment-manager,
.ecommerce.entityLogin .login .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .login .update-contact-main,
.ecommerce.entityLogin .login .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .login .manage-email-main,
.ecommerce.entityLogin .login .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .login .manage-password-main,
.ecommerce.entityLogin .login .customer-intro,
.ecommerce.entityLogin .login .options-container,
.ecommerce.entityLogin .login .options-container + .submit-btn,
.ecommerce.entityLogin .login .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .ecommerce.entityLogin .login .customer-intro,
.ecommerce.entityLogin .login .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .ecommerce.entityLogin .login .options-container,
.ecommerce.entityLogin .login .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.entityLogin .login .options-container + .submit-btn,
.ecommerce.entityLogin .login .login,
.ecommerce.entityLogin .login .forgot-password,
.ecommerce.entityLogin .login .ecommerce.entityLogin > div[class^=step-],
.ecommerce.entityLogin .login .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .ecommerce.entityLogin .login .login,
.ecommerce.entityLogin .login .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .ecommerce.entityLogin .login .forgot-password,
.ecommerce.entityLogin .login .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.entityLogin .forgot-password .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.entityLogin .forgot-password .eventsContainer,
.ecommerce.entityLogin .forgot-password .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.entityLogin .forgot-password .payment-manager,
.ecommerce.entityLogin .forgot-password .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .forgot-password .update-contact-main,
.ecommerce.entityLogin .forgot-password .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .forgot-password .manage-email-main,
.ecommerce.entityLogin .forgot-password .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin .forgot-password .manage-password-main,
.ecommerce.entityLogin .forgot-password .customer-intro,
.ecommerce.entityLogin .forgot-password .options-container,
.ecommerce.entityLogin .forgot-password .options-container + .submit-btn,
.ecommerce.entityLogin .forgot-password .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .ecommerce.entityLogin .forgot-password .customer-intro,
.ecommerce.entityLogin .forgot-password .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .ecommerce.entityLogin .forgot-password .options-container,
.ecommerce.entityLogin .forgot-password .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.entityLogin .forgot-password .options-container + .submit-btn,
.ecommerce.entityLogin .forgot-password .login,
.ecommerce.entityLogin .forgot-password .forgot-password,
.ecommerce.entityLogin .forgot-password .ecommerce.entityLogin > div[class^=step-],
.ecommerce.entityLogin .forgot-password .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .ecommerce.entityLogin .forgot-password .login,
.ecommerce.entityLogin .forgot-password .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .ecommerce.entityLogin .forgot-password .forgot-password,
.ecommerce.entityLogin .forgot-password .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.entityLogin > div[class^=step-] .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.entityLogin > div[class^=step-] .eventsContainer,
.ecommerce.entityLogin > div[class^=step-] .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.entityLogin > div[class^=step-] .payment-manager,
.ecommerce.entityLogin > div[class^=step-] .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin > div[class^=step-] .update-contact-main,
.ecommerce.entityLogin > div[class^=step-] .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin > div[class^=step-] .manage-email-main,
.ecommerce.entityLogin > div[class^=step-] .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.entityLogin > div[class^=step-] .manage-password-main,
.ecommerce.entityLogin > div[class^=step-] .customer-intro,
.ecommerce.entityLogin > div[class^=step-] .options-container,
.ecommerce.entityLogin > div[class^=step-] .options-container + .submit-btn,
.ecommerce.entityLogin > div[class^=step-] .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .ecommerce.entityLogin > div[class^=step-] .customer-intro,
.ecommerce.entityLogin > div[class^=step-] .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .ecommerce.entityLogin > div[class^=step-] .options-container,
.ecommerce.entityLogin > div[class^=step-] .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.entityLogin > div[class^=step-] .options-container + .submit-btn,
.ecommerce.entityLogin > div[class^=step-] .login,
.ecommerce.entityLogin > div[class^=step-] .forgot-password,
.ecommerce.entityLogin > div[class^=step-] .ecommerce.entityLogin > div[class^=step-],
.ecommerce.entityLogin > div[class^=step-] .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .ecommerce.entityLogin > div[class^=step-] .login,
.ecommerce.entityLogin > div[class^=step-] .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .ecommerce.entityLogin > div[class^=step-] .forgot-password,
.ecommerce.entityLogin > div[class^=step-] .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.accountRegistration .login .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.accountRegistration .login .eventsContainer,
.ecommerce.accountRegistration .login .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .login .payment-manager,
.ecommerce.accountRegistration .login .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .login .update-contact-main,
.ecommerce.accountRegistration .login .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .login .manage-email-main,
.ecommerce.accountRegistration .login .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .login .manage-password-main,
.ecommerce.accountRegistration .login .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .ecommerce.accountRegistration .login .customer-intro,
.ecommerce.accountRegistration .login .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .ecommerce.accountRegistration .login .options-container,
.ecommerce.accountRegistration .login .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.accountRegistration .login .options-container + .submit-btn,
.ecommerce.accountRegistration .login .customer-intro,
.ecommerce.accountRegistration .login .options-container,
.ecommerce.accountRegistration .login .options-container + .submit-btn,
.ecommerce.accountRegistration .login .ecommerce.entityLogin .login,
.ecommerce.entityLogin .ecommerce.accountRegistration .login .login,
.ecommerce.accountRegistration .login .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .ecommerce.accountRegistration .login .forgot-password,
.ecommerce.accountRegistration .login .ecommerce.entityLogin > div[class^=step-],
.ecommerce.accountRegistration .login .login,
.ecommerce.accountRegistration .login .forgot-password,
.ecommerce.accountRegistration .login .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.accountRegistration .forgot-password .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.accountRegistration .forgot-password .eventsContainer,
.ecommerce.accountRegistration .forgot-password .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .forgot-password .payment-manager,
.ecommerce.accountRegistration .forgot-password .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .forgot-password .update-contact-main,
.ecommerce.accountRegistration .forgot-password .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .forgot-password .manage-email-main,
.ecommerce.accountRegistration .forgot-password .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration .forgot-password .manage-password-main,
.ecommerce.accountRegistration .forgot-password .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .ecommerce.accountRegistration .forgot-password .customer-intro,
.ecommerce.accountRegistration .forgot-password .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .ecommerce.accountRegistration .forgot-password .options-container,
.ecommerce.accountRegistration .forgot-password .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.accountRegistration .forgot-password .options-container + .submit-btn,
.ecommerce.accountRegistration .forgot-password .customer-intro,
.ecommerce.accountRegistration .forgot-password .options-container,
.ecommerce.accountRegistration .forgot-password .options-container + .submit-btn,
.ecommerce.accountRegistration .forgot-password .ecommerce.entityLogin .login,
.ecommerce.entityLogin .ecommerce.accountRegistration .forgot-password .login,
.ecommerce.accountRegistration .forgot-password .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .ecommerce.accountRegistration .forgot-password .forgot-password,
.ecommerce.accountRegistration .forgot-password .ecommerce.entityLogin > div[class^=step-],
.ecommerce.accountRegistration .forgot-password .login,
.ecommerce.accountRegistration .forgot-password .forgot-password,
.ecommerce.accountRegistration .forgot-password .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.accountRegistration > div[class^=step-] .eventsContainer,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.accountRegistration > div[class^=step-] .payment-manager,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration > div[class^=step-] .update-contact-main,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration > div[class^=step-] .manage-email-main,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.accountRegistration > div[class^=step-] .manage-password-main,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .ecommerce.accountRegistration > div[class^=step-] .customer-intro,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .ecommerce.accountRegistration > div[class^=step-] .options-container,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.accountRegistration > div[class^=step-] .options-container + .submit-btn,
.ecommerce.accountRegistration > div[class^=step-] .customer-intro,
.ecommerce.accountRegistration > div[class^=step-] .options-container,
.ecommerce.accountRegistration > div[class^=step-] .options-container + .submit-btn,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.entityLogin .login,
.ecommerce.entityLogin .ecommerce.accountRegistration > div[class^=step-] .login,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .ecommerce.accountRegistration > div[class^=step-] .forgot-password,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.entityLogin > div[class^=step-],
.ecommerce.accountRegistration > div[class^=step-] .login,
.ecommerce.accountRegistration > div[class^=step-] .forgot-password,
.ecommerce.accountRegistration > div[class^=step-] .ecommerce.accountRegistration > div[class^=step-],
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .forgot-password[data-v-4645f1f2] .contact-box .eventsContainer,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .forgot-password[data-v-4645f1f2] .contact-box .payment-manager,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .forgot-password[data-v-4645f1f2] .contact-box .update-contact-main,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .forgot-password[data-v-4645f1f2] .contact-box .manage-email-main,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .forgot-password[data-v-4645f1f2] .contact-box .manage-password-main,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .forgot-password[data-v-4645f1f2] .contact-box .customer-intro,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .forgot-password[data-v-4645f1f2] .contact-box .options-container,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .forgot-password[data-v-4645f1f2] .contact-box .options-container + .submit-btn,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .forgot-password[data-v-4645f1f2] .contact-box .customer-intro,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .forgot-password[data-v-4645f1f2] .contact-box .options-container,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .forgot-password[data-v-4645f1f2] .contact-box .options-container + .submit-btn,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.entityLogin .login,
.ecommerce.entityLogin .forgot-password[data-v-4645f1f2] .contact-box .login,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .forgot-password[data-v-4645f1f2] .contact-box .forgot-password,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.entityLogin > div[class^=step-],
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .forgot-password[data-v-4645f1f2] .contact-box .login,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .forgot-password[data-v-4645f1f2] .contact-box .forgot-password,
.forgot-password[data-v-4645f1f2] .contact-box .ecommerce.accountRegistration > div[class^=step-],
.ecommerce.new-checkout .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .ecommerce.new-checkout .eventsContainer,
.ecommerce.new-checkout .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .ecommerce.new-checkout .payment-manager,
.ecommerce.new-checkout .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .ecommerce.new-checkout .update-contact-main,
.ecommerce.new-checkout .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .ecommerce.new-checkout .manage-email-main,
.ecommerce.new-checkout .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .ecommerce.new-checkout .manage-password-main,
.ecommerce.new-checkout .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .ecommerce.new-checkout .customer-intro,
.ecommerce.new-checkout .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .ecommerce.new-checkout .options-container,
.ecommerce.new-checkout .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .ecommerce.new-checkout .options-container + .submit-btn,
.ecommerce.new-checkout .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .ecommerce.new-checkout .customer-intro,
.ecommerce.new-checkout .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .ecommerce.new-checkout .options-container,
.ecommerce.new-checkout .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .ecommerce.new-checkout .options-container + .submit-btn,
.ecommerce.new-checkout .ecommerce.entityLogin .login,
.ecommerce.entityLogin .ecommerce.new-checkout .login,
.ecommerce.new-checkout .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .ecommerce.new-checkout .forgot-password,
.ecommerce.new-checkout .ecommerce.entityLogin > div[class^=step-],
.ecommerce.new-checkout .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .ecommerce.new-checkout .login,
.ecommerce.new-checkout .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .ecommerce.new-checkout .forgot-password,
.ecommerce.new-checkout .ecommerce.accountRegistration > div[class^=step-],
.fixture-list-wrapper > div .ecommerce.newshoppingcart .eventsContainer,
.ecommerce.newshoppingcart .fixture-list-wrapper > div .eventsContainer,
.fixture-list-wrapper > div .ecommerce.myAccountComponent .payment-manager,
.ecommerce.myAccountComponent .fixture-list-wrapper > div .payment-manager,
.fixture-list-wrapper > div .ecommerce.myAccountComponent .update-contact-main,
.ecommerce.myAccountComponent .fixture-list-wrapper > div .update-contact-main,
.fixture-list-wrapper > div .ecommerce.myAccountComponent .manage-email-main,
.ecommerce.myAccountComponent .fixture-list-wrapper > div .manage-email-main,
.fixture-list-wrapper > div .ecommerce.myAccountComponent .manage-password-main,
.ecommerce.myAccountComponent .fixture-list-wrapper > div .manage-password-main,
.fixture-list-wrapper > div .ecommerce.entityLogin .customer-intro,
.ecommerce.entityLogin .fixture-list-wrapper > div .customer-intro,
.fixture-list-wrapper > div .ecommerce.entityLogin .options-container,
.ecommerce.entityLogin .fixture-list-wrapper > div .options-container,
.fixture-list-wrapper > div .ecommerce.entityLogin .options-container + .submit-btn,
.ecommerce.entityLogin .fixture-list-wrapper > div .options-container + .submit-btn,
.fixture-list-wrapper > div .ecommerce.accountRegistration .customer-intro,
.ecommerce.accountRegistration .fixture-list-wrapper > div .customer-intro,
.fixture-list-wrapper > div .ecommerce.accountRegistration .options-container,
.ecommerce.accountRegistration .fixture-list-wrapper > div .options-container,
.fixture-list-wrapper > div .ecommerce.accountRegistration .options-container + .submit-btn,
.ecommerce.accountRegistration .fixture-list-wrapper > div .options-container + .submit-btn,
.fixture-list-wrapper > div .ecommerce.entityLogin .login,
.ecommerce.entityLogin .fixture-list-wrapper > div .login,
.fixture-list-wrapper > div .ecommerce.entityLogin .forgot-password,
.ecommerce.entityLogin .fixture-list-wrapper > div .forgot-password,
.fixture-list-wrapper > div .ecommerce.entityLogin > div[class^=step-],
.fixture-list-wrapper > div .ecommerce.accountRegistration .login,
.ecommerce.accountRegistration .fixture-list-wrapper > div .login,
.fixture-list-wrapper > div .ecommerce.accountRegistration .forgot-password,
.ecommerce.accountRegistration .fixture-list-wrapper > div .forgot-password,
.fixture-list-wrapper > div .ecommerce.accountRegistration > div[class^=step-] {
    max-width: 816px;
}

.inner-container--lg {
    max-width: 1132px;
}

.inner-container--xl {
    max-width: 1360px;
}

/* Custom Lightbox styles */
.sl-overlay {
    background: #000;
}

.sl-wrapper .sl-close {
    color: #FFF;
}

/*** replace with project specific fonts ***/
@font-face {
    font-family: 'Branding';
    src: url("/css/fonts/latinotype-branding-bold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url("/css/fonts/Roboto-Regular.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url("/css/fonts/Roboto-Bold.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}

:root {
    --base-font-family: Roboto, Arial, Helvetica, sans-serif;
    --base-font-weight: 300;
}

body {
    font-family: var(--base-font-family);
    color: #3D3D3D;
    font-size: 16px;
    line-height: 1.25rem;
    font-weight: var(--base-font-weight);
}

html {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin-top: 0;
    margin-bottom: 1rem;
}

h1,
.-h1-font,
h2,
.-h2-font,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin-bottom: 1rem;
}

h1,
.-h1-font,
h2,
.-h2-font,
h3,
.-h3-font {
    font-family: "Anton" !important;
    font-weight: normal !important;
    text-transform: uppercase;
}

h1,
.-h1-font {
    display: block;
    font-size: 70px;
    line-height: 80px;
}

@media all and (max-width: 568px) {
    h1,
    .-h1-font {
        font-size: 34px;
        line-height: 44px;
    }
}

h2,
.-h2-font {
    display: block;
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 1.5rem;
}

@media all and (min-width: 769px) {
    h2,
    .-h2-font {
        font-size: 48px;
        line-height: 52px;
    }
}

h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 22px;
    line-height: 26px;
}

p {
    padding-bottom: 0;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

    p a {
        color: #FD2A2A;
        text-decoration: none;
    }

        p a:hover {
            text-decoration: underline;
        }

address {
    font-style: normal;
}

.-text-center {
    text-align: center;
}

strong {
    font-weight: 600;
}

.overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

a:focus {
    color: inherit;
}

:root {
    --siteHeaderHeight: 138px;
}

@media all and (max-width: 768px) {
    :root {
        --siteHeaderHeight: 114px;
    }
}

@media all and (max-width: 568px) {
    :root {
        --siteHeaderHeight: 87px;
    }
}

.site-header {
    height: auto;
    background: #000 !important;
    padding: 0 !important;
}

    .site-header .fwc22-eco-floating-menu {
        font-family: "Roboto", Arial, Helvetica, sans-serif !important;
    }

@media all and (max-width: 568px) {
    .site-header .fwc22-eco-floating-menu svg {
        width: 20px;
        height: 20px;
    }
}

.site-header-logo {
    margin-right: 0;
    width: 140px;
}

@media all and (min-width: 1133px) {
    .site-header-logo {
        width: 16%;
    }
}

.site-header-logo img {
    max-width: 80px;
}

@media all and (max-width: 768px) {
    .site-header-logo img {
        max-width: 70px;
    }
}

@media all and (max-width: 568px) {
    .site-header-logo img {
        max-width: 50px;
    }
}

.site-header__inner {
    padding: 14px 25px;
}

@media all and (min-width: 1133px) {
    .site-header__inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }
}

@media all and (max-width: 768px) {
    .site-header__inner {
        padding: 9px 25px;
    }
}

.site-header-actions {
    -ms-flex-item-align: initial;
    align-self: initial;
    padding-top: 0;
}

    .site-header-actions .menu-item.login-menu form {
        margin-bottom: 0;
    }

.site-header:not(.-compact) .language-selector {
    width: 46px !important;
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
}

.language-selector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    width: 7px;
    height: 7px;
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.language-selector__options {
    left: 50% !important;
}

.language-selector__language:hover {
    font-weight: bold;
}

.site-footer {
    padding-top: 60px;
    padding-bottom: 0;
    background-color: #000;
}

@media all and (min-width: 1281px) {
    .site-footer {
        padding-top: 92px;
    }
}

.site-footer__inner {
    display: grid;
    grid-template-columns: auto;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 32px;
}

@media screen and (max-width: 989px) {
    .site-footer__inner {
        margin-bottom: 0;
    }
}

@media all and (min-width: 569px) {
    .site-footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (min-width: 1025px) {
    .site-footer__inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.site-footer__graphic {
    margin-bottom: 4em;
}

    .site-footer__graphic .graphic-holder img {
        width: 26vw;
        max-width: 180px;
    }

.site-footer__column {
    text-align: center;
}

@media all and (min-width: 569px) {
    .site-footer__column {
        text-align: left;
    }
}

.site-footer__column h2 {
    font-size: 16px;
    line-height: 28px;
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
    font-weight: 500;
    color: #FFF !important;
    margin-bottom: 12px;
    text-transform: uppercase;
    border-bottom: none !important;
}

.site-footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .site-footer__column ul li {
        padding-bottom: 7px;
    }

.site-footer__column li, .site-footer__column p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #FFF;
}

    .site-footer__column li a, .site-footer__column p a {
        color: inherit;
        text-decoration: none;
    }

        .site-footer__column li a:hover, .site-footer__column p a:hover {
            text-decoration: underline;
            color: inherit !important;
        }

.site-footer__column p {
    margin-bottom: 0;
}

.site-footer__column .social-links {
    margin-bottom: 10px;
}

.site-footer__column--logos {
    position: relative;
    display: grid;
    grid-template-columns: 50% 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-self: flex-start;
}

@media all and (max-width: 568px) {
    .site-footer__column--logos {
        margin-top: 16px;
    }
}

.site-footer__column--logos > *:first-child {
    padding-right: 27px;
}

.site-footer__column--logos > *:last-child {
    padding-left: 27px;
}

.site-footer__column--logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-color: #FFF;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.site-footer__column--logos img {
    max-width: 100% !important;
}

.site-footer__logo img {
    min-height: 180px;
    min-width: 60px;
}

.site-footer__bottom {
    margin-top: 60px;
    padding: 16px 24px;
    background-color: #2C2B2B !important;
    text-align: center;
    color: #FFF;
}

@media all and (min-width: 1281px) {
    .site-footer__bottom {
        margin-top: 92px;
    }
}

.site-footer__bottom p {
    margin: 0;
    font-size: 13px;
    line-height: 24px;
}

.app-promo-footer {
    margin-top: 16px;
}

    .app-promo-footer img {
        margin-top: 0 !important;
    }

@media all and (min-width: 1025px) {
    .primary-nav {
        width: auto;
    }
}

.primary-nav > ul {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

@media all and (min-width: 1281px) {
    .primary-nav > ul {
        -webkit-column-gap: 70px;
        -moz-column-gap: 70px;
        column-gap: 70px;
    }
}

.primary-nav > ul > li {
    padding: 10px 0;
    margin: 0;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

    .primary-nav > ul > li::after {
        content: unset;
    }

    .primary-nav > ul > li:active > a {
        color: inherit;
    }

.primary-nav ul li {
    font-size: 16px;
    line-height: 20px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.primary-nav__sub-menu {
    min-width: 300px;
    padding-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.97);
}

    .primary-nav__sub-menu ul li,
    .primary-nav__sub-menu .subcategories .subcategory {
        font-size: 14px;
        line-height: 20px;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
    }

.hamburger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25px;
    background-color: #000;
}

@media all and (min-width: 769px) {
    .hamburger-menu {
        padding: 35px 50px 0;
    }
}

.hamburger-menu-list > li {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.hamburger-menu-list__sub-list li {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

.hamburger-menu-icon svg {
    color: #FFF;
    width: 20px;
    height: 20px;
}

.hamburger-menu-quicklinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 8px;
    margin-top: 40px;
}

    .hamburger-menu-quicklinks svg {
        width: 20px;
        height: 20px;
    }

/*** Look at "include(spanX)" instead of using span class names ***/
.row {
    max-width: 1440px;
    margin: 0 auto !important;
    position: relative;
    /* Can't decide whether this will be useful, or will cause issues */
}

    .row [class^=span] {
        float: left;
        position: relative;
        margin: 0 1.38889%;
    }

    .row .expand {
        margin: 0;
    }

        .row .expand.double {
            padding-right: 1.38889%;
        }

            .row .expand.double + [class^=span] {
                margin-left: 0;
            }

@media all and (min-width: 570px) {
    .row.vertical-centre {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.row .text-right {
    text-align: right;
}

.row .text-centre {
    text-align: center;
}

.row .inner-row {
    margin-left: -2.6%;
}

    .row .inner-row [class^=span] {
        margin-right: 0;
        margin-left: 2.6%;
    }

.row [class*=border-left] {
    margin-left: 0;
    padding-left: 1.38889%;
}

@media all and (min-width: 570px) {
    .row.gapless {
        padding: 0 1.38889%;
    }
}

.row.gapless [class^=span] {
    margin: 0;
}

@media all and (min-width: 570px) {
    .row.gapless .span4 {
        width: 33.33333%;
    }
}

@media all and (max-width: 568px) {
    .row.gapless [class^=span] {
        width: 100% !important;
        margin: 0 !important;
    }
}

.row .span1 {
    width: 5.55556%;
}

    .row .span1.expand {
        width: 8.33333%;
    }

.row .span2 {
    width: 13.88889%;
}

    .row .span2.expand {
        width: 16.66667%;
    }

.row .span3 {
    width: 22.22222%;
}

    .row .span3.expand {
        width: 25%;
    }

.row .span4 {
    width: 30.55556%;
}

    .row .span4.expand {
        width: 33.33333%;
    }

.row .span5 {
    width: 38.88889%;
}

    .row .span5.expand {
        width: 41.66667%;
    }

.row .span6 {
    width: 47.22222%;
}

    .row .span6.expand {
        width: 47.22222%;
    }

.row .span7 {
    width: 55.55556%;
}

    .row .span7.expand {
        width: 58.33333%;
    }

.row .span8 {
    width: 63.88889%;
}

    .row .span8.expand {
        width: 66.66667%;
    }

.row .span9 {
    width: 72.22222%;
}

    .row .span9.expand {
        width: 75%;
    }

.row .span10 {
    width: 80.55556%;
}

    .row .span10.expand {
        width: 83.33333%;
    }

.row .span11 {
    width: 88.88889%;
}

    .row .span11.expand {
        width: 91.66667%;
    }

.row .span12 {
    width: 97.22222%;
}

    .row .span12.expand {
        width: 100%;
    }

.row .offset1 {
    margin-left: 9.72222%;
}

.row .offset2 {
    margin-left: 18.05556%;
}

.row .offset3 {
    margin-left: 26.38889%;
}

.row .offset4 {
    margin-left: 34.72222%;
}

.row .offset5 {
    margin-left: 43.05556%;
}

.row .offset6 {
    margin-left: 51.38889%;
}

.row .offset7 {
    margin-left: 59.72222%;
}

.row .offset8 {
    margin-left: 68.05556%;
}

.row .offset9 {
    margin-left: 76.38889%;
}

.row .offset10 {
    margin-left: 84.72222%;
}

.row .offset11 {
    margin-left: 93.05556%;
}

.row:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

@media all and (max-width: 568px) {
    section .row [class^=span] {
        width: 97.22222%;
    }

    section .row [class*=offset] {
        margin-left: 1.38889%;
    }
}

/*** Override row max-with when within Umbraco grid ***/
.f-container > .row,
#COPA-content > div > .row {
    max-width: none;
}

/*** Global and page-specific form style ***/
.standard-form [class^='span'] {
    margin-bottom: 1.38889%;
}

.standard-form span {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

.standard-form .button {
    max-height: 38px;
    line-height: normal;
}

.rich-text .standard-form {
    margin-left: -1.38889%;
    margin-right: -1.38889%;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

label {
    display: block;
    margin-bottom: 5px;
}

    label.hidden {
        height: 0 !important;
        width: 0 !important;
        font-size: 0 !important;
        margin: 0 !important;
    }

button {
    border: none;
}

    button:focus {
        outline: none;
    }

input {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border-radius: 0;
    border: none;
    font-size: 16px;
}

    input::-webkit-input-placeholder {
        color: rgba(0, 0, 0, 0.5);
    }

    input:-moz-placeholder {
        /* Firefox 18- */
        color: rgba(0, 0, 0, 0.5);
    }

    input::-moz-placeholder {
        /* Firefox 19+ */
        color: rgba(0, 0, 0, 0.5);
    }

    input:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.5);
    }

    input:focus {
        outline: 0;
    }

    input[type='radio'], input[type='checkbox'] {
        height: auto;
    }

    input[type='submit'] {
        width: auto;
        border: none;
    }

    input[type="search"] {
        -webkit-appearance: none;
    }

input,
textarea,
select,
button,
.radio-wrapper,
.checkbox-wrapper {
    border-radius: 0;
}

    input:focus,
    textarea:focus,
    select:focus,
    button:focus,
    .radio-wrapper:focus,
    .checkbox-wrapper:focus {
        outline: 0;
    }

textarea {
    width: 100%;
}

.select-wrapper,
select {
    width: 100%;
}

select {
    padding: 8px;
    cursor: pointer;
}

.select-wrapper {
    position: relative;
}

    .select-wrapper label {
        visibility: hidden;
        height: 0;
        margin: 0;
    }

    .select-wrapper select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        .select-wrapper select:focus + .select-arrow:before {
            top: 10px;
            -webkit-transform: rotate(-45deg) scaleY(-1);
            transform: rotate(-45deg) scaleY(-1);
        }

    .select-wrapper .select-arrow {
        position: absolute;
        top: 50%;
        right: 10px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 26px;
        height: 26px;
        /* height of select-wrapper, minus 2 for border */
        background-color: #FFF;
        pointer-events: none;
        /** NOTE: be sure to watch out for changes in heights based on changes in typograhpy sizes **/
    }

html[dir='rtl'] .select-wrapper .select-arrow {
    right: auto;
    left: 10px;
}

.select-wrapper .select-arrow:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media all and (max-width: 568px) {
    .select-wrapper .select-arrow {
        bottom: 21px;
    }
}

html.no-webgl.no-flexboxlegacy .select-wrapper .select-arrow {
    display: none;
}

input[type='radio'], input[type='checkbox'] {
    position: absolute;
    left: -9999px;
}

.checkbox-wrapper label,
.umbraco-forms-section .umbraco-forms-form .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label,
.ecommerce .checkbox-wrapper label,
.ecommerce-layout .checkbox-wrapper label,
.ecommerce-checkout .checkbox-wrapper label {
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
    cursor: pointer;
}

    .checkbox-wrapper label:before,
    .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label:before,
    .ecommerce .checkbox-wrapper label:before,
    .ecommerce-layout .checkbox-wrapper label:before,
    .ecommerce-checkout .checkbox-wrapper label:before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        top: 1px;
        left: 0;
        border: 1px solid #020F2A;
        background-color: #FFF;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-position: 55% 55%;
        background-repeat: no-repeat;
        background-size: 10px auto;
    }

    .checkbox-wrapper label a,
    .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label a,
    .ecommerce .checkbox-wrapper label a,
    .ecommerce-layout .checkbox-wrapper label a,
    .ecommerce-checkout .checkbox-wrapper label a {
        color: #003282;
    }

        .checkbox-wrapper label a:hover,
        .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper label a:hover,
        .ecommerce .checkbox-wrapper label a:hover,
        .ecommerce-layout .checkbox-wrapper label a:hover,
        .ecommerce-checkout .checkbox-wrapper label a:hover {
            text-decoration: none;
        }

.checkbox-wrapper input[type='checkbox']:checked + label:before,
.checkbox-wrapper input[type='checkbox']:checked + input + label:before,
.umbraco-forms-section .umbraco-forms-form .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper input[type='checkbox']:checked + label:before,
.ecommerce .checkbox-wrapper input[type='checkbox']:checked + label:before,
.ecommerce-layout .checkbox-wrapper input[type='checkbox']:checked + label:before,
.ecommerce-checkout .checkbox-wrapper input[type='checkbox']:checked + label:before,
.umbraco-forms-section .umbraco-forms-form .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper input[type='checkbox']:checked + input + label:before,
.ecommerce .checkbox-wrapper input[type='checkbox']:checked + input + label:before,
.ecommerce-layout .checkbox-wrapper input[type='checkbox']:checked + input + label:before,
.ecommerce-checkout .checkbox-wrapper input[type='checkbox']:checked + input + label:before {
    content: '\2714';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #FFF;
    background-color: #020F2A;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.checkbox-wrapper.inline label,
.umbraco-forms-section .umbraco-forms-form .umbraco-forms-field.dataconsent .inline.umbraco-forms-field-wrapper label,
.ecommerce .inline.checkbox-wrapper label,
.ecommerce-layout .inline.checkbox-wrapper label,
.ecommerce-checkout .inline.checkbox-wrapper label {
    display: inline-block;
    margin-right: 30px;
}

.radio-wrapper label {
    position: relative;
    padding-left: 46px;
    cursor: pointer;
}

    .radio-wrapper label::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 16px;
        border: 2px solid #B3B3B3;
        border-radius: 100%;
        background-color: #FFF;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: none;
    }

.radio-wrapper input[type='radio']:checked + label:before,
.radio-wrapper input[type='radio']:checked + input + label:before {
    border-color: #003282;
}

.radio-wrapper input[type='radio']:checked + label::after,
.radio-wrapper input[type='radio']:checked + input + label::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    background-color: #003282;
    border-radius: 100%;
}

form .fieldset-2-col,
form .field-2-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media all and (max-width: 768px) {
    form .fieldset-2-col {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

form .fieldset-2-col fieldset {
    width: calc(50% - 40px);
}

@media all and (max-width: 768px) {
    form .fieldset-2-col fieldset {
        width: 100%;
    }
}

form .fieldset-2-col .btn {
    margin-left: 30px;
}

form .field-2-col .input-wrap {
    width: calc(50% - 4px);
}

form fieldset.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

form fieldset.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

form button {
    margin: auto auto 10px 0;
}

/*** Outline variant ***/
form.-outline input,
form.-outline textarea,
form.-outline select {
    background-color: #FFF;
    border: none;
    border-radius: 18px;
    color: #020F2A;
    padding: 10px 12px;
    font-size: 16px;
    height: auto;
}

    form.-outline input::-webkit-input-placeholder,
    form.-outline textarea::-webkit-input-placeholder,
    form.-outline select::-webkit-input-placeholder {
        color: #020F2A;
        opacity: 0.7;
    }

    form.-outline input:-moz-placeholder,
    form.-outline textarea:-moz-placeholder,
    form.-outline select:-moz-placeholder {
        /* Firefox 18- */
        color: #020F2A;
        opacity: 0.7;
    }

    form.-outline input::-moz-placeholder,
    form.-outline textarea::-moz-placeholder,
    form.-outline select::-moz-placeholder {
        /* Firefox 19+ */
        color: #020F2A;
        opacity: 0.7;
    }

    form.-outline input:-ms-input-placeholder,
    form.-outline textarea:-ms-input-placeholder,
    form.-outline select:-ms-input-placeholder {
        color: #020F2A;
        opacity: 0.7;
    }

form.-outline textarea {
    padding: 15px;
}

form.-outline .input-wrap {
    margin-bottom: 14px;
}

    form.-outline .input-wrap:last-child {
        margin-bottom: 0;
    }

form.-outline .select-wrapper select {
    background-color: #FFF;
    background-image: none;
}

form.-outline .select-wrapper .select-arrow {
    background-color: #FFF;
}

    form.-outline .select-wrapper .select-arrow:before {
        border-color: #020F2A;
    }

form.-outline label,
form.-outline p {
    color: #020F2A;
}

form.-outline p {
    font-size: 22px;
    line-height: 26px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    opacity: 0.8;
}

form.-outline label {
    font-weight: normal;
}

form.-outline .checkbox-wrapper label {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
    margin-bottom: 30px;
    background-image: none;
}

form.-outline .button {
    margin-top: 0;
    padding-left: 36px;
    padding-right: 36px;
}

#FWWC23 form.-outline input,
#FWWC23 form.-outline textarea,
#FWWC23 form.-outline select,
#FWWC23 form.-outline p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 form.-outline label {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: normal;
}

/*** Country Code + Phone Number input layout ***/
.input-wrap--phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .input-wrap--phone .select-wrapper {
        max-width: 190px;
        margin-right: 10px;
    }

html[dir='rtl'] .input-wrap--phone .select-wrapper {
    margin-right: 0;
    margin-left: 10px;
}

/*** Contact specific styles ***/
@media all and (min-width: 769px1) {
    .contact-form p.-mobile-only {
        display: none;
    }
}

@media all and (max-width: 768px) {
    .contact-form p:not(.-mobile-only) {
        display: none;
    }
}

.field-validation-error {
    display: block;
    color: #FD2A2A;
}

/*** Umbraco Forms ***/
.umbraco-forms-section {
    padding: 0;
    background-color: #f3f1eb;
}

    .umbraco-forms-section .title {
        color: #1c1919;
    }

        .umbraco-forms-section .title h2, .umbraco-forms-section .title h3, .umbraco-forms-section .title h4 {
            margin-bottom: 0.5em;
        }

    .umbraco-forms-section .section-container {
        padding-top: 0 !important;
    }

    .umbraco-forms-section .umbraco-forms-form {
        padding: 80px 40px;
    }

        .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field-wrapper input[type=text],
        .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field-wrapper input.text,
        .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field-wrapper input[type=email],
        .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field-wrapper input[type=password],
        .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field-wrapper select,
        .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field-wrapper textarea {
            height: 36px;
            border: none;
            border-radius: 36px;
            color: #3D3D3D;
            font-weight: 400;
            font-size: 16px;
        }

        .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field-wrapper select {
            margin: 0 0 14px;
            font-weight: 400;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            padding: 4px 40px 4px 20px !important;
            background-image: url("../../media/ni3f1pnd/chevron-down.svg");
            background-position: right 20px center;
            background-size: 12px auto;
            background-repeat: no-repeat;
            background-color: #FFF;
        }

        .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field-wrapper textarea {
            height: 150px;
            border-radius: 10px;
        }

        .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper input[type=checkbox] {
            position: absolute;
            left: -9999px;
        }

            .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper input[type=checkbox] ~ label::before {
                top: -2px;
                border: none;
                width: 20px;
                height: 20px;
                border-radius: 100%;
            }

            .umbraco-forms-section .umbraco-forms-form .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper input[type=checkbox]:checked ~ label::before {
                content: '' !important;
                background-color: #FFF !important;
                background-image: url("../../media/yand2ngu/check-icon-black.svg");
            }

    .umbraco-forms-section p a {
        color: #020F2A;
    }

        .umbraco-forms-section p a:hover, .umbraco-forms-section p ins:hover {
            text-decoration: none;
        }

/*** Hero Banner Styles ***/
.hero-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 90vh;
    min-height: 480px;
    width: 100%;
    padding: 0 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-bottom: none;
}

@media all and (max-width: 568px) {
    .hero-area {
        height: 90vh !important;
    }

    .hero-area--slider {
        height: auto !important;
    }
}

.hero-area.-has-video .hero-area__bg-image {
    display: none;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-area video {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-area--short {
    max-height: calc(565px + var(--siteHeaderHeight));
}

.hero-area--v-short {
    min-height: 0;
    max-height: calc(265px + var(--siteHeaderHeight));
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#1c1919));
    background: linear-gradient(to bottom, #000 0%, #1c1919 100%);
}

@media all and (max-width: 568px) {
    .hero-area--v-short {
        max-height: calc(200px + var(--siteHeaderHeight));
    }
}

@media all and (max-width: 568px) {
    .hero-area {
        height: 100vh;
    }
}

.hero-area__bg-image::before {
    content: unset;
}

.hero-area__mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media all and (min-width: 569px) {
    .hero-area__mobile-bg {
        display: none;
    }
}

.hero-area__video::before {
    display: none;
}

@media all and (max-width: 568px) {
    .hero-area__video {
        display: none;
    }
}

#FWWC23 .hero-area__inner,
.hero-area__inner {
    position: relative;
    max-width: 1060px;
    padding-top: 100px;
    text-align: center;
    z-index: 1;
}

    #FWWC23 .hero-area__inner > *:last-child,
    .hero-area__inner > *:last-child {
        margin-bottom: 0;
    }

    #FWWC23 .hero-area__inner img + h1,
    .hero-area__inner img + h1 {
        margin-top: 30px;
    }

    #FWWC23 .hero-area__inner > img,
    .hero-area__inner > img {
        -webkit-filter: grayscale(1) brightness(2);
        filter: grayscale(1) brightness(2);
    }

    #FWWC23 .hero-area__inner h1,
    .hero-area__inner h1 {
        color: #FFF;
        background: linear-gradient(77deg, #C99A42 0%, #FFD56C 66%, #C99A42 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 96px !important;
        line-height: 94px;
        margin-bottom: 32px;
    }

@media all and (max-width: 1360px) {
    #FWWC23 .hero-area__inner h1,
    .hero-area__inner h1 {
        font-size: 64px !important;
        line-height: 68px;
    }
}

@media all and (max-width: 768px) {
    #FWWC23 .hero-area__inner h1,
    .hero-area__inner h1 {
        font-size: 44px !important;
        line-height: 48px;
    }
}

@media all and (max-width: 568px) {
    #FWWC23 .hero-area__inner h1,
    .hero-area__inner h1 {
        font-size: 34px !important;
        line-height: 38px;
        margin-bottom: 16px;
    }
}

@media all and (min-width: 769px) {
    .hero-area.hero-area--v-short #FWWC23 .hero-area__inner h1, .hero-area.hero-area--v-short
    .hero-area__inner h1 {
        font-size: 60px !important;
        line-height: 64px;
    }
}

#FWWC23 .hero-area__inner p,
.hero-area__inner p {
    font-size: 24px;
    line-height: 28px;
    color: #FFF;
    max-width: 440px;
    margin: 0 auto;
}

@media all and (max-width: 568px) {
    #FWWC23 .hero-area__inner p,
    .hero-area__inner p {
        font-size: 16px;
        line-height: 22px;
    }
}

.hero-area.-has-video #FWWC23 .hero-area__inner p, .hero-area.-has-video
.hero-area__inner p {
    font-size: 16px;
    line-height: 22px;
}

@-webkit-keyframes arrowIndicator {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(-300%) rotate(-45deg);
        transform: translateX(-50%) translateY(-300%) rotate(-45deg);
    }

    25% {
        opacity: 1;
        -webkit-transform: translateX(-50%) translateY(0) rotate(-45deg);
        transform: translateX(-50%) translateY(0) rotate(-45deg);
    }

    85% {
        opacity: 1;
        -webkit-transform: translateX(-50%) translateY(0) rotate(-45deg);
        transform: translateX(-50%) translateY(0) rotate(-45deg);
    }

    95% {
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(0) rotate(-45deg);
        transform: translateX(-50%) translateY(0) rotate(-45deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(0) rotate(-45deg);
        transform: translateX(-50%) translateY(0) rotate(-45deg);
    }
}

@keyframes arrowIndicator {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(-300%) rotate(-45deg);
        transform: translateX(-50%) translateY(-300%) rotate(-45deg);
    }

    25% {
        opacity: 1;
        -webkit-transform: translateX(-50%) translateY(0) rotate(-45deg);
        transform: translateX(-50%) translateY(0) rotate(-45deg);
    }

    85% {
        opacity: 1;
        -webkit-transform: translateX(-50%) translateY(0) rotate(-45deg);
        transform: translateX(-50%) translateY(0) rotate(-45deg);
    }

    95% {
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(0) rotate(-45deg);
        transform: translateX(-50%) translateY(0) rotate(-45deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(0) rotate(-45deg);
        transform: translateX(-50%) translateY(0) rotate(-45deg);
    }
}

/*** Stadiums Variant ***/
.hero-area--stadium {
    min-height: 600px;
}

    .hero-area--stadium::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), color-stop(90%, rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.9)));
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 90%, rgba(0, 0, 0, 0.9) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .hero-area--stadium .row {
        position: relative;
    }

    .hero-area--stadium .hero-area__inner {
        padding-top: 100px;
    }

    .hero-area--stadium p {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 26px;
        line-height: 1.625rem;
    }

#FWWC23 .hero-area--stadium .hero-area__inner p {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 26px;
    line-height: 1.625rem;
}

.hero-play-icon,
.full-width-video__play-icon {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    margin: 20px auto 30px;
    border-radius: 100%;
    border: 2px solid #FFF;
    cursor: pointer;
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}

    .hero-play-icon::before,
    .full-width-video__play-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        -webkit-transform: translate(-30%, -50%);
        transform: translate(-30%, -50%);
        border-left: 15px solid #FFF;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-right: none;
    }

    .hero-play-icon::after,
    .full-width-video__play-icon::after {
        display: none;
    }

    .hero-play-icon:hover,
    .full-width-video__play-icon:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

        .hero-play-icon:hover::before,
        .full-width-video__play-icon:hover::before {
            background: none;
        }

    .hero-play-icon.playing,
    .full-width-video__play-icon.playing {
        opacity: 0;
    }

/*** Stadium Detail Variant ***/
.hero-area--stadium-detail h1 {
    position: relative;
    padding-bottom: 35px;
    margin-bottom: 30px;
}

@media all and (max-width: 568px) {
    .hero-area--stadium-detail h1 {
        padding-bottom: 22px;
        margin-bottom: 18px;
    }
}

.hero-area--stadium-detail h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 848px;
    height: 2px;
    background-color: #FFF;
    -webkit-transform: translateX(-50%) scaleY(0.5);
    transform: translateX(-50%) scaleY(0.5);
}

.hero-area--stadium-detail h2 {
    font-size: 32px;
    font-size: 2rem;
    line-height: 28px;
    line-height: 1.75rem;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media all and (max-width: 568px) {
    .hero-area--stadium-detail h2 {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 24px;
        line-height: 1.5rem;
    }
}

.hero-area--stadium-detail .hero-area__inner {
    padding-top: 100px;
}

    .hero-area--stadium-detail .hero-area__inner p {
        font-size: 16px;
        font-size: 1rem;
        line-height: 20px;
        line-height: 1.25rem;
        color: #FFF;
        max-width: 524px;
    }

.hero-area-border-graphic {
    width: 100%;
    height: 60px;
    background-image: url(/media/rstfzwtl/blue-background-general.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

.hero-area-border-graphic--white {
    background-image: url("/media/wpxnwnzy/white-background-general.png");
}

#FWWC23 .hero-area--stadium-detail .hero-area__inner p {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
    max-width: 460px;
    color: #EEECD4;
}

.hero-area--slider {
    display: block;
    padding: 0;
}

    .hero-area--slider::before {
        content: unset;
    }

    .hero-area--slider::after {
        display: none;
    }

@media all and (max-width: 568px) {
    .hero-area--slider {
        height: 100%;
    }

        .hero-area--slider .slick-track,
        .hero-area--slider .slick-list {
            height: 100%;
        }

        .hero-area--slider .slick-track {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
}

.hero-area--slider .simple-image-slider__dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    margin-top: 0;
    z-index: 1;
}

@media all and (max-width: 568px) {
    .hero-area--slider .simple-image-slider__dots .slick-dots li {
        vertical-align: middle;
    }
}

.hero-area--slider .simple-image-slider__dots .slick-dots li button {
    background-color: #FFF;
}

    .hero-area--slider .simple-image-slider__dots .slick-dots li button:hover {
        background-color: #FFF;
    }

        .hero-area--slider .simple-image-slider__dots .slick-dots li button:hover::after {
            border-color: #FFF;
        }

    .hero-area--slider .simple-image-slider__dots .slick-dots li button::after {
        width: 18px;
        height: 18px;
    }

.hero-area--slider .simple-image-slider__dots .slick-dots li.slick-active button {
    background-color: #FFF;
}

    .hero-area--slider .simple-image-slider__dots .slick-dots li.slick-active button:after {
        border-color: #FFF;
    }

.hero-area-slider {
    position: relative;
    z-index: 1;
}

.hero-area-slider-slide {
    max-height: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .hero-area-slider-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 0;
        pointer-events: none;
    }

.hero-area-slider.slick-initialized .hero-area-slider-slide.slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media all and (max-width: 568px) {
    .hero-area-slider-slide {
        padding-bottom: 110px;
    }
}

.hero-area-slider-slide p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
    color: #F6F2EC;
    margin: 0;
}

.hero-area-slider-slide__title {
    position: relative;
    margin-bottom: 26px;
    padding-bottom: 48px;
    color: #FFF;
    font-size: 104px;
    line-height: 96px;
}

    .hero-area-slider-slide__title::after {
        content: '';
        position: absolute;
        width: 130%;
        height: 1px;
        left: 50%;
        bottom: 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #FFF;
    }

@media all and (max-width: 1360px) {
    .hero-area-slider-slide__title::after {
        width: 100%;
    }
}

@media all and (max-width: 1360px) {
    .hero-area-slider-slide__title {
        font-size: 70px;
        line-height: 80px;
        margin-bottom: 22px;
        padding-bottom: 30px;
    }
}

@media all and (max-width: 768px) {
    .hero-area-slider-slide__title {
        font-size: 50px;
        line-height: 60px;
    }
}

@media all and (max-width: 568px) {
    .hero-area-slider-slide__title {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 10px;
        padding-bottom: 15px;
    }
}

.hero-area-slider-slide__sub-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem;
    display: block;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 36px;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media all and (max-width: 568px) {
    .hero-area-slider-slide__sub-title {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 0;
    }
}

.hero-area-slider-arrows-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1440px;
    padding: 0 50px;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none;
    z-index: 1;
}

    .hero-area-slider-arrows-wrapper .slick-arrow {
        position: relative;
        top: auto;
        pointer-events: auto;
        background-color: transparent;
        font-size: 0;
        width: 28px;
        height: 28px;
        border-top: 2px solid #FFF;
        border-right: 2px solid #FFF;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: -webkit-transform 0.25s ease;
        transition: -webkit-transform 0.25s ease;
        transition: transform 0.25s ease;
        transition: transform 0.25s ease, -webkit-transform 0.25s ease;
    }

        .hero-area-slider-arrows-wrapper .slick-arrow.slick-prev {
            left: 0;
            -webkit-transform: rotate(45deg) scale(-1);
            transform: rotate(45deg) scale(-1);
        }

            .hero-area-slider-arrows-wrapper .slick-arrow.slick-prev:hover {
                -webkit-transform: rotate(45deg) scale(-1) translate(5px, -5px);
                transform: rotate(45deg) scale(-1) translate(5px, -5px);
            }

        .hero-area-slider-arrows-wrapper .slick-arrow.slick-next {
            right: 0;
        }

            .hero-area-slider-arrows-wrapper .slick-arrow.slick-next:hover {
                -webkit-transform: rotate(45deg) translate(5px, -5px);
                transform: rotate(45deg) translate(5px, -5px);
            }

        .hero-area-slider-arrows-wrapper .slick-arrow::before {
            display: none;
        }

@media all and (max-width: 568px) {
    .hero-area-slider-arrows-wrapper .slick-arrow {
        width: 20px;
        height: 20px;
    }
}

@media all and (max-width: 768px) {
    .hero-area-slider-arrows-wrapper {
        top: auto;
        bottom: 45px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media all and (max-width: 568px) {
    .hero-area-slider-arrows-wrapper {
        padding: 0 30px;
    }
}

#FWWC23 .hero-area-slider-slide p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.product-hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: auto;
    width: 100%;
    margin-top: calc(var(--siteHeaderHeight) * -1);
    padding: 70vh 0 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .product-hero::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #000;
        opacity: 0.3;
    }

@media all and (max-width: 568px) {
    .product-hero {
        background-image: none !important;
    }
}

.product-hero__mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

@media all and (min-width: 569px) {
    .product-hero__mobile-bg {
        display: none;
    }
}

.product-hero__content {
    --border-color: #C99A42;
    position: relative;
    width: 100%;
    min-height: calc(50% - 62px);
    padding: 0 40px 70px;
    border-top: 5px solid var(--border-color);
}

.product-hero.product-hero--flagship-lounge .product-hero__content {
    background: #fffbf0;
}

.product-hero.product-hero--private-suite .product-hero__content {
    background: #000;
}

.product-hero.product-hero--shared-suite .product-hero__content {
    background: #3c3c3b;
}

.product-hero.product-hero--premier-lounge .product-hero__content,
.product-hero.product-hero--lineman-lounge .product-hero__content {
    background: #2e2d2c;
}

.product-hero.product-hero--club-plus .product-hero__content,
.product-hero.product-hero--club .product-hero__content {
    background: #F0F0F0;
}

.product-hero.product-hero--club-seats .product-hero__content {
    background: #FFF;
}

@media all and (max-width: 568px) {
    .product-hero__content {
        padding: 0 40px 40px;
    }
}

.product-hero__content-inner {
    --text-color: #1c1919;
    --heading-text-color: #1c1919;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 740px;
    margin: 0 auto;
    padding-top: 120px;
    text-align: center;
    color: var(--text-color);
}

    .product-hero__content-inner h1 {
        font-size: 82px !important;
        line-height: 76px;
        color: var(--heading-text-color);
        margin: 0.25em auto 0.5em;
    }

@media all and (max-width: 1360px) {
    .product-hero__content-inner h1 {
        font-size: 56px !important;
        line-height: 64px;
    }
}

@media all and (max-width: 768px) {
    .product-hero__content-inner h1 {
        font-size: 40px !important;
        line-height: 48px;
    }
}

@media all and (max-width: 568px) {
    .product-hero__content-inner h1 {
        font-size: 34px !important;
        line-height: 44px;
        margin-bottom: 16px;
    }
}

.product-hero__content-inner .star-rating {
    margin: 0 auto;
}

    .product-hero__content-inner .star-rating img,
    .product-hero__content-inner .star-rating svg {
        width: 26px;
        height: 24px;
    }

@media all and (min-width: 769px) {
    .product-hero__content-inner .star-rating img,
    .product-hero__content-inner .star-rating svg {
        width: 42px;
        height: 40px;
    }
}

.product-hero.product-hero--flagship-lounge .product-hero__content-inner .star-rating svg,
.product-hero.product-hero--private-suite .product-hero__content-inner .star-rating svg {
    color: #C99A42;
}

.product-hero.product-hero--shared-suite .product-hero__content-inner .star-rating svg,
.product-hero.product-hero--premier-lounge .product-hero__content-inner .star-rating svg,
.product-hero.product-hero--lineman-lounge .product-hero__content-inner .star-rating svg {
    color: #FFF;
}

.product-hero.product-hero--club-plus .product-hero__content-inner .star-rating svg,
.product-hero.product-hero--club .product-hero__content-inner .star-rating svg,
.product-hero.product-hero--club-seats .product-hero__content-inner .star-rating svg {
    color: #000;
}

.product-hero__content-inner h4 {
    margin-bottom: 1em;
    font-size: 22px;
    line-height: 26px;
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
    font-weight: var(--base-font-weight) !important;
    color: inherit;
}

@media all and (max-width: 420px) {
    .product-hero__content-inner h4 {
        font-size: 20px;
        line-height: 24px;
    }
}

.product-hero__content-inner p {
    max-width: 370px;
    margin: 0 auto;
    color: inherit;
}

.product-hero__content-inner .text-cta {
    margin: 30px auto 0;
    color: var(--text-color);
    border-color: var(--border-color);
}

    .product-hero__content-inner .text-cta::after {
        border-color: var(--border-color);
    }

    .product-hero__content-inner .text-cta:hover {
        color: var(--text-color);
    }

.product-hero.product-hero--club-copa .product-hero__content-inner .text-cta {
    --border-color: #FFF;
}

.product-hero.product-hero--flagship-lounge .product-hero__content-inner {
    --text-color: #1c1919;
}

.product-hero.product-hero--shared-suite .product-hero__content-inner,
.product-hero.product-hero--premier-lounge .product-hero__content-inner {
    --text-color: #FFF;
    --heading-text-color: #FFD56C;
}

.product-hero.product-hero--private-suite .product-hero__content-inner,
.product-hero.product-hero--lineman-lounge .product-hero__content-inner {
    --text-color: #FFF;
    --heading-text-color: #FFF;
}

.product-hero.product-hero--club-plus .product-hero__content-inner,
.product-hero.product-hero--club .product-hero__content-inner,
.product-hero.product-hero--club-seats .product-hero__content-inner {
    --text-color: #000;
    --heading-text-color: #000;
}

#FWWC23 .product-hero__content-inner p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.product-hero__icon-wrapper {
    --border-color: #C99A42;
    --bg-color: #1c1919;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    left: 50%;
    width: 176px;
    height: 176px;
    margin: 0 auto;
    border: 5px solid var(--border-color);
    background-color: var(--bg-color);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
}

    .product-hero__icon-wrapper > img {
        position: relative;
        width: 100%;
        max-width: 70%;
        height: auto;
        border-radius: 100%;
        right: -3px;
    }

.product-hero.product-hero--flagship-lounge .product-hero__icon-wrapper {
    --bg-color: #fffbf0;
}

.product-hero.product-hero--private-suite .product-hero__icon-wrapper {
    --bg-color: #000;
}

.product-hero.product-hero--shared-suite .product-hero__icon-wrapper {
    --bg-color: #3c3c3b;
}

.product-hero.product-hero--premier-lounge .product-hero__icon-wrapper,
.product-hero.product-hero--lineman-lounge .product-hero__icon-wrapper {
    --bg-color: #2e2d2c;
}

.product-hero.product-hero--club-plus .product-hero__icon-wrapper,
.product-hero.product-hero--club .product-hero__icon-wrapper {
    --bg-color: #F0F0F0;
}

.product-hero.product-hero--club-seats .product-hero__icon-wrapper {
    --bg-color: #FFF;
}

/*** BUTTON Styles ***/
.button,
.newsletter .btn-primary,
.newsletter .submit-button,
.product-result .atc-button-wrapper .fifa-btn,
.product-result .action-button-wrapper .fifa-btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 9px 24px;
    color: #FFF;
    font-family: "Anton";
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    border-radius: 18px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #020F2A;
    letter-spacing: 1.2px;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

    .button:hover,
    .newsletter .btn-primary:hover,
    .newsletter .submit-button:hover,
    .product-result .atc-button-wrapper .fifa-btn:hover,
    .product-result .action-button-wrapper .fifa-btn:hover {
        background-color: #052973;
        color: #FFF;
    }

.button--outline {
    padding: 9px 22px;
    border: 2px solid #eccc72;
    background-color: transparent;
    color: #eccc72;
}

    .button--outline:hover, .button--outline:active {
        background-color: #eccc72;
        color: #FFF;
    }

.button--outline-black {
    color: #3D3D3D;
    border-color: #3D3D3D;
}

    .button--outline-black:hover, .button--outline-black:active {
        background-color: #3D3D3D;
    }

.button--outline-brand-black {
    color: #1c1919;
    border-color: #1c1919;
}

    .button--outline-brand-black:hover, .button--outline-brand-black:active {
        background-color: #1c1919;
    }

.button--outline-brand-navy {
    color: #020F2A;
    border-color: #020F2A;
    background-color: #FFF;
}

    .button--outline-brand-navy:hover, .button--outline-brand-navy:active {
        background-color: #020F2A;
    }

.button--outline-brand-navy-3 {
    color: #004079;
    border-color: #004079;
    background-color: #FFF;
}

    .button--outline-brand-navy-3:hover, .button--outline-brand-navy-3:active {
        background-color: #004079;
    }

.button--outline-beige {
    color: #EEECD4;
    border-color: #EEECD4;
}

    .button--outline-beige:hover, .button--outline-beige:active {
        background-color: #EEECD4;
        color: #3D3D3D;
    }

.button--outline-beige-light {
    color: #F6F2EC;
    border-color: #F6F2EC;
}

    .button--outline-beige-light:hover, .button--outline-beige-light:active {
        background-color: #F6F2EC;
        color: #3D3D3D;
    }

.button--outline-white {
    color: #FFF;
    border-color: #FFF;
}

    .button--outline-white:hover, .button--outline-white:active {
        background-color: #FFF;
        color: #3D3D3D;
    }

.button--outline-gold-light {
    color: #FFD56C;
    border-color: #FFD56C;
}

    .button--outline-gold-light:hover, .button--outline-gold-light:active {
        background-color: #FFD56C;
        color: #FFF;
    }

.button--outline-australia {
    color: #009645;
    border-color: #009645;
}

    .button--outline-australia:hover, .button--outline-australia:active {
        background-color: #009645;
        color: #FFF;
    }

.button--outline-newzealand {
    color: #0098FF;
    border-color: #0098FF;
}

    .button--outline-newzealand:hover, .button--outline-newzealand:active {
        background-color: #0098FF;
        color: #FFF;
    }

.button--outline-white-bg {
    background-color: #FFF;
}

.button--outline-match-private {
    border-color: #0f6478;
    color: #0f6478;
}

    .button--outline-match-private:hover, .button--outline-match-private:active {
        background-color: #0f6478;
    }

.button--outline-match-shared {
    border-color: #b48840;
    color: #b48840;
}

    .button--outline-match-shared:hover, .button--outline-match-shared:active {
        background-color: #b48840;
    }

.button--outline-match-place {
    border-color: #E75521;
    color: #E75521;
}

    .button--outline-match-place:hover, .button--outline-match-place:active {
        background-color: #E75521;
    }

.button--outline-match-club {
    border-color: #a7252a;
    color: #a7252a;
}

    .button--outline-match-club:hover, .button--outline-match-club:active {
        background-color: #a7252a;
    }

@media all and (min-width: 569px) {
    .button--medium {
        padding: 18px 3.25em;
        font-size: 18px;
        line-height: 22px;
        border-radius: 40px;
        border-width: 3px;
    }
}

.button--medium.button--icon {
    padding: 24px 1.5em;
}

@media all and (max-width: 568px) {
    .button--medium.button--icon {
        padding: 16px 1.5em;
    }
}

.button--large {
    padding: 20px 40px;
    font-size: 36px;
    line-height: 40px;
    border-radius: 40px;
    border-width: 3px;
}

@media all and (max-width: 768px) {
    .button--large {
        padding: 15px 30px;
        font-size: 28px;
        line-height: 30px;
    }
}

@media all and (max-width: 568px) {
    .button--large {
        padding: 10px 20px;
        font-size: 18px;
        line-height: 20px;
    }
}

.button--large.button--icon {
    padding: 24px 1.5em;
}

@media all and (max-width: 568px) {
    .button--large.button--icon {
        padding: 16px 1.5em;
    }
}

.button--red {
    background-color: #FD2A2A;
}

    .button--red:hover {
        background-color: #d80202;
    }

.button--gold {
    color: #020F2A;
    border: 2px solid transparent;
    background-color: transparent;
}

    .button--gold::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(77deg, #B58506 0%, #C99A42 25%, #FFD56C 50%, #C99A42 75%);
        z-index: -1;
        -webkit-transition: opacity 0.25s ease;
        transition: opacity 0.25s ease;
    }

    .button--gold:hover {
        color: #eccc72;
        border-color: #eccc72;
        background-color: #000;
    }

        .button--gold:hover::before {
            opacity: 0;
        }

.button--brand-navy-2 {
    background-color: #003282;
}

    .button--brand-navy-2:hover {
        background-color: #004fcf;
    }

.button--icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media all and (max-width: 420px) {
    .button--icon {
        font-size: 16px;
    }
}

.button--icon > i {
    position: relative;
}

    .button--icon > i:first-child {
        margin-right: 25px;
    }

@media all and (max-width: 568px) {
    .button--icon > i:first-child {
        margin-right: 10px;
    }
}

.button--icon > i:last-child {
    margin-left: 25px;
}

@media all and (max-width: 568px) {
    .button--icon > i:last-child {
        margin-left: 10px;
    }
}

.button--icon > i img {
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    min-width: 30px;
}

    .button--icon > i img:last-child {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 0;
    }

.button--icon:hover > i img {
    opacity: 0;
}

    .button--icon:hover > i img:last-child {
        opacity: 1;
    }

.button:not([disabled]), .button:not(.disabled),
.newsletter .btn-primary:not([disabled]),
.newsletter .submit-button:not([disabled]),
.product-result .atc-button-wrapper .fifa-btn:not([disabled]),
.product-result .action-button-wrapper .fifa-btn:not([disabled]),
.newsletter .btn-primary:not(.disabled),
.newsletter .submit-button:not(.disabled),
.product-result .atc-button-wrapper .fifa-btn:not(.disabled),
.product-result .action-button-wrapper .fifa-btn:not(.disabled) {
    cursor: pointer;
}

.text-cta,
.contact-offices-block-item__content p.contact-offices-block-item__google a {
    --theme: #C99A42;
    position: relative;
    display: inline-block;
    padding: 0 12px 5px 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--theme);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--theme);
    will-change: border-color, color;
    -webkit-transition: border-color 0.25s ease, color 0.25s ease;
    transition: border-color 0.25s ease, color 0.25s ease;
}

    .text-cta::after,
    .contact-offices-block-item__content p.contact-offices-block-item__google a::after {
        content: '';
        position: absolute;
        top: 0.4em;
        right: 0;
        width: 0.4em;
        height: 0.4em;
        border-top: 2px solid var(--theme);
        border-right: 2px solid var(--theme);
        border-radius: 2px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        will-change: transform, border-color;
        -webkit-transition: border-color 0.25s ease, -webkit-transform 0.25s ease;
        transition: border-color 0.25s ease, -webkit-transform 0.25s ease;
        transition: transform 0.25s ease, border-color 0.25s ease;
        transition: transform 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
    }

    .text-cta:hover,
    .contact-offices-block-item__content p.contact-offices-block-item__google a:hover {
        border-color: transparent;
        color: var(--theme);
    }

        .text-cta:hover::after,
        .contact-offices-block-item__content p.contact-offices-block-item__google a:hover::after {
            -webkit-transform: rotate(45deg) translate(5px, -5px);
            transform: rotate(45deg) translate(5px, -5px);
        }

.text-cta--white {
    --theme: #FFF;
}

.text-cta--brand-navy-2 {
    --theme: #003282;
}

.text-cta--brand-black {
    --theme: #1c1919;
}

@media all and (min-width: 569px) {
    .text-cta--large {
        padding: 0 20px 10px 0;
        font-size: 28px;
        line-height: 36px;
    }

        .text-cta--large::after {
            top: 12px;
            border-top-width: 3px;
            border-right-width: 3px;
        }
}

.text-cta--reverse {
    padding: 0 0 5px 12px;
}

    .text-cta--reverse::after {
        right: unset;
        left: 0;
        border-right: none;
        border-left: 2px solid var(--theme);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .text-cta--reverse:hover::after {
        -webkit-transform: rotate(-45deg) translate(-5px, -5px);
        transform: rotate(-45deg) translate(-5px, -5px);
    }

.text-cta-alt {
    --theme: #C99A42;
    --borderTheme: #C99A42;
    position: relative;
    display: inline-block;
    min-width: 150px;
    padding: 0 12px 0 0;
    font-size: 16px;
    line-height: 20px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: var(--theme);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

    .text-cta-alt::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: var(--borderTheme);
    }

    .text-cta-alt::after {
        content: '';
        position: absolute;
        top: 0.4em;
        right: 0;
        width: 0.4em;
        height: 0.4em;
        border-top: 2px solid var(--borderTheme);
        border-right: 2px solid var(--borderTheme);
        border-radius: 2px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        will-change: transform, border-color;
        -webkit-transition: border-color 0.25s ease, -webkit-transform 0.25s ease;
        transition: border-color 0.25s ease, -webkit-transform 0.25s ease;
        transition: transform 0.25s ease, border-color 0.25s ease;
        transition: transform 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
    }

    .text-cta-alt:hover {
        border-color: transparent;
        color: var(--theme);
    }

        .text-cta-alt:hover::after {
            -webkit-transform: rotate(45deg) translate(5px, -5px);
            transform: rotate(45deg) translate(5px, -5px);
        }

.text-cta-alt--white {
    --theme: #FFF;
    --borderTheme: #C99A42;
}

.text-cta-alt--black {
    --theme: #000;
    --borderTheme: #C99A42;
}

@media all and (min-width: 569px) {
    .text-cta-alt--large {
        padding: 0 20px 10px 0;
        font-size: 28px;
        line-height: 36px;
    }

        .text-cta-alt--large::after {
            top: 12px;
            border-top-width: 3px;
            border-right-width: 3px;
        }
}

.text-cta-alt--reverse {
    padding: 0 0 5px 12px;
}

    .text-cta-alt--reverse::after {
        right: unset;
        left: 0;
        border-right: none;
        border-left: 2px solid var(--borderTheme);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .text-cta-alt--reverse:hover::after {
        -webkit-transform: rotate(-45deg) translate(-5px, -5px);
        transform: rotate(-45deg) translate(-5px, -5px);
    }

.rich-text {
    /* We're using an inner-outer file structure here so that the umbraco text 
    editor in the CMS can use a different scss file which imports the inner 
    file but not the outer file. richtext-rte will be used by the site as well
    as the CMS, the code here will only be used by the site, not the cms. So code
    being used by the CMS text editor should NOT be put here
  */
    /* We're using an inner-outer file structure here so that the umbraco text
  editor in the CMS can use a different scss file which imports the inner
  file but not the outer file. This file will be used by the site as well
  as the CMS, richtext.scss will only be used by the site, not the cms
*/
    /* TODO: Add blockquote styling */
}

    .rich-text > *:last-child {
        margin-bottom: 0;
    }

    .rich-text .left-float {
        margin: 0 10px 10px 0;
    }

    .rich-text .right-float {
        margin: 0 0 10px 10px;
    }

    .rich-text p a {
        text-decoration: none;
        -webkit-transition: color 0.2s ease-in;
        transition: color 0.2s ease-in;
    }

        .rich-text p a:hover {
            text-decoration: underline;
        }

    .rich-text img {
        margin-bottom: 1rem;
    }

    .rich-text table {
        width: 100%;
        display: block;
        overflow: auto;
        overflow-y: hidden;
        overflow-x: auto;
        border-collapse: collapse;
        margin: 30px 0;
    }

        .rich-text table th, .rich-text table td {
            padding: 10px 15px;
        }

        .rich-text table thead th {
            text-align: left;
            background-color: #A3A3A3;
            font-weight: bold;
        }

        .rich-text table tbody tr:nth-child(odd) {
            background-color: #DDD;
        }

    .rich-text ul {
        list-style: disc outside;
        padding-left: 1.5em;
    }

    .rich-text ol {
        list-style: decimal outside;
        padding-left: 1.5em;
    }

    .rich-text li {
        padding-bottom: 8px;
        line-height: 20px;
    }

    .rich-text blockquote {
        position: relative;
    }

        .rich-text blockquote:before, .rich-text blockquote:after {
            content: '\0201C';
            position: absolute;
            font-style: normal;
            top: 0;
            left: 0;
        }

        .rich-text blockquote:after {
            content: '\0201D';
        }

        .rich-text blockquote:after {
            top: auto;
            left: auto;
            bottom: 0;
            right: 0;
        }

/*** GENERAL Content Styles ***/
section {
    position: relative;
}

.section-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.section-container--max-desktop {
    max-width: 1440px;
}

.section-container--large {
    max-width: 980px;
}

.section-container--small-med {
    max-width: 640px;
}

.f-container > .row > .col-md-12 > div > .section-container {
    max-width: calc(1360px);
    padding: 0 40px;
}

    .f-container > .row > .col-md-12 > div > .section-container:last-child {
        padding-bottom: 75px;
    }

@media all and (max-width: 568px) {
    .f-container > .row > .col-md-12 > div > .section-container:last-child {
        padding-bottom: 40px;
    }
}

/* 
 * SLIDER / CAROUSEL Styles
 * Slick slider custom styles
 */
[class*=slider-wrapper] {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

    [class*=slider-wrapper].slick-initialized {
        opacity: 1;
    }

    [class*=slider-wrapper] .slide:focus {
        outline: 0;
    }

.slick-slider {
    margin-bottom: 0;
}

.icon {
    display: block;
}

    .icon.-rotate180 {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .icon.-black {
        fill: #000;
    }

    .icon.-black-50 {
        fill: rgba(0, 0, 0, 0.5);
    }

    .icon.-white-50 {
        fill: rgba(255, 255, 255, 0.5);
    }

    .icon.-white {
        fill: #FFF;
    }

#FWWC23 .icon.-white {
    fill: #FFF;
}

.block-separator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 3px;
    margin: 10px 0;
}

    .block-separator > span {
        display: block;
        width: 100%;
        max-width: 386px;
        height: 1px;
        background-color: #C99A42;
        will-change: background-color;
        -webkit-transition: background-color 0.3s ease;
        transition: background-color 0.3s ease;
    }

.block-separator--white > span {
    background-color: #FFF;
}

.block-separator--private-suite > span {
    background-color: #FFD56C;
}

.block-separator--premier-lounge > span, .block-separator--lineman-lounge > span {
    background-color: #FFD56C;
}

.star-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1px;
    -moz-column-gap: 1px;
    column-gap: 1px;
}

    .star-rating img {
        width: 19px;
        height: 17px;
    }

.full-width-image {
    position: relative;
    width: 100%;
}

@media all and (min-width: 569px) {
    .full-width-image {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
    }
}

.full-width-image img {
    width: 100%;
    max-width: none;
    height: auto;
}

.full-width-image h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #FFF;
    font-family: "Anton";
    font-weight: normal !important;
    font-size: 40px;
    line-height: 44px;
    text-align: center;
    width: 100%;
    max-width: 860px;
}

@media all and (min-width: 569px) {
    .full-width-image h2 {
        font-size: 60px;
        line-height: 64px;
    }
}

@media all and (min-width: 1281px) {
    .full-width-image h2 {
        font-size: 4.6vw;
        line-height: 4.7vw;
    }
}

.newsletter,
.newsletter.expanded,
.newsletter.is-expanded {
    position: relative;
    background: linear-gradient(77deg, #B58506 0%, #C99A42 25%, #FFD56C 50%, #C99A42 75%);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-bottom: 90px;
    row-gap: 24px;
}

    .newsletter::before,
    .newsletter.expanded::before,
    .newsletter.is-expanded::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(/media/pwylgmcg/newsletter-bg-left.svg), url(/media/wrckdsx2/newsletter-bg-right.svg);
        background-position: left center, right center;
        background-size: auto 100%, auto 100%;
        background-repeat: no-repeat;
    }

@media all and (max-width: 1440px) {
    .newsletter::before,
    .newsletter.expanded::before,
    .newsletter.is-expanded::before {
        opacity: 0.3;
    }
}

@media all and (max-width: 768px) {
    .newsletter::before,
    .newsletter.expanded::before,
    .newsletter.is-expanded::before {
        opacity: 0.1;
    }
}

@media all and (max-width: 980px) {
    .newsletter,
    .newsletter.expanded,
    .newsletter.is-expanded {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media all and (max-width: 568px) {
    .newsletter,
    .newsletter.expanded,
    .newsletter.is-expanded {
        padding-top: 50px !important;
    }
}

.newsletter .icon-field,
.newsletter.expanded .icon-field,
.newsletter.is-expanded .icon-field {
    display: none;
}

@media all and (max-width: 768px) {
    .newsletter .umbraco-forms-fieldset,
    .newsletter .umbraco-forms-navigation,
    .newsletter.expanded .umbraco-forms-fieldset,
    .newsletter.expanded .umbraco-forms-navigation,
    .newsletter.is-expanded .umbraco-forms-fieldset,
    .newsletter.is-expanded .umbraco-forms-navigation {
        width: 100%;
    }
}

@media all and (max-width: 768px) {
    .newsletter .umbraco-forms-fieldset:last-of-type .umbraco-forms-container .firstname,
    .newsletter .umbraco-forms-fieldset:last-of-type .umbraco-forms-container .lastname,
    .newsletter.expanded .umbraco-forms-fieldset:last-of-type .umbraco-forms-container .firstname,
    .newsletter.expanded .umbraco-forms-fieldset:last-of-type .umbraco-forms-container .lastname,
    .newsletter.is-expanded .umbraco-forms-fieldset:last-of-type .umbraco-forms-container .firstname,
    .newsletter.is-expanded .umbraco-forms-fieldset:last-of-type .umbraco-forms-container .lastname {
        -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
        margin-right: 0 !important;
    }
}

.newsletter .umbraco-forms-field.email .umbraco-forms-field-wrapper,
.newsletter.expanded .umbraco-forms-field.email .umbraco-forms-field-wrapper,
.newsletter.is-expanded .umbraco-forms-field.email .umbraco-forms-field-wrapper {
    margin-top: 0;
}

.newsletter .umbraco-forms-field.thirdpartyconsent,
.newsletter.expanded .umbraco-forms-field.thirdpartyconsent,
.newsletter.is-expanded .umbraco-forms-field.thirdpartyconsent {
    margin-top: 1rem;
    text-align: left;
}

.newsletter .newsletter-header,
.newsletter > form,
.newsletter.expanded .newsletter-header,
.newsletter.expanded > form,
.newsletter.is-expanded .newsletter-header,
.newsletter.is-expanded > form {
    position: relative;
}

.newsletter .newsletter-header,
.newsletter.expanded .newsletter-header,
.newsletter.is-expanded .newsletter-header {
    margin-bottom: 0;
}

.newsletter h1,
.newsletter .title h2 {
    position: relative;
    color: #000;
    font-family: "Anton";
    font-weight: normal !important;
}

.newsletter h1 {
    padding-bottom: 24px;
    margin-bottom: 32px;
    font-family: "Anton";
    font-weight: normal !important;
    color: #000;
    font-size: 28px;
    line-height: 34px;
}

@media all and (min-width: 769px) {
    .newsletter h1 {
        font-size: 48px !important;
        line-height: 52px;
    }
}

.newsletter p,
.newsletter .newsletter-legal-disclaimer {
    max-width: 580px;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    letter-spacing: 0;
}

@media all and (min-width: 769px) {
    .newsletter p,
    .newsletter .newsletter-legal-disclaimer {
        font-size: 20px;
        line-height: 24px;
    }
}

.newsletter p a,
.newsletter .newsletter-legal-disclaimer a {
    color: inherit;
    text-decoration: underline;
}

    .newsletter p a:hover,
    .newsletter .newsletter-legal-disclaimer a:hover {
        text-decoration: none;
    }

.newsletter .newsletter-legal-disclaimer {
    font-size: 14px;
    line-height: 20px;
}

.newsletter .title p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    line-height: 2.4rem;
}

@media all and (min-width: 981px) {
    .newsletter:not(.expanded) {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.newsletter:not(.expanded) .umbraco-forms-page {
    padding-left: 0;
    padding-right: 0;
}

@media all and (min-width: 769px) {
    .newsletter:not(.expanded) .email {
        width: 120%;
        padding-right: 15%;
    }
}

.newsletter input[type=checkbox] + label {
    background-image: url("../images/icons/blue_check_circle.svg");
}

.newsletter input[type=checkbox]:checked + label {
    background-image: url("../images/icons/blue_check.png");
}

.newsletter label + .error {
    margin-top: -10px;
    margin-bottom: 20px;
}

.newsletter .button-container {
    height: 50px;
}

.newsletter .btn-primary,
.newsletter .submit-button {
    width: auto;
    font-size: 16px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 48px !important;
    border: 2px solid #000;
    background-color: #000 !important;
    color: #FFF !important;
}

    .newsletter .btn-primary:hover,
    .newsletter .submit-button:hover {
        background-color: #262626 !important;
        color: #eccc72 !important;
        border-color: #eccc72 !important;
    }

.newsletter .field-validation-error,
.newsletter .error {
    color: #FD2A2A !important;
}

.newsletter.expanded,
.newsletter.is-expanded {
    background-position: center;
}

    .newsletter.expanded::before,
    .newsletter.is-expanded::before {
        background-position: right 90vw center, left 90vw center;
    }

#ec-newsletter.newsletter h1 {
    color: #000 !important;
}

.umbraco-forms-form .umbraco-forms-field-wrapper input.text, .umbraco-forms-form .umbraco-forms-field-wrapper textarea, .umbraco-forms-form .umbraco-forms-field-wrapper select {
    border: none;
}

.graphic-spacer {
    position: relative;
    width: 100%;
    height: 60px;
    background-image: url("/media/wpxnwnzy/white-background-general.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.social-media-img {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 16px;
}

@media all and (max-width: 568px) {
    .social-media-img {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        margin-right: auto !important;
    }
}

.social-media-img a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #eccc72;
    border-radius: 100%;
    -webkit-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
}

    .social-media-img a:hover {
        background-color: #C99A42;
    }

.social-media-img img {
    margin-right: 0 !important;
    max-height: 50%;
}

@media all and (max-width: 989px) {
    .social-media-img img {
        margin-top: 0 !important;
    }
}

.simple-intro-block {
    position: relative;
    background-color: #1c1919;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 85px 40px;
}

@media all and (min-width: 1601px) {
    .simple-intro-block {
        padding: 100px 40px;
    }
}

.simple-intro-block:not([class*=u-bg]) h2, .simple-intro-block:not([class*=u-bg]) h3, .simple-intro-block:not([class*=u-bg]) p {
    color: #FFF;
}

.simple-intro-block h2 {
    margin-bottom: 0;
    opacity: 0.8;
}

.simple-intro-block--bg-image {
    padding: 75px 40px;
}

    .simple-intro-block--bg-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 0.3;
        pointer-events: none;
    }

    .simple-intro-block--bg-image h2 {
        padding-bottom: 0;
    }

@media all and (min-width: 769px) {
    .simple-intro-block--bg-image h2 {
        font-size: 32px;
        font-size: 2rem;
        line-height: 36px;
        line-height: 2.25rem;
        font-weight: 350;
    }
}

.simple-intro-block--bg-image h2, .simple-intro-block--bg-image p {
    color: #FFF;
}

.simple-intro-block--bg-beige-light {
    background-color: #F6F2EC;
}

    .simple-intro-block--bg-beige-light h2, .simple-intro-block--bg-beige-light p {
        color: #000;
    }

.simple-intro-block--bg-white {
    background-color: #FFF;
}

    .simple-intro-block--bg-white h2, .simple-intro-block--bg-white p {
        color: #000;
    }

.simple-intro-block--copa-lounge h2, .simple-intro-block--copa-lounge p {
    color: #0F261E;
}

.simple-intro-block--club-copa h2, .simple-intro-block--club-copa p {
    color: #226D97;
}

.simple-intro-block--small-pb {
    padding-bottom: 40px;
}

@media all and (max-width: 820px) {
    .simple-intro-block {
        padding: 70px 40px;
    }

    .simple-intro-block--small-pb {
        padding-bottom: 40px;
    }
}

@media all and (max-width: 568px) {
    .simple-intro-block {
        padding: 40px 20px;
    }
}

.simple-intro-block .section-container {
    padding-top: 0 !important;
}

.simple-intro-block__heading,
.simple-intro-block__summary {
    position: relative;
    width: 50%;
    padding-right: 50px;
}

@media all and (max-width: 768px) {
    .simple-intro-block__heading,
    .simple-intro-block__summary {
        width: 100%;
        padding-right: 0;
    }
}

@media all and (max-width: 768px) {
    .simple-intro-block__heading {
        margin-bottom: 30px;
    }
}

.simple-intro-block__heading .block-separator {
    margin-top: 24px;
}

.simple-intro-block__graphic {
    margin-bottom: -30px;
}

.simple-intro-block__summary > *:last-child {
    margin-bottom: 0;
}

.simple-intro-block__summary p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 1.5em;
}

@media all and (min-width: 769px) {
    .simple-intro-block__summary p {
        font-size: 24px;
        line-height: 28px;
    }
}

.simple-intro-block__summary p a {
    color: inherit;
    text-decoration: underline;
}

    .simple-intro-block__summary p a:hover {
        text-decoration: none;
    }

.simple-intro-block.simple-intro-block--bg-image .simple-intro-block__summary {
    padding-top: 16px;
}

.simple-intro-block__summary .select-wrapper {
    margin-top: 2rem;
    max-width: 320px;
}

    .simple-intro-block__summary .select-wrapper select {
        border-radius: 30px;
        border-width: 2px;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
        padding-left: 20px;
    }

#FWWC23 .simple-intro-block__summary p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .simple-intro-block__summary .select-wrapper select {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.ecommerce-layout {
    padding-top: var(--siteHeaderHeight) !important;
}

    .ecommerce-layout .simple-intro-block h2 {
        font-family: "Anton" !important;
        font-weight: normal !important;
        color: #FFF;
    }

    .ecommerce-layout .simple-intro-block__graphic {
        display: none;
    }

.hospitality-listing {
    background-color: #1c1919;
}

.hospitality-listing__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.hospitality-listing.hospitality-listing--narrow .hospitality-listing__inner {
    max-width: 1280px;
}

.hospitality-listing__item {
    width: 100%;
    background-color: #FFF;
    overflow: hidden;
}

@media all and (min-width: 1025px) {
    .hospitality-listing__item {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.hospitality-listing__item-image,
.hospitality-listing__item-content {
    width: 100%;
}

.hospitality-listing__item-image {
    position: relative;
    --border-color: #C99A42;
}

@media all and (max-width: 1024px) {
    .hospitality-listing__item-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background-color: var(--border-color);
    }
}

.hospitality-listing__item.hospitality-listing__item--premier-lounge .hospitality-listing__item-image,
.hospitality-listing__item.hospitality-listing__item--lineman-lounge .hospitality-listing__item-image {
    --border-color: #FFD56C;
}

.hospitality-listing__item.hospitality-listing__item--club-copa .hospitality-listing__item-image {
    --border-color: #DD5E65;
}

.hospitality-listing__item-image img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hospitality-listing__item-content {
    --border-color: #C99A42;
    --text-color: #000;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 45px 40px;
    background-color: #FFF;
}

    .hospitality-listing__item-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background-color: var(--border-color);
        z-index: 1;
    }

@media all and (min-width: 1025px) {
    .hospitality-listing__item-content::before {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media all and (min-width: 1025px) {
    .hospitality-listing__item:nth-child(even) .hospitality-listing__item-content::before {
        left: unset;
        right: 0;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
}

.hospitality-listing__item.hospitality-listing__item--flagship-lounge .hospitality-listing__item-content {
    background: #fffbf0;
}

.hospitality-listing__item.hospitality-listing__item--private-suite .hospitality-listing__item-content {
    background: #000;
    --text-color: #FFF;
}

.hospitality-listing__item.hospitality-listing__item--shared-suite .hospitality-listing__item-content {
    background: #3c3c3b;
    --text-color: #FFF;
}

.hospitality-listing__item.hospitality-listing__item--premier-lounge .hospitality-listing__item-content {
    background: #2e2d2c;
    --text-color: #FFF;
    --border-color: #FFD56C;
}

.hospitality-listing__item.hospitality-listing__item--club-plus .hospitality-listing__item-content,
.hospitality-listing__item.hospitality-listing__item--club .hospitality-listing__item-content {
    background: #F0F0F0;
}

@media all and (min-width: 1133px) {
    .hospitality-listing__item-content {
        padding: 45px 100px;
    }
}

.hospitality-listing__item:nth-child(even) .hospitality-listing__item-content {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

@media all and (max-width: 980px) {
    .hospitality-listing__item-content {
        padding: 35px 30px;
    }
}

@media all and (max-width: 820px) {
    .hospitality-listing__item-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

@media all and (max-width: 640px) {
    .hospitality-listing__item-content {
        padding: 40px;
    }
}

@media all and (max-width: 420px) {
    .hospitality-listing__item-content {
        padding: 25px;
    }
}

.hospitality-listing__item-content h2, .hospitality-listing__item-content h3 {
    color: var(--text-color);
}

@media all and (min-width: 769px) {
    .hospitality-listing__item-content h2, .hospitality-listing__item-content h3 {
        font-size: 36px;
        line-height: 40px;
    }
}

.hospitality-listing__item-content p {
    max-width: 350px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hospitality-listing__item-content .star-rating {
    margin-bottom: 16px;
}

.hospitality-listing__item-content .text-cta {
    border-color: var(--border-color);
}

    .hospitality-listing__item-content .text-cta::after {
        border-color: var(--border-color);
    }

#FWWC23 .hospitality-listing__item-content p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.hospitality-listing__item-content-header {
    display: block;
    margin-bottom: 16px;
}

    .hospitality-listing__item-content-header > img {
        margin-right: auto;
        margin-bottom: 30px;
        max-width: 96px;
    }

@media all and (max-width: 568px) {
    .hospitality-listing__item-content-header > img {
        margin-bottom: 15px;
    }
}

.hospitality-listing__item-content-header h2, .hospitality-listing__item-content-header h3 {
    margin-bottom: 0;
}

.hospitality-listing__item-content-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin-top: auto;
    padding-top: 20px;
}

@media all and (max-width: 420px) {
    .hospitality-listing__item-content-footer {
        display: block;
    }
}

.hospitality-listing__item-content-footer p {
    margin-bottom: 0;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

@media all and (max-width: 420px) {
    .hospitality-listing__item-content-footer p {
        margin-bottom: 10px;
    }
}

.hospitality-listing__item-content-footer a {
    margin-top: 0;
}

@media all and (max-width: 420px) {
    .hospitality-listing__item-content-footer a {
        display: inline-block;
        margin-top: 32px;
    }
}

.explore-packages__item-content-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

@media all and (max-width: 820px) {
    .explore-packages__item-content-header {
        display: block;
        margin-bottom: 30px;
    }
}

.explore-packages__item-content-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #000;
}

.explore-packages__item-content-header h3, .explore-packages__item-content-header p {
    margin-bottom: 0;
}

.explore-packages__item-content-header h3 {
    max-width: 255px;
    text-transform: uppercase;
}

@media all and (max-width: 820px) {
    .explore-packages__item-content-header h3 {
        margin-bottom: 15px;
        max-width: none;
    }
}

.explore-packages__item-content-header p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

@media all and (min-width: 821px) {
    .explore-packages__item-content-header p {
        text-align: right;
    }
}

@media all and (max-width: 820px) {
    .explore-packages__item-content-header p br {
        display: none;
    }
}

#FWWC23 .hospitality-listing__item-content-header p,
#FWWC23 .explore-packages__item-content-header p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.quote-cta-block,
.quote-cta-block > .section-container {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media all and (min-width: 821px) {
    .quote-cta-block,
    .quote-cta-block > .section-container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

.quote-cta-block {
    position: relative;
    padding: 80px 40px;
    background-image: url(/media/qizkfzge/quote-cta-block-bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1c1919;
}

.quote-cta-block--no-bg-image {
    background-image: none;
}

.quote-cta-block--package {
    background-image: none;
    padding: 97px 40px;
    background-color: #000;
    border-top: 2px solid #eccc72;
    border-bottom: 2px solid #eccc72;
}

@media all and (max-width: 768px) {
    .quote-cta-block--package {
        padding: 70px 40px;
    }
}

.quote-cta-block--flagship-lounge {
    background: linear-gradient(160deg, #fffbf0 0%, #1c1919 100%);
}

.quote-cta-block--private-suite {
    background: linear-gradient(160deg, #000 0%, #1c1919 100%);
}

.quote-cta-block--premier-lounge, .quote-cta-block--lineman-lounge {
    background: linear-gradient(160deg, #2e2d2c 0%, #1c1919 100%);
}

.quote-cta-block--club-plus, .quote-cta-block--club {
    background: linear-gradient(160deg, #F0F0F0 0%, #1c1919 100%);
}

.quote-cta-block--club-seats {
    background: linear-gradient(160deg, #FFF 0%, #1c1919 100%);
}

.quote-cta-block--download {
    background-color: #FFD56C;
    background-image: url(/CDN/FIFA_Content/images/FWW23/thumbnail_BG-Image.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media all and (max-width: 568px) {
    .quote-cta-block {
        padding: 50px 40px;
    }
}

.quote-cta-block .section-container {
    padding-top: 0 !important;
}

.quote-cta-block a + .button {
    margin-top: 20px;
}

@media all and (min-width: 569px) {
    .quote-cta-block a + .button {
        margin-top: 40px;
    }
}

@media all and (min-width: 821px) {
    .quote-cta-block a + .button {
        margin-top: 0;
    }
}

.quote-cta-block .text-cta {
    border-color: var(--border-color);
}

    .quote-cta-block .text-cta::after {
        border-color: var(--border-color);
    }

.build-type {
    background-color: #1c1919;
    background-image: url(/media/4s2bdpml/build-type-bg.svg);
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding-bottom: 120px;
    padding: 0 40px 120px;
}

@media all and (max-width: 768px) {
    .build-type {
        padding: 0 40px 60px;
    }
}

@media all and (max-width: 568px) {
    .build-type {
        padding: 0 20px 60px;
    }
}

.build-type-listing {
    width: 100%;
    max-width: 1280px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
}

@media all and (max-width: 1024px) {
    .build-type-listing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width: 640px) {
    .build-type-listing {
        grid-template-columns: auto;
    }
}

.build-type-listing__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #000;
    border: 2px solid #eccc72;
    border-radius: 20px;
    overflow: hidden;
}

.build-type-listing__item-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .build-type-listing__item-image img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 100%;
        will-change: transform;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

.build-type-listing__item:hover .build-type-listing__item-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media all and (max-width: 640px) {
    .build-type-listing__item-image {
        width: 100%;
    }
}

.build-type-listing__item-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 60px 50px 60px 38px;
}

    .build-type-listing__item-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: -webkit-gradient(linear, left top, left bottom, from(#2e2d2c), to(#1c1919));
        background: linear-gradient(180deg, #2e2d2c 0%, #1c1919 100%);
        opacity: 0;
        pointer-events: none;
        will-change: opacity;
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }

.build-type-listing__item:hover .build-type-listing__item-content::before {
    opacity: 1;
}

@media all and (max-width: 1024px) {
    .build-type-listing__item-content {
        padding: 45px 40px 45px 30px;
    }
}

@media all and (max-width: 568px) {
    .build-type-listing__item-content {
        padding: 30px 25px 30px 20px;
    }
}

.build-type-listing__item-content p {
    position: relative;
    color: #FFF;
    will-change: color;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.build-type-listing__item:hover .build-type-listing__item-content p {
    color: #FFF;
}

@media all and (min-width: 769px) {
    .build-type-listing__item-content > p {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 32px;
    }
}

.build-type-listing__item-content .text-cta {
    margin-top: auto;
    margin-right: auto;
}

@media all and (max-width: 568px) {
    .build-type-listing__item-content .text-cta {
        margin-top: 16px;
    }
}

.build-type-listing__item:hover .build-type-listing__item-content .text-cta {
    --theme: #FFF;
}

#FWWC23 .build-type-listing__item-content p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.build-type-listing__item-content-header {
    position: relative;
    margin-bottom: 16px;
}

    .build-type-listing__item-content-header h3, .build-type-listing__item-content-header p {
        margin-bottom: 0;
    }

    .build-type-listing__item-content-header h3 {
        position: relative;
        text-transform: uppercase;
        color: #FFF;
        will-change: color;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease;
    }

@media all and (min-width: 769px) {
    .build-type-listing__item-content-header h3 {
        font-size: 36px;
        line-height: 40px;
    }
}

.build-type-listing__item-content-header p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    margin-top: 30px;
    text-transform: uppercase;
}

@media all and (min-width: 769px) {
    .build-type-listing__item-content-header p {
        font-size: 24px;
        line-height: 28px;
    }
}

#FWWC23 .build-type-listing__item-content-header p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.package-inclusions {
    overflow: hidden;
    border-bottom: 10px solid #7cddd0;
}

    .package-inclusions + .quote-cta-block {
        border-top: none;
    }

.package-inclusions--match-private {
    border-bottom-color: #0f6478;
}

.package-inclusions--match-club {
    border-bottom-color: #a7252a;
}

.package-inclusions--match-place {
    border-bottom-color: #E75521;
}

.package-inclusions--match-shared {
    border-bottom-color: #b48840;
}

.package-inclusions__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

@media all and (max-width: 1280px) {
    .package-inclusions__inner {
        display: block;
    }
}

.package-inclusions__content {
    padding: 20px 80px;
    width: 33.33333%;
}

@media all and (max-width: 1280px) {
    .package-inclusions__content {
        width: 100%;
        padding: 80px;
    }
}

@media all and (max-width: 768px) {
    .package-inclusions__content {
        padding: 60px 40px 20px;
    }
}

.package-inclusions__content h3 {
    text-transform: uppercase;
    margin-bottom: 30px;
}

#FWWC23 .package-inclusions__content p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

@media all and (min-width: 769px) {
    .package-inclusions__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 66.66667%;
        text-align: center;
    }
}

@media all and (max-width: 1280px) {
    .package-inclusions__grid {
        width: 100%;
    }
}

.package-inclusions__grid .slick-list {
    padding: 0 0 0 20px !important;
}

.package-inclusions__grid-item {
    position: relative;
    padding: 30px 20px;
    cursor: pointer;
}

    .package-inclusions__grid-item img {
        width: 140px;
        height: 140px;
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

@media all and (min-width: 769px) {
    .package-inclusions__grid-item {
        border-left: 2px solid #F6F2EC;
        border-bottom: 2px solid #F6F2EC;
    }

        .package-inclusions__grid-item:nth-child(3n) {
            border-right: 2px solid #F6F2EC;
        }

        .package-inclusions__grid-item:nth-last-child(-n+3) {
            border-bottom: none;
        }

        .package-inclusions__grid-item:hover {
            background-color: #7cddd0;
            z-index: 1;
        }

            .package-inclusions__grid-item:hover::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: #7cddd0;
            }

            .package-inclusions__grid-item:hover img {
                -webkit-transform: scale(1.15);
                transform: scale(1.15);
                -webkit-filter: invert(0.95) hue-rotate(-61deg) brightness(2);
                filter: invert(0.95) hue-rotate(-61deg) brightness(2);
            }

    .package-inclusions__grid-item--reveal .package-inclusions__grid-item-detail {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: translateX(100%) translateX(-3px);
        transform: translateX(100%) translateX(-3px);
    }

    .package-inclusions__grid-item--reveal:nth-child(3n) .package-inclusions__grid-item-detail {
        width: calc(100% + 4px);
        -webkit-transform: translateX(-100%) translateX(0);
        transform: translateX(-100%) translateX(0);
    }
}

.package-inclusions__grid-item.slick-current img {
    -webkit-filter: brightness(1.3);
    filter: brightness(1.3);
}

.package-inclusions__grid-item.slick-current .package-inclusions__grid-item-image {
    background-color: #7cddd0;
    border-color: #7cddd0;
}

.package-inclusions__grid-item.slick-current .package-inclusions__grid-item-detail {
    opacity: 1;
}

@media all and (max-width: 768px) {
    .package-inclusions__grid-item {
        border: none;
        background-position: center 35px;
        padding: 35px 0 0;
        margin: 0 20px;
    }
}

.package-inclusions__grid-item-image {
    text-align: center;
    -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .package-inclusions__grid-item-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background-image: url(/media/5360/border.svg);
        background-position: center;
        background-size: 144px;
        background-repeat: no-repeat;
    }

.package-inclusions__grid-item:hover .package-inclusions__grid-item-image::before {
    -webkit-filter: invert(0.85) hue-rotate(-61deg) brightness(1.8);
    filter: invert(0.85) hue-rotate(-61deg) brightness(1.8);
}

@media all and (max-width: 768px) {
    .package-inclusions__grid-item-image {
        padding: 40px 0;
        border: 2px solid #F6F2EC;
    }

        .package-inclusions__grid-item-image img {
            margin: 0 auto;
        }
}

.package-inclusions__grid-item-detail {
    text-align: left;
    color: #3D3D3D;
    padding: 30px 0 0;
    background-color: #FFF;
    opacity: 0;
}

@media all and (min-width: 769px) {
    .package-inclusions__grid-item-detail {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        padding: 40px 30px;
        width: calc(100% + 2px);
        height: calc(100% + 1px);
        background-color: #7cddd0;
        pointer-events: none;
        top: 0;
        left: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        border-bottom: 1px solid #F6F2EC;
        color: #30726d;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        z-index: -1;
    }
}

@media all and (max-width: 768px) {
    .package-inclusions__grid-item-detail {
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }
}

.package-inclusions__grid-item-detail p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
    margin: 0;
    color: #3D3D3D;
}

@media all and (min-width: 769px) {
    .package-inclusions__grid-item-detail p {
        color: #30726d;
    }
}

#FWWC23 .package-inclusions__grid-item-detail p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.package-inclusions__grid-item-title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 24px;
    line-height: 1.5rem;
    display: block;
    text-transform: uppercase;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
    color: #30726d;
}

@media all and (max-width: 768px) {
    .package-inclusions__grid-item-title {
        color: #FFD56C;
    }
}

#FWWC23 .package-inclusions__grid-item-title {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

/*** Package Inclusions: slider arrows ***/
.package-inclusions__arrows {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 40px;
}

@media all and (min-width: 769px) {
    .package-inclusions__arrows {
        display: none;
    }
}

.package-inclusions__arrows .slick-arrow {
    position: relative;
    background: none;
    border: none;
    font-size: 0;
    width: 40px;
    height: 40px;
    left: auto;
    right: auto;
    -webkit-transform: none;
    transform: none;
}

    .package-inclusions__arrows .slick-arrow::before {
        display: none !important;
    }

    .package-inclusions__arrows .slick-arrow::after {
        content: '';
        position: absolute;
        top: 7px;
        left: 8px;
        width: 24px;
        height: 24px;
        border-bottom: 2px solid #FDC82F;
        border-left: 2px solid #FDC82F;
        z-index: 1;
    }

    .package-inclusions__arrows .slick-arrow.slick-prev::after {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .package-inclusions__arrows .slick-arrow.slick-next::after {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

.explore-packages__listing {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

@media all and (min-width: 641px) {
    .explore-packages__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .explore-packages__item:nth-child(even) {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
        }
}

.explore-packages__item--match-private {
    background-color: #0f6478;
}

.explore-packages__item--match-shared {
    background-color: #b48840;
}

.explore-packages__item--match-lounge {
    background-color: #E75521;
}

.explore-packages__item--match-club {
    background-color: #a7252a;
}

.explore-packages__item-image,
.explore-packages__item-content {
    width: 50%;
}

@media all and (max-width: 640px) {
    .explore-packages__item-image,
    .explore-packages__item-content {
        width: 100%;
    }
}

.explore-packages__item-image img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.explore-packages__item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 90px 80px;
    color: #EEECD4;
}

@media all and (max-width: 1280px) {
    .explore-packages__item-content {
        padding: 75px 50px;
    }
}

@media all and (max-width: 768px) and (min-width: 641px) {
    .explore-packages__item-content {
        padding: 45px 30px;
    }
}

@media all and (max-width: 640px) {
    .explore-packages__item-content {
        padding: 60px 40px;
    }
}

.explore-packages__item-content p {
    max-width: 330px;
    margin-bottom: 30px;
    color: #EEECD4;
}

.explore-packages__item-content .button {
    margin: auto auto 0 0;
}

.explore-packages__item-content > div p {
    font-size: 18px;
    margin-bottom: 0;
}

@media all and (max-width: 1280px) {
    .explore-packages__item-content > div p {
        font-size: 16px;
    }
}

.explore-packages__item-content > div p:not(:last-child) {
    padding-bottom: 0;
}

#FWWC23 .explore-packages__item-content > p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.explore-packages__item-content-header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

    .explore-packages__item-content-header::after {
        background-color: #F6F2EC;
    }

    .explore-packages__item-content-header h3, .explore-packages__item-content-header p {
        color: #F6F2EC;
    }

    .explore-packages__item-content-header h3 {
        max-width: 50%;
        padding-right: 30px;
        padding-bottom: 10px;
    }

@media all and (max-width: 1280px) {
    .explore-packages__item-content-header h3 {
        padding-right: 15px;
    }
}

@media all and (max-width: 980px) {
    .explore-packages__item-content-header h3 {
        max-width: none;
    }
}

.explore-packages__item-content-header p {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 26px;
    line-height: 1.625rem;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.hospitality-packages {
    padding: 120px 0;
}

@media all and (max-width: 768px) {
    .hospitality-packages {
        padding: 120px 0 80px;
    }
}

.hospitality-packages + .quote-cta-block {
    border-top: none;
}

.simple-intro-block + .hospitality-packages {
    padding-top: 0;
}

.hospitality-packages-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .hospitality-packages-item:not(:last-child) {
        margin-bottom: 60px;
    }

.hospitality-packages-item__image,
.hospitality-packages-item__content {
    width: 50%;
}

@media all and (max-width: 768px) {
    .hospitality-packages-item__image,
    .hospitality-packages-item__content {
        width: 100%;
    }
}

.hospitality-packages-item__image {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

    .hospitality-packages-item__image::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.6)));
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    }

    .hospitality-packages-item__image > span {
        font-size: 32px;
        font-size: 2rem;
        line-height: 38px;
        line-height: 2.375rem;
        position: relative;
        display: block;
        padding-bottom: 30px;
        margin-bottom: 30px;
        font-family: "Anton";
        font-weight: normal;
        color: #F6F2EC;
        text-transform: uppercase;
    }

        .hospitality-packages-item__image > span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 300px;
            height: 2px;
            background-color: #eccc72;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }

    .hospitality-packages-item__image > p {
        position: relative;
        margin: 0;
        color: #F6F2EC;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
    }

#FWWC23 .hospitality-packages-item__image > span {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color: #F6F2EC;
}

#FWWC23 .hospitality-packages-item__image > p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .hospitality-packages-item__content p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.hospitality-packages-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 46px 10px 0 80px;
}

@media all and (max-width: 980px) {
    .hospitality-packages-item__content {
        padding: 46px 0 0 50px;
    }
}

@media all and (max-width: 768px) {
    .hospitality-packages-item__content {
        padding: 40px 40px 0;
    }
}

.hospitality-packages-item__content .button {
    margin-right: auto;
}

@media all and (min-width: 769px) {
    .hospitality-packages-item__content .button {
        margin-right: 0;
        margin-left: auto;
    }
}

.hospitality-packages-item__table {
    margin: 30px 0 40px;
    width: 100%;
}

    .hospitality-packages-item__table th, .hospitality-packages-item__table td {
        text-align: left;
        padding: 0 15px 15px 0;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
    }

        .hospitality-packages-item__table th:nth-child(2), .hospitality-packages-item__table td:nth-child(2) {
            text-align: center;
            min-width: 150px;
        }

@media all and (max-width: 568px) {
    .hospitality-packages-item__table th:nth-child(2), .hospitality-packages-item__table td:nth-child(2) {
        display: none;
    }
}

.hospitality-packages-item__table td {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
}

    .hospitality-packages-item__table td img {
        height: 12px;
        width: auto;
        margin: 0 -2px 4px 0;
    }

@media all and (max-width: 568px) {
    .hospitality-packages-item__table td > img {
        display: none;
    }
}

.hospitality-packages-item__table tbody tr:last-child td {
    padding-bottom: 0;
}

.simple-image-slider {
    overflow: hidden;
    padding: 0 0 50px;
}

    .simple-image-slider .slick-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

@media all and (min-width: 569px) {
    .simple-image-slider .slick-track {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.simple-image-slider__inner {
    width: 100%;
    margin: 0 auto;
}

.simple-image-slider__inner-slide {
    position: relative;
    max-height: 75vh;
}

@media all and (max-width: 568px) {
    .simple-image-slider__inner-slide {
        height: auto;
        max-height: none;
    }
}

.simple-image-slider__inner-slide img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

@media all and (max-width: 568px) {
    .simple-image-slider__inner-slide img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.simple-image-slider__inner-slide-copy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(80%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.05)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.05) 100%);
}

@media all and (max-width: 568px) {
    .simple-image-slider__inner-slide-copy {
        position: relative;
        height: 100%;
    }
}

.simple-image-slider__inner-slide-copy p {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
    color: #FFF;
    max-width: 540px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.simple-image-slider__slide-heading {
    display: block;
    color: #FFF;
    text-transform: uppercase;
}

    .simple-image-slider__slide-heading.heading-underline {
        margin-bottom: 25px;
    }

#FWWC23 .simple-image-slider__slide-heading {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .simple-image-slider__inner-slide-copy p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.simple-image-slider__dots {
    text-align: center;
    margin-top: 50px;
}

    .simple-image-slider__dots .slick-dots {
        position: relative;
        bottom: auto;
        margin: 0;
        padding: 0;
        list-style: none;
        font-size: 0;
    }

        .simple-image-slider__dots .slick-dots li {
            display: inline-block;
            margin: 0 15px;
            width: auto;
            height: auto;
        }

            .simple-image-slider__dots .slick-dots li button {
                position: relative;
                display: block;
                width: 10px;
                height: 10px;
                padding: 0;
                background-color: #000;
                border-radius: 100%;
                -webkit-transition: background-color 0.25s ease;
                transition: background-color 0.25s ease;
            }

                .simple-image-slider__dots .slick-dots li button::before {
                    display: none;
                }

                .simple-image-slider__dots .slick-dots li button::after {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 18px;
                    height: 18px;
                    border: 2px solid #C99A42;
                    border-radius: 100%;
                    -webkit-transform: translate(-50%, -50%) scale(0.625);
                    transform: translate(-50%, -50%) scale(0.625);
                    opacity: 0;
                    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
                    transition: opacity 0.25s ease, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
                    transition: opacity 0.25s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
                    transition: opacity 0.25s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
                }

                .simple-image-slider__dots .slick-dots li button:hover {
                    background-color: #C99A42;
                }

                    .simple-image-slider__dots .slick-dots li button:hover::after {
                        opacity: 1;
                        -webkit-transform: translate(-50%, -50%) scale(1);
                        transform: translate(-50%, -50%) scale(1);
                    }

            .simple-image-slider__dots .slick-dots li.slick-active button {
                background-color: #C99A42;
            }

                .simple-image-slider__dots .slick-dots li.slick-active button::after {
                    opacity: 1;
                    -webkit-transform: translate(-50%, -50%) scale(1);
                    transform: translate(-50%, -50%) scale(1);
                }

.package-features-block {
    overflow: hidden;
    padding: 0 0 20px;
    background-color: #1c1919;
}

@media all and (min-width: 569px) {
    .package-features-block {
        padding: 0 0 40px;
    }
}

@media all and (min-width: 769px) {
    .package-features-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 0 80px;
    }
}

.package-features-block--bg-navy {
    background-color: #F2F4F8;
}

.package-features-block:not([class*=u-bg]) p {
    color: #FFF;
}

.package-features-block > .inner-container:not(:first-child) {
    margin-top: 64px;
}

@media all and (max-width: 568px) {
    .package-features-block > .inner-container:not(:first-child) {
        margin-top: 32px;
    }
}

.package-features-block__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    background-color: #000;
    color: #FFF;
    border: 2px solid #eccc72;
    border-radius: 20px;
    overflow: hidden;
}

@media all and (min-width: 769px) {
    .package-features-block__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media all and (max-width: 768px) {
    .package-features-block.package-features-block--bg-navy .package-features-block__inner,
    .package-features-block.package-features-block--club-copa .package-features-block__inner {
        padding-bottom: 0;
    }
}

.package-features-block__image,
.package-features-block__content {
    width: 50%;
}

@media all and (max-width: 768px) {
    .package-features-block__image,
    .package-features-block__content {
        width: 100%;
    }
}

.package-features-block__image {
    overflow: hidden;
}

    .package-features-block__image img {
        height: auto;
        width: 100%;
        max-width: none;
    }

@media all and (min-width: 769px) {
    .package-features-block__image {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .package-features-block__image img {
            height: 100%;
            width: auto;
            max-width: 508px;
        }
}

.package-features-block__content {
    padding: 20px 50px 30px 0;
}

@media all and (min-width: 769px) {
    .package-features-block__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media all and (max-width: 1280px) {
    .package-features-block__content {
        padding: 20px 60px 30px;
    }
}

@media all and (max-width: 768px) {
    .package-features-block__content {
        padding: 50px 40px 25px;
    }
}

@media all and (max-width: 568px) {
    .package-features-block__content {
        padding: 20px 20px 25px;
    }
}

.package-features-block.package-features-block--bg-navy .package-features-block__content,
.package-features-block.package-features-block--club-copa .package-features-block__content {
    background-color: #FFF;
    padding-right: 80px;
}

@media all and (max-width: 768px) {
    .package-features-block.package-features-block--bg-navy .package-features-block__content,
    .package-features-block.package-features-block--club-copa .package-features-block__content {
        padding-bottom: 60px;
    }
}

@media all and (max-width: 568px) {
    .package-features-block.package-features-block--bg-navy .package-features-block__content,
    .package-features-block.package-features-block--club-copa .package-features-block__content {
        padding-bottom: 50px;
    }
}

.package-features-block__content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .package-features-block__content ul li {
        position: relative;
        padding: 20px 0 0 20px;
        color: #FFF;
    }

.package-features-block.package-features-block--club-copa .package-features-block__content ul li {
    color: #226D97;
}

.package-features-block__content ul li:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #B3B3B3;
}

.package-features-block__content ul li::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 5px;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #FFF;
}

.two-col-image-block__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
}

@media all and (min-width: 769px) {
    .two-col-image-block__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 40px 0;
    }
}

.two-col-image-block__col {
    width: 100%;
}

@media all and (min-width: 769px) {
    .two-col-image-block__col {
        width: calc(50% - 20px);
    }
}

@media all and (max-width: 768px) {
    .two-col-image-block__col:not(:last-child) {
        margin-bottom: 40px;
    }
}

.stadium-filters {
    position: relative;
    padding: 70px 40px 60px;
    background-color: #1c1919;
    z-index: 3;
}

@media all and (max-width: 568px) {
    .stadium-filters {
        padding: 40px 20px 30px;
    }
}

.stadium-filters--city {
    background-color: #FFF;
}

.stadium-filters .select-wrapper {
    max-width: 240px;
}

@media all and (max-width: 568px) {
    .stadium-filters .select-wrapper {
        margin-top: 10px;
        max-width: none;
    }
}

.stadium-filters .select-arrow {
    background-color: transparent;
}

    .stadium-filters .select-arrow::before {
        border-color: #FFF;
    }

.stadium-filters select {
    background-color: #1c1919;
}

.stadium-filters__wrapper {
    position: relative;
}

@media all and (min-width: 569px) {
    .stadium-filters__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.stadium-filters__label {
    display: block;
    position: relative;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color: #FFF;
    line-height: 1.25rem !important;
    margin-right: 40px;
    padding: 0 !important;
    background: none !important;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

#FWWC23 .stadium-filters__label {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.stadium-filters__options-wrapper {
    position: relative;
}

@media all and (min-width: 569px) {
    .stadium-filters__options-wrapper {
        margin-right: auto;
    }
}

.stadium-filters__options-wrapper input[type=checkbox] {
    position: relative;
    left: 0;
    width: 20px;
    height: 20px;
}

    .stadium-filters__options-wrapper input[type=checkbox]:checked + label::after {
        top: 8px;
        -webkit-transform: rotate(45deg) scale(-1);
        transform: rotate(45deg) scale(-1);
    }

    .stadium-filters__options-wrapper input[type=checkbox]:checked ~ .stadium-filters__options-list {
        display: block;
    }

.stadium-filters__options-list {
    height: auto;
    padding: 10px 24px;
    border: 2px solid #FFF;
    border-radius: 40px;
    color: #FFF;
    font-size: 16px;
    line-height: 20px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: transparent;
}

.stadium-filters__back {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.stadium-listing {
    margin: 0;
    background-color: #1c1919;
    padding-bottom: 80px;
}

@media all and (max-width: 568px) {
    .stadium-listing {
        padding-bottom: 40px;
    }
}

.stadium-listing + .quote-cta-block {
    border-top: none;
}

.stadium-listing__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.stadium-listing-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    cursor: pointer;
}

    .stadium-listing-item:nth-child(even) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

.stadium-listing-item__image,
.stadium-listing-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
}

@media all and (max-width: 768px) {
    .stadium-listing-item__image,
    .stadium-listing-item__content {
        width: 100%;
    }
}

.stadium-listing-item__image {
    position: relative;
    overflow: hidden;
    background-color: #1c1919;
}

    .stadium-listing-item__image img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        width: 100%;
        height: 100%;
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
        -webkit-transition: -webkit-transform 0.25s ease;
        transition: -webkit-transform 0.25s ease;
        transition: transform 0.25s ease;
        transition: transform 0.25s ease, -webkit-transform 0.25s ease;
    }

@media all and (min-width: 769px) {
    .stadium-listing-item.-active .stadium-listing-item__image img {
        -webkit-transform: scale(0.9, 0.84);
        transform: scale(0.9, 0.84);
    }
}

.stadium-listing-item__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 60px 80px;
    min-height: 300px;
    background-color: #FFF;
    -webkit-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
}

@media all and (max-width: 980px) {
    .stadium-listing-item__content {
        padding: 60px 50px;
    }
}

@media all and (max-width: 768px) {
    .stadium-listing-item__content {
        padding: 50px 40px;
        min-height: 0;
    }
}

.stadium-listing-item__content p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
    margin-bottom: 0;
}

.stadium-listing-item.-active .stadium-listing-item__content {
    background-color: #F0F0F0;
}

.stadium-listing-item__content .button {
    margin-top: 35px;
}

.stadium-listing-item__content-header {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 25px;
}

.stadium-listing-item__country {
    display: inline-block;
    padding: 0 7px;
    color: #EEECD4;
    text-transform: uppercase;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.stadium-listing-item__date,
.stadium-listing-item__fixtures {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color: #3D3D3D;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.stadium-listing-item.-active .stadium-listing-item__date, .stadium-listing-item.-active
.stadium-listing-item__fixtures {
    opacity: 1;
}

.stadium-listing-item__name {
    font-size: 40px;
    line-height: 44px;
    display: block;
    margin-bottom: 20px;
    font-family: "Anton";
    font-weight: normal;
    color: #C99A42;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

@media all and (max-width: 768px) {
    .stadium-listing-item__name {
        font-size: 32px;
        line-height: 36px;
    }
}

.stadium-listing-item__name > * {
    text-transform: none;
}

.stadium-listing-item__city {
    display: block;
    margin-top: 30px;
    font-size: 24px;
    line-height: 30px;
    color: #1c1919;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

@media all and (max-width: 768px) {
    .stadium-listing-item__city {
        font-size: 20px;
        line-height: 26px;
    }
}

.stadium-listing-item__divider {
    display: block;
    position: relative;
    width: 20px;
    height: 2px;
    margin: 25px 0 0;
}

    .stadium-listing-item__divider::before, .stadium-listing-item__divider::after {
        content: '';
        position: absolute;
        top: 0;
        width: 78%;
        height: 2px;
        background-color: #1c1919;
        -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
        transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
        transition: transform 0.3s ease, background-color 0.3s ease;
        transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
    }

    .stadium-listing-item__divider::before {
        left: 0;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .stadium-listing-item__divider::after {
        right: 0;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.stadium-listing-item.-active .stadium-listing-item__divider::before, .stadium-listing-item.-active .stadium-listing-item__divider::after {
    background-color: #F6F2EC;
    -webkit-transform: scale(0.65, 1.1) rotate(0);
    transform: scale(0.65, 1.1) rotate(0);
}

.stadium-listing-item__content-hidden {
    display: none;
    position: relative;
}

@media all and (max-width: 420px) {
    .stadium-listing-item__content-hidden {
        padding-top: 0;
    }
}

.stadium-listing-item__content-hidden p strong {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: #C99A42;
}

.stadium-listing-item__content-inner {
    display: block;
    margin-bottom: 30px;
}

.stadium-listing-item__fixtures {
    margin-top: 30px;
    color: #1c1919;
}

/* Typography overrides */
#FWWC23 .stadium-listing-item__content p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .stadium-listing-item__country,
#FWWC23 .stadium-listing-item__name {
    font-family: "Anton";
    font-weight: normal;
}

#FWWC23 .stadium-listing-item__date {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.image-list {
    background-color: #1c1919;
    padding: 10px 0;
}

    .image-list + .hero-area-border-graphic {
        margin-top: -10px;
    }

.image-list-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .image-list-inner:before, .image-list-inner:after {
        display: none;
    }

.image-list__item:nth-child(2) {
    margin-left: 10px;
    margin-right: 10px;
}

.fixtures {
    padding: 80px 40px 40px;
    background-color: #1c1919;
    text-align: center;
}

    .fixtures + .fixtures {
        padding-top: 0;
    }

    .fixtures h2,
    .fixtures h3 {
        text-transform: uppercase;
        color: #FFF;
        margin-bottom: 40px;
    }

.fixtures__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.fixtures-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .fixtures-list + h2, .fixtures-list + h3 {
        margin-top: 40px;
    }

.fixtures-list__item {
    width: 100%;
    max-width: 620px;
    margin-bottom: 40px;
}

@media all and (min-width: 1281px) {
    .fixtures-list__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: calc(50% - 20px);
        margin-right: 20px;
    }

        .fixtures-list__item:nth-child(even), .fixtures-list__item:last-child {
            margin-right: 0;
        }
}

.fixtures-list__item-top,
.fixtures-list__item-bottom {
    background-color: #FFF;
}

.fixtures-list__item-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 30px;
    margin-bottom: 2px;
}

@media all and (max-width: 640px) {
    .fixtures-list__item-top {
        padding: 35px 20px;
    }
}

.fixtures-list__item-bottom {
    padding: 30px;
}

@media all and (min-width: 1281px) {
    .fixtures-list__item-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

.fixtures-list__team {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 33.33333%;
    padding-top: 22px;
}

    .fixtures-list__team > span {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 22px;
        line-height: 1.375rem;
    }

@media all and (max-width: 980px) {
    .fixtures-list__team > span {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 18px;
        line-height: 1.125rem;
    }
}

@media all and (min-width: 641px) {
    .fixtures-list__team {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: left;
    }

    .fixtures-list__team--away {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        text-align: right;
    }
}

@media all and (max-width: 640px) {
    .fixtures-list__team > span {
        font-size: 0;
    }

        .fixtures-list__team > span::before {
            content: attr(data-short-name);
            font-size: 22px;
            line-height: 30px;
            text-transform: uppercase;
        }
}

.fixtures-list__team-flag {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    -webkit-box-shadow: 0 0 0 2px #3D3D3D;
    box-shadow: 0 0 0 2px #3D3D3D;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 10px;
}

    .fixtures-list__team-flag img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        max-width: none;
    }

@media all and (min-width: 641px) {
    .fixtures-list__team-flag {
        margin-left: 10px;
        margin-bottom: 0;
    }

    .fixtures-list__team.fixtures-list__team--away .fixtures-list__team-flag {
        margin-left: 0;
        margin-right: 10px;
    }
}

.fixtures-list__match-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 30px;
    min-width: 100px;
}

@media all and (max-width: 640px) {
    .fixtures-list__match-info {
        margin: 0 15px;
    }
}

.fixtures-list__match-info > span,
.fixtures-list__match-info > time {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
    display: block;
}

.fixtures-list__match-info > span {
    margin-bottom: 10px;
}

    .fixtures-list__match-info > span:first-child {
        text-transform: uppercase;
        font-weight: bold;
    }

.fixtures-list__item-button {
    width: 100%;
    max-width: 360px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    border-radius: 18px;
    color: #1c1919;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 350;
    background-color: #F4F4F4;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease, -webkit-box-shadow 0.2s ease;
    transition: background-color 0.25s ease, color 0.25s ease, -webkit-box-shadow 0.2s ease;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.2s ease;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

    .fixtures-list__item-button > span,
    .fixtures-list__item-button > a {
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 20px;
        line-height: 1.25rem;
        width: 50%;
    }

@media all and (max-width: 420px) {
    .fixtures-list__item-button > span,
    .fixtures-list__item-button > a {
        display: block;
        width: 100%;
    }
}

.fixtures-list__item-button > span {
    padding: 8px 0;
}

.fixtures-list__item-button > a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    color: #1c1919;
    padding: 6px 0;
    border: 2px solid #020F2A;
    border-radius: 18px;
    background-color: #FFF;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.fixtures-list__item-button:hover {
    color: #1c1919;
    background-color: #FFF;
    -webkit-box-shadow: inset 0 0 0 2px #B58506;
    box-shadow: inset 0 0 0 2px #B58506;
}

    .fixtures-list__item-button:hover > a {
        color: #FFF;
        background-color: #B58506;
        border-color: #B58506;
    }

@media all and (max-width: 420px) {
    .fixtures-list__item-button:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media all and (max-width: 420px) {
    .fixtures-list__item-button {
        display: block;
        background-color: transparent;
    }

        .fixtures-list__item-button > span {
            background-color: #F2F4F8;
            border-radius: 18px;
            margin-bottom: 10px;
            padding: 8px 0;
        }
}

#FWWC23 .fixtures-list__match-info > span,
#FWWC23 .fixtures-list__team > span {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .fixtures-list__item-button > span {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.text-and-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 16px;
    padding: 80px 40px;
    background-color: #1c1919;
}

@media all and (max-width: 568px) {
    .text-and-image {
        padding: 40px 20px;
    }
}

.text-and-image--classic {
    row-gap: 0;
    padding-bottom: 0;
}

.text-and-image > div:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.text-and-image-item {
    padding-top: 0 !important;
}

.simple-intro-block + .text-and-image {
    padding-top: 0;
}

.text-and-image__image,
.text-and-image__content {
    width: 50%;
}

@media all and (max-width: 768px) {
    .text-and-image__image,
    .text-and-image__content {
        width: 100%;
    }
}

.text-and-image__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 640 / 432;
}

    .text-and-image__image img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

.text-and-image__content {
    --border-color: #C99A42;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 50px 90px;
    background-color: #FFF;
    -webkit-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
}

    .text-and-image__content > *:last-child {
        margin-bottom: 0;
    }

    .text-and-image__content::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background-color: var(--border-color);
        z-index: 1;
    }

@media all and (min-width: 769px) {
    .text-and-image__content::after {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media all and (min-width: 769px) {
    .text-and-image-item:nth-child(even) .text-and-image__content::after {
        left: unset;
        right: 0;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
}

.text-and-image-item:nth-child(even) .text-and-image__content {
    --border-color: #eccc72;
}

.text-and-image-item:hover .text-and-image__content {
    background-color: #F0F0F0;
}

@media all and (min-width: 1281px) {
    .text-and-image.text-and-image--classic .text-and-image__content {
        padding: 140px 90px 80px;
    }
}

@media all and (min-width: 1281px) {
    .text-and-image.text-and-image--classic .text-and-image-item.text-and-image-item--product .text-and-image__content {
        padding: 80px 90px;
    }
}

.text-and-image__content > * {
    position: relative;
}

.text-and-image__content h3 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 40px;
    line-height: 2.5rem;
    font-family: "Anton";
    font-weight: normal !important;
    color: #1c1919;
    margin-bottom: 0;
}

.text-and-image.text-and-image--classic .text-and-image__content h3 + p {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

.text-and-image__content h4 {
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
    font-weight: 600;
    color: #1c1919;
}

.text-and-image__content .block-separator {
    margin-bottom: 24px;
}

.text-and-image__content p {
    color: #1c1919;
}

.text-and-image.text-and-image--classic .text-and-image__content p {
    max-width: 300px;
    margin-bottom: 3em;
}

.text-and-image__content .text-cta {
    margin-right: auto;
    margin-top: 25px;
}

@media all and (max-width: 980px) {
    .text-and-image__content {
        padding: 50px 60px;
    }
}

@media all and (max-width: 568px) {
    .text-and-image__content {
        padding: 30px;
    }
}

.text-and-image__footer {
    margin-top: auto;
}

@media all and (min-width: 569px) {
    .text-and-image__footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.text-and-image.text-and-image--classic .text-and-image__footer p {
    margin-bottom: 0;
}

.text-and-image-item.text-and-image-item--product .text-and-image__footer p {
    font-weight: 600;
}

.text-and-image__footer .text-cta {
    margin-right: 0;
}

@media all and (min-width: 569px) {
    .text-and-image__footer .text-cta {
        margin-top: 0;
    }
}

.ecommerce-layout .text-and-image__content h3 {
    font-family: "Anton" !important;
    font-weight: normal !important;
    color: #1c1919;
}

.ecommerce-layout .text-and-image__content .text-cta {
    --theme: #1c1919;
}

.image-grid {
    background-color: #1c1919;
    padding: 50px 40px;
}

@media all and (max-width: 768px) {
    .image-grid {
        padding: 40px 40px;
    }
}

.image-grid-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
}

.image-grid-col {
    width: calc(50% - 20px);
    margin: 0 40px 0 0;
}

    .image-grid-col:nth-child(even) {
        margin-right: 0;
    }

@media all and (max-width: 768px) {
    .image-grid-col {
        width: 100%;
        margin: 0;
    }
}

.image-grid-item {
    position: relative;
    width: 100%;
    margin: 40px 0;
    padding-top: 50%;
    background-size: 119%;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    -webkit-transition: background-size 0.25s ease;
    transition: background-size 0.25s ease;
}

    .image-grid-item:hover {
        background-size: 129%;
    }

@media all and (min-width: 769px) {
    .image-grid-col.-large .image-grid-item {
        padding-top: calc(100% + 40px);
    }
}

@media all and (max-width: 768px) {
    .image-grid-item {
        margin: 0 0 20px;
        padding-top: 100%;
        background-size: auto 110%;
    }

        .image-grid-item:hover {
            background-size: auto 120%;
        }

    .image-grid-col.-large .image-grid-item {
        padding-top: 100%;
    }
}

.image-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
    pointer-events: none;
}

@media all and (max-width: 568px) {
    .image-grid-item::before {
        opacity: 0.5;
    }
}

.image-grid-item .overlay-link {
    pointer-events: auto;
    font-size: 0;
}

    .image-grid-item .overlay-link::before {
        display: none;
    }

.image-grid-item__copy {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: calc(100% - 80px);
    max-width: 500px;
    z-index: 1;
}

@media all and (max-width: 568px) {
    .image-grid-item__copy {
        bottom: auto;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
    }
}

.image-grid-item__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem;
    display: block;
    color: #FFF;
    font-family: "Anton";
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media all and (max-width: 568px) {
    .image-grid-item__title.heading-underline::after {
        left: calc(50% - 25px);
    }
}

#FWWC23 .image-grid-item__title {
    font-family: "Anton";
    font-weight: normal;
}

/*** Full-width 2-up variant ***/
.image-grid.-two-up {
    padding: 0 0 50px;
    overflow: hidden;
}

    .image-grid.-two-up .image-grid-inner {
        max-width: none;
    }

    .image-grid.-two-up .image-grid-col {
        margin: 0 0 0 20px;
        width: calc(100% - 20px);
    }

@media all and (min-width: 769px) {
    .image-grid.-two-up .image-grid-col {
        width: calc(33.33% - 10px);
        margin: 0 20px 0 0;
    }
}

.image-grid.-two-up .image-grid-col:nth-child(even) {
    margin-left: 0;
    margin-right: 20px;
}

@media all and (min-width: 769px) {
    .image-grid.-two-up .image-grid-col:nth-child(even) {
        margin-right: 0;
    }
}

@media all and (min-width: 769px) {
    .image-grid.-two-up .image-grid-col.-large {
        width: calc(66.66% - 10px);
    }
}

.image-grid.-two-up .image-grid-item {
    padding-top: 350px;
    margin: 10px 0;
}

@media all and (max-width: 1600px) and (min-width: 769px) {
    .image-grid.-two-up .image-grid-item {
        background-size: auto 110%;
    }

        .image-grid.-two-up .image-grid-item:hover {
            background-size: auto 120%;
        }
}

@media all and (max-width: 768px) {
    .image-grid.-two-up .image-grid-item {
        padding-top: 50%;
        background-size: cover;
    }
}

@media all and (max-width: 420px) {
    .image-grid.-two-up .image-grid-item {
        padding-top: 200px;
    }
}

.image-grid.-two-up .image-grid-item__copy {
    max-width: calc(100% - 160px);
}

@media all and (min-width: 981px) {
    .image-grid.-two-up .image-grid-item__copy {
        left: 80px;
    }
}

@media all and (max-width: 768px) {
    .image-grid.-two-up .image-grid-item__copy {
        bottom: auto;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
    }
}

@media all and (max-width: 568px) {
    .image-grid.-two-up .image-grid-item__copy {
        max-width: none;
    }
}

.image-grid.-two-up .image-grid-item__copy img {
    margin-bottom: 15px;
}

.package-ctas {
    position: relative;
    padding: 60px 40px;
    background-color: #1c1919;
}

    .package-ctas + .quote-cta-block {
        border-top: none;
    }

.package-ctas__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
}

    .package-ctas__col:last-child {
        margin-bottom: 0;
    }

@media all and (min-width: 569px) {
    .package-ctas__col {
        width: calc(50% - 20px);
        margin-right: 40px;
        margin-bottom: 0;
    }

        .package-ctas__col:nth-child(even) {
            margin-right: 0;
        }
}

.package-ctas__col-name,
.package-ctas__col-cta {
    width: 50%;
    min-height: 170px;
}

@media all and (max-width: 768px) {
    .package-ctas__col-name,
    .package-ctas__col-cta {
        width: 100%;
    }
}

.package-ctas__col-name {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    overflow: hidden;
}

    .package-ctas__col-name::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 0.3;
    }

    .package-ctas__col-name > span {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 26px;
        line-height: 1.625rem;
        display: block;
        position: relative;
        color: #F6F2EC;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
        text-transform: uppercase;
    }

.package-ctas__col-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #FFF;
}

    .package-ctas__col-cta > span {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 20px;
        line-height: 1.25rem;
        display: block;
        margin-bottom: 10px;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
    }

#FWWC23 .package-ctas__col-name > span {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .package-ctas__col-cta > span {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.full-width-video {
    position: relative;
}

    .full-width-video::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 0.3;
        pointer-events: none;
        -webkit-transition: opacity 0.25s ease;
        transition: opacity 0.25s ease;
        z-index: 1;
    }

    .full-width-video video {
        display: block;
        width: 100%;
        height: auto;
    }

    .full-width-video img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 100%;
        opacity: 1;
        -webkit-transition: opacity 0.25s ease;
        transition: opacity 0.25s ease;
    }

    .full-width-video.playing::before {
        opacity: 0;
    }

    .full-width-video.playing img {
        opacity: 0;
        pointer-events: none;
    }

    .full-width-video.playing .full-width-video__play-icon {
        pointer-events: none;
    }

/* Base styles can be found in hero.scss */
.full-width-video__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    z-index: 1;
    margin: 0;
}

    .full-width-video__play-icon:hover {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
    }

        .full-width-video__play-icon:hover::before {
            background: none;
        }

.cities-listing {
    padding: 60px 40px 20px;
    background-color: #F6F2EC;
}

@media all and (max-width: 568px) {
    .cities-listing {
        padding: 60px 20px 20px;
    }
}

.cities-listing__item {
    position: relative;
    width: 20%;
    min-width: 200px;
    padding: 0 20px;
    margin-bottom: 40px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media all and (max-width: 568px) {
    .cities-listing__item {
        width: 50%;
        min-width: 0;
        padding: 0;
    }
}

.cities-listing__item > img {
    max-width: 128px;
    height: auto;
    margin-bottom: 15px;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

@media all and (max-width: 568px) {
    .cities-listing__item > img {
        width: 80px;
    }
}

.cities-listing__item > span {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 26px;
    line-height: 1.625rem;
    display: block;
    min-height: 78px;
    color: #30726d;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

@media all and (max-width: 568px) {
    .cities-listing__item > span {
        font-size: 16px;
        font-size: 1rem;
        line-height: 20px;
        line-height: 1.25rem;
    }
}

.cities-listing__item:hover > img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#FWWC23 .cities-listing__item > span {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.article-listing,
.article-listing-full-width {
    padding: 60px 40px;
    background-color: #F2F4F8;
}

@media all and (max-width: 568px) {
    .article-listing,
    .article-listing-full-width {
        padding: 40px 20px;
    }
}

.article-listing + .article-listing-full-width,
.article-listing-full-width + .article-listing-full-width {
    margin-top: -60px;
    padding-top: 0;
}

@media all and (max-width: 568px) {
    .article-listing + .article-listing-full-width,
    .article-listing-full-width + .article-listing-full-width {
        margin-top: -40px;
    }
}

.article-listing-full-width {
    background-color: #F2F4F8;
}

.stadium-filters + .article-listing {
    padding-top: 0;
}

.article-listing-item {
    display: none;
    width: calc(50% - 10px);
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #FFF;
}

@media all and (max-width: 640px) {
    .article-listing-item {
        width: 100%;
    }
}

@media all and (max-width: 568px) {
    .article-listing-item {
        margin-bottom: 20px;
    }
}

.article-listing-item:nth-child(-n+8) {
    display: block;
}

.article-listing-item--full-width {
    width: 100%;
}

.article-listing-item__image {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 40px;
    height: 280px;
    overflow: hidden;
}

@media all and (max-width: 980px) and (min-width: 569px) {
    .article-listing-item__image {
        padding: 30px;
    }
}

@media all and (max-width: 568px) {
    .article-listing-item__image {
        padding: 20px;
    }
}

.article-listing-item.article-listing-item--full-width .article-listing-item__image {
    height: 348px;
}

.article-listing-item__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.article-listing-item__image > img {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.article-listing-item__image > span,
.article-listing-item__image .block-separator {
    z-index: 1;
}

.article-listing-item__image > p {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 34px;
    line-height: 2.125rem;
    color: #FFF;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    z-index: 1;
    margin: 20px 0 0;
}

.article-listing-item__image .overlay-link {
    z-index: 2;
}

    .article-listing-item__image .overlay-link:hover + img {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
    }

.article-listing-item__image .image-grid-item__title.heading-underline::after {
    left: 0;
}

.article-listing-item__content {
    padding: 40px;
    background-color: #FFF;
}

    .article-listing-item__content > *:last-child {
        margin-bottom: 0;
    }

@media all and (max-width: 980px) and (min-width: 569px) {
    .article-listing-item__content {
        padding: 30px;
    }
}

@media all and (max-width: 568px) {
    .article-listing-item__content {
        padding: 20px;
    }
}

.article-listing-item__content p {
    color: #003282;
}

.article-listing-item.article-listing-item--full-width .article-listing-item__content p {
    max-width: 500px;
}

.article-listing-item__title {
    color: #FFF;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 36px;
    line-height: 40px;
}

@media all and (max-width: 568px) {
    .article-listing-item__title {
        font-size: 28px;
        line-height: 32px;
    }
}

#FWWC23 .article-listing-item__image > p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .article-listing-item__content p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.sales-agents {
    position: relative;
    background-color: #ffeab6;
    padding: 0;
    margin-bottom: 125px;
    border-top: 1px solid #B3B3B3;
    border-bottom: 1px solid #B3B3B3;
    overflow: hidden;
}

    .sales-agents::after {
        display: none !important;
    }

@media all and (max-width: 568px) {
    .sales-agents {
        padding: 10px 0 0;
        margin-bottom: 90px;
    }
}

.sales-agents-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: 1;
}

    .sales-agents-overlay.-visible {
        visibility: visible;
        pointer-events: auto;
    }

.sales-agents-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1300px;
    height: 638px;
    margin: 0 auto;
    background-color: transparent;
    border: none;
    overflow: visible;
}

.sales-agents-map-scroller {
    width: 100%;
    height: 100%;
    overflow: auto;
    overflow-y: hidden;
}

.sales-agents-map {
    position: relative;
    overflow: auto;
    width: 1300px;
}

/*** Map SVG styles ***/
.world-map-svg {
    max-width: 1296px;
}

.world-map-st0 {
    fill: #F6F2EC !important;
}

.world-map-st1 {
    fill: #F6F2EC !important;
}

.world-map-st0,
.world-map-st1 {
    cursor: pointer;
    -webkit-transition: fill 0.25s ease;
    transition: fill 0.25s ease;
}

    .world-map-st0:hover, .world-map-st0.-active,
    .world-map-st1:hover,
    .world-map-st1.-active {
        fill: #FFD56C !important;
    }

/*** World Map Pins styles ***/
.sales-agents-map-pins {
    position: static;
    height: 0;
    width: 0;
}

.sales-agents-map-pins__item {
    position: absolute;
    pointer-events: none;
    text-align: center;
    max-width: 85px;
}

    .sales-agents-map-pins__item.-north-america {
        top: 107px;
        left: 240px;
    }

    .sales-agents-map-pins__item.-south-america {
        display: block;
        top: 355px;
        left: 370px;
    }

        .sales-agents-map-pins__item.-south-america .icon {
            margin: 0 auto 3px;
        }

    .sales-agents-map-pins__item.-africa {
        top: 255px;
        left: 670px;
    }

    .sales-agents-map-pins__item.-europe {
        top: 45px;
        left: 735px;
    }

    .sales-agents-map-pins__item.-asia-and-middle-east {
        top: 145px;
        left: 915px;
    }

    .sales-agents-map-pins__item.-oceania {
        top: 390px;
        left: 1060px;
    }

    .sales-agents-map-pins__item > .icon {
        margin: 0 auto 3px;
    }

        .sales-agents-map-pins__item > .icon > path {
            -webkit-transition: fill 0.25s ease;
            transition: fill 0.25s ease;
        }

    .sales-agents-map-pins__item > span {
        display: block;
        color: #3D3D3D;
        font-size: 16px;
        line-height: 20px;
    }

    .sales-agents-map-pins__item.-active > span, .sales-agents-map-pins__item.-selected > span {
        color: #3D3D3D;
    }

    .sales-agents-map-pins__item.-selected > .icon > path {
        fill: #3D3D3D;
    }

.sales-agents-contact-block {
    position: absolute;
    width: 320px;
    height: 480px;
    border-radius: 15px;
    border: none;
    padding: 50px 40px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #FFF;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 1;
}

    .sales-agents-contact-block::before, .sales-agents-contact-block::after {
        display: none;
    }

@media all and (min-width: 569px) {
    .sales-agents-contact-block {
        top: 50%;
        right: 80px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media all and (max-width: 568px) {
    .sales-agents-contact-block {
        top: 50%;
        left: 50%;
        right: auto;
        max-width: calc(100% - 30px);
        border: none;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.sales-agents-contact-block.-show-contact-block {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media all and (max-width: 568px) {
    .sales-agents-contact-block.-show-contact-block {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.sales-agents-contact-block .select-wrapper {
    margin: 20px 0 30px;
}

    .sales-agents-contact-block .select-wrapper select {
        border: 1px solid #3D3D3D;
        padding: 7px 40px 7px 15px;
        border-radius: 20px;
        height: auto;
        background-image: none;
        color: #3D3D3D;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
    }

    .sales-agents-contact-block .select-wrapper .select-arrow::before {
        border-color: #3D3D3D;
    }

.contact-block-region {
    display: block;
    text-align: center;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 28px;
    line-height: 32px;
    color: #30726d;
    text-transform: uppercase;
}

.contact-block-offices-scroller {
    position: relative;
    height: auto;
    overflow: inherit;
}

.contact-block-offices-scroller__gradient {
    position: relative;
    height: 70px;
    width: 100%;
    left: 0;
    z-index: 1;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.6)), color-stop(75%, #FFF));
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 25%, #FFF 75%);
    cursor: pointer;
}

    .contact-block-offices-scroller__gradient::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #eccc72;
    }

    .contact-block-offices-scroller__gradient.-top {
        margin-bottom: -40px;
    }

@media all and (max-width: 568px) {
    .contact-block-offices-scroller__gradient.-top {
        margin-bottom: -37px;
    }
}

.contact-block-offices-scroller__gradient.-bottom {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    margin-top: -40px;
}

@media all and (max-width: 568px) {
    .contact-block-offices-scroller__gradient.-bottom {
        margin-top: -37px;
    }
}

.contact-block-offices-item {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
}

    .contact-block-offices-item:first-child {
        margin-top: 0;
    }

    .contact-block-offices-item:last-child {
        margin-bottom: 0;
    }

.contact-block-offices-item__name {
    display: block;
    margin-bottom: 15px;
    color: #30726d;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

.contact-block-offices-item__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 16px;
    margin: 7px 0;
}

    .contact-block-offices-item__detail:last-child {
        margin-bottom: 0;
    }

    .contact-block-offices-item__detail a {
        color: inherit;
        text-decoration: none;
    }

        .contact-block-offices-item__detail a:hover {
            text-decoration: underline;
        }

    .contact-block-offices-item__detail .icon-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        max-height: 18px;
        width: 15px;
        margin-right: 10px;
    }

html[dir="rtl"] .contact-block-offices-item__detail .icon-wrapper {
    margin-right: 0;
    margin-left: 10px;
}

.contact-block-offices-item__detail .icon-wrapper .icon {
    margin: 0 auto;
}

.close-sales-agents-contact-block {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

    .close-sales-agents-contact-block .icon-cross {
        width: 10px;
        height: 10px;
    }

/* Custom Scrollbar for offices list */
.offices-scrollbar-container {
    position: absolute;
    top: 165px;
    right: 45px;
    background-color: #eccc72;
    width: 2px;
    height: 440px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 2;
}

.offices-scrollbar-indicator {
    position: absolute;
    top: 0;
    right: -8px;
    border: 2px solid #eccc72;
    width: 18px;
    height: 18px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: -webkit-transform 0s linear;
    transition: -webkit-transform 0s linear;
    transition: transform 0s linear;
    transition: transform 0s linear, -webkit-transform 0s linear;
}

@media all and (max-width: 568px) {
    .offices-scrollbar-indicator {
        display: none;
    }
}

.offices-scrollbar-item {
    position: relative;
    width: 6px;
    height: 6px;
    left: -2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #eccc72;
    cursor: pointer;
}

/* Select within simple block on the About Us page */
.select-wrapper.find-sales-agents {
    margin: 40px auto 0;
    max-width: 350px;
}

    .select-wrapper.find-sales-agents select {
        border: 1px solid #eccc72;
        height: auto;
        background-image: none;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
        padding: 15px 20px;
    }

    .select-wrapper.find-sales-agents .select-arrow::before {
        border-color: #eccc72;
    }

.sales-agents .simple-image-slider__dots .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 25px;
    max-width: 120px;
    margin: 0 auto;
    overflow: hidden;
}

    .sales-agents .simple-image-slider__dots .slick-dots li button::after {
        width: 20px;
        height: 20px;
        border-color: #7cddd0;
    }

@media (hover: hover) {
    .sales-agents .simple-image-slider__dots .slick-dots li button:hover {
        background-color: #7cddd0;
    }

        .sales-agents .simple-image-slider__dots .slick-dots li button:hover::after {
            -webkit-transform: translate(-52%, -48%) scale(1);
            transform: translate(-52%, -48%) scale(1);
        }
}

@media (hover: none) {
    .sales-agents .simple-image-slider__dots .slick-dots li button:hover {
        background-color: #3D3D3D;
    }

        .sales-agents .simple-image-slider__dots .slick-dots li button:hover::after {
            opacity: 0;
            -webkit-transform: translate(-50%, -50%) scale(0.625);
            transform: translate(-50%, -50%) scale(0.625);
        }
}

.sales-agents .simple-image-slider__dots .slick-dots li.slick-active button {
    background-color: #7cddd0;
}

    .sales-agents .simple-image-slider__dots .slick-dots li.slick-active button::after {
        -webkit-transform: translate(-52%, -48%) scale(1);
        transform: translate(-52%, -48%) scale(1);
    }

.sales-agents .simple-image-slider__dots .slick-dots li.move-left button, .sales-agents .simple-image-slider__dots .slick-dots li.move-right button {
    background-color: #3D3D3D;
}

    .sales-agents .simple-image-slider__dots .slick-dots li.move-left button::after, .sales-agents .simple-image-slider__dots .slick-dots li.move-right button::after {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(0.625);
        transform: translate(-50%, -50%) scale(0.625);
    }

.sales-agents .simple-image-slider__dots .slick-dots li.move-left {
    -webkit-animation: moveLeft 0.3s ease forwards;
    animation: moveLeft 0.3s ease forwards;
}

.sales-agents .simple-image-slider__dots .slick-dots li.move-right {
    -webkit-animation: moveRight 0.3s ease forwards;
    animation: moveRight 0.3s ease forwards;
}

@-webkit-keyframes moveLeft {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    100% {
        -webkit-transform: translate(-40px);
        transform: translate(-40px);
    }
}

@keyframes moveLeft {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    100% {
        -webkit-transform: translate(-40px);
        transform: translate(-40px);
    }
}

@-webkit-keyframes moveRight {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    100% {
        -webkit-transform: translate(40px);
        transform: translate(40px);
    }
}

@keyframes moveRight {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    100% {
        -webkit-transform: translate(40px);
        transform: translate(40px);
    }
}

#FWWC23 .sales-agents-map-pins__item > span {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .contact-block-region,
#FWWC23 .contact-block-offices-item__name {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.site-footer-hospitality-icons {
    background-color: #2E8882;
}

    .site-footer-hospitality-icons .icon-list-item {
        min-width: 230px;
    }

    .site-footer-hospitality-icons .icon-list-item__icon-wrap .icon {
        fill: #FDC82F;
    }

    .site-footer-hospitality-icons .icon-list-item__name {
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 14px;
        line-height: 0.875rem;
        color: #F6F2EC;
        text-transform: uppercase;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
    }

.site-footer-copyright p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 17px;
    line-height: 1.0625rem;
    margin-bottom: 0;
    color: #FFF;
}

#FWWC23 .icon-list-item__name {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .site-footer-copyright p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.tabbed-content-wrapper {
    background-color: #1c1919;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 100px;
}

    .tabbed-content-wrapper + .simple-intro-block {
        padding-top: 0;
    }

    .tabbed-content-wrapper + section:before,
    .tabbed-content-wrapper + div:before {
        display: none;
    }

.tabbed-content {
    max-width: 1280px;
    margin: 0 auto;
}

.tab-list .tab,
.tab-accordion {
    position: relative;
    display: inline-block;
    background-color: #FFF;
    padding: 19px 2%;
    cursor: pointer;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #A3A3A3;
    vertical-align: top;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid #D7DBE2;
    border-bottom: none;
}

    .tab-list .tab.active,
    .tab-accordion.active {
        background-color: #F2F4F8;
        color: #020F2A;
    }

.tab-accordion {
    text-align: left;
    padding-left: 55px;
    border-bottom: 1px solid #FD2A2A;
}

    .tab-accordion.active .accordion-cross:before, .tab-accordion.active .accordion-cross:after {
        background-color: #FFF;
    }

    .tab-accordion.active .accordion-cross:after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

.tab-list {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    font-size: 0;
}

    .tab-list .tab {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        border-radius: 15px 15px 0 0;
    }

        .tab-list .tab:before {
            display: none;
        }

@media all and (max-width: 1024px) {
    .tabbed-content[data-accordions="true"] .tab-list {
        display: none;
    }
}

.tab-content {
    position: relative;
    display: none;
    background-color: #F2F4F8;
    border-radius: 0 0 15px 15px;
    border: 2px solid #D7DBE2;
    border-top: none;
    overflow: hidden;
}

    .tab-content > *:last-child {
        padding-bottom: 0;
    }

    .tab-content .padding {
        padding: 80px;
    }

@media all and (max-width: 980px) {
    .tab-content .padding {
        padding: 60px;
    }
}

@media all and (max-width: 568px) {
    .tab-content .padding {
        padding: 40px;
    }
}

@media all and (min-width: 1025px1) {
    .tabbed-content[data-accordions="true"] .tab-content.active {
        display: block !important;
    }
}

.tabbed-content[data-accordions="false"] .tab-content.active {
    display: block !important;
}

@media all and (max-width: 1024px) {
    .tab-content {
        border-bottom: 1px solid #FD2A2A;
    }
}

.tab-accordion {
    display: block;
}

@media all and (min-width: 1025px1) {
    .tab-accordion {
        display: none;
    }
}

.tabbed-content[data-accordions="false"] .tab-accordion {
    display: none;
}

.accordion-cross {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 25px;
    top: 26px;
}

    .accordion-cross:before, .accordion-cross:after {
        content: '';
        position: absolute;
        top: 0;
        left: 10px;
        background-color: #B3B3B3;
        will-change: transform;
        -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
        transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
        transition: transform 0.2s ease, background-color 0.2s ease;
        transition: transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
    }

    .accordion-cross:before {
        height: 4px;
        width: 100%;
        top: 8px;
        left: 0;
    }

    .accordion-cross:after {
        width: 4px;
        height: 100%;
        top: 0;
        left: 8px;
    }

@media all and (max-width: 980px) {
    .tab-list {
        padding-left: 0;
    }
}

.contact-offices-block {
    width: 100%;
    background-color: #1c1919;
    padding: 0 40px 80px;
}

@media all and (max-width: 568px) {
    .contact-offices-block {
        padding: 0 20px 40px;
    }
}

.contact-offices-block-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-offices-block-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(50% - 20px);
    margin-right: 40px;
    margin-bottom: 40px;
    background-color: #000;
    border: 2px solid #eccc72;
    border-radius: 20px;
    overflow: hidden;
}

@media all and (max-width: 1024px) {
    .contact-offices-block-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media all and (max-width: 640px) {
    .contact-offices-block-item {
        width: 100%;
        margin-right: 0;
    }
}

.contact-offices-block-item:nth-child(even) {
    margin-right: 0;
}

.contact-offices-block-item__map, .contact-offices-block-item__content {
    position: relative;
    width: 100%;
}

@media all and (min-width: 1281px) {
    .contact-offices-block-item__map, .contact-offices-block-item__content {
        width: 50%;
    }
}

.contact-offices-block-item__map img:not(.contact-offices-block-item__map-pin) {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.contact-offices-block-item__map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: none;
}

.contact-offices-block-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
    min-width: 310px;
}

@media all and (max-width: 980px) {
    .contact-offices-block-item__content {
        padding: 30px;
    }
}

@media all and (max-width: 640px) {
    .contact-offices-block-item__content {
        padding: 40px;
    }
}

.contact-offices-block-item__content p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 8px;
    color: #FFF;
}

    .contact-offices-block-item__content p:last-child {
        margin-bottom: 0;
    }

    .contact-offices-block-item__content p img {
        display: none;
        position: relative;
        margin-right: 15px;
    }

        .contact-offices-block-item__content p img.contact-offices-block-item__address-pin {
            top: 3px;
            -ms-flex-item-align: start;
            align-self: flex-start;
        }

    .contact-offices-block-item__content p a {
        color: #FFD56C;
        text-decoration: underline;
    }

        .contact-offices-block-item__content p a:hover {
            text-decoration: none;
        }

    .contact-offices-block-item__content p.contact-offices-block-item__google {
        margin-top: 24px;
    }

        .contact-offices-block-item__content p.contact-offices-block-item__google a {
            --theme: #FFD56C;
            font-size: 12px;
            line-height: 14px;
        }

.contact-offices-block-item__name {
    position: relative;
    display: block;
    margin-bottom: 24px;
    padding-bottom: 4px;
    color: #FFD56C;
    font-size: 24px;
    line-height: 28px;
    font-family: "Anton";
    font-weight: normal;
    opacity: 0.8;
}

#FWWC23 .contact-offices-block-item__name {
    font-family: "Anton";
    font-weight: normal;
}

#FWWC23 .contact-offices-block-item__content p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

/* Umbraco styles */
.sa-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 150px;
    margin-bottom: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .sa-main a {
        background-color: transparent;
        text-decoration: underline;
    }

.sa-main-second a {
    background-color: transparent;
    text-decoration: underline;
}

.sa-main a:hover {
    background-color: transparent;
    text-decoration: none;
}

.sa-main-second a:hover {
    background-color: transparent;
    text-decoration: none;
}

.sa-main-second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sa-plita {
    margin-right: 15px;
    margin-left: 15px;
    background-color: #fffbf0;
    width: 27%;
    padding: 20px;
}

.sa-plita-name {
    position: relative;
    display: block;
    margin-bottom: 24px;
    padding-bottom: 4px;
    color: #1c1919;
    font-size: 24px;
    line-height: 28px;
    font-family: "Friz Quadrata Std - Medium", serif;
    opacity: 0.8;
}

@media (max-width: 789px) {
    .sa-main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 150px;
        margin-bottom: 50px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sa-plita {
        margin-right: auto;
        margin-left: auto;
        background-color: #fffbf0;
        width: 90%;
        padding: 20px;
        margin-bottom: 20px;
    }

    .sa-main-second {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 50px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: -50px;
    }
}

.book-with-confidence-pre-footer {
    background-color: #FFF;
    padding: 100px 40px;
}

@media all and (max-width: 1280px) {
    .book-with-confidence-pre-footer {
        padding: 60px 20px;
    }
}

.book-with-confidence-pre-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1280px;
}

.book-with-confidence-pre-footer__content {
    width: 33.33333%;
    padding-right: 40px;
}

@media all and (max-width: 1024px) {
    .book-with-confidence-pre-footer__content {
        width: 100%;
        padding-right: 20px;
    }

        .book-with-confidence-pre-footer__content .block-separator {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
}

.book-with-confidence-pre-footer__content p {
    color: #020F2A;
}

.book-with-confidence-pre-footer__heading {
    display: block;
    font-size: 32px;
    line-height: 42px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color: #020F2A;
    text-align: left;
}

@media all and (max-width: 1024px) {
    .book-with-confidence-pre-footer__heading {
        text-align: center;
    }
}

@media all and (max-width: 980px) {
    .book-with-confidence-pre-footer__heading {
        font-size: 36px;
        line-height: 40px;
    }
}

.book-with-confidence-pre-footer__heading ~ p {
    margin: 30px auto 0;
    max-width: 540px;
    text-align: center;
}

@media all and (min-width: 569px) {
    .book-with-confidence-pre-footer__heading ~ p {
        font-size: 24px;
        line-height: 28px;
    }
}

@media all and (min-width: 1025px) {
    .book-with-confidence-pre-footer__heading ~ p {
        margin: 30px 0 0;
        text-align: left;
    }
}

#FWWC23 .book-with-confidence-pre-footer__heading,
#FWWC23 .book-with-confidence-pre-footer__item-name {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .book-with-confidence-pre-footer__content p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.book-with-confidence-pre-footer__listing {
    display: grid;
    width: 66.66667%;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media all and (max-width: 1024px) {
    .book-with-confidence-pre-footer__listing {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
    }
}

.book-with-confidence-pre-footer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: center;
    padding: 0 20px 34px;
    background-color: transparent;
}

@media all and (max-width: 1024px) {
    .book-with-confidence-pre-footer__item {
        padding: 40px 20px;
    }
}

@media all and (max-width: 420px) {
    .book-with-confidence-pre-footer__item {
        padding: 20px 0;
    }
}

.book-with-confidence-pre-footer__item img {
    height: 100px;
    width: auto;
}

.book-with-confidence-pre-footer__item-name {
    display: block;
    margin-top: 24px;
    font-size: 24px;
    line-height: 28px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 500;
    color: #020F2A;
}

@media all and (max-width: 420px) {
    .book-with-confidence-pre-footer__item-name {
        font-size: 20px;
        line-height: 24px;
    }
}

.alternative-products-block {
    padding: 50px 20px;
    background-color: #1c1919;
}

@media all and (min-width: 569px) {
    .alternative-products-block {
        padding: 50px 40px;
    }
}

.alternative-products-block__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.alternative-products-block__content h2 {
    color: #FFF;
}

.alternative-products__item-listing {
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
    margin-top: 32px;
}

@media all and (min-width: 569px) {
    .alternative-products__item-listing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (min-width: 769px) {
    .alternative-products__item-listing {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media all and (min-width: 1441px) {
    .alternative-products__item-listing {
        grid-template-columns: repeat(5, 1fr);
    }
}

.alternative-products__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 16px;
    cursor: pointer;
    border: 1px solid #eccc72;
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
}

    .alternative-products__item > *:not(.overlay-link):not(a) {
        position: relative;
        z-index: 1;
    }

    .alternative-products__item > a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .alternative-products__item .star-rating img {
        width: 19px;
        height: auto;
    }

    .alternative-products__item p {
        font-size: 18px;
        line-height: 24px;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
        color: #FFF;
        margin: 40px 0 0;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

@media all and (max-width: 568px) {
    .alternative-products__item p {
        font-size: 18px;
        line-height: 22px;
    }
}

.alternative-products__item--flagship-lounge {
    background-color: #fffbf0;
}

    .alternative-products__item--flagship-lounge:hover {
        background-color: #ffe7a4;
    }

    .alternative-products__item--flagship-lounge p {
        color: #1c1919;
    }

.alternative-products__item--private-suite {
    background-color: #000;
}

    .alternative-products__item--private-suite:hover {
        background-color: #262626;
    }

.alternative-products__item--premier-lounge, .alternative-products__item--lineman-lounge {
    background-color: #2e2d2c;
}

    .alternative-products__item--premier-lounge:hover, .alternative-products__item--lineman-lounge:hover {
        background-color: #484745;
    }

.alternative-products__item--club-plus, .alternative-products__item--club {
    background-color: #F0F0F0;
}

    .alternative-products__item--club-plus:hover, .alternative-products__item--club:hover {
        background-color: #d7d7d7;
    }

    .alternative-products__item--club-plus p, .alternative-products__item--club p {
        color: #1c1919;
    }

.alternative-products__item--club-seats {
    background-color: #FFF;
}

    .alternative-products__item--club-seats:hover {
        background-color: #e6e6e6;
    }

    .alternative-products__item--club-seats p {
        color: #1c1919;
    }

.alternative-products__item-heading {
    font-size: 32px;
    line-height: 36px;
    font-family: "Anton";
    font-weight: normal;
    color: #FFF;
    text-transform: uppercase;
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
    margin-bottom: 16px;
}

.alternative-products__item.alternative-products__item--flagship-lounge .alternative-products__item-heading,
.alternative-products__item.alternative-products__item--club-plus .alternative-products__item-heading,
.alternative-products__item.alternative-products__item--club .alternative-products__item-heading,
.alternative-products__item.alternative-products__item--club-seats .alternative-products__item-heading {
    color: #1c1919;
}

#FWWC23 .alternative-products__item .alternative-products__item-heading {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .alternative-products__item p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.large-intro-block {
    position: relative;
    background-color: #F2F4F8;
    padding: 50px 40px;
}

@media all and (max-width: 568px) {
    .large-intro-block {
        padding: 30px 20px;
    }
}

.large-intro-block__summary p {
    margin: 0;
    color: #3D3D3D;
}

@media all and (min-width: 569px) {
    .large-intro-block__summary p {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 27px;
        line-height: 1.6875rem;
    }
}

.global-offices {
    background-color: #1c1919;
    padding: 110px 40px 170px;
}

@media all and (max-width: 768px) {
    .global-offices {
        padding: 70px 40px;
    }
}

@media all and (min-width: 1025px) {
    .global-offices__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.global-offices__copy {
    width: 100%;
}

@media all and (min-width: 1025px) {
    .global-offices__copy {
        width: 45%;
    }
}

.global-offices__copy h2,
.global-offices__copy .block-separator {
    margin-bottom: 42px;
}

.global-offices__copy h2 {
    color: rgba(255, 255, 255, 0.8);
}

.global-offices__copy p {
    max-width: 390px;
    color: #FFF;
}

.global-offices__listing {
    width: 100%;
    margin-top: 50px;
}

@media all and (min-width: 1025px) {
    .global-offices__listing {
        width: 60%;
        margin-top: 0;
        padding-left: 90px;
    }
}

.global-offices__listing h3 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

@media all and (min-width: 769px) {
    .global-offices__listing h3 {
        font-size: 32px;
        line-height: 36px;
    }
}

.global-offices__offices-listing {
    background-color: #FFF;
    border-radius: 4px;
    border: 2px solid #eccc72;
}

@media all and (min-width: 569px) {
    .global-offices__offices-listing {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.global-offices__office-names {
    position: relative;
    padding: 35px 40px;
}

@media all and (min-width: 769px) {
    .global-offices__office-names {
        min-width: 215px;
    }
}

@media all and (max-width: 980px) {
    .global-offices__office-names {
        padding: 25px 30px;
    }
}

.global-offices__office-names::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #eccc72;
}

@media all and (max-width: 568px) {
    .global-offices__office-names::after {
        width: 100%;
        height: 2px;
        top: auto;
        bottom: 0;
    }
}

.global-offices__office-names ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .global-offices__office-names ul li {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 22px;
        line-height: 1.375rem;
        position: relative;
        padding: 5px 0;
        color: #1c1919;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
        font-weight: 500;
        z-index: 1;
    }

@media all and (max-width: 568px) {
    .global-offices__office-names ul li {
        font-size: 16px;
        font-size: 1rem;
        line-height: 20px;
        line-height: 1.25rem;
        display: inline-block;
    }

        .global-offices__office-names ul li:not(:last-child) {
            margin-right: 12px;
        }

        .global-offices__office-names ul li:not(.active) > a {
            opacity: 0.5;
        }
}

.global-offices__office-names ul li a {
    color: inherit;
    text-decoration: none;
}

.global-offices__office-names ul li:hover {
    font-weight: 600;
}

.global-offices__office-names ul li.active {
    font-weight: 600;
}

@media all and (min-width: 569px) {
    .global-offices__office-names ul li.active::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -28.5px;
        width: 16px;
        height: 16px;
        background-color: #FFF;
        border: 2px solid #eccc72;
        border-radius: 100%;
        -webkit-transform: translate(50%, -50%);
        transform: translate(50%, -50%);
    }
}

@media all and (min-width: 981px) {
    .global-offices__office-names ul li.active::after {
        right: -38.5px;
    }
}

.global-offices__office-content {
    padding: 40px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media all and (max-width: 980px) {
    .global-offices__office-content {
        padding: 25px 30px;
    }
}

.global-offices__office-content address, .global-offices__office-content p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
    color: #1c1919;
    margin-bottom: 0.75rem;
}

    .global-offices__office-content p a {
        color: inherit;
        text-decoration: underline;
    }

        .global-offices__office-content p a:hover {
            text-decoration: none;
        }

.global-offices__office-content .button {
    margin-top: 1rem;
}

.global-offices__office-content-inner:not(.active) {
    display: none;
}

#FWWC23 .global-offices__office-names ul li {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

#FWWC23 .global-offices__copy address, #FWWC23 .global-offices__copy p,
#FWWC23 .global-offices__office-content address,
#FWWC23 .global-offices__office-content p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.select-package-block::before {
    border-top-color: #30726d;
}

.select-package-block-list-item p,
.select-package-block-list-item__reveal p {
    font-family: var(--base-font-family);
}

.select-package-block-list-item__title {
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}

    .select-package-block-list-item__title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 50px;
        height: 1px;
        background-color: #FFF;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

.select-package-block__heading {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 42px;
    line-height: 2.625rem;
}

@media all and (max-width: 568px) {
    .select-package-block__heading {
        font-size: 32px;
        font-size: 2rem;
        line-height: 34px;
        line-height: 2.125rem;
    }
}

.press-release-block {
    position: relative;
    padding: 75px 0;
    background-color: #1c1919;
    text-align: center;
    color: #FFF;
}

    .press-release-block h4 {
        font-family: "Roboto", Arial, Helvetica, sans-serif !important;
        font-weight: 600;
        color: #FFF;
    }

    .press-release-block p {
        color: #FFF;
        text-align: left;
    }

.press-release-block__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 80%;
    gap: 64px;
    margin: 32px auto 0;
}

@media all and (max-width: 768px) {
    .press-release-block__content {
        gap: 32px;
        max-width: none;
    }
}

@media all and (max-width: 568px) {
    .press-release-block__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.press-release-block__content > div > *:last-child {
    margin-bottom: 0;
}

.press-release-block__button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.generic-message {
    position: relative;
    padding: 80px 0;
    background-color: #1c1919;
    color: #FFF;
    text-align: center;
}

    .generic-message h2, .generic-message h3, .generic-message h4, .generic-message h5, .generic-message p {
        color: #FFF;
    }

    .generic-message:first-child {
        padding-top: calc(80px + var(--siteHeaderHeight));
    }

.about-block {
    padding-top: 50px !important;
    padding-bottom: 50px;
    background-color: #1c1919;
    color: #FFF;
}

    .about-block:first-child {
        padding-top: calc(50px + var(--siteHeaderHeight)) !important;
    }

    .about-block p {
        color: #FFF;
    }

    .about-block .bp-button {
        margin-top: 32px;
    }

.ecommerce-layout .btn,
.ecommerce-checkout .btn,
.ecommerce-layout .umbraco-forms-form .btn,
.ecommerce-checkout .umbraco-forms-form .btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 9px 24px;
    color: #020F2A;
    font-family: "Anton";
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    border-radius: 18px;
    border: 2px solid transparent;
    background-color: transparent;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.2px;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

    .ecommerce-layout .btn::before,
    .ecommerce-checkout .btn::before,
    .ecommerce-layout .umbraco-forms-form .btn::before,
    .ecommerce-checkout .umbraco-forms-form .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(77deg, #B58506 0%, #C99A42 25%, #FFD56C 50%, #C99A42 75%);
        z-index: -1;
        -webkit-transition: opacity 0.25s ease;
        transition: opacity 0.25s ease;
    }

    .ecommerce-layout .btn:hover, .ecommerce-layout .btn:active, .ecommerce-layout .btn.added,
    .ecommerce-checkout .btn:hover,
    .ecommerce-checkout .btn:active,
    .ecommerce-checkout .btn.added,
    .ecommerce-layout .umbraco-forms-form .btn:hover,
    .ecommerce-layout .umbraco-forms-form .btn:active,
    .ecommerce-layout .umbraco-forms-form .btn.added,
    .ecommerce-checkout .umbraco-forms-form .btn:hover,
    .ecommerce-checkout .umbraco-forms-form .btn:active,
    .ecommerce-checkout .umbraco-forms-form .btn.added {
        color: #eccc72;
        border-color: #eccc72;
        background-color: #000;
    }

        .ecommerce-layout .btn:hover::before, .ecommerce-layout .btn:active::before, .ecommerce-layout .btn.added::before,
        .ecommerce-checkout .btn:hover::before,
        .ecommerce-checkout .btn:active::before,
        .ecommerce-checkout .btn.added::before,
        .ecommerce-layout .umbraco-forms-form .btn:hover::before,
        .ecommerce-layout .umbraco-forms-form .btn:active::before,
        .ecommerce-layout .umbraco-forms-form .btn.added::before,
        .ecommerce-checkout .umbraco-forms-form .btn:hover::before,
        .ecommerce-checkout .umbraco-forms-form .btn:active::before,
        .ecommerce-checkout .umbraco-forms-form .btn.added::before {
            opacity: 0;
        }

    .ecommerce-layout .btn > *,
    .ecommerce-checkout .btn > *,
    .ecommerce-layout .umbraco-forms-form .btn > *,
    .ecommerce-checkout .umbraco-forms-form .btn > * {
        position: relative;
    }

    .ecommerce-layout .btn.disabled, .ecommerce-layout .btn[disabled],
    .ecommerce-checkout .btn.disabled,
    .ecommerce-checkout .btn[disabled],
    .ecommerce-layout .umbraco-forms-form .btn.disabled,
    .ecommerce-layout .umbraco-forms-form .btn[disabled],
    .ecommerce-checkout .umbraco-forms-form .btn.disabled,
    .ecommerce-checkout .umbraco-forms-form .btn[disabled] {
        border-color: #B3B3B3;
        color: #B3B3B3;
        pointer-events: none;
    }

.umbraco-forms-form input.btn.primary,
.umbraco-forms-form .btn.primary {
    width: auto;
    padding: 7px 24px;
    background-color: #FFF;
    color: #1c1919;
    border: 2px solid transparent;
    border-color: #1c1919;
    letter-spacing: 1.2px;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

    .umbraco-forms-form input.btn.primary:hover,
    .umbraco-forms-form .btn.primary:hover {
        background-color: #1c1919;
        border-color: #eccc72;
        color: #eccc72;
    }

.umbraco-forms-form input.btn.primary {
    text-transform: uppercase;
    color: #FFF;
    font-family: "Anton";
    font-weight: normal;
    background-color: #000;
    border-radius: 18px;
}

    .umbraco-forms-form input.btn.primary:hover {
        border-color: #eccc72;
        color: #eccc72;
    }

.ecommerce h2, .ecommerce .h2, .ecommerce h3, .ecommerce .h3, .ecommerce h4, .ecommerce .h4, .ecommerce h5, .ecommerce .h5,
.ecommerce-layout h2,
.ecommerce-layout .h2,
.ecommerce-layout h3,
.ecommerce-layout .h3,
.ecommerce-layout h4,
.ecommerce-layout .h4,
.ecommerce-layout h5,
.ecommerce-layout .h5,
.ecommerce-checkout h2,
.ecommerce-checkout .h2,
.ecommerce-checkout h3,
.ecommerce-checkout .h3,
.ecommerce-checkout h4,
.ecommerce-checkout .h4,
.ecommerce-checkout h5,
.ecommerce-checkout .h5 {
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
}

.ecommerce .form-control,
.ecommerce input[type=text],
.ecommerce input[type=email],
.ecommerce input[type=password],
.ecommerce select,
.ecommerce textarea,
.ecommerce-layout .form-control,
.ecommerce-layout input[type=text],
.ecommerce-layout input[type=email],
.ecommerce-layout input[type=password],
.ecommerce-layout select,
.ecommerce-layout textarea,
.ecommerce-checkout .form-control,
.ecommerce-checkout input[type=text],
.ecommerce-checkout input[type=email],
.ecommerce-checkout input[type=password],
.ecommerce-checkout select,
.ecommerce-checkout textarea {
    height: 36px;
    border: none;
    border-radius: 36px;
    color: #3D3D3D;
    font-weight: 400;
    font-size: 16px;
}

.ecommerce select,
.ecommerce-layout select,
.ecommerce-checkout select {
    font-weight: 400;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 4px 40px 4px 20px !important;
    background-image: url("../../media/ni3f1pnd/chevron-down.svg");
    background-position: right 20px center;
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-color: #FFF;
}

.ecommerce textarea,
.ecommerce-layout textarea,
.ecommerce-checkout textarea {
    height: 150px;
    border-radius: 10px;
}

.ecommerce .form-control-buttons,
.ecommerce-layout .form-control-buttons,
.ecommerce-checkout .form-control-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 8px;
    margin-top: 24px;
}

@media all and (min-width: 569px) {
    .ecommerce .form-control-buttons,
    .ecommerce-layout .form-control-buttons,
    .ecommerce-checkout .form-control-buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 32px;
    }

    .ecommerce .form-control-buttons--end,
    .ecommerce-layout .form-control-buttons--end,
    .ecommerce-checkout .form-control-buttons--end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.ecommerce .form-control-buttons button,
.ecommerce .form-control-buttons .btn,
.ecommerce-layout .form-control-buttons button,
.ecommerce-layout .form-control-buttons .btn,
.ecommerce-checkout .form-control-buttons button,
.ecommerce-checkout .form-control-buttons .btn {
    margin: 0;
}

@media all and (max-width: 568px) {
    .ecommerce .form-control-buttons button,
    .ecommerce .form-control-buttons .btn,
    .ecommerce-layout .form-control-buttons button,
    .ecommerce-layout .form-control-buttons .btn,
    .ecommerce-checkout .form-control-buttons button,
    .ecommerce-checkout .form-control-buttons .btn {
        display: block;
        width: 100%;
    }
}

.ecommerce label,
.ecommerce-layout label,
.ecommerce-checkout label {
    font-size: 0.7777777778rem;
    line-height: 1.1666666667rem;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.ecommerce .checkbox-wrapper,
.ecommerce-layout .checkbox-wrapper,
.ecommerce-checkout .checkbox-wrapper {
    margin-top: 16px;
}

    .ecommerce .checkbox-wrapper input[type=checkbox] + label::before,
    .ecommerce-layout .checkbox-wrapper input[type=checkbox] + label::before,
    .ecommerce-checkout .checkbox-wrapper input[type=checkbox] + label::before {
        top: -2px;
        border: none;
        width: 20px;
        height: 20px;
        border-radius: 100%;
    }

    .ecommerce .checkbox-wrapper input[type=checkbox]:checked + label::before,
    .ecommerce-layout .checkbox-wrapper input[type=checkbox]:checked + label::before,
    .ecommerce-checkout .checkbox-wrapper input[type=checkbox]:checked + label::before {
        content: '';
        background-color: #FFF;
        background-image: url("../../media/yand2ngu/check-icon-black.svg");
    }

.ecommerce .validation-summary-errors,
.ecommerce-layout .validation-summary-errors,
.ecommerce-checkout .validation-summary-errors {
    margin: 16px 0;
}

    .ecommerce .validation-summary-errors li,
    .ecommerce-layout .validation-summary-errors li,
    .ecommerce-checkout .validation-summary-errors li {
        padding-bottom: 8px;
        color: #FD2A2A;
    }

.ecommerce-layout {
    padding: var(--siteHeaderHeight) 40px 80px !important;
    background-color: #1c1919 !important;
}

@media all and (max-width: 568px) {
    .ecommerce-layout {
        padding: var(--siteHeaderHeight) 20px 40px !important;
    }
}

.ecommerce-layout .section-container {
    padding-top: 0 !important;
}

.ecommerce-layout > .section-container > div {
    padding-left: 0;
    padding-right: 0;
}

.ecommerce-layout h2, .ecommerce-layout .h2, .ecommerce-layout h3, .ecommerce-layout .h3, .ecommerce-layout h4, .ecommerce-layout .h4, .ecommerce-layout h5, .ecommerce-layout .h5 {
    color: #FFF;
}

    .ecommerce-layout h2 + hr, .ecommerce-layout .h2 + hr, .ecommerce-layout h3 + hr, .ecommerce-layout .h3 + hr, .ecommerce-layout h4 + hr, .ecommerce-layout .h4 + hr, .ecommerce-layout h5 + hr, .ecommerce-layout .h5 + hr {
        margin-bottom: 32px;
    }

@media all and (max-width: 568px) {
    .ecommerce-layout h2 + hr, .ecommerce-layout .h2 + hr, .ecommerce-layout h3 + hr, .ecommerce-layout .h3 + hr, .ecommerce-layout h4 + hr, .ecommerce-layout .h4 + hr, .ecommerce-layout h5 + hr, .ecommerce-layout .h5 + hr {
        margin-bottom: 24px;
    }
}

.hero-area + .ecommerce-layout {
    padding: 80px 40px !important;
    background-color: #1c1919 !important;
}

@media all and (max-width: 568px) {
    .hero-area + .ecommerce-layout {
        padding: 40px 20px !important;
    }
}

.ecommerce-checkout {
    padding-top: var(--siteHeaderHeight);
}

    .ecommerce-checkout input[type=text],
    .ecommerce-checkout input[type=email],
    .ecommerce-checkout input[type=password],
    .ecommerce-checkout select,
    .ecommerce-checkout textarea {
        border: 2px solid #3D3D3D;
    }

    .ecommerce-checkout .checkbox-wrapper input[type=checkbox] + label::before {
        top: -3px;
        border: 2px solid #3D3D3D;
    }

    .ecommerce-checkout .countdown {
        margin-bottom: 32px;
    }

    .ecommerce-checkout .text-cta {
        font-size: 12px;
        line-height: 14px;
        letter-spacing: 0.05em;
    }

    .ecommerce-checkout p.login-name, .ecommerce-checkout p.login-email {
        padding-left: 0;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
        font-weight: 400;
    }

/* My Account Area */
.ecommerce .input-row input[type=text],
.ecommerce .input-row input[type=email],
.ecommerce .input-row input[type=password],
.ecommerce .input-row select,
.ecommerce .input-row textarea {
    border: none;
    padding: 6px 20px;
}

.ecommerce .input-row select {
    padding: 4px 14px;
}

.ecommerce .check-row {
    border: none;
}

    .ecommerce .check-row label {
        margin: 0;
        font-weight: 400;
    }

.toastify a {
    text-decoration: underline;
}

    .toastify a:hover {
        text-decoration: none;
    }

.atc-fwc22 {
    background-color: #F2F4F8;
}

    .atc-fwc22 .product-type-content {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
        padding: 20px !important;
    }

@media all and (min-width: 993px) {
    .atc-fwc22 .product-type-content {
        min-height: 378px !important;
        padding: 0 !important;
    }
}

.atc-fwc22 .description {
    font-size: 16px !important;
    line-height: 20px;
    font-weight: 300 !important;
    color: #020F2A;
}

.product-result .img-layout {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 0 41% !important;
    flex: 1 0 41% !important;
    margin-right: 0 !important;
}

    .product-result .img-layout .triangle-shape {
        display: none;
    }

.product-result .inner-content .display-name {
    font-size: 40px !important;
    line-height: 44px;
}

@media all and (max-width: 568px) {
    .product-result .inner-content .display-name {
        font-size: 32px !important;
        line-height: 36px;
    }
}

.product-result .atc-separator {
    width: 100%;
    max-width: 290px;
    height: 1px;
    background-color: #FFF;
    margin: 20px auto !important;
}

@media all and (max-width: 568px) {
    .product-result .atc-separator {
        margin: 14px auto;
    }
}

.product-result .atc-separator > * {
    display: none;
}

@media all and (min-width: 993px) {
    .product-result .slot-content.expanded {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 59% !important;
        flex: 1 0 59% !important;
        max-width: 59% !important;
        padding-left: 9%;
    }
}

.product-result .atc-table-title,
.product-result .atc-table-column span {
    color: #020F2A !important;
    font-size: 12px !important;
    line-height: 16px !important;
    letter-spacing: 0.1em !important;
}

.product-result .atc-table-title {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.product-result .atc-table-column span {
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
    font-weight: 500 !important;
}

.product-result .atc-table-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .product-result .atc-table-column span {
        font-weight: normal;
        text-transform: none;
        letter-spacing: 0;
    }

    .product-result .atc-table-column svg {
        width: 16px;
        height: 16px;
        color: #FDC82F;
    }

    .product-result .atc-table-column.column-icon {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .product-result .atc-table-column.column-price span {
        font-size: 12px;
        font-family: "Roboto", Arial, Helvetica, sans-serif !important;
    }

    .product-result .atc-table-column.column-select {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

@media all and (max-width: 992px) {
    .product-result .atc-table-column.column-select {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
    }
}

.product-result .atc-table-column.column-select .filterLabelCheck,
.product-result .atc-table-column.column-select .check label {
    margin-bottom: 0;
    border-color: #D9D9D9;
}

.product-result .atc-table-column.column-select .filterCheck:checked + label,
.product-result .atc-table-column.column-select .check input:checked + label {
    background-color: #FFF;
    border-color: #004079;
}

    .product-result .atc-table-column.column-select .filterCheck:checked + label::before,
    .product-result .atc-table-column.column-select .check input:checked + label::before {
        height: 8px !important;
        width: 8px !important;
        top: 1px !important;
        left: 1px !important;
        background-color: #004079 !important;
    }

@media all and (max-width: 992px) {
    .product-result .atc-table-column.column-select .filterCheck:checked + label::before,
    .product-result .atc-table-column.column-select .check input:checked + label::before {
        left: -1px !important;
    }
}

.product-result .star-rating .star {
    color: #D9D9D9;
}

    .product-result .star-rating .star.active {
        color: #eccc72;
    }

.product-result .atc-button-wrapper,
.product-result .action-button-wrapper {
    margin-top: 40px;
}

@media all and (max-width: 992px) {
    .product-result .atc-button-wrapper,
    .product-result .action-button-wrapper {
        margin-top: 20px;
    }
}

.product-result .atc-button-wrapper .fifa-btn,
.product-result .action-button-wrapper .fifa-btn {
    min-height: 0 !important;
    margin-right: 0;
    padding: 9px 22px;
    border: 2px solid #020F2A;
    color: #020F2A;
    background-color: transparent;
    letter-spacing: 1.2px;
}

    .product-result .atc-button-wrapper .fifa-btn:hover, .product-result .atc-button-wrapper .fifa-btn:active,
    .product-result .action-button-wrapper .fifa-btn:hover,
    .product-result .action-button-wrapper .fifa-btn:active {
        background-color: #020F2A;
        color: #FFF;
        border: 2px solid #020F2A !important;
    }

    .product-result .atc-button-wrapper .fifa-btn:disabled, .product-result .atc-button-wrapper .fifa-btn.disabled,
    .product-result .action-button-wrapper .fifa-btn:disabled,
    .product-result .action-button-wrapper .fifa-btn.disabled {
        opacity: 0.5;
    }

/*** Edge specific ***/
@media screen and (min-width: 0\0) {
    .product-result .atc-table-column.column-select .filterCheck:checked + label::before,
    .product-result .atc-table-column.column-select .check input:checked + label::before {
        width: 9px !important;
    }
}

.single-match-package-results .close-results {
    background-color: #020F2A !important;
}

.single-match-package-results .tabs-tab-content {
    background-color: #FFF !important;
}

.single-match-package-results .flag.no-country-flag {
    -webkit-transform: none;
    transform: none;
    border-color: #000;
}

.single-match-package-results .clear-filters {
    padding: 0 15px;
    border: 2px solid #000 !important;
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
    border-radius: 18px;
}

    .single-match-package-results .clear-filters:hover {
        background-color: rgba(2, 15, 42, 0.05);
    }

@media all and (max-width: 992px) {
    .single-match-package-results .header-wrapper {
        padding: 0 20px;
        margin-bottom: 20px;
    }

        .single-match-package-results .header-wrapper .main-title {
            padding-left: 0;
        }
}

.single-match-package-results .tabs-tab-accordion-wrapper .tabs-tab-accordion-title {
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
    font-weight: 500 !important;
    color: #8F8F8F !important;
}

.single-match-package-results .tabs-tab-accordion-wrapper svg {
    color: #8F8F8F !important;
}

.single-match-package-results .tabs-tab.is-active .tabs-tab-accordion-wrapper {
    background-color: #FFF;
    border-bottom: 2px solid #F2F4F8 !important;
}

    .single-match-package-results .tabs-tab.is-active .tabs-tab-accordion-wrapper .tabs-tab-accordion-title {
        color: #000 !important;
    }

    .single-match-package-results .tabs-tab.is-active .tabs-tab-accordion-wrapper svg {
        color: #000 !important;
    }

.single-match-package-results .footer {
    border-top: none !important;
    border-radius: 15px;
    margin-top: 10px;
    padding: 50px 26px !important;
    background-color: #FFF !important;
}

@media all and (max-width: 768px) {
    .single-match-package-results .footer {
        padding: 26px 14px !important;
    }
}

.single-match-package-results .footer .disclaimer {
    padding: 0 !important;
    color: #020F2A;
}

    .single-match-package-results .footer .disclaimer a {
        color: inherit;
    }

.single-match-package-results .footer .total-label,
.single-match-package-results .footer .price > * {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.single-match-package-results .footer .price {
    display: inline-block;
}

.single-match-package-results .footer .go-checkout {
    text-transform: uppercase;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    margin-top: 10px;
    border-radius: 34px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(52.33%, #211801), color-stop(143.09%, #C99A42)) !important;
    background: linear-gradient(180deg, #211801 52.33%, #C99A42 143.09%) !important;
    color: #FFF !important;
    border-color: #020F2A !important;
}

    .single-match-package-results .footer .go-checkout:hover {
        background: #003282 !important;
        color: #FFF !important;
        border-color: #003282 !important;
    }

.select-product-container .v-select,
.single-match-package-subfilters .v-select,
.atc-select-container .vs__dropdown-toggle {
    border: 2px solid #000;
    border-radius: 18px;
    color: #000;
}

.single-match-package-subfilters .vs__actions,
.atc-select-container .vs__actions {
    border-radius: 0 18px 18px 0;
}

.single-match-package-subfilters .vs__dropdown-toggle path,
.atc-select-container .vs__dropdown-toggle path {
    fill: #000 !important;
}

.single-match-package-subfilters .vs__dropdown-option,
.atc-select-container .vs__dropdown-option {
    color: #000;
}

    .single-match-package-subfilters .vs__dropdown-option:hover,
    .atc-select-container .vs__dropdown-option:hover {
        color: #004079;
    }

.single-match-package-subfilters .vs__search, .single-match-package-subfilters .vs__search:focus,
.atc-select-container .vs__search,
.atc-select-container .vs__search:focus {
    color: #000;
}

.tabs-navigation {
    border-bottom: 3px solid #F2F4F8;
}

.tabs-navigation-item {
    text-align: center;
    border: none !important;
}

    .tabs-navigation-item .tabs-navigation-link {
        font-family: "Roboto", Arial, Helvetica, sans-serif;
        font-weight: 500;
        color: #8F8F8F;
        border: 2px solid #FFF;
        border-radius: 15px 15px 0 0;
        margin-bottom: 0;
    }

    .tabs-navigation-item.is-active .tabs-navigation-link {
        color: #000 !important;
        background-color: #FFF !important;
        border-color: #FFF !important;
        border: 2px solid #FFF !important;
    }

.single-match-package-info .group, .single-match-package-info .match-number, .single-match-package-info .date, .single-match-package-info .place {
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
}

.quantities-combo-select {
    width: 3.5em !important;
    border: 2px solid #000 !important;
    color: #000 !important;
    border-radius: 40px;
}

.single-match-package-info .atc {
    border: 2px solid #000 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 40px;
}

    .single-match-package-info .atc span {
        font-size: 12px !important;
        font-family: "Roboto", Arial, Helvetica, sans-serif !important;
        font-weight: 600;
    }

    .single-match-package-info .atc:hover {
        background-color: #020F2A !important;
        border-color: #020F2A !important;
    }

    .single-match-package-info .atc:disabled, .single-match-package-info .atc.disabled {
        pointer-events: none;
    }

    .single-match-package-info .atc:not(:disabled) {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.08%, #020F2A), color-stop(168.51%, #003282)) !important;
        background: linear-gradient(180deg, #020F2A 0.08%, #003282 168.51%) !important;
        color: #FFF !important;
        border-color: #020F2A !important;
    }

        .single-match-package-info .atc:not(:disabled):hover {
            background: #003282 !important;
            color: #FFF !important;
            border-color: #003282 !important;
        }

.single-match-package-info .smp-wrapper {
    gap: 10px;
}

.final-round-series .atc-table-column.column-select .check input:checked + label::before {
    height: 10px !important;
    width: 10px !important;
    left: 0px !important;
}

.final-round-content .close-details-btn {
    background-color: #000;
}

.final-round-content .final-round-name,
.final-round-content .matches-available-title,
.final-round-content .matches-available-description {
    color: #004079 !important;
}

.final-round-content .matches-available-title,
.final-round-content .matches-available-description {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.final-round-series-results-details,
.venue-series-results-details {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 0 59% !important;
    flex: 1 0 59% !important;
    background-color: #FFF;
    padding: 30px 60px !important;
}

@media all and (max-width: 568px) {
    .final-round-series-results-details,
    .venue-series-results-details {
        padding: 16px 30px !important;
    }
}

.final-round-series-results-details .fifa-btn::before, .final-round-series-results-details .fifa-btn::after,
.venue-series-results-details .fifa-btn::before,
.venue-series-results-details .fifa-btn::after {
    content: unset !important;
}

.final-round-series-results-details .fifa-btn .triangle,
.venue-series-results-details .fifa-btn .triangle {
    display: none;
}

.final-round-series-results-details .fifa-btn.outline,
.venue-series-results-details .fifa-btn.outline {
    border-color: #004079;
    color: #004079;
}

    .final-round-series-results-details .fifa-btn.outline:hover,
    .venue-series-results-details .fifa-btn.outline:hover {
        border-width: 1px !important;
    }

.final-round-series-results-details .venueName,
.final-round-series-results-details .price,
.venue-series-results-details .venueName,
.venue-series-results-details .price {
    color: #004079 !important;
}

.final-round-series-results-details .venueName,
.venue-series-results-details .venueName {
    margin-bottom: 20px;
}

.venue-series-results .img-layout {
    width: 100% !important;
}

.venue-series-results-details .price-label {
    margin-right: 10px;
}

.venue-series-results-details .close-details-btn {
    cursor: pointer;
}

    .venue-series-results-details .close-details-btn svg {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

@media all and (max-width: 992px) {
    .venue-series-results-details .fifa-btn.push-right {
        float: none !important;
    }
}

.collection-disclaimer {
    padding: 15px 0;
    color: #FFF;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

    .collection-disclaimer p {
        color: #FFF;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
    }

        .collection-disclaimer p a {
            color: #eccc72;
        }

.sidebar {
    background-color: #F2F4F8 !important;
}

    .sidebar.show-navigation {
        position: fixed;
    }

    .sidebar .filterButtonsContainer .fifa-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 18px;
        font-family: "Roboto", Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 14px;
        text-transform: uppercase;
        color: #004079 !important;
        border: 1px solid #004079;
    }

        .sidebar .filterButtonsContainer .fifa-btn .triangle {
            display: none;
        }

        .sidebar .filterButtonsContainer .fifa-btn:first-child {
            background-color: #F2F4F8;
        }

            .sidebar .filterButtonsContainer .fifa-btn:first-child:hover {
                background-color: #004079;
                color: #FFF !important;
            }

        .sidebar .filterButtonsContainer .fifa-btn:last-child {
            border-color: #FFF !important;
            background-color: #FFF;
        }

            .sidebar .filterButtonsContainer .fifa-btn:last-child:hover {
                border-color: #004079 !important;
                color: #FFF !important;
            }

.show-navigation .filter-results-title {
    color: #004079;
}

.hospitality-filter .filter-title {
    display: block;
    font-weight: 500 !important;
    color: #004079 !important;
    margin-bottom: 15px;
}

.hospitality-filter .cmb-filter-container .vs__dropdown-toggle {
    border: 1px solid #004079;
    border-radius: 40px;
    background: #F2F4F8;
    padding: 4px 8px;
}

.hospitality-filter .cmb-filter-container .vs__selected,
.hospitality-filter .cmb-filter-container .vs__selected-options,
.hospitality-filter .cmb-filter-container .vs__actions {
    padding-top: 0;
}

.hospitality-filter .cmb-filter-container .vs__selected,
.hospitality-filter .cmb-filter-container .vs__search,
.hospitality-filter .cmb-filter-container .vs__dropdown-option {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: #004079;
    text-transform: uppercase;
    font-size: 12px !important;
}

    .hospitality-filter .cmb-filter-container .vs__dropdown-option:hover {
        color: #020F2A;
    }

.hospitality-filter .cmb-filter-container .vs__search {
    margin-top: 0;
    padding-left: 10pt;
}

.hospitality-filter .cmb-filter-container .vs__actions svg {
    fill: #004079 !important;
}

.hospitality-filter .filterLabelCheck {
    margin-bottom: 0;
    text-transform: none;
    color: #004079 !important;
}

    .hospitality-filter .filterLabelCheck::before {
        border-color: #D9D9D9;
        background: transparent;
        width: 18px;
        height: 18px;
        top: 2px;
    }

.hospitality-filter .filterCheck:checked + label::before {
    border-color: #004079;
    background-color: #004079 !important;
}

.hospitality-filter .filterCheck:checked + label::after {
    top: -1px;
    left: -3px;
}

.hospitality-filter .venue-filter .filter-title {
    margin-bottom: 0;
}

.hospitality-filter .collapseSeparator {
    width: 90%;
    left: 5px;
    top: 30px;
    border-color: #004079;
}

    .hospitality-filter .collapseSeparator .icon-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-45deg) translateY(1px);
        transform: translate(-50%, -50%) rotate(-45deg) translateY(1px);
        width: 70%;
        height: 1px;
        background-color: #FFF;
    }

    .hospitality-filter .collapseSeparator .icon-btn .icon {
        font-size: 12px;
    }

.hospitality-filter .fromLabel {
    font-weight: normal;
    color: #004079;
}

.swal2-popup {
    background-color: #FFF !important;
    border: none !important;
    -webkit-box-shadow: 4px 4px 84px 40px rgba(0, 0, 0, 0.6);
    box-shadow: 4px 4px 84px 40px rgba(0, 0, 0, 0.6);
}

    .swal2-popup .swal2-html-container, .swal2-popup .swal2-title, .swal2-popup .swal2-close {
        color: #020F2A !important;
    }

    .swal2-popup .swal2-html-container {
        border-top-color: #020F2A;
    }

.swal2-confirm.swal2-styled {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    border-radius: 18px;
    color: #FFF !important;
    background-color: #020F2A !important;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    border: none;
    letter-spacing: 0.1em;
}

    .swal2-confirm.swal2-styled:hover {
        background-color: #052973 !important;
        color: #FFF !important;
    }

.swal2-cancel.swal2-styled {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    border: 1px solid #020F2A !important;
    color: #020F2A !important;
    background-color: #FFF !important;
    border-radius: 18px;
    -webkit-transition: color 0.25s ease, background-color 0.25s ease;
    transition: color 0.25s ease, background-color 0.25s ease;
    letter-spacing: 0.1em;
}

    .swal2-cancel.swal2-styled:hover {
        background-color: #020F2A !important;
        color: #FFF !important;
    }

.login-not-registered {
    margin-top: 40px;
}

@media all and (max-width: 568px) {
    .login-not-registered .btn {
        display: block;
        width: 100%;
    }
}

.countdown {
    color: #3D3D3D !important;
}

.cart-wrapper {
    padding: 20px;
    background-color: #FFF;
}

@media all and (max-width: 568px) {
    .cart-wrapper {
        padding: calc(20px/2);
    }
}

.cart-wrapper .countdown {
    color: #3D3D3D;
}

.cart-wrapper input[type=number],
.cart-wrapper select {
    padding: 4px 26px 4px 8px !important;
    background-color: #FFF;
    background-position: right 10px center;
    border-radius: 36px;
    border: 2px solid #3D3D3D;
    color: #3D3D3D;
    text-align: center;
}

    .cart-wrapper input[type=number]:focus, .cart-wrapper input[type=number]:active,
    .cart-wrapper select:focus,
    .cart-wrapper select:active {
        border-color: #046DEA;
    }

.cart-wrapper .remove-hover:hover {
    color: #FD2A2A;
    text-decoration: underline;
}

.cart-wrapper .cart-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 8px;
}

@media all and (min-width: 569px) {
    .cart-wrapper .cart-buttons {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        row-gap: 0;
    }
}

@media all and (max-width: 568px) {
    .cart-wrapper .cart-buttons .btn {
        height: 36px;
    }
}

.cart-details-box {
    border: 2px solid #3D3D3D;
    border-radius: 10px;
    overflow: hidden;
}

    .cart-details-box label {
        margin-bottom: 0;
    }

    .cart-details-box .checkbox-wrapper {
        margin-top: 0;
    }

        .cart-details-box .checkbox-wrapper input[type=checkbox] + label {
            margin-top: 0;
            padding-left: 46px;
        }

            .cart-details-box .checkbox-wrapper input[type=checkbox] + label::before {
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                left: 16px;
            }

.ecommerce-layout .contact-details-main > form:not(:last-child) {
    margin-bottom: 40px;
}

@media all and (max-width: 568px) {
    .ecommerce-layout .contact-details-main > form:not(:last-child) {
        margin-bottom: 24px;
    }
}

.ecommerce.myAccountComponent {
    padding-left: 0;
    padding-right: 0;
}

.my-account-intro {
    margin-bottom: 24px;
}

    .my-account-intro p {
        font-weight: 400;
        margin-bottom: 0;
    }

.my-orders .order-item {
    padding: 40px;
    background-color: #FFF;
}

@media all and (max-width: 640px) {
    .my-orders .order-item {
        padding: 20px;
    }
}

.my-orders .order-item:not(:last-child) {
    margin-bottom: 40px;
}

@media all and (max-width: 640px) {
    .my-orders .order-item:not(:last-child) {
        margin-bottom: 20px;
    }
}

.my-orders .order-item .order-header-summary {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

@media all and (max-width: 568px) {
    .my-orders .order-item .order-header-summary {
        font-size: 20px;
        line-height: 28px;
    }
}

.my-orders .order-item .hospitality-product-name {
    font-weight: 600;
}

.my-orders .order-item .hospitality-sessions-table .header,
.my-orders .order-item .hospitality-sessions-table .session-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 8px;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
}

@media all and (max-width: 568px) {
    .my-orders .order-item .hospitality-sessions-table .header,
    .my-orders .order-item .hospitality-sessions-table .session-row {
        grid-template-columns: auto;
    }

        .my-orders .order-item .hospitality-sessions-table .header .session-column::before,
        .my-orders .order-item .hospitality-sessions-table .session-row .session-column::before {
            content: attr(data-name) ":";
            font-weight: bold;
        }
}

.my-orders .order-item .hospitality-sessions-table .header {
    padding-bottom: 8px;
    font-weight: 600;
}

@media all and (max-width: 568px) {
    .my-orders .order-item .hospitality-sessions-table .header {
        display: none;
    }
}

.my-orders .order-item-header:not(:last-child),
.my-orders .order-item-content:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #B3B3B3;
}

.my-orders .order-header-summary-data {
    display: grid;
    row-gap: 8px;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    grid-template-columns: auto;
}

@media all and (min-width: 641px) {
    .my-orders .order-header-summary-data {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (min-width: 981px) {
    .my-orders .order-header-summary-data {
        grid-template-columns: repeat(3, 1fr);
    }
}

.my-orders .order-header-data.order-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.my-orders .order-header-data > span:first-child {
    font-weight: 600;
}

.my-orders .order-header-data .price.order-header-value {
    margin-left: 3px;
}

    .my-orders .order-header-data .price.order-header-value .symbol {
        margin-right: -3px;
    }

.my-account-dashboard {
    display: grid;
    gap: 16px;
    grid-template-columns: auto;
}

@media all and (min-width: 569px) {
    .my-account-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
}

.my-account-dashboard > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    background-color: #FFF;
}

    .my-account-dashboard > a .text-wrapper > span {
        display: block;
    }

        .my-account-dashboard > a .text-wrapper > span:first-child {
            font-weight: 600;
        }

        .my-account-dashboard > a .text-wrapper > span:last-child {
            font-size: 14px;
        }

.product-list-item {
    display: grid;
    grid-template-columns: auto;
    row-gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #eccc72;
}

@media all and (min-width: 769px) {
    .product-list-item {
        text-align: left;
        grid-template-columns: 50% 30% 20%;
    }
}

.product-list-item:last-child {
    border-bottom: 1px solid #eccc72;
}

.product-list-item p {
    margin: 0;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #FFF;
}

.product-list-item a {
    min-width: 0;
}

@media all and (min-width: 769px) {
    .product-list-item a {
        width: 100%;
    }
}

@media all and (max-width: 420px) {
    .product-list-item a {
        width: 100%;
    }
}

.product-list-item .btn {
    max-width: 100%;
}

@media all and (max-width: 768px) {
    .product-list-item__name {
        padding-bottom: 8px;
    }
}

.product-list-item__price {
    text-align: center;
}

.ecommerce-layout .product-list .product-list-item__name {
    padding-left: 0 !important;
}

.ecommerce-layout .product-list .btn {
    min-width: 0 !important;
}

.product-item .simpleLightbox {
    width: 100%;
}

.product-item .product-image {
    -o-object-fit: cover;
    object-fit: cover;
}

.product-item .product-image__thumb > img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-item select {
    padding: 4px 26px 4px 16px !important;
    background-color: #FFF;
    background-position: right 10px center;
    border-radius: 36px;
    border: 2px solid #3D3D3D;
    color: #3D3D3D;
}

.product-item .product-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

    .product-item .product-thumbs > a {
        width: 100%;
        padding: 0;
        aspect-ratio: 1 / 1;
    }

.ecommerce-layout .product-item .add-to-cart-buttons .quantity-label {
    color: #FFF;
}

.ecommerce-layout .product-item .add-to-cart-buttons .quantity-select {
    border: 2px solid #3D3D3D !important;
    color: #3D3D3D !important;
}

.ecommerce-layout .product-item .add-to-cart-buttons .btn.btn-primary {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.product-item__name h2 {
    font-family: "Roboto", Arial, Helvetica, sans-serif !important;
    margin-bottom: 8px;
}

@media all and (max-width: 568px) {
    .product-item__name h2 {
        margin-bottom: 0;
    }
}

.product-item__name h3 {
    font-weight: 400 !important;
}

@media all and (max-width: 568px) {
    .product-item__name h3 {
        font-size: 20px;
        line-height: 28px;
    }
}

.product-item__label {
    margin: 24px 0 0;
    color: #FFF;
    font-weight: 600;
}

.product-item__variant-price {
    margin-top: 48px;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #FFF;
}

@media all and (max-width: 568px) {
    .product-item__variant-price {
        margin-top: 32px;
    }
}

.product-item__social a:hover {
    color: #FFF;
}

.product-general-description p, .product-general-description li {
    color: #FFF;
}

    .product-general-description p a, .product-general-description li a {
        color: #eccc72;
    }

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.heading-underline {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 25px;
}

    .heading-underline::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: #eccc72;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transition: -webkit-transform 0.3s ease 0.3s;
        transition: -webkit-transform 0.3s ease 0.3s;
        transition: transform 0.3s ease 0.3s;
        transition: transform 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
    }

    .heading-underline.run-animation::after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

.heading-underline--green::after {
    background-color: #2E8882;
}

.heading-underline.u-text-center::after {
    left: 50%;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: translateX(-50%) scaleX(0);
    transform: translateX(-50%) scaleX(0);
}

.heading-underline.u-text-center.run-animation::after {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
}

/* Breakpoints */
@media all and (min-width: 569px) {
    .u-mobile-only {
        display: none;
    }
}

/* Typography */
.u-brand-australia {
    color: #009645;
}

.u-brand-newzealand {
    color: #0098FF;
}

.u-text-center {
    text-align: center;
}

/* Margin */
.u-mt-40 {
    margin-top: 40px;
}

.u-mb-40 {
    margin-bottom: 40px;
}

/* Padding */
.u-pr-0 {
    padding-right: 0;
}

/* Hover colours */
.u-hover--brand-navy:hover {
    color: #020F2A;
}

.u-hover--brand-navy-2:hover {
    color: #003282;
}

.u-hover--underline:hover {
    text-decoration: underline;
}

/* Height */
.u-height-vh-100 {
    height: 100vh;
}

/* Background colours */
.u-bg--flagship-lounge {
    background-color: #fffbf0;
    color: #1c1919;
}

    .u-bg--flagship-lounge h2, .u-bg--flagship-lounge h3, .u-bg--flagship-lounge h4, .u-bg--flagship-lounge p, .u-bg--flagship-lounge li {
        color: #1c1919;
    }

.u-bg--private-suite {
    background-color: #000;
    color: #FFF;
}

    .u-bg--private-suite h2, .u-bg--private-suite h3, .u-bg--private-suite h4, .u-bg--private-suite p, .u-bg--private-suite li {
        color: #FFF;
    }

.u-bg--shared-suite {
    background-color: #3c3c3b;
    color: #FFF;
}

    .u-bg--shared-suite h2, .u-bg--shared-suite h3, .u-bg--shared-suite h4, .u-bg--shared-suite p, .u-bg--shared-suite li {
        color: #FFF;
    }

.u-bg--premier-lounge, .u-bg--lineman-lounge {
    background-color: #2e2d2c;
    color: #FFF;
}

    .u-bg--premier-lounge h2, .u-bg--premier-lounge h3, .u-bg--premier-lounge h4, .u-bg--premier-lounge p, .u-bg--premier-lounge li, .u-bg--lineman-lounge h2, .u-bg--lineman-lounge h3, .u-bg--lineman-lounge h4, .u-bg--lineman-lounge p, .u-bg--lineman-lounge li {
        color: #FFF;
    }

.u-bg--club-plus, .u-bg--club {
    background-color: #F0F0F0;
    color: #1c1919;
}

    .u-bg--club-plus h2, .u-bg--club-plus h3, .u-bg--club-plus h4, .u-bg--club-plus p, .u-bg--club-plus li, .u-bg--club h2, .u-bg--club h3, .u-bg--club h4, .u-bg--club p, .u-bg--club li {
        color: #1c1919;
    }

.u-bg--club-seats {
    background-color: #FFF;
    color: #1c1919;
}

    .u-bg--club-seats h2, .u-bg--club-seats h3, .u-bg--club-seats h4, .u-bg--club-seats p, .u-bg--club-seats li {
        color: #1c1919;
    }

/*# sourceMappingURL=style.css.map */
