:root {
    --primary-color: #770196;
    --secondary-color: #e12ce8;
    --white-color: #ffffff;
    --black-color: #000000;
    --gray-bg: #e5e7eb;
    --light-gray-bg: #f4f4f4;
    --yellow-bg: #ffd20b;
    --dark-bg: #170e14;
    --text-color: #252c32;
    --border-dark: #252c32;
    --text-gray: #77787b;
    --text-red: #f00;
    --text-yellow: #ffd20b;
    --header-height: 90px;
}

@media (min-width: 991px) {
    :root {
        --header-height: 110px;
    }
}

@media (min-width: 1280px) {
    :root {
        --header-height: 120px;
    }
}

@media (min-width: 1370px) {
    :root {
        --header-height: 135px;
    }
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Lieberuth-Regular;
    src: url('../fonts/lieberuth-regular.otf');
    font-weight: normal;
}

body {
    font-family: "Noto Sans", sans-serif;
    width: 100%;
    min-height: 100vh;
    background-color: var(--yellow-bg);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.auto-container {
    width: 100%;
    max-width: 1450px;
    margin: auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .auto-container {
        padding: 0 20px;
    }
}

.section-title {
    margin-bottom: 30px;
    text-align: center;
}

.section-title.text-left {
    text-align: left;
}

.section-title .title {
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
    color: var(--black-color);
}

@media (max-width: 380px) {
    .section-title .title {
        font-size: 30px;
    }
}

@media (max-width: 360px) {
    .section-title .title {
        font-size: 28px;
    }
}

@media (min-width: 450px) {
    .section-title .title {
        font-size: 34px;
    }
}

@media (min-width: 991px) {
    .section-title .title {
        font-size: 36px;
        text-transform: capitalize;
    }
}

@media (min-width: 1024px) {
    .section-title .title {
        font-size: 38px;
    }
}

@media (min-width: 1199px) {
    .section-title .title {
        font-size: 40px;
    }
}

@media (min-width: 1280px) {
    .section-title .title {
        font-size: 42px;
    }
}

@media (min-width: 1370px) {
    .section-title .title {
        font-size: 44px;
    }
}

@media (min-width: 1480px) {
    .section-title .title {
        font-size: 46px;
    }
}

@media (min-width: 1550px) {
    .section-title .title {
        font-size: 48px;
    }
}

.section-title .title.color-secondary {
    color: var(--secondary-color);
}

.section-title .description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--black-color);
    margin-top: 5px;
}

@media (min-width: 1280px) {
    .section-title .description {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (min-width: 1370px) {
    .section-title .description {
        font-size: 22px;
        line-height: 32px;
    }
}

.section-title .description.fs_16 {
    font-size: 16px;
    line-height: 26px;
}

@media (min-width: 1280px) {
    .section-title .description.fs_16 {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (min-width: 1370px) {
    .section-title .description.fs_16 {
        font-size: 20px;
        line-height: 30px;
    }
}

a {
    text-decoration: none;
}

a:focus-visible {
    outline: none;
}

.btn {
    font-family: "Roboto", sans-serif;
    width: 100%;
    height: 68px;
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow-bg);
    color: var(--black-color);
    padding: 4px 20px;
    border: 0;
    border-radius: 60px;
    letter-spacing: 0.1px;
    transition: all .25s ease-in-out;
}

@media (max-width: 390px) {
    .btn {
        height: 64px;
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .btn {
        height: 58px;
        font-size: 18px;
    }
}

@media (max-width: 340px) {
    .btn {
        height: 54px;
    }
}

@media (min-width: 991px) {
    .btn {
        font-weight: 600;
    }
}

@media (min-width: 1199px) {
    .btn {
        height: 70px;
        font-weight: 700;
    }
}

@media (min-width: 1370px) {
    .btn {
        font-weight: 800;
    }
}

@media (min-width: 1550px) {
    .btn {
        font-weight: 900;
    }
}

.btn:hover,
.btn:focus,
.btn:focus-visible,
.btn:active {
    background-color: #dfb600 !important;
    color: var(--black-color) !important;
}

.btn--theme1 {
    background-color: var(--yellow-bg);
    color: var(--black-color);
}

.btn--theme1:hover,
.btn--theme1:focus,
.btn--theme1:focus-visible,
.btn--theme1:active {
    background-color: #dfb600 !important;
    color: var(--black-color) !important;
}

.btn--theme2 {
    background-color: var(--secondary-color);
    color: var(--text-yellow);
}

.btn--theme2:hover,
.btn--theme2:focus,
.btn--theme2:focus-visible,
.btn--theme2:active {
    background-color: #b520bb !important;
    color: var(--text-yellow) !important;
}

.btn--theme3 {
    background-color: var(--yellow-bg);
    color: var(--black-color);
    border: 1px solid var(--border-dark);
}

.btn--theme3:hover,
.btn--theme3:focus,
.btn--theme3:focus-visible,
.btn--theme3:active {
    background-color: #dfb600 !important;
    color: var(--black-color) !important;
    border: 1px solid var(--border-dark) !important;
}

.btn--theme4 {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn--theme4:hover,
.btn--theme4:focus,
.btn--theme4:focus-visible,
.btn--theme4:active {
    background-color: #b520bb !important;
    color: var(--white-color) !important;
}

.btn--theme5 {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn--theme5:hover,
.btn--theme5:focus,
.btn--theme5:focus-visible,
.btn--theme5:active {
    background-color: #a502cf !important;
    color: var(--white-color) !important;
}

.mx-auto_10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

p {
    margin: 0;
}

.page-main {
    position: relative;
    width: 100%;
    max-width: 450px;
    background-color: var(--white-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 450px) {
    .page-main {
        max-width: 100%;
        box-shadow: none;
    }
}

/* ===== Header Section ===== */
.header-main {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .header-main {
        z-index: 10;
    }
}

body:has(.main-content__home) .header-main {
    background-color: transparent;
}

body:has(.main-content__home[style*="display: none;"]) .header-main {
    background-color: var(--primary-color);
}

.header-main .header__container {
    width: 100%;
    height: 100%;
    padding-right: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
}

@media (min-width: 991px) {
    .header-main .header__container {
        padding-right: 0;
    }
}

.header-main .header__logo img {
    width: 94px;
    height: auto;
}

@media (min-width: 768px) {
    .header-main .header__logo img {
        width: 100px;
    }
}

@media (min-width: 991px) {
    .header-main .header__logo img {
        width: 120px;
    }
}

@media (min-width: 1280px) {
    .header-main .header__logo img {
        width: 140px;
    }
}

@media (min-width: 1480px) {
    .header-main .header__logo img {
        width: 160px;
    }
}

@media (min-width: 1550px) {
    .header-main .header__logo img {
        width: 165px;
    }
}

.header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 100vh;
        background-color: var(--primary-color);
        z-index: 10;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 50px 30px 30px;
    }

    .header__nav.header__nav-close {
        width: 0;
        opacity: 0;
        visibility: hidden;
        transition: .6s;
    }

    .header__nav.header__nav-toggler {
        opacity: 1;
        visibility: visible;
        width: 280px;
        transition: .8s;
        overflow-x: hidden;
    }
}

.header__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

@media (max-width: 991px) {
    .header__nav-list {
        flex-direction: column;
    }
}

.header__nav-list li {
    margin: 0 20px;
}

@media (max-width: 991px) {
    .header__nav-list li {
        margin: 0;
    }
}

.header__nav-list li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: var(--white-color);
    transition: all .25s ease-in-out;
    white-space: nowrap;
}

.header__nav-list li a:hover {
    color: var(--text-yellow);
}

.header__nav .btn {
    min-width: 180px;
    height: 42px;
    font-size: 16px;
    white-space: nowrap;
}

@media (min-width: 1280px) {
    .header__nav .btn {
        font-size: 18px;
    }
}

.header__humburger {
    display: none;
}

@media (max-width: 991px) {
    .header__humburger {
        position: relative;
        display: grid;
        place-content: center;
        grid-column: 3 / -1;
        grid-row: 1 / -1;
        width: 32px;
        height: 32px;
        justify-self: start;
        cursor: pointer;
        z-index: 10;
    }
}

.header__humburger .humburger-open {
    width: 32px;
    height: 3px;
    background-color: var(--white-color);
    border-radius: 2px;
    transition: all .6s ease-out;
    position: relative;
    z-index: 2;
}

.header__humburger.humburger__toggler .humburger-open {
    background-color: rgba(0, 0, 0, 0);
}

.header__humburger .humburger-open::before,
.header__humburger .humburger-open::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 3px;
    background-color: var(--white-color);
    border-radius: 2px;
    transition: all .6s ease-out;
}

.header__humburger .humburger-open::before {
    transform: translateY(-8px);
}

.header__humburger .humburger-open::after {
    transform: translateY(8px);
}

.header__humburger.humburger__toggler .humburger-open::before {
    transform: rotate(45deg);
}

.header__humburger.humburger__toggler .humburger-open::after {
    transform: rotate(-45deg);
}


/* Hero Banner */
.hero-banner {
    background-image: url('../images/hero-bg-mobile.jpg');
    padding: 110px 0 110px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -90px;
    background-attachment: fixed;
}

@media (min-width: 480px) {
    .hero-banner {
        background-image: url('../images/hero-bg-desktop.jpg');
    }
}

@media (min-width: 991px) {
    .hero-banner {
        margin-top: -110px;
    }
}

@media (min-width: 1280px) {
    .hero-banner {
        padding-bottom: 150px;
        margin-top: -120px;
        padding-top: 130px;
        overflow: hidden;
    }
}

@media (min-width: 1370px) {
    .hero-banner {
        padding-top: 150px;
        margin-top: -135px;
    }
}

@media (min-width: 1480px) {
    .hero-banner {
        padding-bottom: 170px;
    }
}

.hero-banner .hero-banner__inner {
    text-align: center;
}

.hero-banner .title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 140%;
    margin-bottom: 30px;
}

@media (max-width: 365px) {
    .hero-banner .title {
        font-size: 20px;
    }
}

@media (min-width: 450px) {
    .hero-banner .title {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .hero-banner .title {
        font-size: 26px;
        text-transform: capitalize;
    }
}

@media (min-width: 991px) {
    .hero-banner .title {
        font-size: 28px;
    }
}

@media (min-width: 1199px) {
    .hero-banner .title {
        font-family: "Roboto", sans-serif;
        font-size: 30px;
        line-height: 125%;
        padding-top: 5px;
        font-weight: 600;
    }
}

@media (min-width: 1280px) {
    .hero-banner .title {
        font-size: 34px;
    }
}

@media (min-width: 1370px) {
    .hero-banner .title {
        font-size: 36px;
    }
}

@media (min-width: 1480px) {
    .hero-banner .title {
        font-size: 38px;
    }
}

.hero-banner .title span {
    display: block;
}

.hero-banner .subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 140%;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .hero-banner .subtitle {
        font-size: 26px;
    }
}

@media (min-width: 991px) {
    .hero-banner .subtitle {
        font-size: 28px;
        margin-bottom: 6px;
    }
}

@media (min-width: 1199px) {
    .hero-banner .subtitle {
        font-size: 30px;
    }
}

.hero-banner .description {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    line-height: 26px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hero-banner .description {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

@media (min-width: 1199px) {
    .hero-banner .description {
        font-size: 22px;
    }
}

.hero-banner .btn {
    max-width: 275px;
    height: 49px;
}

@media (min-width: 1199px) {
    .hero-banner .btn {
        height: 68px;
        max-width: 380px;
    }
}

@media (min-width: 1280px) {
    .hero-banner .btn {
        max-width: 440px;
    }
}

@media (min-width: 1370px) {
    .hero-banner .btn {
        font-size: 22px;
    }
}

@media (min-width: 1480px) {
    .hero-banner .btn {
        font-size: 24px;
    }
}

.hero-banner .hero-banner__container {
    overflow: hidden;
    margin: 0 -15px;
}

@media (min-width: 768px) {
    .hero-banner .hero-banner__container {
        margin: 0 -20px;
    }
}

@media (min-width: 1280px) {
    .hero-banner .hero-banner__container {
        margin: 0;
    }
}

.hero-banner .banner-ticket__msg {
    max-width: 325px;
    margin: auto;
}

@media (min-width: 768px) {
    .hero-banner .banner-ticket__msg {
        max-width: 360px;
    }
}

@media (min-width: 1280px) {
    .hero-banner .banner-ticket__msg {
        max-width: 100%;
    }
}

@media (min-width: 1480px) {
    .hero-banner .banner-ticket__msg {
        margin: 0;
    }
}

.hero-banner .banner-ticket__msg .title {
    margin-bottom: 8px;
}

.hero-banner .banner-ticket__msg .description:not(:last-child) {
    margin-bottom: 15px;
}

/*  */
.hero-banner__slider,
.ticket-price__slider {
    padding-top: 10px;
    padding-bottom: 25px;
}

@media (min-width: 450px) {

    .hero-banner__slider,
    .ticket-price__slider {
        padding-bottom: 30px;
    }
}

@media (min-width: 1250px) {
    .hero-banner__slider,
    .ticket-price__slider {
        max-width: 1340px;
    }
}

@media (min-width: 1280px) {
    .hero-banner__slider,
    .ticket-price__slider {
        max-width: 1220px;
        overflow: hidden;
        padding-left: 25px;
    }
}

.hero-banner__slider .swiper-wrapper,
.ticket-price__slider .swiper-wrapper {
    align-items: center;
    /* justify-content: center !important; */
    width: 0;
}

/* .hero-banner__slider .swiper-slide,
.ticket-price__slider .swiper-slide {
    flex: 0 0 auto;
} */

.ticket-price__content {
    position: relative;
    width: 274px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

@media (min-width: 500px) and (max-width: 1280px) {
    .ticket-price__content {
        margin: 0 10px !important;
    }
}

.ticket-price__content.swiper-slide-active {
    width: 274px;
    border-radius: 18px;
}

@media (min-width: 1280px) {
    .ticket-price__content.swiper-slide {
        width: 199px;
        height: auto;
        transform: skew(0deg, 2.2deg) translateY(7px) !important;
    }
    .ticket-price__content.swiper-slide-active ~ .swiper-slide {
        transform: skew(0deg, -2.2deg) translateY(7px) !important;
    }
    .ticket-price__content.swiper-slide-active {
        width: 224px;
        transform: skew(0deg, 0deg) !important;
    }
    .ticket-price__content.swiper-slide-prev {
        width: 224px;
        height: auto;
        transform: skew(0deg, 1.2deg) !important;
    }
    .ticket-price__content.swiper-slide-next {
        width: 224px;
        height: auto;
        transform: skew(0deg, -1.2deg) !important;
    }
    .ticket-price__content.swiper-slide-active ~ .swiper-slide-next {
        transform: skew(0deg, -1.2deg) !important;
    }
    /* ticket-price__content swiper-slide choose-ticket__content swiper-slide-visible swiper-slide-fully-visible */
    /* ticket-price__content swiper-slide choose-ticket__content swiper-slide-visible swiper-slide-fully-visible */
}

/* .ticket-price__content img {
    width: 100%;
    height: auto;
} */

.ticket-price__content .ticket__img {
    width: 100%;
    height: auto;
}

.ticket-price__content .ticket__logo {
    position: absolute;
    top: 7%;
    left: 50%;
    width: 90%;
    height: auto;
    transform: translateX(-50%);
}

@media (max-width: 1370px) {
    .ticket-price__content .ticket__logo {
        top: 8%;
        width: 85%;
    }
}

@media (max-width: 991px) {
    .ticket-price__content .ticket__logo {
        top: 8%;
        width: 82%;
    }
}

@media (max-width: 440px) {
    .ticket-price__content .ticket__logo {
        width: 72%;
    }
}

@media (max-width: 380px) {
    .ticket-price__content .ticket__logo {
        top: 9%;
    }
}

.ticket-price__content .ticket__icon {
    position: absolute;
    left: 6%;
    bottom: 30%;
    width: 71px;
    height: auto;
    animation: moveRightAnimation 2s ease-in-out infinite;
    transition: all .25s ease-in-out;
}

@media (min-width: 1280px) {
    .ticket-price__content .ticket__icon {
        width: 80px;
    }
}

@media (min-width: 1550px) {
    .ticket-price__content .ticket__icon {
        width: 85px;
    }
}

@media (max-width: 380px) {
    .ticket-price__content .ticket__icon {
        left: 5%;
        width: 65px;
    }
}

@keyframes moveRightAnimation {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.ticket-price__content-left {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
}

.ticket-price__content-right {
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 1;
}

.ticket-price__content-left.small {
    left: 15px;
    top: 8px;
}

.ticket-price__content-right.small {
    right: 15px;
    top: 10px;
}

.ticket-price__content-left span,
.ticket-price__content-right span {
    display: block;
}

.ticket-price__content-left .top {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-red);
    margin-bottom: 6px;
}

.ticket-price__content-left .bottom {
    font-family: Lieberuth-Regular;
    font-size: 24px;
    line-height: 1;
    color: var(--text-yellow);
}

@media (max-width: 400px) {
    .ticket-price__content-left .bottom {
        font-size: 22px;
    }
}

.ticket-price__content-left.small .top {
    font-size: 10px;
    margin-bottom: 6px;
    margin-left: -10px;
}

.choose-ticket__container .ticket-price__content-left.small .top {
    margin-left: 0;
}

.ticket-price__content-left.small .bottom {
    font-size: 20px;
}

.ticket-price__content-right .top {
    font-size: 28px;
    font-weight: 600;
    line-height: 28.848px;
    letter-spacing: -1.563px;
    color: var(--white-color);
}

@media (max-width: 400px) {
    .ticket-price__content-right .top {
        font-size: 24px;
    }
}

.ticket-price__content-right .top sup {
    font-size: 20px;
    top: -0.37em;
    margin-right: 2px;
}

.ticket-price__content-right.small .top {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -1.3px;
}

.ticket-price__content-right.small .top sup {
    font-size: 16px;
    top: -0.45em;
}

.ticket-price__content .ticket-price__content-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--white-color);
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

@media (max-width: 1024px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 991px) {
    .ticket-price__content .ticket-price__content-circle {
        bottom: 30px;
    }
}

@media (max-width: 420px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 380px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 360px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 340px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 140px;
        height: 140px;
        bottom: 20px;
    }
}

@media (min-width: 1550px) {
    .ticket-price__content .ticket-price__content-circle {
        width: 225px;
        height: 225px;
    }
}

.ticket-price__content .ticket-price__content-circle.circle-bg {
    overflow: unset;
    background-color: transparent;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ticket-price__content .ticket-price__content-circle.circle-bg::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/circle-bg.png) center / 110% no-repeat;
    border-radius: 50%;
    filter: blur(3.6059603691101074px);
    z-index: -1;
}

.ticket-price__content-circle .buy__text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 8px;
    font-size: 17.02px;
    font-weight: 700;
    line-height: normal;
    color: var(--secondary-color);
    animation: moveUpAnimation 2s ease-in-out infinite;
    transition: all .25s ease-in-out;
    padding-top: 5px;
}

.ticket-price__content-circle .buy__text span {
    display: block;
    font-size: 22px;
}

@media (max-width: 420px) {
    .ticket-price__content-circle .buy__text svg {
        width: 28px;
    }

    .ticket-price__content-circle .buy__text span {
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .ticket-price__content-circle .buy__text {
        font-size: 14px;
        row-gap: 8px;
    }

    .ticket-price__content-circle .buy__text svg {
        width: 24px;
    }

    .ticket-price__content-circle .buy__text span {
        font-size: 17px;
    }
}

@keyframes moveUpAnimation {

    0%,
    100% {
        transform: translateY(10);
    }

    50% {
        transform: translateY(-10px);
    }
}

/*  */
.galleryview {
    overflow: hidden;
    margin-top: -80px;
}

@media (min-width: 1280px) {
    .galleryview {
        margin-top: -110px;
    }
}

@media (min-width: 1480px) {
    .galleryview {
        margin-top: -120px;
    }
}

.galleryview .galleryview__slider {
    padding: 20px 0 20px 20px;
}

@media (min-width: 768px) {
    .galleryview .galleryview__slider {
        padding: 20px 20px;
    }

    .galleryview .galleryview__slider .swiper-wrapper {
        justify-content: center;
    }
}

.galleryview .galleryview__content {
    width: 155px;
    height: 155px;
}

@media (min-width: 991px) {
    .galleryview .galleryview__content {
        width: 170px;
        height: 170px;
    }
}

@media (min-width: 1280px) {
    .galleryview .galleryview__content {
        width: 190px;
        height: 190px;
    }
}

@media (min-width: 1480px) {
    .galleryview .galleryview__content {
        width: 205px;
        height: 205px;
    }
}

.galleryview .galleryview__content img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 0 13px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 991px) {
    .galleryview .galleryview__content img {
        border-radius: 22px;
    }
}

@media (min-width: 1280px) {
    .galleryview .galleryview__content img {
        border-radius: 25px;
    }
}

@media (min-width: 1480px) {
    .galleryview .galleryview__content img {
        border-radius: 28px;
    }
}

/*  */
.how-it-works {
    padding: 20px 0 50px;
}

@media (min-width: 991px) {
    .how-it-works {
        padding: 30px 0 60px;
    }
}

.how-it-works .section-title {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 450px) {
    .how-it-works .section-title {
        max-width: 400px;
    }
}

@media (min-width: 768px) {
    .how-it-works .section-title {
        max-width: 540px;
    }
}

@media (min-width: 1280px) {
    .how-it-works .section-title {
        max-width: 580px;
    }
}

@media (min-width: 1370px) {
    .how-it-works .section-title {
        max-width: 630px;
    }
}

.how-it-works .how-works__container {
    display: grid;
    row-gap: 35px;
    padding-top: 10px;
}

@media (min-width: 1050px) {
    .how-it-works .how-works__container {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 25px;
    }
}

.how-it-works .how-works__content {
    text-align: center;
}

.how-it-works .how-works__content .icon {
    display: block;
    margin-bottom: 8px;
}

@media (min-width: 1050px) {
    .how-it-works .how-works__content .icon {
        min-height: 80px;
    }
}

.how-it-works .how-works__content img {
    width: auto;
    height: auto;
    max-width: 110px;
    max-height: 110px;
    object-fit: contain;
}

@media (min-width: 991px) {
    .how-it-works .how-works__content img {
        min-height: 70px;
        max-width: 122px
    }
}

.how-it-works .how-works__content .title {
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

@media (max-width: 380px) {
    .how-it-works .how-works__content .title {
        font-size: 30px;
    }
}

@media (max-width: 360px) {
    .how-it-works .how-works__content .title {
        font-size: 28px;
    }
}

@media (max-width: 340px) {
    .how-it-works .how-works__content .title {
        font-size: 26px;
    }
}

@media (min-width: 1280px) {
    .how-it-works .how-works__content .title {
        font-size: 34px;
    }
}

@media (min-width: 1480px) {
    .how-it-works .how-works__content .title {
        margin-bottom: 6px;
    }
}

.how-it-works .how-works__content p {
    max-width: 275px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--black-color);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 991px) {
    .how-it-works .how-works__content p {
        max-width: 320px;
        font-size: 18px;
        line-height: 28px;
    }
}

.how-it-works .how-works__content p strong {
    font-weight: 600;
}

.how-it-works .btn-grp {
    margin-top: 45px;
    text-align: center;
}

@media (min-width: 1050px) {
    .how-it-works .btn-grp {
        margin-top: 35px;
    }
}

.how-it-works .btn-grp .btn {
    max-width: 315px;
    height: 53px;
}

@media (max-width: 340px) {
    .how-it-works .btn-grp .btn {
        height: 50px;
    }
}

@media (min-width: 1199px) {
    .how-it-works .btn-grp .btn {
        height: 68px;
        max-width: 380px;
    }
}

@media (min-width: 1280px) {
    .how-it-works .btn-grp .btn {
        max-width: 440px;
    }
}

@media (min-width: 1370px) {
    .how-it-works .btn-grp .btn {
        height: 70px;
        font-size: 22px;
    }
}

@media (min-width: 1480px) {
    .how-it-works .btn-grp .btn {
        font-size: 24px;
    }
}

/*  */
.packed-prizes {
    background-color: var(--yellow-bg);
    padding: 40px 0 40px;
}

@media (min-width: 991px) {
    .packed-prizes {
        padding: 50px 0 60px;
    }
}

.packed-prizes .section-title {
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .packed-prizes .section-title {
        max-width: 380px;
    }
}

@media (min-width: 1199px) {
    .packed-prizes .section-title {
        max-width: 420px;
    }
}

@media (min-width: 1370px) {
    .packed-prizes .section-title {
        max-width: 620px;
    }
}

.packed-prizes .packed-prizes__container {
    display: grid;
    row-gap: 7px;
}

@media (min-width: 768px) {
    .packed-prizes .packed-prizes__container {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 8px;
        grid-row-gap: 8px;
    }
}

@media (min-width: 1050px) {
    .packed-prizes .packed-prizes__container {
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
}

@media (min-width: 1199px) {
    .packed-prizes .packed-prizes__container {
        max-width: 1100px;
        margin: auto;
    }
}

.packed-prizes .packed-prizes__content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white-color);
    column-gap: 10px;
}

.packed-prizes .packed-prizes__content-left {
    flex: 1;
}

.packed-prizes .packed-prizes__content-right {
    text-align: left;
    min-width: 100px;
}

.packed-prizes .packed-prizes__content .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: var(--black-color);
    margin-bottom: 5px;
}

@media (max-width: 380px) {
    .packed-prizes .packed-prizes__content .title {
        font-size: 18px;
        line-height: 24px;
    }
}

.packed-prizes .packed-prizes__content .subtitle {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--black-color);
    font-style: italic;
}

@media (min-width: 991px) {
    .packed-prizes .packed-prizes__content .subtitle {
        font-weight: 500;
    }
}

.packed-prizes .packed-prizes__status,
.packed-prizes .packed-prizes__view {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(----text-gray);
}

.packed-prizes .btn-grp {
    text-align: center;
}

.packed-prizes .btn-grp .link {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    transition: all .25s ease-in-out;
    margin-top: 25px;
}

@media (min-width: 991px) {
    .packed-prizes .btn-grp .link {
        font-size: 18px;
    }
}

.packed-prizes .btn-grp .link svg {
    display: block;
    width: 30px;
    height: auto;
    margin: auto auto 6px;
}

.packed-prizes .btn-grp .link:hover {
    color: var(--secondary-color);
}

/*  */
.where-buy {
    padding: 50px 0;
    display: none;
}

@media (min-width: 991px) {
    .where-buy {
        padding: 60px 0;
    }
}

.where-buy .where-buy__container {
    width: 100%;
    min-height: 610px;
    background-color: var(--secondary-color);
    border: 8px solid var(--yellow-bg);
    border-radius: 28px;
    padding: 35px 40px;
    margin: auto;
    background-image: url('../images/where-buy-bg.png');
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 420px) {
    .where-buy .where-buy__container {
        padding: 35px 30px;
    }
}

@media (max-width: 380px) {
    .where-buy .where-buy__container {
        padding: 30px 15px;
        min-height: 570px;
    }
}

@media (max-width: 360px) {
    .where-buy .where-buy__container {
        padding: 25px 15px;
        min-height: 520px;
    }
}

@media (min-width: 480px) {
    .where-buy .where-buy__container {
        min-height: 650px;
    }
}

@media (min-width: 520px) {
    .where-buy .where-buy__container {
        background-image: url('../images/where-buy-bg-desktop.png');
        min-height: 465px;
    }
}

@media (min-width: 768px) {
    .where-buy .where-buy__container {
        min-height: 540px;
    }
}

@media (min-width: 991px) {
    .where-buy .where-buy__container {
        padding: 50px 60px 60px;
        min-height: auto;
        background-size: 58%;
        background-position: bottom right;
    }

    .where-buy .where-buy__container .section-title {
        max-width: 380px;
        text-align: left;
    }

    .where-buy .where-buy__container .btn {
        max-width: 295px;
        height: 60px;
    }
}

@media (min-width: 1370px) {
    .where-buy .where-buy__container {
        padding: 55px 60px 60px 90px;
        min-height: auto;
        background-size: 58%;
        background-position: bottom right;
    }

    .where-buy .where-buy__container .section-title {
        max-width: 440px;
        text-align: left;
        margin-bottom: 35px;
    }

    .where-buy .where-buy__container .btn {
        max-width: 295px;
        height: 60px;
    }
}

.where-buy .section-title .title {
    color: var(--text-yellow);
}

@media (min-width: 1199px) {
    .where-buy .section-title .title {
        color: var(--white-color);
        text-transform: unset;
        line-height: 110%;
        margin-bottom: 12px;
    }
}

.where-buy .section-title .description {
    color: var(--white-color);
}

@media (min-width: 1199px) {
    .where-buy .section-title .description {
        font-size: 20px;
        line-height: 1.4;
    }
}

@media (min-width: 1280px) {
    .where-buy .section-title .description {
        font-size: 22px
    }
}

@media (min-width: 1370px) {
    .where-buy .section-title .description {
        font-size: 26px
    }
}

/*  */
.testimonials-main {
    padding: 40px 0;
    background-color: var(--secondary-color);
}

@media (min-width: 991px) {
    .testimonials-main {
        padding: 60px 0 55px;
    }
}

.testimonials-main .testimonials-content {
    max-width: 335px;
    text-align: center;
    margin: auto;
}

.testimonials-main .avatar {
    margin-bottom: 12px;
}

.testimonials-main .avatar img {
    width: 208px;
    height: 208px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials-main .title {
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    color: var(--text-yellow);
    margin-bottom: 10px;
}

.testimonials-main .subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--white-color);
}

.testimonials-main .subtitle span {
    display: block;
}

.testimonials-main .icon {
    display: block;
    margin-top: 35px;
    margin-bottom: 15px;
}

.testimonials-main .icon svg {
    width: 125px;
    height: auto;
}

.testimonials-main p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--white-color);
}

/*  */
.faqs-main {
    padding: 40px 0 50px;
    background-color: var(--white-color);
}

@media (min-width: 991px) {
    .faqs-main {
        padding: 55px 0 60px;
    }
}

.faqs-main .section-title {
    margin-bottom: 15px;
}

.faqs-main .faqs__container .card {
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid var(--yellow-bg);
}

@media (min-width: 1199px) {
    .faqs-main .faqs__container {
        max-width: 1040px;
        margin: auto;
    }
}

.faqs-main .faqs__container .title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--black-color);
    padding: 13px 20px 13px 28px;
    cursor: pointer;
}

@media (max-width: 380px) {
    .faqs-main .faqs__container .title {
        padding: 13px 0 13px 26px;
    }
}

@media (min-width: 450px) {
    .faqs-main .faqs__container .title {
        padding: 13px 20px 13px 30px;
    }
}

@media (min-width: 1280px) {
    .faqs-main .faqs__container .title {
        font-size: 20px;
    }
}

@media (min-width: 1370px) {
    .faqs-main .faqs__container .title {
        padding: 15px 20px 15px 30px;
    }
}

.faqs-main .faqs__container .title::before {
    content: '–';
    position: absolute;
    left: 0;
    top: 17px;
    width: 17px;
    height: 17px;
    padding-bottom: 5px;
    border-radius: 50%;
    background-color: var(--yellow-bg);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1280px) {
    .faqs-main .faqs__container .title::before {
        top: 19px;
        width: 18px;
        height: 18px;
        padding-left: 1px;
        line-height: normal;
    }
}

.faqs-main .faqs__container .title.collapsed::before {
    content: '+';
    padding-bottom: 0;
}

@media (min-width: 1280px) {
    .faqs-main .faqs__container .title.collapsed::before {
        padding-bottom: 1px;
    }
}

.faqs-main .faqs__container .text-content {
    padding: 0 20px 13px 28px;
    margin-top: -5px;
}

@media (max-width: 380px) {
    .faqs-main .faqs__container .text-content {
        padding: 0 0 13px 26px;
    }
}

@media (min-width: 450px) {
    .faqs-main .faqs__container .text-content {
        padding: 0 20px 18px 30px;
    }
}

@media (min-width: 1370px) {
    .faqs-main .faqs__container .text-content {
        padding: 0 20px 20px 30px;
    }
}

.faqs-main .faqs__container p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black-color);
}

@media (min-width: 1280px) {
    .faqs-main .faqs__container p {
        font-size: 18px;
    }
}

/*  */
.choose-ticket {
    display: none;
    padding: 40px 0 50px;
    background-color: var(--text-yellow);
}

.choose-ticket .choose-ticket__container {
    overflow: hidden;
    margin: 0 -15px;
}

@media (min-width: 768px) {
    .choose-ticket .choose-ticket__container {
        margin: 0 -20px;
    }
}

@media (min-width: 1280px) {
    .choose-ticket {
        overflow: hidden;
    }
    .choose-ticket .choose-ticket__container {
        margin: 0;
    }
}

.choose-ticket .choose-ticket__text-content {
    max-width: 336px;
    text-align: center;
    padding-top: 15px;
    margin: auto;
    display: grid;
    row-gap: 15px;
}

.choose-ticket .choose-ticket__text-content .description {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--black-color);
}

.choose-ticket .choose-ticket__msg {
    max-width: 325px;
    margin: auto;
}

.choose-ticket .choose-ticket__msg .section-title {
    margin-bottom: 0;
}

.choose-ticket .choose-ticket__msg .section-title p:not(:last-child) {
    margin-bottom: 15px;
}

/*  */
.unlock-ticket {
    padding: 40px 0 50px;
    background-color: var(--yellow-bg);
}

@media (max-width: 991px) {
    .unlock-ticket {
        min-height: calc(100vh - 90px);
        padding: 30px 0 30px;
    }
}

.unlock-ticket .auto-container {
    position: relative;
    max-width: 500px;
}

@media (min-width: 1370px) {
    .unlock-ticket .auto-container {
        max-width: 570px;
    }
}

.unlock-ticket .section-title {
    margin-bottom: 25px;
}

.unlock-ticket .section-title .title {
    position: relative;
}

@media (max-width: 991px) {
    .unlock-ticket .unlock-ticket__container {
        max-height: calc(100vh - 340px);
    }

    .unlock-ticket .ticket-price__content .ticket__img {
        max-height: calc(100vh - 340px);
        object-fit: cover;
        border-radius: 20px;
        object-position: top;
    }

    .unlock-ticket .section-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .unlock-ticket .unlock-ticket__container {
        max-height: calc(100vh - 300px);
    }

    .unlock-ticket .ticket-price__content .ticket__img {
        max-height: calc(100vh - 300px);
    }

    .unlock-ticket .section-title .title {
        font-size: 28px;
    }
}

@media (max-width: 450px) {
    .unlock-ticket .unlock-ticket__container {
        max-height: calc(100vh - 330px);
    }

    .unlock-ticket .ticket-price__content .ticket__img {
        max-height: calc(100vh - 330px);
    }
}

.unlock-ticket__container {
    max-width: 380px;
    margin: auto;
}

.scratch-now__container {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}


@media (min-width: 1024px) {
    .unlock-ticket__container {
        max-width: 400px;
        margin: auto;
    }

    .scratch-now__container {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1550px) {
    .unlock-ticket__container {
        max-width: 460px;
    }

    .scratch-now__container {
        max-width: 460px
    }
}

.unlock-ticket .ticket-price__content {
    margin: 0 !important;
    width: 100%;
    height: auto;
    box-shadow: none;
}

.unlock-ticket .unlock-ticket__btn-grp {
    margin-top: 30px;
}

.unlock-ticket .unlock-ticket__btn-grp {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.scratch-now .scratch-now__details {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 991px) {
    .unlock-ticket .unlock-ticket__btn-grp {
        max-width: 400px;
    }

    .scratch-now .scratch-now__details {
        max-width: 400px;
    }
}

@media (min-width: 1550px) {
    .unlock-ticket .unlock-ticket__btn-grp {
        max-width: 460px;
    }

    .scratch-now .scratch-now__details {
        max-width: 460px;
    }
}

@media (max-width: 991px) {
    .unlock-ticket .unlock-ticket__btn-grp .btn {
        height: 54px;
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .unlock-ticket .unlock-ticket__btn-grp .btn {
        height: 50px;
        font-size: 18px;
    }
}


.unlock-ticket .unlock-ticket__btn-grp .btn:not(:last-child) {
    margin-bottom: 15px;
}

/*  */
.footer-main {
    padding: 50px 0 40px;
    background-color: var(--dark-bg);
}

@media (min-width: 991px) {
    .footer-main {
        padding: 60px 0 55px;
    }
}

.footer-main .footer__inner {
    max-width: 315px;
    margin: auto;
    text-align: center;
}

@media (min-width: 991px) {
    .footer-main .footer__inner {
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .footer__top {
        min-width: 315px;
    }
}

@media (min-width: 1199px) {
    .footer-main .footer__inner {
        max-width: 1040px;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        margin: auto;
    }
}

@media (min-width: 1280px) {
    .footer__top {
        min-width: 440px;
    }
}

.footer-main .footer__link {
    padding: 0;
    margin-top: 30px;
    margin-bottom: 50px;
}

.footer-main .footer__link li {
    padding-bottom: 20px;
    display: block;
}

.footer-main .footer__link li .link {
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    transition: all .25s ease-in-out;
}

.footer-main .footer__link li .link:hover {
    color: var(--text-yellow);
}

.footer-main .footer__logo {
    margin-bottom: 30px;
}

.footer-main .footer__logo span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.footer-main .footer__logo svg {
    width: 118px;
    height: auto;
}

.footer-main .footer__address {
    font-size: 16px;
    font-weight: 400;
    color: #9d9d9e;
    line-height: 1.5;
    margin-bottom: 18px;
}

.footer-main .footer__address strong {
    display: block;
}

.footer-main .site-link {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    transition: all .25s ease-in-out;
}

.footer-main .site-link:hover {
    color: var(--text-yellow);
}

.footer-main .footer__copyright {
    font-size: 16px;
    font-weight: 400;
    color: #9d9d9e;
    line-height: 1.5;
    text-align: center;
}

/*  */
.common-scratch-view .ticket-price__content {
    margin: 0 !important;
    width: 100%;
    height: auto;
    box-shadow: none;
}

.scratch-now {
    position: relative;
    overflow: hidden;
    padding: 40px 0 50px;
    background-color: var(--yellow-bg);
}

@media (max-width: 991px) {
    .scratch-now {
        min-height: calc(100vh - 90px);
        padding: 30px 0 30px;
    }
}

.scratch-now .section-title {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .scratch-now .scratch-now__container {
        max-height: calc(100vh - 340px);
    }

    .scratch-now .scratch-now__container .ticket__img {
        max-height: calc(100vh - 340px);
        object-fit: cover;
        border-radius: 20px;
        object-position: top;
    }

    .scratch-now .section-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .scratch-now .scratch-now__container {
        max-height: calc(100vh - 300px);
    }

    .scratch-now .scratch-now__container .ticket__img {
        max-height: calc(100vh - 300px);
    }

    .scratch-now .section-title .title {
        font-size: 28px;
    }
}

@media (max-width: 450px) {
    .scratch-now .scratch-now__container {
        max-height: calc(100vh - 330px);
    }

    .scratch-now .scratch-now__container .ticket__img {
        max-height: calc(100vh - 330px);
    }
}

.scratch-now .scratch-now__details {
    position: relative;
    text-align: center;
    margin-top: 25px;
    z-index: 1;
}

.scratch-now .scratch-now__details .subtitle {
    max-width: 230px;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    color: var(--black-color);
    margin: auto;
}

@media (max-width: 991px) {
    .scratch-now .scratch-now__details .subtitle {
        font-size: 20px;
    }

    .scratch-now .scratch-now__details .btn {
        height: 54px;
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .scratch-now .scratch-now__details .subtitle {
        font-size: 18px;
    }

    .scratch-now .scratch-now__details .btn {
        height: 50px;
        font-size: 18px;
    }
}

.scratch-now #scratchCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: var(--black-color);
    touch-action: none;
}

.scratch-now .scratch__result {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

@media (max-width: 360px) {
    .scratch-now .scratch__result {
        padding: 10px;
    }
}

.scratch-now .scratch__more {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    color: rgba(0, 0, 0, 0.4);
    opacity: 0;
}

.scratch-now .winner__text span {
    display: block;
}

.scratch-now .winner__text .show-name,
.scratch-now .winner__text .show-msg,
.scratch-now .loss__text .show-name,
.scratch-now .loss__text .show-msg {
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
    color: rgba(0, 0, 0, 0.65);
}

@media (max-width: 1024px) {
    .scratch-now .winner__text .show-name,
    .scratch-now .winner__text .show-msg,
    .scratch-now .loss__text .show-name,
    .scratch-now .loss__text .show-msg {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .scratch-now .winner__text .show-name,
    .scratch-now .winner__text .show-msg,
    .scratch-now .loss__text .show-name,
    .scratch-now .loss__text .show-msg {
        font-size: 22px;
    }
}

@media (max-width: 380px) {
    .scratch-now .winner__text .show-name,
    .scratch-now .winner__text .show-msg,
    .scratch-now .loss__text .show-name,
    .scratch-now .loss__text .show-msg {
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .scratch-now .winner__text .show-name,
    .scratch-now .winner__text .show-msg,
    .scratch-now .loss__text .show-name,
    .scratch-now .loss__text .show-msg {
        font-size: 18px;
    }
}

.scratch-now .winner__text .show-text,
.scratch-now .loss__text .show-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 30.05px;
    color: rgba(0, 0, 0, 0.65);
}

@media (max-width: 360px) {
    .scratch-now .winner__text .show-text,
    .scratch-now .loss__text .show-text {
        font-size: 16px;
    }
}

/* Chechout CSS */
.scratch-checkout {
    background: var(--light-gray-bg);
}

.scratch-checkout .scratch-checkout__wrapper {
    max-width: 530px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.scratch-checkout .back-btn {
    position: absolute;
    left: 15px;
    top: 3.8%;
}

@media (max-width: 768px) {
    .scratch-checkout .back-btn {
        top: 3.7%;
    }
}

@media (max-width: 380px) {
    .scratch-checkout .back-btn {
        left: 5px;
    }
}

.scratch-checkout .checkout-cart {
    background: var(--light-gray-bg);
    padding: 40px 15px 50px;
    box-shadow: none;
}

.scratch-checkout .checkout-cart__summary {
    display: none;
    height: 0;
    opacity: 0;
}

.scratch-checkout .checkout-cart__fields {
    height: auto;
    max-height: unset;
}

.scratch-checkout .checkout-cart__inner {
    padding: 0;
}

.scratch-checkout .checkout-cart__heading {
    font-family: "Noto Sans";
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    color: var(--black-color);
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .scratch-checkout .checkout-cart__heading {
        font-size: 24px;
    }
}

@media (max-width: 1370px) {
    .scratch-checkout .checkout-cart__heading {
        font-size: 26px;
    }
}

.scratch-checkout .checkout-cart__summary-info {
    margin-bottom: 30px;
}

.scratch-checkout .cart__title.js-cart-summary-amount {
    font-family: "Noto Sans";
    font-size: 55px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -1.3px;
    text-align: center;
    color: var(--text-color);
}

@media (max-width: 380px) {
    .scratch-checkout .cart__title.js-cart-summary-amount {
        font-size: 50px;
    }
}

@media (max-width: 360px) {
    .scratch-checkout .cart__title.js-cart-summary-amount {
        font-size: 48px;
    }
}

@media (max-width: 340px) {
    .scratch-checkout .cart__title.js-cart-summary-amount {
        font-size: 46px;
    }
}

.scratch-checkout .cart__summary-block {
    display: none;
}

.scratch-checkout .checkout-form__sections {
    display: grid;
    gap: 15px;
}

.scratch-checkout .checkout-form__personal-info h4,
.scratch-checkout .checkout-form__billing-info h4,
.scratch-checkout .checkout-form__payment-info h4 {
    font-family: "Noto Sans";
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    color: var(--black-color);
    border: 0;
    padding: 0;
}

@media (max-width: 991px) {

    .scratch-checkout .checkout-form__personal-info h4,
    .scratch-checkout .checkout-form__billing-info h4,
    .scratch-checkout .checkout-form__payment-info h4 {
        font-size: 24px;
    }
}

@media (max-width: 1370px) {

    .scratch-checkout .checkout-form__personal-info h4,
    .scratch-checkout .checkout-form__billing-info h4,
    .scratch-checkout .checkout-form__payment-info h4 {
        font-size: 26px;
    }
}

.scratch-checkout .form-row {
    display: block;
    margin-bottom: 0;
}

.scratch-checkout .form-row .form-group {
    margin-bottom: 7px;
}

.scratch-checkout .form-group {
    margin-bottom: 15px;
}

.scratch-checkout .checkout-cart .form-control {
    font-family: "Noto Sans";
    width: 100%;
    height: 48px;
    padding: 4px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 8px;
    border: 1px solid var(--gray-bg);
    background: var(--white-color);
    color: var(--text-color);
}

@media (max-width: 360px) {
    .scratch-checkout .checkout-cart .form-control {
        height: 46px;
    }
}

.scratch-checkout .checkout-cart .form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: none;
}

.scratch-checkout .checkout-form__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    margin-bottom: 0;
    margin-top: 30px;
    background: transparent;
    padding: 0;
}

.scratch-checkout .checkout-form__checkbox input[type="checkbox"] {
    width: 25px;
    height: 25px;
    cursor: pointer;
    accent-color: var(--secondary-color);
    border-radius: 5px;
}

.scratch-checkout .checkout-form__checkbox label {
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

.scratch-checkout .checkout-form__currency {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.scratch-checkout .checkout-form__currency label {
    font-weight: 600;
    color: #1f2937;
}

.scratch-checkout .checkout-form__recurring {
    padding: 15px;
    background: var(--white-color);
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #e5e7eb;
}

.scratch-checkout .checkout-form__submit-btn {
    width: 100%;
    height: 68px;
    font-size: 22px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 4px 20px;
    border: 0;
    border-radius: 60px;
    transition: all .25s ease-in-out;
}

@media (max-width: 390px) {
    .scratch-checkout .checkout-form__submit-btn {
        height: 64px;
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .scratch-checkout .checkout-form__submit-btn {
        height: 58px;
        font-size: 18px;
    }
}

@media (max-width: 340px) {
    .scratch-checkout .checkout-form__submit-btn {
        height: 54px;
    }
}

.scratch-checkout .checkout-form__submit-btn:hover {
    background-color: #b520bb !important;
    color: var(--white-color) !important;
    transform: unset;
}

.scratch-checkout .validation-message {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

.scratch-checkout .validation-message .err-msg {
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--text-red);
    box-shadow: 1px 2px 11px 1px rgba(0, 0, 0, 0.1);
    background: #feebff;
    margin-top: 30px;
}

.scratch-checkout .checkout-form__payment-info .payment_tabs_checkbox {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 0;
    border: 0;
}

.scratch-checkout .checkout-form__payment-info .payment_tabs_checkbox .nav-link {
    width: 100%;
}

.scratch-checkout .checkout-form__payment-info .checkbox-container {
    position: relative;
    min-height: 100px;
    padding: 10px 12px !important;
    background: var(--white-color);
    border: 1px solid var(--gray-bg);
    border-radius: 8px !important;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
}

.scratch-checkout .checkout-form__payment-info .checkbox-container p {
    display: none !important;
}

.scratch-checkout .checkout-form__payment-info .checkbox-container input {
    position: absolute;
    left: 12px;
    top: 10px;
    accent-color: var(--secondary-color);
    width: 20px;
    height: 20px;
}

.scratch-checkout .checkout-form__payment-info .checkbox-container img {
    min-width: 80px;
    max-width: 140px;
    width: auto !important;
    height: auto !important;
    max-height: 70px !important;
}


.scratch-checkout .checkout-form__payment-info .tab-content {
    margin-top: 30px !important;
    min-height: 48px;
    border-radius: 8px;
    background-color: var(--white-color);
    padding: 4px 16px !important;
}

.scratch-checkout .checkout-form__payment-info .tab-content .tab-pane>div {
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scratch-checkout .checkout-form__payment-info .tab-content .tab-pane>div div {
    width: 100%;
}

.scratch-checkout .checkout-form__payment-info .tab-content .tab-pane>div #card-errors {
    display: none !important;
}

.scratch-checkout .saved-card-wrapper {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--white-color);
    border: 0;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .scratch-checkout .saved-card-wrapper {
        padding: 30px;
    }
}

.scratch-checkout #toggler__payments-methods {
    padding-top: 30px;
}

.scratch-checkout .saved-card-header {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.scratch-checkout .saved-card-list {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    gap: 15px;
}

.scratch-checkout .saved-card-option {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 8px;
    border-color: var(--secondary-color);
}

@media (min-width: 768px) {
    .scratch-checkout .saved-card-option {
        padding: 12px 16px;
        font-size: 16px;
    }
}

.scratch-checkout .saved-card-option:hover,
.scratch-checkout .saved-card-option.active {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.scratch-checkout .saved-card-reset {
    height: 60px;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
    margin-top: 15px;
}

.scratch-checkout .saved-card-reset:hover {
    background-color: var(--yellow-bg);
}

.scratch-checkout .btn__loading {
    position: relative;
    font-size: 0 !important;
    background-color: #fcb2ff !important;
    border-color: #fcb2ff !important;
    color: #fcb2ff !important;
    cursor: not-allowed;
    pointer-events: none;
    transition: unset !important;
}

.scratch-checkout .btn__loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid var(--white-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spinLoading 0.6s linear infinite;
}

@keyframes spinLoading {
    100% {
        transform: rotate(360deg);
    }
}

/*  */
.after-scratch {
    padding: 40px 0 150px;
    position: relative;
    background-color: var(--secondary-color);
    min-height: calc(100vh - 90px);
}

@media (min-width: 991px) {
    .after-scratch {
        padding-top: 50px;
        min-height: calc(100vh - 110px);
    }
}

@media (min-width: 1280px) {
    .after-scratch {
        min-height: calc(100vh - 120px);
    }
}

@media (min-width: 1370px) {
    .after-scratch {
        min-height: calc(100vh - 135px);
    }
}

.after-scratch .after-scratch__inner {
    position: relative;
    text-align: center;
}

.after-scratch .space-divider {
    display: block;
    text-align: center;
    margin: 18px 0;
}

@media (min-width: 1550px) {
    .after-scratch .space-divider {
        margin: 25px 0;
    }
}

.after-scratch .section-title {
    max-width: 380px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .after-scratch .section-title {
        max-width: 480px;
    }
}

.after-scratch .section-title .title {
    font-weight: 700;
    color: var(--text-yellow);
}

.after-scratch .section-title .description {
    text-align: center;
    color: var(--white-color);
    font-weight: 500;
    margin-top: 18px;
}

.after-scratch .btn-grp {
    max-width: 300px;
    margin: auto;
}

@media (min-width: 1199px) {
    .after-scratch .btn-grp {
        max-width: 350px;
    }
}

.after-scratch .btn {
    font-size: 18px;
    height: 44px;
}

@media (min-width: 768px) {
    .after-scratch .btn {
        height: 46px;
    }
}

@media (min-width: 991px) {
    .after-scratch .btn {
        height: 48px;
    }
}

@media (min-width: 1199px) {
    .after-scratch .btn {
        height: 50px;
        font-size: 20px;
    }
}

@media (min-width: 1280px) {
    .after-scratch .btn {
        height: 54px;
        font-size: 22px;
    }
}

@media (min-width: 1370px) {
    .after-scratch .btn {
        height: 58px;
    }
}

.after-scratch .after-scratch__top {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

.after-scratch .after-scratch__bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 18px 20px;
    background-color: var(--primary-color);
}

@media (max-width: 400px) {
    .after-scratch .after-scratch__bottom {
        padding: 18px 15px;
    }
}

.after-scratch .after-scratch__bottom-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 20px;
    max-width: 1450px;
    margin: auto;
}

@media (min-width: 450px) {
    .after-scratch .after-scratch__bottom-text {
        align-items: center;
        justify-content: flex-start;
    }
}

@media (min-width: 1050px) {
    .after-scratch .after-scratch__bottom-text {
        justify-content: center;
        column-gap: 30px;
    }
}

.after-scratch .after-scratch__bottom img {
    width: 60px;
    min-width: 60px;
    height: auto;
}

.after-scratch .after-scratch__bottom p {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    color: var(--white-color);
}

@media (min-width: 768px) {
    .after-scratch .after-scratch__bottom p {
        font-size: 14px;
    }
}

@media (min-width: 991px) {
    .after-scratch .after-scratch__bottom p {
        font-size: 16px;
        line-height: 1.4;
        max-width: 700px;
    }
}

@media (min-width: 1199px) {
    .after-scratch .after-scratch__bottom p {
        font-size: 17px;
    }
}

@media (min-width: 1370px) {
    .after-scratch .after-scratch__bottom p {
        font-size: 18px;
        line-height: 1.5;
    }
}

.after-scratch .after-scratch__bottom p strong {
    font-weight: 700;
}

.after-scratch .win-title {
    position: relative;
    display: inline-block;
    color: var(--text-yellow);
    padding-bottom: 30px;
    margin-bottom: 22px;
}

.after-scratch .win-title::before {
    content: '';
    position: absolute;
    width: 285px;
    height: 25px;
    bottom: 7px;
    left: 50%;
    background-image: url('../images/icons/title-stroke.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}

@media (max-width: 360px) {
    .after-scratch .win-title::before {
        width: 260px;
    }
}

.scratch-now #confettiCanvasFirst {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.after-scratch #confettiCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.after-scratch .after-scratch__content {
    max-width: 338px;
    margin: auto;
}

@media (min-width: 991px) {
    .after-scratch .after-scratch__content {
        max-width: 350px;
    }
}

@media (min-width: 1199px) {
    .after-scratch .after-scratch__content {
        max-width: 390px;
    }
}

.after-scratch .after-scratch__content .subtext {
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    line-height: normal;
    color: var(--white-color);
    margin-bottom: 25px;
}

.after-scratch .after-scratch__content .subtext.fs_16 {
    font-size: 16px;
}

.after-scratch .after-scratch__content .subtext span {
    display: block;
    color: var(--text-yellow);
}

.back-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .25s ease-in-out;
}

@media (min-width: 768px) {
    .back-btn {
        width: 50px;
        height: 50px;
        transform: unset;
    }
}

.unlock-ticket .back-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
}

@media (max-width: 768px) {
    .unlock-ticket .back-btn {
        left: 0;
    }
}

@media (max-width: 380px) {
    .unlock-ticket .back-btn {
        left: -10px;
    }
}

.back-btn:hover {
    background-color: #b520bb;
}

.back-btn svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .back-btn svg {
        width: 30px;
        height: 30px;
    }
}

/*  */
/*  */
/*  */
/*  */
/* Old CSS */
/*  */
/*  */
/*  */

/* ===== Message Modal ===== */
.message-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

.message-box.hidden {
    display: none;
}

.message-box-content {
    background: var(--white-color);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 360px;
}

.message-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.message-button {
    background: #dc2626;
    color: var(--white-color);
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 12px;
}

.message-button:hover {
    background: #b91c1c;
}

/* .back-arrow {
    position: absolute;
    top: 30px;
    left: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.back-arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.back-arrow:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    box-shadow: 0 6px 24px rgba(255, 165, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateX(-4px) translateY(-2px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.back-arrow:hover::before {
    opacity: 1;
}

.back-arrow:hover svg {
    transform: translateX(-3px);
}

.back-arrow:active {
    transform: translateX(-2px) translateY(0) scale(1.02);
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.4),
        0 1px 4px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.back-arrow:active svg {
    transform: translateX(-1px);
}

@media (max-width: 768px) {
    .back-arrow {
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .back-arrow svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .back-arrow {
        top: 15px;
        left: 15px;
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .back-arrow svg {
        width: 16px;
        height: 16px;
    }
} */