/* Responsive  Styles */

.mobile {
  display: none !important;
}

.left-menu-btn {
  width: 35px;
  background-color: transparent;
  border: none;
  padding: 0;
  position: relative;
  z-index: 100;
}

.left-menu-btn span {
  width: 100%;
  display: block;
  height: 2px;
  background-color: #8bbf8f;
  margin: 0 0 9px;
  border-radius: 2px;
}

.left-menu-btn span:first-child {
  position: relative;
  margin-top: 0;
  top: 0;
  transition: top 0.3s 0.3s, transform 0.3s 0s;
}

.left-menu-btn span:nth-child(2) {
  width: calc(100% - 8px);
  opacity: 1;
  transition: opacity 0.3s;
  margin-right: auto;
}

.left-menu-btn span:last-child {
  margin-bottom: 0;
  position: relative;
  top: 0;
  transition: top 0.3s 0.3s, transform 0.3s 0s;
}

.left-menu-btn.opened span:first-child {
  width: 100%;
  top: 11px;
  transform: rotate(-45deg);
  transition: top 0.3s 0s, transform 0.3s 0.3s, color 0.3s 0.3s;
  box-shadow: none;
}

.left-menu-btn.opened span:nth-child(2) {
  opacity: 0;
}

.left-menu-btn.opened span:last-child {
  width: 100%;
  top: -11px;
  transform: rotate(45deg);
  transition: top 0.3s 0s, transform 0.3s 0.3s;
  box-shadow: none;
}

.right-menu-btn {
  width: 40px;
  height: 38px;
  margin-left: 10px;
}

.right-menu-btn i {
  margin: 0;
}

.right-menu-btn .normal-icon {
  transition: 0.3s;
}

.right-menu-btn.opened .normal-icon {
  transform: rotate(90deg);
  opacity: 0;
}

.right-menu-btn .hover-icon {
  position: absolute;
  opacity: 0;
  transition: 0.3s;
  transform: rotate(-90deg);
  font-size: 36px;
}

.right-menu-btn.opened .hover-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.sn-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 90;
  background-color: rgba(2, 7, 12, 0.75);
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
  webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.sn-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* - - - - - Header Queries - - - - - */

@media (max-width: 1559px) {
  .header-section .container {
    max-width: 100%;
  }
}

@media (max-width: 1400px) {
  .header-section .logo {
    width: 180px;
    top: 22px;
  }

  .account-info li {
    padding-left: 15px;
  }

  .account-info .level-panel {
    margin: 0;
  }

  .account-info li.btn-grp {
    padding-left: 10px;
  }

  .account-info li.btn-grp button {
    width: 60px;
  }

  .main-menu ul {
    width: calc(50% - 100px);
  }
}

@media (max-width: 1199px) {
  .mobile {
    display: block !important;
  }

  .desktop {
    display: none !important;
  }

  .wrapper {
    padding-top: 60px;
    padding-bottom: 204px;
  }

  .container {
    max-width: 100%;
  }

  .mobile-menu {
    display: block;
  }

  .footer-section {
    height: initial;
    padding: 25px 0 35px;
    margin-top: -214px;
  }

  .footer-section .logo {
    width: 120px;
  }

  .footer-section .copyright-text {
    margin-top: 10px;
  }

  .header-main {
    height: 60px;
    background-color: var(--accent-dark);
  }

  .header-main:before {
    height: calc(100% - 1px);
  }

  .header-menu {
    height: 0;
  }

  .header-section .logo {
    width: 110px;
    top: -5px;
  }

  .before-login button {
    width: 80px;
    height: 36px;
    box-shadow: none;
    border-radius: 8px;
    font-size: 14px;
    margin-left: 5px;
  }

  /* Sidebar Left  */

  .sidebar-left {
    width: 100%;
    max-width: 280px;
    height: 100%;
    top: 60px;
    left: 0;
    transform: translateX(-100%);
    background-color: #0c1623;
    border: none;
    border-radius: 0;
    margin: 0 !important;
    padding: 15px 20px 90px;
    display: block;
    overflow-y: auto;
    transition: 0.5s;
    align-content: flex-start;
    z-index: 98;
    position: fixed;
  }

  .sidebar-left.active {
    transform: translateX(0);
  }

  .sidebar-left::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }

  .sidebar-left::-webkit-scrollbar-thumb {
    background: transparent;
  }

  .main-menu ul {
    width: 100%;
    height: initial;
    flex-wrap: wrap;
  }

  .main-menu ul li a {
    width: 100%;
    height: 48px;
    color: #8ba4bf;
    justify-content: flex-start;
  }

  .main-menu ul li a i {
    color: var(--primary-light);
  }

  .main-menu ul li a.attendance-link {
    color: var(--primary-color);
    border-radius: 10px;
    padding-left: 10px;
  }

  .main-menu ul li a.attendance-link i {
    color: var(--primary-color);
  }

  /* Sidebar Right  */

  .sidebar-right {
    width: 100%;
    max-width: 280px;
    height: 100%;
    top: 60px;
    right: 0;
    transform: translateX(100%);
    background-color: #0c1623;
    border: none;
    border-radius: 0;
    margin: 0 !important;
    padding: 15px 20px 90px;
    display: block;
    overflow-y: auto;
    transition: 0.5s;
    align-content: flex-start;
    z-index: 98;
    position: fixed;
  }

  .sidebar-right.active {
    transform: translateX(0);
  }

  .sidebar-right::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }

  .sidebar-right::-webkit-scrollbar-thumb {
    background: transparent;
  }

  .account-info li,
  .account-info li.btn-grp {
    padding-left: 0;
  }

  .account-info li .acc-row {
    height: 48px;
    margin: 1px 0;
    background-color: rgba(113, 155, 202, 0.1);
    border-radius: 8px;
  }

  .account-info .btn-grp {
    margin: 10px 0 0;
  }

  .account-info .btn-grp .acc-row {
    height: initial;
    margin: 0;
    background-color: rgba(113, 155, 202, 0);
    border-radius: 0;
    flex-wrap: nowrap;
  }

  .account-info li .acc-row .icon-panel {
    min-width: 46px;
    padding: 0 10px;
    font-size: 14px;
  }

  .account-info li.btn-grp button,
  .account-info li.btn-grp button:first-child {
    width: calc(100% - 4px);
    height: 36px;
    margin: 2px;
    box-shadow: none;
    font-size: 14px;
  }

  .account-info .level-panel {
    width: 100%;
    height: 70px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: none;
    margin: 0 0 10px;
    justify-content: flex-start;
    padding: 0 0 0 5px;
  }
}

@media (max-width: 500px) {
  .header-section .container {
    padding-right: 10px;
  }

  .header-section .logo {
    width: 100px;
    top: -2px;
  }

  .header-main:before {
    width: 180px;
  }

  .before-login button {
    width: 60px;
  }
}

@media (max-width: 414px) {
  .before-login button {
    width: 56px;
    height: 32px;
    font-size: 12px;
  }
}

/* - - - - - Visual Queries - - - - - */

@media (max-width: 1559px) {
  .visual-section {
    height: 400px;
  }

  .visual-carousel .carousel-wrap {
    max-width: 1140px;
    padding: 0 2% 35px;
  }

  .visual-carousel h1 {
    font-size: 66px;
  }

  .visual-carousel h2 {
    font-size: 30px;
  }

  .visual-carousel button {
    margin-top: 4%;
  }
}

@media (max-width: 1199px) {
  .visual-section {
    height: 33vw;
  }

  .visual-carousel .carousel-wrap {
    padding: 0 4% 0;
  }

  .carousel-indicators {
    bottom: 15px;
  }

  .visual-carousel h1 {
    font-size: 5.5vw;
  }

  .visual-carousel h2 {
    font-size: 2.52vw;
  }

  .visual-carousel button {
    width: initial;
    height: initial;
    font-size: 1.68vw;
    margin: 4% 0 0;
    padding: 1.7% 5.25%;
  }

  .garden-gif {
    width: 50px;
    margin-top: -10px;
  }

  .logo-inline {
    margin-top: -10px;
  }

  .logo-inline .casino-logo {
    width: 50px;
  }

  .logo-inline .garden-logo {
    width: 80px;
  }
}

@media (max-width: 500px) {
  .visual-section {
    height: 35vw;
  }

  .visual-carousel .carousel-wrap {
    padding: 0 8%;
  }

  .carousel-indicators {
    bottom: 8px;
  }

  .visual-carousel h2 {
    font-size: 2.6vw;
  }

  .visual-carousel button {
    font-size: 2.5vw;
  }

  .carousel-indicators li {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

/* - - - - - Jackpot Queries - - - - - */

@media (max-width: 1559px) {
  .jackpot-wrapper .label-panel {
    font-size: 44px;
  }

  .jackpot-wrapper .amount-panel .amount {
    font-size: 60px;
  }

  .jackpot-wrapper .amount-panel .symbol {
    font-size: 44px;
  }
}

@media (max-width: 1199px) {
  .jackpot-wrapper {
    width: 100%;
    height: 8.34vw;
    margin: 5px 0 0;
    padding: 0;
  }

  .jackpot-wrapper .jackpot-panel .side-bg:before,
  .jackpot-wrapper .jackpot-panel .side-bg:after {
    width: 4.1%;
  }

  .jackpot-wrapper .label-panel {
    font-size: 3.7vw;
    margin-left: 12%;
  }

  .jackpot-wrapper .amount-panel .amount {
    font-size: 5.01vw;
  }

  .jackpot-wrapper .amount-panel .symbol {
    font-size: 3.7vw;
  }

  .jackpot-wrapper .label-panel .icon-panel {
    min-width: initial;
    width: 54%;
    height: initial;
    margin-right: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateX(-106%);
  }
}

@media (max-width: 991px) {
  .jackpot-wrapper {
    height: 9vw;
  }

  .jackpot-wrapper .jackpot-panel:before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }

  .jackpot-wrapper .jackpot-panel .glow-bg:before,
  .jackpot-wrapper .jackpot-panel .glow-bg:after {
    width: 30%;
    height: calc(100% - 20px);
  }
}

@media (max-width: 767px) {
  .jackpot-wrapper {
    height: 10vw;
  }

  .jackpot-wrapper .jackpot-panel .side-bg:before,
  .jackpot-wrapper .jackpot-panel .side-bg:after {
    width: 5.1%;
  }
}

@media (max-width: 500px) {
  .jackpot-wrapper {
    height: 14vw;
  }

  .jackpot-wrapper .jackpot-panel .side-bg:before,
  .jackpot-wrapper .jackpot-panel .side-bg:after {
    width: 7%;
  }

  .jackpot-wrapper .label-panel .icon-panel {
    display: none !important;
  }

  .jackpot-wrapper .label-panel {
    font-size: 4.8vw;
    margin-left: 0;
  }

  .jackpot-wrapper .amount-panel .amount {
    font-size: 5.8vw;
  }

  .jackpot-wrapper .amount-panel .symbol {
    font-size: 4.8vw;
  }
}

/* - - - - - Toggle Queries - - - - - */

@media (max-width: 1199px) {
  .main-toggle .toggle-btn {
    width: calc(50% - 46px);
  }

  .main-toggle .toggle-btn .g-size {
    width: 120%;
  }

  .main-toggle .toggle-btn .g-img {
    width: 110%;
  }

  .toggle-divider {
    width: 80px;
    height: 80px;
  }

  .main-toggle .toggle-btn .text-panel {
    font-size: 30px;
  }

  .main-toggle .toggle-btn .text-panel .en-text {
    font-size: 16px;
  }

  .main-toggle .toggle-btn .icon-panel {
    width: 70px;
    height: 70px;
    border-radius: 15px;
  }

  .main-toggle .toggle-btn .icon-panel img {
    transform: translateX(0);
    animation: none;
  }

  .main-toggle .toggle-btn:hover .icon-panel img {
    animation: none;
  }
}

@media (max-width: 991px) {
  .main-toggle .toggle-btn .g-size {
    width: 130%;
  }

  .main-toggle .toggle-btn .g-img {
    width: 116%;
  }

  .main-toggle .toggle-btn .text-panel {
    left: 60%;
  }

  .main-toggle .toggle-btn:last-child .text-panel {
    right: 54%;
    left: auto;
  }

  .main-toggle .toggle-btn .icon-panel {
    left: 10px;
    top: 10px;
    border-radius: 15px;
  }

  .main-toggle .toggle-btn:last-child .icon-panel {
    left: auto;
    right: 10px;
  }

  .main-toggle .toggle-btn .text-panel {
    font-size: 24px;
  }

  .main-toggle .toggle-btn .text-panel .en-text {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .page-content .toggle-divider {
    display: none !important;
  }

  .main-toggle .toggle-btn {
    /*width: 100%;
    margin: 0 0 10px;
    border-radius: 20px;
    background-image: linear-gradient(
      to right,
      var(--accent-dark),
      var(--primary-color)
    );*/

	width: 100%;
    margin: 0 0 10px;
    border-radius: 20px;
    background:
    radial-gradient(circle at top center,
      rgba(102, 223, 172, 0.35),   
      rgba(0, 0, 0, 0) 70%
    ),
    linear-gradient(#001c12, #000000);
  }

  .main-toggle .toggle-btn:before {
    display: none;
  }

  .main-toggle .toggle-btn .g-size {
    width: 100%;
  }

  .main-toggle .toggle-btn .g-img {
    width: 94%;
  }

  .toggle-btn:last-child .g-img {
    left: 0;
    right: auto;
    transform-origin: center;
    transform: rotateY(180deg);
  }

  .main-toggle .toggle-btn .text-panel {
    font-size: 4.5vw;
  }

  .main-toggle .toggle-btn .text-panel .en-text {
    font-size: 2.5vw;
  }

  .main-toggle .toggle-btn .text-panel {
    left: 54%;
  }

  .main-toggle .toggle-btn:last-child .text-panel {
    left: 54%;
    right: auto;
    text-align: left !important;
  }

  .main-toggle .toggle-btn:last-child .icon-panel {
    left: 10px;
    right: auto;
  }
}

@media (max-width: 500px) {
  .page-content .toggle-section {
    margin: 15px 0 0;
  }

  .main-toggle .toggle-btn .text-panel {
    font-size: 4.8vw;
  }

  .main-toggle .toggle-btn .text-panel .en-text {
    font-size: 2.8vw;
  }

  .main-toggle .toggle-btn .g-size {
    width: 92%;
  }

  .main-toggle .toggle-btn .g-img {
    width: 84%;
    left: 8%;
  }
}

/* - - - - - Board Queries - - - - - */

@media (max-width: 1559px) {
  .rt-board {
    padding: 15px 15px;
  }

  .table-ticker {
    width: calc(100% + 20px);
    margin: 0 -10px;
  }

  .table-ticker ul li .icon-panel {
    margin: 0 5px 0 0;
  }

  .table-ticker ul li div.amount {
    font-size: 16px;
  }

  .table-ticker ul li .td {
    font-size: 14px;
  }

  .board-wrap .c-banner {
    font-size: 20px;
  }

  .board-wrap .c-banner .icon-panel {
    margin-right: 10px;
  }

  .eveter-wrap {
    padding: 0;
  }

  .nt-board table td a {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
  }
}

@media (max-width: 1199px) {
  .rt-board {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    border-radius: 20px;
  }

  .rt-board:after {
    border-radius: 20px;
  }

  .rt-board.winning-board {
    width: 100%;
  }

  .eveter-wrap {
    width: calc(100% + 20px);
    padding: 0 0;
    margin: 0 -10px;
  }

  .board-wrap {
    background-color: transparent;
    border-radius: 0;
    margin: 40px 0 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .board-wrap:before,
  .board-wrap:after {
    display: none;
  }

  .nt-board {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    background-color: var(--accent-dark);
    border-radius: 20px;
    padding: 10px;
  }

  .page-content {
    padding-bottom: 30px;
  }

  .customer-wrap {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .customer-board {
    max-width: 100%;
  }

  .customer-wrap:before {
    display: none;
  }

  .board-wrap .c-banner {
    margin: 0 10px 10px;
  }
}

@media (max-width: 767px) {
  .realtime-wrap {
    width: 100%;
    margin: 0;
  }

  .rt-board {
    width: 100%;
    margin: 0 0 15px;
    padding-bottom: 0;
  }

  .nt-board {
    width: 100%;
    margin: 0 0 20px;
  }

  .rt-board .header {
    font-size: 24px;
  }

  .winning-board .header {
    padding-left: 45px;
  }

  .winning-board .header .icon-img {
    width: 36px;
  }

  .rt-board .content {
    overflow: hidden;
    max-height: 160px;
  }

  .winning-board .content {
    overflow: initial;
    max-height: initial;
  }

  .board-wrap {
    margin: 0 0 0;
  }
}

@media (max-width: 500px) {
  .nt-board {
    padding: 5px;
  }

  .nt-board .header {
    height: 50px;
  }

  .table-ticker ul li {
    height: 40px;
  }

  .nt-board table td {
    height: 32px;
  }

  .realtime-section {
    margin: 10px 0 20px;
  }
}

/* - - - - - Providers Queries - - - - - */

@media (max-width: 1559px) {
  .sc-btn .g-panel {
    border-radius: 15px;
  }

  .sc-btn .icon-panel {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    left: 5px;
    top: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
  }

  .sc-btn .icon-panel img {
    max-width: 36px;
    max-height: 36px;
  }
}

@media (max-width: 1024px) {
  .sc-btn {
    width: calc(20% - 20px);
    margin: 0 10px 20px;
  }

  .page-content .main.sc-btn:nth-child(6) {
    /* display: none; */
  }
}

@media (max-width: 900px) {
  .sc-btn {
    width: calc(25% - 20px);
    margin: 0 10px 20px;
  }

  .page-content .main.sc-btn:nth-child(5) {
    /* display: none; */
  }
}

@media (max-width: 600px) {
  .providers-section {
    margin: 0;
  }

  .providers-section .header {
    margin: 0 0 10px;
  }

  .sc-btn {
    width: calc(33.33% - 20px);
  }

  .page-content .main.sc-btn:nth-child(4) {
    /* display: none; */
  }

  .sc-btn .g-footer {
    width: 100%;
    height: 36%;
  }

  .sc-btn .g-footer .kr-text {
    font-size: 14px;
  }

  .sc-btn .g-footer .en-text {
    font-size: 10px;
  }
}

@media (max-width: 500px) {
  .providers-wrap .providers-panel {
    width: calc(100% + 14px);
    margin: 0 -7px;
  }

  .sc-btn {
    width: calc(33.33% - 14px);
    margin: 0 7px 15px;
  }

  .sc-btn .icon-panel {
    width: 40px;
    height: 40px;
  }

  .sc-btn .icon-panel img {
    max-width: 30px;
    max-height: 30px;
  }

  .providers-section .header .title-panel {
    font-size: 20px;
  }
}

/* - - - - - Footer Queries - - - - - */

@media (max-width: 500px) {
  .footer-section .copyright-text {
    letter-spacing: 0;
  }
}

/* - - - - - Providers Modal Queries - - - - - */

@media (max-width: 1199px) {
  .providers-modal .logo {
    width: 140px;
    margin: 15px auto 20px;
  }

  .providers-modal .toggle-section {
    max-width: 700px;
    margin: 0 auto 20px;
  }

  .providers-modal .toggle-btn {
    padding: 5px;
    width: calc(50% - 20px);
  }

  .providers-modal .toggle-divider {
    width: 50px;
    height: 50px;
  }

  .providers-modal .toggle-btn .text-panel {
    font-size: 20px;
  }

  .providers-modal .toggle-btn .text-panel .en-text {
    display: none;
  }
}

@media (max-width: 540px) {
  .providers-modal .container {
    padding: 0;
  }

  .providers-modal .toggle-btn,
  .providers-modal .toggle-btn .g-hover {
    border-radius: 15px 0 0 15px;
  }

  .providers-modal .toggle-btn:last-child,
  .providers-modal .toggle-btn:last-child .g-hover {
    border-radius: 0 15px 15px 0;
  }

  .providers-modal .toggle-btn .icon-panel {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .providers-modal .toggle-btn .icon-panel img {
    max-width: 30px;
    max-height: 30px;
  }

  .providers-modal .toggle-btn .text-panel {
    font-size: 16px;
  }

  .providers-modal .toggle-btn .text-panel {
    margin-left: 8px;
  }

  .providers-modal .toggle-btn:last-child .text-panel {
    margin-right: 8px;
  }
}

/* - - - - - Gamelist Queries - - - - - */

@media (max-width: 1559px) {
  .game-btn {
    width: calc(16.66% - 16px);
  }
}

@media (max-width: 991px) {
  .game-btn {
    width: calc(20% - 16px);
  }
}

@media (max-width: 840px) {
  .gamelist-header .title-panel {
    width: 100%;
    margin-bottom: 20px;
  }

  .search-form {
    max-width: 100%;
  }

  .gamelist-header .slot-link {
    position: absolute;
    right: 15px;
    top: 0;
    height: 40px;
    padding: 0 20px;
  }

  .game-btn .g-info .text {
    font-size: 14px;
  }

  .game-btn .g-info .provider {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  .game-btn {
    width: calc(25% - 16px);
  }
}

@media (max-width: 680px) {
  .game-btn .play-btn {
    font-size: 12px;
    height: 30px;
  }

  .game-btn .play-btn:before {
    width: calc(100% - 30px);
  }

  .game-btn .play-btn .icon-panel {
    width: 28px;
    padding: 3px 0 0 6px;
  }
}

@media (max-width: 500px) {
  .gamelist-header .title-panel {
    font-size: 20px;
  }

  .gamelist-header .slot-link {
    right: 0;
    font-size: 14px;
    padding: 0 10px;
  }

  .modal-nav a {
    font-size: 14px;
  }

  .game-btn {
    width: calc(33.33% - 16px);
  }

  .game-btn .g-info {
    padding: 0 5px 5px;
  }

  .game-btn .g-info:before {
    max-height: 20px;
  }

  .game-btn .g-info .provider {
    display: none;
  }

  .game-btn .g-info .text {
    font-size: 12px;
  }
}

@media (max-width: 414px) {
  .game-btn .play-btn {
    font-size: 10px;
    height: 28px;
  }

  .game-btn .play-btn:before {
    width: calc(100% - 28px);
  }

  .game-btn .play-btn .icon-panel {
    width: 26px;
    padding: 3px 0 0 4px;
    margin-right: 6px;
  }
}

/* - - - - - Modal Queries - - - - - */

@media (max-width: 1199px) {
  .header-section {
    z-index: 1060;
  }

  .providers-modal .logo {
    display: none;
  }

  .providers-modal .modal-close {
    display: none;
  }

  .dashboard-modal {
    padding: 0 !important;
  }

  .dashboard-modal .modal-content {
    height: 100%;
    max-height: 100%;
  }

  .dashboard-modal .modal-wrapper {
    min-height: 100%;
    padding: 0;
  }

  .dashboard-modal .modal-close {
    top: 13px;
    right: 15px;
    z-index: 90;
  }

  .dashboard-modal .modal-sidebar {
    display: none !important;
  }

  .modal-panel,
  .dashboard-modal .modal-panel {
    width: 100%;
    overflow-y: initial;
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .modal {
    padding: 0 !important;
    overflow-y: auto;
  }

  .modal-dialog {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 100%;
    align-items: flex-start;
    background-color: #0c1623;
  }

  .modal-close,
  .dashboard-modal .modal-close {
    top: 73px;
    right: 15px;
    z-index: 90;
  }

  .modal-content,
  .subpage-modal .modal-content {
    height: auto;
    max-height: initial;
    min-height: initial;
    position: relative;
  }

  .modal-wrapper,
  .subpage-modal .modal-wrapper {
    min-height: initial;
    border-radius: 0;
    flex-wrap: wrap;
    align-content: flex-start;
    overflow: initial;
    box-shadow: none;
    background-color: transparent;
  }

  .modal-header {
    width: 100%;
    height: 60px;
    top: 60px;
    border-bottom: solid 1px rgba(113, 155, 202, 0.15);
  }

  .modal .logo {
    display: none;
  }

  .loginModal .modal-dialog {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .mypageModal .modal-nav {
    flex-wrap: wrap;
  }

  .mypageModal .modal-nav a {
    width: 33.33%;
    height: 38px;
  }

  .money-table li {
    width: calc(33.33% - 4px);
  }

  .calendar-info .flex-nowrap {
    flex-wrap: wrap !important;
  }

  .calendar-info .icon-panel {
    width: 20px;
    margin: 0 0 5px;
  }

  .calendar-info .text-panel {
    width: 100%;
  }

  .calendar-info .text-panel .text {
    text-align: center;
    font-size: 11px;
  }

  .calendar-info .text-panel .labels {
    font-size: 10px;
    margin: 0 0 -4%;
  }

  .attendance-information .panel {
    width: calc(100% - 20px);
    margin-bottom: 10px;
  }

  .event-btn {
    width: calc(50% - 20px);
  }
}

@media (max-width: 500px) {
  .modal-panel {
    padding-bottom: 30px;
  }

  .form-container .form-group .infos .btn-grp button {
    width: calc(33.33% - 4px);
    margin: 0 2px 4px;
  }

  /* Tables */

  .bs-table thead th,
  .bs-table tbody td {
    font-size: 14px;
  }

  .bs-table tr .count-td {
    width: auto;
    padding: 0;
  }

  .bs-table tr .count-tag {
    width: 20px;
    height: 20px;
  }

  .bs-table tr td a {
    max-width: 180px;
  }

  .bs-table tr .title-td {
    max-width: 180px;
    padding-left: 5px;
  }

  .bs-table.question thead tr th:nth-child(2), .bs-table.question tbody tr td:nth-child(2) {
    display: none;
  }

  .bs-table.message thead tr th:nth-child(3), .bs-table.message tbody tr td:nth-child(3) {
    display: none;
  }

  .bs-table.betting thead tr th:nth-child(1), .bs-table.betting tbody tr td:nth-child(1),
  .bs-table.betting thead tr th:nth-child(2), .bs-table.betting tbody tr td:nth-child(2),
  .bs-table.betting thead tr th:nth-child(4), .bs-table.betting tbody tr td:nth-child(4),
  .bs-table.betting thead tr th:nth-child(7), .bs-table.betting tbody tr td:nth-child(7) {
    display: none;
  }

  .bs-table tr .date-td {
    font-size: 12px;
  }

  .bs-table tr .nav-td {
    width: auto;
  }

  .new-icon {
    margin-left: 0;
  }

  .form-footer button {
    font-size: 16px;
  }

  .form-container .form-group input,
  .select-input {
    height: 48px;
  }

  .form-container .form-group .infos .btn-grp button {
    height: 42px;
  }

  .modal-badge {
    padding: 10px;
  }

  .modal-badge .icon-panel {
    min-width: 70px;
    height: 70px;
  }

  .modal-badge .text-panel {
    font-size: 12px;
  }

  .modal-badge .text-panel .link {
    font-size: 16px;
  }

  .c-banner {
    max-width: 100%;
  }

  .board-wrap .c-banner {
    margin: 0 0 10px;
  }

  .modal .c-banner {
    margin: 0 0 10px;
  }

  .modal-nav a i {
    margin-right: 5px;
  }

  .modal-header {
    padding: 0 15px;
  }

  .modal-header .title-panel i {
    font-size: 36px;
  }

  .money-table li {
    padding: 0 5px;
    font-size: 12px;
  }

  .modal-bottom {
    letter-spacing: 0;
  }

  .calendar-table td {
    padding: 10px 0 0;
  }

  .calendar-table td .date {
    font-size: 12px;
  }

  .form-container .labels .notif {
    display: inline-block;
    font-size: 12px;
    margin-left: auto;
  }

  .event-wrapper {
    width: calc(100% + 10px);
    margin: 0 -5px;
  }

  .event-btn {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
  }

  .event-btn .a-footer {
    height: 38px;
    padding: 0 5px 0 10px;
  }

  .event-btn .a-footer .title {
    font-size: 12px;
  }

  .event-btn .a-footer button {
    width: 70px;
    height: 24px;
  }

  .eventModal .modal-nav {
    flex-wrap: wrap;
  }

  .eventModal .modal-nav a {
    width: 33.33%;
    height: 32px;
  }
}

/* - - - - - Subpages Queries - - - - - */

@media (max-width: 1199px) {
  .subpage-wrapper .jackpot-wrapper {
    margin: 20px -15px;
  }

  .dashboard-modal .modal-wrapper {
    border-radius: 15px;
    overflow: hidden;
  }

  .dashboard-modal .modal-panel {
    padding-top: 80px;
  }

  .dashboard-modal .modal-header {
    top: 0;
  }
}

@media (max-width: 500px) {
  .subpage-wrapper .jackpot-wrapper {
    margin: 10px 0;
  }

  .modal-badge .text-panel .link {
    white-space: break-spaces;
  }

  .c-banner .text-panel .text {
	font-size: 20px;
  }

  .header-logo-image {
	gap: 5px;
  }

  .garden-gif {
    width: 40px;
    margin-top: -5px;
  }

  .logo-inline {
    margin-top: -5px;
  }

  .logo-inline .garden-logo {
    width: 60px;
  }

  .logo-inline .casino-logo {
    width: 40px;
  }
}

@media (max-width: 414px) {
  .attendance-nav .title-panel {
    margin: 0 10px;
  }

  .attendance-nav .title-panel .date-tag {
    padding: 0 10px;
  }

  .attendance-nav .nav-btn {
    font-size: 12px;
  }
}
