/* Layouts */
:root {
    --primary: #ccace4;
    --primary-dark: #d0a5f3;
    --secondary: #fff4d3;
    --white: #ffffff;
    --black: #231f20;
    --black-soft: #495057;
    --black-50: #918f8f;
    --grey: #e6e8e7;
    --grey-light: #ededed;
    --shadow: #6c757d80;
    --content-gap: 64px;
}

body {
    font-family: "Open Sans";
    background-color: var(--white);
    -webkit-font-smoothing: none;
}
html {
    scroll-behavior: smooth;
}

.navbar {
    background-color: var(--white);
}

.navbar-collapse {
    background-color: var(--white);
}

.mobile-toggler {
    outline: none !important;
    box-shadow: none !important;
    border: none;
}

.navbar-main-color {
    background-color: var(--white);
}

.navbar-nav * {
    font-size: 1vw;
}

.bg-white-purple {
    background-color: #ffefff;
}

.text-purple {
    color: var(--primary);
}

.text-black-soft {
    color: var(--black-soft);
}
/* End Layouts */

/* Components */
.btn-primary {
    background-color: var(--primary);
    border: none;
    border-radius: 36px;
    padding: 0.25rem 0.75rem;
    color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:active:focus {
    box-shadow: none;
    border: none;
    background-color: var(--primary-dark);
}

.btn-primary-inverse {
    background-color: var(--white);
    border: none;
    border-radius: 36px;
    padding: 0.25rem 0.75rem;
    color: var(--primary) !important;
}

.btn-primary-inverse:hover,
.btn-primary-inverse:active,
.btn-primary-inverse:focus,
.btn-primary-inverse:active:focus {
    box-shadow: none;
    border: none;
    background-color: var(--white);
}

.btn-action-modal {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 18px;
    text-decoration-line: none;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 24px;
    border-radius: 50px;
}

.btn-action-modal:hover {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 18px;
    text-decoration-line: none;
    color: var(--white);
}

.btn-action-reverse {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 18px;
    text-decoration-line: none;
    background-color: var(--white);
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 50px;
}

.btn-action-reverse:hover {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 18px;
    text-decoration-line: none;
    color: var(--primary);
}

.btn-primary-modal {
    border-radius: 4px;
    padding: 0.5rem 0.5rem;
}

.content-padding {
    padding-top: 64px;
    padding-bottom: 64px;
}

.content-padding-2 {
    padding-top: 100px;
    padding-bottom: 100px;
}

p {
    font-family: "Montserrat";
    color: var(--white);
    font-size: 17px;
    line-height: 170%;
}

h1 {
    font-family: "DM Serif Display";
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    color: var(--white);
    line-height: 150%;
}

h2 {
    font-family: "DM Serif Display";
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    color: var(--primary-dark);
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

#vendor .btn-primary {
    font-family: "Open Sans";
    font-weight: 500;
    background-color: var(--primary-dark);
    border: none;
    border-radius: 36px;
    color: var(--white) !important;
}

.content-wrapper {
    margin-top: 60px;
}

.left-arrow {
    position: absolute;
    top: calc(50% - 50px);
    height: 50px;
    width: 50px;
    z-index: 9;
    left: -74px;
    border: none;
    border-radius: 50%;
    background-color: white;
}

.right-arrow {
    position: absolute;
    top: calc(50% - 50px);
    height: 50px;
    width: 50px;
    z-index: 9;
    right: -74px;
    border: none;
    border-radius: 50%;
    background-color: white;
}

.left-arrow svg,
.right-arrow svg {
    color: var(--primary);
}

.margin-x {
    margin-right: calc(1.5rem * .5);
    margin-left: calc(1.5rem * .5);
}

.content-vendor {
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.vendor-mobile .slick-slide {
    transform: scale(0.9);
}

.vendor-mobile .slick-active {
    transition: 0.2s ease-in-out;
    transform: scale(1);
}

.content-vendor-mobile {
    width: 100vw;
    margin-left: -16px;
}

.sponsor {
    width: -webkit-fill-available;
}
/* End Components */

/* Popup */
.copy-success {
    position: fixed;
    z-index: 99999;
    background-color: rgb(34 197 94);
    color: white;
    padding: 8px 10px;
    top: 2.5rem;
    left: 1rem;
    border-radius: 8px;
    min-width: 167px;
    text-align: center;
    height: fit-content;
}

.copy-success.fade-in {
    animation-name: fadeInAnim;
    animation-duration: 500ms;
}

.copy-success.fade-out {
    animation-name: fadeOutAnim;
    animation-duration: 500ms;
}

@keyframes fadeInAnim {
    0% {
        background-color: transparent;
    }
    100% {
        background-color: rgb(34 197 94);
    }
}

@keyframes fadeOutAnim {
    0% {
        background-color: rgb(34 197 94);
    }
    100% {
        background-color: transparent;
    }
}
/* End Popup */

/* Navigation */
.nav-item .nav-link {
    color: var(--black-50) !important;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active:hover {
    color: var(--black) !important;
}

.nav-item .nav-link.active {
    color: var(--black) !important;
    font-weight: bold;
}

.share-wrapper {
    background-color: var(--white);
    box-shadow: 0px 2px 4px 0px var(--shadow);
    border: 1px solid var(--grey-light);
    border-radius: 6px;
    margin-top: 8.25rem;
    margin-left: 0.5rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}

.share-wrapper::before {
    content: "";
    height: 0px;
    width: 0px;
    border-bottom: solid 12px #ededed;
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    position: absolute;
    top: -12px;
    left: calc(50% - 8px);
}

.share-wrapper::after {
    content: "";
    height: 0px;
    width: 0px;
    border-bottom: solid 10px #ffffff;
    border-left: solid 6px transparent;
    border-right: solid 6px transparent;
    position: absolute;
    top: -10px;
    left: calc(50% - 6px);
}

.share-wrapper .share-item {
    width: 28px;
    height: 28px;
    background-color: var(--primary);
    margin-left: 3px;
    margin-right: 3px;
}

.share-wrapper.show {
    visibility: visible;
    opacity: 100;
}
/* End Navigation */

/* Section Header */
.header-img {
    height: 100%;
    min-height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* End Section Header */

/* Section Description */
.bg-grey {
    background-color: var(--grey);
}
/* End Section Description */

/* Section Vendor List */
.bg-vendor-list {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-product {
    border-radius: 30px !important;
    overflow: hidden;
    border: none;
}

.card-product-image {
    height: 190px;
    object-fit: cover;
}

.card-product .card-body {
    padding: 16px !important;
    text-align: center;
    background: rgba(208, 165, 243, 0.9);
}

.card-product .card-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: normal;
    color: var(--white);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.card-product .text-price {
    color: var(--black);
}

.card-product .text-price-disc {
    font-size: 15px !important;
}

.list-product {
    display: grid;
    grid-template-columns: repeat(5, 20%);
}

.list-product .card {
    border-radius: 20px;
    overflow: hidden;
    background-color: #d0a5f3d6 !important;
}

.list-product .card-img-top {
    height: 13vw;
}
/* End Section Vendor List */

/* Section Map */
.img-render {
    image-rendering: auto;
}

.maps-pos {
    border: 3px solid var(--white);
    border-radius: 16px;
}

.card-time {
    height: 100%;
    width: 100%;
    max-width: 369px;
    max-height: 136px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #78961a;
}

.card-time p {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #ffffff;
    text-shadow: 0px 2px 4px rgb(0 0 0 / 25%);
}

.card-time p.time {
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
}

.bg-purple {
    background-color: var(--primary);
}

.bg-purple-dark {
    background-color: #d0a5f3;
}

.new-card-time {
    background-color: var(--white);
    border-radius: 19px;
    padding: 10px 24px;
}

.new-card-time * {
    color: var(--primary);
    font-family: "Montserrat";
}

.new-card-time .semibold {
    font-weight: 600;
}

.new-card-time .time * {
    font-size: 18px;
    line-height: 26px;
}

.new-card-time .divider {
    margin: 4px 0px;
    color: var(--primary);
    opacity: 1;
    height: 2px;
}

.new-card-time .activity {
    font-style: italic;
}

.dm-serif {
    font-family: "DM Serif Display";
}
/* End Section Map */

/* Section Video */
.bg-video {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    min-height: 720px;
}

.video-pos {
    border-radius: 16px;
}
/* End Section Video */

/* Section QNA */
.bg-qna {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* End Section QNA */

/* Section Prizes */
.grid-prizes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}

.grid-item-prizes {
    min-height: 370px;
    max-height: 370px;
}

.card-prize {
    border: 2px solid var(--primary);
    height: 100%;
    padding: 1rem;
    border-radius: 24px;
    display: grid;
    grid-template-rows: 25% 15% 60%;
    align-items: center;
    justify-items: center;
}

.card-prize-header {
    width: 54px;
    height: 54px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-number {
    line-height: normal;
    margin: 0px;
    font-family: "Open Sans";
    font-size: 25px;
    color: var(--white);
    font-weight: bold;
}

.card-title {
    color: var(--white);
    display: inline-block;
    width: fit-content;
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 15px;
}

.card-subtitle {
    font-size: 15px;
}
/* End Section Prizes */

/* Section Ticket */
.bg-ticket {
    height: 100%;
    background-image: url('/ver_5/user/landingpage/img/wm_festival/bg_tiket.png'); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.semibold {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
}

.btn-semibold {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 60px;
}

.ticket-wrapper-m {
    display: grid;
    height: 100%;
    grid-template-rows: 1fr 1fr;
    min-height: 650px;
    align-items: center;
}

.ticket-wrapper * {
    color: #495057;
}

.btn-ticket {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 60px;
    color: #FFFFFF;
}
/* End Section Ticket */

/* Section Supported */
.support-wrapper {
    background-color: var(--primary);
    padding-bottom: 20px;
}

.support-wrapper * {
    font-family: 'DM Serif Display';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 44px;
    color: var(--white);
}

.support-vendor {
    object-fit: contain;
    border: 1px solid var(--white);
    border-radius: .5rem !important;
    object-fit: cover;
}
/* End Section Supported */

/* Section About Theme */
.theme-padding {
    padding-top: 84px;
    padding-bottom: 84px;
}

.theme-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    justify-content: space-between;
}

.theme-top .right {
    padding: 2rem 3rem;
}

.theme-top div {
    border-radius: 24px;
    overflow: hidden;
}

.theme-top h1 {
    font-family: "DM Serif Display";
    font-style: italic;
    font-weight: 400;
    font-size: 30px;
    line-height: 44px;
    text-align: center;
    color: #ffffff;
}

.theme-top p {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 170%;
    text-align: justify;
    color: #ffffff;
}

.theme-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.theme-bottom div {
    width: 100%;
}

.theme-bottom img {
    border-radius: 24px;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}
/* End Section About Theme */

/* FAQ */
.faq-wrapper h1 {
    font-family: "DM Serif Display";
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 44px;
    color: #495057;
    text-align: center;
}

.faq-wrapper .accordion-item {
    background-color: transparent;
    border: none;
}

.faq-wrapper .accordion-button {
    background: var(--primary);
    border-radius: 1rem;
    color: var(--white);
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 17px;
    line-height: 150%;
    border-radius: 20px !important;
}

.faq-wrapper .accordion-collapse {
    background-color: white;
    margin-top: 1rem;
    border-radius: 1rem;
}

.faq-wrapper .accordion-body {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 35px;
    color: #495057;
}

.faq-wrapper .accordion-button::after {
    background-image: url('/ver_5/user/landingpage/icon/chevron-down.svg');
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
    background-image: url('/ver_5/user/landingpage/icon/dash-lg.svg');
}

.faq-wrapper .accordion-button:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
/* End FAQ */

.footer-info {
    padding: 1rem 3rem;
}

.footer-info .info {
    font-family: 'DM Serif Display';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #495057;
}

.footer-info .btn {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    color: #FFFFFF;
    line-height: normal;
}

/* Override */
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/></svg>") !important;
}
/* End Override */

.bg-overlay {
    background-image: url('/ver_5/user/landingpage/img/wm_festival/bg_overlay.png');
    background-size: cover;
}

.btn-maps {
    padding-left: 32px;
    padding-right: 32px;
}

.official-support {
    height: 100px;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-family: "DM Serif Display";
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        color: var(--white);
        line-height: 150%;
    }

    h2 {
        font-family: "DM Serif Display";
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        color: var(--primary-dark);
        text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    }

    p {
        font-family: "Montserrat";
        color: var(--white);
        font-size: 16px;
        line-height: 170%;
    }

    .btn-action-modal {
        font-weight: 600;
        font-size: 15px;
        padding: 10px 24px;
    }

    .btn-action-reverse {
        font-weight: 600;
        font-size: 15px;
        padding: 10px 24px;
    }

    .navbar {
        background-color: transparent !important;
    }

    .navbar-collapse {
        width: 75vw !important;
        height: 100vh !important;
        margin-top: -1px !important;
    }

    .nav-mobile-responsive {
        width: 100% !important;
        display: grid !important;
        justify-content: center !important;
        align-items: center !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        justify-items: start !important;
    }

    .nav-mobile-responsive.bg-transparent {
        background-color: var(--white) !important;
    }

    .navbar-collapse.collapse {
        margin-left: -75vw !important;
        left: 0 !important;
        transition: margin-left 0.15s linear !important;
        background-color: var(--primary) !important;
    }

    .navbar-collapse.collapse.show {
        margin-left: 0 !important;
    }

    .navbar-collapse.collapsing {
        margin-left: -75vw !important;
        left: -0% !important;
        transition: all 0.15s linear !important;
    }

    .share-wrapper.show {
        left: 0px !important;
        margin-left: 1rem !important;
        margin-top: 0 !important;
    }

    .share-wrapper::before,
    .share-wrapper::after {
        left: auto !important;
    }

    .mobile-toggler {
        outline: none !important;
        box-shadow: none !important;
    }

    .header-img {
        min-height: 100vh !important;
    }

    .bg-grey.md {
        background-color: var(--white) !important;
    }

    .bg-white.md {
        background-color: var(--grey) !important;
    }

    .img-render {
        image-rendering: auto !important;
    }

    .maps-pos {
        height: 300px !important;
    }

    .bg-video {
        min-height: auto !important;
    }

    .video-pos {
        height: 176px !important;
    }

    .scroll-step::-webkit-scrollbar {
        display: none;
    }

    .scroll-step {
        overflow: hidden !important;
        overflow-x: scroll !important;
        -webkit-scroll: none !important;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }

    .scroll-step img {
        height: 380px !important;
        width: auto !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .support-vendor {
        object-fit: cover !important;
        height: 100px !important;
    }

    .bg-ticket {
        min-height: 650px;
    }

    .copy-success {
        bottom: 0.75rem !important;
        top: 0rem !important;
        left: 6rem !important;
        margin-top: auto;
    }

    .grid-prizes {
        grid-template-columns: repeat(4, 85%) !important;
        padding: 0rem 1.5rem;
    }

    .card-time {
        max-height: 116px !important;
        padding: 24px !important;
    }

    .card-time p {
        font-size: 14px !important;
        line-height: 14px !important;
    }

    .card-time p.time {
        font-size: 28px !important;
        line-height: 28px !important;
    }

    .content-wrapper {
        margin-top: 54px !important;
    }

    .text-justify {
        text-align: justify;
    }

    .bg-overlay {
        background-image: url('/ver_5/user/landingpage/img/wm_festival/bg_overlay_mobile.png');
        background-size: cover;
    }

    .bg-ticket {
        background-image: url('/ver_5/user/landingpage/img/wm_festival/bg_tiket_mobile.png'); 
    }

    .list-product {
        display: grid;
        grid-template-columns: 100%;
    }

    .margin-x {
        margin: 0px;
        padding: 0px 1rem;
    }

    .semibold {
        font-size: 17px;
    }

    .btn-maps {
        padding: 8px 16px;
    }

    .ticket-wrapper-m::after {
        content: "";
        left: 0rem;
        bottom: 0rem;
        position: absolute;
        z-index: 2;
        pointer-events: none;
        background-image: linear-gradient( to top, rgb(255, 255, 255), rgb(255, 255, 255) , rgba(255, 255, 255, 0) );
        width: 100%;
        height: 50%;
    }

    .ticket-wrapper-m .head {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 700;
        font-size: 17px;
        line-height: 19px;
        color: #495057;
    }

    .ticket-wrapper-m .sub-head {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 400;
        font-size: 17px;
        line-height: 19px;
        color: #495057;
    }

    .support-wrapper {
        padding-bottom: 0px;
    }

    .navbar-nav * {
        font-size: 5vw;
    }
}