@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

* {
  padding: 0;
  margin: 0;
  font-family: "exo";
}

@font-face {
  font-family: "exo";
  src: url("../fonts/Exo2-Regular.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 hihi {
  0% {
    transform: scale(1, 1) translateY(0);
  }

  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-5px);
  }
  32% {
    transform: scale(1.2) translateY(-5px);
  }
  35%,
  40% {
    transform: scale(1.2) translateY(-5px) rotate(-20deg);
  }
  45%,
  50% {
    transform: scale(1.2) translateY(-5px) rotate(20deg);
  }
  60% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  70% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  80% {
    transform: scale(1, 1) translateY(-3px);
  }
  95% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto,
.container {
  padding: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

/* HEADER START */
.header {
  z-index: 5;
  position: absolute;
  top: unset;
  left: 0;
  right: 0;
}

.header .logo-header {
  width: 9%;
  position: absolute;
  top: 0;
  left: 30%;
}

.header .header_desk {
  background-position: center;
  background-repeat: no-repeat;
  background: rgba(0, 0, 0, 0.8);
}

.header .header_desk ul {
  padding: 1vw 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.header .header_desk ul li {
  padding: 10px 1.5vw;
  list-style: none;
  font-family: "exo";
}

.header .header_desk ul .line {
  width: 2px;
  padding: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(227, 198, 154, 1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  min-height: 1.5vw;
  display: block;
  height: 7px;
}

.header .header_desk ul li svg {
  margin: 0px 5px;
}

.header .header_desk ul li a {
  margin-top: -8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "exo";
  color: white;
  font-size: 1.2vw;
}

.header .header_desk ul li a:hover {
  text-decoration: none;
  color: rgba(211, 172, 0, 0.952);
}

.header .header_desk ul li a svg {
  margin: 0px 10px;
  width: 1.2vw;
}

.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: black;
    padding: 10px 0px;
  }

  .header .header_mobile .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .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 .header_mobile .logo {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .header .header_mobile .logo .img_logo {
    width: 12vw;
    border-radius: 5px;
  }

  .header .header_mobile .logo .img_logo img {
    border-radius: 5px;
  }

  .header .header_mobile .logo .name_game p {
    font-weight: 700;
    font-family: "exo";
    font-size: 3.5vw;
    margin-left: 7px;
    margin-bottom: 0;
    color: #ffc971;
  }

  .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,
  .header .header_mobile .btn_menu_mobile.active .center,
  .header .header_mobile .btn_menu_mobile.active .bottom {
    transition: 0.8s ease-in-out;
  }

  .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: 130px;
    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 ul {
    padding: 0;
    margin: 0;
  }

  .header .header_mobile .menu_move ul li {
    list-style: none;
    font-family: "exo";
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
  }

  .header .header_mobile .menu_move ul li svg {
    width: 20px;
    margin: 0 5px;
  }

  .header .header_mobile .menu_move ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: white;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    font-family: "exo";
  }

  .header .header_mobile ul li a svg {
    margin: 0px 5px;
    width: 15px;
  }

  .header .header_mobile .menu_move.active {
    transform: translateX(0);
    opacity: 1;
    transition: 0.8s ease-in-out;
  }
}

/* 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.5vw;
  }

  .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;
}

::-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 .count-down {
  width: 27%;
  position: absolute;
  top: 9%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.tab1 .count-down .text {
  text-align: center;
  color: #fff;
  font-family: "exo";
  font-size: 1.1vw;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tab1 .slogan {
  width: 45%;
  position: absolute;
  top: 2%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.tab1 .warning {
  width: 8%;
  position: absolute;
  top: 15%;
  left: 0%;
}

.tab1 .arts {
  width: 90%;
  position: absolute;
  bottom: 0%;
  left: 8%;
}

.tab1 .cake {
  width: 25%;
  position: absolute;
  bottom: 0%;
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;
}

@media (max-width: 767px) {
  .tab1 {
    overflow: hidden;
  }

  .tab1 .count-down {
    width: 75%;
    top: 13%;
  }

  .tab1 .count-down .text {
    text-align: center;
    color: #fff;
    font-family: "exo";
    font-size: 3.1vw;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .tab1 .slogan {
    width: 120%;
    top: 12%;
    left: -9%;
    z-index: 2;
  }

  .tab1 .warning {
    width: 22%;
    top: 40%;
    z-index: 2;
  }

  .tab1 .arts {
    width: 100%;
    position: absolute;
    bottom: 0%;
    left: 0%;
  }

  .tab1 .cake {
    width: 70%;
    position: absolute;
    left: -7%;
    bottom: -1.5%;
  }
  .tab1 .text-left {
    width: 35%;
    position: absolute;
    left: 0%;
    bottom: 20%;
  }
  .tab1 .text-right {
    width: 35%;
    position: absolute;
    right: 0%;
    bottom: 15%;
  }
}

/* TAB 1 END  */

/* TAB 2  */
.tab2 {
  position: relative;
  margin-bottom: -1px;
}

.tab2 .chia-trang {
  width: 100%;
  position: absolute;
  top: -5%;
}
.tab2 .title-tab2 {
  position: absolute;
  top: 3%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.tab2 .content-tab2 {
  width: 44%;
  position: absolute;
  top: 13%;
  left: 36%;
  z-index: 3;
}

.tab2 .content-tab2 .item-gift {
  width: 92%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.tab2 .content-tab2 .btn-thap-sang {
  width: 33%;
  position: absolute;
  bottom: 7%;
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.tab2 .content-tab2 p {
  font-size: 1.2vw;
  position: absolute;
  bottom: 3%;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0;
}

.tab2 .content-tab2 .btn-thap-sang:hover {
  transform: scale(1.1);
}

.tab2 .content-tab2 .item-gift.gift-1 {
  top: 5%;
}

.tab2 .content-tab2 .item-gift.gift-2 {
  top: 25%;
}

.tab2 .content-tab2 .item-gift.gift-3 {
  top: 45%;
}
.tab2 .content-tab2 .item-gift.gift-4 {
  top: 65%;
}

.tab2 .content-tab2 .item-gift .list-art {
  display: flex;
}

.tab2 .content-tab2 .item-gift .list-art .item-art {
  position: relative;
}

.tab2 .content-tab2 .item-gift .list-art .item-art .count-art {
  width: max-content;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  border-radius: 100px;
  background: #757575;
  color: #fff;
  padding: 0.3vw;
  font-size: 0.8vw;
}

.tab2 .content-tab2 .item-gift .list-art .item-art .count-art.active {
  background-color: #ff9e42;
}

.tab2 .content-tab2 .item-gift .list-btn .item-btn {
  transition: 0.35s ease-in-out;
  cursor: pointer;
}

.tab2 .content-tab2 .item-gift .list-btn .item-btn.btn-nhan-qua {
  filter: grayscale(1);
}

.tab2 .content-tab2 .item-gift .list-btn .item-btn.btn-nhan-qua.active {
  filter: grayscale(0);
}

.art img {
  display: none; /* Ẩn mặc định */
}

.art .def {
  display: block; /* Mặc định hiện ảnh def */
}

.art.active .def {
  display: none; /* Khi có active thì ẩn def */
}

.art.active .act {
  display: block; /* Khi có active thì hiện act */
}

.tab2 .art-tab2 {
  width: 45%;
  position: absolute;
  top: 11%;
  left: 0%;
  z-index: 2;
}

.tab2 .art-tab2 .desc {
  position: absolute;
  top: 46%;
  left: 28%;
  width: max-content;
  background-color: #ffc943;
  color: #000;
  text-align: center;
  font-weight: bold;
  font-size: 1vw;
  padding: 0.5vw;
}

.tab2 .btn-special {
  width: 35%;
  position: absolute;
  top: 52%;
  left: 37%;
  cursor: pointer;
  transition: 0.35s ease-in-out;
  filter: grayscale(1);
}

.tab2 .btn-special.active {
  filter: grayscale(0);
}

.tab2 .btn-special:hover {
  transform: scale(1.1);
}

.tab2 .list-btn-final {
  width: 90%;
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
}
.tab2 .list-btn-final .item-btn {
  transition: 0.35s ease-in-out;
  cursor: pointer;
}

.tab2 .list-btn-final .item-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .tab2 .chia-trang {
    width: 100%;
    position: absolute;
    top: -3%;
    z-index: 3;
  }
  .tab2 .title-tab2 {
    top: 1%;
  }
  .tab2 .art-tab2 {
    width: 100%;
    position: absolute;
    top: 6%;
    left: 0%;
    z-index: 2;
  }

  .tab2 .art-tab2 .desc {
    position: absolute;
    top: 44%;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 2.75vw;
    padding: 1.5vw;
  }

  .tab2 .btn-special {
    width: 43%;
    position: absolute;
    top: 51%;
    left: 0;
    right: 0;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.35s ease-in-out;
  }

  .tab2 .content-tab2 {
    top: 31%;
    width: 100%;
    left: 0;
    z-index: 3;
  }
  .tab2 .content-tab2 .item-gift {
    flex-direction: column;
    width: 97%;
  }

  .tab2 .content-tab2 .item-gift.gift-1 {
    top: 4%;
  }

  .tab2 .content-tab2 .item-gift.gift-2 {
    top: 25%;
  }

  .tab2 .content-tab2 .item-gift.gift-3 {
    top: 46%;
  }
  .tab2 .content-tab2 .item-gift.gift-4 {
    top: 67%;
  }

  .tab2 .content-tab2 .item-gift .list-art .item-art .count-art {
    font-size: 3.2vw;
    padding: 1vw;
  }

  .tab2 .content-tab2 .item-gift .list-btn {
    margin-top: 2.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    width: 70%;
  }
  .tab2 .content-tab2 .btn-thap-sang {
    width: 45%;
    bottom: 7%;
  }

  .tab2 .content-tab2 p {
    font-size: 4.5vw;
    bottom: 3.2%;
  }

  .tab2 .list-btn-final {
    bottom: 1%;
    width: 100%;
    flex-wrap: wrap;
    gap: 2%;
  }
  .tab2 .list-btn-final .item-btn {
    width: 31%;
  }
  .tab2 .list-btn-final .item-btn:nth-child(4),
  .tab2 .list-btn-final .item-btn:nth-child(5) {
    margin-top: 2vw;
  }
}

/* TAB 2 END  */

/* NAV RIGHT  */
.nav-right {
  position: fixed;
  top: 15%;
  right: -1%;
  width: 12%;
  transition: 0.5s ease-in-out;
}

.nav-right .list-item {
  width: 60%;
  position: absolute;
  top: 28%;
  left: 22%;
}

.nav-right .list-item a {
  margin-bottom: 13px;
  display: block;
}

.nav-right .btn-nap {
  width: 65%;
  position: absolute;
  top: 65%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.nav-right .btn-nav {
  width: 20%;
  position: absolute;
  top: 25%;
  left: 0;
  cursor: pointer;
}

.nav-right.active {
  transform: translateX(75%);
  transition: 0.5s ease-in-out;
}

.nav-right.active .btn-nav img {
  transition: 0.5s ease-in-out;
  transform: rotate(180deg);
}

.nav-right .content-nav-right .list-item a,
.nav-right .content-nav-right .btn-nap a {
  transition: 0.35s 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);
}

/* 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);
}

.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: #63463f;
  text-align: left;
  overflow: auto;
  font-size: 15px;
}

/* close  */
.popup .item-popup .img-close {
  position: absolute;
  top: -4%;
  right: -4%;
  cursor: pointer;
  width: 7%;
}

/* active  */
.popup .item-popup.active {
  opacity: 1.2;
  transform: scale(1.1);
  transition: 0.5s ease-in-out;
}
.popup .popup-share.active {
  transform: scale(0.8);
}
.popup .item-popup.popup-share .img-close {
  top: -2%;
  right: -3%;
}
.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: 1.1vw;
  margin: 1.5vw 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
}

.popup .item-popup .thongbao-nhancode-popup {
  font-size: 2vw;
  margin: 1.5vw 0;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  right: 0;
  margin: 0 auto;
  color: #fff;
}

.popup .item-popup .thongbao-popup p,
.popup .item-popup .thongbao-nhancode-popup p {
  font-family: "exo";
}
.popup .item-popup .thongbao-popup .list-btn {
  width: 40%;
  margin: 0 auto;
  margin-top: 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup .item-popup .thongbao-popup .list-btn .item-btn {
  cursor: pointer;
  width: 45%;
}

/* the le  */
.popup .item-popup .thele-popup {
  font-size: 1vw;
  width: 85%;
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #000;
  max-height: 75%;
}

.thele-popup p {
  font-family: "exo";
  text-align: left;
  font-size: 0.9vw;
  margin-bottom: 0.5rem;
}

.thele-popup p.bold {
  font-weight: bold;
}

.thele-popup p span {
  color: #000;
  font-weight: bold;
}

.thele-popup ul li {
  font-size: 0.9vw;
  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: 0.85vw;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-1,
.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-2 {
  color: #3c4663;
  font-size: 1vw;
  text-align: left;
}

.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: 35%;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-3 {
  width: 20%;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-3:hover {
  transform: scale(1.05);
}

.popup .item-popup .nhanluot-popup .line {
  width: 100%;
  height: 1px;
  background-color: #a94000;
  margin: 1.5vw 0;
}

/* lich su  */
.popup .item-popup .lichsu-popup {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 85%;
  max-height: 65%;
  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: black;
  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;
  font-family: "exo";
  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;
  font-family: "exo";
}

/* nhap ma  */
.popup .item-popup .nhapma-popup {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 70%;
  height: 70%;
  text-align: center;
  color: #000;
}

.popup .item-popup .nhapma-popup p {
  font-size: 0.9vw;
  font-family: "exo";
}

.popup .item-popup .nhapma-popup .item-input {
  position: relative;
  width: 65%;
  margin: 0 auto;
}
.popup .item-popup .nhapma-popup input[type="text"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 75%;
  padding: 0 10px;
  background-color: transparent;
  outline: none;
  border: none;
  color: #fff;
  font-size: 0.85vw;
}

.popup .item-popup .nhapma-popup .btn-nhap-ma {
  width: 35%;
  margin: 20px auto;
  cursor: pointer;
}

/* share qua  */
.popup .item-popup .share-popup {
  font-size: 1vw;
  margin: 1.5vw 0;
  width: 95%;
  max-height: max-content;
  height: max-content;
  position: absolute;
  top: 6%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.popup .item-popup .share-popup .list-art {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5vw;
}

.popup .item-popup .share-popup .list-art .item-art {
  position: relative;
  cursor: pointer;
}

.popup .item-popup .share-popup .list-art .item-art .count-art {
  width: max-content;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  border-radius: 100px;
  background: #757575;
  color: #fff;
  padding: 0.3vw;
  font-size: 0.8vw;
}

.popup .item-popup .share-popup .list-art .item-art .count-art.active {
  background-color: #ff9e42;
}

/* xac nhan  */
.popup .item-popup .xac-nhan-popup {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 70%;
  height: 70%;
  text-align: center;
  color: #000;
}

.popup .item-popup .xac-nhan-popup p {
  font-family: "exo";
  font-size: 1vw;
  margin-bottom: 15px;
}

.popup .item-popup .xac-nhan-popup #img_xac_nhan {
  width: 35%;
  margin-bottom: 15px;
}

.popup .item-popup .xac-nhan-popup .list-btn {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.popup .item-popup .xac-nhan-popup .list-btn .item-btn {
  width: 47%;
  cursor: pointer;
  transition: 0.35s ease-out;
}

.popup .item-popup .xac-nhan-popup .list-btn .item-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  /* active  */
  .popup .item-popup.active {
    transform: scale(1.3);
  }
  .popup .item-popup .img-close {
    top: -5%;
    right: 0%;
    width: 10%;
  }
  /* thong-bao  */
  .popup .item-popup .thongbao-popup {
    font-size: 3vw;
  }

  .popup .item-popup .thongbao-nhancode-popup {
    font-size: 3vw;
  }

  /* chon-game  */
  .popup .item-popup .chongame-popup {
    font-size: 2vw;
    top: 20%;
  }

  .popup .item-popup .chongame-popup p {
    font-size: 2.5vw;
    margin-top: 2vw;
  }

  /* the le  */
  .popup .item-popup .thele-popup {
    top: 18%;
    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 {
    margin-bottom: 0.5rem;
  }

  .thele-popup ul li {
    font-size: 2.5vw;
  }

  /* lich su  */
  .popup .item-popup .lichsu-popup {
    width: 90%;
    max-height: 65%;
    top: 20%;
  }

  .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;
  }

  .popup .item-popup .lichsu-popup table td {
    font-size: 2vw;
  }

  /* nhan luot  */
  .popup .item-popup .nhanluot-popup {
    top: 23%;
  }

  .popup .item-popup .nhanluot-popup .item-nhan-luot {
    margin-bottom: 1.5vw;
  }

  .popup .item-popup .nhanluot-popup .item-nhan-luot .cot-1 {
    width: 45%;
    font-size: 2.3vw;
  }
  .popup .item-popup .nhanluot-popup .item-nhan-luot .cot-2 {
    font-size: 2.5vw;
    width: 33%;
  }

  /* nhap ma  */
  .popup .item-popup .nhapma-popup {
    top: 33%;
  }
  .popup .item-popup .nhapma-popup p {
    font-size: 2.75vw;
    margin-bottom: 10px;
  }

  .popup .item-popup .nhapma-popup .item-input {
    width: 85%;
  }

  .popup .item-popup .nhapma-popup input[type="text"] {
    font-size: 2.75vw;
  }

  .popup .item-popup .nhapma-popup .btn-nhap-ma {
    width: 50%;
    margin: 10px auto;
  }

  /* share  */
  .popup .item-popup .share-popup .list-art .item-art .count-art {
    font-size: 2.5vw;
    padding: 1vw;
  }

  /* xac nhan  */
  .popup .item-popup .xac-nhan-popup {
    top: 20%;
    width: 70%;
  }

  .popup .item-popup .xac-nhan-popup .list-btn {
    width: 80%;
  }

  .popup .item-popup .xac-nhan-popup .list-btn .item-btn {
    width: 45%;
  }

  .popup .item-popup .xac-nhan-popup p {
    font-size: 3vw;
    margin-bottom: 10px;
  }
  .popup .item-popup .xac-nhan-popup #img_xac_nhan {
    width: 40%;
    margin-bottom: 10px;
  }

  .popup .item-popup .xac-nhan-popup .list-btn {
    width: 85%;
    gap: 15px;
  }
}
