@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

@font-face {
    font-family: "exo";
    src: url("../fonts/Exo2-Regular.ttf");
}

@font-face {
    font-family: "svn";
    src: url("../fonts/SVN-Avo.ttf");
}

@font-face {
    font-family: "stac";
    src: url("../fonts/00171-UTM-Staccato.ttf");
}

@font-face {
    font-family: "exo-bold";
    src: url("../fonts/Exo2-SemiBold.ttf");
}

@keyframes wave {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300&display=swap');

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.13);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lenxuong {
    0% {
        transform: translateX(0px);
    }

    25% {
        transform: translateY(10px);
    }

    50% {
        transform: translateY(15px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}


@keyframes hihi {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scaleZ(1);
    }

    10%,
    20% {
        -webkit-transform: rotate3d(0, 0, 1, -30deg);
        -ms-transform: rotate3d(0, 0, 1, -30deg);
        transform: rotate3d(0, 0, 1, -30deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: rotate3d(0, 0, 1, 20deg);
        -ms-transform: rotate3d(0, 0, 1, 20deg);
        transform: rotate3d(0, 0, 1, 20deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        -ms-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scaleZ(1);
    }
}

@keyframes tada {
    0% {
        transform: scaleZ(1);
    }

    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    20%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        transform: scaleZ(1);
    }
}

@keyframes shake {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scaleZ(1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scaleZ(1);
    }
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-shake {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(-7deg); }
    50%  { transform: rotate(7deg); }
    75%  { transform: rotate(-4deg); }
    100% { transform: rotate(0deg); }
  }

/* HEADER START */
.header {
    z-index: 2;
    position: absolute;
    top: unset;
    left: 0;
    right: 0;
}

.header .header_desk {
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(0 0 0 / 80%);
}

.header .header_desk ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.header .header_desk ul li {
    list-style: none;
    padding: 20px 0px 15px 0px;
}

.header .header_desk ul li a {
    margin-top: -8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: exo-bold;
    color: white;
    font-size: 20px;
}

.header .header_desk ul li a:hover {
    text-decoration: none;
}

.header .header_desk ul li a svg {
    /* margin: 0px 10px; */
    margin-right: 10px;
    width: 1.5vw;
}

.header .header_mobile {
    display: none;
}

@media(max-width:767px) {
    .header .header_mobile {
        display: block;
    }

    .header .header_desk {
        display: none;
    }

    .header .header_mobile .menu_set {
        background-color: #27282A;
        padding: 10px 0px;
    }

    .header_mobile .menu_set .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 5px !important;
    }

    .header .header_mobile .container .link_download {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header .header_mobile .container .link_download a img {
        width: 28vw;
        margin: 0 5px;
    }

    .header .header_mobile .container .link_download a img.android {
        width: 22vw;
        margin: 0 5px;
    }

    .header_mobile .container .logo {
        margin-left: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header .header_mobile .logo .img_logo img {
        width: 11vw;
        border-radius: 13px
    }

    .header .header_mobile .logo .name_game p {
        font-weight: 700;
        color: white;
        font-family: 'exo';
        font-size: 3.2vw;
        margin-left: 7px;
        margin-bottom: 0;
    }

    .header .header_mobile .btn_menu_mobile .item_menu {
        background-color: white;
        width: 35px;
        height: 5px;
        margin: 5px 0px;
        border-radius: 15px;
    }

    .header .header_mobile .btn_menu_mobile {
        margin-right: 10px;
    }

    .header .header_mobile .btn_menu_mobile.active {
        position: relative;
        top: 10px;
        width: 35px;
        height: 35px;
    }

    .header .header_mobile .btn_menu_mobile.active .top {
        position: absolute;
        transform: rotate(45deg);
        transition: 0.8s ease-in-out;
    }

    .header .header_mobile .btn_menu_mobile.active .center {
        display: none;
    }

    .header .header_mobile .btn_menu_mobile.active .bottom {
        position: absolute;
        transform: rotate(134deg);
        transition: 0.8s ease-in-out;
    }

    .header .header_mobile .menu_move {
        background-color: black;
        padding: 10px;
        width: 140px;
        height: 150px;
        position: fixed;
        right: 0;
        z-index: 999;
        opacity: 0;
        border: 1px solid white;
        transform: translateX(130px);
        transition: 0.8s ease-in-out;
        border-radius: 10px;
    }

    .header .header_mobile .menu_move.active {
        transform: translateX(0);
        opacity: 1;
        transition: 0.8s ease-in-out;
    }

    .header .header_mobile .menu_move ul li {
        list-style: none;
    }

    .header .header_mobile .menu_move ul li a {
        font-weight: 700;
        text-decoration: none;
        font-size: 14px;
        color: white;
    }

    .header .header_mobile .menu_move ul li a svg {
        margin: 0px 5px;
        width: 15px;
    }

    .header .header_mobile .menu_move hr {
        background-color: white;
        margin: 1vw 0px;
    }
}

/* HEADER END */

/* Footer start */


.footer {
    position: relative;
    text-align: center;
    background-color: #000;
    color: white;
    padding: 15px 0px;
}

.footer p,
.footer a {
    font-family: "exo";
    margin: 0;
    font-size: 0.8vw;
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0px;
    flex-wrap: wrap;
}

.footer .logo {
    width: 10vw;
}

.footer a {
    text-decoration: none;
    color: white;
}

.footer .warring_desk {
    width: 3.5vw;
}

.footer .warring_mobile {
    display: none;
}

@media (max-width:767px) {

    .footer p,
    .footer a {
        font-size: 2.3vw;
    }

    .footer .warring_mobile {
        display: block;
        margin-left: 10px;
    }

    .footer .logo {
        margin: 15px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer .logo {
        width: 100%;
    }

    .footer .warring_desk {
        display: none;
    }
}

/* FOOTER END */


/* LOADING  */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D21E21;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading .spinner {
    position: relative;
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-top: 8px solid #FFF;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    animation: spin 1s linear infinite;
}

.loading .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#content {
    visibility: hidden;
}

/* LOADING END  */

/* GENERAL SETTINGS */
body.active {
    overflow: hidden !important;
}

.landing {
    background-image: url("../images/background-desk.png");
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width:767px) {
    .landing {
        background-image: url("../images/background-mobi.png");
        background-position: top;
        background-size: cover;
        margin-top: -2vw;
    }
}

::-webkit-scrollbar {
    display: none;
}

video.desk {
    display: block;
}

video.mob {
    display: none;
}

@media (max-width:767px) {
    video.desk {
        display: none;
    }

    video.mob {
        display: block;
    }
}

img.desk {
    display: block;
}

img.mob {
    display: none;
}

@media (max-width:767px) {
    img.desk {
        display: none;
    }

    img.mob {
        display: block;
    }
}

.desk {
    display: block;
}

.mob {
    display: none;
}

@media (max-width:767px) {
    .desk {
        display: none;
    }

    .mob {
        display: block;
    }
}

.title {
    margin: auto;
}

/* END GENERAL SETTINGS */

/* TAB 1  */
.tab1 {
    position: relative;
}

.tab1 .logo {
    width: 11%;
    position: absolute;
    top: 7%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tab1 .slogan {
    width: 42%;
    position: absolute;
    top: 21%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tab1 .list-btn-tab1 {
    width: 29%;
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tab1 .list-btn-tab1 .item-btn {
    width: 46%;
    cursor: pointer;
    transition: 0.35s ease-in-out;
}

.tab1 .list-btn-tab1 .item-btn:hover {
    transform: scale(1.1);
}

.tab1 .list-item-gift {
    width: 45%;
    position: absolute;
    bottom: 13%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tab1 .list-item-gift .item-gift {
    width: 13%;
    position: relative;
}

.tab1 .list-item-gift .item-gift .detail {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.tab1 .list-item-gift .item-gift .detail .gift {
    width: 45%;
    margin: 0 auto;
}

.tab1 .list-item-gift .item-gift .detail .day {
    font-size: 0.9vw;
    font-weight: bold;
    color: #ffffff;
    text-shadow:
        2px 0 #005cbf,
        -2px 0 #005cbf,
        0 2px #005cbf,
        0 -2px #005cbf,
        1px 1px #005cbf,
        -1px -1px #005cbf,
        1px -1px #005cbf,
        -1px 1px #005cbf;
    text-align: center;
}

/* .tab1 .list-item-gift .item-gift .day{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
} */

@media(max-width:1440px) {
    .tab1 .container-gift {
        top: 44%;
    }
}

@media(max-width:1280px) {
    .tab1 .container-gift {
        top: 43%;
    }
}

@media(max-width:767px) {
    .tab1 {
        overflow: hidden;
        margin-top: 0vw;
    }

    .tab1 .logo {
        width: 22%;
        top: 9%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .tab1 .slogan {
        width: 80%;
        position: absolute;
        top: 20%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .tab1 .list-btn-tab1 {
        width: 75%;
        top: 75%;

    }

    .tab1 .list-item-gift {
        width: 85%;
        flex-wrap: wrap;
        justify-content: center;
        bottom: 0;
    }

    .tab1 .list-item-gift .item-gift {
        width: 18%;
        margin: 0px 10px;
    }

    .tab1 .list-item-gift .item-gift .detail .day {
        font-size: 2.4vw;
    }

}

/* TAB 1 END  */

/* TAB 2  */
.tab2 {
    position: relative;
    margin-bottom: 3vw;
}

.tab2 .title-tab2 {
    width: 40%;
    margin: 0 auto;
}

.tab2 .content-tab2 {
    position: relative;
    width: 60%;
    margin: 0 auto;
}
.tab2 .content-tab2 .art-tab2{
    width: 70%;
    position: absolute;
    top: 10%;
    left: 18%;
    z-index: 1;
}
.rotate-shake {
    animation: rotate-shake 0.6s ease-in-out;
}

.tab2 .content-tab2 p {
    position: relative;
    z-index: 2;
    margin-top: -2vw;
    text-align: center;
    font-size: 1.5vw;
    font-style: italic;
    font-weight: 600;
    color: #ffff33;
    /* Màu vàng chanh */
    font-family: Arial, sans-serif;
    text-shadow:
        -1px -1px 0 #0066cc,
        1px -1px 0 #0066cc,
        -1px 1px 0 #0066cc,
        1px 1px 0 #0066cc
}

.tab2 .content-tab2 .list-btn-tab2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    margin: 0 auto;
}

.tab2 .content-tab2 .list-btn-tab2 .item-btn {
    width: 30%;
    cursor: pointer;
    transition: 0.35s ease-in-out;
}

.tab2 .btn-ban {
    width: 6%;
    cursor: pointer;
    position: absolute;
    top: 75%;
    left: 72%;
    animation: zoom 1s infinite linear;
    z-index: 3;
}

.tab2 .btn-sung {
    width: 11%;
    cursor: pointer;
    position: absolute;
    top: 60%;
    left: 69%;
    z-index: 1;
    transition: transform 0.2s ease;
}

.tab2 .skin {
    width: 12%;
    position: absolute;
    top: 15%;
    left: 15%;
}

.tab2 .gzcard {
    width: 10%;
    position: absolute;
    top: 65%;
    left: 25%;
}

.tab2 .new-hero {
    width: 10%;
    position: absolute;
    top: 18%;
    left: 67%;
}

.tab2 .gift-mm {
    width: 9%;
    position: absolute;
    top: 67%;
    left: 58%;
}

.tab2 .item-absolute .background img {
    animation: rotateAnimation 3s infinite linear;
}

.tab2 .item-absolute .content {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tab2 .gif {
    width: 50%;
    position: absolute;
    top: 29%;
    left: 35%;
    transform: rotate(296deg);
    display: none;
    z-index: 3;
}

@media(max-width:767px) {
    .tab2 {
        overflow: hidden;
        margin-top: 8vw;
    }

    .tab2 .title-tab2 {
        width: 80%;
        margin: 0 auto;
    }

    .tab2 .content-tab2 {
        width: 85%;
        padding-top:25vw;
        margin: unset;
    }

    .tab2 .content-tab2 .art-tab2 {
        width: 75%;
        position: absolute;
        top: 35%;
        left: 10%;
        z-index: 1;
    }

    .tab2 .gzcard {
        width: 25%;
        position: absolute;
        top: 19%;
        left: 5%;
    }

    .tab2 .skin {
        width: 28%;
        position: absolute;
        top: 10%;
        left: 33%;
    }

    .tab2 .new-hero {
        width: 26%;
        position: absolute;
        top: 21%;
        left: 66%;
    }

    .tab2 .gift-mm {
        width: 24%;
        position: absolute;
        top: 43%;
        left: 74%;
    }

    .tab2 .content-tab2 p {
        font-size: 4vw;
        text-align: unset;
        margin-left: 25%;
    }

    .tab2 .btn-ban {
        width: 18%;
        cursor: pointer;
        position: absolute;
        top: 84%;
        left: 80%;
    }

    .tab2 .btn-sung {
        width: 30%;
        cursor: pointer;
        position: absolute;
        top: 67%;
        left: 72%;
        z-index: 1;
    }

    .tab2 .gif {
        width: 95%;
        position: absolute;
        top: 43%;
        left: 8%;
        transform: rotate(296deg);
    }

    .tab2 .content-tab2 .list-btn-tab2 {
        width: 80%;
        top: 92%;
        left: 0;
        right: 0;
        margin: unset;
        margin-left: 5%;
    }

    .tab2 .content-tab2 .list-btn-tab2 .item-btn {
        width: 31.5%;
    }
}

/* TAB 2 END  */

/* NAV RIGHT  */
.nav-right {
    position: fixed;
    top: 35%;
    right: 0%;
    width: 11%;
    transition: 0.9s ease-in-out;
    z-index: 99999;
}

.nav-right .list-item {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.nav-right .list-item a {
    display: block;
    color: #0457C3;
    font-size: 0.9vw;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-right .list-item a svg {
    width: 30px;
    height: 30px;
}

.nav-right .list-item .line {
    width: 80%;
    height: 0.75px;
    background-color: #0457C3;
    margin: 0.85vw auto;
}

.nav-right.active {
    transform: translateX(210px);
    transition: 0.5s ease-in-out;
}

.nav-right.active .btn-nav img {
    transition: 0.5s ease-in-out;
}

.nav-right .content-nav-right .list-item a:hover,
.nav-right .content-nav-right .btn-nap a:hover {
    filter: brightness(120%);
    transform: scale(1.02);
    transition: 0.35s ease-in-out;
}


.nav-right .content-nav-right .btn-nav {
    width: 13%;
    position: absolute;
    top: 20%;
    left: -12%;
    animation: zoom 3s infinite;
    cursor: pointer;
}

/* NAV RIGHT END  */

/* POPUP  */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -9995;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: 0.75s ease-in-out;
}

.popup .background-pop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -9996;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(3px);
}

.content-popup {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin: auto;
    /* height: 90%; */
}


.item-popup {
    position: absolute;
    z-index: 9997;
    opacity: 0;
    transform: scale(0);
    transition: 0.45s ease-in-out;
}

.popup .item-popup .content {
    position: absolute;
    top: 20%;
    max-height: 70%;
    bottom: 10%;
    left: 5%;
    right: 5%;
    color: #353252;
    text-align: left;
    overflow: auto;
    font-size: 15px;
}


/* close  */
.popup .item-popup .img-close {
    position: absolute;
    top: 3%;
    right: 4%;
    cursor: pointer;
    width: 6%;
}

/* active  */
.popup .item-popup.active {
    opacity: 1.2;
    transform: scale(1);
    transition: 0.5s ease-in-out;
}

.popup .item-popup.cap-nhat.active {
    opacity: 1.2;
    transform: scale(1);
    transition: 0.5s ease-in-out;
}

.popup.active {
    z-index: 9995;
    opacity: 1.2;
    transition: 0.5s ease-in-out;
}

.popup.active .background {
    z-index: 9996;
}

/* thong-bao  */
.popup .item-popup .thongbao-popup {
    font-size: 1vw;
    margin: 1.5vw 0;
    text-align: center;
    width: 60%;
    position: absolute;
    top: 37%;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #000;
}

.popup .item-popup .thongbao-daily-popup {
    font-size: 1vw;
    margin: 1.5vw 0;
    width: 60%;
    position: absolute;
    top: 45%;
    left: 10%;
    color: #FFF;
}

/* the le  */
.popup .item-popup .thele-popup {
    font-size: 1vw;
    width: 85%;
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.popup .item-popup .thele-popup .title-thele {
    background-color: #005A81;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    color: black;
    font-weight: 700;
    margin-bottom: 1vw;
}

.popup .item-popup .thele-popup .title-thele .col-4 {
    border-right: 2px solid white;
}

.popup .item-popup .thele-popup .title-thele .col-4 button {
    padding: 10px 0;
    color: #FFF;
    border: none;
    background-color: transparent;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    outline: none;
    display: block;
    font-size: 0.9vw;
    font-family: 'exo';
}

.thele-popup p {
    font-family: 'exo';
    text-align: left;
    font-size: 1vw;
    margin-bottom: 0.5rem;
}

.thele-popup p.bold {
    font-weight: bold;
}

.thele-popup p span {
    color: #000000;
    font-weight: bold;
}

.thele-popup ul li {
    font-size: 1vw;
    font-family: 'exo';
}

/* nhan luot  */
.popup .item-popup .nhanluot-popup {
    font-size: 1vw;
    margin: 1.5vw 0;
    text-align: center;
    width: 90%;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1vw;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-1,
.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-2 {
    font-family: 'svn';
    font-size: 0.9vw;
    font-weight: 600;
    text-align: left;
    color: #3C4663;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-1 {
    font-weight: bold;
    width: 40%;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-2 {
    width: 25%;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-3 {
    width: 20%;
    cursor: pointer;
}

/* lich su  */
.popup .item-popup .lichsu-popup {
    position: absolute;
    top: 18%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 85%;
    height: 70%;
    text-align: center;
}

.popup .item-popup .lichsu-popup .title-lichsu {
    background-color: #005A81;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    color: black;
    font-weight: 700;
}

.popup .item-popup .lichsu-popup .title-lichsu .title-history {
    border-right: 2px solid white;
    width: 33%;
}

.popup .item-popup .lichsu-popup .title-lichsu .title-history button {
    padding: 5px 0;
    color: #FFF;
    border: none;
    background-color: transparent;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    outline: none;
    display: block;
    font-size: 0.7vw;
}

.popup .item-popup .lichsu-popup table {
    width: 100%;
    text-align: center !important;
}

.popup .item-popup .lichsu-popup table th.out-game {
    color: white;
    background-color: #F89A2B;
}

.popup .item-popup .lichsu-popup table th {
    color: #000;
    font-family: 'exo';
    background-color: #DBC9B3;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    font-size: 1vw;
}

.popup .item-popup .lichsu-popup table td {
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    color: #000;
    background-color: #e0d9d2;
    padding: 5px 1.7vw !important;
    font-size: 1vw;
    font-family: 'exo';
}


@media(max-width:767px) {

    /* active  */
    .popup .item-popup.active {
        transform: scale(1.3);
    }

    .popup .item-popup .img-close {
        top: 1%;
    }

    /* thong-bao  */
    .popup .item-popup .thongbao-popup {
        font-size: 3vw;
        width: 70%;
        top: 33%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .popup .item-popup .thongbao2-popup {
        top: 55%;
    }

    .popup .item-popup .thongbao2-popup p {
        font-size: 3vw;
    }

    .popup .item-popup .thongbao-nhancode-popup {
        font-size: 3vw;
    }

    .popup .item-popup .thongbao-daily-popup {
        font-size: 2vw;
        margin: 1.5vw 0;
        width: 55%;
        position: absolute;
        top: 43%;
        left: 10%;
        color: #FFF;
    }

    /* the le  */
    .thele-popup p {
        font-family: 'exo';
        text-align: left;
        font-size: 2.7vw;
        margin-bottom: 0.3rem;
    }

    .thele-popup ul li {
        font-size: 2.5vw;
    }

    /* lich su  */
    .popup .item-popup .lichsu-popup {
        width: 90%;
    }

    .popup .item-popup .lichsu-popup table th {
        font-size: 2.3vw;
    }

    .popup .item-popup .lichsu-popup table td {
        font-size: 2vw;
    }

    .popup .item-popup .lichsu-popup .title-lichsu .title-history button {
        font-size: 2vw;
    }

    /* nhan luot  */
    .popup .item-popup .nhanluot-popup {
        top: 18%;
    }

    .popup .item-popup .nhanluot-popup .item-nhan-luot {
        margin-bottom: 1.9vw;
    }

    .popup .item-popup .nhanluot-popup .item-nhan-luot .cot-1,
    .popup .item-popup .nhanluot-popup .item-nhan-luot .cot-2 {
        font-size: 2vw;
    }

    .popup .item-popup .nhanluot-popup .item-nhan-luot .cot-1 svg{
        width: 7px;
    }

    .popup .item-popup .nhanluot-popup .line {
        margin: 1vw 0;
    }

    .popup .item-popup .nhanluot-popup .item-nhan-luot .cot-1 {
        font-weight: bold;
        width: 50%;
    }

    .popup .item-popup .nhanluot-popup .item-nhan-luot .cot-2 {
        width: 25%;
    }

}