@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
body {
  background: #090f1e;
  color: #fff;
  padding: 0 20px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
}

.wrapper {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
  font-weight: 700;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #0095ff;
}

.btn-link {
  color: #fff;
}
.btn-link:hover {
  color: #0095ff;
}

.login-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.register-btn {
  background-image: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
  border-radius: 6px;
  font-size: 14px;
  transition: 0.2s;
  padding: 8px 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.register-btn span {
  align-items: center;
  background-image: linear-gradient(210deg, hsla(0, 0%, 100%, 0) 25%, hsla(0, 0%, 100%, 0.06) 48%, #fff 133%);
  border-radius: 100%;
  display: flex;
  font-size: 16px;
  height: 20px;
  justify-content: center;
  margin-right: 6px;
  padding: 3px;
  width: 20px;
}
.register-btn:hover {
  background-image: linear-gradient(70deg, #2ba35b -8%, #0a8543 96%);
  color: #fff;
}

.main-btn {
  background-color: rgba(78, 93, 134, 0.3);
  border-radius: 6px;
  font-size: 14px;
  transition: 0.2s;
  padding: 8px 15px;
  font-weight: 600;
}
.main-btn:hover {
  background-color: #1f2747;
  color: #fff;
}

.admin-bar .header {
  top: 102px;
}

.header {
  background: linear-gradient(90deg, #1d273e, #11182a);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: calc(100% - 40px);
  height: 56px;
  padding: 0 10px;
  position: fixed;
  top: 70px;
  left: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header.top {
  top: 20px;
}
.header .custom-logo-link {
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header .custom-logo-link img {
  height: 30px;
  object-fit: contain;
}
.header .menu-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  height: 100%;
}
.header .menu-wrap .main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  list-style: none;
  margin-bottom: 0;
  position: relative;
  flex-grow: 1;
  height: 100%;
}
.header .menu-wrap .main-menu > li {
  display: block;
  height: 100%;
}
.header .menu-wrap .main-menu > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
  padding: 0 5px;
}
.header .menu-wrap .main-menu > li > a:after {
  content: "";
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0095ff;
}
.header .menu-wrap .main-menu > li > a:hover {
  color: #0095ff;
}
.header .menu-wrap .main-menu > li > a:hover:after {
  display: block;
}
.header .menu-wrap .main-menu a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.header .menu-wrap .main-menu a:hover {
  color: #0095ff;
}
.header .menu-wrap .main-menu .menu-item-has-children {
  position: relative;
}
.header .menu-wrap .main-menu .menu-item-has-children:hover > .sub-menu {
  display: flex;
}
.header .menu-wrap .main-menu .menu-item-has-children > .sub-menu {
  top: 62px;
  left: 0;
  transform: translateX(-40%);
}
.header .menu-wrap .main-menu .menu-item-has-children > .sub-menu:after {
  border-color: transparent transparent #fff;
  border-style: solid;
  border-width: 0 10px 7px;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  top: 0;
  left: 65px;
  transform: translateY(-90%);
  width: 0;
}
.header .menu-wrap .main-menu .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu {
  top: 0;
  left: 0;
  transform: translate(157px, -3px);
}
.header .menu-wrap .main-menu .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu:after {
  border-color: transparent transparent #fff;
  border-style: solid;
  border-width: 0 10px 7px;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  top: 20px;
  left: -13px;
  transform: translateY(-90%) rotate(-90deg);
  width: 0;
}
.header .menu-wrap .main-menu .menu-item-has-children .sub-menu {
  background-color: #fff;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  margin: 0;
  width: 150px;
  padding: 10px 0;
  position: absolute;
  list-style: none;
}
.header .menu-wrap .main-menu .menu-item-has-children .sub-menu a {
  color: #696969;
  display: block;
  position: relative;
  width: 100%;
  padding: 5px;
  transition: 0.2s;
}
.header .menu-wrap .main-menu .menu-item-has-children .sub-menu a:hover {
  background: #ddd;
}
.header img {
  max-height: 50px;
  width: auto;
}

.main-content {
  padding-top: 96px;
}

.faq {
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 1rem;
  margin-bottom: 1rem;
}
.faq h3 {
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq h3::after {
  content: "+";
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 3px;
}
.faq h3[aria-expanded=true]::after {
  content: "-";
}
.faq hr {
  opacity: 1;
  color: #fff;
}

table {
  max-width: 100%;
  overflow: auto;
}

.mobile-menu-logo {
  display: none;
}

.closer {
  display: none;
}

.mobile-menu-toggler {
  display: none;
}

.wp-block-image {
  text-align: center;
}

.menu-bars {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
}
.menu-bars.show span {
  transform: rotate(45deg);
  top: 20px;
}
.menu-bars.show span:nth-child(2) {
  display: none;
}
.menu-bars.show span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}
.menu-bars span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  top: 10px;
  left: 5px;
  background: #fff;
  transition: 0.3s;
}
.menu-bars span:nth-child(2) {
  top: 19px;
}
.menu-bars span:nth-child(3) {
  top: 28px;
}

.bonus {
  border-radius: 20px;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.bonus .bonus-info {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bonus a {
  background: #fff;
  border: none;
  border-radius: 10px;
  display: flex;
  font-weight: 600;
  height: 50px;
  max-width: 250px;
  width: 100%;
  color: #333;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.bonus a:hover {
  background: #d8e5fd;
}

.menu-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #1d273e, #11182a);
  padding: 1rem;
  border-radius: 12px;
  transition: 0.3s;
  margin-bottom: 1rem;
}
.menu-block:hover {
  background: linear-gradient(90deg, #2d3c5e, #1b2642);
  color: #fff;
}
.menu-block img {
  width: 52px;
  height: auto;
}

.section {
  position: relative;
  background: linear-gradient(90deg, #1d273e, #11182a);
  border-radius: 12px;
  margin-top: 25px;
  padding: 30px;
}
.section::before {
  background-image: linear-gradient(90deg, #8d53e9, #00b7ff);
  background-size: 200% auto;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  content: "";
  display: block;
  height: 4px;
  left: 25px;
  position: absolute;
  right: 25px;
  top: 0;
}

.content-section .gradient_btn {
  margin: 1rem auto;
}

.action {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  padding-top: 40px;
}
.action .action__bg {
  background: url(../imgs/poker_banner.png) bottom/30% no-repeat;
  border-radius: 12px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.gradient_btn {
  align-items: center;
  background-image: linear-gradient(255deg, #00b7ff, #8d53e9);
  border: none;
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-weight: 600;
  justify-content: center;
  padding: 4px 10px;
  position: relative;
  text-decoration: none;
  z-index: 2;
  max-width: 200px;
  transition: 0.3s;
}
.gradient_btn:hover {
  color: #fff;
  background-image: linear-gradient(255deg, #8d53e9, #00b7ff);
}

table td {
  border-color: #fff;
  border-style: solid;
  border-width: 1px;
  padding: 0.5rem;
}

.page-content {
  height: 500px;
  overflow: hidden;
}
.page-content.show {
  height: auto;
}

.games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  overflow: hidden;
  width: 100%;
}
.games .game {
  aspect-ratio: 1/1;
  border-radius: 16px;
  display: inline-block;
  height: 100%;
  max-height: 150px;
  max-width: 210px;
  -o-object-fit: contain;
  object-fit: contain;
  overflow: hidden;
}
.games .game img {
  width: 100%;
  height: auto;
}

.banner-link {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  height: 100%;
}
.banner-link img {
  height: 100%;
  -o-object-fit: cover;
  -o-object-position: center;
  object-fit: cover;
  width: 100%;
  object-position: center;
}

.cat-banner {
  align-items: center;
  border: 2px solid #cda432;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.cat-banner .subtitle {
  color: #ffe55d;
  font-size: 1.5em;
  font-weight: 700;
  text-shadow: 0 0 5px #ffa600;
}
.cat-banner a {
  border-radius: 6px;
  margin: 0 5px;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}
.cat-banner a:hover img {
  transform: scale(1.05);
}
.cat-banner a img {
  height: 100%;
  width: 100%;
  transition: 0.8s;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.left-menu-wrap {
  background-color: #141b2f;
  border-radius: 12px;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  padding: 20px 15px;
  position: relative;
  width: 100%;
}
.left-menu-wrap::-webkit-scrollbar {
  background-color: transparent;
  width: 7px;
}
.left-menu-wrap::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 8px;
}
.left-menu-wrap ul {
  padding: 0;
  list-style: none;
}
.left-menu-wrap ul li {
  border-bottom: 1px solid rgba(38, 46, 72, 0.5);
}
.left-menu-wrap ul li a {
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  z-index: 1;
}
.left-menu-wrap ul li a:hover::before {
  opacity: 1;
}
.left-menu-wrap ul li a::before {
  display: inline-block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 149, 255, 0.424), transparent);
  content: "";
  isolation: isolate;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.2s;
  z-index: -1;
}

.left-menu-toggler {
  display: none;
}

.left-menu-closer {
  display: none;
}

@media only screen and (max-width: 768px) {
  .cat-banner {
    margin-bottom: 1rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .left-menu-wrap {
    position: fixed;
    top: 56px;
    height: calc(100% - 56px);
    left: 0;
    width: 80%;
    z-index: 10;
    transition: 0.3s;
    transform: translateX(-100%);
  }
  .left-menu-wrap.show {
    transform: translateX(0);
  }
  .left-menu-closer {
    display: block;
    position: fixed;
    top: 56px;
    left: -30px;
    width: 30px;
    height: 30px;
    z-index: 999;
    transition: 0.3s;
  }
  .left-menu-closer.show {
    left: calc(80% - 30px);
  }
  .left-menu-closer span {
    top: 15px;
    left: 5px;
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #0095ff;
    transform: rotate(45deg);
  }
  .left-menu-closer span:nth-child(2) {
    transform: rotate(-45deg);
  }
  .left-menu-toggler {
    align-items: center;
    background: linear-gradient(270deg, rgba(29, 39, 62, 0.714), #11182a);
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 183, 255, 0.5);
    display: flex;
    height: 80px;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 110px;
    transition: 0.3s;
    width: 40px;
    z-index: 91;
  }
  .left-menu-toggler svg {
    fill: #fff;
    height: 100%;
    max-width: 20px;
    transform: rotate(-90deg);
  }
  .left-menu-toggler.show {
    transform: translateX(-100%);
  }
  .games {
    grid-template-columns: repeat(2, 1fr);
  }
  .action {
    flex-direction: column;
    align-items: flex-start;
  }
  .action .action__bg {
    display: none;
  }
  .action .gradient_btn {
    margin-top: 1rem;
  }
  .menu-bars {
    display: block;
  }
  .admin-bar .header {
    top: 46px;
  }
  .admin-bar .header .menu-wrap {
    top: 102px;
    height: calc(100% - 102px);
  }
  .admin-bar .left-menu-wrap {
    top: 102px;
    height: calc(100% - 102px);
  }
  .admin-bar .left-menu-closer {
    top: 102px;
  }
  #topbar {
    display: none !important;
  }
  .header {
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
  }
  .header .menu-wrap {
    position: fixed;
    right: 0;
    top: 56px;
    width: 80%;
    height: calc(100% - 56px);
    background: linear-gradient(90deg, #1d273e, #11182a);
    overflow: hidden;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translate(100%);
    transition: 0.3s;
  }
  .header .menu-wrap.show {
    transform: translate(0);
  }
  .header .menu-wrap .main-menu {
    overflow: auto;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    max-height: 100%;
    justify-content: flex-start;
  }
  .header .menu-wrap .main-menu a {
    display: block;
    width: 100%;
    padding: 15px 0 !important;
  }
  .header .menu-wrap .main-menu li {
    height: auto;
    width: 100%;
    border-bottom: 1px solid #393939;
  }
  .header .menu-wrap .main-menu li .sub-menu {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    background: transparent !important;
    transform: translate(0) !important;
    width: 100% !important;
    padding: 0 !important;
    display: flex !important;
  }
  .header .menu-wrap .main-menu li .sub-menu:after {
    display: none !important;
  }
  .header .menu-wrap .main-menu li .sub-menu li {
    border-bottom: none;
  }
  .header .menu-wrap .main-menu li .sub-menu a {
    color: #fff !important;
  }
  .login-block {
    flex-grow: 1;
    justify-content: flex-end;
  }
  .mobile-menu-toggler {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
  }
  .mobile-menu-toggler:hover span:nth-child(2) {
    width: 18px;
  }
  .mobile-menu-toggler span {
    position: absolute;
    top: 5px;
    right: 0;
    height: 2px;
    background: #fff;
    width: 18px;
  }
  .mobile-menu-toggler span:nth-child(2) {
    top: 11px;
    width: 14px;
  }
  .mobile-menu-toggler span:nth-child(3) {
    top: 17px;
  }
  .logo {
    height: 19px;
  }
  .logo span {
    font-size: 10px;
    line-height: 10px;
  }
  .menu-item-has-children .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    padding: 5px;
    display: block;
    background-image: none;
  }
  .menu-item-has-children .sub-menu li {
    margin-bottom: 0;
  }
}

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