html, body {
  padding: 0;
  margin: 0;
}

.game_area_tab {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.game_area_tab .tabs {
  width: 800px;
  margin: 0 auto;
}

.game_area_tab .tabs .tab {
  float: left;
  width: 20%;
  cursor: pointer;
  padding: 10px 20px;
  color: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.game_area_tab .tabs .tab .img {
  width: 100%;
  height: 55px;
  background-repeat: no-repeat;
  background-position: center;
}

.game_area_tab .tabs .tab span {
  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;
}

.game_area_tab .tabs .tab span.best {
  background-image: url(../image/icon_games_popular.svg);
}

.game_area_tab .tabs .tab span.casino {
  background-image: url(../image/icon_games_videop_poker.svg);
}

.game_area_tab .tabs .tab span.board {
  background-image: url(../image/icon_games_blackjack.svg);
}

.game_area_tab .tabs .tab span.slot {
  background-image: url(../image/icon_games_slots.svg);
}
.game_area_tab .tabs .tab span.games {
  background-image: url(../image/icon_games.svg);
}

.game_area_tab .tabs .tab font {
  color: #fff;
  margin-top: 20px;
  font-size: 14px;
}

.game_area_tab .tabs .tab:last-child {
  border-right: 0;
}

.game_area_tab .tabs:after {
  content: '';
  display: block;
  clear: both;
}

.game_area_tab .panels {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  color: #000;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mob8img {display:none;}

@media (max-width: 980px) {

  .mob8img {display:block;}

  .game_area_tab .tabs {
    width: 100%;
  }
  .game_area_tab .tabs .tab {
    padding: 10px;
  }
  .game_area_tab .panels {
    margin: 0;
    padding: 0;
  }
  .game_area_tab .panels .panel .game-area-games {
    padding: 10px;
  }
  .game_area_tab .tabs .tab {
    float: left;
    width: 25%;
    cursor: pointer;
    padding: 10px 20px;
    color: #000;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .game_area_tab .tabs .tab:last-child {display: none;}
}





.game_area_tab .panel {
  display: none;
  -webkit-animation: fadein .8s;
          animation: fadein .8s;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.game_area_tab .panel-title {
  font-size: 1.5em;
  font-weight: bold;
  padding: 15px;
  background-color: #000;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.game_area_tab p {
  line-height: 2;
  font-size: 14px;
  padding: 15px;
}

.game_area_tab img {
  width: 100%;
}

.game_area_tab .radio {
  display: none;
}

.game_area_tab #g_tab1:checked ~ .panels #g_tab1_panel,
.game_area_tab #g_tab2:checked ~ .panels #g_tab2_panel,
.game_area_tab #g_tab3:checked ~ .panels #g_tab3_panel,
.game_area_tab #g_tab4:checked ~ .panels #g_tab4_panel,
.game_area_tab #g_tab5:checked ~ .panels #g_tab5_panel  {
  display: block;
}

.game_area_tab #g_tab1:checked ~ .tabs #g_tab1_tab .img {
  background-image: url(../image/icon_games_popular_hover.svg);
}

.game_area_tab #g_tab2:checked ~ .tabs #g_tab2_tab .img {
  background-image: url(../image/icon_games_videop_poker_hover.svg);
}

.game_area_tab #g_tab3:checked ~ .tabs #g_tab3_tab .img {
  background-image: url(../image/icon_games_blackjack_hover.svg);
}

.game_area_tab #g_tab4:checked ~ .tabs #g_tab4_tab .img {
  background-image: url(../image/icon_games_slots_hover.svg);
}

.game_area_tab #g_tab5:checked ~ .tabs #g_tab5_tab .img {
  background-image: url(../image/icon_games_hover.svg);
}

.game_area_tab:first-child {
  border-right: 0;
}

.game-area-games {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.game-area-games .mobile .game_item {
  float: left;
  width: 13.42%;
  margin-right: 1%;
  background-color: #2f2f2f;
}

.game-area-games .mobile .game_item .img {
  overflow: hidden;
  height: 200px;
}

.game-area-games .mobile .game_item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.game-area-games .mobile .game_item .text {
  padding: 20px;
}

.game-area-games .mobile .game_item .text .text_name {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.game-area-games .mobile .game_item .text .text_name strong, .game-area-games .mobile .game_item .text .text_name span {
  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;
  font-size: 20px;
}

.game-area-games .mobile .game_item .text .text_name strong {
  color: #e9c0ff;
}

.game-area-games .mobile .game_item .text .text_name span {
  color: #fff;
}

.game-area-games .mobile .game_item .text .text_p {
  margin-top: 20px;
}

.game-area-games .mobile .game_item .text .text_p p {
  color: #8a8a8a;
  font-size: 12px;
  text-align: center;
  padding: 0;
  margin: 0;
}

.game-area-games .mobile .game_item .text button {
  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;
  width: 60%;
  height: 36px;
  margin: 0 auto;
  margin-top: 20px;
  background-color: #f74953;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.game-area-games .mobile .game_item .text button:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.game-area-games .mobile .game_item:last-child {
  margin-right: 0;
}

.game-area-games .mobile:after {
  content: '';
  display: block;
  clear: both;
}

@media (max-width: 980px) {
  body {
    overflow-x: hidden;
  }
  .game-area-games {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
  }
  .game-area-games .mobile {
    overflow-x: auto;
    width: 100%;
  }
  .game-area-games .mobile .game_item {
    width: 49%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .game-area-games .mobile .game_item .img {
    height: 153px;
  }
  .game-area-games .mobile .game_item .text {
    padding: 10px;
  }
  .game-area-games .mobile .game_item .text .text_p p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .game-area-games .mobile .game_item .text .text_p, .game-area-games .mobile .game_item .text button {
    margin-top: 10px;
  }
  .game-area-games .mobile .game_item:nth-child(2n) {
    margin-right: 0;
  }
  .game_area_tab .tabs .tab font {
    color: #fff;
    margin-top: 20px;
    font-size: 12px;
}
.game-area-games .mobile .game_item .text .text_name strong{ font-size: 14px;}

}
.pop_text {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #222;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 5px 5px 5px #000;
          box-shadow: 5px 5px 5px #000;
  display: none;
  z-index: 999;
}

.pop_text p {
  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;
  color: #fff;
  font-size: 14px;
}

.pop_text button {
  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;
  outline: none;
  border: 1px solid #151515;
  width: 100%;
  height: 36px;
  margin: 0 auto;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  background-color: #171717;
}

.pop_text button:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.over_body {
  position: relative;
  overflow: hidden;
}

.over_body:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 888;
  background-color: rgba(0, 0, 0, 0.5);
}


/*# sourceMappingURL=new_game.css.map */