body {
    overflow: hidden !important;
}

/* :root {
    --scrollbar-bg: #1824359d;
    --scrollbar-thumb: #182435;
    --scrollbar-thumb-hover: #101a27;
} */

/* ::-webkit-scrollbar {
    width: 15px;
    background-color: var(--scrollbar-bg);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover);
}

::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
} */

.vignette-effect::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 11%, rgb(0 0 0 / 30%) 46%, rgb(0 0 0 / 100%) 100%);
    animation: vignettePulse 15s infinite;
}

@keyframes vignettePulse {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        opacity: 1;
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        opacity: 0.8;
    }
}

.light-flicker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top center,
            rgba(255, 255, 200, 0.322) 0%,
            rgba(255, 255, 200, 0.3) 25%,
            rgba(0, 0, 0, 0.9) 70%,
            rgba(0, 0, 0, 1) 100%);
    opacity: 0.7;
    mix-blend-mode: lighten;
    pointer-events: none;
    animation: flickerLight 15s infinite;
    z-index: 1;
}

@keyframes flickerLight {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }

    75% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
    }

}

.vignette-effect-body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 3;
    pointer-events: none;
}

@media(max-width: 768px) {
    .vignette-effect::after {
        display: none;
    }

    .vignette-effect-body::after {
        display: none;
    }

    .light-flicker {
        display: none;
    }
}

.blood-splash {
    position: absolute;
    max-width: 556px;
}

.gb-sc-hl-login {
    position: absolute;
    z-index: 6;
    width: 12%;
    top: 2%;
    left: 0%;
}

/* LABA-LABA */
body {
    background: #131416;
}

.box-canvas {
    position: absolute;
    margin: auto;
    display: block;
    width: 350px;
    height: 600px;
    right: 2%;
    transform: translateY(-26%);
}

.inner {
    margin: 100px;
    position: absolute;
    height: 100px;
    width: 150px;
}

.circle {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 4px 0 0 white;
}

.circle:nth-child(1) {
    bottom: 0;
    transform: rotate(-45deg);
}

.circle:nth-child(2) {
    bottom: -25px;
    left: 50px;
    transform: rotate(-90deg);
}

.circle:nth-child(3) {
    bottom: 0;
    left: 100px;
    transform: rotate(-135deg);
}

.circle:nth-child(4) {
    top: -8px;
    transform: rotate(45deg);
}

.circle:nth-child(5) {
    top: -33px;
    left: 50px;
    transform: rotate(90deg);
}

.circle:nth-child(6) {
    top: -8px;
    left: 100px;
    transform: rotate(135deg);
}

.circle::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 4px 0 0 white;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.circle:nth-child(1)::before {
    top: calc(50% - 20px);
}

.circle:nth-child(3)::before {
    top: calc(50% + 20px);
}

.circle:nth-child(4)::before {
    top: calc(50% + 20px);
}

.circle:nth-child(6)::before {
    top: calc(50% - 20px);
}

.line {
    position: absolute;
    width: 340px;
    height: 3px;
    background: white;

}

.line:nth-child(2) {
    transform: rotate(59deg);
    transform-origin: top left;
    left: 90px;
}

.line:nth-child(3) {
    transform: rotate(-59deg);
    transform-origin: top right;
    left: -80px;
}

.line:nth-child(4) {
    top: 145px;
}

.spider {
    --spider-color: #000000;

    position: absolute;
    width: 75px;
    height: 175px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center top;
    top: 148px;
    animation: swing 1s infinite ease-in-out;
    animation-direction: alternate-reverse;
}

@keyframes swing {
    0% {
        transform: translateX(-50%) rotate(25deg);
    }

    100% {
        transform: translateX(-50%) rotate(-25deg);
    }
}

@keyframes string {
    0% {
        height: 100px;
    }

    50% {
        height: 200px;
    }

    100% {
        height: 100px;
    }
}

@keyframes body {
    0% {
        top: 100px;
    }

    50% {
        top: 200px;
    }

    100% {
        top: 100px;
    }
}

.spider::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: white;
    animation-direction: normal;
    animation: string 3s infinite;
    animation-timing-function: ease-in-out;
    transform-origin: 50% 50%;
}

.body {
    position: absolute;
    width: 30px;
    height: 40px;
    border-radius: 50% 50% 40% 40%;
    background: var(--spider-color);
    left: 50%;
    top: 100px;
    transform: translateX(-50%);

    animation-direction: normal;
    animation: body 3s infinite;
    animation-timing-function: ease-in-out;
    transform-origin: 50% 50%;
}

.body::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: black;
    border-radius: 50%;
    border: 3px solid rgb(255, 0, 0);
    bottom: 6px;
    left: 3px;
}


.body::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: black;
    border-radius: 50%;
    border: 3px solid rgb(255, 0, 0);
    bottom: 6px;
    right: 3px;
}

.leg {
    position: absolute;

    top: 10px;
    width: 30px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 -3px 0 var(--spider-color);
}

.leg.left {
    left: -25px;
}

.leg.right {
    right: -25px;
}

.leg::before {
    content: '';
    position: absolute;
    top: 10px;
    width: 30px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 -3px 0 var(--spider-color);
}


.leg::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 -3px 0 var(--spider-color);
}

.leg.left::after {
    left: 8px;
}

.leg.right::after {
    right: 8px;
}

/* END LABA-LABA */

.bat-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.shadow {
    -webkit-filter: blur(6px);
    filter: blur(6px);
    opacity: 0.5;
}

.bat {
    animation-direction: normal;
    animation: move 15s infinite;
    animation-timing-function: ease-in-out;
    transform-origin: 50% 50%;
}

.wing {
    transform-origin: 50% 50%;
    animation-direction: normal;
    animation: wing 1s infinite;
    animation-timing-function: ease-in-out;
}

.wing1 {
    transform-origin: 50% 50%;
    animation-direction: normal;
    animation: wing1 1s infinite;
    animation-timing-function: ease-in-out;
}

@keyframes move {
    0% {
        transform: translate(0px, -150px) rotate(10deg);
    }

    25% {
        transform: translate(-100px, 80px) rotate(-10deg);
    }

    50% {
        transform: translate(100px, -80px) rotate(10deg);
    }

    75% {
        transform: translate(-140px, -100px) rotate(-10deg);
    }

    100% {
        transform: translate(0px, -150px) rotate(10deg);
    }
}

@keyframes wing {
    0% {
        transform: translate(0px, 0px) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(0px, 0px) scaleX(0.5) rotate(-25deg);
    }

    100% {
        transform: translate(0px, 0px) scale(1) rotate(0deg);
    }
}

@keyframes wing1 {
    0% {
        transform: translate(0px, 0px) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(0px, 0px) scaleX(0.5) rotate(25deg);
    }

    100% {
        transform: translate(0px, 0px) scale(1) rotate(0deg);
    }
}

/* GLOBAL */
.fancy {
 background-color: transparent;
 border: 2px solid #000;
 border-radius: 0;
 box-sizing: border-box;
 color: #fff;
 cursor: pointer;
 display: inline-block;
 float: right;
 font-weight: 700;
 letter-spacing: 0.05em;
 margin: 0;
 outline: none;
 overflow: visible;
 padding: 1.25em 2em;
 position: relative;
 text-align: center;
 text-decoration: none;
 text-transform: none;
 transition: all 0.3s ease-in-out;
 user-select: none;
 font-size: 13px;
}

.fancy::before {
 content: " ";
 width: 1.5625rem;
 height: 2px;
 background: black;
 top: 50%;
 left: 1.5em;
 position: absolute;
 transform: translateY(-50%);
 transform-origin: center;
 transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
 font-size: 1.125em;
 line-height: 1.33333em;
 padding-left: 2em;
 display: block;
 text-align: left;
 transition: all 0.3s ease-in-out;
 text-transform: uppercase;
 text-decoration: none;
 color: black;
}

.fancy .top-key {
 height: 2px;
 width: 1.5625rem;
 top: -2px;
 left: 0.625rem;
 position: absolute;
 background: #e8e8e8;
 transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
 height: 2px;
 width: 1.5625rem;
 right: 1.875rem;
 bottom: -2px;
 position: absolute;
 background: #e8e8e8;
 transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
 height: 2px;
 width: 0.625rem;
 right: 0.625rem;
 bottom: -2px;
 position: absolute;
 background: #e8e8e8;
 transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
 color: white;
 background: black;
}

.fancy:hover::before {
 width: 0.9375rem;
 background: white;
}

.fancy:hover .text {
 color: white;
 padding-left: 1.5em;
}

.fancy:hover .top-key {
 left: -2px;
 width: 0px;
}

.fancy:hover .bottom-key-1,
 .fancy:hover .bottom-key-2 {
 right: 0;
 width: 0;
}

body {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    text-transform: uppercase;
}

.swiper-container-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.stop-scrolling {
    height: 100vh !important;
}

.swiper-slide {
    overflow: hidden;
}

/* .btn {
    position: absolute;
    right: 1.5vw;
    bottom: 4vw;
    width: 1.9vw;
    height: 3.4vw;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    cursor: url(../../images/preregis/Global/pointer.png), auto !important;
    outline: 2px solid rgb(105, 127, 255) !important;
    box-shadow: 0px 0px 10px rgb(105, 127, 255) !important;
    font-size: 1.1vw;
} */

.btn-scroll {
    position: absolute;
    right: 37%;
    bottom: 64px;
    width: 39px;
    height: 62px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    cursor: url(../../images/preregis/Global/pointer.png), auto !important;
    outline: 2px solid rgb(138 11 4) !important;
    box-shadow: 0px 0px 10px rgb(138 11 4) !important;
    font-size: 1.6rem;
    color: rgb(138 11 4);
    transform: translateY(80%);
    animation: scroll_4013 5s linear infinite;
}

.scroll {
    width: 5px;
    height: 10px;
    border-radius: 10px;
    background-color: rgb(106 9 4);
    box-shadow: 0px 0px 10px rgb(111 9 4);
}

.btn-scroll:after {
    font-family: 'Creepster';
    content: 'scroll';
    position: absolute;
    top: 110%;
    color: rgb(138 11 4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    font-size: 0;
    margin-block-start: unset;
    margin-block-end: unset;
    padding-inline-start: unset;
    gap: 4%;
    width: 100%;
}

.slick-dots>li {
    border-radius: 50%;
    height: 8vw;
    width: 8vw;
    background: #b45e02;
}

.slick-dots>li.slick-active {
    border-radius: 50%;
    height: 8vw;
    width: 8vw;
    background: #ff8400;
}

.slick-dots>li>button {
    border: none;
    background: unset;
}

.slick-list {
    overflow: unset;
}

.highlight {
    transform: scale(1.2);
}

.pagination {
    font-size: 13pt;
    line-height: 1.5;
    align-items: flex-end;
    justify-content: flex-end;
}

.slick-disabled img {
    filter: grayscale(100%) brightness(70%);
    cursor: not-allowed;
    opacity: 0.5;
}

@keyframes scroll_4013 {
    0% {
        transform: translateY(30%) rotate(90deg);
    }

    50% {
        transform: translateY(90%) rotate(90deg);
    }

    100% {
        transform: translateY(30%) rotate(90deg);
    }
}

@media(max-width: 768px) {
    .swiper-container-wrapper {
        max-width: 100%;
    }

    .btn-scroll {
        position: absolute;
        right: 30px;
        bottom: 64px;
        width: 39px;
        height: 62px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border: none;
        cursor: url(../../images/preregis/Global/pointer.png), auto !important;
        outline: 2px solid rgb(105, 127, 255) !important;
        box-shadow: 0px 0px 10px rgb(105, 127, 255) !important;
        font-size: 1rem;
    }
}

.modal-custom {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);

    justify-content: center;
    align-items: center;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
/* END GLOBAL */

/* ANIMATIONS */
@keyframes glitch-it {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-1.5px, 1.5px);
    }

    40% {
        transform: translate(-1.5px, -1.5px);
    }

    60% {
        transform: translate(1.5px, 1.5px);
    }

    80% {
        transform: translate(1.5px, -1.5px);
    }

    to {
        transform: translate(0);
    }
}

@keyframes typing {
    from {
        width: 0
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

/* END ANIMATIONS */

/* SECTION 1 */
.gb-sc-hl {
    position: relative;
    overflow-x: hidden;

    width: 100%;
    height: 100%;
}

.gb-sc-hl-sc-1 {
    position: relative;
    height: 100% !important;
    width: 100% !important;

    background: url('../../images/event/halloween/EN/Section1/bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0.5%;

    /* max-width: 1920px;  */
    margin: 0 auto;

    overflow: hidden;
}

.gb-sc-hl-sc-1-title {
    font-family: 'Creepster';
    text-align: center;
    padding-top: 2.9%;
}

.gb-sc-hl-sc-1-title>p {
    position: relative;
    width: fit-content;
    filter: drop-shadow(2px 4px 0px black);
    z-index: 1;
}

.gb-sc-hl-sc-1-title>p:nth-child(1) {
    color: #ffae00;
    font-size: 4vw;
    /* opacity: 0.8;  */
}

.gb-sc-hl-sc-1-title>p:nth-child(2) {
    color: #ff8400;
    font-size: 3vw;
    /* opacity: 0.8;  */
}

.gb-sc-hl-sc-1-title>p:before,
.gb-sc-hl-sc-1-title>p:after {
    display: block;
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    /* opacity: 0.8; */
}

.gb-sc-hl-sc-1-title>p:before {
    animation: glitch-it 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: #00ffff;
    z-index: -1;
}

.gb-sc-hl-sc-1-title>p:after {
    animation: glitch-it 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: #ff00ff;
    z-index: -2;
}

.gb-sc-hl-sc-1-logo {
    display: block;
    /* max-width: 244px;  */
    width: 15%;
}

.gb-sc-hl-sc-1-scroll-left {
    position: absolute;
    bottom: 10%;
    left: 35%;
    transform: translateY(80%) rotate(90deg);
    background: transparent;
    width: 3.5%;
    height: auto;
    animation: scroll_4013 2s linear infinite;
}

.gb-sc-hl-sc-1-scroll-right {
    position: absolute;
    bottom: 10%;
    right: 35%;
    transform: translateY(80%) rotate(90deg);
    background: transparent;
    width: 3.5%;
    height: auto;
    animation: scroll_4013 2s linear infinite;
}

@media(max-width: 768px) {
    .gb-sc-hl-sc-1 {
        background: url('../../images/event/halloween/EN/Section1/bg-mobile.jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding: 0.5%;
    }

    .gb-sc-hl-sc-1-title>p:nth-child(1) {
        font-size: 8vw;
    }

    .gb-sc-hl-sc-1-title>p:nth-child(2) {
        font-size: 5.7vw;
    }

    .gb-sc-hl-sc-1-logo {
        width: 24%;
    }

    .gb-sc-hl-sc-1-scroll-left {
        bottom: 10%;
        left: 11%;
        width: 9.5%;
    }

    .gb-sc-hl-sc-1-scroll-right {
        bottom: 10%;
        right: 11%;
        width: 9.5%;
    }

    .gb-sc-hl-login {
        width: 40%;
        top: 44%;
        left: 29.2%;
    }

    .box-canvas {
        transform: translateY(-26.9%);
        opacity: 0.3;
    }
}

@media(max-width: 425px) {
    .gb-sc-hl-sc-1-title>p:nth-child(1) {
        font-size: 13vw;
    }

    .gb-sc-hl-sc-1-title>p:nth-child(2) {
        font-size: 7.7vw;
    }

    .gb-sc-hl-sc-1 {
        padding-top: 3%;
        padding-bottom: 8%;
    }

    .gb-sc-hl-sc-1-logo {
        width: 41%;
    }
}

/* END SECTION 1 */

/* SECTION 2 */
.gb-sc-hl-sc-2 {
    position: relative;
    text-transform: uppercase;

    height: 100% !important;
    width: 100% !important;

    background: url('../../images/event/halloween/EN/Section2/bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0.5%;

    /* max-width: 1920px;  */
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    overflow: hidden;
}

.gb-sc-hl-sc-2-docs {
    position: relative;
}

.gb-sc-hl-sc-2-title {
    font-family: 'Creepster';
    text-align: center;
    margin: 0 auto
}

.gb-sc-hl-sc-2-title>p:nth-child(1) {
    color: #ffae00;
    font-size: 2.5vw;
    /* opacity: 0.8;  */
}

.gb-sc-hl-sc-2-title>p:nth-child(2) {
    color: #ff8400;
    font-size: 1.6vw;
    /* opacity: 0.8;  */
}

.gb-sc-hl-sc-2-title>p:nth-child(3) {
    color: #ffffff;
    font-size: 1.3vw;
    /* opacity: 0.8;  */
}

.gb-sc-hl-sc-2-trigger {
    position: relative;
    display: block;
    margin: 0 auto;
    z-index: 999;
    width: 25vw;
    cursor: url(../../images/preregis/Global/pointer-hover.png), auto !important;
    transition: 0.8s all;
}

.gb-sc-hl-sc-2-trigger:hover {
    transform: rotate(14deg);
}

.card {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 100px;
    height: 64%;
    background: transparent;
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    transform: translateX(-50%);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 1;
    z-index: 10;
    width: 102%;

    transition: 0.8s all;
}

.card>img {
    display: block;
    width: 100%;
}

.card.move-right-0 {
    transform: translateX(calc(-50% + 0px));
    z-index: 5;
    top: -66%;
    left: 218%;
}

.card.move-right-1 {
    transform: translateX(calc(-50% + 0px));
    z-index: 4;
    top: -57%;
    left: 354%;
}

.card.move-right-2 {
    transform: translateX(calc(-50%));
    z-index: 3;
    top: -66%;
    left: 490%;
}

.card.move-right-3 {
    transform: translateX(calc(-50%));
    z-index: 2;
    top: 94%;
    left: 283%;
}

.card.move-right-4 {
    transform: translateX(calc(-50%));
    z-index: 1;
    opacity: 0.95;
    top: 91%;
    left: 432%;
}

.gb-sc-hl-sc-2-content {
    position: relative;
    width: fit-content;
    margin-top: 2.6%;
    transition: transform 0.8s ease;
    transform: translateX(0);
}

.gb-sc-hl-sc-2-content.open {
    transform: translateX(-24vw);
}

.gb-sc-hl-sc-2-content.open>.gb-sc-hl-sc-2-trigger:hover {
    transform: unset !important;
}

.gb-sc-hl-sc-2-docs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: 50%;
    height: 32%;
}

.gb-sc-hl-sc-2-tagline {
    font-family: 'Creepster';
    font-size: 1.4vw;

    color: #ffae00;
    text-align: center;
    margin-top: 0.7%;
}

.gb-sc-hl-sc-2-mobile {
    display: none;
}

@media(max-width: 768px) {
    .gb-sc-hl-sc-2-desktop {
        display: none;
    }

    .gb-sc-hl-sc-2 {
        padding-top: 3%;
    }

    .gb-sc-hl-sc-2-mobile {
        display: block;
        width: 80vw;
        margin-bottom: 8%;
    }

    .card {
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
        color: white;
        opacity: 1;
        z-index: 10;
        transition: unset;
    }

    .gb-sc-hl-sc-2-tagline {
        font-size: 4vw;
    }

    .gb-sc-hl-sc-2-title>p:nth-child(1) {
        font-size: 5.5vw;
    }

    .gb-sc-hl-sc-2-title>p:nth-child(2) {
        font-size: 5vw;
    }

    .gb-sc-hl-sc-2-title>p:nth-child(3) {
        font-size: 5vw;
    }
}

/* END SECTION 2 */

/* SECTION 3 */
.gb-sc-hl-sc-3 {
    position: relative;
    text-transform: uppercase;

    height: 100% !important;
    width: 100% !important;

    background: url('../../images/event/halloween/EN/Section3/bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0.5%;

    /* max-width: 1920px;  */
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 9vw;

    overflow: hidden;
}

.gb-sc-hl-sc-3-title {
    font-family: 'Creepster';
    text-align: center;
    padding-top: 0.3%;
    max-width: 90%;
    margin: 0 auto
}

.gb-sc-hl-sc-3-title>p:nth-child(1) {
    color: #ffae00;
    font-size: 2.5vw;
    /* opacity: 0.8;  */
}

.gb-sc-hl-sc-3-title>p:nth-child(2) {
    color: #ff8400;
    font-size: 1.2vw;
    /* opacity: 0.8;  */
}

.gb-sc-hl-sc-3-title>p:nth-child(3) {
    color: #ff8400;
    font-size: 1.2vw;
}

.gb-sc-hl-sc-3-title>p:nth-child(4) {
    color: #ff8400;
    font-size: 1.2vw;
    margin-top: 2%;
}

.gb-sc-hl-sc-3-1 {
    font-family: 'Creepster';
    color: white;
}

.gb-sc-hl-sc-3-1>p:nth-child(1),
.gb-sc-hl-sc-3-1>p:nth-child(2) {
    font-size: 2.4vw;
}

.gb-sc-hl-sc-3-1>p:nth-child(3) {
    background: url(../../images/event/halloween/EN/Section3/period-frame.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    color: #ffae00;
    font-size: 1.1vw;
    padding-top: 3%;
    padding-bottom: 2%;
    padding-left: 3%;
    padding-right: 3%;
    width: 23vw;
    margin-bottom: 1vw;
    white-space: nowrap;
}

.gb-sc-hl-sc-3-2>div>img {
    display: block;
    width: 13vw;
}

.gb-sc-hl-sc-3-total-check-container>p {
    background: url(../../images/event/halloween/EN/Section3/cntr-box.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    font-size: 1.4vw;
    color: #f48103;

    white-space: nowrap;
    width: 50%;
    flex: 0 0 50%;
    padding: 0.8vw;
}

.gb-sc-hl-sc-3-reward {
    margin-top: 4%;
    gap: 4%;
}

.gb-sc-hl-sc-3-rwd-item-name {
    background: url(../../images/event/halloween/EN/Section3/frame.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    font-family: 'Creepster';
    color: white;
    text-align: center;
    font-size: 1.2vw;
    padding-top: 3%;
    padding-bottom: 5%;

    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    bottom: -5%;
    width: 90%;
}

.gb-sc-hl-sc-3-navs {
    position: absolute;
    width: 100%;
    bottom: 9.1%;
    font-family: 'Creepster';
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b80000;
    font-size: 1.4vw;
    gap: 2%;
    margin-top: 6%;
}

.gb-sc-hl-sc-3-navs>p {
    background: url(../../images/event/halloween/EN/Section3/nav-btn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    padding-top: 1%;
    padding-bottom: 0.7%;
    padding-left: 2%;
    padding-right: 2%;
}

.gb-sc-hl-sc-3-navs>p:not(.active):hover {
    filter: brightness(1.2);
}

.gb-sc-hl-sc-3-nav.active {
    filter: brightness(0.7);
}

.gb-sc-hl-sc-3-hospital-ward-desktop-container {
    display: block;
    width: 90%;
    margin-top: 2%;
}

.gb-sc-hl-sc-3-hospital-ward-desktop {
    display: block;
    width: 100%;
}

.gb-sc-hl-sc-3-hospital-ward-mobile-container {
    display: none;
}

.gb-sc-hl-sc-3-hospital-ward-mobile {
    display: block;
    width: 100%;
}

.section-dr-f {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-dr-f-docs-container>img {
    width: 23.3vw;
}

.section-dr-f-docs-container>p {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 17.6%;

    font-size: 1.8vw;
    font-family: 'Creepster';
    text-align: center;
    transform: translateY(-50%);
}

.section-dr-f-docs-container {
    transform: rotate(-7deg);
    margin-top: 2%;
}

.section-overload-apron {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gb-sc-hl-sc-3-mobile {
    display: none;
}

.gb-sc-hl-sc-3-title-mobile {
    display: none !important;
}

.btn-check-progress {
    position: absolute;
    display: block;
    left: 62%;
    width: 16%;
}

.btn-check-progress:hover {
    filter: brightness(1.2);
}

.progress-table {
    font-family: 'Creepster';
    font-size: 1.8rem;
    width: 100%;
}

.progress-table-title {
    text-align: center;
    font-family: 'Creepster';
    font-size: 2.8rem;
    margin-bottom: 2vw;
    color: #ffb624;
    margin-top: -2%;
}

@media(max-width: 768px) {
    .btn-check-progress {
        position: absolute;
        display: block;
        left: 50%;
        width: 37%;
        transform: translateX(-50%);
    }

    .gb-sc-hl-sc-3-hospital-ward-desktop-container {
        display: none;
    }

    .gb-sc-hl-sc-3-reward {
        flex-direction: column;
    }

    .gb-sc-hl-sc-3-title>p:nth-child(1) {
        font-size: 6.5vw;
        margin-top: 11vw;
    }

    .gb-sc-hl-sc-3-title>p:nth-child(2) {
        font-size: 3vw;
    }

    .gb-sc-hl-sc-3-title>p:nth-child(3) {
        margin-top: 2vw;
        font-size: 2.4vw;
    }

    .gb-sc-hl-sc-3-title>p:nth-child(4) {
        font-size: 2.2vw;
    }

    .gb-sc-hl-sc-3-1>p:nth-child(1),
    .gb-sc-hl-sc-3-1>p:nth-child(2) {
        font-size: 5.4vw;
    }

    .gb-sc-hl-sc-3-1>p:nth-child(3) {
        background: unset;
        border: 1.5vw solid #ffae00;
        color: #ffae00;
        font-size: 4.1vw;
        padding-top: 3%;
        padding-bottom: 2%;
        padding-left: 3%;
        padding-right: 3%;
        margin-bottom: 1vw;
        width: unset;
    }

    .gb-sc-hl-sc-3-total-check-container>p {
        font-size: 4vw;
        color: #f48103;
        padding-top: 3vw;
        padding-bottom: 2vw;
        width: unset;
    }

    .gb-sc-hl-sc-3-2 {
        display: none !important;
    }

    .gb-sc-hl-sc-3-2-mobile {
        display: block !important;
        max-width: 54vw;
        margin-top: 3%;
    }

    .gb-sc-hl-sc-3-2-mobile>.slick-prev {
        position: absolute;
        top: 47%;
        right: 0;
        transform: translateX(-100%) translateY(-50%) rotate(180deg);
        background: transparent;
        width: 81%;
        height: 100vh;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .gb-sc-hl-sc-3-2-mobile>.slick-next {
        position: absolute;
        top: 47%;
        right: 0;
        transform: translateX(100%) translateY(-50%);
        background: transparent;
        width: 38%;
        height: 100vh;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .gb-sc-hl-sc-3-rwd>img {
        width: 100%;
    }

    .gb-sc-hl-sc-3-rwd-item-name {
        font-size: 5.2vw;
    }

    .gb-sc-hl-sc-3-navs {
        position: absolute;
        width: 100%;
        bottom: 3.1%;
        font-family: 'Creepster';
        display: flex;
        justify-content: center;
        align-items: center;
        color: #b80000;
        font-size: 2.3vw;
        gap: 2%;
        margin-top: 4%;
        text-align: center;
        flex-wrap: wrap;
    }

    .gb-sc-hl-sc-3-navs>p {
        background: url(../../images/event/halloween/EN/Section3/nav-btn.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
        padding-top: 1%;
        padding-bottom: 0.7%;
        padding-left: 2%;
        padding-right: 2%;
        flex: 0 0 33%;
        height: 9vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .gb-sc-hl-sc-3-title-web {
        display: none !important;
    }

    .gb-sc-hl-sc-3-title-mobile {
        display: flex !important;
    }

    .gb-sc-hl-sc-3-reward {
        margin-top: 1%;
    }

    .gb-sc-hl-sc-3 {
        padding-bottom: 32vw;
    }

    .gb-sc-hl-sc-3-hospital-ward-desktop {
        display: none;
    }

    .gb-sc-hl-sc-3-hospital-ward-mobile-container {
        display: block;
        width: 80%;
    }

    .section-dr-f-docs-container>img {
        width: 45.3vw;
    }

    .section-dr-f-docs-container>p {
        font-size: 3.8vw;
    }
}

@media(max-width: 485px) {
    .gb-sc-hl-sc-3-reward {
        flex-direction: column;
    }

    .gb-sc-hl-sc-3-title>p:nth-child(1) {
        font-size: 9.5vw;
    }

    .gb-sc-hl-sc-3-title>p:nth-child(2) {
        font-size: 3vw;
    }

    .gb-sc-hl-sc-3-title>p:nth-child(3) {
        margin-top: 2vw;
        font-size: 2.4vw;
    }

    .gb-sc-hl-sc-3-title>p:nth-child(4) {
        font-size: 2.2vw;
    }

    .gb-sc-hl-sc-3-1>p:nth-child(1),
    .gb-sc-hl-sc-3-1>p:nth-child(2) {
        font-size: 5.4vw;
    }

    .gb-sc-hl-sc-3-1>p:nth-child(3) {
        background: unset;
        border: 1.5vw solid #ffae00;
        color: #ffae00;
        font-size: 4.1vw;
        padding-top: 3%;
        padding-bottom: 2%;
        padding-left: 3%;
        padding-right: 3%;
        margin-bottom: 1vw;
        width: unset;
    }

    .gb-sc-hl-sc-3-total-check-container>p {
        font-size: 4vw;
        color: #f48103;
        padding-top: 3vw;
        padding-bottom: 2vw;
        width: unset;
    }

    .gb-sc-hl-sc-3-2 {
        display: none !important;
    }

    .gb-sc-hl-sc-3-2-mobile {
        display: block !important;
        max-width: 54vw;
        margin-top: 3%;
    }

    .gb-sc-hl-sc-3-2-mobile>.slick-prev {
        position: absolute;
        top: 47%;
        right: 0;
        transform: translateX(-100%) translateY(-50%) rotate(180deg);
        background: transparent;
        width: 81%;
        height: 100vh;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .gb-sc-hl-sc-3-2-mobile>.slick-next {
        position: absolute;
        top: 47%;
        right: 0;
        transform: translateX(100%) translateY(-50%);
        background: transparent;
        width: 38%;
        height: 100vh;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .gb-sc-hl-sc-3-rwd>img {
        width: 100%;
    }

    .gb-sc-hl-sc-3-rwd-item-name {
        font-size: 5.2vw;
    }

    .gb-sc-hl-sc-3-navs {
        position: absolute;
        width: 100%;
        bottom: 12.1%;
        font-family: 'Creepster';
        display: flex;
        justify-content: center;
        align-items: center;
        color: #b80000;
        font-size: 3.3vw;
        gap: 2%;
        margin-top: 6%;
        text-align: center;
        flex-wrap: wrap;
    }

    .gb-sc-hl-sc-3-navs>p {
        background: url(../../images/event/halloween/EN/Section3/nav-btn.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
        padding-top: 1%;
        padding-bottom: 0.7%;
        padding-left: 2%;
        padding-right: 2%;
        flex: 0 0 47%;
        height: 12vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .gb-sc-hl-sc-3-title-web {
        display: none !important;
    }

    .gb-sc-hl-sc-3-title-mobile {
        display: flex !important;
    }

    .gb-sc-hl-sc-3-reward {
        margin-top: 1%;
    }

    .gb-sc-hl-sc-3 {
        padding-bottom: 51vw;
    }

    .gb-sc-hl-sc-3-hospital-ward-desktop {
        display: none;
    }

    .gb-sc-hl-sc-3-hospital-ward-mobile-container {
        display: block;
        width: 75%;
    }

    .section-dr-f-docs-container>img {
        width: 79.3vw;
    }

    .section-dr-f-docs-container>p {
        font-size: 6.8vw;
    }
}

/* END SECTION 3 */

/* SECTION 4 */
.gb-sc-hl-sc-4 {
    position: relative;
    text-transform: uppercase;

    height: 100% !important;
    width: 100% !important;

    background: url('../../images/event/halloween/EN/Section2/bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0.5%;

    /* max-width: 1920px;  */
    margin: 0 auto;
    /* padding-top: 4%;  */

    font-family: 'Creepster';
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* padding-bottom: 14%;  */

    overflow: hidden;
}

.gb-sc-hl-sc-4-title-facility-u {
    text-align: center;
    color: #ffae00;
    font-size: 3.3vw;
}

.gb-sc-hl-sc-4-title-points-ex {
    text-align: center;
    color: #ffae00;
    font-size: 2.3vw;
}

.gb-sc-hl-sc-4-tag {
    text-align: center;
    color: #ff8706;
    font-size: 2.2vw;
    letter-spacing: 1px;
}

.gb-sc-hl-sc-4-rewards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin-top: 8%;
}

.gb-sc-hl-sc-4-rewards-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff8604;
    font-size: 1.5vw;
    gap: 0.1vw;
}

.gb-sc-hl-sc-4-rewards-img {
    display: block;
    width: 26vw;
}

.gb-sc-hl-sc-4-rewards-1>div>p {
    background: url(../../images/event/halloween/EN/Section4/cntr-box.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    height: 5vw;
    padding-top: 1.6vw;
    padding-bottom: 1.7vw;
    padding-left: 3vw;
    padding-right: 3vw;

    white-space: nowrap;
}

.gb-sc-hl-sc-4-rewards-2 {
    position: relative;
}

.gb-sc-hl-sc-4-item-name {
    background: url(../../images/event/halloween/EN/Section4/frame.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    position: absolute;
    top: -7%;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    font-size: 1.7vw;
    padding: 0.7vw 3vw;
    color: white;
}

.gb-sc-hl-sc-4-desc {
    text-align: center;
    color: #ffae00;
    font-size: 1.6vw;
    margin-top: 3%;
    margin-bottom: 5%;
}

.gb-sc-hl-sc-4-navs {
    position: absolute;
    bottom: 6%;
    width: 100%;

    font-family: 'Creepster';
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b80000;
    font-size: 1.4vw;
    gap: 2%;
}

.gb-sc-hl-sc-4-navs>p {
    background: url(../../images/event/halloween/EN/Section3/nav-btn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    padding-top: 1%;
    padding-bottom: 0.7%;
    padding-left: 2%;
    padding-right: 2%;
}

.gb-sc-hl-sc-4-navs>p:not(.active):hover {
    filter: brightness(1.2);
}

.gb-sc-hl-sc-4-nav.active {
    filter: brightness(0.7);
}

.gb-sc-hl-sc-4-desc-2 {
    font-size: 1.7vw;
    color: #ff8400;
}

.gb-sc-hl-sc-4-keys {
    position: relative;
    left: 50%;
    max-width: 80%;
    transform: translateX(-50%);
    gap: 1vw;

    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 2%;
    margin-bottom: 5%;
}

.gb-sc-hl-sc-4-key {
    position: relative;
    flex: 0 0 25%;
}

.gb-sc-hl-sc-4-key>img {
    display: block;
    width: 100%;
}

.gb-sc-hl-sc-4-key>p {
    background: url(../../images/event/halloween/EN/Section3/frame.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    color: white;
    font-size: 1.7vw;
    padding-top: 1vw;
    padding-bottom: 1.1vw;
    padding-left: 2vw;
    padding-right: 2vw;

    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    white-space: nowrap;
}

.gb-sc-hl-sc-4-key>div {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4vw;
    color: #ffae00;
    padding: 0.5vw 3.9vw;
    background: transparent;
    border: 0.4vw solid #ffae00;
}

.gb-sc-hl-sc-4-key>div:hover {
    border: 0.4vw solid white;
    color: white;
    background: #ffae00;
}

@media(max-width: 785px) {
    .section-facility-under-lockdown {
        top: -27vw;
    }

    .gb-sc-hl-sc-4-title-facility-u {
        text-align: center;
        color: #ffae00;
        font-size: 7.7vw;
    }

    .gb-sc-hl-sc-4-tag {
        text-align: center;
        color: #ff8706;
        font-size: 3.5vw;
        margin-top: 0vw;
        letter-spacing: 1px;
    }

    .gb-sc-hl-sc-4-rewards {
        margin-top: 1%;
    }

    .gb-sc-hl-sc-4-rewards-1 {
        font-size: 2.5vw;
    }

    .gb-sc-hl-sc-4-rewards-1>div>p {
        height: 8vw;
        padding-top: 2.6vw;
        padding-bottom: 2.7vw;
        padding-left: 10vw;
        padding-right: 10vw;
    }


    .gb-sc-hl-sc-4-rewards-2 {
        position: absolute;
        top: 37vw;
    }

    .gb-sc-hl-sc-4-rewards-img {
        width: 52vw;
    }

    .gb-sc-hl-sc-4-item-name {
        background-size: 100% 100%;
        font-size: 3vw;
        color: white;
    }

    .gb-sc-hl-sc-4-desc {
        position: absolute;
        font-size: 4.6vw;
        margin-top: 52%;
    }

    .gb-sc-hl-sc-4-navs {
        bottom: 4%;
        font-size: 3vw;
        width: 71%;
    }

    .gb-sc-hl-sc-4-navs>p {
        padding-top: 4%;
        padding-bottom: 4%;
        padding-left: 4%;
        padding-right: 3%;
    }
}

@media(max-width: 425px) {
    .section-facility-under-lockdown {
        top: -49vw;
    }

    .gb-sc-hl-sc-4-tag {
        margin-top: 5vw;
    }

    .gb-sc-hl-sc-4-rewards-1 {
        font-size: 4.5vw;
    }

    .gb-sc-hl-sc-4-rewards-1>div>p {
        height: 11vw;
        padding-bottom: 3.7vw;
    }

    .gb-sc-hl-sc-4-rewards-2 {
        top: 56vw;
    }

    .gb-sc-hl-sc-4-rewards-img {
        width: 81vw;
    }

    .gb-sc-hl-sc-4-item-name {
        background-size: 100% 100%;
        font-size: 6vw;
        color: white;
    }

    .gb-sc-hl-sc-4-desc {
        font-size: 5.6vw;
        margin-top: 97%;
    }

    .section-points-exchange {
        top: -4%;
    }

    .gb-sc-hl-sc-4-title-points-ex {
        font-size: 9.7vw;
    }

    .gb-sc-hl-sc-4-desc-2 {
        font-size: 3.7vw;
        color: #ff8400;
    }

    .gb-sc-hl-sc-4-keys {
        gap: 15vw;
        flex-wrap: wrap;
    }

    .gb-sc-hl-sc-4-key {
        flex: 1 0 32%;
    }

    .gb-sc-hl-sc-4-key>p {
        font-size: 3.7vw;
    }

    .gb-sc-hl-sc-4-key>div {
        font-size: 3.4vw;
    }

    .gb-sc-hl-sc-4-navs {
        bottom: 8%;
        font-size: 3.3vw;
    }

    .gb-sc-hl-sc-4-navs>p {
        padding-bottom: 3%;
        padding-left: 2%;
        padding-right: 2%;
    }
}

/* END SECTION 4 */

/* SECTION 5 */
.gb-sc-hl-sc-5 {
    position: relative;
    text-transform: uppercase;

    height: 100% !important;
    width: 100% !important;

    background: url('../../images/event/halloween/EN/Section5/gachalist/bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0.5%;

    /* max-width: 1920px;  */
    margin: 0 auto;

    font-family: 'Creepster';
    text-align: center;

    color: #ffae00;
    font-size: 3.5vw;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    overflow: hidden;
}

.gb-sc-hl-sc-5-title>p:nth-child(1) {
    font-size: 2.7vw;
}

.gb-sc-hl-sc-5-title>p:nth-child(2) {
    color: #ff8400;
    font-size: 1.7vw;
    margin-bottom: 2vw;
}

.gb-sc-hl-sc-5-content-history {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    position: relative;
    top: -2%;
}

.gb-sc-hl-sc-5-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gb-sc-hl-sc-5-wheel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.gb-sc-hl-sc-5-wheel>.grid-item {
    transition: transform 0.3s;
}

.gb-sc-hl-sc-5-wheel>.grid-item>img,
.gb-sc-hl-sc-5-wheel>.grid-item-button>img {
    display: block;
    width: 10vw;
}

.gb-sc-hl-sc-5-play-btn {
    grid-column: 2;
    grid-row: 2;
    cursor: url(../../images/preregis/Global/pointer.png), auto !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gb-sc-hl-sc-5-key {
    position: absolute;
    color: #fca700;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9vw;
    font-weight: bold;
    bottom: 13%;
    left: 50%;
    min-width: 180px;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 1px;
    transform: translateX(-50%);
}

.gb-sc-hl-sc-5-history {
    position: relative;
}

.gb-sc-hl-sc-5-history-title {
    position: absolute;
    font-size: 1.4vw;
    color: #b80000;
    top: -1%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.gb-sc-hl-sc-5-history-frame {
    position: relative;
    width: 40vw;
    height: 74vh;
    z-index: 1;
    max-width: 878px;
}

.gb-sc-hl-sc-5-history-list {
    position: absolute;
    display: block;
    overflow: auto;
    white-space: nowrap;
    width: 88%;
    max-height: 92%;
    top: 5%;
    left: 50%;
    padding-top: 0;
    transform: translateX(-50%);
    z-index: 3;
    padding: 0 2%;

}

.gb-sc-hl-sc-5-username {
    font-size: 1.4vw;
    color: #8a1616;
    top: 2.5vw;
    z-index: 2;
    position: absolute;
}

.gb-sc-hl-sc-5-history-list table {
    width: 100%;
    font-size: 12pt;
    border-collapse: collapse;
}

.gb-sc-hl-sc-5-history-list table th,
.gb-sc-hl-sc-5-history-list table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #000;
}

.gb-sc-hl-sc-5-history-list table th {
    color: #000;
}

#list-history_wrapper {
    color: #000;
}

/* Warna teks info bawah: "Showing x to y of z entries" */
#list-history_info {
    color: #8a1616 !important;
    margin-left: 0vw;
    font-size: 13pt;
}

/* Warna teks dan border search input */
#list-history_filter label {
    color: #000000 !important;
    margin-left: 5vw;
    font-size: 12pt;
}

#list-history_filter input {
    border-radius: 8px;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

#list-history_filter input::placeholder {
    color: #000000;
}

#list-history_filter input:focus {
    outline: none;
    box-shadow: 0 0 15px #ffb347, 0 0 30px #ff7518;
}

@media (max-width: 768px) {

    #list-history_filter {
        margin-top: 10%;
    }

    #list-history_filter label {
        margin-left: 10vw;
    }

    .gb-sc-hl-sc-5 {
        justify-content: space-evenly;
    }

    .gb-sc-hl-sc-5-content-history {
        flex-direction: column;
        gap: 1vw;
    }

    .gb-sc-hl-sc-5-title>p:nth-child(1) {
        font-size: 4.5vw;
    }

    .gb-sc-hl-sc-5-title>p:nth-child(2) {
        font-size: 2.7vw;
    }

    .gb-sc-hl-sc-5-wheel>.grid-item>img,
    .gb-sc-hl-sc-5-wheel>.grid-item-button>img {
        width: 17.5vw;
    }

    .gb-sc-hl-sc-5-key {
        font-size: 1.7vw;
        bottom: 11%;
    }

    .gb-sc-hl-sc-5-history-frame {
        width: 90vw;
        height: 35vh;
    }

    .gb-sc-hl-sc-5-history-title {
        font-size: 3vw;
    }

    .gb-sc-hl-sc-5-username {
        font-size: 3vw;
        top: 6vw;
    }

}

@media (max-width: 485px) {

    #list-history_filter {
        margin-top: 25%;
    }

    .gb-sc-hl-sc-5-title>p:nth-child(1) {
        font-size: 8vw;
    }

    .gb-sc-hl-sc-5-title>p:nth-child(2) {
        font-size: 5vw;
    }

    .gb-sc-hl-sc-5-history-title {
        font-size: 5vw;
    }

    .gb-sc-hl-sc-5-username {
        font-size: 6vw;
        top: 9.5%;
    }

    .gb-sc-hl-sc-5-wheel>.grid-item>img,
    .gb-sc-hl-sc-5-wheel>.grid-item-button>img {
        width: 25vw;
    }

    .gb-sc-hl-sc-5-key {
        font-size: 3vw;
    }

}

/* END SECTION 5 */

/* SECTION 6 */
.gb-sc-hl-sc-6 {
    position: relative;
    text-transform: uppercase;

    height: 100% !important;
    width: 100% !important;

    background: url('../../images/event/halloween/EN/Section6/bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0.5%;

    /* max-width: 1920px;  */
    margin: 0 auto;

    font-family: 'Creepster';
    text-align: center;

    color: #ffae00;
    font-size: 3.5vw;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    overflow: hidden;
}

.gb-sc-hl-sc-6-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
}

.gb-sc-hl-sc-6-script {
    display: block;
    width: 23vw;
}

.gb-sc-hl-sc-6-shop-item {
    display: block;
    width: 49vw;
}

.gb-sc-hl-sc-6-shop-item-m {
    display: none;
}

.gb-sc-hl-sc-6-redirect {
    display: block;
    margin: 0 auto;
    width: 27vw;
}

@media (max-width: 768px) {
    .gb-sc-hl-sc-6-title {
        font-size: 9vw;
    }

    .gb-sc-hl-sc-6-content {
        display: block;
    }

    .gb-sc-hl-sc-6-script {
        display: block;
        width: 30vw;
        margin-left: 12vw;
        margin-bottom: 0;
    }

    .gb-sc-hl-sc-6-shop-item {
        display: none;
    }

    .gb-sc-hl-sc-6-shop-item-m {
        display: block;
        width: 54vw;
    }

    .gb-sc-hl-sc-6-redirect {
        display: block;
        margin: 0 auto;
        margin-top: 1vw;
        width: 47vw;
    }
}

@media (max-width: 485px) {
    .gb-sc-hl-sc-6-title {
        font-size: 10vw;
    }

    .gb-sc-hl-sc-6-content {
        display: block;
    }

    .gb-sc-hl-sc-6-script {
        display: block;
        width: 52vw;
        margin-left: 19vw;
        margin-bottom: 3vw;
    }

    .gb-sc-hl-sc-6-shop-item {
        display: none;
    }

    .gb-sc-hl-sc-6-shop-item-m {
        display: block;
        width: 89vw;
    }

    .gb-sc-hl-sc-6-redirect {
        display: block;
        margin: 0 auto;
        margin-top: 10vw;
        width: 60vw;
    }
}

/* END SECTION 6 */

/* SECTION 7 */
/* max-width: 1920px;  */
/* .gb-sc-hl-sc-7 {
    position: relative;
    text-transform: uppercase;

    height: 100% !important;
    width: 100% !important;

    background: url('../../images/event/halloween/EN/Section7/bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0.5%;

    margin: 0 auto;

    font-family: 'Creepster';
    text-align: center;

    color: #ffae00;
    font-size: 3.5vw;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} */
.gb-sc-hl-sc-7 {
    position: relative;
    text-transform: uppercase;
    /* height: 100% !important; */
    width: 100% !important;
    background: url(../../images/event/halloween/EN/Section7/bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0.5%;
    /* max-width: 1920px; */
    margin: 0 auto;
    font-family: 'Creepster';
    text-align: center;
    color: #ffae00;
    /* font-size: 3.5vw; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
    /* height: auto; */

    overflow: hidden;
}

.gb-sc-hl-sc-7-paper {
    position: absolute;
    max-width: 446px;
    width: 19vw;
    filter: opacity(0.4);
}

.gb-sc-hl-sc-7-title {
    position: relative;
    max-width: fit-content;
    margin: 0 auto;
    margin-top: 11vw;
    z-index: 1;
    font-size: 3vw;
}

.gb-sc-hl-sc-7-title:before,
.gb-sc-hl-sc-7-title:after {
    display: block;
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.gb-sc-hl-sc-7-title:before {
    animation: glitch-it 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: #00ffff;
    z-index: -1;
    /* animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: #00ffff;
    z-index: -1; */
}

.gb-sc-hl-sc-7-title:after {
    animation: glitch-it 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: #ff00ff;
    z-index: -2;
    /* animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: #ff00ff;
    z-index: -2; */
}

.gb-sc-hl-sc-7-slider {
    position: relative;
    margin-top: 4%;
    width: 30%;
    z-index: 9;
}

.gb-sc-hl-sc-7-story-container {
    display: block;
    width: 100%;
}

.gb-sc-hl-sc-7-story-text {
    position: absolute;
    left: 9%;
    top: 7%;
    bottom: 9%;
    right: 11%;
    color: #b80000;
    font-size: 1.5vw;

    display: flex;
    justify-content: center;
    align-items: center;
}

.gb-sc-hl-sc-7-slider>.slick-prev {
    position: absolute;
    top: 42%;
    right: 0;
    transform: translateX(-100%) translateY(-50%) rotate(180deg);
    background: transparent;
    width: 100%;
    height: 100vh;
    border: none;
    outline: none;
    cursor: pointer;
}

.gb-sc-hl-sc-7-slider>.slick-next {
    position: absolute;
    top: 42%;
    right: 0;
    transform: translateX(100%) translateY(-50%);
    background: transparent;
    width: 100%;
    height: 100vh;
    border: none;
    outline: none;
    cursor: pointer;
}

.gb-sc-hl-sc-7-slider .slick-prev:before,
.gb-sc-hl-sc-7-slider .slick-next:before {
    content: "";
}

@media (max-width: 768px) {

    .gb-sc-hl-sc-7 {
        overflow-y: hidden;
    }

    .gb-sc-hl-sc-7-title {
        margin-top: 0vw;
        font-size: 8vw;
        top: -25%;
    }

    .gb-sc-hl-sc-7-slider {
        margin-top: -25%;
    }

    .gb-sc-hl-sc-7-slider .slick-list.draggable {
        transform: scale(2.3);
        z-index: -1;
    }

    .gb-sc-hl-sc-7-slider>.slick-prev {
        right: -10vw;
        filter: drop-shadow(2px 4px 6px black);
        transform: translateX(-100%) translateY(100%) rotate(180deg);
        top: 50%;
        height: auto;
    }

    .gb-sc-hl-sc-7-slider>.slick-next {
        left: -10vw;
        filter: drop-shadow(2px 4px 6px black);
        transform: translateX(100%) translateY(100%);
        top: 50%;
        height: auto;
    }

    .gb-sc-hl-sc-7-paper {
        display: none;
    }
}

/* END SECTION 7 */
.gb-web-footer {
    font-family: 'Calibri';
    position: relative;
    top: 11%;
    width: 101%;
    z-index: 2;
    border-top: 0.2vw black solid;
    background: #182435;
}

@media(max-width: 768px) {
    .gb-web-footer {
        position: absolute;
        width: 100%;
        bottom: 0%;
        top: unset;
    }
}


/* ---------- Fog ---------- */

.fogwrapper {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
    filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
}

#foglayer_01,
#foglayer_02,
#foglayer_03 {
    height: 100%;
    position: absolute;
    width: 200%;
    z-index: -1;
}

#foglayer_01 .image01,
#foglayer_01 .image02,
#foglayer_02 .image01,
#foglayer_02 .image02,
#foglayer_03 .image01,
#foglayer_03 .image02 {
    float: left;
    height: 100%;
    width: 50%;
}

#foglayer_01 {
    -webkit-animation: foglayer_01_opacity 45s linear infinite, foglayer_moveme 46s linear infinite;
    -moz-animation: foglayer_01_opacity 45s linear infinite, foglayer_moveme 46s linear infinite;
    animation: foglayer_01_opacity 45s linear infinite, foglayer_moveme 46s linear infinite;
}

#foglayer_02,
#foglayer_03 {
    -webkit-animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 29s linear infinite;
    -moz-animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 29s linear infinite;
    animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 29s linear infinite;
}

#foglayer_01 .image01,
#foglayer_01 .image02 {
    background: url("https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog1.png") center center/cover no-repeat transparent;
}

#foglayer_02 .image01,
#foglayer_02 .image02,
#foglayer_03 .image01,
#foglayer_03 .image02 {
    background: url("https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog2.png") center center/cover no-repeat transparent;
}

@media(max-width: 768px) {

    .fog {
        display: none;
    }

}

/* ---------- Keyframe Layer 1 ---------- */
@-webkit-keyframes foglayer_01_opacity {
    0% {
        opacity: .1;
    }

    22% {
        opacity: .5;
    }

    40% {
        opacity: .28;
    }

    58% {
        opacity: .4;
    }

    80% {
        opacity: .16;
    }

    100% {
        opacity: .1;
    }
}

@-moz-keyframes foglayer_01_opacity {
    0% {
        opacity: .1;
    }

    22% {
        opacity: .5;
    }

    40% {
        opacity: .28;
    }

    58% {
        opacity: .4;
    }

    80% {
        opacity: .16;
    }

    100% {
        opacity: .1;
    }
}

@-o-keyframes foglayer_01_opacity {
    0% {
        opacity: .1;
    }

    22% {
        opacity: .5;
    }

    40% {
        opacity: .28;
    }

    58% {
        opacity: .4;
    }

    80% {
        opacity: .16;
    }

    100% {
        opacity: .1;
    }
}

@keyframes foglayer_01_opacity {
    0% {
        opacity: .1;
    }

    22% {
        opacity: .5;
    }

    40% {
        opacity: .28;
    }

    58% {
        opacity: .4;
    }

    80% {
        opacity: .16;
    }

    100% {
        opacity: .1;
    }
}

/* ---------- Keyframe Layer 2 ---------- */
@-webkit-keyframes foglayer_02_opacity {
    0% {
        opacity: .5;
    }

    25% {
        opacity: .2;
    }

    50% {
        opacity: .1;
    }

    80% {
        opacity: .3;
    }

    100% {
        opacity: .5;
    }
}

@-moz-keyframes foglayer_02_opacity {
    0% {
        opacity: .5;
    }

    25% {
        opacity: .2;
    }

    50% {
        opacity: .1;
    }

    80% {
        opacity: .3;
    }

    100% {
        opacity: .5;
    }
}

@-o-keyframes foglayer_02_opacity {
    0% {
        opacity: .5;
    }

    25% {
        opacity: .2;
    }

    50% {
        opacity: .1;
    }

    80% {
        opacity: .3;
    }

    100% {
        opacity: .5;
    }
}

@keyframes foglayer_02_opacity {
    0% {
        opacity: .5;
    }

    25% {
        opacity: .2;
    }

    50% {
        opacity: .1;
    }

    80% {
        opacity: .3;
    }

    100% {
        opacity: .5;
    }
}

/* ---------- Keyframe Layer 3 ---------- */
@-webkit-keyframes foglayer_03_opacity {
    0% {
        opacity: .8
    }

    27% {
        opacity: .2;
    }

    52% {
        opacity: .6;
    }

    68% {
        opacity: .3;
    }

    100% {
        opacity: .8;
    }
}

@-moz-keyframes foglayer_03_opacity {
    0% {
        opacity: .8
    }

    27% {
        opacity: .2;
    }

    52% {
        opacity: .6;
    }

    68% {
        opacity: .3;
    }

    100% {
        opacity: .8;
    }
}

@-o-keyframes foglayer_03_opacity {
    0% {
        opacity: .8
    }

    27% {
        opacity: .2;
    }

    52% {
        opacity: .6;
    }

    68% {
        opacity: .3;
    }

    100% {
        opacity: .8;
    }
}

@keyframes foglayer_03_opacity {
    0% {
        opacity: .8;
    }

    27% {
        opacity: .2;
    }

    52% {
        opacity: .6;
    }

    68% {
        opacity: .3;
    }

    100% {
        opacity: .8;
    }
}

/* ---------- Keyframe moveMe ---------- */
@-webkit-keyframes foglayer_moveme {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@-moz-keyframes foglayer_moveme {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@-o-keyframes foglayer_moveme {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes foglayer_moveme {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}
