:root {
    --minimum-site-width: 360px;
    --default-link-colour: rgba(255, 204, 0, 1);
    --themed-gradient-background-as-border: linear-gradient(to bottom, rgba(112, 84, 34, 1) 0%, rgba(172, 158, 85, 1) 20%, rgba(177, 168, 112, 1) 35%, rgba(162, 140, 52, 1) 50%, rgba(177, 168, 112, 1) 65%, rgba(172, 158, 85, 1) 80%, rgba(112, 84, 34, 1) 100%);
}

@font-face {
    font-family: "Crimson Pro";
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
    src: url(/rea/shared/fonts/Crimson/CrimsonPro_Variable.woff2) format("woff2")
}

@font-face {
    font-family: "Crimson Pro";
    font-weight: 200 900;
    font-style: italic;
    font-display: swap;
    src: url(/rea/shared/fonts/Crimson/CrimsonPro_Variable-Italic.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    src: url(/rea/shared/fonts/Inter/InterVariable.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
    src: url(/rea/shared/fonts/Inter/InterVariable-Italic.woff2) format("woff2")
}


/* ==========================================================================
   Scaffolding
   ========================================================================== */

html, body {
    min-width: var(--minimum-site-width);
    padding: 0;
    margin: 0;

    /* Adjustment for anchor tags scrolling */
    scroll-padding-top: 60px;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    background: black;
}

/* ==========================================================================
   Typography
   ========================================================================== */

a,
a:link,
a:visited,
a:hover,
a:active {
    color: var(--default-link-colour);
}

.content-heading {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 191, 0, 1);
}

@media (min-width: 576px) {
    .content-heading {
        text-align: center;
    }
}

.content-general {
    color: white;
    font-size: 0.9rem;
}

/* ==========================================================================
   CTAs
   ========================================================================== */

.cta {
    position: relative;
    border: none;
    border-radius: 6px;
    z-index: 0;
}

.cta,
.cta:link,
.cta:visited,
.cta:hover,
.cta:active {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient( 135deg, rgba(245, 230, 66, 1), rgba(200, 150, 12, 1), rgba(255, 215, 0, 1), rgba(184, 134, 11, 1), rgba(255, 215, 0, 1), rgba(200, 150, 12, 1), rgba(245, 230, 66, 1) );
    z-index: -2;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 4px;
    z-index: -1;
}

.cta--light {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -2px 4px rgba( 0, 90, 10, 0.35), 0 4px 12px rgba( 0, 0, 0, 0.3 );
    text-shadow: 0 1px 4px rgba( 0, 60, 0, 0.7), 0 0 10px rgba( 0, 0, 0, 0.4);
}

.cta--light::after {
    background: radial-gradient( ellipse at 50% 60%, rgba( 0, 90, 10, 0.35) 0%, rgba( 0, 0, 0, 0 ) 100% ), linear-gradient( 180deg, rgba(120, 230, 80, 1) 0%, rgba( 50, 180, 20, 1) 100% );
}

.cta--dark {
    box-shadow: inset 0 1px 0 rgba(100, 200, 100, 0.2), inset 0 -2px 4px rgba( 0, 0, 0, 0.5), 0 3px 8px rgba( 0, 0, 0, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.4);
}

.cta--dark::after {
    background: linear-gradient( 180deg, rgba(37, 77, 38, 1) 0%, rgba(16, 31, 17, 1) 50%, rgba(30, 61, 31, 1) 100% );
}

/* Used as part of content in body of page */
.cta--body {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    padding: 0.5em;
    font-size: 1.2rem;
}

/* ==========================================================================
   Dividers
   ========================================================================== */

.horizontal-divider {
    height: 3px;
    max-width: 800px;
    margin: 0.5rem auto;
    opacity: unset;
    box-shadow: unset;
    border-top: unset;
    background-image: linear-gradient(to right, rgba( 0, 0, 0, 1) 0, rgba(204, 0, 0, 1) 50%, rgba( 0, 0, 0, 1) 100%);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header-brand-text {
    background: black;
    color: white;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 0.75em;
    padding: 0.25em 0.5em;
    margin: 0 auto;
    line-height: 1.5em;
}

@media (min-width: 480px) {
    .header-brand-text {
        font-size: 0.875em;
    }
}

@media (min-width: 992px) {
    .header-brand-text {
        letter-spacing: 0.2em;
        font-size: 1em;
    }
}

/* ==========================================================================
   Top Navigation
   ========================================================================== */

.section-nav-top {
    position: sticky;
    z-index: 100;
    top: 0;
}

.section-nav-top .navbar {
    background-image: linear-gradient(to right, rgba(204, 0, 0, 1), rgba(51, 0, 0, 1));
    padding: 0.25em 0;
    border-bottom: 2px solid rgba(255, 204, 0, 1);
    border-top: 2px solid rgba(255, 204, 0, 1);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.8);
}

/* Reduce normal padding as it's very tight on small mobiles */
@media (max-width: 479.98px) {
    .section-nav-top .navbar .container {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.section-nav-top .navbar-brand {
    padding: 0;
    margin-right: 0.4em;
}

.section-nav-top img {
    height: 50px;
    padding: 0;
    margin: 0;
}

/* Links in Navbar
   ========================================================================== */

.section-nav-top .nav-item + .nav-item {
    margin-left: 0.5em;
}

.section-nav-top .nav-link {
    padding: 1.5em 0;
    font-size: 0.7em;
    letter-spacing: 0.1em;
}

@media (min-width: 480px) {
    .section-nav-top .nav-link {
        font-size: 0.85em;
    }
}

@media (min-width: 576px) {
    .section-nav-top .nav-link {
        padding: 0.5em 0;
        font-size: 1em;
    }
}

/* ==========================================================================
   Shared Hero Section
   ========================================================================== */

.section-hero {
    padding: 1.5rem 0 0.5rem;
    margin-bottom: 0.25rem;
    position: relative;
    color: white;
}

@media (min-width: 576px) {
    .section-hero {
        margin-bottom: unset;
    }
}

/* Rotating background tiles, also reused for login page
   ========================================================================== */

.hero-background-container {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: -1;
}

@media (min-width: 576px) {
    .hero-background-container {
        height: calc(100% - 3rem);
        top: 1.5rem;
    }
}

.hero-background-tiles {
    width: 1000px;
    height: auto;
    margin-top: -60px;
    opacity: 0.8;
}

@media (min-width: 576px) {
    .hero-background-tiles {
        width: 800px;
        margin-top: unset;
    }
}

/* Gap for when the tiles repeat itself */
.hero-background-tiles + .hero-background-tiles {
    padding-left: 0.4rem;
}

.hero-background-fade {
    width: 50vw;
    min-width: 230px;
    position: absolute;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 576px) {
    .hero-background-fade {
        width: calc((100vw - 600px) / 2);
        min-width: 120px;
    }
}

.hero-background-fade--left {
    left: 0;
    background: linear-gradient(to right, black 0, black 90%, transparent);
}

@media (min-width: 576px) {
    .hero-background-fade--left {
        background: linear-gradient(to right, black 0, black 66%, transparent);
    }
}

/* Right fade only exists on desktop */
@media (min-width: 576px) {
    .hero-background-fade--right {
        right: 0;
        background: linear-gradient(to left, black 0, black 66%, transparent);
    }
}

/* Only used in login page */
.hero-background-fade--top {
    left: 0;
    width: 100vw;
    height: 200px;
    top: -100px;
    background: linear-gradient(to bottom, black 0, black 66%, transparent);
}

/* Title text in Hero
   ========================================================================== */

.container--hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 50vw;
    min-width: 230px;
    margin: 0 auto 0 0;
}

@media (min-width: 576px) {
    .container--hero-title {
        height: 380px;
        max-width: unset;
        margin: 0 auto;
        justify-content: center;
        top: 0;
    }
}

.hero-title {
    text-align: center;
    padding-top: 0.5em;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05em;
    letter-spacing: 0.1em;
    position: relative;
    color: rgba(255, 215, 0, 1);
    text-shadow: -2px -2px 0 rgba(220, 20, 20, 1), 2px -2px 0 rgba(220, 20, 20, 1), -2px 2px 0 rgba(220, 20, 20, 1), 2px 2px 0 rgba(220, 20, 20, 1), -3px 0 0 rgba(220, 20, 20, 1), 3px 0 0 rgba(220, 20, 20, 1), 0 -3px 0 rgba(220, 20, 20, 1), 0 3px 0 rgba(220, 20, 20, 1), -5px 0 2px rgba( 40, 40, 40, 1), 5px 0 2px rgba( 40, 40, 40, 1), 0 -5px 2px rgba( 40, 40, 40, 1), 0 5px 2px rgba( 40, 40, 40, 1), -4px -4px 2px rgba( 40, 40, 40, 1), 4px -4px 2px rgba( 40, 40, 40, 1), -4px 4px 2px rgba( 40, 40, 40, 1), 4px 4px 2px rgba( 40, 40, 40, 1), -5px -2px 2px rgba( 40, 40, 40, 1), 5px -2px 2px rgba( 40, 40, 40, 1), -5px 2px 2px rgba( 40, 40, 40, 1), 5px 2px 2px rgba( 40, 40, 40, 1), -2px -5px 2px rgba( 40, 40, 40, 1), 2px -5px 2px rgba( 40, 40, 40, 1), -2px 5px 2px rgba( 40, 40, 40, 1), 2px 5px 2px rgba( 40, 40, 40, 1), 0 0 2px rgba( 30, 30, 30, 1), 0 0 3px rgba( 30, 30, 30, 1), 0 0 14px rgba( 0, 0, 0, 0.85);
}

@media (min-width: 576px) {
    .hero-title {
        padding-top: 0;
        font-size: 40px;
    }
}

.hero-title span {
    display: block;
}

.hero-title .hero-title--welcome {
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-size: 1rem;
    letter-spacing: 0.2em;
    line-height: 1em;
    font-weight: 700;
    text-shadow: 0 0 2px black, 0 0 4px black;
    z-index: 1;
    margin-bottom: 1em;
}

.hero-title .hero-title--xsmall {
    font-size: 0.75em;
    line-height: 1.2em;
    letter-spacing: 0.1em;
}

.hero-title .hero-title--small {
    font-size: 0.875em;
    line-height: 1.1em;
    letter-spacing: 0.1em;
}

.hero-title .hero-title--medium {
    font-size: 1.33em;
    line-height: 1em;
    letter-spacing: 0.1em;
}

.hero-title .hero-title--large {
    font-size: 1.65em;
    line-height: 1.05em;
    letter-spacing: 0.1em;
}

.hero-title .hero-title--xlarge {
    font-size: 2.3em;
    line-height: 0.95em;
    letter-spacing: 0.1em;
}

.hero-title .hero-title--xlarge:not(:first-of-type) {
    line-height: 1.1em;
}


@media (min-width: 576px) {
    .hero-title-largescreen-mist {
        z-index: 0;
        position: absolute;
        width: 500px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: linear-gradient(to right, transparent 0%, rgba(223, 1, 1, 0.9) 50%, transparent 100%);
    }
}

/* CTA in Hero
   ========================================================================== */

.cta--hero {
    display: block;
    font-size: 26px;
    margin: 1rem auto 0.5rem;
    padding: 0.5rem 0;
}

.cta--hero-smallscreen {
    line-height: 1.1em;
    letter-spacing: 0.15em;
    font-weight: 700;
}

@media (min-width: 576px) {
    .cta--hero-smallscreen {
        display: none;
    }
}

/* French adjustment */
.culture-fr .cta--hero-smallscreen {
    font-size: 22px;
}

.cta--hero-largescreen {
    display: none;
}

@media (min-width: 576px) {
    .cta--hero-largescreen {
        display: inline-block;
        padding: 0.5rem 2rem;
        border-radius: 40px;
        font-size: 40px;
        font-weight: 900;
    }
}

.cta--hero-largescreen::before,
.cta--hero-largescreen::after {
    border-radius: 40px;
}

.hero-regulatory-disclaimer {
    font-size: 11px;
    text-shadow: 0 0 1px black, 0 0 2px black, 0 0 3px black;
    margin: 0 auto;
}

/* ==========================================================================
   HWRG/RTPG Video
   ========================================================================== */

.gt-video-container {
    position: relative;
    text-align: center;
    margin: 1rem auto;
    font-size: 0;
}

.gt-video {
    width: 100%;
    max-width: 720px;
    height: auto;
    border: 2px solid rgba(120, 120, 120, 1);
    border-radius: 8px;
}

.gt-video-play-overlay {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 720px;
    z-index: 1;
}

.gt-video-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.gt-video-spinner-icon {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: gt-video-spin 0.8s linear infinite;
}

@keyframes gt-video-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Homepage
   ========================================================================== */

/* Trusted Online Casinos
   ========================================================================== */

.section-trusted-online-casino {
    margin: 0.5em auto;
    text-align: center;
}

.section-trusted-online-casino .container {
    max-width: 540px;
}

.trusted-online-casino-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Bootstrap CSS Grid
   ========================================================================== */

.grid {
    display: grid;
    grid-template-rows: repeat(var(--bs-rows, 1), 1fr);
    grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
    gap: var(--bs-gap, 1.5rem);
}

.grid .g-col-1 { grid-column: auto / span 1; }
.grid .g-col-2 { grid-column: auto / span 2; }
.grid .g-col-3 { grid-column: auto / span 3; }
.grid .g-col-4 { grid-column: auto / span 4; }
.grid .g-col-5 { grid-column: auto / span 5; }
.grid .g-col-6 { grid-column: auto / span 6; }
.grid .g-col-7 { grid-column: auto / span 7; }
.grid .g-col-8 { grid-column: auto / span 8; }
.grid .g-col-9 { grid-column: auto / span 9; }
.grid .g-col-10 { grid-column: auto / span 10; }
.grid .g-col-11 { grid-column: auto / span 11; }
.grid .g-col-12 { grid-column: auto / span 12; }

.grid .g-start-1 { grid-column-start: 1; }
.grid .g-start-2 { grid-column-start: 2; }
.grid .g-start-3 { grid-column-start: 3; }
.grid .g-start-4 { grid-column-start: 4; }
.grid .g-start-5 { grid-column-start: 5; }
.grid .g-start-6 { grid-column-start: 6; }
.grid .g-start-7 { grid-column-start: 7; }
.grid .g-start-8 { grid-column-start: 8; }
.grid .g-start-9 { grid-column-start: 9; }
.grid .g-start-10 { grid-column-start: 10; }
.grid .g-start-11 { grid-column-start: 11; }

@media (min-width: 576px) {
    .grid .g-col-sm-1 { grid-column: auto / span 1; }
    .grid .g-col-sm-2 { grid-column: auto / span 2; }
    .grid .g-col-sm-3 { grid-column: auto / span 3; }
    .grid .g-col-sm-4 { grid-column: auto / span 4; }
    .grid .g-col-sm-5 { grid-column: auto / span 5; }
    .grid .g-col-sm-6 { grid-column: auto / span 6; }
    .grid .g-col-sm-7 { grid-column: auto / span 7; }
    .grid .g-col-sm-8 { grid-column: auto / span 8; }
    .grid .g-col-sm-9 { grid-column: auto / span 9; }
    .grid .g-col-sm-10 { grid-column: auto / span 10; }
    .grid .g-col-sm-11 { grid-column: auto / span 11; }
    .grid .g-col-sm-12 { grid-column: auto / span 12; }
    .grid .g-start-sm-1 { grid-column-start: 1; }
    .grid .g-start-sm-2 { grid-column-start: 2; }
    .grid .g-start-sm-3 { grid-column-start: 3; }
    .grid .g-start-sm-4 { grid-column-start: 4; }
    .grid .g-start-sm-5 { grid-column-start: 5; }
    .grid .g-start-sm-6 { grid-column-start: 6; }
    .grid .g-start-sm-7 { grid-column-start: 7; }
    .grid .g-start-sm-8 { grid-column-start: 8; }
    .grid .g-start-sm-9 { grid-column-start: 9; }
    .grid .g-start-sm-10 { grid-column-start: 10; }
    .grid .g-start-sm-11 { grid-column-start: 11; }
}

@media (min-width: 768px) {
    .grid .g-col-md-1 { grid-column: auto / span 1; }
    .grid .g-col-md-2 { grid-column: auto / span 2; }
    .grid .g-col-md-3 { grid-column: auto / span 3; }
    .grid .g-col-md-4 { grid-column: auto / span 4; }
    .grid .g-col-md-5 { grid-column: auto / span 5; }
    .grid .g-col-md-6 { grid-column: auto / span 6; }
    .grid .g-col-md-7 { grid-column: auto / span 7; }
    .grid .g-col-md-8 { grid-column: auto / span 8; }
    .grid .g-col-md-9 { grid-column: auto / span 9; }
    .grid .g-col-md-10 { grid-column: auto / span 10; }
    .grid .g-col-md-11 { grid-column: auto / span 11; }
    .grid .g-col-md-12 { grid-column: auto / span 12; }
    .grid .g-start-md-1 { grid-column-start: 1; }
    .grid .g-start-md-2 { grid-column-start: 2; }
    .grid .g-start-md-3 { grid-column-start: 3; }
    .grid .g-start-md-4 { grid-column-start: 4; }
    .grid .g-start-md-5 { grid-column-start: 5; }
    .grid .g-start-md-6 { grid-column-start: 6; }
    .grid .g-start-md-7 { grid-column-start: 7; }
    .grid .g-start-md-8 { grid-column-start: 8; }
    .grid .g-start-md-9 { grid-column-start: 9; }
    .grid .g-start-md-10 { grid-column-start: 10; }
    .grid .g-start-md-11 { grid-column-start: 11; }
}

/* Games
   ========================================================================== */

.section-games {
    margin: 0.5em auto;
}

.section-games .grid {
    --bs-gap: 0.5rem;
}

@media (min-width: 768px) {
    .section-games .container {
        max-width: 720px;
    }
}

.game-icons {
    border-radius: 4px;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.games-see-more,
.games-see-more:link,
.games-see-more:visited,
.games-see-more:hover,
.games-see-more:active {
    color: white;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 0.5em auto 0;
}

/* Feature Carousel and Tiles
   ========================================================================== */

.features-carousel {
    --bs-carousel-transition: transform 0.95s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-carousel .carousel-item {
    transition: var(--bs-carousel-transition);
}

.features-carousel .gt-video-container {
    margin: 0;
}

.features-carousel .gt-video {
    width: 100%;
    max-width: 720px;
    height: auto;
    border: 8px solid transparent;
    border-radius: 20px;
    background: var(--themed-gradient-background-as-border);
}

.feature-tiles {
    border: 8px solid transparent;
    border-radius: 20px;
    background: var(--themed-gradient-background-as-border);
    max-width: 720px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* FAQ
   ========================================================================== */

.section-faq {
    margin: 1em auto;
}

.faq-accordion .accordion-item {
    background: none;
    border: 0;
    color: black;
}

.faq-accordion .accordion-button {
    position: relative;
    border-radius: 5px;
    background: rgba(20, 20, 20, 1);
    color: white;
    font-size: 0.8rem;
    padding: 0.8em 3em 0.8em 1em;
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    box-shadow: -2px -2px 0px rgba(255, 255, 255, 0.2), -1px -1px 2px rgba(255, 255, 255, 0.15), 2px 2px 0px rgba( 0, 0, 0, 0.5), 1px 1px 2px rgba( 0, 0, 0, 0.4);
}

.faq-accordion .accordion-button::after {
    position: absolute;
    content: "\25B2";
    font-size: 0.75em;
    right: 2em;
    top: 50%;
    transform: translateY(-50%);
}

.faq-accordion .accordion-button.collapsed::after {
    content: "\25BC";
}

.faq-accordion .accordion-body {
    color: white;
    font-size: 0.8em;
    padding: 0 0.8em;
}




/*--- BASE PAGE STYLES*/
.copyright {
	text-align: center;
	color: white;
}

.copyright a.modalLink {
	color: white;
}

.footer {
	font-family: Arial;
	position: relative;
	background-color: black;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(44, 44, 44, 1)),
		to(rgba(0, 0, 0, 1))
	);
	background-image: -o-linear-gradient(
		top,
		rgba(44, 44, 44, 1) 0%,
		rgba(0, 0, 0, 1) 100%
	);
	background-image: linear-gradient(
		to bottom,
		rgba(44, 44, 44, 1) 0%,
		rgba(0, 0, 0, 1) 100%
	);
	background-size: 100% 150px;
	background-repeat: no-repeat;
	padding-top: 40px;
	padding-bottom: 10px;
	z-index: 100;
}

.affiliates {
	text-decoration: underline;
}

@media screen and (max-width: 991px) {
	.footer {
		margin-top: 0;
	}
}

.footer::before {
	content: "";
	width: 100%;
	height: 2px;
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(44, 44, 44, 1)),
		color-stop(50%, rgba(104, 104, 104, 1)),
		to(rgba(44, 44, 44, 1))
	);
	background: -o-linear-gradient(
		left,
		rgba(44, 44, 44, 1) 0%,
		rgba(104, 104, 104, 1) 50%,
		rgba(44, 44, 44, 1) 100%
	);
	background: linear-gradient(
		to right,
		rgba(44, 44, 44, 1) 0%,
		rgba(104, 104, 104, 1) 50%,
		rgba(44, 44, 44, 1) 100%
	);
	position: absolute;
	bottom: 100%;
}

.footerTracking {
	width: calc(100% - 40px);
	max-width: 420px;
	background-color: #222;
	font: normal 11px Arial, Helvetica;
	color: #ccc;
	text-align: left;
	vertical-align: middle;
	border: 1px solid #444;
	padding: 3px 4px;
	margin: 4px auto;
	clear: both;
}

.pinkSlime {
	border: none !important;
	width: auto !important;
	text-align: center !important;
	color: #999;
}

.copy {
	text-align: center;
	font-size: 12px;
	color: white;
	margin-top: 10px;
}

.modal,
.modal p {
	color: black;
	font-size: 13px;
	font-family: Arial;
	line-height: 1.2;
}

.modal h4,
.modal h1 {
	font-weight: 700;
	font-size: 20px;
}

.modal h1 {
	padding-bottom: 10px;
}

.modal h4 {
	font-size: 16px;
}

.modal.fade.in {
	opacity: 1;
}

.modal div[class*="col-"] {
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: 100%;
	max-width: unset;
	-webkit-box-flex: initial;
	-ms-flex: initial;
	flex: initial;
}

.modal .hero-section__content {
	padding: 0 !important;
}

a.cc-dismiss {
	text-decoration: none;
}

.licence {
	max-width: 420px;
	margin: 12px auto 0;
	color: #999;
	text-align: center;
	font-size: 10px;
	padding: 0 5px;
}

/*ontario*/
.ontario.logo {
	left: 50px;
	transform: none;
}

.ontario-gambling-logo {
	width: 150px;
	height: auto;
	position: absolute;
	top: 60px;
	right: 50px;
}
.section-nav-top img.ontario-gambling-logo {
    height: 30px;
}

@media screen and (max-width: 767px) {
	.ontario.logo {
		width: 200px;
	}
}

@media screen and (max-width: 500px) {
	.ontario.logo {
		width: 150px;
		left: 10px;
	}

	.ontario-gambling-logo {
		width: 120px;
		right: 25px;
		top: 61px;
	}
}

.footer-icons .ontario-gambling-logo {
	width: 102px;
	height: auto;
	margin-top: -32px;
	display: inline-block;
	position: relative;
	right: 0;
	top: 0;
}

.ontario-terms-link {
	font-size: 10px;
	color: white;
	text-decoration: none !important;
	text-shadow: 0px 2px 3.16px rgb(0 0 0 / 70%);
	display: block;
	margin-top: 5px;
}

.ontario-terms-link:hover {
	color: white;
}

.ontario-terms-link:before {
	content: "* ";
}

.footer .ontario-terms-link {
	text-decoration: underline !important;
	display: inline-block;
}

.footer .ontario-terms-link:before {
	content: "  ";
}

.footer p {
	font-size: 10px;
	margin: 20px auto;
	text-align: center;
	max-width: 561px;
	color: white;
}

.footer p a {
	text-decoration: underline;
	color: white;
}

.footer p a:hover {
	color: white;
}



/* [start] FORM STUFF --> */
input[type="text"].error,
input[type="email"].error {
    /*border: solid 2px #ffcc00;*/
    background-image: url("/rea/shared/img/error_icon.png");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px auto;
}

input[type="checkbox"].error {
    outline: solid 2px red;
}
.form-contain {
    color: white;
    position: relative;
    width: 420px;
    max-width: calc(100% - 15px);
    margin: 0 auto;
    padding: 50px 15px 30px;    
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    z-index: 1;
    margin-top: 16px;
    border: solid 4px transparent;
    border-radius: 16px;
    box-shadow: 0px 0px 1px 2px inset #f8e08b;
    background-image: linear-gradient(to bottom, #190000, #ae0000),
        linear-gradient(
            180deg,
            #c89533 0,
            #f3ead6 25%,
            #f3ead6 40%,
            #df9e2d 100%
        );

    box-shadow: 0px 0 10px 4px inset rgba(0, 0, 0, 0.4);
    background-origin: border-box;
    background-clip: padding-box, border-box;      
}

.u__text--yellow{
    color: rgba(255, 191, 0, 1);
}
.form-contain p {
    margin-bottom: 0.1rem;
}
.form-contain strong {
    font-size: 64px;
}
.form-contain button {
    padding: 20px;   
    width: 100%;
    font-size: 40px;
    font-weight: 700;
    text-shadow: -1px -1px 2px rgb(12 12 12 / 100%), 0px 0px 5px rgb(12 11 11);   
}
.form-contain .cta--hero-largescreen, .form-contain .cta--hero-largescreen::before, .form-contain .cta--hero-largescreen::after {
    border-radius: 60px;
    padding: 10px;
}
.form-contain .cta--hero-smallscreen , .form-contain .cta--hero-smallscreen::before, .form-contain .cta--hero-smallscreen::after {
    border-radius: 20px;
    padding: 20px;
}
.form-contain .cta::after {    
    inset: 6px;
    background-image: -webkit-linear-gradient(-90deg, rgb(153, 204, 153) 0%, rgb(91, 216, 92) 25%, rgb(46, 232, 44) 49%, rgb(0, 174, 0) 51%, rgb(2, 173, 2) 75%, rgb(3, 122, 5) 100%);
    background-image: -ms-linear-gradient( -90deg, rgb(153,204,153) 0%, rgb(91,216,92) 25%, rgb(46,232,44) 49%, rgb(0,174,0) 51%, rgb(2,173,2) 75%, rgb(3,122,5) 100%);
    box-shadow: inset 0 5px 10px -3px #000;
}
.cta::before {    
    background: linear-gradient(to top, #6e410c 0%, /* Bottom: Dark brownish gold */ #d38e2f 25%, /* Mid-light gold */ #371d05 39%, /* Very dark brown/black band */ #a1661a 57%, /* Medium golden brown */ #ffffff 68%, /* Bright white highlight */ #efbc21 80%, /* Bright yellow-gold */ #b4791e 90%, /* Medium gold */ #fff9e9 100% /* Top: Pale cream/white */);
}
#privacyConsent[data-privacy-consent-theme="12m-1"] .privacy-consent__text {
	font-size: 18px !important
}
@media screen and (max-width: 575px) {
    .section-content .form-contain {
        margin-top: 10px;
        font-size: 22px;
        padding:16px;
    }
    .form-contain button {   
        font-size: 34px;
    }
}
@media screen and (max-width: 320px) {
    .form-contain {
       font-size: 24px;
       padding: 40px 15px 10px;
    }
   #privacyConsent[data-privacy-consent-theme="12m-1"] .privacy-consent__text {
        font-size: 14px !important;
    }
    .form-contain button {
        font-size: 27px;
    }
}

.form-blackout {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 900;
}

input[type="text"].error,
input[type="email"].error {
    border: solid 2px red;
}

#preform .yearText {
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    line-height: 14px;
    text-transform: none;
    margin-bottom: 10px;
}

#preform #dob-year {
    background-color: white;
    padding: 0 10px;
    font-size: 18px;
    line-height: 34px;
    color: rgb(34, 34, 34);
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 6px;
}

#preform #dob-year.error {
    border-color: rgb(255, 0, 0);
    -webkit-box-shadow: 0 0 3px 0 rgb(255, 0, 0), 0 0 3px 0 rgb(255, 0, 0),
        0 0 3px 0 rgb(255, 0, 0);
    box-shadow: 0 0 3px 0 rgb(255, 0, 0), 0 0 3px 0 rgb(255, 0, 0),
        0 0 3px 0 rgb(255, 0, 0);
}

#preform #dob-year.valid {
    border-color: rgb(38, 117, 218);
    -webkit-box-shadow: 0 0 3px 0 rgb(38, 117, 218), 0 0 3px 0 rgb(38, 117, 218),
        0 0 3px 0 rgb(38, 117, 218);
    box-shadow: 0 0 3px 0 rgb(38, 117, 218), 0 0 3px 0 rgb(38, 117, 218),
        0 0 3px 0 rgb(38, 117, 218);
}

#preform input[type="checkbox"] {
    width: auto;
    height: auto;
    margin-right: 10px;
}

#preform a:hover,
#preform a {
    color: white;
}

#preform .checks {
    text-transform: none;
}

.form-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.form-close::after {
    content: "\f00d";
	font-family: "FontAwesome";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 30px;
	background-color: transparent;
	border-radius: 100%;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.form-contain input[type="text"],
.form-contain input[type="email"] {
    width: 100%;
    text-align: center;
    padding: 0px 5px;
    font-size: 18px;
    border: solid 1px black;
    border-radius: 5px;
    outline: 0;
    margin-bottom: 10px;
    height: 50px;
    font-family: arial;
}

/* <-- [end] FORM STUFF */


/* 
/* <-- [end] FORM STUFF */
.pre-form-blackout {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.85);
	z-index: 900;
}

.pre-form {
	text-shadow: 2px 2px 4px black;
}

.pre-form-text {
	position: relative;
	z-index: 100;
}

.pre-form-img--2 {
	margin: -100px 0 -25px 0;
}
.pre-form-logo {
	position: absolute;
	top: 10px;
	left: 50%;
	width: 100px;
	height: auto;
	transform: translateX(-50%);
	z-index: 500;
}

/*Ontario*/

.ontario-gambling-logo {
	position: unset;
	width: auto;
	height: 50px;
	padding: 4px 0;
	margin-left: 6px;
}

.section-header {
	text-align: center;
	width: 100%;
}

.section-header > .logo {
	display: inline-block;
}

.section-header > .ontario-gambling-logo {
	height: auto;
	width: 130px;
	display: inline-block;
	margin: 12px auto 0;
}
@media screen and (max-width: 767px) {
	.main-form > .ontario-gambling-logo {
		display: none !important;
	}

	.section-header > .ontario-gambling-logo {
		margin: 0px 0 0 30px;
	}
}

.ontario-terms-link {
	color: white;
	text-shadow: 1px 2px 1px black;
	text-align: center;
	font-size: 12px;
	margin: 14px auto -8px auto;
	position: relative;
	z-index: 5;
}

.footer .ontario-terms-link {
	top: unset;
	position: relative;
	left: unset;
}

.ontario.fade-strip.text-2 {
	height: 65px;
}

@media screen and (max-width: 991px) {
}

.ontario-terms-link:hover {
	color: white;
	text-decoration: none;
}

.ontario-terms-link:before {
	content: "* ";
}

.footer p,
.footer a {
	font-size: 10px;
	margin: auto;
	text-align: center;
	max-width: 561px;
	color: white;
}

.footer-icons .ontario-gambling-logo {
	width: 102px;
	height: auto;
	margin: -32px 0 0 0;
	display: inline-block;
}

/*===========
    Compliance Prefooter
=============*/
.compliance-prefooter {
	background: black;
	padding: 3.25rem 1rem;
	text-align: center;
	display: flex;
	justify-content: center;
	line-height: 1.1;
}
.compliance-prefooter a {
	text-decoration: underline;
}
.compliance-prefooter--body {
	max-width: 875px;
}

.compliance-prefooter--body p,
.compliance-prefooter--linkout {
	color: #7e7e7e;
}

.compliance-prefooter--body span {
	color: #fff;
}
.compliance-prefooter--email {
	color: #ffee00;
}

.progressive-jackpot-ticker {
	position: absolute;
	bottom: 16px;
	width: calc(100% + -24px);
	color: white;
	z-index: 10;
	border-top: solid 2px #eac25f;
	border-bottom: solid 2px #eac25f;
	text-align: center;
	font-size: 14px;
	left: 12px;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0) 3%,
		rgba(0, 0, 0, 0) 3%,
		black 12.5%,
		black,
		black 92.5%,
		transparent 97%,
		transparent
	);
}

/*===========
    Login Button on v=login
=============*/

.login-btn-container {
    background: black;
    text-align: center;
    padding: 6px 0;
	color:white;
	font-weight:600;
}

.login-btn {
    border-radius: 8px;
    background-color: white;
    color: black;
    padding: 6px;
    display: inline-block;
}

/*Generic Styling for wagering text*/
.ontario-wagering-requirement{
	text-transform: none;
    font-size: 0.575rem !important;
    color: white;
	margin: 16px auto 0;
}
.ontario-wagering-requirement a{
	text-transform: none;
    font-size: inherit;
    color: rgba(230, 230, 230, 0.9);
	text-decoration: underline !important;
	text-shadow:unset !important;
}

.ontario-wagering-requirement .ontario-terms-link:before {
    content: unset !important;
}

.ontario-wagering-requirement .ontario-terms-link {
	display:inline;
	padding: unset;
}



/* extra styling for v1 */
body[data-variation="v1"].section-nav-bottom {
    margin: 1em auto
}

body[data-variation="v1"] .section-nav-bottom .nav {
    text-align: center;
    max-width: 100%;
    margin: .5em auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    overflow: hidden;
    position: relative
}

@media (min-width: 768px) {
    body[data-variation="v1"] .section-nav-bottom .nav {
        max-width:80%
    }
}

body[data-variation="v1"] .section-nav-bottom .nav-item {
    position: relative;
    margin-left: .5em;
    padding-left: calc(.5em + 2px)
}

body[data-variation="v1"] .section-nav-bottom .nav-item.has-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 70%;
    width: 2px;
    background-color: #fc0
}

body[data-variation="v1"] .section-nav-bottom .nav-link {
    padding: 0;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: .7em;
    margin: 0
}

@media (min-width: 430.98px) {
    body[data-variation="v1"] .section-nav-bottom .nav-link {
        font-size:.85em
    }
}

@media (min-width: 576px) {
    body[data-variation="v1"] .section-nav-bottom .nav-link {
        font-size:1em
    }
}



body[data-variation="v1"] .section-regulatory-elements {
    margin: 1em auto
}

.regulatory-elements-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.regulatory-elements-icons__banking-logos {
    background-image: url(https://s3.amazonaws.com/casinorewards/webCDN/ffe_cdn/img/core/shared/banking-logos-animated.webp);
    width: 125px;
    height: 40px;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat
}

.regulatory-elements-icons__age-limit,.regulatory-elements-icons__age-limit:active,.regulatory-elements-icons__age-limit:hover,.regulatory-elements-icons__age-limit:link,.regulatory-elements-icons__age-limit:visited {
    position: relative;
    font-family: Inter,Arial,Helvetica,sans-serif;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 35px;
    width: 35px;
    height: 35px;
    text-align: center;
    color: #900!important
}

.regulatory-elements-icons__age-limit::before {
    position: absolute;
    content: "";
    border-radius: 50%;
    border: 2px solid #900;
    width: 35px;
    height: 35px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.regulatory-elements-icons__payout {
    background-position: -3600px -5px;
    width: 132px;
    height: 35px
}

.culture-de .regulatory-elements-icons__payout,.culture-de-at .regulatory-elements-icons__payout {
    background-position: -200px -50px
}

.culture-fr .regulatory-elements-icons__payout {
    background-position: -600px -50px
}

.regulatory-elements-icons__betguard {
    background-image: url(https://s3.amazonaws.com/casinorewards/webCDN/ffe_cdn/img/core/shared/ont/betguard/bg_notag_r.webp);
    width: 107px;
    height: 20px;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat
}

.culture-fr .regulatory-elements-icons__betguard {
    background-image: url(https://s3.amazonaws.com/casinorewards/webCDN/ffe_cdn/img/core/shared/ont/betguard/bg_notag_r-fr.webp)
}

.regulatory-elements-icons__igaming {
    background-image: url(https://s3.amazonaws.com/casinorewards/webCDN/ffe_cdn/img/core/shared/ontario-igaming-logo.webp);
    width: 90px;
    height: 30px;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat
}

.culture-fr .regulatory-elements-icons__igaming {
    background-image: url(https://s3.amazonaws.com/casinorewards/webCDN/ffe_cdn/img/core/shared/ontario-igaming-logo-fr.webp)
}

.regulatory-elements-icons__kahnawake {
    background-size: 3000px auto;
    background-position: -150px 0;
    width: 104px;
    height: 30px
}

.regulatory-elements-icons__ecogra {
    background-size: 3000px auto;
    background-position: -300px 0;
    width: 100px;
    height: 30px
}

.regulatory-elements-icons__casino-rewards {
    background-size: 3000px auto;
    background-position: -600px 0;
    width: 45px;
    height: 30px
}

.regulatory-elements-icons__pragmatic-play {
    background-image: url(https://s3.amazonaws.com/casinorewards/webCDN/ffe_cdn/img/core/shared/pragmatic-play-logo-light-text.webp);
    width: 90px;
    height: 40px;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat
}

.regulatory-elements-icons__games-global {
    background-image: url(https://s3.amazonaws.com/casinorewards/webCDN/ffe_cdn/img/core/shared/games-global-logo-light-text.webp);
    width: 90px;
    height: 30px;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat
}

.regulatory-elements-icons__casino-rewards,.regulatory-elements-icons__ecogra,.regulatory-elements-icons__kahnawake,.regulatory-elements-icons__payout {
    background-image: url(https://s3.amazonaws.com/casinorewards/webCDN/ffe_cdn/img/core/shared/footer-icons_20230220.png);
    background-repeat: no-repeat
}

.affiliate-id-box {
    text-transform: uppercase;
    color: #999;
    border: 2px solid #fff;
    border-radius: 4px;
    width: 90%;
    max-width: 400px;
    margin: 1rem auto;
    text-align: center;
    font-size: .75em;
    padding: .2em 0 .1em
}

/* END extra styling for v1 */