/* mobile menu button */
button.burger {
  background: transparent;
  border: 0;
}
button.burger:focus {
  outline: none;
}
.burger {
  position: relative;
  width: 30px;
  height: 26px;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transition: all 0.2s, background 0s;
  background: #fff;
}
.burger span:nth-child(2) {
  top: 10px;
}
.burger span:last-child {
  top: 20px;
}

.nav-open span:first-child,
.nav-open span:last-child {
  top: 8px;
}
.nav-open span:first-child {
  transform: rotate(45deg);
}
.nav-open span:last-child {
  transform: rotate(-45deg);
}
.nav-open span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding: 0;
  }
  .main {
    padding: 20px 15px;
  }
  .logo-blk {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  img.logo-img {
    width: calc(100% - 60px);
  }
  .mainmenu {
    display: none;
    position: absolute;
    z-index: 999;
    background: #435D6D;
    width: 100%;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  .header-menu {
    margin-bottom: 15px;
    padding: 0 15px;
  }
  .header-menu li {
    display: block;
    padding: 5px 0;
    border-bottom: solid 1px #2A3D49;
  }
  .header-menu li:first-child {
    border-bottom: none;
    padding-top: 0;
  }
  .header-menu li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .game-blk {
    width: 100%;
  }
  .banner-wrapper {
    display: none;
  }
  .game-itm .game-capt {
    margin-left: 15px;
  }
  .top-ttl {
    font-size: 21px;
  }
  .game-itm#game-itm-1 {
    border: solid 3px #FF8F28;
  }
  .game-itm#game-itm-1 .rank {
    border-top: 70px solid #FF8F28;
  }
  .game-itm#game-itm-1 .game-capt{
    background: #1F292F;
  }
  .game-itm .game-ttl h3 a {
    font-size: 21px;
  }
  .game-itm .game-btn .other-btn {
      padding-left: 15px;
      margin-bottom: 15px;
  }
  .info-button {
    width: 110px;
  }
  /* review modal */
  .review-modal {
    font-size: 14px;
    margin: 0 auto;
    width: 100%;
  }
  .review-modal .modal-header {
    padding-top: 15px;
    padding-left: 0;
  }
  .review-modal .modal-content {
    height: 100vh;
  }
  .review-modal .modal-body {
    padding-left: 15px;
  }
  .review-modal .modal-title {
    font-size: 22px;
  }
  .review-modal .subtitle-section {
    margin-bottom: 20px;
  }
  .review-modal .subtitle-section .short-desc {
    margin-bottom: 20px;
  }
  .review-modal .star-box {
    margin-bottom: 20px;
  }
  .review-modal .subtitle-section h1 {
    font-size: 18px;
  }
  .review-modal h2 {
    font-size: 18px;
  }
  .wlg-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .arrow {
    width: 20px;
    height: 20px;
  }
  .review-modal .game-slide-img .flex-direction-nav a{
    margin-top: -30px;
  }
  .review-modal .close {
    right: 30px;
    top: 36px;
  }
  .review-modal .game-slide-thumb {
    padding: 5px;
  }
  #backToTop {
    right: 15px;
  }
}
