* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'svn';
}

@font-face {
  font-family: "svn";
  src: url("../fonts/SVN-Avo.ttf");
}

@font-face {
  font-family: "svn2";
  src: url("../fonts/SVN-BLACK\ STUFF\ BOLD.OTF");
}

@font-face {
  font-family: "exo";
  src: url("../fonts/Exo2-Regular.ttf");
}

@keyframes wave {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@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(0.9, 0.9, 0.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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.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);
  }
}

@keyframes flip {
  0% {
    transform: rotateX(0);
  }

  50% {
    transform: rotateX(90deg);
    opacity: 0.5;
  }

  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}

@keyframes strong-sway {
  0% {
    transform: rotate(-4deg);
  }

  100% {
    transform: rotate(4deg);
  }
}

/* HEADER START */
.header {
  z-index: 5;
  position: absolute;
  top: unset;
  left: 0;
  right: 0;
}

.header .header_desk {
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgb(0 0 0 / 85%);
}

.header .header_desk ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}

.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: "svn2";
  color: #fff;
  font-size: 1.2vw;
}

.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;
  color: #fff;
}

.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: 32vw;
    margin: 0 5px;
  }

  .header .header_mobile .container .link_download a img.android {
    width: 25vw;
    margin: 0 5px;
  }

  .header_mobile .container .logo {
    margin-left: 5px;
    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: #ffc971;
    font-size: 3.1vw;
    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: 5px;
  }

  .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.5s 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.5s ease-in-out;
  }

  .header .header_mobile .menu_move {
    background-color: black;
    padding: 10px;
    width: 140px;
    height: 125px;
    position: fixed;
    right: 0;
    z-index: 999;
    opacity: 0;
    border: 1px solid white;
    transform: translateX(130px);
    transition: 0.5s ease-in-out;
    border-radius: 10px;
  }

  .header .header_mobile .menu_move.active {
    transform: translateX(0);
    opacity: 1;
    transition: 0.5s 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/bg-content-desk.webp");
  background-position: top;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 767px) {
  .landing {
    background-image: url("../images/bg-content-mobi.webp");
    background-position: top;
    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;
  overflow: hidden;
}

.tab1 .logo {
  width: 11%;
  position: absolute;
  top: 4%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 4;
}

.tab1 .art-left {
  width: 78%;
  position: absolute;
  top: 5%;
  left: -25%;
  z-index: 1;
}

.tab1 .art-right {
  width: 58%;
  position: absolute;
  top: 3%;
  right: -15%;
  z-index: 1;
}

.tab1 .warning-tab1 {
  width: 10%;
  position: fixed;
  top: 20%;
  left: 0;
  z-index: 99;
}

.tab1 .slogan {
  width: 48%;
  position: absolute;
  bottom: 0%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

/* .tab1 .item-art{
  width: 20%;
  margin: 0 auto;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
} */

.tab1 .item-art .bg {
  mix-blend-mode: overlay;
}

.tab1 .item-art .layer {
  width: 80%;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: rotateAnimation 2s infinite linear;
}

.tab1 .item-art.color {
  width: 36%;
}

.tab1 .item-art.color.green {
  position: absolute;
  top: 14%;
  left: 33%;
  width: 12%;
  z-index: 2;
}

.tab1 .item-art.color.pink {
  width: 11%;
  position: absolute;
  top: 45%;
  left: 33%;
  z-index: 2;
}

.tab1 .item-art.color.yellow {
  position: absolute;
  top: 15%;
  right: 35%;
  width: 11%;
  z-index: 2;
}

.tab1 .item-art.color.blue {
  width: 12%;
  position: absolute;
  top: 45%;
  right: 35%;
  z-index: 2;
}

.tab1 .item-art.color .layer {
  width: 80%;
  position: relative;
  top: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: rotateAnimation 2s infinite linear;
}

.tab1 .item-art.color.yellow .layer {
  mix-blend-mode: screen;
}

.tab1 .item-art .plus {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tab1 .item-art.color .plus {
  width: 75%;
}

.tab1 .item-art .art {
  width: 70%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tab1 .item-art.green .art {
  width: 110%;
  left: 48%;
}

.tab1 .item-art.yellow .art {
  width: 90%;
  left: 52%;
}

.tab1 .item-art.pink .art {
  width: 95%;
  top: 50%;
  left: 52%;
}

.tab1 .item-art.blue .art {
  width: 68%;
  top: 52%;
  left: 50%;
}

.tab1 .btn-dang-ky {
  width: 70%;
  position: absolute;
  bottom: -35%;
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.35s ease-in-out;
  animation: zoom 1s infinite linear;
}

.tab1 .content-center {
  width: 17%;
  position: absolute;
  top: 23%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.tab1 .content-center .layer {
  animation: rotateAnimation 2.5s infinite linear;
}

.tab1 .content-center .art {
  width: 115%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-dang-ky-ngay {
  position: absolute;
  top: 58%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
  width: 16%;
  animation: zoom 1.5s infinite linear;
  cursor: pointer;
}

.tab1 .lua {
  width: 100%;
  position: absolute;
  bottom: -15%;
  z-index: 1;
}

@media (max-width: 767px) {
  .tab1 {
    overflow: hidden;
    margin-top: 0vw;
  }

  .tab1 .warning-tab1 {
    width: 15%;
    position: absolute;
    top: 58%;
    left: 0;
    z-index: 99;
  }

  .tab1 .logo {
    width: 25%;
    top: 9%;
  }

  .tab1 .slogan {
    width: 100%;
    bottom: 1%;
  }

  .tab1 .art-left {
    width: 150%;
    top: 38%;
    left: -80%;
    z-index: 1;
  }

  .tab1 .art-right {
    width: 100%;
    top: 39%;
    right: -55%;
    z-index: 1;
  }

  .btn-dang-ky-ngay {
    top: 65%;
    width: 50%;
  }

  .tab1 .content-center {
    width: 55%;
    top: 25%;
  }

  .tab1 .item-art.color.green {
    position: absolute;
    top: 18%;
    left: 2%;
    width: 32%;
    z-index: 2;
  }

  .tab1 .item-art.color.yellow {
    position: absolute;
    top: 18%;
    right: 3%;
    width: 31%;
    z-index: 2;
  }

  .tab1 .item-art.color.pink {
    width: 32%;
    position: absolute;
    top: 52%;
    left: 6%;
    z-index: 2;
  }

  .tab1 .item-art.color.blue {
    width: 33%;
    position: absolute;
    top: 52%;
    right: 8%;
    z-index: 2;
  }

}

/* TAB 1 END  */

/* TAB 2  */
.lt {
  width: 20%;
  position: absolute;
  top: -6%;
  right: -4%;
  z-index: 5;
}

.tab2 {
  padding-top: 5vw;
  margin-bottom: 10vw;
  position: relative;
}

.tab2 .count-register {
  width: 30%;
  margin: 5vw auto;
  position: relative;
}

.tab2 .content-tab2 {
  position: relative;
}

.tab2 .count-register .text-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFECBD;
  font-size: 1.3vw;
  width: 100%;
}

.tab2 .list-gift {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

.tab2 .list-gift .item-gift {
  margin-left: -5vw;
  filter: grayscale(1);
  display: flex;
  flex-direction: column;
  gap: 2vw;
  cursor: pointer;
}

.tab2 .list-gift .item-gift .point {
  width: 10%;
  margin: 0 auto;
}

.tab2 .list-gift .item-gift.active {
  filter: grayscale(0);
}

.tab2 .list-gift .item-gift:first-child {
  margin-left: 0;
}

.tab2 .list-gift .item-gift img {
  display: block;
}

.tab2 .rank-point {
  width: 55%;
  height: 2px;
  background-color: #FFECBD;
  margin: 0 auto;
  position: absolute;
  bottom: 5.1%;
  left: 0;
  right: 0;
  z-index: 1;
}

@media(max-width:767px) {
  .tab2 {
    padding-top: 12vw;
    overflow: hidden;
  }

  .tab2 .count-register {
    width: 80%;
  }

  .tab2 .count-register .text-count {
    font-size: 3.6vw;
  }

  .tab2 .list-gift {
    width: 100%;
    flex-direction: column;
  }

  .tab2 .content-tab2 .list-gift .item-gift {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .tab2 .content-tab2 .list-gift .item-gift .point {
    width: 10%;
    margin-right: -11vw;
  }

  .tab2 .content-tab2 .list-gift .item-gift:nth-child(odd) {
    align-self: flex-end;
    flex-direction: row-reverse;
    margin-right: -4vw;
  }

  .tab2 .content-tab2 .list-gift .item-gift:nth-child(2n) {
    align-self: flex-start;
    margin-left: -11vw;
    margin-top: 6vw;
  }

  .tab2 .content-tab2 .list-gift .item-gift:nth-child(2n) .point {
    margin-left: -11vw;
  }

  .tab2 .rank-point {
    width: 0.5%;
    height: 100%;
    bottom: 0;
  }
}

/* TAB 2 END  */

/* TAB 3  */
.tab3 {
  margin-top: 17vw;
}

.tab3 .title {
  position: relative;
  z-index: 2;
}

.tab3 .content-tab3 {
  width: 80%;
  margin-top: -10vw;
  margin-left: 5vw;
  position: relative;
}

.tab3 .content-tab3 .art-tab3 {
  width: 70%;
  position: absolute;
  top: 6%;
  left: 0;
  z-index: 1;
}

.tab3 .content-tab3 .list-pagi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  width: 40%;
  position: absolute;
  bottom: 6%;
  right: 6%;
  z-index: 2;
}

.tab3 .content-tab3 .list-pagi .item-pagi {
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.tab3 .content-tab3 .list-pagi .item-pagi:hover {
  transform: scale(1.1);
}

.tab3 .content-tab3 .list-pagi .item-pagi.active {
  transform: scale(1.15);
}

.tab3 .content-tab3 .art-tab3 {
  transition: opacity 0.3s ease-in-out;
}

.tab3 .content-tab3 .list-btn {
  width: 25%;
  position: absolute;
  top: 38%;
  right: 5%;
}

.tab3 .content-tab3 .list-btn .item-btn {
  margin-bottom: 1vw;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.tab3 .content-tab3 .list-btn .item-btn:hover {
  transform: scale(1.1);
}

.tab3 .content-tab3 .heart {
  width: 34%;
  position: absolute;
  top: 32%;
  left: 41%;
  z-index: 3;
}

.tab3 .content-tab3 .heart .content-heart {
  width: 70%;
  position: absolute;
  top: 28%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.tab3 .content-tab3 .heart .content-heart p {
  font-size: 1.06vw;
}

.tab3 .content-tab3 .heart .content-heart .rank-count {
  width: 100%;
  background-color: #000;
  border-radius: 15px;
  height: 1.3vw;
  position: relative;
  margin-bottom: 0.5vw;
}

.tab3 .content-tab3 .heart .content-heart .rank-count .count-volume {
  width: 0%;
  position: absolute;
  top: 0;
  left: -0.1px;
  height: 1.3vw;
  border-radius: 15px;
  background-color: #FFECBD;
}

.tab3 .content-tab3 .heart .content-heart .btn-sung-hanh {
  width: 100%;
  cursor: pointer;
  margin-top: 1vw;
  transition: 0.35s ease-in-out;
}

.tab3 .content-tab3 .heart .content-heart .btn-sung-hanh:hover {
  transform: scale(1.1);
}

@media(max-width:767px) {
  .tab3 {
    overflow: hidden;
    margin-top: 25vw;
  }

  .tab3 .content-tab3 {
    width: 100%;
    margin: 0 auto;
  }

  .tab3 .content-tab3 .art-tab3 {
    position: static;
    width: 170%;
    margin-left: -25%;
  }

  .tab3 .content-tab3 .list-pagi {
    position: static;
    width: 100%;
    margin: 0 auto;
    margin-top: -5vw;
  }

  .tab3 .content-tab3 .list-btn {
    position: static;
    width: 115%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8vw;
  }

  .tab3 .content-tab3 .list-btn .item-btn {
    width: 50%;
    margin-left: -15vw;
  }

  .tab3 .content-tab3 .list-btn .item-btn:nth-child(3),
  .tab3 .content-tab3 .list-btn .item-btn:nth-child(4) {
    margin-top: 3vw;
  }

  .tab3 .content-tab3 .heart {
    width: 82%;
    top: 43%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .tab3 .content-tab3 .heart .content-heart p {
    font-size: 3.5vw;
  }

  .tab3 .content-tab3 .heart .content-heart .rank-count,
  .tab3 .content-tab3 .heart .content-heart .rank-count .count-volume {
    height: 3.5vw;
  }
}

/* TAB 3 END  */

/* TAB 4  */
.tab4 {
  margin-top: 1vw;
  margin-bottom: 4vw;
}

.tab4 .content-tab4 {
  width: 48%;
  margin: 0 auto;
  margin-top: 1%;
  margin-bottom: 2%;
  position: relative;
}

.tab4 .mySwiper {
  width: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.mySwiper img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.tab4 .swiper-button-next:after,
.tab4 .swiper-button-prev:after {
  content: "";
}

.tab4 .content-tab4 .swiper-button-next,
.tab4 .content-tab4 .swiper-button-prev {
  width: 7vw;
}

.tab4 .content-tab4 .swiper-button-next {
  top: 48% !important;
  right: -18% !important;
  opacity: 1;
}

.tab4 .content-tab4 .swiper-button-prev {
  top: 48% !important;
  left: -18% !important;
  opacity: 1;
}

.tab4 .content-tab4 .swiper-pagination {
  position: absolute;
  bottom: -13%;
}

.tab4 .swiper-button-next:after,
.tab4 .swiper-button-prev:after {
  content: "";
}

.tab4 .content-tab4 .swiper-pagination-bullet {
  border-radius: unset !important;
  background: url(../images/point-def.webp);
  background-repeat: no-repeat;
  width: 2.5vw;
  height: 2.5vw;
  opacity: 1;
}

.tab4 .content-tab4 .swiper-pagination-bullet-active {
  border-radius: unset !important;
  background: url(../images/point-act.webp);
  background-repeat: no-repeat;
  width: 2.5vw;
  height: 2.5vw;
}

@media (max-width: 767px) {
  .tab4 {
    margin-top: 25vw;
    margin-bottom: 15vw;
  }

  .tab4 .content-tab4 {
    width: 80%;
    margin-top: 10%;
  }

  .tab4 .content-tab4 .swiper-button-next,
  .tab4 .content-tab4 .swiper-button-prev {
    width: 20vw;
  }

  .tab4 .content-tab4 .swiper-button-prev {
    left: -12% !important;
    top: 120% !important;
  }

  .tab4 .content-tab4 .swiper-button-next {
    right: -12% !important;
    top: 120% !important;
  }

  .tab4 .content-tab4 .swiper-pagination-bullet {
    width: 6vw;
    height: 6vw;
    background-size: cover;
  }

  .tab4 .content-tab4 .swiper-pagination-bullet-active {
    width: 6vw;
    height: 6vw;
    background-size: cover;
  }

  .tab4 .content-tab4 .swiper-pagination {
    bottom: -30%;
  }
}

/* TAB 4 END  */

/* NAV RIGHT  */
.nav-right {
  position: fixed;
  top: 15%;
  right: -1%;
  width: 11%;
  transition: 0.35s ease-in-out;
  z-index: 99999;
}

.nav-right .list-item {
  width: 85%;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.nav-right .btn-nap {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -5%;
  transition: 0.35s ease-in-out;
}

.nav-right .list-item a {
  display: block;
  color: #0457c3;
  font-size: 0.9vw;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1vw;
  transition: 0.35s ease-in-out;
}

.nav-right.active {
  transform: translateX(89%);
  transition: 0.35s ease-in-out;
}

.nav-right.active .btn-nav img {
  transition: 0.35s ease-in-out;
}

.nav-right .content-nav-right .list-item a:hover,
.nav-right .content-nav-right .btn-nap:hover {
  filter: brightness(110%);
  transform: scale(1.05);
}

.nav-right .content-nav-right .btn-nav {
  width: 25%;
  position: absolute;
  top: 25%;
  left: -20%;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

/* 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.5s 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%;
  color: #353252;
  text-align: left;
  overflow: auto;
  font-size: 15px;
}

/* close  */
.popup .item-popup .img-close {
  position: absolute;
  top: 5.7%;
  right: 6%;
  cursor: pointer;
  width: 7%;
}

/* active  */
.popup .item-popup.active {
  opacity: 1.2;
  transform: scale(1.05);
  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;
  text-align: center;
  width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #352F31;
}

.popup .item-popup .thongbao-popup img {
  width: 20%;
}

/* dang-ky  */
.popup .item-popup .dangky-popup .btn-dang-ky-truoc-pu {
  width: 25%;
  position: absolute;
  top: 45%;
  left: 35%;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.popup .item-popup .dangky-popup .btn-dang-ky-truoc-pu:hover {
  transform: scale(1.1);
}

/* the le  */
.popup .item-popup .thele-popup {
  font-size: 1vw;
  width: 85%;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #352F31;
  max-height: 60%;
}

.thele-popup p {
  text-align: left;
  font-size: 0.9vw;
  margin-bottom: 0.5rem;
}

.thele-popup p.bold {
  font-weight: bold;
}

.thele-popup p span {
  color: #352F31;
  font-weight: bold;
}

.thele-popup ul li {
  font-size: 0.9vw;
}

/* doi qua  */
.popup .item-popup .doiqua-popup {
  width: 85%;
  height: max-content;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup .item-popup .doiqua-popup .item-doi-qua{
  cursor: pointer;
  filter: grayscale(1);
  transition: 0.35s ease-in-out;
  width: 32%;
}
.popup .item-popup .doiqua-popup .item-doi-qua.active{
  filter: grayscale(0);
}

.popup .item-popup .doiqua-popup .item-doi-qua:hover{
  transform: scale(1.05);
}

/* nhan luot  */
.popup .item-popup .nhanluot-popup {
  font-size: 1vw;
  margin: 1.5vw 0;
  text-align: center;
  width: 75%;
  height: 70%;
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.item-nhan-luot {
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(6.282878398895264px);
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3vw 1vw;
  margin-bottom: 0.7vw;
}

.item-nhan-luot .cot-1 {
  width: 40%;
  color: #fff;
  font-size: 0.8vw;
  text-align: left;
}

.item-nhan-luot .cot-2 {
  width: 45%;
  color: #fff;
  font-size: 0.8vw;
}

.item-nhan-luot .cot-3 {
  font-size: 0.8vw;
  width: 15%;
  color: #fff;
  background: #cf1232;
  text-align: center;
  padding: 0.25vw;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.item-nhan-luot .cot-3:hover,
.btn-dang-nhap:hover {
  transform: scale(1.1);
}

.item-nhan-luot.x {
  position: relative;
}

.item-nhan-luot.x .special {
  color: #FFF;
  border-radius: 6.283px;
  background: #CF1232;
  position: absolute;
  top: -15%;
  left: 5%;
  font-size: 0.55vw;
  padding: 1px 5px; 
}

/* lich su  */
.popup .item-popup .lichsu-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-height: 60%;
  text-align: center;
}

.popup .item-popup .lichsu-popup .title-lichsu {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

.popup .item-popup .lichsu-popup .title-lichsu .title-history {
  border: 1px solid #000;
  border-bottom: none;
  width: 50%;
}

.popup .item-popup .lichsu-popup .title-lichsu .title-history button {
  padding: 5px 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: 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: transparent;
}

.popup .item-popup .lichsu-popup table th {
  color: #000;
  background-color: transparent;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  font-size: 0.9vw;
}

.popup .item-popup .lichsu-popup table td {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  color: #000;
  background-color: transparent;
  padding: 5px 1.7vw !important;
  font-size: 0.8vw;
}


/* dang nhap  */
.popup .item-popup .dangnhap-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}

.popup .item-popup .dangnhap-popup .content-input {
  margin-bottom: 10px;
}

.popup .item-popup .dangnhap-popup .content-input .name {
  font-size: 2.5vw;
}

.popup .item-popup .dangnhap-popup .content-input input[type="text"] {
  background-color: #3B3439;
  border: none;
  outline: 0;
  text-align: center;
  color: #C5C5C5;
  width: 100%;
  height: 2vw;
  border-radius: 5px;
  font-size: 1vw;
  padding: 1.2vw 0;
}

.popup .item-popup .dangnhap-popup .confirm .des {
  font-size: 0.85vw;
}

.popup .item-popup .dangnhap-popup .confirm input[type="checkbox"] {
  width: 1.1vw;
  height: 1.1vw;
  margin-right: 1vw;
}

.popup .item-popup .dangnhap-popup .confirm {
  width: 100%;
  margin: 1vw auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup .item-popup .dangnhap-popup .btn-dang-nhap {
  width: 85%;
  margin: 1vw auto;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.popup .item-popup .dangnhap-popup .btn-dang-nhap:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {

  /* active  */
  .popup .item-popup.active {
    transform: scale(1.4  );
  }

  .popup .item-popup .img-close {
    top: 5.5%;
    right: 6%;
    width: 8%;
  }

  /* thong-bao  */
  .popup .item-popup .thongbao-popup {
    font-size: 2.5vw;
    width: 85%;
  }

  .popup .item-popup .thongbao2-popup {
    top: 55%;
  }

  .popup .item-popup .thongbao2-popup p {
    font-size: 2.75vw;
  }

  .popup .item-popup .thongbao-nhancode-popup {
    font-size: 2.75vw;
  }

  .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  */
  .popup .item-popup .thele-popup {
    width: 85%;
    max-height: 70%;
  }

  .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: 80%;
  }

  .popup .item-popup .lichsu-popup table th {
    font-size: 2vw;
  }

  .popup .item-popup .lichsu-popup table td {
    font-size: 2vw;
  }

  .popup .item-popup .lichsu-popup .title-lichsu .title-history button {
    font-size: 1.9vw;
    padding: 2px 0;
  }

  /* nhan luot  */
  .popup .item-popup .nhanluot-popup {
    top: 20%;
    width: 88%;
    max-height: 82%;
    height: 82%;
  }
  .item-nhan-luot{
    padding: 0.5vw 1vw;
    margin-bottom: 1.3vw;
  }
  .item-nhan-luot .cot-1 ,
  .item-nhan-luot .cot-2 ,
  .item-nhan-luot .cot-3 {
    font-size: 2vw;
  }

  /* dang nhap  */
  .popup .item-popup .dangnhap-popup {
    width: 58%;
  }

  .popup .item-popup .dangnhap-popup .content-input {
    margin-bottom: 10px;
  }

  .popup .item-popup .dangnhap-popup .content-input .name {
    font-size: 2.5vw;
  }

  .popup .item-popup .dangnhap-popup .content-input input[type="text"] {
    height: 5vw;
    font-size: 2.2vw;
  }

  .popup .item-popup .dangnhap-popup .confirm .des {
    font-size: 2vw;
  }

  .popup .item-popup .dangnhap-popup .confirm input[type="checkbox"] {
    width: 2.5vw;
    height: 2.5vw;
    margin-right: 1vw;
  }

  .popup .item-popup .dangnhap-popup .confirm {
    margin: 2vw auto;
  }

  .popup .item-popup .dangnhap-popup .btn-dang-nhap {
    width: 95%;
    margin: 1vw auto;
  }
}