* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "svn";
}

@font-face {
  font-family: "svn";
  src: url("../fonts/SVN-Avo.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: 2;
  position: absolute;
  top: unset;
  left: 0;
  right: 0;
}

.header .header_desk {
  width: 55%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
}

.header .header_desk .item-header {
  transition: 0.35s ease-in-out;
}

.header .header_desk .item-header:hover {
  transform: scale(1.05);
}

.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: #f1ede6;
    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: 35vw;
    margin: 0 5px;
  }

  .header .header_mobile .container .link_download a img.android {
    width: 25vw;
    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: 13vw;
    border-radius: 13px;
  }

  .header .header_mobile .logo .name_game p {
    font-weight: 700;
    color: #000;
    font-family: "svn";
    font-size: 3.5vw;
    margin-left: 10px;
    margin-bottom: 0;
  }

  .header .header_mobile .btn_menu_mobile .item_menu {
    background-color: #000;
    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.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: #f1ede6;
    padding: 10px;
    width: 140px;
    height: 130px;
    position: fixed;
    right: 0;
    z-index: 999;
    opacity: 0;
    border: 1px solid #000;
    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: #000;
  }

  .header .header_mobile .menu_move ul li a svg {
    margin: 0px 5px;
    width: 15px;
  }

  .header .header_mobile .menu_move hr {
    background-color: #000;
    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 {
  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;
}

::-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: 8%;
  position: absolute;
  top: 0.4%;
  left: 17%;
  z-index: 2;
}

.tab1 .slogan {
  width: 40%;
  position: absolute;
  top: 15%;
  left: 46%;
}

.tab1 .kiem {
  width: 42.5%;
  position: absolute;
  top: 0%;
  right: 0%;
}

.tab1 .warning-tab1 {
  width: 13%;
  position: absolute;
  top: 20%;
  left: 0;
  z-index: 99;
}

.tab1 .btn-play {
  width: 5%;
  position: absolute;
  top: 48%;
  left: 54%;
  animation: zoom 0.75s infinite linear;
  cursor: pointer;
}

.tab1 .text {
  width: 27%;
  position: absolute;
  top: 77%;
  left: 58%;
  text-align: center;
  font-family: "svn";
  font-size: 0.8vw;
}

@media (max-width: 767px) {
  .tab1 {
    overflow: hidden;
    margin-top: 0vw;
  }

  .tab1 .warning-tab1 {
    width: 15%;
    position: absolute;
    top: 20%;
    left: 0;
    z-index: 99;
  }

  .tab1 .slogan {
    width: 100%;
    position: absolute;
    top: 35%;
    right: -15%;
    left: unset;
  }

  .tab1 .btn-play {
    width: 16%;
    position: absolute;
    top: 78%;
    left: 33%;
  }
  .tab1 .text {
    width: 80%;
    position: absolute;
    top: 96%;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 2.3vw;
  }
}

/* TAB 1 END  */

/* TAB 2  */
.tab2 {
  position: relative;
  background-image: url("../images/bg-tab2-desk.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.tab2 .content-tab2 {
  width: 60%;
  margin: 2vw auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tab2 .content-tab2 .item-gift-tab2 {
  position: relative;
}

.tab2 .content-tab2 .item-gift-tab2 .name-gift {
  width: 100%;
  position: absolute;
  top: 8%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.2vw;
}

.tab2 .content-tab2 .item-gift-tab2 .img-gift {
  width: 70%;
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 1vw;
  filter: grayscale(1);
}

.tab2 .content-tab2 .item-gift-tab2 .img-gift.active {
  filter: grayscale(0);
}

.tab2 .content-tab2 .item-gift-tab2 .desc {
  width: 100%;
  position: absolute;
  top: 79%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.95vw;
}

.tab2 .btn-mo-qua {
  width: 15%;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.tab2 .btn-mo-qua:hover {
  transform: scale(1.05);
}

.tab2 .count-point-tinh-nghia {
  position: relative;
  width: 30%;
  margin: 2vw auto;
}

.tab2 .count-point-tinh-nghia .text-count {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 1.3vw;
  width: 100%;
}

.tab2 .desc {
  width: 60%;
  text-align: center;
  margin: 0 auto;
  font-size: 1.05vw;
}

@media (max-width: 767px) {
  .tab2 {
    overflow: hidden;
    padding-top: 5vw;
    background-image: url("../images/bg-tab2-mobi.webp");
  }
  .tab2 .content-tab2 {
    width: 97%;
    flex-wrap: wrap;
    margin: 6vw auto;
  }
  .tab2 .content-tab2 .item-gift-tab2 {
    width: 47%;
  }
  .tab2 .content-tab2 .item-gift-tab2 .name-gift {
    font-size: 3.5vw;
  }
  .tab2 .content-tab2 .item-gift-tab2 .desc {
    font-size: 3vw;
  }
  .tab2 .btn-mo-qua {
    width: 45%;
  }
  .tab2 .count-point-tinh-nghia {
    width: 100%;
    margin: 4vw 0;
  }
  .tab2 .count-point-tinh-nghia .text-count {
    font-size: 3.5vw;
  }
  .tab2 .desc {
    width: 85%;
    font-size: 3vw;
  }
}

/* TAB 2 END  */

/* TAB 3  */
.tab3 {
  position: relative;
  background-image: url("../images/bg-tab3-desk.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 5vw;
  overflow: hidden;
}

.tab3 .content-tab3 {
  width: 55%;
  margin: 1vw auto;
  position: relative;
  z-index: 2;
}

.tab3 .content-tab3 .row-1 {
  width: 87%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 18%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.tab3 .content-tab3 .row-2 {
  width: 87%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  bottom: 0%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.tab3 .content-tab3 .single-1 {
  width: 16%;
  position: absolute;
  bottom: 25%;
  right: 6%;
}

.tab3 .content-tab3 .single-2 {
  width: 16%;
  position: absolute;
  bottom: 25%;
  left: 6%;
}

.tab3 .content-tab3 .item-gift-tab3 {
  position: relative;
  filter: brightness(90%);
}

.tab3 .content-tab3 .item-gift-tab3.active{
  filter: brightness(110%);
}

.tab3 .content-tab3 .item-gift-tab3 .gift {
  width: 45%;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;

}

.tab3 .content-tab3 .item-gift-tab3 .gift.active {
    filter: brightness(120%);
    transform: scale(1.3);
}

.tab3 .content-tab3 .item-gift-tab3 .gift.special {
  width: 30%;
  top: 7%;
}
.tab3 .content-tab3 .item-gift-tab3 .gift.special2 {
  width: 60%;
  top: 20%;
}

.tab3 .content-tab3 .item-gift-tab3 .name {
  width: 100%;
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.05vw;
}
.tab3 .content-tab3 .item-gift-tab3 .name.special {
  font-size: 0.8vw;
  line-height: 1.7;
  top: 47%;
}

.tab3 .list-content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  width: 27%;
  position: absolute;
  top: 54%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.tab3 .list-content .btn-bat-dau {
  transition: 0.35s ease-in-out;
  cursor: pointer;
}

.tab3 .list-content .btn-bat-dau:hover {
  transform: scale(1.1);
}

.tab3 .list-content .content-left .text {
  text-align: center;
  font-size: 1vw;
  margin-top: 10px;
}

.tab3 .list-content .content-right {
  position: relative;
}

.tab3 .list-content .content-right .text {
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  font-size: 2vw;
  color: #000;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffc943;
  font-family: "Fz VNG Game";
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 60px */
  letter-spacing: -0.88px;
  text-transform: capitalize;
}

.tab3 .list-btn{
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 2vw;
}

.tab3 .list-btn .item-btn{
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.tab3 .list-btn .item-btn:hover{
  transform: scale(1.05);
}

.tab3 .art-left{
  width: 30%;
  position: absolute;
  left: 0%;
  top: 18%;
  z-index: 1;
}
.tab3 .art-right{
  width: 32%;
  position: absolute;
  right: 0%;
  top: 18%;
  z-index: 1;
}
@media (max-width: 767px) {
  .tab3 {
    padding-top: 10vw;
    background-image: url(../images/bg-tab3-mobi.webp);
  }

  .tab3 .title {
    width: 100%;
  }

  .tab3 .content-tab3 {
    width: 100%;
    flex-wrap: wrap-reverse;
  }

  .tab3 .content-tab3 .item-gift-tab3 .name {
    font-size: 2vw;
  }
  .tab3 .content-tab3 .item-gift-tab3 .name.special {
    font-size: 1.6vw;
    top: 49%;
  }
  .tab3 .list-content {
    width: 53%;
    top: 49%;
  }
  .tab3 .list-content .content-left .text {
    font-size: 2.3vw;
  }
  .tab3 .list-content .content-right .text {
    top: 74%;
    font-size: 3vw;
    -webkit-text-stroke-width: 0px;
    letter-spacing: 0;
  }
  .tab3 .list-btn {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 5vw;
  }
  .tab3 .list-btn .item-btn{
    width: 45%;
  }
}

/* TAB 3 END  */

/* TAB 4  */
.tab4 {
  position: relative;
  background-image: url("../images/bg-tab4-desk.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 5vw;
  overflow: hidden;
}

.tab4 .content-tab4 {
  width: 75%;
  position: relative;
  margin: 1vw auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.tab4 .content-tab4 .item-slide{
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.item-slide img {
  width: 100%;
  display: none;   /* ẩn mặc định */
  transition: 0.35s ease-in-out; /* hiệu ứng mượt */
}

.item-slide img.default {
  display: block;
}

@media (max-width: 767px) {
  .tab4 {
    background-image: url(../images/bg-tab4-mobi.webp);
    overflow: hidden;
    padding-top: 10vw;
  }

  .tab4 .content-tab4 {
    width: 100%;
    margin-top: 10vw;
    padding-bottom: 10vw;
  }
}

/* TAB 4 END  */

/* NAV RIGHT  */
.nav-right {
  position: fixed;
  top: 25%;
  right: 0%;
  width: 10%;
  transition: 0.35s ease-in-out;
  z-index: 99999;
}

.nav-right .logo {
  width: 76%;
  position: absolute;
  top: 5%;
  left: 15%;
}

.nav-right .list-item {
  width: 120%;
  position: absolute;
  top: 33%;
  right: -15%;
}

.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: -0.5vw;
  transition: 0.35s ease-in-out;
}

.nav-right.active {
  transform: translateX(180px);
  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: 35%;
  position: absolute;
  top: 20%;
  left: -22%;
  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%;
  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: 5%;
  right: 1%;
  cursor: pointer;
  width: 8%;
}

/* 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: 70%;
  position: absolute;
  top: 28%;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #000;
}

.popup .item-popup .thongbao-popup .message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.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: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #000;
  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: #000;
  font-weight: bold;
}

.thele-popup ul li {
  font-size: 0.9vw;
}

/* nhan luot  */
.popup .item-popup .nhanluot-popup {
  font-size: 1vw;
  margin: 1.5vw 0;
  text-align: center;
  width: 80%;
  height: 65%;
  position: absolute;
  top: 28%;
  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.75vw;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-1,
.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-2 {
  font-size: 1vw;
  text-align: left;
  color: #000;
  font-weight: bold;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-1 {
  width: 40%;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-2 {
  width: 20%;
}

.popup .item-popup .nhanluot-popup .item-nhan-luot .cot-3 {
  width: 28%;
  cursor: pointer;
}

/* lich su  */
.popup .item-popup .lichsu-popup {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  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;
  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;
}

@media (max-width: 767px) {
  /* active  */
  .popup .item-popup.active {
    transform: scale(1.3);
  }

  .popup .item-popup .img-close {
    top: 0%;
    right: 1%;
    width: 12%;
  }

  /* dang-ky-truoc  */
  .popup .item-popup .dangky-popup .btn-dang-ky-truoc-pu {
    top: 65%;
  }

  /* thong-bao  */
  .popup .item-popup .thongbao-popup {
    font-size: 2.75vw;
    width: 70%;
  }

  .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 {
    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%;
    max-height: 65%;
  }

  .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: 30%;
    width: 80%;
    max-height: 60%;
  }

  .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: 2.5vw;
  }

  .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: 55%;
  }

  .popup .item-popup .nhanluot-popup .item-nhan-luot .cot-2 {
    width: 35%;
  }

  .popup .item-popup .nhanluot-popup .item-nhan-luot .cot-2 {
    width: 25%;
  }

  /* doi-thuong  */
  .popup .item-popup .doithuong-popup {
    top: 20%;
    width: 70%;
  }

  .popup .item-popup .doithuong-popup .item-doithuong .name {
    font-size: 2.75vw;
  }

  .popup .item-popup .doithuong-popup .item-doithuong .item-btn {
    width: 30%;
  }

  /* nhap ma  */
  .popup .item-popup .nhapma-popup p {
    font-size: 2.5vw;
    margin-bottom: 10px;
  }

  .popup .item-popup .nhapma-popup input[type="text"] {
    width: 85%;
    height: 27px;
    font-size: 2.75vw;
  }

  .popup .item-popup .nhapma-popup .btn-nhap-ma {
    width: 45%;
    margin: 15px auto;
  }

  /* share  */
  .popup .item-popup .share-popup {
    width: 75%;
    left: 2%;
    top: 28%;
  }

  .popup .item-popup .share-popup .item-manh .count {
    font-size: 2.5vw;
  }

  .popup .item-popup .share-popup .item-manh {
    margin: 0 1vw;
  }

  /* xac nhan  */
  .popup .item-popup .xacnhan-popup {
    width: 70%;
  }

  .popup .item-popup .xacnhan-popup .list-btn {
    width: 80%;
  }

  .popup .item-popup .xacnhan-popup .list-btn .item-btn {
    width: 45%;
  }

  .popup .item-popup .xac-nhan-popup p {
    font-size: 2.5vw;
    margin-bottom: 20px;
  }

  .popup .item-popup .xac-nhan-popup .list-btn {
    width: 80%;
    gap: 15px;
  }

  /* dang nhap  */
  .popup .item-popup .dangnhap-popup {
    position: absolute;
    top: 30%;
    width: 70%;
    height: 70%;
  }

  .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"] {
    width: 75%;
    height: 25px;
    font-size: 2.75vw;
  }

  .popup .item-popup .dangnhap-popup .confirm .des {
    font-size: 2vw;
  }

  .popup .item-popup .dangnhap-popup .confirm input[type="checkbox"] {
    transform: scale(1);
  }

  .popup .item-popup .dangnhap-popup .confirm {
    width: 75%;
  }

  .popup .item-popup .dangnhap-popup .btn-dang-nhap {
    width: 45%;
    margin: 3vw auto;
  }

  /* share  */
  .popup .item-popup .share-nhan-popup p {
    font-size: 2.5vw;
    margin-bottom: 10px;
  }
  .popup .item-popup .share-nhan-popup .list-btn {
    width: 85%;
  }
}
