/* Easings */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* 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}
 */
@-webkit-keyframes shake {
    15% {
        -webkit-transform: rotate(-25deg);
        transform: rotate(-25deg);
    }

    30% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    45% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    60% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }

    75% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    90% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes shake {
    15% {
        -webkit-transform: rotate(-25deg);
        transform: rotate(-25deg);
    }

    30% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    45% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    60% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }

    75% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    90% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@-webkit-keyframes textRotateFadeIn {
    0% {
        opacity: 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes textRotateFadeIn {
    0% {
        opacity: 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

.text-rotate-fade-in {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

    .text-rotate-fade-in.-run-animation {
        -webkit-animation: textRotateFadeIn 1s ease forwards;
        animation: textRotateFadeIn 1s ease forwards;
    }

@-webkit-keyframes textWipeIn {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes textWipeIn {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.text-wipe-in {
    overflow: hidden;
}

    .text-wipe-in > * {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        margin-bottom: 0;
    }

    .text-wipe-in.-run-animation > * {
        -webkit-animation: textWipeIn 0.75s ease forwards;
        animation: textWipeIn 0.75s ease forwards;
    }

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*** replace with project specific fonts ***/
/*** Silverstone Fonts ***/
.-text-center {
    text-align: center;
}

.-text-right {
    text-align: right;
}

.-small {
    font-size: 14px;
    line-height: 18px;
}

time.article-date {
    display: block;
    font-family: var(--base-corp-font-thin);
    text-transform: uppercase;
    margin-bottom: 1em;
}

/* Animated / Parallax hero area */
.hero-area {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-area__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

    .hero-area__image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background-image: url(/media/3022/hero-track.svg);
        background-position: center;
        background-size: 100% auto;
        background-repeat: no-repeat;
        z-index: 1;
        will-change: transform;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0;
        -webkit-transition: opacity 0.5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.75s cubic-bezier(0, 0, 0.26, 1);
        transition: opacity 0.5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.75s cubic-bezier(0, 0, 0.26, 1);
        transition: transform 0.75s cubic-bezier(0, 0, 0.26, 1), opacity 0.5s cubic-bezier(0, 0, 0.26, 1);
        transition: transform 0.75s cubic-bezier(0, 0, 0.26, 1), opacity 0.5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.75s cubic-bezier(0, 0, 0.26, 1);
    }

.hero-area.hero-area--animate .hero-area__image::before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

@media all and (max-width: 768px) {
    .hero-area__image::before {
        background-size: 250% auto;
        background-position: center 75%;
    }
}

.hero-area__image-wrapper {
    position: relative;
    will-change: transform;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform 0.75s cubic-bezier(0, 0, 0.26, 1);
    transition: -webkit-transform 0.75s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 0.75s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 0.75s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.75s cubic-bezier(0, 0, 0.26, 1);
}

.hero-area.hero-area--animate .hero-area__image-wrapper {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.hero-area__image-wrapper--parallax-transition {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hero-area__image-wrapper img {
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
}

.hero-area__title {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 220px 30px 0;
}

@media all and (max-width: 768px) {
    .hero-area__title {
        text-align: center;
    }
}

.hero-area__title h1 {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 55px;
    line-height: 3.4375rem;
    position: relative;
    font-family: var(--base-corp-font-bold);
    font-weight: bold;
    color: var(--base-color);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-animation: animateTitle 0.75s cubic-bezier(0, 0, 0.26, 1) forwards;
    animation: animateTitle 0.75s cubic-bezier(0, 0, 0.26, 1) forwards;
}

    .hero-area__title h1 sup {
        font-size: 50%;
    }

@media all and (max-width: 768px) {
    .hero-area__title h1 {
        font-size: 50px;
        font-size: 3.125rem;
        line-height: 47px;
        line-height: 2.9375rem;
    }
}

@media all and (max-width: 400px) {
    .hero-area__title h1 {
        font-size: 44px;
        font-size: 2.75rem;
        line-height: 44px;
        line-height: 2.75rem;
    }
}

/*** Simple Hero Area ***/
.simple-hero-area {
    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;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(63vh + 145px);
    min-height: 400px;
    overflow: hidden;
}

    .simple-hero-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background-image: url(/media/3022/hero-track.svg);
        background-position: center bottom 40px;
        background-size: 100% auto;
        background-repeat: no-repeat;
        z-index: 1;
    }

@media all and (max-width: 768px) {
    .simple-hero-area::before {
        background-size: 250% auto;
    }
}

.simple-hero-area .hero-area__image-wrapper {
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
}

    .simple-hero-area .hero-area__image-wrapper img {
        height: 100%;
    }

.simple-hero-area__inner {
    position: relative;
    width: 100%;
    max-width: 840px;
    padding: 0 30px;
    text-align: center;
    z-index: 1;
}

@media all and (min-width: 769px) {
    .simple-hero-area__inner {
        margin-top: 17vh;
    }
}

.simple-hero-area__inner::before {
    content: '';
    width: 100%;
    height: 200%;
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 45px 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%) scaleX(2.5);
    background: radial-gradient(circle, rgba(18, 5, 49, 0.7) 0%, rgba(18, 5, 49, 0) 33%);
}

.simple-hero-area__inner h1 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 48px;
    line-height: 3rem;
    position: relative;
    font-family: var(--base-corp-font-bold);
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
}

@media all and (max-width: 568px) {
    .simple-hero-area__inner h1 {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 40px;
        line-height: 2.5rem;
    }
}

.simple-hero-area__inner h1 sup {
    font-size: 50%;
}

@-webkit-keyframes animateTitle {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes animateTitle {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/*** BUTTON Styles ***/
.button {
    position: relative;
    display: inline-block;
    padding: 9px 30px;
    max-width: 100%;
    margin-top: 2.5em;
    font-size: 14px;
    line-height: 18px;
    color: var(--base-color);
    font-family: var(--base-corp-font-thin);
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    z-index: 1;
}

@media only screen and (min-width: 400px) {
    .button {
        padding: 9px 7.5em;
    }
}

.button--block {
    display: block;
}

@media only screen and (min-width: 400px) {
    .button--block {
        padding: 9px 30px;
    }
}

.button--outline {
    border: 1px solid var(--base-color);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

    .button--outline::before {
        content: '';
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        position: absolute;
        top: -1px;
        left: -1px;
        background: -webkit-gradient(linear, left top, right top, from(var(--base-color-secondary)), color-stop(50%, var(--base-color-secondary-light)), to(var(--base-color-secondary)));
        background: linear-gradient(15deg, var(--base-color-secondary) 0%, var(--base-color-secondary-light) 50%, var(--base-color-secondary) 100%);
        z-index: -1;
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        opacity: 0;
        -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.3s cubic-bezier(0, 0, 0.26, 1);
        transition: opacity 0.3s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.3s cubic-bezier(0, 0, 0.26, 1);
        transition: transform 0.3s cubic-bezier(0, 0, 0.26, 1), opacity 0.3s cubic-bezier(0, 0, 0.26, 1);
        transition: transform 0.3s cubic-bezier(0, 0, 0.26, 1), opacity 0.3s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.3s cubic-bezier(0, 0, 0.26, 1);
    }

    .button--outline:hover {
        color: #FFF;
    }

        .button--outline:hover::before {
            opacity: 1;
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }

@media all and (max-width: 568px) {
    .button--outline {
        color: #FFF;
    }

        .button--outline::before {
            opacity: 1;
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }
}

.button--outline-white {
    border-color: #FFF;
    color: #FFF;
}

.rich-text {
    width: 100%;
    max-width: calc(1030px + 100px);
    margin: 0 auto;
    padding: 30px 50px 50px;
    background-color: #FFF;
    /* 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 */
    /*** Full site specific styles ***/
}

    .rich-text > *:last-child {
        margin-bottom: 0;
    }

.rich-text--full-site {
    max-width: none;
    padding: 0;
}

.rich-text table {
    width: 100%;
    display: block;
    overflow: auto;
    overflow-y: hidden;
    overflow-x: auto;
    border-collapse: collapse;
    border: none;
    margin: 30px 0;
}

    .rich-text table th, .rich-text table td {
        padding: 10px 15px;
        border-right: 1px solid #B9B9AF;
        border-top: 1px solid #B9B9AF;
    }

        .rich-text table th:first-child, .rich-text table td:first-child {
            border-left: 1px solid #B9B9AF;
        }

    .rich-text table thead th {
        text-align: left;
        background-color: #000;
        font-weight: bold;
    }

    .rich-text table tbody tr:nth-child(odd) {
        background-color: #FFF;
    }

    .rich-text table tbody tr:last-child th, .rich-text table tbody tr:last-child td {
        border-bottom: 1px solid #B9B9AF;
    }

.rich-text .left-float {
    margin: 0 10px 10px 0;
}

.rich-text .right-float {
    margin: 0 0 10px 10px;
}

.rich-text p {
    color: #000;
}

    .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 .triangle-flair img {
    margin-bottom: 0;
}

.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;
    }

.rich-text--full-site h2, .rich-text--full-site .-h2-font,
.rich-text--full-site h3, .rich-text--full-site .-h3-font,
.rich-text--full-site h4, .rich-text--full-site .-h4-font,
.rich-text--full-site h5, .rich-text--full-site .-h5-font {
    color: #707070;
}

.rich-text--full-site h2, .rich-text--full-site .-h2-font {
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 62px;
    line-height: 3.875rem;
}

@media all and (min-width: 769px) {
    .rich-text--full-site h2, .rich-text--full-site .-h2-font {
        font-size: 66px;
        font-size: 4.125rem;
        line-height: 78px;
        line-height: 4.875rem;
    }
}

.rich-text--full-site h3, .rich-text--full-site .-h3-font {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 48px;
    line-height: 3rem;
}

@media all and (min-width: 769px) {
    .rich-text--full-site h3, .rich-text--full-site .-h3-font {
        font-size: 48px;
        font-size: 3rem;
        line-height: 60px;
        line-height: 3.75rem;
    }
}

.rich-text--full-site h5, .rich-text--full-site .-h5-font {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 36px;
    line-height: 2.25rem;
}

/*** GENERAL Content Styles ***/
section {
    position: relative;
}

.styled-section-heading {
    position: relative;
    display: block;
    z-index: 1;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    border-top: 1px solid var(--base-color);
    text-align: left;
}

@media all and (max-width: 768px) {
    .styled-section-heading {
        text-align: center;
    }
}

.styled-section-heading > span {
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 28px;
    line-height: 1.75rem;
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: -1px;
    padding: 2px 0;
    font-family: var(--base-corp-font-bold);
    color: #FFF;
    text-transform: uppercase;
    z-index: 1;
}

    .styled-section-heading > span::before {
        content: '';
        position: absolute;
        width: 112%;
        height: 100%;
        top: 0;
        left: 0;
        -webkit-transform: skewX(-15deg) translateX(-6%);
        transform: skewX(-15deg) translateX(-6%);
        background-color: var(--base-color);
        z-index: -1;
    }

/* 
 * SLIDER / CAROUSEL Styles
 * Slick slider custom styles
 */
[class*=slider-wrapper] .slide:focus {
    outline: 0;
}

.slick-slider {
    margin-bottom: 0;
}

/* Arrows */
/* Left / Right arrows */
.arrows {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

@media all and (max-width: 1200px) {
    .arrows {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.arrows .arrow {
    padding: 0;
    background: transparent;
}

.arrows__holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.accordion {
    display: block;
}

    .accordion.active > .accordion-heading::before {
        top: 25px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

.accordion-heading {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 24px;
    line-height: 1.5rem;
    display: block;
    position: relative;
    padding: 15px 35px 15px 0;
    margin-bottom: 15px;
    color: var(--base-color);
    font-family: var(--base-corp-font-bold);
    cursor: pointer;
    border-bottom: 1px solid var(--base-color);
    text-transform: uppercase;
    text-align: left;
}

.accordion-toggle {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 15px;
    right: 20px;
}

    .accordion-toggle::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        border-radius: 100%;
        background-color: var(--base-color);
        width: 25px;
        height: 25px;
        -webkit-transition: opacity 0.25s ease;
        transition: opacity 0.25s ease;
    }

    .accordion-toggle::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        border-left: 3px solid #FFF;
        border-bottom: 3px solid #FFF;
        border-radius: 2px;
        -webkit-transform: translate(-50%, -50%) translateY(-1px) rotate(-45deg);
        transform: translate(-50%, -50%) translateY(-1px) rotate(-45deg);
    }

.accordion.active .accordion-toggle::after {
    -webkit-transform: translate(-50%, -50%) translateY(2px) rotate(135deg);
    transform: translate(-50%, -50%) translateY(2px) rotate(135deg);
}

.accordion-content {
    display: none;
    padding: 0 0 30px;
}

    .accordion-content > *:first-child {
        margin-top: 0;
    }

    .accordion-content > *:last-child {
        margin-bottom: 0;
    }

.tabbed-content-intro {
    text-align: center;
}

.tabbed-content-heading {
    font-size: 32px;
    font-size: 2rem;
    line-height: 32px;
    line-height: 2rem;
    font-family: var(--base-corp-font-bold);
    color: var(--base-color);
    text-transform: uppercase;
}

.tabbed-content {
    max-width: calc(1200px + 40px);
    margin-left: auto;
    margin-right: auto;
}

.tab-list .tab,
.tab-accordion {
    position: relative;
    display: inline-block;
    background-color: var(--base-color);
    padding: 15px 2% 13px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
    vertical-align: top;
    text-align: center;
    text-transform: uppercase;
}

    .tab-list .tab.active,
    .tab-accordion.active {
        background-color: var(--base-color-secondary);
    }

.tab-accordion {
    text-align: left;
    padding-left: 30px;
    margin-bottom: 1px;
}

    .tab-accordion.active .accordion-cross:after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

.tab-list {
    margin: 0;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style-type: none;
    font-size: 0;
    border-bottom: 1px solid var(--base-color);
}

    .tab-list .tab {
        width: 100%;
        margin: 0 10px;
    }

        .tab-list .tab:before {
            display: none;
        }

.tab-content {
    position: relative;
    display: none;
    background-color: #FFF;
    padding: 50px 30px;
    margin-bottom: 50px;
}

@media all and (min-width: 981px) {
    .tab-content {
        border-bottom: 1px solid var(--base-color);
    }
}

@media all and (max-width: 980px) {
    .tab-content {
        padding: 30px 20px;
        text-align: center;
    }
}

.tab-content > *:last-child {
    padding-bottom: 0;
}

.tab-content form {
    background-color: #F8F8F8;
    padding-bottom: 40px;
}

    .tab-content form fieldset > .button {
        margin-top: 20px;
        margin-bottom: 20px;
    }

.tab-content h3 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 24px;
    line-height: 1.5rem;
    color: var(--base-color);
    font-family: var(--base-corp-font-bold);
    margin-bottom: 1.25em;
    text-transform: uppercase;
}

.tab-content p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
    color: var(--base-color);
    font-family: var(--base-corp-font-thin);
}

.tab-content .package-listing__item-icon-list {
    margin-top: 0;
}

@media all and (max-width: 980px) {
    .tab-content .package-listing__item-icon-list {
        margin-top: 50px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.tab-content .package-listing__item-icon-list li {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
    width: 33.33333%;
}

@media all and (max-width: 980px) {
    .tab-content .package-listing__item-icon-list li {
        width: 50%;
        display: block;
        text-align: center;
    }

        .tab-content .package-listing__item-icon-list li > * {
            display: block;
        }

        .tab-content .package-listing__item-icon-list li:not(.package-listing__item-icon-list--availability) {
            width: 50%;
            padding: 0 20px;
            margin-bottom: 30px;
        }
}

.tab-content .package-listing__item-icon-list li > img {
    max-width: 78px;
}

@media all and (max-width: 568px) {
    .tab-content .package-listing__item-icon-list li > img {
        margin: 0 auto 20px;
    }
}

.tab-content .panel {
    padding: 0;
}

@media all and (max-width: 980px) {
    .tab-content .flex-row {
        display: block;
    }

        .tab-content .flex-row .flex-row__column {
            width: 100%;
        }
}

.tab-accordion {
    display: block;
}

.accordion-cross {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 30px;
    top: 15px;
    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;
}

    .accordion-cross::before {
        content: '';
        position: relative;
        top: -3px;
        width: 7px;
        height: 7px;
        border-left: 3px solid #FFF;
        border-bottom: 3px solid #FFF;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.tab-accordion.active .accordion-cross::before {
    top: 2px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* Tab image slider 
 * See package-listing.scss for base arrows styles
 */
.tab-image-slider-wrapper {
    position: relative;
}

.tab-image-slider {
    max-width: 666px;
    margin: 0 auto;
}

@media all and (max-width: 980px) {
    .tab-image-slider {
        width: calc(100% + 40px);
        margin-left: -20px;
        max-width: none;
    }
}

/* Food menu tabs */
.food-menu-tabs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.food-menu-tabs__list-item {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 20px;
    line-height: 1.25rem;
    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;
    width: 50%;
    max-width: 160px;
    padding: 0 20px 20px;
    color: var(--base-color);
    font-family: var(--base-corp-font-bold);
    cursor: pointer;
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
    text-decoration: none;
}

    .food-menu-tabs__list-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--base-color-secondary);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -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;
    }

    .food-menu-tabs__list-item > img {
        margin-bottom: 25px;
    }

    .food-menu-tabs__list-item:hover, .food-menu-tabs__list-item.-active {
        color: var(--base-color-secondary);
    }

        .food-menu-tabs__list-item:hover::after, .food-menu-tabs__list-item.-active::after {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }

.food-menu-tabs__content {
    display: none;
    padding-top: 30px;
    max-width: 820px;
    margin: 0 auto;
}

    .food-menu-tabs__content.-active {
        display: block;
    }

    .food-menu-tabs__content p {
        color: var(--base-color);
        margin-bottom: 0.5em;
    }

        .food-menu-tabs__content p strong {
            color: var(--base-color);
            text-transform: none;
        }


/* Room Card tabs */

.room-card {
    max-width: 1240px;
    margin-bottom: 0.75em;
}

.room-card__info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1em;
}

.room-card__info__image {
    width: 50%;
    max-height: 250px;
    max-width: 432px;
}

    .room-card__info__image .slick-slide {
        height: auto;
        min-width: initial;
    }

        .room-card__info__image .slick-slide.carousel-slide img {
            object-fit: cover;
            width: 100%;
            max-height: 250px;
            max-width: 432px;
        }

.room-card__info__data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 1em;
}

@media (max-width: 630px) {
    .room-card__info__image .slick-slide {
        opacity: 0;
        transition: opacity 0.4s ease-in;
    }

    .room-card__info__image .slick-current {
        opacity: 1;
        transition: opacity 0.4s ease-in;
    }
}


@media (max-width: 992px) {

    .room-card {
        flex-direction: column;
    }

    .room-card__info {
        width: 100%;
        flex-direction: column;
        border-right: none;
    }

    .room-card__info__image {
        width: 100%;
        text-align: center;
    }

        .room-card__info__image .slick-slide .carousel-slide img {
            max-height: 200px;
            max-width: 345px;
            margin: 0 auto;
        }

    .room-card__info__data {
        width: 100%;
    }

    .room-card__info .room-services {
        margin: 0 auto;
        justify-content: center;
    }

    .room-card .slick-dots {
        position: initial;
        margin-bottom: 0;
        width: 82%;
        margin-left: 10%;
    }
}

.room-card__info__data .room-name {
    font-size: 1.5em;
    font-weight: bold;
}

.room-card__info__data .diamond-separator {
    margin: 0.5em auto 2em auto;
}


    .room-card__info__data .diamond-separator .diamond-separator-center {
        width: 10px;
        height: 10px;
    }

    .room-card__info__data .diamond-separator .diamond-separator-end:before,
    .room-card__info__data .diamond-separator .diamond-separator-end:after {
        width: 6px;
        height: 6px;
    }

.room-card__info__data .description {
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
}

    .room-card__info__data .description .gold-title {
        color: var(--base-color-secondary);
        font-weight: bold;
        font-size: 1em;
    }

    .room-card__info__data .description span {
        color: #b3b3b3;
        font-size: 0.9em;
    }

.room-card span {
    font-family: var(--base-corp-font-medium), Arial, sans-serif;
    text-align: center;
}

.room-card__info {
    flex-wrap: wrap;
}

    .room-card__info .room-services {
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        margin-top: 5px;
    }

@media (min-width: 1150px) {
    .hotel-rooms .hotel-item {
        width: 90vw;
        margin: 0 auto;
    }

    .hotel-rooms .slick-next {
        right: -20px;
    }

    .hotel-rooms .slick-prev {
        left: -35px;
    }
}

.room-facilities {
    margin-top: 10px;
    font-family: var(--base-corp-font-medium), Arial, sans-serif;
    color: #666;
    font-weight: bold;
    font-size: 15px;
}


.rooms-slick .slick-dots {
    bottom: 0;
    margin-top: -20px;
}

    .rooms-slick .slick-dots li button {
        width: 8px;
        height: 8px;
        padding: 5px;
        position: relative;
        color: transparent;
        border: none;
        outline: none;
        border-radius: 0;
        background-color: #ccc;
        transform: rotate(45deg);
        transition: background-color 0.25s ease, transform 0.25s ease, border-radius 0.25s ease, -webkit-transform 0.25s ease;
    }

    .rooms-slick .slick-dots li.slick-active button {
        width: 12px;
        height: 12px;
        background-color: var(--base-color-secondary);
    }

    .rooms-slick .slick-dots li button:before {
        content: '';
        position: absolute;
        top: -15%;
        left: -15%;
        width: 12px;
        height: 12px;
        background-color: var(--base-color-secondary);
        opacity: 0;
        transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
    }

    .rooms-slick .slick-dots li.slick-active button:before {
        opacity: 1;
        transform: rotate(45deg) translate(25%, 0%);
    }

.room-card .service-chip {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 1em;
    margin-bottom: 0.5em;
}


/* Mobile styles */
@media all and (max-width: 980px) {
    .tab-list {
        padding-left: 0;
    }
}

@media all and (min-width: 769px) {
    .tab-accordion {
        display: none;
    }

    .tab-content.active {
        display: block !important;
    }
}

@media all and (max-width: 768px) {
    .tab-list {
        display: none;
    }

    .tabbed-content {
        margin-bottom: 30px;
    }

    .tab-content {
        margin-bottom: 4px;
    }

        .tab-content .padding {
            padding: 17px 22px;
        }
}

.panel {
    padding: 60px 0;
}

.panel--py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.panel .constraint {
    margin: 0 auto;
}

.panel .constraint--narrow {
    max-width: 568px;
}

.panel .constraint--wide {
    max-width: 960px;
}

.panel__cta-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 30px;
    padding-bottom: 30px;
    max-width: 568px;
    border-bottom: 1px solid var(--base-color);
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
}

@media all and (max-width: 568px) {
    .panel__cta-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 30px;
    }
}

.panel__cta-list .button {
    width: 100%;
    padding: 9px 1em;
}

@media all and (min-width: 569px) {
    .panel__cta-list .button:not(:last-child) {
        margin-right: 20px;
    }
}

@media all and (max-width: 568px) {
    .panel__cta-list .button {
        display: block;
        width: calc(50% - 10px);
        margin-top: 10px;
    }

        .panel__cta-list .button:first-child {
            margin-right: 20px;
        }

        .panel__cta-list .button:nth-child(3) {
            width: 100%;
        }

        .panel__cta-list .button + .button {
            margin-top: 10px;
        }
}

/* Intro variant */
.panel.panel--intro {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

    .panel.panel--intro h2, .panel.panel--intro h3 {
        margin-top: 0;
        font-family: var(--base-corp-font-bold);
    }

        .panel.panel--intro h2 > sup, .panel.panel--intro h3 > sup {
            font-size: 50%;
        }

    .panel.panel--intro h2 {
        font-size: 36px;
        font-size: 2.25rem;
        line-height: 36px;
        line-height: 2.25rem;
    }

    .panel.panel--intro h3 {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 24px;
        line-height: 1.5rem;
        color: var(--base-color);
    }

    .panel.panel--intro p {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 22px;
        line-height: 1.375rem;
        font-family: var(--base-corp-font-thin);
        color: var(--base-color);
    }

        .panel.panel--intro p strong {
            font-family: var(--base-corp-font-thin);
            text-transform: none;
            color: inherit;
        }

.text-image-alternating {
    background-image: url(/media/3023/gold-splatter.jpg);
    background-size: auto 60vh;
    background-position: center top -45%;
    background-repeat: no-repeat;
}

.text-image-alternating--flip {
    background-position: center bottom -10vh;
}

@media all and (min-width: 769px) {
    .text-image-alternating {
        background-position: center;
        background-size: cover;
    }
}

.text-image-alternating__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.text-image-alternating.text-image-alternating--flip .text-image-alternating__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media all and (min-width: 769px) {
    .text-image-alternating__inner {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.text-image-alternating__image,
.text-image-alternating__text {
    width: 100%;
    z-index: 1;
}

@media all and (min-width: 769px) {
    .text-image-alternating__image,
    .text-image-alternating__text {
        width: 50%;
    }
}

.text-image-alternating__image {
    position: relative;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0, 0, 0.26, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 0.6s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 0.6s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.6s cubic-bezier(0, 0, 0.26, 1);
}

.text-image-alternating.text-image-alternating--flip .text-image-alternating__image:not(.-run-animation) {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@media all and (max-width: 768px) {
    .text-image-alternating__image {
        max-width: 82%;
    }
}

.text-image-alternating__image.-run-animation {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.text-image-alternating__image img {
    position: relative;
    width: 100%;
    height: auto;
    -webkit-box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.16);
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.16);
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

.text-image-alternating.text-image-alternating--flip .text-image-alternating__image img {
    -webkit-box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.16);
    box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.16);
}

.text-image-alternating__text {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 60px;
    line-height: 3.75rem;
    display: block;
    padding: 50px 57px 0;
    color: var(--base-color);
    font-family: var(--base-corp-font-thin);
    text-align: left;
}

@media all and (max-width: 1024px) {
    .text-image-alternating__text {
        font-size: 5vw;
        line-height: 5vw;
    }
}

@media all and (max-width: 768px) {
    .text-image-alternating__text {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 40px;
        line-height: 2.5rem;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        text-align: center;
        padding: 50px 57px 0;
    }
}

@media all and (max-width: 568px) {
    .text-image-alternating__text {
        padding: 50px 30px 0;
    }
}

.simple-parallax-block + .text-image-alternating .text-image-alternating__image img {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.simple-parallax-block + .text-image-alternating .text-image-alternating__text {
    padding: 0 57px 50px;
}

@media all and (max-width: 768px) {
    .simple-parallax-block + .text-image-alternating .text-image-alternating__text {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        padding: 0 30px 50px;
    }
}

.simple-parallax-block {
    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;
    height: 500px;
    z-index: 0;
    overflow: hidden;
}

@media all and (max-width: 568px) {
    .simple-parallax-block {
        height: 370px;
    }
}

.simple-parallax-block__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.simple-parallax-block__image-wrapper {
    position: relative;
    will-change: transform;
    -webkit-transition: -webkit-transform 5s cubic-bezier(0, 0, 0.26, 1);
    transition: -webkit-transform 5s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 5s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 5s cubic-bezier(0, 0, 0.26, 1);
}

    .simple-parallax-block__image-wrapper.-run-animation {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

.simple-parallax-block__image-wrapper--parallax-transition {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.simple-parallax-block__image-wrapper img {
    width: 100vw;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
}

@media all and (max-width: 1200px) {
    .simple-parallax-block__image-wrapper img {
        height: 100vh;
    }
}

@media all and (max-width: 568px) {
    .simple-parallax-block__image-wrapper img {
        height: 50vh;
    }
}

.simple-parallax-block__text {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 60px;
    line-height: 3.75rem;
    position: relative;
    display: block;
    max-width: 440px;
    text-align: center;
    color: #FFF;
    font-family: var(--base-corp-font-thin);
    z-index: 1;
}

    .simple-parallax-block__text::before {
        content: '';
        width: 200%;
        height: 200%;
        position: absolute;
        top: 50%;
        left: 50%;
        padding: 45px 0;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, var(--base-color) 0%, rgba(18, 5, 49, 0) 50%, rgba(18, 5, 49, 0) 100%);
        z-index: -1;
    }

@media all and (max-width: 768px) {
    .simple-parallax-block__text {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 40px;
        line-height: 2.5rem;
        max-width: 370px;
    }
}

.upcoming-races {
    position: relative;
    height: auto;
    background-color: var(--base-color);
}

@media all and (max-width: 768px) and (min-width: 569px) {
    .upcoming-races.panel {
        padding: 0;
    }
}

@media all and (min-width: 1025px) {
    .upcoming-races {
        height: 100vh;
    }
}

@media all and (min-width: 569px) {
    .upcoming-races {
        height: 75vh;
        min-height: 600px;
    }
}

@media all and (max-width: 568px) {
    .upcoming-races {
        padding: 15vh 0 0;
    }

        .upcoming-races .styled-section-heading {
            border-color: #FFF;
        }

            .upcoming-races .styled-section-heading > span {
                color: var(--base-color);
            }

                .upcoming-races .styled-section-heading > span::before {
                    background-color: #FFF;
                }

        .upcoming-races + .upcoming-races {
            padding: 20px 0 0;
        }

            .upcoming-races + .upcoming-races::before {
                background: -webkit-gradient(linear, left bottom, left top, from(rgba(18, 5, 49, 0)), to(var(--base-color)));
                background: linear-gradient(0deg, rgba(18, 5, 49, 0) 0%, var(--base-color) 100%);
            }
}

.upcoming-races::before, .upcoming-races::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 15%;
    background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.upcoming-races::before {
    top: -1px;
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}

@media all and (max-width: 568px) {
    .upcoming-races::before {
        height: 25vh;
    }
}

.upcoming-races::after {
    bottom: 0;
}

@media all and (max-width: 568px) {
    .upcoming-races::after {
        background: -webkit-gradient(linear, left bottom, left top, from(var(--base-color)), to(rgba(18, 5, 49, 0)));
        background: linear-gradient(0deg, var(--base-color) 0%, rgba(18, 5, 49, 0) 100%);
        height: 5vh;
    }
}

.upcoming-races__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

@media all and (max-width: 568px) {
    .upcoming-races__image {
        position: relative;
    }
}

.upcoming-races__image-wrapper {
    position: relative;
}

@media all and (max-width: 568px) {
    .upcoming-races__image-wrapper::before {
        content: '';
        position: absolute;
        left: 0;
        top: -1px;
        width: 100%;
        height: 20vh;
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(18, 5, 49, 0)), to(var(--base-color)));
        background: linear-gradient(0deg, rgba(18, 5, 49, 0) 0%, var(--base-color) 100%);
        z-index: 1;
    }
}

.upcoming-races__image-wrapper img {
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
}

@media all and (max-width: 1024px) {
    .upcoming-races__image-wrapper img {
        height: 75vh;
        width: auto;
    }
}

@media all and (max-width: 568px) {
    .upcoming-races__image-wrapper img {
        height: 50vh;
        width: auto;
    }
}

.upcoming-races__inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    -webkit-transform: translateY(2 0%);
    transform: translateY(2 0%);
    opacity: 0;
    -webkit-transition: opacity 0.75s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.75s cubic-bezier(0, 0, 0.26, 1);
    transition: opacity 0.75s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.75s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 0.75s cubic-bezier(0, 0, 0.26, 1), opacity 0.75s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 0.75s cubic-bezier(0, 0, 0.26, 1), opacity 0.75s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.75s cubic-bezier(0, 0, 0.26, 1);
}

@media all and (min-width: 569px) {
    .upcoming-races__inner {
        margin: 100px auto 0;
    }
}

.upcoming-races__inner.-run-animation {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.upcoming-races__detail {
    width: 100%;
    padding: 30px;
    color: #FFF;
    -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 (min-width: 569px) {
    .upcoming-races__detail {
        max-width: 304px;
        text-align: left;
        background-color: rgba(18, 5, 49, 0.9);
    }

    .upcoming-races.upcoming-races--flip .upcoming-races__detail {
        margin-left: auto;
    }
}

@media all and (max-width: 568px) {
    .upcoming-races__detail {
        max-width: none;
        -webkit-transform: none !important;
        transform: none !important;
    }
}

.upcoming-races__detail p {
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
}

.upcoming-races__detail-title {
    font-size: 32px;
    line-height: 32px;
    display: block;
    margin-bottom: 10px;
    font-family: var(--base-corp-font-bold);
}

.more-upcoming-races {
    padding: 50px 0;
    background-image: url(/media/3024/track-gold-splatter.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.races-slider {
    max-width: 1150px;
    margin: 50px auto;
}

.races-slider__item {
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -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: 400px;
    margin: 0 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFF;
    overflow: hidden;
}

@media all and (min-width: 769px) {
    .races-slider__item {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        -webkit-transition: opacity 0.5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.5s cubic-bezier(0, 0, 0.26, 1);
        transition: opacity 0.5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.5s cubic-bezier(0, 0, 0.26, 1);
        transition: transform 0.5s cubic-bezier(0, 0, 0.26, 1), opacity 0.5s cubic-bezier(0, 0, 0.26, 1);
        transition: transform 0.5s cubic-bezier(0, 0, 0.26, 1), opacity 0.5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.5s cubic-bezier(0, 0, 0.26, 1);
    }

    .more-upcoming-races.-run-animation .races-slider__item {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media all and (max-width: 768px) {
    .races-slider__item {
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0, 0, 0.26, 1);
        transition: -webkit-transform 0.5s cubic-bezier(0, 0, 0.26, 1);
        transition: transform 0.5s cubic-bezier(0, 0, 0.26, 1);
        transition: transform 0.5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.5s cubic-bezier(0, 0, 0.26, 1);
        margin: 0 -10px;
    }

        .races-slider__item:not(.slick-current) {
            -webkit-transform: scale(0.9);
            transform: scale(0.9);
        }
}

@media all and (max-width: 568px) {
    .races-slider__item {
        margin: 0;
    }

        .races-slider__item:not(.slick-current) {
            -webkit-transform: scale(0.8);
            transform: scale(0.8);
        }
}

.races-slider__item::before, .races-slider__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.races-slider__item::before {
    height: 200%;
    background: -webkit-gradient(linear, left bottom, left top, from(var(--base-color)), to(rgba(18, 5, 49, 0)));
    background: linear-gradient(0deg, var(--base-color) 0%, rgba(18, 5, 49, 0) 100%);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.25);
    transform: scaleY(0.25);
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.26, 1);
    transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 0.35s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 0.35s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.35s cubic-bezier(0, 0, 0.26, 1);
}

@media all and (max-width: 568px) {
    .races-slider__item::before {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        height: 100%;
        background: -webkit-gradient(linear, left bottom, left top, from(var(--base-color)), color-stop(30%, rgba(18, 5, 49, 0)), color-stop(60%, rgba(18, 5, 49, 0.5)), to(var(--base-color)));
        background: linear-gradient(0deg, var(--base-color) 0%, rgba(18, 5, 49, 0) 30%, rgba(18, 5, 49, 0.5) 60%, var(--base-color) 100%);
    }
}

.races-slider__item:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

@media all and (min-width: 769px) {
    .races-slider__item:nth-child(2) {
        margin-top: 50px;
    }
}

.races-slider__item:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

@media all and (min-width: 769px) {
    .races-slider__item:nth-child(3) {
        margin-top: 100px;
    }
}

.races-slider__item:hover::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.races-slider__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: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 30px 32px;
    z-index: 1;
    height: 100%;
}

@media all and (max-width: 1024px) and (min-width: 769px) {
    .races-slider__item-content {
        padding: 25px 20px;
    }
}

@media all and (max-width: 568px) {
    .races-slider__item-content {
        text-align: center;
        padding: 20px 15px;
    }
}

.races-slider__item-content .article-date {
    margin-bottom: 0;
}

.races-slider__item-content p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
}

.races-slider__item-content .button {
    margin-top: auto;
    opacity: 0;
    top: -1px;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.races-slider__item:hover .races-slider__item-content .button {
    opacity: 1;
}

@media all and (max-width: 568px) {
    .races-slider__item-content .button {
        opacity: 1;
    }

        .races-slider__item-content .button::before {
            opacity: 1;
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }
}

.races-slider__item-title {
    display: block;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 32px;
    font-family: var(--base-corp-font-bold);
    text-transform: uppercase;
}

@media all and (max-width: 1024px) and (min-width: 769px) {
    .races-slider__item-title {
        font-size: 2.75vw;
        line-height: 2.75vw;
    }
}

@media all and (max-width: 568px) {
    .races-slider__item-title {
        font-size: 24px;
        line-height: 24px;
    }
}

.races-slider__item-hidden-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    -webkit-transition: flex-grow 0.3s cubic-bezier(0, 0, 0.26, 1), -webkit-box-flex 0.3s cubic-bezier(0, 0, 0.26, 1);
    transition: flex-grow 0.3s cubic-bezier(0, 0, 0.26, 1), -webkit-box-flex 0.3s cubic-bezier(0, 0, 0.26, 1);
    transition: flex-grow 0.3s cubic-bezier(0, 0, 0.26, 1);
    transition: flex-grow 0.3s cubic-bezier(0, 0, 0.26, 1), -webkit-box-flex 0.3s cubic-bezier(0, 0, 0.26, 1), -ms-flex-positive 0.3s cubic-bezier(0, 0, 0.26, 1);
}

.races-slider__item:hover .races-slider__item-hidden-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media all and (max-width: 568px) {
    .races-slider__item-hidden-content {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

.package-listing-section {
    background-image: url(/media/3024/track-gold-splatter.jpg);
    background-position: center 215px;
    background-size: 100% auto;
    background-repeat: space;
}

.package-listing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 50px auto 0;
    max-width: calc(1000px);
    padding: 0 20px;
}

.package-listing__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% - 10px);
    margin-bottom: 30px;
    text-align: left;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: opacity 0.5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.5s cubic-bezier(0, 0, 0.26, 1);
    transition: opacity 0.5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.5s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 0.5s cubic-bezier(0, 0, 0.26, 1), opacity 0.5s cubic-bezier(0, 0, 0.26, 1);
    transition: transform 0.5s cubic-bezier(0, 0, 0.26, 1), opacity 0.5s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.5s cubic-bezier(0, 0, 0.26, 1);
}

    .package-listing__item:nth-child(even) {
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }

    .package-listing__item.-run-animation {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

@media all and (max-width: 768px) {
    .package-listing__item {
        width: 100%;
        margin-bottom: 20px;
    }
}

.package-listing__item-slider-wrapper {
    position: relative;
}

    .package-listing__item-slider-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 40%;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(18, 5, 49, 0.9)), to(rgba(18, 5, 49, 0)));
        background: linear-gradient(180deg, rgba(18, 5, 49, 0.9) 0%, rgba(18, 5, 49, 0) 100%);
        z-index: 1;
        pointer-events: none;
    }

.package-listing__item-name {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    line-height: 28px;
    font-family: var(--base-corp-font-bold);
    color: #FFF;
    text-transform: uppercase;
    z-index: 1;
}

.package-listing__item-slider-arrows-wrapper,
.tab-image-slider-arrows-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    pointer-events: none;
}

    .package-listing__item-slider-arrows-wrapper .slick-arrow,
    .tab-image-slider-arrows-wrapper .slick-arrow {
        position: relative;
        pointer-events: auto;
        width: 65px;
        height: 65px;
        padding: 0;
        font-size: 0;
        background: none;
        left: auto;
        right: auto;
        -webkit-transform: none;
        transform: none;
    }

        .package-listing__item-slider-arrows-wrapper .slick-arrow::before,
        .tab-image-slider-arrows-wrapper .slick-arrow::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            border-radius: 100%;
            background-color: var(--base-color);
            width: 25px;
            height: 25px;
            -webkit-transition: opacity 0.25s ease;
            transition: opacity 0.25s ease;
        }

        .package-listing__item-slider-arrows-wrapper .slick-arrow::after,
        .tab-image-slider-arrows-wrapper .slick-arrow::after {
            content: '';
            position: absolute;
            width: 5px;
            height: 5px;
            border-left: 3px solid #FFF;
            border-bottom: 3px solid #FFF;
            border-radius: 2px;
            -webkit-transform: translate(-50%, -50%) translateX(1px) rotate(45deg);
            transform: translate(-50%, -50%) translateX(1px) rotate(45deg);
        }

        .package-listing__item-slider-arrows-wrapper .slick-arrow.slick-next::after,
        .tab-image-slider-arrows-wrapper .slick-arrow.slick-next::after {
            -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(-1);
            transform: translate(-50%, -50%) rotate(45deg) scale(-1);
        }

.package-listing__item-social {
    position: absolute;
    right: 5px;
    bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .package-listing__item-social > a {
        position: relative;
        display: block;
        margin: 0 5px;
        font-size: 0;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

        .package-listing__item-social > a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 100%;
            background-repeat: no-repeat;
            background-position: center;
            -webkit-transform-origin: center;
            transform-origin: center;
            -webkit-transform: scale(0);
            transform: scale(0);
            -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.26, 1);
            transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.26, 1);
            transition: transform 0.25s cubic-bezier(0, 0, 0.26, 1);
            transition: transform 0.25s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.25s cubic-bezier(0, 0, 0.26, 1);
        }

        .package-listing__item-social > a:hover::before {
            -webkit-transform: scale(1);
            transform: scale(1);
        }

.package-listing__item-favourite {
    width: 21px;
    height: 20px;
    background-image: url(/media/3044/icon-heart-outline-3x.png);
}

    .package-listing__item-favourite::before {
        background-image: url(/media/3043/icon-heart-fill-3x.png);
    }

.package-listing__item-share {
    width: 20px;
    height: 20px;
    background-image: url(/media/3046/icon-share-outline-3x.png);
}

    .package-listing__item-share::before {
        background-image: url(/media/3045/icon-share-fill-3x.png);
    }

.package-listing__item-pricing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
    background: -webkit-gradient(linear, left top, right top, from(var(--base-color-secondary)), color-stop(50%, var(--base-color-secondary-light)), to(var(--base-color-secondary)));
    background: linear-gradient(15deg, var(--base-color-secondary) 0%, var(--base-color-secondary-light) 50%, var(--base-color-secondary) 100%);
}

    .package-listing__item-pricing > span {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 20px;
        line-height: 1.25rem;
        font-family: var(--base-corp-font-thin);
        font-weight: bold;
        color: var(--base-color);
        text-transform: uppercase;
        display: block;
        margin: 0 10px;
    }

@media all and (max-width: 568px) {
    .package-listing__item-pricing > span {
        font-size: 16px;
        font-size: 1rem;
        line-height: 20px;
        line-height: 1.25rem;
    }
}

.package-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;
    padding: 30px;
    background-color: rgba(237, 237, 237, 0.9);
}

@media all and (max-width: 568px) {
    .package-listing__item-content {
        padding: 20px;
    }
}

.package-listing__item-content-lower {
    margin-top: auto;
}

.package-listing__item-title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 20px;
    line-height: 1.25rem;
    font-family: var(--base-corp-font-thin);
    font-weight: bold;
    color: var(--base-color);
    text-transform: uppercase;
}

.package-listing__item-icon-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 30px 0 25px;
}

@media all and (max-width: 568px) {
    .package-listing__item-icon-list {
        margin: 30px 0 15px;
    }
}

.package-listing__item-icon-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 50%;
    padding: 0 20px 0 0;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 17px;
    color: var(--base-color);
}

    .package-listing__item-icon-list li > img {
        margin-right: 10px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        max-width: 50px;
        height: auto;
    }

.package-listing__item-icon-list--availability {
    margin: 15px 0 25px;
}

@media all and (max-width: 568px) {
    .package-listing__item-icon-list--availability {
        margin-bottom: 0;
    }
}

.package-listing__item-icon-list--availability li {
    font-size: 11px;
    line-height: 13px;
    margin-bottom: 10px;
}

@media all and (max-width: 568px) {
    .package-listing__item-icon-list:not(.package-listing__item-icon-list--availability) li {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
}

.package-listing__item-availability {
    display: block;
    font-size: 13px;
    line-height: 17px;
    color: var(--base-color);
    font-family: var(--base-corp-font-bold);
    font-weight: bold;
}

.package-listing__item-availability--limited {
    color: var(--base-color-secondary);
}

.package-listing__item-availability--sold-out {
    color: #FF0038;
}

.package-listing__item-cta-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

    .package-listing__item-cta-list > .button {
        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;
        width: calc(50% - 10px);
        margin-top: 10px;
        padding: 9px;
    }

@media all and (max-width: 568px) {
    .package-listing__item-cta-list > .button {
        color: #FFF;
    }

        .package-listing__item-cta-list > .button::before {
            opacity: 1;
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }
}

.upcoming-races-packages {
    position: relative;
    height: 100vh;
    max-height: 500px;
    background-color: var(--base-color);
}

@media all and (max-width: 568px) {
    .upcoming-races-packages {
        height: auto;
        max-height: none;
    }
}

@media all and (max-width: 768px) {
    .upcoming-races-packages.panel {
        padding: 50px 0;
    }
}

@media all and (max-width: 568px) {
    .upcoming-races-packages.panel {
        padding: 50px 0 30px;
    }
}

.upcoming-races-packages .styled-section-heading {
    border-color: #FFF;
}

    .upcoming-races-packages .styled-section-heading > span {
        color: var(--base-color);
    }

        .upcoming-races-packages .styled-section-heading > span::before {
            background-color: #FFF;
        }

.upcoming-races-packages__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.upcoming-races-packages__image-wrapper {
    position: relative;
}

    .upcoming-races-packages__image-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: -webkit-gradient(linear, left top, right top, from(rgba(18, 5, 49, 0.9)), to(rgba(18, 5, 49, 0)));
        background: linear-gradient(15deg, rgba(18, 5, 49, 0.9) 0%, rgba(18, 5, 49, 0) 100%);
    }

    .upcoming-races-packages__image-wrapper img {
        width: 100vw;
        height: 500px;
        -o-object-fit: cover;
        object-fit: cover;
        vertical-align: middle;
    }

@media all and (max-width: 568px) {
    .upcoming-races-packages__image-wrapper img {
        height: 52vh;
        width: auto;
        max-width: 100%;
    }
}

.upcoming-races-packages__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    text-align: left;
    margin: 100px auto 0;
}

@media all and (max-width: 568px) {
    .upcoming-races-packages__inner {
        margin-top: 70px;
    }
}

.upcoming-races-packages__detail {
    width: 100%;
    max-width: 560px;
    color: #FFF;
    -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: 768px) {
    .upcoming-races-packages__detail {
        margin: 0 auto;
        text-align: center;
    }
}

.upcoming-races-packages__detail p {
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
}

.upcoming-races-packages__detail .article-date {
    font-size: 30px;
    line-height: 30px;
    font-family: var(--base-corp-font-thin);
}

@media all and (max-width: 568px) {
    .upcoming-races-packages__detail .article-date {
        font-size: 20px;
        line-height: 20px;
    }
}

.upcoming-races-packages__detail .button {
    margin-top: 2em;
}

.upcoming-races-packages__detail-title {
    font-size: 60px;
    line-height: 60px;
    display: block;
    margin-bottom: 25px;
    font-family: var(--base-corp-font-bold);
}

@media all and (max-width: 568px) {
    .upcoming-races-packages__detail-title {
        font-size: 48px;
        line-height: 48px;
    }
}

.virtual-tour {
    text-align: center;
}

    .virtual-tour iframe {
        display: block;
    }

    .virtual-tour .title-wrapper {
        padding: 0 20px;
    }

.vt-title,
.vt-description {
    display: block;
}

    .vt-title,
    .vt-title p {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 24px;
        line-height: 1.5rem;
        font-family: var(--base-corp-font-bold);
        color: var(--base-color);
        font-weight: bold;
        text-transform: uppercase;
    }

.vt-description {
    margin-bottom: 30px;
}

    .vt-description,
    .vt-description p {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 22px;
        line-height: 1.375rem;
        font-family: var(--base-corp-font-thin);
        color: var(--base-color);
    }

.image-gallery {
    padding: 38px 0;
    background-image: url(/media/3024/track-gold-splatter.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.image-gallery__scroller-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.image-gallery__scroller {
    width: 100vw;
    padding: 12px 0 12px 10vw;
    font-size: 0;
    white-space: nowrap;
    overflow: auto;
    scrollbar-width: none;
}

    .image-gallery__scroller::-webkit-scrollbar {
        display: none;
    }

    .image-gallery__scroller > * {
        display: inline-block;
        margin-right: 20px;
        -webkit-box-shadow: 0 3px 10px rgba(18, 5, 49, 0.15);
        box-shadow: 0 3px 10px rgba(18, 5, 49, 0.15);
    }

.image-gallery__scroller-cursor {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    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: 60px;
    height: 60px;
    background-color: rgba(18, 5, 49, 0.5);
    border-radius: 100%;
    color: #FFF;
    text-transform: uppercase;
    font-family: var(--base-corp-font-thin);
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    z-index: 1;
    -webkit-transform: translate(-75%, -75%);
    transform: translate(-75%, -75%);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    cursor: -webkit-grab;
    cursor: grab;
    opacity: 0;
    pointer-events: none;
}

    .image-gallery__scroller-cursor.-show {
        opacity: 1;
    }

    .image-gallery__scroller-cursor::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        border-top: 2px solid #FFF;
        border-bottom: 2px solid #FFF;
        border-left: 2px solid rgba(18, 5, 49, 0.5);
        border-right: 2px solid rgba(18, 5, 49, 0.5);
        border-radius: 100%;
        -webkit-animation: rotate 3s linear infinite;
        animation: rotate 3s linear infinite;
        z-index: 0;
    }

.image-gallery__content {
    width: 100%;
    padding: 12px 20px;
    margin: 0 auto;
    text-align: center;
}

    .image-gallery__content p {
        margin: 10px 0 0;
        font-size: 16px;
        line-height: 20px;
        font-family: var(--base-corp-font-thin);
    }

/* Simple Lightbox - custom CSS */
.sl-overlay {
    background: var(--base-color);
    z-index: 2500;
}

.sl-navigation > button {
    position: relative;
    pointer-events: auto;
    width: 65px !important;
    height: 65px !important;
    padding: 0;
    background: none;
    left: auto;
    right: auto;
    -webkit-transform: none;
    transform: none;
    font-size: 0 !important;
    line-height: 0 !important;
}

    .sl-navigation > button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        border-radius: 100%;
        background-color: var(--base-color);
        width: 25px;
        height: 25px;
        -webkit-transition: opacity 0.25s ease;
        transition: opacity 0.25s ease;
    }

    .sl-navigation > button::after {
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        border-left: 3px solid #FFF;
        border-bottom: 3px solid #FFF;
        border-radius: 2px;
        -webkit-transform: translate(-50%, -50%) translateX(1px) rotate(45deg);
        transform: translate(-50%, -50%) translateX(1px) rotate(45deg);
    }

    .sl-navigation > button.sl-next::after {
        -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(-1);
        transform: translate(-50%, -50%) rotate(45deg) scale(-1);
    }

.sl-wrapper {
    z-index: 3000;
}

    .sl-wrapper .sl-close {
        color: var(--base-color);
        background-color: #FFF;
        border-radius: 100% !important;
        font-size: 2.5rem;
    }

.entertainment-timings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.entertainment-timings__column {
    width: 33.33333%;
}

@media all and (max-width: 980px) {
    .entertainment-timings__column {
        width: 50%;
    }
}

@media all and (max-width: 568px) {
    .entertainment-timings__column {
        width: 100%;
    }
}

.entertainment-timings__item {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 16px;
    line-height: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 0;
    font-family: var(--base-corp-font-thin);
}

@media all and (max-width: 980px) {
    .entertainment-timings__item {
        font-size: 16px;
        font-size: 1rem;
        line-height: 20px;
        line-height: 1.25rem;
    }
}

.entertainment-timings__item-time {
    width: 80px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: right;
    font-weight: bold;
}

@media all and (max-width: 980px) {
    .entertainment-timings__item-time {
        width: 95px;
    }
}

.entertainment-timings__item-name {
    padding-left: 20px;
    text-align: left;
}

.parallax-image-block {
    position: relative;
    height: 500px;
    z-index: 0;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media all and (max-width: 568px) {
    .parallax-image-block {
        height: 370px;
        background-attachment: initial;
    }
}

.parallax-image-block::before, .parallax-image-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.parallax-image-block::before {
    background-image: url(/media/3022/hero-track.svg);
    background-position: center bottom 100px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    z-index: 1;
}

@media all and (max-width: 768px) {
    .parallax-image-block::before {
        background-size: 250% auto;
    }
}

.parallax-image-block::after {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(18, 5, 49, 0.5)), color-stop(10%, rgba(18, 5, 49, 0)), color-stop(90%, rgba(18, 5, 49, 0)), to(rgba(18, 5, 49, 0.5)));
    background: linear-gradient(0deg, rgba(18, 5, 49, 0.5) 0%, rgba(18, 5, 49, 0) 10%, rgba(18, 5, 49, 0) 90%, rgba(18, 5, 49, 0.5) 100%);
}

.faqs-block {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

    .faqs-block .container {
        max-width: 1200px;
    }

    .faqs-block .accordion-heading {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 24px;
        line-height: 1.5rem;
        text-transform: none;
        font-family: var(--base-corp-font-thin);
        font-weight: bold;
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 20px 35px 20px 0;
        margin-bottom: 0;
    }

        .faqs-block .accordion-heading::before {
            content: 'Q:';
            -ms-flex-negative: 0;
            flex-shrink: 0;
            width: 30px;
        }

    .faqs-block .accordion-toggle {
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: var(--base-color);
        border-radius: 100%;
        -webkit-transition: background-color 0.2s ease;
        transition: background-color 0.2s ease;
    }

        .faqs-block .accordion-toggle::before, .faqs-block .accordion-toggle::after {
            content: '';
            position: absolute;
            top: 0;
            left: 10px;
            background-color: #FFF;
            -webkit-transform: none;
            transform: none;
            border-radius: 0;
            border: none;
        }

        .faqs-block .accordion-toggle::before {
            height: 1px;
            width: 15px;
            top: 12px;
            left: 5px;
        }

        .faqs-block .accordion-toggle::after {
            width: 1px;
            height: 15px;
            top: 5px;
            left: 12px;
            will-change: transform;
            -webkit-transition: -webkit-transform 0.2s ease;
            transition: -webkit-transform 0.2s ease;
            transition: transform 0.2s ease;
            transition: transform 0.2s ease, -webkit-transform 0.2s ease;
        }

    .faqs-block .accordion {
        border-bottom: 1px solid var(--base-color);
    }

        .faqs-block .accordion.active .accordion-toggle {
            background-color: var(--base-color-secondary);
        }

            .faqs-block .accordion.active .accordion-toggle::after {
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
            }

        .faqs-block .accordion.active .accordion-heading::before {
            -webkit-transform: none;
            transform: none;
        }

    .faqs-block .accordion-content {
        position: relative;
        padding-left: 30px;
    }

        .faqs-block .accordion-content p {
            font-size: 16px;
            font-size: 1rem;
            line-height: 20px;
            line-height: 1.25rem;
            font-family: var(--base-corp-font-thin);
            color: var(--base-color);
        }

        .faqs-block .accordion-content::before {
            content: 'A:';
            position: absolute;
            top: 2px;
            left: 0;
        }

.faqs-block__listing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px 0 0;
}

    .faqs-block__listing > .accordion {
        width: calc(33.33% - 20px);
        text-align: left;
        margin: 0 10px;
    }

@media all and (max-width: 980px) {
    .faqs-block__listing > .accordion {
        width: calc(50% - 20px);
    }
}

@media all and (max-width: 568px) {
    .faqs-block__listing > .accordion {
        width: 100%;
        margin: 0;
    }
}

.breadcrumbs {
    max-width: calc(1240px);
    margin: 0 auto;
    padding: 15px 20px;
}

    .breadcrumbs ul {
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 0;
    }

        .breadcrumbs ul li {
            font-size: 12px;
            font-size: 0.75rem;
            line-height: 14px;
            line-height: 0.875rem;
            position: relative;
            display: inline-block;
            vertical-align: middle;
            color: var(--base-color);
        }

            .breadcrumbs ul li:not(:last-child) {
                padding-right: 17px;
                margin-right: 17px;
            }

                .breadcrumbs ul li:not(:last-child)::after {
                    content: '//';
                    position: absolute;
                    right: 0;
                    top: 0;
                    -webkit-transform: translateX(50%);
                    transform: translateX(50%);
                    color: var(--base-color-secondary);
                }

            .breadcrumbs ul li:last-child {
                font-weight: bold;
            }

            .breadcrumbs ul li a {
                color: inherit;
                -webkit-transition: color 0.2s ease;
                transition: color 0.2s ease;
                text-decoration: none;
            }

                .breadcrumbs ul li a:hover {
                    color: var(--base-color-secondary);
                    text-decoration: none;
                }

            .breadcrumbs ul li sup {
                top: -0.5em;
                font-size: 75%;
                line-height: 0;
                position: relative;
                vertical-align: baseline;
            }

.packages-filters {
    padding: 30px 20px;
    color: var(--base-color);
    font-family: var(--base-corp-font-thin);
}

@media all and (max-width: 568px) {
    .packages-filters {
        padding-top: 0;
    }
}

.packages-filters .select-wrapper {
    position: relative;
}

    .packages-filters .select-wrapper label {
        visibility: hidden;
        height: 0;
        margin: 0;
    }

    .packages-filters .select-wrapper select {
        font-size: 16px !important;
        line-height: 20px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding-right: 10px;
        cursor: pointer;
    }

        .packages-filters .select-wrapper select:focus + .select-arrow::before {
            top: 12px;
            -webkit-transform: rotate(-45deg) scaleY(-1);
            transform: rotate(-45deg) scaleY(-1);
        }

        .packages-filters .select-wrapper select:hover + .select-arrow {
            -webkit-transform: translateY(-50%) translateY(3px);
            transform: translateY(-50%) translateY(3px);
        }

    .packages-filters .select-wrapper .select-arrow {
        position: absolute;
        top: 50%;
        right: 10px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        pointer-events: none;
        -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;
        border-top: 6px solid var(--base-color);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
    }

@media all and (max-width: 568px) {
    .packages-filters .select-wrapper .select-arrow {
        right: 0;
    }
}

.packages-filters select {
    padding: 0;
    color: var(--base-color);
    border: none;
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
}

.packages-filters .checkbox-wrapper {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .packages-filters .checkbox-wrapper label {
        position: relative;
        padding-left: 30px;
        font-size: 16px;
        line-height: 22px;
        color: #000;
        cursor: pointer;
    }

        .packages-filters .checkbox-wrapper label::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: -2px;
            left: 0;
            background-color: #FFF;
            border: 1px solid var(--base-color);
            -webkit-box-sizing: content-box;
            box-sizing: content-box;
            background-image: url(/media/1793/form-check.svg);
            background-size: 12px auto;
            background-position: -100%;
            background-repeat: no-repeat;
            -webkit-transition: -webkit-box-shadow 0.2s ease;
            transition: -webkit-box-shadow 0.2s ease;
            transition: box-shadow 0.2s ease;
            transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
        }

        .packages-filters .checkbox-wrapper label:hover::before {
            -webkit-box-shadow: inset 0 3px 6px rgba(18, 5, 49, 0.25);
            box-shadow: inset 0 3px 6px rgba(18, 5, 49, 0.25);
        }

        .packages-filters .checkbox-wrapper label a {
            color: inherit;
        }

    .packages-filters .checkbox-wrapper input[type=checkbox] {
        position: absolute;
        left: -9999px;
    }

        .packages-filters .checkbox-wrapper input[type=checkbox]:checked + label::before,
        .packages-filters .checkbox-wrapper input[type=checkbox]:checked + input + label::before {
            background-color: rgba(18, 5, 49, 0.8);
            background-position: center;
        }

    .packages-filters .checkbox-wrapper.inline label {
        display: inline-block;
        margin-right: 30px;
    }

@media all and (max-width: 568px) {
    .packages-filters__wrapper {
        position: fixed;
        left: 0;
        bottom: 0;
        height: 75vh;
        width: 100%;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        padding: 10px 20px;
        background-color: #FFF;
        -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.26, 1);
        transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.26, 1);
        transition: transform 0.3s cubic-bezier(0, 0, 0.26, 1);
        transition: transform 0.3s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.3s cubic-bezier(0, 0, 0.26, 1);
        z-index: 1;
    }

        .packages-filters__wrapper::before {
            content: '';
            width: 100%;
            height: 25vh;
            position: fixed;
            top: 0;
            left: 0;
            background-color: rgba(18, 5, 49, 0.7);
            opacity: 0;
            -webkit-transform: translateY(-25vh);
            transform: translateY(-25vh);
            -webkit-transition: opacity 0.3s cubic-bezier(0, 0, 0.26, 1);
            transition: opacity 0.3s cubic-bezier(0, 0, 0.26, 1);
        }

        .packages-filters__wrapper.-reveal {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }

            .packages-filters__wrapper.-reveal::before {
                opacity: 1;
            }
}

.packages-filters__inner {
    max-width: 1200px;
    margin: 0 auto;
}

@media all and (max-width: 568px) {
    .packages-filters__inner {
        height: 100%;
        overflow: auto;
        padding-bottom: 30px;
    }
}

.packages-filters__row {
    position: relative;
    width: 100%;
    padding: 10px 0 5px;
}

@media all and (min-width: 569px) {
    .packages-filters__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 0 5px 95px;
    }
}

@media all and (max-width: 1366px) {
    .packages-filters__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media all and (max-width: 568px) {
    .packages-filters__row .packages-filters__label {
        display: none;
    }
}

.packages-filters__row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 5px;
}

@media all and (max-width: 568px) {
    .packages-filters__row > * {
        margin-bottom: 10px;
    }
}

@media all and (min-width: 569px) {
    .packages-filters__row > *:not(:last-child) {
        margin-right: 20px;
        padding-right: 20px;
    }
}

.packages-filters__row--default {
    border-bottom: 1px solid var(--base-color);
}

.packages-filters__row:not([class*=default]) span {
    opacity: 0;
}

.packages-filters__label {
    color: var(--base-color);
}

    .packages-filters__label strong {
        color: var(--base-color);
    }

@media all and (min-width: 569px) {
    .packages-filters__label {
        position: absolute;
        top: 13px;
        left: 0;
    }
}

.more-filters-toggle {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
}

    .more-filters-toggle::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        pointer-events: none;
        -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;
        border-top: 6px solid var(--base-color);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
    }

    .more-filters-toggle:hover::after {
        -webkit-transform: translateY(-50%) translateY(3px);
        transform: translateY(-50%) translateY(3px);
    }

    .more-filters-toggle.-open::after {
        -webkit-transform: translateY(-50%) scaleY(-1);
        transform: translateY(-50%) scaleY(-1);
    }

.more-filters {
    display: none;
}

.packages-filters__mobile,
.packages-filters__mobile-heading {
    padding: 10px 0;
    border-bottom: 1px solid var(--base-color);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media all and (min-width: 569px) {
    .packages-filters__mobile,
    .packages-filters__mobile-heading {
        display: none;
    }
}

.packages-filters__mobile .packages-filters__label {
    position: relative;
    padding-right: 17px;
}

    .packages-filters__mobile .packages-filters__label::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        pointer-events: none;
        -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;
        border-top: 6px solid var(--base-color);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
    }

.packages-filters__mobile-heading button {
    background: none;
    font-weight: bold;
    color: var(--base-color-secondary);
    text-transform: uppercase;
    border: none;
    padding: 0;
}

/* Font utilities */
.u--uppercase {
    text-transform: uppercase;
}

.u--fc-brand-navy {
    color: var(--base-color);
}

.u--text-center {
    text-align: center;
}

/* Layout utilities */
.u--overflow-hidden {
    overflow: hidden;
}

@media all and (max-width: 568px) {
    .u--hide-mobile {
        display: none;
    }
}

/* Flex */
.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -20px;
}

    .flex-row > * {
        padding: 0 20px;
    }

.flex-row--1-3-col > *:nth-child(1) {
    width: 25%;
}

.flex-row--1-3-col > *:nth-child(2) {
    width: 75%;
}
