@import url("./font.css");
body {
  background: #000;
  color: white;
}

.text-white {
  color: white !important;
}

.ig-wid {
  width: 100%;
}

.ig-menus {
  display: flex;
  align-items: center;
  gap: 20px;
}

.flex-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ig-header {
  padding: 8px 40px;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.ig-header .logo {
  transition: all .4s;
  width: 50%;
  max-width: 215px;
}

.ig-header .right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ig-header .right .ig-tab-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.ig-header .right .ig-target-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.ig-header .right .ig-target-lang .text {
  position: relative;
  padding-right: 13px;
}

.ig-header .right .ig-target-lang .text::before {
  content: '';
  position: absolute;
  right: 0;
  border: 5px solid transparent;
  border-top-color: white;
  border-bottom: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ig-header .right .ig-menus-show {
  height: 3px;
  width: 30px;
  position: fixed;
  display: block;
  background-color: #0091ea;
}

.ig-header .right .ig-menus-show::before, .ig-header .right .ig-menus-show::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #0091ea;
  top: -8px;
  transition: all .4s;
}

.ig-header .right .ig-menus-show::after {
  top: auto;
  bottom: -8px;
}

.ig-wid-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.ig-wid-banner .row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.ig-wid-banner .row.active {
  display: block;
}

.ig-wid-banner .row.active .slogin h3 {
  animation: fadeInDown 1s;
}

.ig-wid-banner .row.active .slogin p {
  animation: fadeInDown 1s .3s forwards;
}

.ig-wid-banner .row:nth-child(1) .slogin, .ig-wid-banner .row:nth-child(2) .slogin, .ig-wid-banner .row:nth-child(3) .slogin {
  left: auto;
  right: 8%;
  width: 40%;
}

.ig-wid-banner .row:nth-child(3) .slogin {
  left: auto;
  right: 8%;
  width: 24%;
}

.ig-wid-banner .ig-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 48px;
  left: 10px;
  padding: 0 10px;
  cursor: pointer;
}

.ig-wid-banner .ig-banner-arrow.prve {
  left: auto;
  right: 10px;
}

.ig-wid-banner .bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.ig-wid-banner .slogin {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  width: 30%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.ig-wid-banner .slogin h3 {
  font-size: 3vw;
}

.ig-wid-banner .slogin h3 span {
  color: #0091ea;
  font-weight: 600;
}

.ig-wid-banner .slogin p {
  opacity: 0;
}

.ig-lottery-list .row {
  width: 50% !important;
}

.ig-lottery-list .row:first-child {
  width: 50% !important;
}

.ig-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 40px;
}

.ig-title h3 {
  font-size: 36px;
  font-family: "Microsoft Yahei", sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #0091ea;
}

.ig-title hr {
  width: 25px;
  margin: 10px auto 20px auto;
  background-color: #0091ea;
  border: 2px solid #0091ea;
}

.ig-title h4 {
  font-size: 14px;
  font-style: italic;
  padding: 0;
  line-height: 20px;
  font-weight: 600;
  font-family: "Microsoft Yahei", sans-serif;
  color: white;
}

.ig-title p {
  color: #757572;
  font-size: 14px;
  font-style: italic;
  padding: 0;
  line-height: 20px;
  font-weight: 600;
  font-family: "Microsoft Yahei", sans-serif;
}

.ig-title p.sec {
  font-size: 14px;
  color: white;
  font-style: initial !important;
  margin-top: 20px;
  font-weight: normal;
  width: 60%;
  text-align: center;
}

.ig-title ul {
  display: flex;
  gap: 50px;
  padding: 30px 0 0;
}

.ig-title ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ig-title ul li span {
  color: #757572;
  font-size: 30px;
}

.ig-title ul li p {
  font-style: normal;
  line-height: 1;
}

.ig-produce {
  background: white;
  padding: 100px 0;
}

.ig-produce-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ig-produce-list .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.ig-produce-list .row:hover .box .bg {
  opacity: 1;
}

.ig-produce-list .row:hover .box .bg .link {
  transform: translateX(0);
}

.ig-produce-list .row img {
  width: 100%;
}

.ig-produce-list .row .box {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #34495e;
  position: relative;
}

.ig-produce-list .row .box .text {
  color: white;
  font-size: 18px;
  height: calc(100% - 80px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-produce-list .row .box .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100% - 80px);
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .4s;
  z-index: 2;
}

.ig-produce-list .row .box .bg .link {
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft Yahei", sans-serif;
  line-height: normal;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 7px 20px;
  position: relative;
  transform: translateX(-300%);
  transition: all .2s;
}

.ig-produce-list .row .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px 16px;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f5f5f5;
  z-index: 1;
}

.ig-produce-list .row .info h3 {
  font-size: 20px;
  line-height: normal;
  color: #333333;
  font-weight: 600;
}

.ig-produce-list .row .info p {
  font-size: 12px;
  line-height: normal;
  color: #757572;
  padding: 2px 0;
}

.ig-game {
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0 160px;
}

.ig-game-info {
  width: 60%;
  margin: 0 auto;
}

.ig-game-nav {
  display: flex;
  align-items: center;
  border-bottom: 3px solid #fff;
}

.ig-game-nav li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  position: relative;
}

.ig-game-nav li.hover {
  color: #0091ea;
}

.ig-game-nav li.hover::after {
  content: '';
  border-bottom: 3px solid #0091ea;
  margin-bottom: -3px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.ig-game-main {
  display: flex;
}

.ig-game-main .left,
.ig-game-main .right {
  font-size: 28px;
  padding: 10px 0;
}

.ig-game-main .left .icon-qoute {
  display: block;
  position: relative;
  transform: rotateY(190deg);
}

.ig-game-main .center {
  flex: 1;
  position: relative;
}

.ig-game-main .center .info {
  padding: 20px;
  text-align: justify;
  opacity: 0;
  display: none;
  height: 100px;
  box-sizing: content-box;
  font-size: 14px;
}

.ig-game-main .center .info.mainHover {
  opacity: 1;
  z-index: 1;
  animation: zoomDom .4s forwards;
  display: block;
}

.ig-game-main .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@keyframes zoomDom {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.ig-service {
  background: white;
  padding: 100px 0;
}

.ig-service-list {
  width: 84%;
  margin: 0 auto;
  display: flex;
  color: #757572;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 30px 0;
}

.ig-service-list li {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  padding: 20px;
  overflow: hidden;
}

.ig-service-list li:hover {
  background: #0091ea;
}

.ig-service-list li:hover .icon {
  animation: moveY .6s forwards;
}

.ig-service-list li:hover h3,
.ig-service-list li:hover p {
  color: white;
  animation: zoomDom .4s forwards;
}

.ig-service-list li .icon {
  width: 150px;
  height: 150px;
  background-size: 525%;
  margin: 0 auto;
  position: relative;
}

.ig-service-list li .icon1 {
  background-position: -158px 7px;
}

.ig-service-list li .icon2 {
  background-position: -645px 7px;
}

.ig-service-list li .icon3 {
  background-position: 2px 7px;
}

.ig-service-list li .icon4 {
  background-position: -328px 7px;
}

.ig-service-list li .icon5 {
  background-position: -487px 7px;
}

.ig-service-list li h3 {
  font-size: 22px;
  color: #333333;
}

.ig-service-list li p {
  font-size: 14px;
}

@keyframes moveY {
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  70% {
    opacity: 1;
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  100% {
    transform: none;
  }
}

.ig-only {
  padding: 100px 0 10px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ig-only .ig-title {
  width: 44%;
  text-align: center;
  color: white;
  margin: 0 auto;
}

.ig-only .ig-title p {
  color: white;
  font-style: normal;
  font-weight: normal;
}

.ig-only .ig-title p i {
  font-weight: 600;
}

.ig-only-main {
  text-align: center;
  position: relative;
}

.ig-only-main .img {
  max-width: 100%;
  width: 90%;
  height: auto;
  margin: 0 auto;
}

.ig-only-main .play-icon {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
}

.ig-only-main .play-icon img {
  cursor: pointer;
  margin: 0 auto;
}

.ig-only-main .play-icon img:hover {
  animation: rubberBand 1s;
}

@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  60% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.ig-partner {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.ig-partner-ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 80%;
  margin: 20px auto;
}

.ig-partner-ul li {
  background-repeat: no-repeat;
  background-size: 80%;
  display: block;
  width: 150px;
  height: 60px;
  margin: 15px auto;
  cursor: pointer;
}

.ig-partner-ul li.ag {
  background-position: -4px 4px;
}

.ig-partner-ul li.idn {
  background-position: -200px 3px;
}

.ig-partner-ul li.pt {
  background-position: -406px 7px;
}

.ig-partner-ul li.mg {
  background-position: -618px 5px;
}

.ig-partner-ul li.netent {
  background-position: -826px 8px;
}

.ig-partner-ul li.entwine {
  background-position: -6px -91px;
}

.ig-partner-ul li.quickspin {
  background-position: -199px -91px;
}

.ig-partner-ul li.deluxe {
  background-position: -405px -91px;
}

.ig-partner-ul li.ggnet {
  background-position: -615px -91px;
}

.ig-partner-ul li.ebet {
  background-position: -820px -91px;
}

.ig-partner-ul li.play-go {
  background-position: -2px -180px;
}

.ig-partner-ul li.hy {
  background-position: -195px -180px;
}

.ig-partner-ul li.qtech {
  background-position: -357px -169px;
}

.ig-partner-ul li.genesis {
  background-position: -555px -169px;
}

.ig-partner-ul li.toptrend {
  background-position: -820px -183px;
}

.ig-partner-ul li.oriental {
  background-position: -9px -281px;
}

.ig-partner-ul li.dreamtech {
  background-position: -200px -283px;
}

.ig-partner-ul li.oneworks {
  background-position: -402px -283px;
}

.ig-partner-ul li.yoplay {
  background-position: -622px -283px;
}

.ig-partner-ul li.pragma {
  background-position: -814px -283px;
}

.ig-partner-ul li.lbkeno {
  background-position: -9px -387px;
}

.ig-partner-ul li.ibbet {
  background-position: -196px -385px;
}

.ig-partner-ul li.playson {
  background-position: -407px -386px;
}

.ig-partner-ul li.jdb {
  background-position: -618px -385px;
}

.ig-partner-ul li.allbet {
  background-position: -826px -378px;
}

.ig-partner-ul li.keno {
  background-position: -6px -475px;
}

.ig-partner-ul li.inplay {
  background-position: -201px -476px;
}

.ig-partner-ul li.bbn {
  background-position: -394px -475px;
}

.ig-partner-ul li.lightbox {
  background-position: -613px -473px;
}

.ig-partner-ul li.inte {
  background-size: 600%;
  background-position: -753px -433px;
}

.ig-partner-ul li.sunbet {
  background-position: 0px -569px;
}

.ig-partner-ul li.pinnacle {
  background-position: -204px -569px;
}

.ig-partner-ul li.thunder {
  background-position: -404px -568px;
}

.ig-partner-ul li.sa {
  background-position: -619px -572px;
}

.ig-partner-ul li.nyx {
  background-position: -751px -527px;
  background-size: 600%;
}

.ig-partner-ul li.playstar {
  background-position: 0px -721px;
  background-size: 600%;
}

.ig-partner-ul li.booongo {
  background-position: -193px -721px;
  background-size: 600%;
}

.ig-partner-ul li.esb {
  background-position: -362px -721px;
  background-size: 600%;
}

.ig-partner-ul li.one88bet {
  background-position: -557px -722px;
  background-size: 600%;
}

.ig-partner-ul li.habanero {
  background-position: -751px -721px;
  background-size: 600%;
  height: 80px;
}

.ig-footer {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 40px 0 0;
}

.ig-footer-wid {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.ig-footer .left {
  width: 33%;
}

.footer-title {
  font-family: "Microsoft Yahei", sans-serif;
  font-size: 24px;
  color: #fff;
}

.footer-line {
  width: 25px;
  margin: 10px 0 20px 0;
  text-align: left;
}

.footer-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 20px;
}

.footer-icons li {
  text-align: center;
  font-size: 20px;
}

.footer-icons li .icon-fb {
  color: #3b5998;
}

.footer-icons li .icon-twit {
  color: #00aced;
}

.footer-icons li .icon-glus {
  color: #d34836;
}

.footer-icons li .icon-linkin {
  color: #0077b5;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}

.footer-contact li {
  display: flex;
  width: 50%;
  gap: 16px;
}

.footer-contact li .info {
  line-height: 1.25;
}

.footer-contact li:first-child {
  width: 100%;
}

.footer-contact li .icon {
  font-size: 18px;
  line-height: 1.5;
}

.footer-contact li a {
  font-size: 12px;
  line-height: 1;
}

.footer-two-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-two-list .row .text {
  font-size: 14px;
}

.footer-about {
  width: 36%;
  display: flex;
  flex-direction: column;
}

.footer-sec {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.footer-sec img {
  margin-top: 20px;
}

.footer-sec p {
  font-size: 12px;
}

.line-white {
  width: 1px;
  background: white;
  display: flex;
  margin: 0 30px;
}

.footer-navs {
  width: 14%;
  padding-left: 4%;
}

.footer-info-wid {
  background-color: #07070c;
  padding: 10px 0;
  margin-top: 40px;
}

.footer-info-text {
  width: 75%;
  margin: 0 auto;
  color: rgba(117, 117, 114, 0.42);
  font-size: 12px;
  text-align: center;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1600px) {
  .ig-wid-banner {
    height: 800px;
  }
}

@media (max-width: 1400px) {
  .ig-wid-banner,
  .ig-slot {
    height: 700px !important;
  }
}

@media (max-width: 1199px) {
  .ig-produce-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ig-service-list {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
  .ig-game-info {
    width: 90%;
  }
  .ig-partner-ul {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .ig-slot-list .row {
    width: 50% !important;
  }
  .ig-slot-list .row:first-child {
    width: 100% !important;
  }
  .ig-slot-list .top5-sports {
    display: flex !important;
    flex-wrap: wrap;
  }
  .ig-slot-list .top5-sports .row {
    width: 50% !important;
  }
  .ig-slot-list .top5-sports .row:first-child {
    width: 50% !important;
  }
  .ig-slot-list .top5-sports .row:nth-child(3) {
    order: 6;
    width: 100% !important;
  }
  .ig-chess-list .row {
    width: 100% !important;
  }
  .ig-casino {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ig-video-box {
    width: 90% !important;
  }
}

@media (max-width: 1024px) {
  .ig-navs-list {
    width: 330px !important;
  }
  .ig-navs-list a {
    padding: 10px 50px !important;
  }
  .ig-navs-list a h4 {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 750px) and (min-width: 320px) {
  .ig-navs-list {
    width: 250px !important;
  }
  .ig-navs-list a {
    padding: 10px 50px !important;
  }
  .ig-navs-list a h4 {
    font-size: 18px !important;
  }
}

@media (max-width: 991px) {
  .ig-wid-banner,
  .ig-slot {
    height: 500px !important;
  }
  .ig-title h3 {
    font-size: 24px !important;
  }
  .ig-title p {
    font-size: 12px !important;
  }
  .ig-produce-list .row .info h3 {
    font-size: 14px !important;
  }
  .ig-lottery {
    display: flex !important;
    flex-direction: column;
    height: auto !important;
    gap: 50px;
  }
  .ig-lottery .left {
    max-width: 87%;
  }
  .ig-lottery .ig-slot-arrow {
    position: relative !important;
    left: auto !important;
  }
  .ig-lottery-list .row {
    width: 100% !important;
  }
  .ig-lottery-list .row:first-child {
    width: 100% !important;
  }
  .ig-lottery-list .row:last-child {
    display: block !important;
  }
  .ig-poker-item .main li {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .ig-wid-banner {
    height: 400px;
  }
  .ig-wid-banner .slogin {
    width: calc(100% - 90px) !important;
    left: 50% !important;
    transform: translate(-50%, -20%);
  }
  .ig-wid-banner .slogin p {
    font-size: 14px;
  }
  .ig-wid-banner .bg {
    opacity: .4;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .ig-footer-wid {
    flex-direction: column;
    gap: 30px;
  }
  .ig-footer-wid .left,
  .ig-footer-wid .footer-navs,
  .ig-footer-wid .footer-about {
    width: 100%;
  }
  .ig-slot-list .row .play {
    height: calc(100% - 50px) !important;
  }
  .ig-slot-list .row .info {
    height: 50px !important;
    padding: 5px 10px !important;
    line-height: 1 !important;
  }
  .ig-slot-list .row .info strong {
    font-size: 14px !important;
  }
  .ig-slot-list .row:last-child {
    display: none !important;
  }
  .ig-chess-list .row:last-child,
  .ig-sports .row:last-child,
  .ig-casino .row:last-child,
  .ig-lottery-list .row:last-child {
    display: block !important;
  }
}

@media (max-width: 567px) {
  .ig-header {
    padding: 8px 20px !important;
  }
  .ig-header .logo {
    width: 40%;
  }
  .ig-wid-banner .row.active .slogin h3 {
    font-size: 18px !important;
  }
  .ig-wid-banner p {
    font-size: 12px !important;
  }
  .ig-produce-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .ig-produce-list .row:last-child {
    display: none;
  }
  .ig-produce,
  .ig-game,
  .ig-service,
  .ig-only,
  .ig-partner {
    padding: 40px 0 !important;
  }
  .ig-title {
    padding-bottom: 20px;
  }
  .ig-game-info {
    width: 94% !important;
  }
  .ig-game-nav li {
    font-size: 12px !important;
  }
  .ig-game-main .left,
  .ig-game-main .right {
    font-size: 18px !important;
  }
  .ig-game-main .center .info {
    padding: 16px !important;
    font-size: 12px !important;
    height: 160px !important;
  }
  .ig-only .ig-title {
    width: 80%;
  }
  .ig-only-main .play-icon img {
    width: 40%;
  }
  .ig-partner-ul {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
  }
  .ig-slot-list .row {
    width: 100% !important;
  }
  .ig-slot-list .row:first-child {
    width: 100% !important;
  }
  .ig-slot {
    height: 400px !important;
  }
  .ig-slot-list .top5-sports .row {
    width: 100% !important;
  }
  .ig-slot-list .top5-sports .row:first-child {
    width: 100% !important;
  }
  .ig-casino {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.ig-navs {
  position: relative;
  z-index: 102;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ig-navs.hover .ig-menus-show {
  background: none;
}

.ig-navs.hover .ig-menus-show::before {
  transform: rotate(-45deg);
  bottom: auto;
  top: auto;
}

.ig-navs.hover .ig-menus-show::after {
  transform: rotate(45deg);
  top: auto;
  bottom: auto;
}

.ig-navs-list {
  position: fixed;
  background: #0f1112;
  width: 420px;
  height: 100%;
  z-index: 101;
  overflow: hidden;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  top: 0;
  right: -420px;
}

.ig-navs-list ul {
  height: 100vh;
  padding-top: 95px;
  overflow-y: auto;
}

.ig-navs-list li {
  border-top: 1px solid #333333;
}

.ig-navs-list li .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ig-navs-list a {
  color: #fff;
  display: block;
  padding: 15px 50px;
  flex: 1;
}

.ig-navs-list a h4 {
  font-size: 24px;
  font-weight: bold;
}

.ig-navs-list a p {
  font-size: 14px;
  font-style: italic;
}

.ig-navs-list .list {
  display: none;
}

.ig-navs-list .list a {
  border-top: 1px solid #272727;
}

.ig-navs-list .arrow {
  font-size: 40px;
  margin-right: 10%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}

.ig-navs-list .arrow.hover {
  transform: rotate(90deg);
}

.ig-pop-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}

.ig-slot {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ig-slot .ig-slot-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 64px;
  font-weight: 300;
}

.ig-slot-game {
  padding: 100px 0;
  background: white;
}

.ig-slot-list {
  display: block;
  overflow: hidden;
}

.ig-slot-list .top5 {
  display: block;
  overflow: hidden;
}

.ig-slot-list .row {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 25%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ig-slot-list .row:first-child {
  width: 50%;
}

.ig-slot-list .row:hover .play {
  opacity: 1;
  box-shadow: inset 0px 0px 150px 500px rgba(0, 0, 0, 0.9);
}

.ig-slot-list .row:hover .play span {
  transform: translateX(0);
}

.ig-slot-list .row:hover img {
  transform: scale(1.1);
}

.ig-slot-list .row .play {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: calc(100% - 70px);
  color: white;
  opacity: 0;
  z-index: 2;
  transition: all .5s ease;
}

.ig-slot-list .row .play span {
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid white;
  transform: translateX(-300%);
  transition: all .4s;
  font-size: 14px;
}

.ig-slot-list .row .text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: calc(100% - 70px);
  color: white;
  font-size: 20px;
}

.ig-slot-list .row img {
  width: 100%;
  transition: all .5s ease;
}

.ig-slot-list .row .info {
  position: absolute;
  height: 70px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #f5f5f5;
  z-index: 1;
  padding: 12px 16px;
}

.ig-slot-list .row .info strong {
  font-size: 20px;
  line-height: normal;
  color: #333333;
  font-weight: 600;
}

.ig-slot-list .row .info p {
  font-size: 12px;
  line-height: normal;
  color: #757572;
  padding: 2px 0;
}

.ig-chess-list .row {
  width: 50%;
}

.top5-sports .row {
  width: 25%;
}

.top5-sports .row:first-child {
  width: 25%;
}

.top5-sports .row:nth-child(3) {
  width: 50%;
  float: right;
}

.ig-casino {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ig-casino .row {
  width: 100% !important;
}

.ig-fishing {
  height: 720px;
  position: relative;
  overflow: hidden;
}

.ig-fishing .row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: all .5s;
  transform: scale(1.1);
  display: inline-block;
}

.ig-fishing .row.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

.ig-fishing .row .ig-title {
  margin-top: 140px;
}

.ig-fishing .row .ig-title hr {
  border: 2px solid white;
}

.ig-fishing .row .ig-title h3,
.ig-fishing .row .ig-title p {
  color: white;
}

.ig-fishing-sec {
  position: absolute;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  text-align: center;
  font-size: 14px;
}

.ig-fishing .ig-banner-arrow {
  background: rgba(0, 0, 0, 0.3);
}

.ig-lottery {
  background-color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.ig-lottery .left,
.ig-lottery .right {
  height: 100%;
}

.ig-lottery .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ig-lottery .right {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.ig-lottery .right .ig-title p,
.ig-lottery .right .ig-title h4 {
  color: #757572;
}

.ig-lottery .ig-slot-arrow {
  color: #0091ea;
}

.ig-poker {
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.ig-poker-item {
  width: 100%;
  overflow: hidden;
  background-color: #1e1d23;
}

.ig-poker-item .item {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ig-poker-item .item .ig-title p {
  color: white;
}

.ig-poker-item .box {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ig-poker-item .main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ig-poker-item .main .icon-mcompose {
  color: #0091ea;
}

.ig-poker-item .main li {
  white-space: nowrap;
}

.ig-poker-scroll {
  position: relative;
  transition: all .4s;
  display: flex;
  flex-direction: column;
}

.ig-poker-scroll-right .item:first-child {
  order: 2;
}

.ig-poker-navs {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ig-poker-navs span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  display: block;
}

.ig-poker-navs span.hover {
  background: #0077b5;
}

.ig-uptop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #0077b5;
  width: 44px;
  height: 44px;
  display: none;
  text-align: center;
  line-height: 44px;
  color: white;
  z-index: 10;
  font-size: 40px;
  cursor: pointer;
}

.ig-video {
  position: fixed;
  z-index: 105;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background: rgba(0, 0, 0, 0.7);
}

.ig-video-box {
  width: 60%;
  display: block;
  background-color: #000;
  border: 1px solid #1f1f1f;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ig-video-box .ig-close-video {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 20px;
}
