@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}
:root {
    --bg_main: #111111;
    --border_radius_button: 0px;
    --bg_button_primary: #c907bb; 
    --color_button_primary: #ffffff; 
    --bg_button_secondary: #ccd3db;  
    --color_button_secondary: #111111; 
    --bg_header: #000;
    --border_header: #c907bb;
    --color_header_link: #fff;  
    --color_header_link_hover: #c907bb; 
    --color_nav_menu: #ffffff; 
    --bg_nav_menu: #c907bb; 
    --color_game_card_play: #fff; 
    --color_game_card_title: #cdcecf;
    --bg_game_card: rgba(0, 0, 0, .8);
    --border_game_card: #121212;
    --bg_table_head: #c907bb; 
    --color_table_head: #fff;
    --color_table_text: #fff;
    --color_content_text: #fff; 
    --color_content_link: #c907bb; 
    --bg_footer: #000000; 
    --bg_partners: #fff;
    --bg_sticky_buttons: rgba(0,0,0,.85);
    --bg_sticky_buttons_close: #292a34;
    --color_reviews_title: #fff;
    --color_reviews_input: #fff;
    --border_reviews_input: #c907bb;
    --bg_reviews_input: transparent;
    --bg_comments: #292a34;
    --color_comments_row_desc: #fff;
    --bg_comments_row_info: #c907bb;
    --color_comments_row_info: #fff;
    --bg_comments_row_desc: #000;
    --border_advertising: #c907bb;
    --bg_advertising: #292a34;
    --color_advertising: #fff;
}  .button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 31px 6px 30px;
    height: fit-content;
    text-align: center;
    white-space: nowrap;
    background: var(--bg_button_primary);
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--color_button_primary);
    font-family: "Roboto", sans-serif;
    border-radius: var(--border_radius_button);
    height: 36px;
  }
  @media (max-width: 768px) {
    .button {
      width: 100%;
    }
  }
  .button--2 {
    background: var(--bg_button_secondary);
    color: var(--color_button_secondary);
  }
  
  p,
  span,
  li {
    font-size: 16px;
    line-height: 118%;
  }
  @media (max-width: 768px) {
    p,
    span,
    li {
      font-size: 14px;
    }
  }
  
  h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 100%;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  @media (max-width: 1366px) {
    h1 {
      font-size: 56px;
      line-height: 120%;
    }
  }
  @media (max-width: 1024px) {
    h1 {
      font-size: 42px;
    }
  }
  @media (max-width: 768px) {
    h1 {
      font-size: 30px;
    }
  }
  h1 > * {
    font-family: "Roboto", sans-serif;
  }
  
  h2 {
    font-family: "Roboto", sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.12px;
    text-transform: uppercase;
  }
  @media (max-width: 768px) {
    h2 {
      font-size: 25px;
    }
  }
  h2 > * {
    font-family: "Roboto", sans-serif;
  }
  
  h3 {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.8px;
    text-transform: uppercase;
  }
  h3 > * {
    font-family: "Roboto", sans-serif;
  }
  
  h4,
  h5,
  h6 {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
  }
  h4 > *,
  h5 > *,
  h6 > * {
    font-family: "Roboto", sans-serif;
  }
  p span,
  h1 span,
  h2 span,
  h3 span,
  h4 span,
  h5 span,
  h6 span {
    font-size: inherit;
    color: var(--color_content_link);
  }
  
  p a {
    color: var(--color_content_link);
  }
  
  .shortcode-button {
    display: flex;
    justify-content: center;
  }
  
  .shortcode-button a.hero__button.button.shortcode-button {
    color: #fff;
    margin: 20px 0;
  }
  .table {
    margin-bottom: 80px;
    position: relative;
  }
  .table h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
  }
  .table h3 {
    text-align: center;
    position: relative;
    z-index: 3;
    margin: 0 auto 20px;
  }
  
  table {
    font-size: 12px;
    width: 100%;
    border-collapse: collapse ;
    border: 1px solid var(--bg_table_head);
  }
  table thead {
    background: var(--bg_table_head);
    text-align: center;
  }
  table thead td,
  table thead th {
    border: none ;
  }
  table td,
  table th {
    padding: 24px 14px;
    border: 1px solid var(--bg_table_head);
    border-top: none;
  }
  @media (max-width: 768px) {
    table td,
    table th {
      padding: 14px 10px;
    }
  }
  .page_wrapper {
    padding-top: 60px;
  }  
  .text {
    margin-bottom: 80px;
    position: relative;
  }
  .text__wrapper {
    position: relative;
    z-index: 3;
  }
  .text h2,
  .text h3,
  .text h4,
  .text h5,
  .text h6 {
    margin: 20px 0;
    color: var(--color_content_text);
  }
  .text table {
    margin: 20px 0;
  }
  .text p {
    margin: 10px 0;
    color: var(--color_content_text);
  }
  .text p:first-child {
    margin: 0 0 10px 0;
  }
  .text p:last-child {
    margin: 10px 0 0 0;
  }
  .text h2 {
    margin: 20px 0;
  }
  .text h3 {
    margin: 20px 0 10px;
  }
  .text li {
    color: var(--color_content_text);
  }
  @media (max-width: 768px) {
    .text__content {
      font-size: 14px;
    }
  }

  /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  /* Document
     ========================================================================== */
  /**
   * 1. Correct the line height in all browsers.
   * 2. Prevent adjustments of font size after orientation changes in iOS.
   */
  html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
  }
  
  /* Sections
       ========================================================================== */
  /**
     * Remove the margin in all browsers.
     */
  body {
    margin: 0;
  }
  
  /**
     * Render the `main` element consistently in IE.
     */
  main {
    display: block;
  }
  
  /* Grouping content
       ========================================================================== */
  /**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
  hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
  }
  
  /**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
  pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /* Text-level semantics
       ========================================================================== */
  /**
     * Remove the gray background on active links in IE 10.
     */
  a {
    background-color: transparent;
  }
  
  /**
     * 1. Remove the bottom border in Chrome 57-
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
  abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
  }
  
  /**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
  b,
  strong {
    font-weight: bolder;
  }
  
  /**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
  code,
  kbd,
  samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /**
     * Add the correct font size in all browsers.
     */
  small {
    font-size: 80%;
  }
  
  /**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  /* Embedded content
       ========================================================================== */
  /**
     * Remove the border on images inside links in IE 10.
     */
  img {
    border-style: none;
  }
  
  /* Forms
       ========================================================================== */
  /**
     * 1. Change the font styles in all browsers.
     * 2. Remove the margin in Firefox and Safari.
     */
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
  }
  
  /**
     * Show the overflow in IE.
     * 1. Show the overflow in Edge.
     */
  button,
  input {
    /* 1 */
    overflow: visible;
  }
  
  /**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
  button,
  select {
    /* 1 */
    text-transform: none;
  }
  
  /**
     * Correct the inability to style clickable types in iOS and Safari.
     */
  button,
  [type=button],
  [type=reset],
  [type=submit] {
    -webkit-appearance: button;
  }
  
  /**
     * Remove the inner border and padding in Firefox.
     */
  button::-moz-focus-inner,
  [type=button]::-moz-focus-inner,
  [type=reset]::-moz-focus-inner,
  [type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  /**
     * Restore the focus styles unset by the previous rule.
     */
  button:-moz-focusring,
  [type=button]:-moz-focusring,
  [type=reset]:-moz-focusring,
  [type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  /**
     * Correct the padding in Firefox.
     */
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  
  /**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
  legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
  }
  
  /**
     * Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
  progress {
    vertical-align: baseline;
  }
  
  /**
     * Remove the default vertical scrollbar in IE 10+.
     */
  textarea {
    overflow: auto;
  }
  
  /**
     * 1. Add the correct box sizing in IE 10.
     * 2. Remove the padding in IE 10.
     */
  [type=checkbox],
  [type=radio] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  
  /**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
  [type=number]::-webkit-inner-spin-button,
  [type=number]::-webkit-outer-spin-button {
    height: auto;
  }
  
  /**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
  [type=search] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
  }
  
  /**
     * Remove the inner padding in Chrome and Safari on macOS.
     */
  [type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  /**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
  }
  
  /* Interactive
       ========================================================================== */
  /*
     * Add the correct display in Edge, IE 10+, and Firefox.
     */
  details {
    display: block;
  }
  
  /*
     * Add the correct display in all browsers.
     */
  summary {
    display: list-item;
  }
  
  /* Misc
       ========================================================================== */
  /**
     * Add the correct display in IE 10+.
     */
  template {
    display: none;
  }
  
  /**
     * Add the correct display in IE 10.
     */
  [hidden] {
    display: none;
  }
  
  textarea {
    resize: none;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .default_cms ul {
    list-style: disc;
    margin-left: 15px;
    padding-left: 25px;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
  }
  
  * {
    box-sizing: border-box;
  } 
  .container {
    max-width: 1440px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  
  * {
    font-family: "Roboto", sans-serif;
    color: #ffffff;
  }
  
  body {
    background: var(--bg_main);
  }
  
  #page {
    overflow: hidden;
  }
  body .hide {
    display: none;
  }
table tr td{
  font-size: 16px;
  line-height: 118%;
  color: var(--color_table_text);
}
table thead tr td{
 color: var(--color_table_head);
 font-weight: 900;
}
@media (max-width: 400px){
 table td, table th {
    padding: 14px 5px;
 }
 table tr td{
 font-size: 14px;
  line-height: 118%;
 }
}
  .table-of-content {
    position: relative;
    margin-bottom: 80px;
  }
  @media (max-width: 768px) {
    .table-of-content {
      margin-bottom: 40px;
    }
  }
  .table-of-content__wrapper {
    position: relative;
    z-index: 3;
    background-color: #faff0e;
    border-radius: 10px;
  }
  .table-of-content__title {
    display: block;
    width: 100%;
    padding: 24px 16px;
    font-weight: 500;
    color: #000000;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 20px;
  }
  @media (max-width: 768px) {
    .table-of-content__title {
      text-align: center;
      font-size: 14px;
      padding: 14px;
    }
  }
  .table-of-content__icon {
    position: relative;
    margin-left: 3px;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease-in-out;
  }
  .table-of-content__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  @media (max-width: 768px) {
    .table-of-content__list {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
  }
  .table-of-content__list--active {
    opacity: 1;
    padding: 0 16px 16px;
    height: auto;
  }
  .table-of-content--active > .table-of-content__icon {
    transform: rotate(180deg);
  }
  .table-of-content a {
    color: #000000;
  }
  .table-of-content li {
    color: #000000;
  }
  @media (max-width: 768px) {
    .table-of-content li {
      font-size: 14px;
      list-style: auto;
      line-height: 130%;
      margin-left: 7px;
    }
  }
  .image-text-block {
    position: relative;
    margin-bottom: 80px;
  }
   
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    z-index: 9;
    border-bottom: 2px solid var(--border_header);
    background: var(--bg_header);
  }
  .header__container {
    min-width: 1440px;
  }
  .header__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
    flex-wrap: nowrap;
    padding: 10px 0;
  }
  @media (max-width: 768px) {
    .header__wrapper {
      padding: 10px 0 0;
    }
  }
  .header__hidden {
    opacity: 0;
    transform: translateY(-100%);
  }
  .header__scrolled {
    background: #000000;
  }
  .header__buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .header__buttons {
      display: none;
    }
  }
  .header__lang {
    display: flex;
    align-items: center;
    margin-right: 10px;
    height: 40px;
  }
  .header__burger {
    display: none;
    position: relative;
    cursor: pointer;
    width: 32px;
    height: 11px;
  }
  @media (max-width: 768px) {
    .header__burger {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    header .show_menu {
      transform: translateX(-0%);
    }
  }
  .header__burger span {
    position: absolute;
    right: 0;
    z-index: 10;
    display: block;
    width: 32px;
    height: 1px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }
  .header__burger span:nth-child(1) {
    top: -50%;
  }
  .header__burger span:nth-child(2) {
    top: 0;
  }
  .header__burger span:nth-child(3) {
    top: 50%;
  }
  .header__burger--active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .header__burger--active span:nth-child(2) {
    opacity: 0;
  }
  .header__burger--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav {
    display: flex;
  }
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
  }
  .nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .nav .menu-item {
    position: relative;
    color: var(--color_header_link);
  }
  .nav .menu-item:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color_header_link_hover);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  .nav .menu-item:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .logo {
    max-width: 160px;
    width: fit-content;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: absolute;
    top: 0;
    left: -6%;
    width: 60vw;
    height: 100vh;
    z-index: 9;
    background: #000000;
    transform: translateX(-200%);
    transition: all 0.3s ease-in-out;
    padding: 50px 20px 20px;
  }
  @media (max-width: 768px) {
    .mobile-menu {
      display: flex;
    }
  }
  .mobile-menu--active {
    transform: none;
  }
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .mobile-menu__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .mobile-menu .button {
    margin-bottom: 15px;
    padding: 8px;
    width: 100%;
  }
  .mobile-menu .menu-item {
    font-size: 16px;
    font-weight: 500;
  }
  
  .footer {
    background: var(--bg_footer);;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .footer .menu-item a {
    color: var(--color_footer_link);
  }
  .footer__wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
  }
  .footer__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer__logo {
    text-align: center;
    margin-top: 40px;
    width: 100%;
  }
  .footer__nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  @media (max-width: 768px) {
    .footer__content {
      display: flex;
      flex-direction: column;
    }
  }
  .footer__copyright {
    text-align: center;
    width: 100%;
    padding: 20px 0 0;
    margin-bottom: 75px;
  }
  .footer__partners {
    padding: 20px 0px;
    background: var(--bg_partners);

  }
  .partners_container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer__nav .nav__list {
    flex-wrap: wrap;
  }
  @media (max-width: 768px) {
    .footer__copyright {
      font-size: 12px;
    }
  }
  @media (max-width: 768px) {
    .footer__logo {
      margin-bottom: 20px;
    }
  }.nav_menu_wrapper {
    background: var(--bg_nav_menu);
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.nav_menu_title {
    font-family: "Roboto", sans-serif;
    color: var(--color_nav_menu);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 24px;
    cursor: pointer;
}
.nav_menu_title img {
    width: 18px;
    transition: 0.7s;
}
.active .nav_menu_title img {
    transform: rotate(180deg);
}
.cms .nav_menu {
    margin-left: 0;
    height: 0px;
    overflow: hidden;
}
.active .nav_menu {
    height: auto;
    margin-top: 20px;
}
.nav_menu li {
    list-style: none;
    margin-bottom: 5px;
}
.nav_menu li a {
    font-style: normal;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color_nav_menu);
    text-decoration: none;
}
@media (max-width: 767px) {
    .cms .nav_menu {
        margin-top: 0;
    }
}.sticky_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    background-color: var(--bg_sticky_buttons);
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
}
.sticky_buttons a {
    vertical-align: middle;
    margin: 10px;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
}

.sticky_buttons_container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}
.close {
    position: absolute;
    right: 10px;
    top: -35px;
    background: var(--bg_sticky_buttons_close);
    font-size: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer
}.advertising {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
}
.row_advertising {
    display: flex;
    padding: 45px 15px 45px 45px;
    border: 1px solid var(--border_advertising);
    box-sizing: border-box;
    border-radius: 12px;
    margin-top: 20px;
    background: var(--bg_advertising);
}
.advertising_left {
    width: 15%;
}
.advertising_right {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.advertising_item_time {
    width: 100%;
    text-align: center;
    padding: 5px;
    color: var(--color_advertising);
}
.advertising_item_time time {
    color: var(--color_advertising);
}
.advertising_center {
    width: 60%;
}
.advertising_ttl {
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: var(--color_advertising);
    margin-bottom: 15px;
}
.advertising_text {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--color_advertising);
}
.advertising_short_code_wrapper {
    padding-top: 25px;
    padding-bottom: 25px;
}
@media (min-width: 320px) and (max-width: 767px) {
    .row_advertising {
        padding: 15px 0px 0px;
        flex-wrap: wrap;
        overflow: hidden;
    }
    .advertising_left {
        display: none;
    }
    .advertising_left, .advertising_center, .advertising_right {
        width: 100%;
    }
    .advertising_ttl {
        font-size: 20px;
    }
    .advertising_ref {
        margin-top: 20px;
    }
    .advertising_right .button {
        width: 50%;
        margin-top: 20px;
    }
    .advertising_item_time {
        display: none;
    }
    .advertising_center {
        padding-left: 20px;
        padding-right: 20px;
    }
    .advertising_right {
        margin-top: 10px;
        padding-bottom: 20px;
    }
}.games-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px 25px;
}
@media (min-width: 992px) {
    .games-grid {
        margin-bottom: 34px;
    }
}
.games-item {
    max-width: 20%;
    margin-bottom: 10px;
    padding: 0 6px;
}
@media (min-width: 768px) {
    .games-item {
        margin-bottom: 13px;
    }
}
@media (min-width: 768px) {
    .games-item {
        max-width: 20%;
        flex: 0 0 20%;
    }
}
@media (max-width: 768px) {
    .games-item {
        max-width: 50%;
        flex: 0 0 50%;
    }
}
.games-item__img {
    border-radius: 7px;
    border: 3px solid var(--border_game_card);
    background-color: var(--border_game_card);
    margin-bottom: 3px;
    position: relative;
    display: flex;
    justify-content: center;
}
.game_short_code_wrapper {
    padding-top: 25px;
    padding-bottom: 25px;
}
@media (min-width: 768px) {
    .games-item__img {
        margin-bottom: 10px;
    }
}
.games-item__img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.games-item__cta {
    transition: all .27s cubic-bezier(.215,.61,.355,1) 0s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg_game_card);
    border-radius: 4px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 16px 16px;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
}
.games-item__cta-ttl {
    font-weight: 900;
    font-size: 17px;
    line-height: 125.5%;
    color: var(--color_game_card_play);
    margin-bottom: 23px;
}
.games-item__cta-ttl a {
    color: var(--color_game_card_play);
}
.games-item:hover .games-item__cta {
    opacity:1;
    visibility:visible
}
.games-item__ttl {
    display: block;
    color: var(--color_game_card_title);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}
.games-item .games-item__cta-demo span {
    color: var(--color_button_primary);
}
.hero {
  margin-top: 55px;
  margin-bottom: 20px;
  overflow: hidden;
  padding-top: 20px;
}
.hero__wrapper {
  text-align: center;
}
.hero .hero__button {
  display: inline-block;
  line-height: 22px;
  margin-top: 20px;
  margin-bottom: 20px;
}
 @media (max-width: 768px) {
  .hero__wrapper img {
    width: 100%;
    height: auto;
  }
}.review {
    padding: 30px 0px;
}
.comments_title {
    margin: 0 auto;
    padding: 0;
    font-size: 35px;
    margin-bottom: 20px;
    color: var(--color_reviews_title);
    font-family: "Roboto", sans-serif;
}
.comments_row_desc {
    padding: 15px;
    color: var(--color_comments_row_desc);
    font-size: 18px;
}
.comments_row {
    background: var(--bg_comments);
    margin-bottom: 20px;
    border-radius: 4px;
    padding-bottom: 20px;
}
.comments_row_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg_comments_row_info);
    padding: 15px;
    border-radius: 4px 4px 0px 0px;
}
.comments_row_name span {
    font-weight: bold;
    font-size: 20px;
    font-style: italic;
    color: var(--color_comments_row_info);
    font-family: "Roboto", sans-serif;
}
.comments_row_data {
    font-weight: bold;
    color: var(--color_comments_row_info);
    font-family: "Roboto", sans-serif;
}
.comments_row_answer {
    margin-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 20px;
    border-radius: 4px;
}
.comments_row_answer .comments_row_desc {
    background: var(--bg_comments_row_desc);
}
.comments_row_answer_link a {
    color: var(--color_comments_row_desc);
    font-size: 18px;
    text-decoration: none;
}
.comments_row_answer_link {
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.comment_form_ajax {
    width:100%;
}
.comment_form_info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.comment_form_input_wrapper input {
    width:300px;
    height: 35px;
    border: none;
    background: var(--bg_reviews_input);
    color: var(--color_reviews_input);
    border: 1px solid var(--border_reviews_input);
    border-radius: 4px;
    padding-left: 15px;
    box-sizing: border-box;
}
.comment_form_comment textarea
{
    display: block;
    padding: 15px;
    width: 100%;
    margin: 0 auto;
    background: var(--bg_reviews_input);
    color: var(--color_reviews_input);
    padding-left: 15px;
    min-height: 126px;
    border: 1px solid var(--border_reviews_input);
}
.form_submit {
    padding: 15px 0px;
    display: flex;
    justify-content: center;
}
.form_container {
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 630px;
    flex-wrap: wrap;
    width: 100%;
}
.form_title {
    margin: 0;
    padding: 0;
    font-size: 35px;
    margin-bottom: 20px;
    color: var(--color_reviews_title);
    font-family: "Roboto", sans-serif;
}
::placeholder {
    color: var(--color_reviews_input);
    font-family: "Roboto", sans-serif;
}
.comment_form_comment textarea {
    box-sizing: border-box;
    border-radius: 4px;
}
@media (max-width: 1200px) {
    .comment_form_ajax {
        width: 100%;
        box-sizing: border-box;
    }
    .comment_form_info {
        flex-wrap: wrap;
    }
    .comment_form_input_wrapper {
        width: 100%;
        margin-bottom: 20px;
    }
    .comment_form_input_wrapper input {
        width: 100%;
    }
    .comment_form_comment textarea {
        width: 100%;
        box-sizing: border-box;
    }
    .submit_ajax_comment {
        padding: 10px 15px;
        font-size: 15px;
    }
    .form_submit {
        padding: 15px 0px;
    }
}
@media (min-width: 767px) and (max-width: 1200px) {
    .comment_form_input_wrapper {
        width: 50%;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
    .comment_form_comment {
        padding-left: 10px;
        padding-right: 10px;
    }
}.figure_container {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}
.figure_container img {
    border-radius: 8px;
}
.figure_container figcaption {
    color: var(--color_7);
    font-style: italic;
    font-weight: 600;
}.gallery_container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 15px;
    padding-bottom: 15px;
}
.gallery_container img {
    border-radius: 8px;
}.img_container {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.img_container img {
    border-radius: 8px;
} :root {--border_radius_button: 45px;--bg_button_primary: #CE0C16;--color_button_primary: #FFFFFF;--bg_button_secondary: #CE0C16;--color_button_secondary: #FFFFFF;--border_header: #000000;--color_nav_menu: #000000;--bg_nav_menu: #CE0C16;--bg_table_head: #CE0C16;--color_content_link: #CE0C16;--bg_partners: #3B3939;--border_reviews_input: #CE0C16;--bg_comments_row_info: #CE0C16;--color_comments_row_info: #000000;}
table th{
	background: #ce0c16;
}
.alignleft, img.alignleft {
	margin-right: 1.5em;
	display: inline;
	float: left;
}
.alignright, img.alignright {
	margin-left: 1.5em;
	display: inline;
	float: right;
}
.aligncenter, img.aligncenter {
	margin-right: auto;
	margin-left: auto;
	display: block;
	clear: both;
	max-width: 100%;
    height: auto;
}
.wp-caption {
	margin-bottom: 1.5em;
	text-align: center;
	padding-top: 5px;
}
.wp-caption img {
	border: 0 none;
	padding: 0;
	margin: 0;
}
.wp-caption p.wp-caption-text {
	line-height: 1.5;
	font-size: 10px;
	margin: 0;
}
.wp-smiley {
	margin: 0 !important;
	max-height: 1em;
}
blockquote.left {
	margin-right: 20px;
	text-align: right;
	margin-left: 0;
	width: 33%;
	float: left;
}
blockquote.right {
	margin-left: 20px;
	text-align: left;
	margin-right: 0;
	width: 33%;
	float: right;
}
@media(max-width: 768px){
	.alignleft, img.alignleft, .alignright, img.alignright {
		display: block;
		width: 100%;
		height: auto;
		float: unset;
	}
}