@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
    --main-color: #3DCEFF;
    --hover-color: #34bce9;
    --text-color: #0D0D0D;
    --p-color: #666666;
}

.disabled {
    cursor: initial;
}

.dx-texteditor-input {
    background-color: #FAFAFA;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    font-weight: 500;
    font-size: 16px;
    font-style: normal;
    font-family: "Inter", sans-serif;
    /* font-family: "Passion One", sans-serif; */
    background-color: #FAFAFA;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

label {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
}

img {
    width: 100%;
}

p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--p-color);
}

nav {
    align-items: center;
    display: flex;
}

nav ul {
    column-gap: 40px;
    align-items: center;
    flex-direction: row;
    display: flex;
}

nav ul li:last-child {
    min-width: 165px;
}

nav ul li a.active {
    font-weight: 600;
    color: var(--main-color);
}

header {
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    z-index: 9;
}

header .cc-container a {
    z-index: 10;
    display: flex;
}

header.fixed {
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .74);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    backdrop-filter: blur(5px);
    /* Adjust the blur intensity as needed */
    -webkit-backdrop-filter: blur(5px);
    /* For Safari compatibility */
    position: fixed;
}

header>div {
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    display: flex;
}

.cc-container {
    width: 100%;
    max-width: 1600px;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.cc-content {
    padding: 44px 17.5%;
}

.cc-get-tickets-btn {
    padding: 10px 15px;
    border-radius: 5px;
    background-color: var(--main-color);
    transition: all .3s ease-in-out;
    color: white;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    display: flex;
}

.cc-get-tickets-btn:hover {
    box-shadow: var(--main-color) 0px 0px 25px;
    transition: all .3s ease-in-out;
}

.cc-get-tickets-btn img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.cc-get-tickets-box {
    margin: 0 auto;
    padding: 23px 73px;
    width: 100%;
    max-width: 480px;
    box-shadow: rgb(204, 219, 232) 0px 0px 10px 0px inset;
}

.cc-get-tickets-box span {
    font-size: 14px;
}

.cc-title {
    margin-bottom: 50px;
    font-size: 32px;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    text-align: center;
}

.cc-event-information-box {
    padding: 40px 0;
}

.cc-ei-items {
    width: 100%;
    column-gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.cc-ei-item {
    padding: 30px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
}

.cc-ei-item img {
    margin-bottom: 20px;
    width: 100%;
    max-width: 45px;
}

.cc-ei-item h6 {
    margin-bottom: 10px;
    font-weight: 600;
}

.cc-ei-item p {
    margin-bottom: 0;
}

.cc-ei-desc {
    margin: 50px 0;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.cc-ei-desc2 {
    align-items: flex-start;
    justify-content: flex-start;
}

.cc-ei-desc h6 {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 700;
}

.cc-ei-desc p {
    text-align: center;
}

.cc-ei-desc2 p {
    text-align: left;
}

.cc-ei-desc p:last-child {
    margin-bottom: 0;
}

.cc-secure-your-tickets-box {
    margin: 0 auto;
    border-radius: 5px;
    width: 100%;
    max-width: 260px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 5px;
}

.cc-secure-your-tickets-box span {
    font-size: 14px;
}

footer {
    border-top: 1px solid #E0E0E0;
    background-color: white;
}

.cc-footer {
    margin: 0 auto;
    padding: 44px 0;
    width: 100%;
    max-width: 1240px;
}

.cc-footer>p {
    margin-bottom: 0;
    padding: 40px 0 0;
    text-align: center;
}

.cc-footer-inner {
    padding-bottom: 40px;
    border-bottom: 1px solid #E0E0E0;
    justify-content: space-between;
    grid-template-columns: 1fr 2fr;
    display: grid;
}

.cc-footer-left {
    flex-direction: column;
    display: flex;
}

.cc-footer-left img {
    margin-bottom: 24px;
    width: 100%;
    max-width: 106px;
}

.cc-social-items {
    column-gap: 15px;
    flex-direction: row;
    display: flex;
}

.cc-social-item {
    width: 100%;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.cc-social-item:hover {
    background-color: var(--main-color);
}

.cc-social-item:hover i {
    color: white;
}

.cc-social-item i {
    font-size: 20px;
}

.cc-social-item img {
    margin-bottom: 0;
    width: 100%;
    max-width: 65%;
}

.cc-wechat-inner {
    bottom: 50px;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: absolute;
    display: none;
}

#WechatDiv:hover .cc-wechat-inner{
    display: flex;
}

#WechatDiv img {
    min-width: 320px;
    width: 100%;
}

.cc-fs-left,
.cc-fs-right {
    width: 100%;
}

.cc-fs-left h6,
.cc-fs-right h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

.cc-fs-left ul,
.cc-fs-right ul {
    row-gap: 10px;
    flex-direction: column;
    display: flex;
}

.cc-fs-left a,
.cc-fs-right a {
    font-weight: 400;
    color: var(--p-color);
}

.cc-fs-left a:hover,
.cc-fs-right a:hover {
    color: var(--main-color);
}

.cc-footer-sitemap {
    flex-direction: row;
    display: flex;
}

.cc-inner-title {
    column-gap: 10px;
    display: flex;
}

.cc-inner-title h2 {
    font-size: 46px;
    font-weight: bold;
    color: var(--main-color)
}

.cc-inner-title h2.black {
    color: var(--text-color);
}

.cc-inner-content {
    margin: 0 auto;
    padding: 48px 0;
    width: 100%;
    max-width: 920px;
}

.cc-terms-item {
    margin-top: 35px;
}

.cc-terms-item h6 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.cc-terms-item ul {
    margin-top: 10px;
    margin-left: 18px;
    color: var(--p-color);
}

.cc-terms-item ul li {
    font-weight: 400;
    margin-bottom: 10px;
    list-style-type: disc;
}

.cc-terms-item ul li:last-child {
    margin-bottom: 0;
}

#FaqDiv .cc-inner-title {
    justify-content: center;
}

.cc-inner-desc {
    width: 100%;
}

.cc-inner-desc > p {
    margin-top: 20px;
    text-align: center;
}

.cc-faq-items {
    margin-top: 45px;
    row-gap: 30px;
    width: 100%;
    flex-direction: column;
    display: flex;
}

.cc-faq-item {
    width: 100%;
    border-radius: 5px;
    padding: 20px 25px;
    border: 1px solid #E0E0E0;
    background-color: white;
    flex-direction: column;
    display: flex;
    cursor: pointer;
}

    .cc-faq-item.active .cc-faq-question {
        margin-bottom: 15px;
    }

    .cc-faq-item.active p {
        display: flex;
    }

.cc-faq-item.active i {
    transition: all .3s ease-in-out;
    transform: rotate(180deg);
}

.cc-faq-item i {
    transition: all .3s ease-in-out;
}

.cc-faq-item p {
    margin-bottom: 0;
    display: none;
}

.cc-faq-question {
    justify-content: space-between;
    flex-direction: row;
    display: flex;
}

.cc-faq-question h6 {
    font-weight: 600;
}

.cc-faq-shq {
    margin-top: 60px;
    padding: 40px 25px;
    border: 1px solid #E0E0E0;
    background-color: white;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.cc-faq-shq h4 {
    font-weight: 700;
}

.cc-faq-shq p {
    margin: 20px 0 25px;
}

.cc-faq-shq a {
    font-weight: 600;
    color: var(--main-color);
}

.cc-faq-shq i {
    font-size: 14px;
}

#PolicyDiv>p {
    margin-top: 24px;
}

#PolicyDiv .cc-terms-item {
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    background-color: white;
}

#PolicyDiv .cc-terms-item p {
    margin-bottom: 0;
}

#ContactDiv {
    padding: 90px 0 30px;
    width: 100%;
    /* max-width: 1080px; */
}

#ContactDiv .cc-inner-title {
    justify-content: center;
}

.cc-contactus {
    width: 100%;
    margin-top: 50px;
    column-gap: 60px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.cc-contactus-left {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.cc-contactus-form {
    width: 100%;
    max-width: 520px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border: 1px solid #E0E0E0;
    background-color: white;
}

.cc-contactus-form h6 {
    font-size: 20px;
    font-weight: 700;
}

.cc-cf-item {
    margin-top: 20px;
}

.cc-cf-item label {
    font-size: 14px;
    margin-bottom: 10px;
}

#ContactUsFormSubmitDiv {
    margin-top: 30px;
}

.cc-contactus-details {
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    background-color: #EBEBEB;
}

.cc-contactus-details img {
    width: 100%;
    max-width: 45px;
}

.cc-contactus-details h6 {
    margin: 15px 0;
    font-weight: 700;
    font-size: 18px;
}

.cc-contactus-details p {
    margin-bottom: 0;
}

#ShopDiv {
    max-width: 1240px;
}

#ShopDiv .cc-inner-desc {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}

#ShopDiv .cc-get-tickets-btn {
    margin-top: 20px;
    width: 100%;
    max-width: 180px;
}

#ShopDiv .cc-inner-title {
    justify-content: center;
}

#ShopGridDiv {
    margin-top: 30px;
    column-gap: 30px;
    row-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    display: grid;
}

.cc-shop-item {
    border-radius: 10px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.cc-shop-thumbnail {
    width: 100%;
    height: 260px;
    border-radius: 10px 10px 0 0;
    background-color: #EBEBEB;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.cc-shop-text1 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--p-color);
}

.cc-shop-text2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.cc-shop-price h6 {
    padding: 20px;
    border-radius: 0 0 10px 10px;
    font-weight: 700;
    background-color: white;
    color: var(--main-color);
    text-align: center;
}

.cc-shopping-information {
    margin: 60px 0;
    padding: 40px 25px;
    width: 100%;
    border: 1px solid #E0E0E0;
    background-color: white;
    flex-direction: column;
    display: flex;
}

.cc-shopping-information h6 {
    font-size: 22px;
    font-weight: 700;
}

.cc-si-item {
    margin-top: 20px;
    flex-direction: row;
    display: flex;
}

.cc-si-item p {
    margin-bottom: 0;
}

.cc-shop-btn {
    width: 100%;
    column-gap: 20px;
    justify-content: center;
    flex-direction: row;
    display: flex;
}

#ShopDiv .cc-shop-btn .cc-get-tickets-btn {
    margin-top: 0;
    max-width: 140px;
}

#ShopDiv .cc-shop-btn .cc-get-tickets-btn:last-child {
    max-width: 200px;
    border: 1px solid var(--main-color);
    color: var(--text-color);
    background-color: transparent;
}

#PartnersDiv {
    max-width: 1240px;
}

#PartnersDiv > p {
    margin-top: 20px;
}

.cc-partners {
    margin-top: 40px;
}

.cc-partners-item {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
}

.cc-partners-item:nth-child(2) .cc-partners-title {
    border-bottom: 1px solid #00E6FF;
}

.cc-partners-item:nth-child(3) .cc-partners-title {
    border-bottom: 1px solid #C94DFF;
}

.cc-partners-title {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 1px solid #FF3D61;
}

.cc-partners-value {
    margin: 50px 0;
    width: 100%;
    align-items: flex-start;
    display: flex;
}

.cc-partners-v1 {
    width: 100%;
    max-width: 320px;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    background-color: white;
}

.cc-partners-v1 h6 {
    margin-top: 20px;
    font-weight: 600;
}

.cc-partners-logo {
    width: 100%;
    max-width: 320px;
    height: 160px;
    border-radius: 10px;
    background-color: #EBEBEB;
}

.cc-partners-value2 {
    margin: 55px 0;
    width: 100%;
    column-gap: 20px;
    row-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
}

.cc-partners-v2 {
    width: 100%;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    background-color: white;
}

.cc-partners-v2 h6 {
    margin-top: 20px;
    font-weight: 600;
}

.cc-partners-v2 .cc-partners-logo {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    background-color: #EBEBEB;
}

.cc-partners-footer {
    margin: 0 0 60px;
    padding: 40px 25px;
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(to right, rgba(61, 201, 255, .1), rgba(61, 201, 255, 1));
    align-items: center;
    flex-direction: column;
    display: flex;
}

.cc-partners-footer h6 {
    font-size: 22px;
    font-weight: 700;
}

.cc-partners-footer p {
    margin-top: 20px;
}

.cc-partners-footer .cc-get-tickets-btn {
    width: 100%;
    max-width: 220px;
}

#EventDiv .cc-inner-title {
    justify-content: center;
}

#EventDiv .cc-inner-desc {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}

#EventDiv .cc-get-tickets-btn {
    margin-top: 20px;
    width: 100%;
    max-width: 180px;
}


#BannerSwiperDiv .swiper-slide {
    justify-content: center;
    align-items: center;
    display: flex;
}

#BannerSwiperDiv img {
    padding-top: 100px;
    max-width: 1200px;
}

#CCHK_DESC_MOBILE_DIV,
#CPD_DESC_MOBILE_DIV {
    display: none;
}