@font-face {
    font-family: "Philosopher";
    src: url("../fonts/Philosopher.ttf");
}

@font-face {
    font-family: "Exo2";
    src: url("../fonts/Exo2.ttf");
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes tada {
    0% {
        transform: scaleZ(1);
    }

    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    20%,
    50%,
    70%,
    90% {
        transform: scale3d(1.06, 1.06, 1.06) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.06, 1.06, 1.06) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        transform: scaleZ(1);
    }
}

@keyframes slideDownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lightSweep {
    0% {
        -webkit-mask-position: 150% 0;
        mask-position: 150% 0;
    }

    100% {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

@keyframes lightBlink {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }

    100% {
        filter: brightness(1);
    }
}

@keyframes zoomBtn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.11);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes dotPulseRed {
    0% {
        box-shadow: 0 0 0 0 #fb2424;
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 158, 66, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 158, 66, 0);
    }
}

@keyframes letterBounce {

    0%,
    16%,
    100% {
        transform: translateY(0);
    }

    8% {
        transform: translateY(-15px);
    }
}

@keyframes upDown {

    0%,
    100% {
        transform: translateY(4%);
    }

    50% {
        transform: translateY(1%);
    }
}

.animation-upDown {
    animation: 2.5s ease-in-out infinite upDown;
}

.btn-zoom {
    animation: zoomBtn .6s ease-in-out infinite;
}

.lightSweep {
    position: absolute;
    animation: lightSweep 3s linear 1s infinite;
    inset: 0;
    filter: brightness(2);
    margin: auto;
    -webkit-mask-image: -webkit-linear-gradient(-45deg, #fff0 40%, #fff 50%, #fff0 60%);
    mask-image: -webkit-linear-gradient(-45deg, #fff0 40%, #fff 50%, #fff0 60%);
    -webkit-mask-size: 300% 200%;
    mask-size: 300% 200%;
    z-index: 1;
    overflow: hidden;
}

.animation-tada {
    animation: tada 1.5s infinite linear;
    filter: grayscale(0) !important;
}

* {
    box-sizing: border-box;
    font-family: "Philosopher";
}

.gz-font-exo2 {
    font-family: "Exo2"
}

body,
ul,
li,
p {
    margin: 0;
}

li {
    list-style: none;
}

::-webkit-scrollbar {
    display: none;
}

.gz-justify-between {
    justify-content: space-between;
}

.gz-justify-center {
    justify-content: center;
}

img {
    vertical-align: middle;
    border-style: none;
    height: 100%;
}

img.desk,
img.default {
    display: block;
    width: 100%;
}

img.mobi,
img.active {
    display: none;
    width: 100%;
}

@media (max-width: 767px) {
    img.desk {
        display: none;
    }

    img.mobi {
        display: block;
    }
}

.btn {
    cursor: pointer;
}

.btn-brightness {
    cursor: pointer;
}

.btn-brightness img {
    width: 100%;
    transition: .3s;
}

.btn-brightness:hover img {
    filter: brightness(125%);
}

.btn:hover img.default,
.btn.active img.default {
    display: none;
}

.btn:hover img.active,
.btn.active img.active {
    display: block;
}

.transform-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.invisible {
    visibility: hidden;
    font-size: 1vw;
}

.d-none {
    display: none;
}

.gz-text-main {
    color: #416A6D;
}

.gz-text-white {
    color: #fff;
}

.w-full {
    width: 100%;
}

.gz-pointer {
    cursor: pointer;
}

.gz-AndroidOS {
    width: 76% !important;
}

.gz-brightness-125 {
    filter: brightness(125%);
}

.gz-direction-none {
    flex-direction: unset !important;
}

/* LOADING */

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d21e21;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

#loading.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#loading {
    opacity: 1;
    transition: opacity 0.5s ease;
}

#loading .spinner {
    animation: spin 1s linear infinite;
    position: relative;
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    width: 180px;
    height: 180px;
}

#loading img.logo {
    height: 30px !important;
    position: absolute !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* LOADER */

.load-api {
    display: none;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    align-content: center;
    justify-content: center;
    z-index: 1000000;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.load-api .element {
    border-radius: 100%;
    border: 5px solid #FFF;
    margin: 10px;
}

.load-api .element:nth-child(1) {
    animation: preloader 0.6s ease-in-out alternate infinite;
}

.load-api .element:nth-child(2) {
    animation: preloader 0.6s ease-in-out alternate 0.2s infinite;
}

.load-api .element:nth-child(3) {
    animation: preloader 0.6s ease-in-out alternate 0.4s infinite;
}

@keyframes preloader {
    100% {
        transform: scale(2);
    }
}

header .main-header {
    position: absolute;
    top: unset;
    width: 100%;
    z-index: 3;
}

header .desk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44%;
    margin: auto;
    gap: 4vw;
    margin-top: 1vw;
}

header .desk img {
    width: 100%;
    transition: .3s ease-out;
    cursor: pointer;
}

header .desk a:hover img {
    transform: scale(1.10);
}

header .mobi {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5vw;
    padding-inline: 2vw;
    padding-block: 0.6vw;
    background-color: #000;
}

@media (max-width: 767px) {
    header .main-header {
        position: fixed;
    }

    header .desk {
        display: none;
    }

    header .mobi {
        display: flex;
    }
}

header .mobi .logo {
    display: flex;
    align-items: center;
    gap: 2vw;
    line-height: 4vw;
}

header .mobi .logo img {
    height: 13.4vw !important
}

header .mobi .logo p {
    color: #FFC971;
    font-size: 2.6vw;
    white-space: nowrap;
    font-weight: 600;
}

header .mobi .main-content {
    display: flex;
    align-items: center;
    gap: 3vw;
    justify-content: flex-end;
}

header .mobi .main-content .link_dowload {
    display: flex;
    align-items: center;
    gap: 3vw;
    width: 46%;
}

header #menu_mobile {
    opacity: 0;
    transition: 0.5s ease-in-out;
    transform: translateX(26vw);
    background-color: #000;
    padding-block: 1.6vw;
    padding-inline: 3vw;
    position: fixed;
    right: 0.5vw;
    margin-top: 0.5vw;
    z-index: 4;
    border-radius: 2vw;
    color: #fff;
    display: none;
}

header #menu_mobile.active {
    transform: translateX(0);
    opacity: 1;
    transition: 0.5s ease-in-out;
}

header #menu_mobile a img {
    width: 100%;
}

header #menu_mobile a {
    font-weight: 700;
    text-decoration: none;
    font-size: 3.6vw;
    color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    white-space: nowrap;
    gap: 1.4vw;
    border-bottom: 1px solid #fff;
    padding-block: 1.8vw;
}

header #menu_mobile a:last-child {
    border-bottom: none !important;
}

header #menu_mobile a span {
    width: 14%;
    margin-left: 1vw;
}

@media (max-width: 767px) {
    header #menu_mobile {
        display: block;
    }

    header .mobi .main-content .link_dowload {
        width: 40%;
    }
}

#btn-menu_mobile {
    cursor: pointer;
    z-index: 1;
}

#btn-menu_mobile.active {
    position: relative;
    top: 0vw;
    width: 8vw;
    height: 8vw;
}

#btn-menu_mobile .item_menu {
    background-color: white;
    width: 8vw;
    height: 1.2vw;
    margin: 1vw 0vw;
    border-radius: 15px;
}

#btn-menu_mobile.active .top {
    position: absolute;
    top: 26%;
    transform: rotate(45deg);
    transition: 0.5s ease-in-out;
}

#btn-menu_mobile.active .center {
    display: none;
}

#btn-menu_mobile.active .bottom {
    position: absolute;
    top: 26%;
    transform: rotate(134deg);
    transition: 0.5s ease-in-out;
}

/* TAB 1 */

.tab1,
.tab2,
.tab3,
.tab4,
.tab5 {
    position: relative;
    overflow: hidden;
}

.tab1 {
    display: flex;
    justify-content: center;
}

.tab1 .background {
    width: 100%;
}

.tab1 .logo-text {
    position: absolute;
    top: 1%;
    left: 1.3%;
    width: 9.8%;
}

.tab1 .warning {
    position: fixed;
    top: 22%;
    left: 0;
    width: 11%;
    z-index: 3;
}

.tab1 .text-award {
    position: absolute;
    left: 12.6%;
    width: 36%;
    top: 3%;
}

.tab1 .text-slogan {
    position: absolute;
    left: 50.8%;
    bottom: 7.6%;
    transform: translate(-50%, -50%);
    width: 29%;
    z-index: 2;
}

.tab1 .text-update {
    position: absolute;
    left: 36.2%;
    bottom: 27%;
    transform: translate(-50%, -50%);
    width: 8%;
    z-index: 1;
}

.tab1 .text-zoneplay {
    position: absolute;
    left: 50%;
    bottom: 20%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 50px #00EEFF, 0 0 10px #00EEFF, 0 0 100px #00EEFF, 0 0 40px #00EEFF;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.6vw;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    z-index: 1;
}

.tab1 .text-zoneplay .letter {
    display: inline-block;
    animation: letterBounce 4s ease-in-out infinite;
}

.tab1 .text-zoneplay .letter.highlight {
    color: #FFAE00;
    font-weight: bold;
}

.tab1 .text-time {
    position: absolute;
    left: 50%;
    bottom: 16%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 5px #00EEFF, 0 0 10px #00EEFF, 0 0 20px #00EEFF, 0 0 40px #00EEFF, 0 0 80px #00EEFF;
    color: #fff;
    text-transform: capitalize;
    font-size: 1.18vw;
}


.tab1 #countdown-text {
    font-weight: bold;
}

.tab1 #btn-action-tab1 {
    position: absolute;
    left: 50%;
    bottom: 7.8%;
    transform: translate(-50%, -50%);
    width: 32%;
    display: flex;
    align-items: center;
    gap: 0.7vw;
}

.tab1 #btn-action-tab1 .btn img {
    width: 100%;
}

.tab1 #btn-action-tab1 .btn-dang-nhap:hover {
    animation: dotPulseRed 0.75s infinite;
    /* filter: brightness(125%); */
}

.tab1 .frame-login {
    position: absolute;
    bottom: 2%;
    width: 17%;
    cursor: pointer;
}

.tab1 .frame-login p {
    position: absolute;
    left: 80%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 1vw;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.2vw;
}

.tab1 .list-btn-redirect {
    position: fixed;
    top: 6%;
    right: 2%;
    z-index: 3;
}

.tab1 .list-btn-redirect .layout-redirect {
    color: #fff;
    border-radius: 2vw;
    padding-inline: 0.2vw;
    display: flex;
    align-items: center;
    margin-left: auto;
    justify-content: end;
    background-color: #000;
    border-radius: 2vw;
    overflow: hidden;
}

.tab1 .list-btn-redirect .layout-redirect a img {
    width: 100%;
    transition: .3s ease-out;
}

.tab1 .list-btn-redirect .layout-redirect a {
    padding: 0.6vw 0.6vw;
    cursor: pointer;
    transition: .3s ease-out;
    opacity: 1;
    max-width: 5vw;
    overflow: hidden;
    transition: max-width 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
}

.tab1 .list-btn-redirect .layout-redirect a:hover img {
    opacity: .6;
}

.tab1 #btn-toggle-redirect img.hide {
    transform: scaleX(-1);
}

.tab1 .list-btn-redirect .layout-redirect a.item.item.hide-item {
    max-width: 0;
    opacity: 0;
    padding-inline: 0;
}

@media (max-width: 767px) {
    .tab1 .list-btn-redirect {
        display: none;
    }

    .tab1 .logo-text {
        display: none;
    }

    .tab1 .warning {
        top: 20%;
        width: 13%;
    }

    .tab1 .text-award {
        display: none;
    }

    .tab1 .text-slogan {
        width: 86%;
        bottom: 8.2%;
        left: 52%;
    }

    .tab1 .text-update {
        width: 24%;
        bottom: 27%;
        left: 8.6%;
    }

    .tab1 .text-zoneplay {
        bottom: 18.8%;
        font-size: 4.8vw;
        line-height: 1.5;
    }

    .tab1 .text-time {
        bottom: 15.4%;
        font-size: 3.4vw;
        white-space: nowrap;
        line-height: 1.5;
    }

    .tab1 #btn-action-tab1 {
        width: 97%;
        gap: 1.8vw;
    }

    .tab1 .frame-login {
        bottom: 1.6%;
        width: 52%;
    }

    .tab1 .frame-login p {
        font-size: 3.1vw;
        line-height: 4.2vw;
    }
}

/* LANDING */
.landing {
    background-image: url(../images/bg-desk.webp);
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 767px) {
    .landing {
        background-image: url(../images/bg-mobi.webp);
        margin-top: -0.4%;
    }
}

/* TAB 2 */
.tab2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 4%;
}

.tab2 .title {
    margin-top: 8%;
    width: 19%;
    margin-inline: auto;
}

.tab2 p#hammer_remain {
    font-size: 1.26vw;
    color: #000;
    text-transform: capitalize;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    margin-top: 0.6%;
}

.tab2 .main-content {
    position: relative;
}

.tab2 .main-content img {
    width: 100%;
}

.tab2 .list-eggs {
    margin-top: 1%;
}

.tab2 .list-eggs .item-egg {
    display: flex;
    align-items: center;
    width: 40%;
    margin-inline: auto;
}

.tab2 .list-eggs .item-egg .item {
    width: 100%;
    margin-right: -1.6%;
}

.tab2 .list-eggs .item-egg.bottom {
    margin-left: 21%;
    margin-top: -1%;
}

.tab2 .list-action {
    position: absolute;
    width: 21.4%;
    margin-inline: auto;
    top: 44%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6vw;
    right: 16%;
}

.tab2 .list-action .action {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.tab2 .list-action .action .bg {
    width: 100%;
}

.tab2 .list-action .action .btn-reward {
    width: 22%;
    position: absolute;
    right: -2%;
}

.tab2 .list-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    width: 35%;
    margin-inline: auto;
    margin-top: 0.4%;
}

.tab2 #btn-action-tab2 {
    width: 32%;
    display: flex;
    align-items: center;
    margin-inline: auto;
    gap: 0.7vw;
    margin-top: 2.6%;
}

@media(max-width: 767px) {
    .tab2 {
        padding-bottom: 10%;
    }

    .tab2 .title {
        margin-top: 24%;
        width: 56.8%;
    }

    .tab2 p#hammer_remain {
        font-size: 3.76vw;
        margin-top: 1.6%;
    }

    .tab2 .list-eggs {
        margin-top: 2%;
    }

    .tab2 .list-eggs .item-egg {
        width: 98%;
    }

    .tab2 .list-eggs .item-egg.bottom {
        margin-left: 0;
        margin-top: -3%;
    }

    .tab2 .list-action {
        position: relative;
        width: 62.4%;
        top: unset;
        gap: 2.2vw;
        right: unset;
        margin-top: -3%;
    }

    .tab2 .list-btn {
        gap: 1vw;
        width: 99%;
        margin-top: 1.4%;
    }

    .tab2 #btn-action-tab2 {
        width: 97%;
        margin-top: 8.4%;
    }
}

/* TAB 3 */
.tab3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1%;
}

.tab3 .title {
    margin-top: 3.4%;
    width: 19%;
    margin-inline: auto;
}

.tab3 .text-guide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    margin-top: 1%;
    width: 100%;
}

.tab3 .text-guide span {
    color: #fff;
    white-space: nowrap;
    font-size: 1.68vw;
}

.tab3 .text-guide .btn {
    width: 10%;
}

.tab3 .main-content {
    position: relative;
    width: 56%;
    margin-top: 0.5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab3 .main-content .list-item {
    position: absolute;
    width: 95%;
}

.tab3 .main-content .list-btn {
    position: absolute;
    right: 3.4%;
    width: 17%;
    display: flex;
    flex-direction: column;
    gap: 3.7vw;
}

.tab3 .main-content .list-btn .btn-brightness {
    width: 100%;
}

@media(max-width: 767px) {
    .tab3 {
        padding-bottom: 8%;
    }

    .tab3 .title {
        margin-top: 8%;
        width: 56.8%;
    }

    .tab3 .text-guide {
        gap: 2vw;
        margin-top: 3.6%;
    }

    .tab3 .text-guide span {
        font-size: 5vw;
    }

    .tab3 .text-guide .btn {
        width: 31%;
    }

    .tab3 .main-content {
        width: 100%;
        margin-top: 1.6%;
    }

    .tab3 .main-content .list-item {
        width: 93%;
    }

    .tab3 .main-content .list-btn {
        right: 5.2%;
        width: 14.4%;
        gap: 3.5vw;
    }
}

/* TAB 4 */
.tab4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab4 .title {
    position: absolute;
    top: 16.2%;
    width: 19%;
    margin-inline: auto;
    z-index: 1;
}

.tab4 p#text_rank {
    position: absolute;
    top: 22.6%;
    z-index: 1;
    color: #FFAE00;
    white-space: nowrap;
    font-size: 1.22vw;
}

.tab4 .main-content {
    position: relative;
    width: 83%;
    margin-top: 1.1%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab4 .main-content .list-btn .btn-brightness {
    position: absolute;
}

.tab4 .main-content .list-btn .btn-gift-1 {
    top: 39%;
    left: 4.4%;
    width: 11.4%;
}

.tab4 .main-content .list-btn .btn-gift-2 {
    top: 39%;
    right: 3.4%;
    width: 11.4%;
}

.tab4 .main-content .list-btn .btn-gift-3 {
    top: 66.2%;
    left: 4.4%;
    width: 11.4%;
}

.tab4 .main-content .list-btn .btn-gift-4 {
    top: 66.2%;
    right: 3.4%;
    width: 11.4%;
}

.tab4 .main-content .table-content {
    position: absolute;
    top: 31%;
    width: 56%;
    margin: auto;
    overflow-y: auto;
    height: 55%;
}

.tab4 table {
    text-align: center !important;
    color: #000;
    width: 100%;
    border-collapse: collapse;
}

.tab4 table td,
th {
    padding-block: 0.6vw;
    font-size: 1vw;
}

.tab4 table th {
    font-size: 1.8vw;
}

.tab4 table th:first-child {
    padding-inline: 2vw;
}

.tab4 table tbody tr:nth-child(1) {
    background-color: #FFAE00;
}

.tab4 table tbody tr:nth-child(2) {
    background-color: #FFDEA7;
}

.tab4 table tbody tr:nth-child(3) {
    background-color: #FFFFFF;
}

@media(max-width: 767px) {

    .tab4 .title {
        top: 15.8%;
        width: 56.8%;
    }

    .tab4 p#text_rank {
        top: 22.2%;
        font-size: 3.7vw;
    }

    .tab4 .main-content {
        width: 100%;
        margin-top: 3.1%;
    }

    .tab4 .main-content .list-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 99%;
        position: absolute;
        bottom: 15%;
        gap: 1vw;
    }

    .tab4 .main-content .list-btn .btn-brightness {
        position: unset;
        width: 100%;
    }

    .tab4 .main-content .table-content {
        top: 30%;
        width: 92%;
        height: 50%;
    }

    .tab4 table {
        width: 100%;
    }

    .tab4 table td,
    th {
        padding-block: 1.5vw;
        padding-inline: 1.6vw;
        font-size: 3vw;
    }

    .tab4 table th {
        font-size: 4.6vw;
    }
}

/* TAB 5 */
.tab5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5%;
}

.tab5 .title {
    margin-top: 4.8%;
    width: 19%;
    margin-inline: auto;
}

.tab5 p.text-infor {
    margin-top: 1.4%;
    color: #FFAE00;
    white-space: nowrap;
    font-size: 1.26vw;
}

.tab5 .list-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 21%;
    margin-inline: auto;
    margin-top: 0.6%;
    gap: 1vw;
}

.tab5 .main-content {
    position: relative;
    width: 51%;
    margin-top: 1.4%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
}

.tab5 .main-content img {
    width: 100%;
}

.tab5 #list_item_reward {
    position: absolute;
    width: 90.4%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    place-items: center;
    column-gap: 3.4vw;
    row-gap: 0.2vw;
    margin-inline: auto;
}

.tab5 #list_item_reward .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* filter: grayscale(1); */
    position: relative;
}

.tab5 #list_item_reward .item .bg {
    width: 100%;
}

.tab5 #list_item_reward .item .frame-point {
    position: absolute;
    top: 4%;
    left: 0;
    width: 45%;
    display: flex;
    align-items: center;
}

.tab5 #list_item_reward .item p.frame-point {
    color: #fff;
    font-size: 0.56vw;
    position: absolute;
    left: 21%;
    text-align: center;
    top: 8.8%;
}

.tab5 #list_item_reward .item .text-gift {
    position: absolute;
    left: 50%;
    bottom: 43%;
    transform: translate(-50%, -50%);
    width: 76%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab5 #list_item_reward .item .text-gift p {
    font-size: 0.8vw;
    color: #fff;
    text-align: center;
    position: absolute;
}

.tab5 #list_item_reward .item .btn {
    width: 96%;
    display: flex;
    align-items: center;
    margin-top: 0%;
}

.tab5 #list_item_reward .item .btn p {
    position: absolute;
    left: 12%;
    font-size: 1vw;
    color: #fff;
}

@media(max-width: 767px) {
    .tab5 {
        padding-bottom: 9%;
    }

    .tab5 .title {
        margin-top: 1.4%;
        width: 56.8%;
    }

    .tab5 p.text-infor {
        margin-top: 4.6%;
        font-size: 3.8vw;
    }

    .tab5 .list-btn {
        width: 60%;
        margin-top: 2%;
        gap: 2vw;
    }

    .tab5 .main-content {
        width: 100%;
    }

    .tab5 #list_item_reward {
        width: 87.6%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 7vw;
    }

    .tab5 #list_item_reward .item .text-gift p {
        font-size: 2vw;
    }

    .tab5 #list_item_reward .item .btn p {
        left: 12%;
        font-size: 2.8vw;
    }

    .tab5 #list_item_reward .item p.frame-point {
        font-size: 1.6vw;
        top: 7%;
    }
}

/* TAB 6 */
.tab6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2%;
}

.tab6 .title {
    margin-top: 0.4%;
    width: 19%;
    margin-inline: auto;
    z-index: 1;
}

.tab6 .text-infor {
    margin-top: 0.8%;
    text-align: center;
    font-size: 1.22vw;
    width: 70%;
    margin-inline: auto;
    color: #fff;
}

.tab6 .frame-huyetan {
    position: relative;
    width: 15%;
    margin-top: 1%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab6 #count_huyetan {
    position: absolute;
    font-size: 1.3vw;
    color: white;
    white-space: nowrap;
}

.tab6 .list-gift {
    margin-top: 3%;
    width: 54%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6vw;
    margin-inline: auto;
}

.tab6 .list-gift img {
    width: 100%;
}

.tab6 .text-gift {
    position: absolute;
    top: 14%;
    width: 78%;
    left: 10%;
    font-size: 1vw;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}

.tab6 .list-gift .gift {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tab6 .list-gift .gift .btn {
    position: absolute;
    bottom: 18%;
    left: 10%;
    width: 58%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab6 .list-gift .gift .btn span {
    font-size: 1vw;
    color: #fff;
    position: absolute;
}

@media(max-width: 767px) {

    .tab6 {
        padding-bottom: 3%;
    }

    .tab6 .title {
        margin-top: 4.8%;
        width: 56.8%;
    }

    .tab6 .text-infor {
        margin-top: 5.4%;
        font-size: 3.6vw;
        width: 76%;
    }

    .tab6 .frame-huyetan {
        width: 45%;
        margin-top: 6%;
    }

    .tab6 #count_huyetan {
        font-size: 3.5vw;
    }

    .tab6 .list-gift {
        margin-top: 8%;
        gap: 1vw;
        width: 43%;
        flex-direction: column;
    }

    .tab6 .text-gift {
        top: 14%;
        font-size: 3.4vw;
    }

    .tab6 .list-gift .gift .btn {
        bottom: 17%;
        width: 64%;
        left: 8%;
    }

    .tab6 .list-gift .gift .btn span {
        font-size: 3.2vw;
    }
}

/* FOOTER */

footer {
    position: relative;
    overflow-x: hidden;
}

footer .content {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding-block: 2.4vw;
}

footer .content .logo {
    align-items: center;
    justify-content: center;
    gap: 8vw;
    width: 100%;
    text-align: right;
}

footer .content .logo img.logo-gzone {
    width: 20% !important;
}

footer .content .logo img.footer-warning {
    display: none;
}

footer .content .logo a {
    width: 30% !important;
    display: none;
}

footer .content .main-content {
    font-size: 0.8vw;
    text-align: center;
    width: 100%;
}

footer .content .main-content a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    outline: none;
    font-family: "Exo2"
}

footer .content .main-content p {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: "Exo2";
    line-height: 1.2vw;
}

footer .content .warning {
    display: flex;
    align-items: center;
    width: 100%;
}

footer .content .warning img.img-warning {
    width: 8%;
}

footer .content .warning a {
    width: 18%;
}

@media (max-width: 767px) {

    footer .content {
        display: block;
        padding-inline: 2vw;
        padding-top: 6vw;
        padding-bottom: 6vw;
    }

    footer .content .logo {
        display: flex;
        margin-bottom: 4vw !important;
        margin-left: 4vw;
    }

    footer .content .logo img.footer-warning {
        display: block;
        width: 10%;
    }

    footer .content .logo a {
        display: block;
    }

    footer .content .main-content {
        width: 100%
    }

    footer .content .main-content a,
    footer .content .main-content p {
        font-size: 3vw;
        line-height: 4.6vw;
    }

    footer .content .warning {
        display: none;
    }
}

/* POPUP */

#backdrop {
    background-color: rgb(0 0 0 / 72%);
    backdrop-filter: blur(3px);
    position: fixed;
    inset: 0;
    z-index: 13;
}

#popup {
    transition: 0.3s ease-in-out;
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: -9;
    width: 100%;
}

#popup.active {
    opacity: 1 !important;
    z-index: 15 !important;
}

#popup .main-popup {
    position: relative;
    z-index: 13;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#popup .item-popup {
    position: relative;
    opacity: 0;
    display: flex;
    transform: scale(0);
    transition: 0.45s ease-in-out;
    position: absolute;
    width: 50%;
}

#popup .item-popup.active {
    opacity: 1;
    justify-content: center;
    transition: 0.5s ease-in-out;
    transform: scale(1.05);
}

#popup .bg-popup {
    width: 100%;
}

#popup .btn-close {
    position: absolute;
    top: 4.8%;
    right: 2.4%;
    z-index: 2;
    cursor: pointer;
    width: 4%;
}

#popup .btn-close img {
    transition: .2s ease-out;
    width: 100%;
}

#popup .btn-close:hover img {
    transform: scale(1.1);
}

#popup .main-content {
    position: absolute;
    top: 3%;
    bottom: 3%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

#popup .main-content .title {
    width: 32%;
}

#popup .main-content .title img {
    width: 100%;
}

#popup .main-content .content-popup {
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#popup .main-content .content-popup p#popup_mess-noti {
    color: #fff;
    font-size: 1.2vw;
    text-align: center;
}

#popup .main-content .content-popup p.popup_mess-noti {
    color: #fff;
    font-size: 1.2vw;
    text-align: center;
}

#popup .main-content .content-popup #popup_img-gift {
    width: 52%;
}

@media (max-width: 767px) {

    #popup .main-popup {
        position: relative;
        z-index: 13;
        width: 88%;
    }

    #popup .main-content {
        top: 0%;
    }

    #popup .btn-close {
        top: 4.8%;
        right: 3.6%;
        width: 5.2%;
    }

    #popup .main-content .title {
        width: 42%;
        margin-top: 1vw;
    }

    #popup .main-content .content-popup p#popup_mess-noti,
    .invisible {
        font-size: 2.6vw;
        line-height: 3.4vw;
    }

    #popup .item-popup {
        width: 100%;
    }
}

/* POPUP ĐĂNG NHẬP */

#popup-dang-nhap .list-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
}

#popup-dang-nhap .list-input input {
    background-color: transparent;
    color: #fff;
    outline: none;
    margin: 0;
    width: 100%;
    text-align: center;
    padding-block: 0.36vw;
    height: 2.6vw;
    font-size: 1vw;
    margin-bottom: 1vw;
    border: 1px solid #FFAE00;
}

#popup-dang-nhap .privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#popup-dang-nhap .privacy input {
    height: 1vw;
    width: 2%;
    margin-bottom: 0;
    margin-right: 0.4vw;
    cursor: pointer;
}

#popup-dang-nhap .privacy label {
    font-size: 0.9vw;
    color: #fff;
    cursor: pointer;
}

#popup-dang-nhap .btn-dangnhap {
    width: 16%;
    margin: auto;
    cursor: pointer;
    margin-block: 1.4vw 0.6vw;
}

#popup-dang-nhap .list-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    width: 30%;
}

@media (max-width: 767px) {
    #popup-dang-nhap .content-popup {
        margin-top: 4vw;
    }

    #popup-dang-nhap .list-input input {
        padding-block: 0.36vw;
        height: 6.8vw;
        font-size: 2.6vw;
        margin-bottom: 1.6vw;
    }

    #popup-dang-nhap .privacy input {
        height: 3vw;
        width: 3%;
        margin-right: 1.4vw;
    }

    #popup-dang-nhap .privacy label {
        font-size: 2.6vw;
    }

    #popup-dang-nhap .btn-dangnhap {
        width: 24%;
        margin-block: 2vw 1.6vw;
    }

    #popup-dang-nhap .list-btn {
        gap: 2vw;
        width: 42%;
    }
}

/* LỊCH SỬ */

#popup-lich-su .content-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 94%;
    height: 78%;
    margin-top: 1vw;
    margin-inline: auto;
}

#popup-lich-su .title-lichsu {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    width: 84%;
}

#popup-lich-su .content-lichsu {
    overflow-y: scroll;
    height: 100%;
    width: 84%;
}

#popup-lich-su table {
    width: 100%;
    text-align: center !important;
    border-collapse: collapse;
}

#popup-lich-su table th,
#popup-lich-su table td {
    color: #fff;
    background-color: transparent;
    font-size: 1vw;
    font-family: 'SVN-Avo' !important;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

#popup-lich-su table th {
    border-top: 1px solid #fff;
    padding: 0.4vw 0;
}

#popup-lich-su table td {
    padding: 0.4vw 1.7vw !important;
}

#popup-lich-su .title-lichsu .title-history {
    border: 1px solid #fff;
    border-bottom: none;
    width: 100%;
}

#popup-lich-su .title-lichsu .title-history button {
    padding: 0.4vw 0;
    color: #fff;
    border: none;
    background-color: #b30024;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    outline: none;
    display: block;
    font-size: 1vw;
    cursor: pointer;
    font-family: 'SVN-Avo' !important;
}

@media (max-width: 767px) {
    #popup-lich-su .content-popup {
        margin-top: 2vw;
        height: 74%;
    }

    #popup-lich-su .title-lichsu {
        width: 86%;
    }

    #popup-lich-su .content-lichsu {
        width: 86%;
        height: 70%;
    }

    #popup-lich-su .title-lichsu .title-history button {
        font-size: 2.2vw;
        padding: 0.8vw 0;
    }

    #popup-lich-su .content-popup .content-lichsu {
        width: 86%;
        height: 100%;
    }

    #popup-lich-su table th {
        font-size: 2.2vw;
        padding: 1vw 0;
    }

    #popup-lich-su table td {
        font-size: 2.2vw;
        padding: 0.8vw 2.6vw !important;
    }
}

/* THỂ LỆ */
#popup-the-le .main-content {
    bottom: 6%;
}

#popup-the-le .main-content .content-popup {
    overflow-y: scroll;
    width: 80%;
    margin-top: 1.4vw;
}

#popup-the-le .main-content .content-popup::-webkit-scrollbar {
    display: block !important;
    width: 4px !important;
    cursor: pointer;
}

#popup-the-le .main-content .content-popup::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
    cursor: pointer;
}

#popup-the-le .main-content .content-popup::-webkit-scrollbar-track {
    background: #222;
}

#popup-the-le p.popup_mess-noti {
    text-align: left !important;
    line-height: 1.5;
    padding-right: 0.4vw;
}

#popup-huong-dan .main-content {
    bottom: 6%;
}

#popup-huong-dan .main-content .content-popup {
    overflow-y: scroll;
    width: 80%;
    margin-top: 1vw;
}

#popup-huong-dan p.popup_mess-noti {
    text-align: left !important;
    line-height: 1.5;
    padding-right: 0.4vw;
}

#popup-huong-dan .main-content .content-popup::-webkit-scrollbar {
    display: block !important;
    width: 4px !important;
    cursor: pointer;
}

#popup-huong-dan .main-content .content-popup::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
    cursor: pointer;
}

#popup-huong-dan .main-content .content-popup::-webkit-scrollbar-track {
    background: #222;
}

@media (max-width: 767px) {
    #popup-the-le .main-content {
        bottom: 6%;
    }

    #popup-the-le .main-content .content-popup {
        margin-top: 2.4vw;
    }

    #popup-huong-dan .main-content {
        bottom: 6%;
    }

    #popup-huong-dan .main-content .content-popup {
        margin-top: 2vw;
    }

    #popup-huong-dan p.popup_mess-noti {
        font-size: 2.5vw !important;
        line-height: 3.6vw;
        padding-right: 1.6vw;
    }

    #popup-the-le p.popup_mess-noti {
        font-size: 2.5vw !important;
        line-height: 3.6vw;
        padding-right: 1.6vw;
    }
}

#giftcode-wrapper {
    text-align: center;
    font-size: 1.2vw
}

#giftcode-wrapper p.ma-code {
    color: #FFD700;
    font-weight: 700;
    margin-block: 0.4vw 0.8vw;
    font-size: 1.2vw
}

#giftcode-wrapper .layout-copy {
    display: inline-flex;
    align-items: center;
    gap: 1.4vw
}

#giftcode-wrapper .layout-copy span#giftcode-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.2vw;
    font-family: serif !important;
}

#giftcode-wrapper .layout-copy button {
    background-color: #4CAF50;
    border: none;
    outline: none;
    color: #fff;
    padding: 0.3vw 0.6vw;
    border-radius: 0.2vw;
    cursor: pointer;
    outline: none;
    font-size: 1.2vw
}

@media (max-width: 767px) {
    #giftcode-wrapper {
        text-align: center;
        font-size: 1.2vw
    }

    #giftcode-wrapper p.ma-code {
        margin-block: 1vw 1.6vw;
        font-size: 2.6vw;
    }

    #giftcode-wrapper .layout-copy {

        gap: 3.4vw
    }

    #giftcode-wrapper .layout-copy span#giftcode-text {
        font-size: 2.6vw
    }

    #giftcode-wrapper .layout-copy button {
        padding: 1.2vw 1.6vw;
        border-radius: 0.6vw;
        font-size: 2.6vw
    }
}

tbody#lich-su-nhan-code tr td:nth-child(2) {
    font-family: serif !important;
}

/* NHIỆM VỤ */
#popup-nhiem-vu .content-popup {
    gap: 0.4vw;
    height: 76%;
    overflow-y: scroll;
}

#popup-nhiem-vu .content-popup .item-mission {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 66%;
    border: 1px solid #FFAE00;
}

#popup-nhiem-vu .content-popup .item-mission p {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 0.6vw;
    font-size: 0.9vw;
}

#popup-nhiem-vu .content-popup .item-mission .btn-brightness {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24%
}

@media (max-width: 767px) {

    #popup-nhiem-vu .content-popup {
        gap: 1.4vw;
        height: 66%;
    }

    #popup-nhiem-vu .content-popup .item-mission {
        width: 80%;
    }

    #popup-nhiem-vu .content-popup .item-mission p {
        padding: 1vw 2vw;
        font-size: 2.6vw;
    }

    #popup-nhiem-vu .content-popup .item-mission .btn-brightness {
        width: 30%;
    }

    #popup-nhiem-vu .footer-popup p {
        font-size: 2.1vw;
        margin-bottom: 0.2vw;
    }

    #popup-nhiem-vu .footer-popup p:first-child {
        font-size: 2.6vw !important;
    }
}

/* KHO VP */
#popup-kho-vp .content-popup img {
    width: 100%;
}

#popup-kho-vp .content-popup p.text-remain {
    width: 100%;
    margin-inline: auto;
    text-align: center;
    font-size: 1vw;
    color: #fff;
    margin-bottom: 1.6vw;
}

#popup-kho-vp .content-popup .list-vp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-inline: auto;
}

#popup-kho-vp .content-popup .list-vp .list-vp_item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    width: 20%;
}

#popup-kho-vp .content-popup .list-vp .list-vp_item .vp-count {
    position: absolute;
    top: 6%;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    font-size: 1vw;
    color: #fff;
    text-shadow:
        1px 1px #000,
        -1px -1px #000,
        1px -1px #000,
        -1px 1px #000;

    /* text-shadow: 0.05vw 0.05vw #000, -0.05vw -0.05vw #000, 0.05vw -0.05vw #000, -0.05vw 0.05vw #000; */
}

#popup-kho-vp .content-popup .list-vp .list-vp_item .vp-title {
    position: absolute;
    bottom: 4%;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    font-size: 1vw;
    color: #fff;
    text-shadow:
        1px 1px #000,
        -1px -1px #000,
        1px -1px #000,
        -1px 1px #000;

    /* text-shadow: 0.05vw 0.05vw #000, -0.05vw -0.05vw #000, 0.05vw -0.05vw #000, -0.05vw 0.05vw #000; */
}

@media (max-width: 767px) {

    #popup-kho-vp .content-popup p.text-remain {
        font-size: 2.6vw;
        margin-bottom: 3.6vw;
    }

    #popup-kho-vp .content-popup .list-vp {
        width: 98%;
    }

    #popup-kho-vp .content-popup .list-vp .list-vp_item .vp-count {
        font-size: 2.6vw;
    }

    #popup-kho-vp .content-popup .list-vp .list-vp_item .vp-title {
        font-size: 2.6vw;
    }
}

/* NHẬN VP */
#popup-nhan-vp .content-popup img {
    width: 100%;
}

#popup-nhan-vp .content-popup p.text-remain {
    width: 100%;
    margin-inline: auto;
    text-align: center;
    font-size: 1vw;
    color: #fff;
    margin-bottom: 1.6vw;
}

#popup-nhan-vp .content-popup .list-vp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-inline: auto;
}

#popup-nhan-vp .content-popup .list-vp .list-vp_item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    width: 20%;
}

#popup-nhan-vp .content-popup .list-vp .list-vp_item .vp-count {
    position: absolute;
    top: 6%;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    font-size: 1vw;
    color: #fff;
    text-shadow:
        1px 1px #000,
        -1px -1px #000,
        1px -1px #000,
        -1px 1px #000;

    /* text-shadow: 0.05vw 0.05vw #000, -0.05vw -0.05vw #000, 0.05vw -0.05vw #000, -0.05vw 0.05vw #000; */
}

#popup-nhan-vp .content-popup .list-vp .list-vp_item .vp-title {
    position: absolute;
    bottom: 4%;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    font-size: 1vw;
    color: #fff;
    text-shadow:
        1px 1px #000,
        -1px -1px #000,
        1px -1px #000,
        -1px 1px #000;

    /* text-shadow: 0.05vw 0.05vw #000, -0.05vw -0.05vw #000, 0.05vw -0.05vw #000, -0.05vw 0.05vw #000; */
}

@media (max-width: 767px) {

    #popup-nhan-vp .content-popup p.text-remain {
        font-size: 2.6vw;
        margin-bottom: 3.6vw;
    }

    #popup-nhan-vp .content-popup .list-vp {
        width: 98%;
    }

    #popup-nhan-vp .content-popup .list-vp .list-vp_item .vp-count {
        font-size: 2.6vw;
    }

    #popup-nhan-vp .content-popup .list-vp .list-vp_item .vp-title {
        font-size: 2.6vw;
    }
}

#popup-thong-bao p#popup_mess-noti {
    width: 90%;
}

#popup-egg-hammer .egg-hammer-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#popup-egg-hammer .egg-container {
    position: relative;
    width: 24%
}

#popup-egg-hammer #egg-item {
    position: relative;
    z-index: 2
}

#popup-egg-hammer #egg-broken {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    z-index: 3;
    width: 150%;
}

#popup-egg-hammer #egg-hammer {
    position: absolute;
    top: -40%;
    right: -70%;
    transform: rotate(-30deg);
    z-index: 4;
    width: 100%;
}

#popup-egg-hammer p.text-wating {
    text-align: center;
    color: white;
    font-size: 1.2vw
}

@media (max-width: 767px) {
    #popup-egg-hammer .egg-container {
        width: 38%
    }

    #popup-egg-hammer p.text-wating {
        font-size: 4vw;
    }
}