:root {
    /* Colors */
    --primary-blue: #3399FF;
    --primary-blue-dark: #1C74CC;
    --primary-blue-light: #4FB8FF;
    --secondary-green: #13BF78;
    --titles: #263238;
    --text: #455A64;
    --text-light: #90A4AE;
    --off-white: #F8FAFB;
    --grey: #CFD8DC;
    --light-blue: #E5F4FD;
    --borders: #CFD8DC;
    --table-header: #EDF3f7;
    --footer: #0A0F11;
    --danger: #DD3C49;
    --danger-dark: #B12631;
    --warning: #FFC107;
    --warning-dark: #D58D10;
    --success: #3CDD7F;
    --success-dark: #26AC5E;
    /* Fonts */
    --headers-text: 'co-headline', sans-serif;
    --body-text: 'quicksand', sans-serif;
    --fontawesome: 'Font Awesome 6 Pro';
    /* Borders */
    --table-border: 1px solid var(--borders);
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

    html body {
        font-size: 15px;
    }

body {
    color: var(--text);
    font-family: var(--body-text) !important;
    font-size: 12px;
    line-height: 1.5;
    min-height: 100vh;
    height: 100%;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headers-text);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1em;
    color: var(--titles);
}

h1 {
    font-size: 42px;
    margin-top: 0;
}

h2 {
    font-size: 36px;
    margin-top: 0;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

.txt-lg {
    font-size: 18px;
}

.subtitle {
    font-size: 20px;
}

.txt-center {
    text-align: center !important;
}

.danger {
    color: var(--danger);
}

img {
    max-width: 100%;
    border-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    -webkit-transition: background-color .3s, border-color .3s, color .3s;
    -o-transition: background-color .3s, border-color .3s, color .3s;
    transition: background-color .3s, border-color .3s, color .3s;
}

    a:hover {
        color: var(--primary-blue-dark);
        text-decoration: none;
    }

::selection {
    background: var(--primary-blue-light);
}

::-moz-selection {
    background: var(--primary-blue-light);
}

/*ol, ul {
    list-style: none;
}*/

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

.hidden {
    display: none;
}

.hr {
    display: block;
    background-color: var(--borders);
    width: 100%;
    height: 1px;
    margin: 40px 0;
    opacity: .5;
}

.bold {
    font-weight: bold;
}

.btn-reg,
.btn-lg {
    display: inline-block;
    color: #fff;
    background-color: var(--primary-blue);
    border: 3px solid var(--primary-blue);
    border-radius: 50px;
    font-family: var(--body-text);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reg {
    font-size: 16px;
    padding: 14px 60px;
}

.btn-lg {
    font-size: 18px;
    padding: 20px 80px;
    
}

    .btn-reg:hover,
    .btn-lg:hover {
        background-color: var(--primary-blue-dark);
        border-color: var(--primary-blue-dark);
        color: #fff;
    }


.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}

.counter {
    animation-duration: 4s;
    animation-delay: 0s;
}

.static-page {
    min-height: 500px;
}

/*------------ MARGINS & PADDING PRESETS ------------*/
.m-1 {
    margin: 10px !important;
}

.m-2 {
    margin: 20px !important;
}

.m-3 {
    margin: 30px !important;
}

.m-4 {
    margin: 40px !important;
}

.mt-1 {
    margin-top: 10px !important;
}

.mt-2 {
    margin-top: 20px !important;
}

.mt-3 {
    margin-top: 30px !important;
}

.mt-4 {
    margin-top: 40px !important;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px !important;
}

.mb-4 {
    margin-bottom: 40px !important;
}

.p-1 {
    padding: 10px !important;
}

.p-2 {
    padding: 20px !important;
}

.p-3 {
    padding: 30px !important;
}

.p-4 {
    padding: 40px !important;
}

.pt-1 {
    padding-top: 10px !important;
}

.pt-2 {
    padding-top: 20px !important;
}

.pt-3 {
    padding-top: 30px !important;
}

.pt-4 {
    padding-top: 40px !important;
}

.pb-1 {
    padding-bottom: 10px !important;
}

.pb-2 {
    padding-bottom: 20px !important;
}

.pb-3 {
    padding-bottom: 30px !important;
}

.pb-4 {
    padding-bottom: 40px !important;
}

/* COLUMNS */
.flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.col-lg-12 {
    width: 100%;
}

.col-lg-6 {
    width: calc(50% - 20px);
}

.col-lg-3 {
    width: calc(25% - 30px);
}

.wrapper {
    padding: 80px 0;
}

.blue-gradient {
    background: linear-gradient(rgba(51,153,255,.15), #fff 300px);
}

/* accordion */
.accordion-item {
    background-color: #fff;
    border: 1px solid var(--borders);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item .accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid transparent;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header i {
    color: var(--primary-blue);
    font-size: 24px;
    transition: transform 0.2s ease;
}

.accordion-header h4 {
    margin: 0;
    user-select: none;
}

.accordion-body-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

    .accordion-body-container .accordion-body {
        padding: 35px 40px;
    }

.accordion-item .accordion-header.active {
    border-bottom: 1px solid var(--borders);
}

    .accordion-item .accordion-header.active i {
        transform: rotate(180deg);
    }

.accordion-body p:not(:last-child) {
    margin-bottom: 15px;
}

.accordion-body ul li::marker,
.accordion-body ol li::marker {
    color: var(--primary-blue);
}

/******************************************* HEADER / NAV *******************************************/
header {
    width: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    width: 100%;
    height: 80px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.nav-container.home-nav {
    background-color: transparent;
    height: 120px;
}

.nav-logo .main-logo {
    width: 250px;
    height: auto;
    vertical-align: middle;
}

.main-logo {
    height: 110px;
    padding-left: 30px;
}

a.nav-logo-link:hover,
a.nav-logo-link:focus {
    text-decoration: none;
}

.nav-links {
    padding-right: 20px;
}

    .nav-links ul {
        display: flex;
        align-items: center;
        gap: 30px;
        margin: 0;
        padding: 0;
    }

        .nav-links ul li {
            display: inline-block;
            text-decoration: none;
        }

            .nav-links ul li a {
                color: var(--titles);
                font-size: 15px;
                font-weight: 700;
                letter-spacing: 1px;
                -webkit-transition: all .2s;
                -o-transition: all .2s;
                transition: all .2s;
            }

                .nav-links ul li a.header-btn,
                .nav-right a.mobile-header-btn {
                    background-color: var(--primary-blue);
                    border-radius: 25px;
                    color: #fff;
                    font-weight: bold;
                    padding: 12px 24px;
                    margin-left: 10px;
                }

.nav-right a.mobile-header-btn {
    display: none;
    margin-right: 20px;
}

.nav-links ul li a:hover,
.nav-links ul li a:focus,
.nav-container.home-nav .nav-links ul li a:hover,
.nav-container.home-nav .nav-links ul li a:focus {
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-links ul li a.header-btn:hover,
.nav-links ul li a.header-btn:focus {
    background-color: var(--primary-blue-dark);
    color: #fff;
}

.nav-links ul li a.active {
    color: #FFF;
    background-color: #ec1b31;
    border: 1px solid transparent;
}

.nav-links li a.header-purchase,
.nav-right a.header-purchase {
    background-color: #ed1b2f !important;
    color: #FFF;
    border: 1px solid #ed1b2f;
    border-radius: 0px;
    padding: 18px 28px;
    cursor: pointer;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

    .nav-links li a.header-purchase:hover,
    .nav-right a.header-purchase:hover {
        color: #ed1b2f;
        border: 1px solid #FFF;
        background-color: #FFF !important;
    }

    .nav-links li a.header-purchase i {
        color: #ed1b2f !important;
        margin-right: 10px;
    }

    .nav-links li a.header-purchase:hover i {
        color: #FFF !important;
    }

.nav-menu,
.nav-overlay {
    display: none;
}

.close-btn {
    display: none;
}

.no-scroll {
    overflow: hidden;
}

.mobile-header-purchase {
    display: none;
}

.nav-title {
    width: 340px;
    height: auto;
    margin-left: 20px;
}

.nav-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#myNavbar {
    display: inline-block;
}

/* HOMEPAGE HEADER */
.nav-container.home-nav {
    background-color: transparent;
    box-shadow: none;
}

.home-nav .nav-links ul li a,
.home-nav .nav-links ul li a:hover {
    color: #fff !important;
}

/* CHECKOUT HEADER */
.nav-container.checkout-header {
    background-color: #fff;
    height: 80px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* NAV FIXED */
.nav-fixed {
    background-color: #FFF;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    webkit-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.15);
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.nav-fixed-active {
    visibility: visible;
    opacity: 1;
}

.nav-fixed .nav-links ul li a:not(.header-purchase) {
    color: #000;
}

.nav-fixed .nav-links ul li a:hover {
    color: #ec1b31;
}

.nav-fixed .nav-links ul li .header-purchase:hover {
    background-color: #940b1a !important;
    color: #FFF;
}


/******************************************* FOOTER *******************************************/
.footer-top {
    background: linear-gradient(#0F2D49, var(--footer));
    color: #fff;
    padding: 80px 0;
}

    .footer-top h5 {
        color: #fff;
        margin-top: 0;
        margin-bottom: 8px;
    }

.footer-columns {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.col-logo {
    width: 30%;
}

.col-address,
.col-about,
.col-lotteries {
    width: 23.3333%;
}

    .col-address div {
        font-size: 16px;
        line-height: 2em;
    }

.footer-links {
    font-size: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li a {
        color: #fff;
        font-size: 16px;
        line-height: 2em;
    }

        .footer-links li a:hover {
            color: var(--primary-blue);
        }

.footer-logo {
    width: 240px;
    height: auto;
    margin-bottom: 30px;
}

.footer-desc {
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .footer-socials .social-icon svg {
        transition: all 0.2s ease;
    }

    .footer-socials .social-icon:hover svg {
        fill: var(--primary-blue);
    }

    .footer-socials .social-icon svg {
        fill: #fff;
        width: 24px;
        height: 24px;
    }

.footer-bottom {
    background-color: var(--footer);
    color: #fff;
}

.footer-bottom-columns {
    border-top: 1px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;
}

    .footer-bottom-columns p {
        margin: 0;
        opacity: 0.5;
    }

    .footer-bottom-columns a {
        opacity: 0.35;
        transition: all 0.2s ease;
    }

        .footer-bottom-columns a:hover {
            opacity: 0.75;
        }

    .footer-bottom-columns img {
        width: 180px;
        height: auto;
    }


/******************************************* HOME PAGE *******************************************/
.hero {
    background-color: var(--text);
    background-image: url('../Images/hero-img-2025.jpg');
    background-size: cover;
    background-position: 30% 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    min-height: 700px;
}

.hero-tagline h1 {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0 30px
}

    .hero-tagline h1 {
        font-size: 72px;
        line-height: 1.2;
        max-width: 720px;
        text-shadow: 0 3px 12px rgba(0,0,0,1);
    }

.hero-scroll {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 120px;
    animation: bob 2s ease-in-out infinite;
}

    .hero-scroll .hero-scroll-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

/* Why Choose Us Section */
#why-choose-us {
    background-color: #fff;
    background: linear-gradient(rgba(51,153,255,.15), var(--off-white) 300px);
    padding: 80px 0;
}

    #why-choose-us h1 {
        text-align: center;
        line-height: 1.2;
    }

        #why-choose-us h1 span {
            color: var(--primary-blue);
            font-size: 135%;
        }

.why-choose-desc {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 60px;
}

    .why-choose-desc p {
        text-align: center;
        margin-bottom: 20px;
    }

#why-choose-us .home-offer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.home-offer-cols .offer-col {
    background: linear-gradient(var(--primary-blue-light),var(--primary-blue) 35%, var(--primary-blue-dark));
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(28,116,204,0.15);
    transition: all 0.2s ease;
}

    .home-offer-cols .offer-col:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 10px rgba(28,116,204,0.35);
    }

.offer-col .offer-col-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    border-radius: 12px 100px 12px 12px;
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto;
    height: 100%;
}

.offer-col img {
    width: auto;
    height: 100px;
}

/* Counters Section */
#home-counters {
    background-color: var(--text);
    background-image: url('../Images/ticket-pattern.png');
    background-size: 250px 260px;
    padding: 60px 0;
    width: 100%;
}

    #home-counters .counter-cols {
        display: flex;
        align-items: center;
        gap: 20px;
    }

.counter-cols .counter-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35%;
    text-align: center;
}

    .counter-cols .counter-col:not(.counter-cta) h1,
    .counter-cols .counter-col:not(.counter-cta) h3 {
        color: #fff;
    }

    .counter-cols .counter-col img {
        width: 200px;
        height: auto;
        transform: rotate(-5deg);
    }

.counter-cols .counter-cta {
    background-color: #fff;
    border-radius: 24px;
    margin-left: 60px;
    padding: 40px;
    width: 30%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

    .counter-cols .counter-cta h3 {
        margin-top: 0;
    }

    .counter-cols .counter-cta .btn {
        background-color: var(--primary-blue);
        border-radius: 25px;
        color: #fff;
        font-weight: 700;
        padding: 14px 24px;
        margin-top: 30px;
        width: 100%;
        transition: all .2s ease;
    }

        .counter-cols .counter-cta .btn:hover {
            background-color: var(--primary-blue-dark);
        }

/* Features Section */
#home-features {
    background: linear-gradient(#fff 300px, rgba(51,153,255,.15));
    padding: 80px 0;
}

    #home-features h1 {
        text-align: center;
    }

    #home-features .features-tabs-container {
        display: flex;
        gap: 30px;
        width: 100%;
    }

.tabset input {
    appearance: none;
    display: none;
}

.tab-name {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 30%;
}

.tab-name label {
    background-color: var(--grey);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 16px 28px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tabset input:nth-child(1):checked ~ .tab-name label:nth-child(1),
.tabset input:nth-child(2):checked ~ .tab-name label:nth-child(2),
.tabset input:nth-child(3):checked ~ .tab-name label:nth-child(3),
.tabset input:nth-child(4):checked ~ .tab-name label:nth-child(4) {
    background-color: var(--primary-blue);
    color: #fff;
}

.tabs-content {
    position: relative;
    overflow: hidden;
}

    .tabs-content .content-box {
        background-color: #fff;
        position: static;
        visibility: visible;
        opacity: 1;
        display: none;
        padding: 30px;
    }

.tabset input:nth-child(1):checked ~ .tabs-content .content-box:nth-child(1),
.tabset input:nth-child(2):checked ~ .tabs-content .content-box:nth-child(2),
.tabset input:nth-child(3):checked ~ .tabs-content .content-box:nth-child(3),
.tabset input:nth-child(4):checked ~ .tabs-content .content-box:nth-child(4) {
    display: block;
}

.features-tabs-container .tabs-col-left {
    border: 1px solid var(--borders);
    border-radius: 24px;
    width: 70%;
}

    .features-tabs-container .content-box h3 {
        margin-top: 0;
        margin-bottom: 20px;
    }

.content-box .tabs-desc-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tabs-desc-content .tabs-desc-img {
    border-radius: 8px;
    width: 40%;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.tabs-desc-content .tabs-desc-txt {
    width: 60%;
}

/* Custom Lotteries Section */
#custom-lottery {
    overflow: hidden;
}

#custom-lottery .custom-lottery-container {
    display: flex;
    gap: 60px;
}

.custom-lottery-container .custom-lottery-img {
    width: 40%;
    position: relative;
}

.custom-lottery-container .custom-lottery-img img {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 360px;
    border-radius: 6px;
    height: auto;
    transform: rotate(-3deg) translateX(-50%);
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

.custom-lottery-container .custom-lottery-text {
    width: 60%;
    padding: 100px 0;
}

.custom-lottery-text h4 {
    margin-top: 50px;
}

.custom-lottery-container .custom-lottery-text p:not(:last-child) {
    margin-bottom: 20px;
}

.custom-lottery-text .btn-reg {
    margin-top: 30px;
}

/* CTA Section */
#home-cta {
    background-color: #0A1B2F;
    background-image: linear-gradient(-160deg, rgba(12,27,47,0.7), rgba(51,153,255,0.7)), url('../Images/hero-img-2025.jpg');
    background-position: 30% 50%;
    background-size: cover;
    padding: 120px 0;
    margin: 0 auto;
}

.home-cta-cols {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.home-cta-col-1 {
    color: #fff;
    width: 50%;
}

    .home-cta-col-1 h2 {
        color: #fff;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .home-cta-col-1 p {
        font-size: 18px;
    }

.home-cta-col-2 {
    width: 50%;
}

    .home-cta-col-2 #mc_embed_signup .mc-field-group input {
        width: auto;
    }

    .home-cta-col-2 .form-group,
    .home-cta-col-2 #mc_embed_signup .mc-field-group.form-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
        border-radius: 50px;
        width: 100%;
        padding: 5px 5px 5px 20px;
        position: relative;
    }

        .home-cta-col-2 .form-group input[type="text"],
        .home-cta-col-2 #mc_embed_signup .mc-field-group input[type="email"] {
            background-color: #fff;
            border: 0;
            font-family: var(--body-text);
            font-size: 18px;
            padding: 0;
            text-indent: 0;
            width: 100%;
        }

        .home-cta-col-2 #mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
            border: none;
        }

        .home-cta-col-2 .form-group input[type="text"]:focus-visible,
        .home-cta-col-2 .form-group input[type="email"]:focus-visible {
            outline: none !important;
        }

        .home-cta-col-2 .form-group button,
        .home-cta-col-2 #mc_embed_signup #mc-embedded-subscribe {
            background-color: var(--primary-blue);
            border: 0;
            border-radius: 50px;
            color: #fff;
            font-family: var(--body-text);
            font-weight: 700;
            font-size: 18px;
            line-height: normal;
            text-indent: 0;
            white-space: nowrap;
            padding: 12px 24px;
            margin: 0;
            height: auto;
            cursor: pointer;
            transition: all 0.2s ease;
        }

            .home-cta-col-2 .form-group button:focus-visible {
                outline: none !important;
            }

            .home-cta-col-2 .form-group button:hover {
                background-color: var(--primary-blue-dark);
            }

            .home-cta-col-2 .form-group button span {
                margin-right: 10px;
            }

    .home-cta-col-2 #mc_embed_signup_scroll {
        position: relative;
    }

    .home-cta-col-2 #mc_embed_signup div#mce-responses {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .home-cta-col-2 #mc_embed_signup div#mce-responses div.response {
            color: #fff !important;
            font-size: 14px;
            font-weight: 400;
            margin: 15px 0 0;
            padding: 0 20px;
            width: 100%;
        }

        .home-cta-col-2 #mc_embed_signup form {
            margin: 0;
        }

    .home-cta-col-2 #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
        position: absolute;
        top: 50px;
        left: 0;
        background-color: rgba(255,255,255,0);
        color: #fff;
        margin: 10px 0 0;
        padding: 0 20px;
    }

/******************************************* ALL LOTTERIES PAGE *******************************************/
.tile-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

    .tile-container .lottery-tile {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: #fff;
        border: 1px solid var(--borders);
        border-radius: 24px;
        cursor: pointer;
        box-shadow: 0 0 0 rgba(0,0,0,0);
        transition: all 0.3s ease;
    }

        .tile-container .lottery-tile:hover {
            transform: translateY(-8px);
            box-shadow: 0 5px 8px rgba(28,116,204,0.15);
        }

.lottery-tile .lottery-top {
    display: flex;
    flex-direction: column;
    padding: 20px;
    height: 100%;
}

.lottery-tile .lottery-img img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.lottery-tile .lottery-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.lottery-tile h3 {
    font-size: 28px;
    margin: 0;
    margin-bottom: 25px;
}

.lottery-tile .label {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 10px;
}

.jackpot .jackpot-total {
    color: var(--primary-blue);
    font-family: var(--headers-text);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.lottery-tile .deadline .label {
    text-align: center;
    margin-bottom: 15px;
}

.deadline {
    border-top: 1px solid var(--borders);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.deadline .deadline-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    max-width: 350px;
}

.deadline-container .deadline-number {
    color: var(--titles);
    font-family: var(--headers-text);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.deadline-container .deadline-number span {
    color: var(--text-light);
    font-family: var(--body-text);
    font-size: 16px;
    font-weight: 400;
    margin-left: 6px;
}

/******************************************* LOTTERY PAGE *******************************************/
.wrapper.lotto-page {
    padding: 50px 0;
}

.wrapper.lotto-page h2 {
    margin-bottom: 20px;
}

.lotto-details {
    display: flex;
    gap: 20px;
}

    .lotto-details .lotto-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #fff;
        border: 1px solid var(--borders);
        border-radius: 24px;
        text-align: center;
        padding: 20px 40px;
    }

    .lotto-block h3 {
        font-size: 32px;
        text-align: center;
        margin-top: 0;
        margin-bottom: 15px;
    }

.lotto-details .lotto-col-1,
.lotto-details .lotto-col-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

    .lotto-details .lotto-col-1 {
        width: 65%;
    }

    .lotto-details .lotto-col-2 {
        width: 35%;
    }

.lotto-col-1 .lotto-tickets-mobile {
    display: none;
}

.lotto-col-1 .lotto-img {
    line-height: 0;
}

.lotto-col-1 .lotto-img img {
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lotto-col-1-info {
    display: flex;
    gap: 20px;
    height: 100%;
}
.lotto-col-1-info .lotto-sales,
.lotto-col-1-info .lotto-deadline {
    width: 50%;
}

.lotto-sales .lotto-sales-txt {
    display: inline-block;
    font-family: var(--headers-text);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    position: relative;
}

.lotto-sales .lotto-sales-txt:after {
    content: '*';
    display: inline-block;
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 400;
    position: absolute;
    top: 7px;
    margin-left: 2px;
}

.lotto-sales .lotto-winner-amount {
    font-family: var(--headers-text);
    font-size: 14px;
    margin-top: 5px;
}

    .lotto-sales .lotto-winner-amount span {
        color: var(--primary-blue);
    }

    .lotto-sales .lotto-winner-amount strong {
        font-weight: 700;
    }

.lotto-deadline .lotto-deadline-cols {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 77px;
}

.lotto-deadline-cols .deadline-cols {
    font-family: var(--headers-text);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.lotto-deadline-cols .deadline-cols span {
    color: var(--text-light);
    font-family: var(--body-text);
    font-size: 16px;
    font-weight: 400;
}

.lotto-deadline-cols .deadline-cols span {
    display: block;
}

.lotto-col-2 .lotto-tickets,
.lotto-tickets-mobile .lotto-tickets {
    justify-content: flex-start;
    gap: 20px;
    height: 100%;
}

.lotto-tickets .btn-purchase,
.lotto-tickets-mobile .btn-purchase {
    color: #fff;
    background-color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    font-family: var(--body-text);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 20px;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .lotto-tickets .btn-purchase:hover,
    .lotto-tickets-mobile .btn-purchase:hover {
        background-color: var(--primary-blue-dark);
    }

.lotto-tickets .lotto-ticket-options,
.lotto-tickets-mobile .lotto-ticket-options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    font-family: var(--headers-text);
    font-size: 32px;
    text-align: center;
    line-height: 1;
    height: 100%;
}

.lotto-ticket-options .ticket-option span {
    font-weight: 700;
}

.lotto-info .lotto-info-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.lotto-info-item .info-label {
    font-family: var(--headers-text);
    font-size: 20px;
    font-weight: 700;
}

.lotto-info-item .info-txt {
    font-size: 18px;
}

.lotto-details .lotto-info-mobile {
    display: none;
}

.lotto-desc {
    margin-top: 30px;
}

.lotto-desc h3 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
}

.lotto-desc p:not(:last-child) {
    margin-bottom: 15px;
}

.rules-container {
    margin-top: 30px;
}

/*.lotto-rules {
    background-color: #fff;
    border: 1px solid var(--borders);
    border-radius: 12px;
    margin-top: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .lotto-rules .lotto-rules-header {
        display: flex;
        align-items: center;
        gap: 20px;
        border-bottom: 1px solid transparent;
        padding: 20px 40px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .lotto-rules .lotto-rules-header.active {
            border-bottom: 1px solid var(--borders);
        }

        .lotto-rules .lotto-rules-header h4 {
            line-height: 1;
            margin: 0;
            user-select: none;
        }

        .lotto-rules .lotto-rules-header i {
            color: var(--primary-blue);
            font-size: 24px;
            transition: transform 0.2s ease;
        }

        .lotto-rules .lotto-rules-header.active i {
            transform: rotate(180deg);
        }

    .lotto-rules .lotto-rules-box {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .lotto-rules .lotto-rules-box p:not(:last-child) {
        margin-bottom: 15px;
    }

        .lotto-rules .lotto-rules-box ul li::marker,
        .lotto-rules .lotto-rules-box ol li::marker {
            color: var(--primary-blue);
        }

    .lotto-rules .lotto-rules-content {
        padding: 20px;
    }*/

/******************************************* CHECKOUT PAGE *******************************************/
#order input[type="text"] {
    outline-color: var(--primary-blue);
}

#order input::placeholder {
    color: var(--text-light);
}

/* Billing Details */
.checkout {
    padding: 60px 0;
}

.form-container {
    border: 1px solid var(--borders);
    border-radius: 24px;
    padding: 40px;
}

    .form-container h3 {
        margin-top: 0;
    }

.form-container .form-item label {
    font-size: 16px;
    font-weight: 700;
}

    .form-container .form-item input,
    .form-container .form-item textarea,
    .form-container .form-item select {
        font-family: var(--body-text);
        font-size: 16px;
        border: 1px solid var(--borders);
        border-radius: 4px;
        width: 100%;
        padding: 12px;
        margin-top: 5px;
        outline-color: var(--primary-blue);
    }

    .select-options {
        background-color: #fff;
        border: 1px solid var(--borders);
        padding: 5px 10px;
    }

.contact-form .select-area {
    display: none !important;
}

.select-options li a {
    color: var(--body-text);
}

.confirm-info-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.btn-order-continue {
    color: #fff;
    background-color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    font-family: var(--body-text);
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-order-continue:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
}

    .btn-order-continue i {
        margin-left: 10px;
    }

/* Tickets Section */
#tickets {
    padding: 0;
}

#tickets .tickets-select,
#tickets .tickets-total {
    padding: 40px;
}

    #tickets .tickets-select h3 {
        margin-bottom: 20px;
    }

    #tickets .tickets-select p {
        font-size: 20px;
        margin-bottom: 40px;
    }

#tickets .ticket-input {
    display: flex;
    align-items: center;
    gap: 30px;
}

    #tickets .ticket-input:not(last-child) {
        margin-bottom: 15px;
    }

#tickets .ticket-input input {
    border: 1px solid var(--borders);
    border-radius: 4px;
    font-family: var(--body-text);
    font-size: 18px;
    text-align: center;
    width: 45px;
    height: 45px;
}

#tickets .ticket-input label {
    color: var(--titles);
    font-size: 22px;
    font-weight: 700;
}

#tickets .tickets-total {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 20px;
    border-top: 1px solid var(--borders);
    color: var(--titles);
    font-family: var(--headers-text);
    font-size: 36px;
    font-weight: 700;
}

    #tickets .tickets-total span {
        font-size: 24px;
    }

/* Payment Details */
#payment-details .cc-number input {
    background-image: url('../Images/credit-card-regular.svg');
    background-repeat: no-repeat;
    background-position: 10px 13px;
    background-size: 21px;
    padding-left: 40px;
}

#payment-details .confirm-info-container {
    display: flex;
    justify-content: center;
}

#payment-details input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-right: 5px;
}

#payment-details #consent-label {
    vertical-align: text-bottom;
}

/* Thanks/Sorry Page */
.checkout-completed {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px);
    min-height: 600px;
}

    .checkout-completed img {
        display: block;
        width: auto;
        height: 120px;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .checkout-completed h2,
    .checkout-completed h4,
    .checkout-completed h5,
    .checkout-completed p {
        text-align: center;
    }

    .checkout-completed h2 {
        margin-bottom: 20px;
    }

    .checkout-completed h4 {
        color: var(--body-text);
        margin-bottom: 60px;
    }
    
    .checkout-completed h5 {
        color: var(--body-text);
        margin: 0;
        margin-bottom: 10px;
    }

    #thanks.checkout-completed h5 {
        margin-bottom: 20px;
    }

    .checkout-completed p {
        font-size: 18px;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    .checkout-completed p span {
        font-weight: 700;
    }

    .checkout-completed .confirm-info-container {
        justify-content: center;
        margin-top: 70px;
    }

    .checkout-completed .btn-return {
        background-color: transparent;
        border: 3px solid var(--primary-blue);
        border-radius: 50px;
        color: var(--primary-blue);
        font-family: var(--text);
        font-size: 20px;
        font-weight: 700;
        padding: 16px 24px;
        width: 100%;
        max-width: 330px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .checkout-completed .btn-return:hover {
            background-color: var(--primary-blue-dark);
            border-color: var(--primary-blue-dark);
            color: #fff;
        }

    .checkout-completed .btn-return i {
        margin-right: 10px;
    }

/******************************************* ABOUT PAGE *******************************************/
.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
}

.about-container img {
    border-radius: 24px;
    width: 50%;
    height: auto;
    box-shadow: 6px 6px 0 var(--primary-blue);
}

.about-desc {
    width: 50%;
}

.about-container p {
    font-size: 18px;
    line-height: 1.8em;
}

.about-features {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 100px;
}

.about-features-item {
    text-align: center;
}

.about-features-item h4 {
    margin-bottom: 20px;
}

.about-features-item i {
    color: var(--primary-blue);
    font-size: 90px;
    height: 100px;
}

.about-outro {
    border: 1px solid var(--borders);
    border-radius: 24px;
    margin-top: 80px;
    padding: 80px;
}

.about-outro h3 {
    margin-top: 0;
}

/******************************************* HOW TO PAGE *******************************************/
.howto-container {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin: 0 auto;
    margin-top: 80px;
}

    .howto-container .howto-item {
        background: #fff;
        border: 1px solid var(--borders);
        border-radius: 24px;
        box-shadow: 0 3px 6px rgba(28,116,204,0.15);
        padding: 60px 80px;
        position: relative;
    }

.howto-container .howto-item:not(:last-child)::before {
    content: '';
    display: block;
    background-color: var(--primary-blue);
    width: 6px;
    height: 45px;
    position: absolute;
    left: 50%;
    bottom: -45px;
    transform: translateX(-50%);
}

.howto-item .howto-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: var(--primary-blue);
    border-radius: 50%;
    font-size: 42px;
    font-family: var(--headers-text);
    font-weight: 700;
    text-align: center;
    width: 60px;
    height: 60px;
}

.howto-item .howto-cols {
    display: flex;
    align-items: center;
    gap: 80px;
}

.howto-item .howto-icon {
    width: 100%;
    max-width: 256px;
    height: auto;
}

.howto-item:nth-child(even) .howto-icon {
    order: 1;
}

.howto-item .howto-text {
    font-size: 18px;
}

.howto-item .howto-text h3 {
    margin-top: 0;
}

/******************************************* CONTACT PAGE *******************************************/
.contact-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.contact-cols .contact-col {
    background-color: #fff;
    border: 1px solid var(--borders);
    border-radius: 24px;
    padding: 40px;
}

.contact-col .contact-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

    .contact-col .contact-header i {
        color: var(--primary-blue);
        font-size: 36px;
    }

    .contact-col .contact-header h3 {
        margin: 0;
    }

    .contact-cols .contact-col p {
        margin-bottom: 20px;
    }

.contact-cols .contact-col p.mailing-address {
    line-height: 1.8;
}

.contact-cols .contact-col .contact-icn {
    color: var(--text);
    font-size: 28px;
}

.contact-cols .contact-col .contact-icn:hover {
    color: var(--primary-blue);
}

.contact-cols .contact-col .contact-icn:not(:last-child) {
    margin-right: 20px;
}

/* Contact Form */
.contact-form {
    background-color: var(--off-white);
    padding: 80px 0;
}

.contact-form .form-container {
    border: none;
    padding: 0;
    margin-top: 40px;
}

.contact-form button {
    margin: 0px auto;
}

/******************************************* FAQ *******************************************/
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.faq-page h3 {
    margin-top: 60px;
    margin-bottom: 0;
}

.faq-container .accordion-header h4 {
    font-size: 20px;
}

    .faq-container .accordion-body-container .accordion-body {
        font-size: 18px;
    }

    .faq-container .accordion-body-container .accordion-body ul {
        margin: 0;
    }

.contact-cta {
    background-color: rgba(51, 153, 255, .075);
    padding: 100px 0;
}

.contact-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-left p {
    max-width: 500px;
}

.cta-right .btn-lg {
    padding: 20px 120px;
}

/******************************************* POLICY PAGES *******************************************/
.policy-page .container {
    max-width: 900px;
}

.policy-indent {
    margin-bottom: 50px;
    padding-left: 30px;
}

.policy-page ul li::marker {
    color: var(--primary-blue);
}

/******************************************* ERROR PAGES *******************************************/
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 66vh;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-container h1 {
    color: var(--primary-blue);
    font-size: 180px;
    letter-spacing: -5px;
    line-height: 1.1;
    margin: 0;
}

.error-container h2 {
    margin-bottom: 20px;
}

.error-container p {
    font-size: 18px;
}

.error-container .btn-lg {
    background-color: #fff;
    color: var(--primary-blue);
    border: 3px solid var(--primary-blue);
    margin-top: 60px;
}

.error-container .btn-lg:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: #fff;
}

.error-container .btn-lg i {
    margin-right: 10px;
}

/******************************************* SIGNUP SUCCESS PAGE *******************************************/
.success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    min-height: 500px;
    margin:  auto;
    padding: 40px 0;
}

.success-container i {
    color: var(--primary-blue);
    font-size: 120px;
    margin-bottom: 30px;
}

.success-container h2 {
    text-align: center;
    margin-bottom: 40px;
}

.success-container p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

    .success-container p strong {
        font-weight: 700;
    }

/******************************************* RULES AND CONDITIONS MODAL *******************************************/
.rules-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    width: 101%;
    height: 101%;
    overflow: auto;
    z-index: 2000;
    display: none;
    font-family: 'Montserrat-Light';
}

.rules-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rules-modal-container {
    position: absolute;
    top: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 3px;
    font-size: 16px;
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    margin-bottom: 80px;
}

    .rules-modal-container h2 {
        margin-top: 0;
        margin-bottom: 15px;
        font-family: 'Montserrat-SemiBold';
    }

ul.rules-list {
    margin: 0;
    padding: 0;
}

    ul.rules-list li {
        list-style: none;
    }

        ul.rules-list li:not(:last-child) {
            margin-bottom: 8px;
        }

        ul.rules-list li span {
            display: inline-block;
            font-weight: 600;
            vertical-align: top;
            width: 24px;
        }

        ul.rules-list li div {
            display: inline-block;
            width: calc(100% - 24px);
        }

.rules-subheader {
    font-weight: 600;
    margin-bottom: 2px;
}

.rules-paragraph {
    margin: 0;
}

    .rules-paragraph span {
        font-weight: 600;
    }

    .rules-paragraph ul {
        padding-left: 24px;
    }

.rules-outline {
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    padding: 27px 20px 15px 20px;
    font-family: 'Montserrat-SemiBold';
}

    .rules-outline p {
        line-height: 1.7;
    }

        .rules-outline p span {
            display: inline-block;
            font-family: 'Montserrat-Light';
            font-weight: lighter;
            margin-right: 20px;
            width: 270px;
        }

ul.rules-lottery-info {
    margin: 0;
    margin-top: 25px;
    padding: 0;
}

    ul.rules-lottery-info li {
        list-style: none;
        font-weight: 600;
    }

        ul.rules-lottery-info li:not(:last-child) {
            margin-bottom: 8px;
        }

.rules-modal-container .close-btn-rules {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

    .rules-modal-container .close-btn-rules span {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 30px;
        height: 2px;
        background-color: #323E48;
    }

        .rules-modal-container .close-btn-rules span:nth-of-type(1) {
            -webkit-transform: translate(-50%,-50%) rotate(45deg);
            -ms-transform: translate(-50%,-50%) rotate(45deg);
            transform: translate(-50%,-50%) rotate(45deg);
        }

        .rules-modal-container .close-btn-rules span:nth-of-type(2) {
            -webkit-transform: translate(-50%,-50%) rotate(-45deg);
            -ms-transform: translate(-50%,-50%) rotate(-45deg);
            transform: translate(-50%,-50%) rotate(-45deg);
        }

.footer_top .btn-rules-open {
    cursor: pointer;
    font-size: 20px;
}

.rules-modal.show-rules-modal {
    display: block;
}


/*************************************** MODALS ***************************************/
#lean_overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    display: none;
}

#offline-purchase-modal {
    display: none;
    position: fixed;
    opacity: 1;
    z-index: 11000;
    left: 50%;
    margin-left: -25%;
    top: 200px;
    width: 50%;
    max-width: 818px;
    border: thin solid black;
    padding-bottom: 2px;
    background: #FFF;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 4px #000000;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7);
    box-shadow: 0 0 4px #000000;
    box-shadow: 0 0 4px rgba(0,0,0,0.7);
}

#signup-header {
    /*background: url(/content/images/hd-bg.png);*/
    color: #fff;
    padding: 18px 18px 14px 18px;
    background: #1fa092;
    border-bottom: 1px solid #21a99a;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

#offline-purchase-modal h2 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 #000000;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

#signup-header p {
    font-size: 1em;
    margin: 0;
    text-shadow: 1px 1px 0 #ffffff;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    text-shadow: none;
}

#offline-purchase-modal .txt-fld {
    position: relative;
    padding: 14px 20px;
    border-bottom: 1px solid #EEE;
    text-align: left;
}

    #offline-purchase-modal .txt-fld h3 {
        font-weight: bold;
        font-size: 1.1em;
        margin-bottom: 7px;
    }

    #offline-purchase-modal .txt-fld p {
        font-size: 1em;
        line-height: 1.3em;
    }

        #offline-purchase-modal .txt-fld p span {
            color: #444;
            font-weight: 800;
        }

        #offline-purchase-modal .txt-fld p a {
            color: #21a99a;
            text-decoration: none;
        }

/*************************************** SPLASH PAGE ***************************************/
#splash {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    background-color: #7A22D9;
    background-image: url('../Images/5050-Ultimate_hero-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    padding: 30px;
}

    #splash img {
        width: 100%;
        max-width: 600px;
        height: auto;
    }

    #splash h1 {
        color: #fff;
        font-size: 56px;
        text-align: center;
        margin-top: 60px;
    }

    #splash .splash-chha {
        position: absolute;
        bottom: 10px;
        left: 10px;
    }

        #splash .splash-chha img {
            width: 200px;
            height: auto;
        }

    #splash .splash-imagine {
        position: absolute;
        bottom: 10px;
        right: calc(90px + 30px);
    }

        #splash .splash-imagine img {
            width: 90px;
            height: auto;
        }

/*************************************** ANIMATION ***************************************/
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bob {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

.custom-dropdown {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
    background-color: #fff;
    width: 100%;
}

#billing-details label[for="province"] + span.select-form-control.select-custom-dropdown.select-area {
    display: none !important;
}

.select-area {
    font-family: var(--body-text);
    font-size: 16px;
    border: 1px solid var(--borders);
    border-radius: 4px;
    width: 100% !important;
    padding: 12px;
    margin-top: 5px;
    display: block;
}