@import 'bootstrap.min.css';
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@400;700;900&display=swap");
/* @import 'all.min.css'; */
@import 'animate.css';

h1 {
  font-size: 1.9rem;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.1rem;
}

p {
  font-size: 1rem;
}

a {
  font-size: 1rem;
  color: #000;
}

h1, h2, h3 {
  font-weight: 700;
}

.clearfloat:after {
  display: table;
  content: "";
  clear: both;
}

.main-menu > li {
  padding: 4px 23px;
  display: inline-block;
}
.main-menu > li a {
  color: #fff;
}

.hamberger-wrap {
  /* Reset styles */
  /* Main CSS */
  /* Open animation */
  /* Close animation */
}
.hamberger-wrap button {
  all: unset;
}
.hamberger-wrap .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40px;
  height: 25px;
  cursor: pointer;
  padding: 10px 0;
}
.hamberger-wrap .menu::before,
.hamberger-wrap .menu::after {
  content: "";
  position: relative;
  top: 0;
  width: 50%;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.hamberger-wrap .menu::before,
.hamberger-wrap .menu::after,
.hamberger-wrap .menu span {
  display: block;
  height: 5px;
  background-color: #fff;
  border-radius: 12px;
}
.hamberger-wrap .menu span {
  width: 100%;
  margin: 5px 0;
  opacity: 1;
}
.hamberger-wrap .menu::after {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.hamberger-wrap .menu.open::before {
  top: 10px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamberger-wrap .menu.open::after {
  top: -10px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamberger-wrap .menu.open::before,
.hamberger-wrap .menu.open::after {
  width: 100%;
  -webkit-transition: width 0.2s ease-out, top 0.2s ease-in 0.2s, -webkit-transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.9s;
  transition: width 0.2s ease-out, top 0.2s ease-in 0.2s, -webkit-transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.9s;
  -o-transition: width 0.2s ease-out, top 0.2s ease-in 0.2s, transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.9s;
  transition: width 0.2s ease-out, top 0.2s ease-in 0.2s, transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.9s;
  transition: width 0.2s ease-out, top 0.2s ease-in 0.2s, transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.9s, -webkit-transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.9s;
}
.hamberger-wrap .menu.open span {
  opacity: 0;
  -webkit-transition: opacity 0.1s linear 0.9s;
  -o-transition: opacity 0.1s linear 0.9s;
  transition: opacity 0.1s linear 0.9s;
}
.hamberger-wrap .menu.close::before,
.hamberger-wrap .menu.close::after {
  -webkit-transition: top 0.2s ease-out 0.2s, width 0.2s cubic-bezier(0, 0.3, 0.81, 1.24) 0.9s, -webkit-transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  transition: top 0.2s ease-out 0.2s, width 0.2s cubic-bezier(0, 0.3, 0.81, 1.24) 0.9s, -webkit-transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -o-transition: transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95), top 0.2s ease-out 0.2s, width 0.2s cubic-bezier(0, 0.3, 0.81, 1.24) 0.9s;
  transition: transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95), top 0.2s ease-out 0.2s, width 0.2s cubic-bezier(0, 0.3, 0.81, 1.24) 0.9s;
  transition: transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95), top 0.2s ease-out 0.2s, width 0.2s cubic-bezier(0, 0.3, 0.81, 1.24) 0.9s, -webkit-transform 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.hamberger-wrap .menu.close span {
  -webkit-transition: opacity 0.05s linear 0.2s;
  -o-transition: opacity 0.05s linear 0.2s;
  transition: opacity 0.05s linear 0.2s;
}

.close:hover {
  color: #000;
  text-decoration: none;
  opacity: 1;
}

.menu-mobile-blog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transform: translateX(-200%);
      -ms-transform: translateX(-200%);
          transform: translateX(-200%);
  transition: transform 1s ease, -webkit-transform 1s ease;
  opacity: 0;
}
.menu-mobile-blog .mobile-menu-item {
  width: 70%;
  height: 100vh;
  background: #000;
}
.menu-mobile-blog.open {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}

.mobile-menu {
  padding: 120px 15px 0 15px;
}
.mobile-menu > li {
  padding: 5px 0;
  display: inherit;
}
.mobile-menu > li a {
  color: #fff;
}
.mobile-menu > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.308);
}

.fixed-wrap-contact {
  position: fixed;
  bottom: 20px;
  right: 0px;
  z-index: 999999;
}
.fixed-wrap-contact .thumb img {
  width: 330px;
  height: auto;
}
.fixed-wrap-contact a img {
  margin: 0 0 -5px;
  width: 200px;
  height: auto;
}
.fixed-wrap-contact .closee-fixed-wrap {
  position: absolute;
  top: -20px;
  right: 10px;
  cursor: pointer;
}
.fixed-wrap-contact .closee-fixed-wrap i {
  color: red;
  font-size: 2rem;
}
.fixed-wrap-contact.closee {
  -webkit-transform: translateX(120%);
      -ms-transform: translateX(120%);
          transform: translateX(120%);
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.fixed-wrap-contact .eff-fix {
  -webkit-animation: fontbulgertop 0.6s infinite;
          animation: fontbulgertop 0.6s infinite;
}

.close-web-pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.main-nav-av {
  margin: 4rem 0 0;
}

.main-menu-av > li {
  padding: 20px 15px;
  margin: 0;
  display: inline-block;
}
.main-menu-av > li a {
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
}
.main-menu-av li:nth-child(4) {
  margin-right: 140px;
}
.main-menu-av li:nth-child(5) {
  margin-left: 140px;
}

.logo-av {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 300px;
  display: block;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.logo-av img {
  height: 45px;
  width: auto;
  vertical-align: middle;
  margin-top: 10px;
}

@-webkit-keyframes NAME-YOUR-ANIMATION66 {
  0% {
    top: 22px;
  }
  100% {
    top: 25px;
  }
}

@keyframes NAME-YOUR-ANIMATION66 {
  0% {
    top: 22px;
  }
  100% {
    top: 25px;
  }
}

@-webkit-keyframes NAME-YOUR-ANIMATION99 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes NAME-YOUR-ANIMATION99 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bg-head-top img {
  width: 100%;
  height: auto;
}

.main-menu-av > li {
  position: relative;
  z-index: 1;
}

.group-bttn-heading {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.group-bttn-heading .box-group {
  width: 50%;
}
.group-bttn-heading .box-group img {
  width: 100%;
  height: auto;
}
.group-bttn-heading .box-group:first-child {
  padding-left: 15px;
  padding-right: 30px;
}
.group-bttn-heading .box-group:nth-child(2) {
  padding-right: 15px;
  padding-left: 30px;
}

.logo-head-mobile {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 90px;
  z-index: 9;
}
.logo-head-mobile img {
  width: 100%;
  height: auto;
}

.star-pri {
  position: fixed;
  top: 20%;
  left: 20%;
  -webkit-animation: fontbulger 1s infinite;
          animation: fontbulger 1s infinite;
}

.star-sec {
  position: fixed;
  top: 40%;
  left: 10%;
  -webkit-animation: fontbulger 1.6s infinite;
          animation: fontbulger 1.6s infinite;
}

.star-third {
  position: fixed;
  top: 30%;
  right: 10%;
  -webkit-animation: fontbulger 1.2s infinite;
          animation: fontbulger 1.2s infinite;
}

@-webkit-keyframes fontbulger {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fontbulger {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fontbulgertop {
  0% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes fontbulgertop {
  0% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.fixed-footer-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999999999;
}
.fixed-footer-mobile .f-footer-box {
  width: 33.33%;
}
.fixed-footer-mobile .f-footer-box img {
  width: 100%;
  height: 160px !important;
}

.nav-mobile-fixed:after {
  display: none !important;
}
.nav-mobile-fixed .flex-action-mobile {
  position: absolute;
  top: 16px;
  left: 0;
  z-index: 9;
  padding: 0 60px;
}

.fixed-head-mobile {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  padding: 20px 0 0;
  z-index: 9999999;
}
.fixed-head-mobile:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.9);
}

.logo-mobile-eiei {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 130px;
  z-index: 9;
  margin: 0 auto;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}
.logo-mobile-eiei img {
  width: 100%;
  height: auto;
    filter: drop-shadow(5px 1px 2px rgba(0,0,0,10));
}

.pop-login-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.pop-login-wrap span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pop-login-wrap.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pop-forgot-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.pop-forgot-wrap span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pop-forgot-wrap.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pop-register-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.pop-register-wrap span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pop-register-wrap.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pop-detail-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.pop-detail-wrap span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pop-detail-wrap.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.box-login-wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.6);
}
.box-login-wrap .logo-form {
  padding: 0 0 0.5rem;
}
.box-login-wrap .logo-form img {
  width: 220px;
  height: auto;
}

.form-wrap-set p {
  color: #fff;
  margin: 10px 0;
  text-shadow: 2px 2px 4px #000000;
}
.form-wrap-set input {
  border-radius: 15px;
}

.btn-wrap-form {
  margin: 20px 0 0;
  padding: 12px 60px;
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
  border-radius: 30px;
  border: none;
  background: #6a00ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#6a00ff), to(#db00ee));
  background: -o-linear-gradient(top, #6a00ff 0%, #db00ee 100%);
  background: linear-gradient(180deg, #6a00ff 0%, #db00ee 100%);
}

.menu-form {
  padding: 2rem 0;
}
.menu-form > li {
  display: inline-block;
  margin: 0 20px;
}
.menu-form > li a {
  color: #fff;
}
.menu-form > li img {
  width: 50px;
  height: auto;
  margin-right: 5px;
}

.close-form-pop {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 1;
}
.close-form-pop i {
  font-size: 2.5rem;
  color: red;
  cursor: pointer;
}

.nav-tabs {
  padding: 1rem 0 0;
}

.tab-content {
  padding: 0.5rem 0 2rem;
}

.bttn-line-ai {
  margin: 1rem 0 0;
  text-align: center;
  padding: 12px 6px;
  font-size: 0.8rem;
  border-radius: 20px;
  text-shadow: 2px 2px 4px #000000;
  background: #33f021;
  background: -o-linear-gradient(347deg, #33f021 0%, #8ac339 100%);
  background: linear-gradient(103deg, #33f021 0%, #8ac339 100%);
  color: #fff;
}
.bttn-line-ai img {
  width: 20px;
  height: auto;
  margin-right: 5px;
}

.group-form-pop a {
  margin: 20px 0 0;
  color: #fff;
}

.head-flex-form img {
  width: 30px;
  height: auto;
  margin-right: 10px;
}

.nav-item a {
  font-size: 1rem;
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
}

.nav-tabs .nav-link.active {
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
  background: #6a00ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#6a00ff), to(#db00ee));
  background: -o-linear-gradient(top, #6a00ff 0%, #db00ee 100%);
  background: linear-gradient(180deg, #6a00ff 0%, #db00ee 100%);
  border-color: none;
}

.nav-link {
  padding: 0.5rem 1.5rem;
}

.nav-tabs .nav-link:hover {
  background: #6a00ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#6a00ff), to(#db00ee));
  background: -o-linear-gradient(top, #6a00ff 0%, #db00ee 100%);
  background: linear-gradient(180deg, #6a00ff 0%, #db00ee 100%);
  border-color: #fff !important;
}

.nav-link i {
  margin-right: 10px;
}

.donung-btn img {
  margin-right: 5px;
  width: 20px;
  height: auto;
}

.bttn-fixed-top {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  z-index: 9999999;
}
.bttn-fixed-top .l-bttn-wrap {
  text-align: right;
  width: 50%;
  padding-right: 5%;
}
.bttn-fixed-top .r-bttn-wrap {
  text-align: left;
  width: 50%;
  padding-left: 5%;
}

.item-mobile {
  display: none;
}

ul {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

.thumb img {
  width: 100%;
  height: auto;
}
.thumb.-bggreen {
  padding: 0 12rem;
}

a {
  text-decoration: none !important;
}

.rela-wrap {
  position: relative;
  z-index: 1;
}

.main-section {
  margin: 6rem 0 5rem;
}

.bg-in-section {
  padding: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: #9897ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#9897ff), color-stop(50%, #f271ff), to(#9897ff));
  background: -o-linear-gradient(top, #9897ff 0%, #f271ff 50%, #9897ff 100%);
  background: linear-gradient(180deg, #9897ff 0%, #f271ff 50%, #9897ff 100%);
  border-radius: 0px;
}
.bg-in-section.-page {
  padding-bottom: 12rem;
}
.bg-in-section.-page .row .col-md-6:nth-child(even) {
  padding-left: 7px;
}
.bg-in-section.-page .row .col-md-6:nth-child(2n+1) {
  padding-right: 7px;
}
.bg-in-section.-enter {
  padding-bottom: 5px;
}
.bg-in-section .thumb {
  margin: 0 0 10px;
}

.bg-star {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 85%;
  height: 70%;
  display: block;
  margin: 0 auto;
  background-repeat: repeat;
  background-position: center;
  overflow: hidden;
}

.mog-l-item {
  position: fixed;
  top: 25%;
  left: 5%;
  z-index: -1;
  -webkit-animation: MOG-ani 3s infinite;
          animation: MOG-ani 3s infinite;
}
.mog-l-item img {
  width: 70%;
  height: auto;
}

.mog-r-item {
  position: fixed;
  top: 25%;
  right: 3%;
  z-index: -1;
  -webkit-animation: MOG-ani2 3s infinite;
          animation: MOG-ani2 3s infinite;
}
.mog-r-item img {
  width: 70%;
  height: auto;
}

@-webkit-keyframes MOG-ani {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes MOG-ani {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes MOG-ani2 {
  0% {
    top: 25%;
  }
  50% {
    top: 27%;
  }
  100% {
    top: 25%;
  }
}
@keyframes MOG-ani2 {
  0% {
    top: 25%;
  }
  50% {
    top: 27%;
  }
  100% {
    top: 25%;
  }
}

.box-content-wrap .box-pic {
  width: 50%;
}
.box-content-wrap .box-pic.-caption {
  width: 49%;
}

.game-section-wrap {
  padding: 2rem 2rem;
  margin: 0px 0 10px;
}
.game-section-wrap .head-game-section {
  text-align: center;
  padding: 0 0 15px;
}
.game-section-wrap .head-game-section img {
  width: 40%;
  height: auto;
}
.game-section-wrap .list-game-wrap .box-game {
  width: 20%;
}
.game-section-wrap .list-game-wrap .box-game img {
  width: 100%;
  height: auto;
}

.content-word {
  margin: 10px 0 0;
  padding: 2rem 2rem 10rem 2rem;
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 1;
}
.content-word:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}

.form-check {
  padding-top: 1rem;
  text-shadow: 2px 2px 4px #000000;
  color: #fff;
}
.form-check label {
  line-height: 1;
}
.form-check label p {
  text-decoration: underline;
}
.form-check label p a {
  color: #fff;
}

.detail-regis-box {
  padding: 0 0 3rem;
}
.detail-regis-box h2 {
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
}
.detail-regis-box ul {
  margin: 0;
}
.detail-regis-box ul > li {
  display: inherit;
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
}
.detail-regis-box ul > li + li {
  margin-top: 15px;
}

.banner-pc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.banner-pc .thumb {
  width: 100%;
}

.box-login-wrap {
  width: 100% !important;
}

.head-page-in {
  padding: 20px 0;
  margin: 0;
}
.head-page-in h1 {
  margin: 0;
  color: #fff;
}

.game-w-wrap {
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 0 10px;
}

.game-w-wrap .bg:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
}
@-webkit-keyframes sf-fly-by-1 {
  from {
    -webkit-transform: translateZ(-600px);
            transform: translateZ(-600px);
    opacity: 0.5;
  }
  to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 0.5;
  }
}
@keyframes sf-fly-by-1 {
  from {
    -webkit-transform: translateZ(-600px);
            transform: translateZ(-600px);
    opacity: 0.5;
  }
  to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 0.5;
  }
}
@-webkit-keyframes sf-fly-by-2 {
  from {
    -webkit-transform: translateZ(-1200px);
            transform: translateZ(-1200px);
    opacity: 0.5;
  }
  to {
    -webkit-transform: translateZ(-600px);
            transform: translateZ(-600px);
    opacity: 0.5;
  }
}
@keyframes sf-fly-by-2 {
  from {
    -webkit-transform: translateZ(-1200px);
            transform: translateZ(-1200px);
    opacity: 0.5;
  }
  to {
    -webkit-transform: translateZ(-600px);
            transform: translateZ(-600px);
    opacity: 0.5;
  }
}
@-webkit-keyframes sf-fly-by-3 {
  from {
    -webkit-transform: translateZ(-1800px);
            transform: translateZ(-1800px);
    opacity: 0.5;
  }
  to {
    -webkit-transform: translateZ(-1200px);
            transform: translateZ(-1200px);
    opacity: 0.5;
  }
}
@keyframes sf-fly-by-3 {
  from {
    -webkit-transform: translateZ(-1800px);
            transform: translateZ(-1800px);
    opacity: 0.5;
  }
  to {
    -webkit-transform: translateZ(-1200px);
            transform: translateZ(-1200px);
    opacity: 0.5;
  }
}

.game-w .w-box {
  width: 16.66%;
}
.game-w .w-box img {
  width: 100%;
  height: auto;
}

.card {
  margin: 0 0 8px;
  background: -webkit-gradient(linear, left top, right top, from(#6a00ff), to(#da00ee));
  background: -o-linear-gradient(left, #6a00ff 0%, #da00ee 100%);
  background: linear-gradient(90deg, #6a00ff 0%, #da00ee 100%);
}

.btn-link {
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  text-shadow: 2px 2px 4px #000000;
}
.btn-link i {
  width: 50px;
  font-size: 1.4rem;
}

.btn-link:hover {
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
}

.card-body {
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
}
.card-body a {
  color: gold;
}
.card-body img {
  max-width: 100%;
  height: auto;
}

.enter-page-box {
  padding: 3rem;
  padding-bottom: 12rem;
  margin: 0 0 10px;
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
}

.caption-post-wrap {
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
  padding: 0 0 10px;
}

.post-single {
  padding: 2rem;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#6a00ff), to(#da00ee));
  background: -o-linear-gradient(top, #6a00ff 0%, #da00ee 100%);
  background: linear-gradient(180deg, #6a00ff 0%, #da00ee 100%);
  color: #fff;
  text-shadow: 2px 2px 4px #000000;
}
.post-single .thumb-single {
  margin: 0 0 1rem;
}
.post-single .thumb-single img {
  max-width: 50%;
  height: auto;
}
.post-single img {
  margin: 0 0 1rem;
}

.thumb.-login {
  position: relative;
  z-index: 1;
}
.thumb.-login .log-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  z-index: 2;
  opacity: 0;
}
.thumb.-login .load-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  opacity: 0;
}

.blog-flex-item {
  width: 33.33%;
}
.blog-flex-item img {
  width: 100%;
  height: auto;
}

.iframe-wrap iframe {
  width: 100%;
  height: 420px;
}

.box-credit-item {
  padding: 3rem;
  text-align: center;
  background: #6a00ff;
  text-shadow: 2px 2px 4px #000000;
  color: #fff;
}
.box-credit-item a {
  color: gold;
}
.box-credit-item .link-credit-flex {
  padding: 2rem 0;
}
.box-credit-item .link-box-list {
  width: 40%;
  text-align: left;
}

.copyright-wrap {
  padding: 5px 0;
  background: #6a00ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#6a00ff), to(#da00ee));
  background: -o-linear-gradient(top, #6a00ff 0%, #da00ee 100%);
  background: linear-gradient(180deg, #6a00ff 0%, #da00ee 100%);
}
.copyright-wrap p {
  font-size: 1rem;
}

.footer-blog {
  width: 60%;
}
.footer-blog.-pri {
  padding-right: 30px;
}
.footer-blog.-pri .footer-logo {
  width: 30%;
}
.footer-blog.-pri .caption-wrap {
  width: 70%;
}
.footer-blog.-sec {
  width: 40%;
}
.footer-blog h2 {
  color: #fff;
}

.footer-item {
  /* padding: 4rem 0 2rem; */
  color: #fff;
  background: #6a00ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#6a00ff), to(#da00ee));
  background: -o-linear-gradient(top, #6a00ff 0%, #da00ee 100%);
  background: linear-gradient(180deg, #6a00ff 0%, #da00ee 100%);
}
.footer-item p {
  color: #fff;
}

.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 150px;
  height: auto;
}

.load-footer > li {
  display: inline-block;
}
.load-footer > li img {
  width: 180px;
  height: auto;
}
.load-footer > li + li {
  margin-left: 1px;
}

.arkmebet-pic {
  padding: 1rem 0 0;
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
}

.main-footer .slot-footer {
  position: absolute;
  top: -245px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 450px;
  height: 190px;
  display: block;
  z-index: 1;
}
.main-footer .slot-footer img {
  width: 100%;
  height: auto;
}

.title-menu {
  padding: 1rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-menu-av > li {
  display: inline-block;
}
.footer-menu-av > li a {
  color: #fff;
}
.footer-menu-av > li + li {
  margin-left: 20px;
}

.bttn-pri-group {
  padding: 1rem 0 !important;
}
.bttn-pri-group .bttn-main img {
  width: 180px;
  height: auto;
}

@media only screen and (min-width: 767px) {
  .container {
    max-width: 1250px;
    width: 1250px;
  }
}

@media only screen and (max-device-width: 375px) {
  .tab-bg-head .head-av-item {
    padding: 0px 65px !important;
    -webkit-transform: translateY(13px) !important;
        -ms-transform: translateY(13px) !important;
            transform: translateY(13px) !important;
  }
}
/* iPhone 5 Retina regardless of IOS version */
@media (device-height: 568px) and (device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
  .footer-item .container {
    padding: 0;
  }

  .caption-wrap {
    padding: 0 15px;
  }

  .main-section {
    margin: 7rem 0 0 !important;
  }

  .nav-mobile-fixed .flex-action-mobile {
    padding: 0 50px;
  }

  h1 {
    font-size: 1.3rem !important;
  }

  h2 {
    font-size: 1.2rem !important;
  }

  h3 {
    font-size: 1.1rem !important;
  }

  h4 {
    font-size: 1rem !important;
  }

  h5 {
    font-size: 0.9rem !important;
  }

  p {
    font-size: 0.7rem !important;
  }

  .form-login-mobile .form-control {
    font-size: 0.8rem !important;
  }

  .group-bttn-login .btn-primary {
    font-size: 0.8rem !important;
  }

  .group-bttn-login .regis-form-item a {
    font-size: 0.8rem !important;
  }

  .tab-bg-head .head-av-item {
    padding: 0px 50px !important;
    -webkit-transform: translateY(9px) !important;
        -ms-transform: translateY(9px) !important;
            transform: translateY(9px) !important;
  }

  .logo-head-mobile {
    width: 80px !important;
  }

  .form-wrap-set .btn-wrap-form {
    margin: 15px 0 0;
    padding: 8px 40px !important;
    font-size: 0.8rem;
  }

  .menu-form > li a {
    font-size: 0.8rem;
  }

  .group-form-pop a {
    font-size: 0.8rem !important;
  }

  .nav-item a {
    font-size: 0.7rem !important;
  }

  .detail-regis-box ul > li {
    font-size: 0.7rem !important;
  }

  .form-check label {
    line-height: 1;
    font-size: 0.7rem !important;
  }
  .form-check label a {
    font-size: 0.7rem !important;
  }
}
/* (1366x768) WXGA Display */
@media screen and (max-width: 1366px) {
  .box-login-wrap {
    background-size: cover;
  }
}
@media only screen and (max-width: 991px) {
  .iframe-wrap iframe {
    width: 100%;
    height: 200px;
  }

  .load-flex-blog {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .blog-flex-item {
    width: 50%;
  }

  .btn-link i {
    width: 35px;
    font-size: 1.1rem;
  }

  .enter-page-box {
    padding: 1rem;
  }

  .bg-in-section.-page {
    padding-bottom: 3rem;
  }

  .game-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .game-w .w-box {
    width: 33.33%;
  }

  .head-flex-form p {
    font-size: 1rem;
  }

  .btn-wrap-form {
    padding: 10px 40px !important;
  }

  .detail-regis-box {
    padding: 0rem;
  }

  .detail-regis-box ul > li {
    font-size: 0.8rem;
  }

  .bttn-line-ai {
    margin: 0.7rem 0 0;
    font-size: 0.6rem;
  }

  .nav-item a {
    font-size: 0.8rem;
  }

  .nav-link {
    padding: 0.5rem 0.7rem;
  }

  .close-form-pop i {
    font-size: 2rem;
  }

  .menu-form {
    padding: 2rem 0 1rem;
  }

  .menu-form > li {
    display: inline-block;
    margin: 0 10px;
  }

  .menu-form > li img {
    width: 30px;
    height: auto;
    margin-right: 5px;
  }

  .form-wrap-set .btn-wrap-form {
    margin: 15px 0 0;
    padding: 10px 50px;
  }

  .box-login-wrap .logo-form img {
    width: 150px;
    height: auto;
  }

  .form-wrap-set p {
    margin: 5px 0;
    font-size: 1rem;
  }

  .box-login-wrap {
    padding: 1rem;
  }

  .star-pri {
    display: none;
  }

  .star-sec {
    display: none;
  }

  .star-third {
    display: none;
  }

  .mog-l-item {
    display: none;
  }

  .mog-r-item {
    display: none;
  }

  .game-section-wrap .head-game-section img {
    width: 70%;
    height: auto;
  }

  .game-section-wrap {
    padding: 1rem 0.5rem;
  }

  .game-section-wrap .list-game-wrap .box-game {
    width: 33.33%;
  }

  .box-content-wrap .box-pic.-caption {
    width: 100%;
  }

  .content-wrap-main {
    padding: 10px;
    padding-top: 10px;
  }

  .box-content-wrap .box-pic {
    width: 100%;
  }

  .content-word {
    padding: 10px 0.5rem 2rem 0.5rem;
  }

  .copyright-wrap p {
    font-size: 0.8rem;
  }

  .bttn-pri-group .bttn-main img {
    width: 150px;
    height: auto;
  }

  .game-flex-item {
    width: 25%;
  }

  .bg-in-section {
    background: rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0px 0px 5px 5px #fff;
            box-shadow: 0px 0px 5px 5px #fff;
  }

  .tab-bg-head .head-av-item {
    padding: 0px 75px;
    -webkit-transform: translateY(17px);
        -ms-transform: translateY(17px);
            transform: translateY(17px);
  }

  .bg-in-section.-wrap {
    border-radius: 10px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 1rem;
  }

  .credit-free-wrapper {
    margin-top: 0rem !important;
  }

  .head-mobile-av {
    display: block;
  }

  .slot-game-wrap {
    padding: 0 0.5rem 1rem 0.5rem;
  }

  .bg-in-section iframe {
    width: 100%;
    height: 280px;
  }

  .header-page-wrapper {
    font-size: 1.5rem;
  }

  .menu-item-244 {
    background-image: none;
  }

  .menu-item-111 {
    background-image: none;
  }

  .load-box-flex {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .load-box-item {
    width: 50%;
    padding: 15px;
  }

  .seed-social .text {
    display: block;
    pointer-events: none;
    padding-left: 8px;
  }

  .fb-bttn-item {
    padding: 6px 13px;
  }

  .fb-bttn-item {
    margin: 0 0 10px;
  }

  .menu-item-201 a:before {
    top: -10px;
    right: -50px;
  }

  .seed-social {
    margin: 0;
  }

  .flex-share-title {
    border-bottom: 1px solid #fff;
    margin: 0 0 1.5rem;
  }

  .caption-credit-free {
    padding: 0 0 2rem;
  }

  .card-header {
    padding: 0.1rem 0.5rem;
  }

  .btn {
    padding: 0.25rem 0.3rem;
  }

  .caption-credit-free h2 {
    font-size: 1.6rem;
    color: gold;
  }

  .flex-share-title {
    padding: 0 !important;
  }

  .game-flex-item .thumb {
    margin: 0 !important;
  }

  .game-flex-item .thumb {
    padding: 2px;
    margin: 0;
  }

  .detail-post-wrap img {
    max-width: 100%;
    height: auto;
  }

  .regis-item {
    width: 50%;
    padding: 0 0 1rem;
  }

  .caption-regis h4 {
    font-size: 1.1rem;
  }

  .icon-regis img {
    width: 40px;
    height: auto;
  }

  body {
    background-repeat: repeat !important;
  }

  .menu-item-38 {
    display: block !important;
  }

  .menu-item-37 {
    display: block !important;
  }

  .main-footer .slot-footer {
    top: -105px;
    width: 240px;
  }

  .arkmebet-pic {
    width: 100%;
    text-align: center;
    padding: 1rem 0 0;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
  }

  .footer-item {
    padding-bottom: 6rem;
  }

  .flex-load {
    padding: 1rem 0 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .load-footer > li img {
    width: 130px;
    height: auto;
  }

  h1 {
    font-size: 1.7rem;
    margin: 0;
  }

  h2 {
    font-size: 1.5rem;
    margin: 0;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.8rem;
  }

  .footer-blog.-pri .footer-logo {
    width: 100%;
  }

  .footer-blog.-pri {
    padding-right: 0px;
  }

  .footer-blog {
    width: 100%;
  }

  .footer-blog.-pri .caption-wrap {
    width: 100%;
    text-align: center;
    padding: 0 5px;
  }

  .fixed-wrap-contact {
    display: none;
  }

  .main-nav.active .main-logo img {
    text-align: center;
    width: 100px;
    height: auto;
  }

  .main-nav.active .main-logo {
    top: -10px;
    width: 100px;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }

  .item-mobile {
    display: block;
  }

  .site-title {
    display: none;
  }

  .menu-main {
    display: none;
  }

  .bttn-pri-group {
    display: none !important;
  }
  .bttn-pri-group.-show {
    padding: 1rem 0 0 !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer-blog.-sec {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .bg-social-bar {
    display: none;
  }

  .main-logo {
    top: -10px;
    width: 100px;
  }

  .main-logo img {
    width: 100px;
    height: auto;
  }

  .menu-mobile .wrapper {
    width: 55px;
    height: 0px;
    left: 0%;
    top: 0%;
    display: block;
    -webkit-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }

  .menu-mobile .nav {
    width: 55px;
    height: 45px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }

  .menu-mobile .nav span:nth-child(3) {
    right: 0px;
    top: 15px;
  }

  .menu-mobile .nav span:nth-child(4) {
    right: 0px;
    top: 30px;
  }

  .wrap-tab-logo {
    padding: 5px 0;
  }

  .mobile-menu > li a {
    font-size: 1rem;
  }

  .main-section {
    margin: 9rem 0 0;
  }

  .bg-in-section {
    padding: 1rem 0.5rem;
    padding-top: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding-bottom: 0rem;
    margin: 0 0 5rem;
    color: #fff;
  }

  .item-pc {
    display: none;
  }

  .bg-in-section .thumb {
    margin: 0 0 0.5rem;
  }

  .header-page-wrap .title {
    padding: 0 0 1rem;
  }
  .header-page-wrap.-sec h2 {
    font-size: 1.6rem;
  }

  .header-page-wrap img {
    max-width: 100%;
    height: auto;
  }

  .main-nav-av {
    display: none;
  }

  .slot-game-wrap {
    padding: 1rem 0.5rem 1rem 0.5rem;
  }

  .footer-blog h2 {
    color: #fff;
    padding: 0 0 1rem;
  }

  .seed-social {
    text-align: left;
  }

  .credit-free-wrapper .gg-guide {
    font-size: 1rem;
  }

  .credit-free-wrapper .lucky-user {
    padding: 0;
  }

  .lucky-user .title {
    font-size: 1rem;
  }

  .credit-free-wrapper .list-view-box .update-ments {
    position: relative;
    top: 0px;
    right: 0;
  }

  .order-2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .box-form-credit-free {
    padding-top: 2rem;
  }

  .main-section.-pagesec {
    margin: 7rem 0 5rem;
  }

  .header-page-wrap img {
    max-width: 80%;
    height: auto;
  }

  .card-body {
    font-size: 0.8rem;
  }

  .card .btn {
    white-space: normal;
    text-align: left;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .container {
    max-width: 991px;
    width: 991px;
  }

  .main-menu-av {
    text-align: center;
    width: 991px;
    background-size: cover !important;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
  }

  .main-menu-av > li {
    padding: 32px 8px;
    display: inline-block;
  }
  .main-menu-av > li a {
    font-size: 0.8rem;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .container {
    max-width: 700px;
    width: 700px;
  }

  .nav-mobile-fixed .flex-action-mobile {
    padding: 0 120px;
  }
}

@media only screen and (min-width: 1367px) {
  .container {
    max-width: 1080px;
    width: 1080px;
  }
}
/* Portrait */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .container {
    max-width: 991px;
    width: 991px;
  }

  body {
    background-size: cover;
  }

  .main-menu-av {
    text-align: center;
    width: 991px;
    background-size: cover !important;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
  }

  .main-menu-av > li {
    padding: 32px 8px;
    display: inline-block;
  }
  .main-menu-av > li a {
    font-size: 0.8rem;
  }
}
/* Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
  .box-login-wrap {
    width: 100%;
    background-size: cover;
  }
}
/*# sourceMappingURL=style.min.css.map */