:root {
  --main: #1B2038;
  --header: #111525;
  --header-bottom: #3F3A79;
  --text: #fff;
  --hover: #3AB1F3;
  --btn-hover: #FF6191;
  --active: #25AC33;
  --color-btn: #ff6613;
  --radius: 15px;
  --radius-card: 6px;
  --border-color: #FF3A75;
  --banner: linear-gradient(180deg, #9B61D6 0%, #1B2038 100%);
  --faq: #171B2F;
  --card: #2E2D6A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  position: relative;
  background: var(--main);
  font-family: "Montserrat", sans-serif;
}

body.error {
  background: var(--error);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

input, button {
  box-shadow: none;
  font-family: Tahoma, Arial, sans-serif;
}

input {
  outline: none;
}

h1 {
  color: var(--text);
}

h2, h3, h4, h5, h6 {
  color: var(--text);
}

p, span, li, a {
  color: var(--text);
}

button {
  cursor: pointer;
  background: transparent;
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Table content */
.wp-block-table {
  max-width: 100%;
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--border_button);
}

.wp-block-table table td {
  text-align: center;
  padding: 10px;
  color: var(--text);
}

.wp-block-table table tr:nth-child(2n) {
  background: var(--faq);
}

a {
  text-decoration: none;
}

@font-face {
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 400;
  src: url(/wp-content/themes/ramen/fonts/Montserrat-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Montserrat";
  font-weight: 700;
  src: url(/wp-content/themes/ramen/fonts/Montserrat-Bold.ttf);
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat";
  padding: 15px 0;
}
@media (min-width: 960px) {
  h1, h2, h3, h4, h5, h6 {
    padding: 20px 0;
  }
}

p, span, li, a {
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 960px) {
  p, span, li, a {
    font-size: 18px;
    line-height: 30px;
  }
}

button {
  font-family: "Montserrat";
}

/* Header */
header {
  padding: 8px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: var(--header);
}
header .header .overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
header .header .overlay.active {
  display: block;
}
header .header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}
@media (min-width: 960px) {
  header .header__top {
    padding: 0 15px 8px 15px;
  }
}
header .header__top .logo img {
  width: 150px;
}
header .header__top .buttons {
  display: none;
}
@media (min-width: 960px) {
  header .header__top .buttons {
    display: flex;
    align-items: center;
  }
}
header .header__bottom {
  display: none;
  background: var(--header-bottom);
  padding: 0 10px;
}
@media (min-width: 960px) {
  header .header__bottom {
    display: flex;
    justify-content: center;
    padding: 0 15px;
  }
}
header .header .burger img {
  width: 25px;
  height: 25px;
}
header .header_desktop .burger {
  display: block;
}
@media (min-width: 960px) {
  header .header_desktop .burger {
    display: none;
  }
}

.button {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  position: relative;
  transition: all 0.1s;
  border: none;
}

.reg_button {
  border-radius: var(--radius);
  margin-left: 20px;
  background: var(--border-color);
  padding: 8px 20px;
  font-weight: 700;
}
.reg_button:hover {
  background: var(--btn-hover);
}

.log_button {
  border-bottom: 1px solid;
}
.log_button:hover {
  border-bottom: 1px solid var(--header);
}

/* Menu */
.main_menu .menu {
  display: flex;
  align-items: center;
  list-style: none;
}
.main_menu .menu li {
  margin-left: 20px;
}
.main_menu .menu li:first-child {
  margin-left: 0;
}
.main_menu .menu li a {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  padding: 10px 0;
  transition: all 0.1s;
  position: relative;
}
.main_menu .menu li a:hover {
  color: var(--hover);
  border-bottom: 3px solid var(--hover);
}
.main_menu .menu .current-menu-item a {
  color: var(--active);
  border-bottom: 3px solid var(--active);
}
.main_menu .menu .current-menu-item a:hover {
  color: var(--active);
  border-bottom: 3px solid var(--active);
}

.menu_mobile, amp-sidebar {
  background: var(--header);
  width: 250px;
  padding: 0 20px;
  max-width: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  display: block;
  transition: right 0.8s;
}

.menu_mobile {
  z-index: 11;
}
.menu_mobile .menu-main-container {
  padding: 0;
}
.menu_mobile .close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 0 20px 0;
}
.menu_mobile .close__img {
  width: 28px;
  height: 28px;
}
.menu_mobile .menu {
  list-style: none;
}
.menu_mobile .menu li {
  margin-bottom: 10px;
}
.menu_mobile .menu li:last-child {
  margin-bottom: 0;
}
.menu_mobile .menu li a {
  font-size: 18px;
  color: var(--text);
  font-weight: 400;
  padding: 10px 0;
}
.menu_mobile .menu li a:hover {
  text-decoration: underline;
}
.menu_mobile .menu .current-menu-item a {
  color: var(--active);
}

.menu_mobile.show {
  right: 0;
  transition: right 0.8s;
}

/* Banner */
.banner {
  height: 200px;
  margin: 0 10px;
  position: relative;
  margin-bottom: 35px;
  background: var(--banner);
  border-radius: var(--radius);
  border-bottom: 4px solid var(--border-color);
}
@media (min-width: 640px) {
  .banner {
    margin-bottom: 40px;
    height: 250px;
  }
}
@media (min-width: 960px) {
  .banner {
    height: 350px;
    margin-bottom: 50px;
  }
}
.banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.banner__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 10px;
}
@media (min-width: 640px) {
  .banner__text {
    width: 592px;
    align-items: flex-start;
    padding: 0 0 0 50px;
    text-align: left;
  }
}
.banner__text p {
  color: var(--text);
  display: block;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (min-width: 640px) {
  .banner__text p {
    font-size: 24px;
  }
}
@media (min-width: 960px) {
  .banner__text p {
    font-size: 32px;
  }
}
.banner__text .button {
  padding: 12px 24px;
}
.banner__img {
  display: none;
  padding-right: 30px;
}
@media (min-width: 640px) {
  .banner__img {
    display: flex;
    justify-content: flex-end;
  }
}
.banner__img img {
  width: 75%;
}
@media (min-width: 960px) {
  .banner__img img {
    width: 100%;
  }
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .cards {
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .cards {
    grid-row-gap: 30px;
    grid-column-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.cards__item {
  border-radius: var(--radius);
  background: var(--main);
  filter: drop-shadow(0 -4px 10px rgba(0, 0, 0, 0.05)) drop-shadow(0 14px 20px rgba(0, 0, 0, 0.2));
  border: none;
  text-align: left;
  position: relative;
  height: 176px;
  padding-left: 16px;
  overflow: visible;
}
.cards__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: var(--radius);
  inset: 0 0 0 0;
}
.cards__item:first-child::before {
  background: linear-gradient(180deg, #E4EFFF 0%, #FFFFFF 100%);
}
.cards__item:nth-child(2)::before {
  background: linear-gradient(180deg, #ECFFEC 0%, #FFFFFF 100%);
}
.cards__item:nth-child(3)::before {
  background: linear-gradient(180deg, #FFECEC 0%, #FFFFFF 100%);
}
.cards__item:last-child::before {
  background: linear-gradient(180deg, #fee4f3 0%, #FFFFFF 100%);
}
.cards__item span {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
.cards__item-icon {
  width: 203px;
  height: 176px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 960px) {
  .cards__item-icon {
    right: -20px;
  }
}

/* Content */
.wrapper {
  margin: 0 auto;
  max-width: 1200px;
}

.content-block {
  padding: 5px 10px 20px;
}
@media (min-width: 960px) {
  .content-block {
    padding: 5px 15px 20px 15px;
  }
}

.content_page h1 {
  font-size: 26px;
}
@media (min-width: 960px) {
  .content_page h1 {
    font-size: 36px;
  }
}
.content_page h2 {
  font-size: 22px;
}
@media (min-width: 960px) {
  .content_page h2 {
    font-size: 32px;
  }
}
.content_page h3 {
  font-size: 20px;
}
@media (min-width: 960px) {
  .content_page h3 {
    font-size: 28px;
  }
}
.content_page h4 {
  font-size: 18px;
}
@media (min-width: 960px) {
  .content_page h4 {
    font-size: 24px;
  }
}
.content_page a {
  color: var(--link);
}
.content_page a:hover {
  opacity: 0.9;
}
.content_page p {
  padding-bottom: 20px;
}
.content_page ul {
  list-style: none;
  padding-left: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
@media (min-width: 640px) {
  .content_page ul {
    flex-direction: row;
  }
}
.content_page ul li {
  width: 100%;
  position: relative;
  padding-bottom: 10px;
  padding-left: 35px;
}
@media (min-width: 640px) {
  .content_page ul li {
    width: 48%;
  }
}
.content_page ul li::before {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(/wp-content/themes/ramen/img/casino-icon.svg) no-repeat;
  background-size: cover;
  content: "";
  left: -5px;
  top: 2px;
}
.content_page ol {
  padding-bottom: 20px;
  padding-left: 30px;
  counter-reset: myCounter;
}
.content_page ol li {
  padding-left: 15px;
  margin-bottom: 15px;
  position: relative;
  list-style: none;
}
.content_page ol li::before {
  counter-increment: myCounter;
  content: counter(myCounter);
  width: 30px;
  height: 30px;
  font-size: 16px;
  background: var(--active);
  color: var(--text);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content_btn {
  padding: 15px 20px;
  font-size: 16px;
  background: var(--border-color);
  color: var(--text);
  width: 200px;
  border-radius: var(--radius);
}
.content_btn:hover {
  background: var(--btn-hover);
}

.banner-link {
  margin-bottom: 20px;
  text-align: center;
}
.banner-link .banner-img {
  border: none;
  padding: 0;
  position: relative;
  border-radius: var(--radius);
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.05), 0px 14px 20px rgba(0, 0, 0, 0.2);
}

.wp-block-image {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
}
.wp-block-image img {
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.05), 0px 14px 20px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
}

.button-content {
  margin-bottom: 20px;
  text-align: center;
}

.section-block {
  background: var(--card);
  border-radius: var(--radius);
  position: relative;
  padding: 10px 15px;
  margin-bottom: 20px;
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.05), 0px 14px 20px rgba(0, 0, 0, 0.2);
}
.section-block:last-child {
  margin-bottom: 0;
}
.section-block .banner-border {
  background-image: linear-gradient(90deg, rgb(141, 83, 233) 0%, rgb(0, 183, 255) 100%);
}

/* Footer */
.footer {
  padding: 10px 10px 80px 10px;
}
@media (min-width: 960px) {
  .footer {
    padding: 15px;
  }
}
.footer__copyright-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.footer__copyright-top .bga-img {
  width: 200px;
  margin-right: 10px;
  filter: grayscale(1);
}
.footer__copyright-top.providers img {
  height: 32px;
  margin: 5px 15px 5px 0;
  filter: grayscale(1);
}
@media (min-width: 960px) {
  .footer__copyright-top.providers img {
    margin: 5px 30px 5px 0;
  }
}
.footer__copyright-top.providers img:last-child {
  margin: 5px 0 5px 0;
}
.footer__copyright-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__copyright-bottom span {
  font-size: 14px;
  color: var(--text);
  margin-right: 5px;
}

.fixed_buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  width: 100%;
  padding: 5px 10px;
  background: var(--card);
  bottom: 0;
  left: 0;
  z-index: 8;
  box-shadow: 0px -4px 7px rgba(0, 0, 0, 0.05);
}
@media (min-width: 960px) {
  .fixed_buttons {
    display: none;
  }
}
.fixed_buttons .button {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.3%;
  padding: 5px 0;
}
.fixed_buttons .button .btn-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/wp-content/themes/ramen/img/login.svg);
}
.fixed_buttons .button span {
  font-size: 13px;
}
.fixed_buttons .button .animate-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100px;
  overflow: hidden;
  border-radius: 9px;
}
.fixed_buttons .button .animate-btn::before {
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: -2;
  width: 200%;
  height: 200%;
  content: "";
  background-image: linear-gradient(transparent, transparent), linear-gradient(var(--border-color) 60%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 0 0, 60% 60%;
  animation: rotate 4s linear infinite;
}
.fixed_buttons .button .animate-btn::after {
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: -1;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  content: "";
  background-color: var(--card);
  border-radius: 8px;
}
.fixed_buttons .button:first-child .btn-icon {
  background-image: url(/wp-content/themes/ramen/img/registration.svg);
}
.fixed_buttons .button:first-child span {
  color: var(--border-color);
}
.fixed_buttons .btn-slot {
  width: 64px;
  height: 64px;
  position: relative;
  top: -15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--hover);
  border-radius: 100%;
  border: none;
}
.fixed_buttons .btn-slot::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 100%;
  box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.15);
}
.fixed_buttons .btn-slot .btn-slot-icon {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/wp-content/themes/ramen/img/slot.svg);
}
.fixed_buttons .reg_button {
  background: none;
  margin-left: 0;
}
.fixed_buttons .log_button {
  color: var(--text);
  border-bottom: none;
}

@keyframes rotate {
  to {
    transform: rotate(1turn);
  }
}
/* Scroll */
.scroll-top {
  opacity: 0;
  background: var(--border-color);
  border-radius: var(--radius);
  transition: 0.3s;
  position: fixed;
  bottom: 80px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 8;
}
.scroll-top .scroll-top-bg {
  padding: 5px;
  position: relative;
}
.scroll-top .scroll-top-bg img {
  width: 20px;
  height: 20px;
}

.scroll-top.content_amp {
  opacity: 1;
}

/* Amp */
.header.content_amp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
}
.header.content_amp a amp-img {
  display: block;
  width: 150px;
  height: 20px;
}
.header.content_amp .burger {
  border: none;
}

.menu_amp .menu {
  list-style: none;
}
.menu_amp .menu li {
  margin-bottom: 10px;
}
.menu_amp .menu li a {
  font-size: 18px;
  color: var(--text);
  font-weight: 400;
  padding: 10px 0;
}
.menu_amp .menu .current-menu-item a {
  color: var(--active);
}

amp-sidebar .close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0;
}
amp-sidebar .menu-main-container {
  padding: 0;
}
amp-sidebar .closeButton {
  border: none;
}
amp-sidebar .closeButton .close__img {
  width: 28px;
  height: 28px;
}

#amp-mobile-version-switcher {
  display: none;
}

.content_page.content_amp .faq__item .faq__answer {
  display: block;
}

.footer.content_amp .footer__copyright-top.providers amp-img {
  width: 30%;
}

/* 404 Error */
.error__block {
  padding: 20px 20px 0 20px;
  display: flex;
  width: 100%;
  background: var(--main);
  position: relative;
  overflow: hidden;
  flex-direction: row;
  justify-content: flex-start;
  height: 100vh;
}
.error__block-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  max-width: 1408px;
}
.error__block-content svg {
  width: 100%;
  max-width: 604px;
  color: var(--hover);
  margin-bottom: 30px;
}
.error__block-content p {
  font-size: 24px;
  color: var(--active);
  margin-bottom: 40px;
  line-height: 1.4;
  text-align: center;
}
.error__block-content .error-btn {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--border-color);
  color: var(--text);
}
.error__block-content .error-btn:hover {
  background: var(--btn-hover);
}

/* Slots */
.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  margin-bottom: 15px;
}
@media (min-width: 960px) {
  .slots {
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 20px;
  }
}
.slots__btn {
  padding: 0;
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
}
.slots__btn:hover img {
  transform: scale(1.2);
}
.slots__btn img {
  transition: transform 0.3s ease-in-out;
}
.slots__btn .provider {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 64px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/wp-content/themes/ramen/img/hacksaw.svg);
}
.slots__btn .provider.pragmatic {
  width: 72px;
  background-image: url(/wp-content/themes/ramen/img/pragmatic.svg);
}

/* Table of contents */
.custom__contents {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 640px) {
  .custom__contents {
    width: 600px;
  }
}
.custom__contents-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 10px;
  background: var(--card);
  border-radius: 39px;
  height: 40px;
  padding: 0 0 0 20px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text);
  transition: 0.3s ease-out;
}
.custom__contents-submenu a:last-child {
  margin-bottom: 0;
}
.custom__contents-submenu a:hover {
  text-decoration: none;
  background: var(--border-color);
}
.custom__contents-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border-color);
}
.custom__contents-icon::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/themes/ramen/img/up-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

/* Popup */
.popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.popup.show {
	display: none;
}
.popup__content {
  width: 300px;
  position: relative;
  display: flex;
  background: var(--card);
  border-radius: var(--radius);
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 20px 20px;
}
.popup__content .close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.popup__content .close-popup img, .popup__content .close-popup amp-img {
  width: 20px;
  height: 20px;
}
.popup__content p {
  font-size: 14px;
  line-height: 1.2;
}
.popup__content .popup-btn {
  margin-top: 20px;
  width: 250px;
  border-radius: var(--radius);
  background: var(--border-color);
  font-weight: 700;
  border: none;
  height: 44px;
}/*# sourceMappingURL=style.css.map */