@charset "UTF-8";

:root {
  /* Цвета текстов и прочего */
  --color-opposite: #ffffff;
  --color-gray: rgba(255, 255, 255, 0.3);
  /* Фоны почти всех островков / цвета некоторых border-ов */
  --color-light: rgba(255, 255, 255, 0.05);
  --color-light-hover: rgba(255, 255, 255, 0.1);
  /* Цвет фона заголовков таблицы */
  --bg-table-th: rgba(255, 255, 255, 0.3);
  /* Цвет некоторых иконок / в футере стрелки / у круглых кнопок close */
  --fill-icon-primary: rgba(255, 255, 255, 0.3);
  /* Кнопка при клике на которую вылазит баннер "welcome bonus" */
  --bg-btn-bonus: linear-gradient(225deg, #6D28FF 0%, #FA00FF 100%);
  --bg-btn-bonus-hover: linear-gradient(225deg,#FA00FF 0%, #6D28FF 100%);
  /* Кнопка закрытия баннера "welcome bonus". Значения обязательно в HEX. */
  --bg-hex-btn-close-banner: #171727;
  --bg-hover-hex-btn-close-banner: #22223f;
  /* Цвета ошибок wordpress форм */
  --color-form-border: rgba(255, 59, 48, 0.3);
  --color-form-error: rgba(255, 59, 48, 1);
  /* box-shadow у попапов */
  --shadow: 0px 8px 48px 0px rgba(0, 0, 0, 0.5);
  /* Размеры шрифтов */
  --fz-text-default: 15px;
  --lh-text-default: 18px;
  --fz-text-big: 30px;
  --lh-text-big: 36px;
  --fz-text-medium: 20px;
  --lh-text-medium: 24px;
  --fz-text-small: 13px;
  --lh-text-small: 16px;
}

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
section,
aside {
  display: block;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  width: 100%;
}

body {
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica", "Arial", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", sans-serif;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body.lock {
  overflow: hidden;
}

input,
button,
textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica", "Arial", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", sans-serif;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/

.wrapper {
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica", "Arial", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", sans-serif;
  font-size: var(--fz-text-default);
  line-height: var(--lh-text-default);
  color: var(--color-opposite);
}

body a {
  color: inherit;
}

body a:hover {
  text-decoration: none;
}

body button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

svg.w-16,
img.w-16 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  display: block;
}

svg.w-24,
img.w-24 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: block;
}

svg.w-32,
img.w-32 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32px;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: block;
}

img,
video {
  -o-object-fit: cover;
  object-fit: cover;
}

.styledContent img {
  max-width: 100%;
}

input[type=text],
input[type=email],
textarea {
  outline: none;
  color: var(--color-opposite);
  font-size: 16px;
  background-color: transparent;
  resize: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table td,
table th {
  padding: 16px;
  border: 1px solid var(--color-light);
}

table th {
  background-color: var(--bg-table-th);
  text-align: left;
}

html :where(img[class*=wp-image-]) {
  height: auto;
  border-radius: 8px;
}

main > article:first-child {
  margin-top: 16px;
}

.mt-2 {
  margin-top: 2px;
}

.m-4 {
  margin: 4px;
}

.mt-4 {
  margin-top: 4px;
}

.mr-4 {
  -webkit-margin-end: 4px;
  margin-inline-end: 4px;
}

.mb-4 {
  margin-bottom: 4px;
}

.ml-4 {
  -webkit-margin-start: 4px;
  margin-inline-start: 4px;
}

.m-8 {
  margin: 8px;
}

.mt-8 {
  margin-top: 8px;
}

.mr-8 {
  -webkit-margin-end: 8px;
  margin-inline-end: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  -webkit-margin-start: 8px;
  margin-inline-start: 8px;
}

.m-16 {
  margin: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.mr-16 {
  -webkit-margin-end: 16px;
  margin-inline-end: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  -webkit-margin-start: 16px;
  margin-inline-start: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.m-32 {
  margin: 32px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.author-block.mb-32 {
  margin-bottom: 10px;
}

.p-8 {
  padding: 8px;
}

.p-16 {
  padding: 16px;
}

.p-0 {
  padding: 0 !important;
}

.p-0-16 {
  padding: 0 16px;
}

.p-16-0 {
  padding: 16px 0;
}

.p-16-8 {
  padding: 16px 8px;
}

.p-8-16 {
  padding: 8px 16px;
}

.p-0-8 {
  padding: 0 8px;
}

.p-40-md3-16 {
  padding: 40px 16px;
}

.nlc-mb-8 > *:not(:last-child) {
  margin-bottom: 8px;
}

.nlc-mb-16 > *:not(:last-child):not(.not-nlc) {
  margin-bottom: 16px;
}

.nlc-mb-24 > *:not(:last-child):not(.not-nlc) {
  margin-bottom: 24px;
}

.nlc-mb-32 > *:not(:last-child):not(.not-nlc) {
  margin-bottom: 32px;
}

.posa {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
}

.pos-r {
  position: relative;
}

.text-trim {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multicolumn-text {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.has-links a:hover {
  text-decoration: underline;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.dn {
  display: none !important;
}

.o-h {
  overflow: hidden;
}

.ws-n {
  white-space: nowrap;
}

.w-100 {
  width: 100%;
}

.h-auto {
  height: auto;
}

.wh-100 {
  width: 100%;
  height: 100%;
}

.min-w-0 {
  min-width: 0;
}

.brad-8 {
  border-radius: 8px;
}

.span-block {
  display: block;
}

.td-u {
  text-decoration: underline;
}

.tt-u {
  text-transform: uppercase;
}

.rotate-270 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

html[dir=rtl] .rotate-270 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.white {
  color: var(--color-opposite);
}

.gray {
  color: var(--color-gray);
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.fww {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fdc {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-32 {
  gap: 32px;
}

.aic {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.aifs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.aife {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.jcc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.jcfs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.jcfe {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.jcsb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.f-aic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.f-jcsb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.f-jcsb-aic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.f-jcfs-aic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.f-jcc-aic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.popup {
  width: 360px;
  position: fixed;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
}

.popup.isOpen {
  opacity: 1;
  visibility: visible;
  z-index: 160;
}

.popup__body {
  width: 360px;
  position: relative;
  border-radius: 12px;
  background-color: var(--bg-color);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.popup__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px;
}

.popup__content {
  padding: 0 16px 16px 16px;
  max-height: 65vh;
  overflow-y: auto;
}

@-webkit-keyframes showModal {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes showModal {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.js-popup-opener {
  cursor: pointer;
}

#language.mod2 {
  position: absolute;
}

#problem .popup__content {
  padding: 0;
}

.btn,
.wpcf7-form-control.wpcf7-submit,
.navigation.posts-navigation .nav-previous a,
.navigation.posts-navigation .nav-next a {
  border-radius: var(--border-radius);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

.btn_primary {
  padding: 8px 20px 8px 24px;
}

.btn_secondary,
.wpcf7-form-control.wpcf7-submit,
.navigation.posts-navigation .nav-previous a,
.navigation.posts-navigation .nav-next a {
  padding: 14px 22px;
  font-weight: 700;
}

.btn__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2px;
}

.btn__title {
  font-size: 15px;
  font-weight: bold;
}

.btn__subtitle {
  font-size: 12px;
}

.btn-dropdown {
  background-color: transparent;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}

.btn-dropdown:hover {
  background-color: var(--color-light);
}

.btn-dropdown_filled {
  -ms-flex-item-align: center;
  align-self: center;
  padding: 8px;
  background: var(--color-light);
}

.btn-dropdown_filled:hover {
  background-color: var(--color-light-hover);
}

.btn-2 {
  width: 100%;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--color-opposite);
  background-color: var(--color-light);
}

.btn-2:hover {
  background-color: var(--color-light-hover);
}

.btn-2 svg use {
  fill: white;
}

.btn-6 {
  color: var(--color-opposite);
  background-color: transparent;
}

.btn-6:hover {
  text-decoration: underline;
}

.scroll-styled {
  -webkit-overflow-scrolling: touch;
}

.shake {
  -webkit-transform-origin: 0%;
  -ms-transform-origin: 0%;
  transform-origin: 0%;
  -webkit-animation: shake 5s ease-in-out infinite;
  animation: shake 5s ease-in-out infinite;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  3% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  6% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }

  9% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  12% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }

  15% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  3% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  6% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }

  9% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  12% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }

  15% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.btn_left,
.alignleft {
  margin: 20px 30px;
  float: left;
}

.btn_right,
.alignright {
  margin: 20px 30px;
  float: right;
}

.btn_center,
.aligncenter {
  margin: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.btn_center {
  width: 40%;
}

.btn-round {
  padding: 8px;
  background: var(--color-light);
  border-radius: 99px;
}

.btn-round:hover {
  background-color: var(--color-light-hover);
}

.btn-round svg use {
  fill: var(--fill-icon-primary);
}

.btn-round_white {
  background-color: var(--color-opposite);
}

.btn-round_white:hover {
  background-color: #D3D3D3;
}

.linksDark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.linksDark .linkSocial {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 8px;
  background-color: var(--color-light);
}

.linksDark .linkSocial svg use {
  fill: #fff;
}

.linksDark .linkSocial:hover {
  background-color: var(--color-light-hover);
}

.linkSocial {
  background-color: var(--color-opposite);
  border-radius: 8px;
  padding: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.linkSocial svg use {
  fill: #232325;
}

.linkSocial_instagram {
  background: linear-gradient(262.93deg, #7E2BF4 0%, #ED146E 50%, #FFC90C 100%);
}

.linkSocial_facebook {
  background: rgb(8, 102, 255);
  /* immutable */
}

.linkSocial_linkedin {
  background: rgb(10, 102, 194);
  /* immutable */
}

.bgOverlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  z-index: 102;
  background-color: rgba(0, 0, 0, 0.5);
  /* immutable */
  backdrop-filter: blur(5px);
}

.bgOverlay.active {
  display: block;
}

.inputText,
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
  padding: 8px;
  border-radius: 8px;
  width: 100%;
  border: 1px solid var(--color-light);
}

.table-auto-scroll {
  overflow-x: auto;
}

.styledContent {
  --space-bottom: 25px;
  padding: 0 16px;
}

.styledContent > p {
  line-height: 140%;
  margin-bottom: var(--space-bottom);
}

.styledContent > h1 {
  margin-bottom: var(--space-bottom);
}

.styledContent > h2 {
  margin-bottom: var(--space-bottom);
}

.styledContent > h3 {
  margin-bottom: var(--space-bottom);
}

.styledContent > h4 {
  margin-bottom: var(--space-bottom);
}

.styledContent > h5,
.styledContent h6 {
  margin-bottom: var(--space-bottom);
}

.styledContent > a:not([class]) {
  display: inline-block;
  text-decoration: underline;
}

.styledContent > a {
  margin-bottom: var(--space-bottom);
}

.styledContent .p-40-md3-16,
.styledContent .firstScreen.p-16 {
  -webkit-padding-end: 0 !important;
  padding-inline-end: 0 !important;
  -webkit-padding-start: 0 !important;
  padding-inline-start: 0 !important;
}

.styledContent > ul,
.styledContent > ol {
  margin-bottom: var(--space-bottom);
}

.styledContent .table-auto-scroll {
  margin-bottom: var(--space-bottom);
}

ul.list li,
.styledContent > ul li,
ol.list li,
.styledContent > ol li {
  -webkit-padding-start: 32px;
  padding-inline-start: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

ul.list li:not(:last-child),
.styledContent > ul li:not(:last-child),
ol.list li:not(:last-child),
.styledContent > ol li:not(:last-child) {
  margin-bottom: 16px;
}

ul.list li,
.styledContent > ul li {
  gap: 16px;
}

ul.list li:before,
.styledContent > ul li:before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8px;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 99px;
}

ol.list,
.styledContent > ol {
  counter-reset: myCounter;
}

ol.list li,
.styledContent > ol li {
  gap: 12px;
}

ol.list li:before,
.styledContent > ol li:before {
  content: counter(myCounter) ".";
  counter-increment: myCounter;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

.header.active {
  background-color: color-mix(in srgb, var(--bg-color) 80%, transparent);
}

.header.active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(64px);
}

.header__body {
  position: relative;
  z-index: 80;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header__menu {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header__menu ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 0px;
  -moz-column-gap: 0px;
  column-gap: 0px;
  row-gap: 8px;
  font-weight: bold;
}

.header__bgOverlay {
  z-index: 5;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.header__burger {
  display: none;
}

.header__menuButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  white-space: nowrap;
}

.logo__image {
  height: auto;
  max-height: 54px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.logo__lang {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  border-radius: 99px;
  background-color: #fff;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2px;
}

.logo__lang img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
}

.logo__pc .logo__image {
  margin-right: 4px;
}

.logo__mob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.firstScreen {
  padding: 16px 16px 0 16px;
  margin: 0 -16px;
}

.firstScreen__body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 50%;
  row-gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 320px;
}

.firstScreen__title {
  grid-column: 1/3;
  grid-row: 1;
  z-index: 2;
  padding-top: 51px;
  -webkit-padding-start: 64px;
  padding-inline-start: 64px;
}

.firstScreen__text {
  grid-column: 1/3;
  grid-row: 2;
  z-index: 2;
  -webkit-padding-start: 64px;
  padding-inline-start: 64px;
}

.firstScreen__bonus {
  grid-column: 1/2;
  grid-row: 3;
  z-index: 2;
  font-weight: 700;
  padding-bottom: 51px;
  -webkit-padding-start: 64px;
  padding-inline-start: 64px;
  -webkit-padding-end: 8px;
  padding-inline-end: 8px;
}

.firstScreen__bonus > *:not(:last-child) {
  margin-bottom: 2px;
}

.firstScreen__btn {
  grid-row: 3;
  grid-column: 2/3;
  z-index: 2;
  padding-bottom: 51px;
}

.firstScreen__image {
  grid-row: 1/4;
  grid-column: 3/5;
  z-index: 2;
  position: relative;
  height: 100%;
}

.firstScreen__image img {
  position: absolute;
  bottom: 0;
  left: 92px;
  width: 328px;
  height: 328px;
}

.firstScreen__bg {
  grid-column: 1/5;
  grid-row: 1/4;
  z-index: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 24px;
  overflow: hidden;
}

.games {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0 40px 0;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.games__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  background-color: var(--color-light);
  border-radius: 12px;
  padding: 16px;
}

.games__item:hover {
  background-color: var(--color-light-hover);
}

.games__item img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48px;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.games__item svg {
  opacity: 0;
}

.games__item span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 700;
}

.gameList__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.gameList__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 230px;
  flex: 1 1 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.gameList__item:hover img {
  -webkit-transition: ease 0.15s;
  transition: ease 0.15s;
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.gameList__image {
  width: 100%;
  display: block;
}

.gameList__imageWrap {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.gameList__imageWrap img {
  -webkit-transition: ease 0.15s;
  transition: ease 0.15s;
}

.gameList__title {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.breadcrumbs {
  margin: -4px auto;
}

.breadcrumbs__link {
  padding: 4px 0;
}

.breadcrumbs__link:not(:first-child) {
  -webkit-padding-start: 40px;
  padding-inline-start: 40px;
  position: relative;
}

.breadcrumbs__link:not(:first-child):before {
  position: absolute;
  content: "";
  top: calc(50% - 12px);
  inset-inline-start: 8px;
  width: 24px;
  height: 24px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.3 10.6329C7.7 10.2329 8.3 10.2329 8.7 10.6329L12 13.9329L15.3 10.6329C15.7 10.2329 16.3 10.2329 16.7 10.6329C17.1 11.0329 17.1 11.6329 16.7 12.0329L12.7 16.0329C12.5 16.2329 12.3 16.3329 12 16.3329C11.7 16.3329 11.5 16.2329 11.3 16.0329L7.3 12.0329C6.9 11.6329 6.9 11.0329 7.3 10.6329Z' fill='%236C6C6E'/%3E%3C/svg%3E");
  background-position: 50% 50%;
}

html[dir=rtl] .breadcrumbs__link:not(:first-child):before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.breadcrumbs__link:last-child {
  font-weight: 700;
}

.breadcrumbs__link:not(:last-child) {
  color: var(--color-light-seo);
}

.gameCategory__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.gameCategory__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 230px;
  flex: 1 1 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.gameCategory__image {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.gameCategory__image_1 {
  background: linear-gradient(135deg, #32CA4E 0%, #A7FFB7 100%);
}

.gameCategory__image_2 {
  background: linear-gradient(135deg, #DD3100 0%, #FFB599 100%);
}

.gameCategory__image_3 {
  background: linear-gradient(135deg, #93BF00 0%, #DFFF73 100%);
}

.gameCategory__image_4 {
  background: linear-gradient(135deg, #12C5ED 0%, #A1EEFF 100%);
}

.gameCategory__image_4 img {
  -webkit-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  transform: translateY(-60px);
}

.gameCategory__image_5 {
  background: linear-gradient(135deg, #BE6F24 0%, #FABE85 100%);
}

.gameCategory__image_6 {
  background: linear-gradient(135deg, #0D8F4F 0%, #7BEEB6 100%);
}

.gameCategory__image_6 img {
  -webkit-transform: rotate(-200deg);
  -ms-transform: rotate(-200deg);
  transform: rotate(-200deg);
}

.gameCategory__image_7 {
  background: linear-gradient(135deg, #D02828 0%, #FFBDBD 100%);
}

.gameCategory__image_7 img {
  -webkit-transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.gameCategory__image_8 {
  background: linear-gradient(135deg, #9D26FF 0%, #E0ACFF 100%);
}

.gameCategory__imageWrap {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.gameCategory__imageWrap img {
  -webkit-transition: ease 0.15s;
  transition: ease 0.15s;
  top: 64px;
  left: 64px;
}

.gameCategory__title {
  font-size: 30px;
  line-height: 120%;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 10;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.tab {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--border-radius);
  font-weight: bold;
  background-color: var(--color-light);
}

.tab use {
  fill: #5C5C68;
}

.tab:hover {
  background-color: var(--color-light-hover);
}

.tab:hover use {
  fill: #fff;
}

.tab.active {
  border: 2px solid rgb(255, 255, 255);
}

.tab.active use {
  fill: #fff;
}

.reviews__title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
}

.reviews__socials {
  margin: 0 -8px;
}

.reviews__socials > a {
  margin: 16px 8px 0 8px;
}

.reviews__card {
  background-color: var(--color-light);
  position: relative;
  padding: 32px;
  border-radius: 24px;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.reviews__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.reviews__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 190px;
  flex: 0 0 190px;
}

.reviews__wrapperImg {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.reviews__wrapperImg img {
  border-radius: 12px;
}

.appDownload {
  padding: 20px 16px;
}

.appDownload__card {
  background-color: var(--color-light);
  position: relative;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.appDownload__text {
  padding: 32px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 660px;
  flex: 0 1 660px;
}

.appDownload__title {
  margin-bottom: 32px;
  max-width: 500px;
}

.appDownload__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.appDownload__links svg use {
  fill: var(--fill-icon-primary);
}

.appDownload__links .linkApp {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 187px;
}

.appDownload__image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 325px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 20px;
}

/* rgb анімація*/

@-webkit-keyframes softRGB {
  0% {
    background-color: rgb(255, 0, 0);
  }

  10% {
    background-color: rgb(255, 100, 0);
  }

  20% {
    background-color: rgb(255, 200, 0);
  }

  30% {
    background-color: rgb(100, 255, 0);
  }

  40% {
    background-color: rgb(0, 255, 100);
  }

  50% {
    background-color: rgb(0, 100, 255);
  }

  60% {
    background-color: rgb(0, 0, 255);
  }

  70% {
    background-color: rgb(100, 0, 255);
  }

  80% {
    background-color: rgb(255, 0, 255);
  }

  90% {
    background-color: rgb(255, 0, 200);
  }

  100% {
    background-color: rgb(255, 0, 0);
  }
}

@keyframes softRGB {
  0% {
    background-color: rgb(255, 0, 0);
  }

  10% {
    background-color: rgb(255, 100, 0);
  }

  20% {
    background-color: rgb(255, 200, 0);
  }

  30% {
    background-color: rgb(100, 255, 0);
  }

  40% {
    background-color: rgb(0, 255, 100);
  }

  50% {
    background-color: rgb(0, 100, 255);
  }

  60% {
    background-color: rgb(0, 0, 255);
  }

  70% {
    background-color: rgb(100, 0, 255);
  }

  80% {
    background-color: rgb(255, 0, 255);
  }

  90% {
    background-color: rgb(255, 0, 200);
  }

  100% {
    background-color: rgb(255, 0, 0);
  }
}

.animation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.soft-rgb-animation,
.soft-rgb-animation::before {
  -webkit-animation: softRGB 20s infinite linear;
  animation: softRGB 20s infinite linear;
  will-change: background, filter;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@-webkit-keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.soft-rgb-animation {
  height: 240px;
  width: 240px;
  border-radius: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
  position: relative;
}

.soft-rgb-animation::before {
  content: "";
  width: 240px;
  height: 240px;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  border-radius: 48px;
  background: inherit;
  filter: blur(160px);
  -webkit-filter: blur(160px);
  will-change: filter;
}

.download_icon {
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: -14px;
  left: -50px;
  z-index: 3;
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  -webkit-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  overflow: hidden;
}

.download_icon_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

ol.list {
  list-style: none;
  counter-reset: myCount;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
}

ol.list li {
  background-color: var(--color-light);
  position: relative;
  padding: 32px !important;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 45%;
  flex: 1 1 45%;
  min-width: 275px;
  margin-bottom: 0px !important;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 20;
}

ol.list li:before {
  content: counter(myCount);
  counter-increment: myCount;
  font-size: 120px !important;
  line-height: 100px !important;
  font-weight: 900;
  margin-bottom: -55px;
  position: relative;
  z-index: -2;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(50%, rgba(255, 255, 255, 0.3)), color-stop(75%, rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btnBonus {
  position: fixed;
  top: 100px;
  inset-inline-end: 40px;
  z-index: 33;
  display: none;
  background: var(--bg-btn-bonus);
}

.btnBonus:hover {
  background: var(--bg-btn-bonus-hover);
}

.bookmaker {
  overflow: hidden;
}

.bookmaker__body {
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
}

.bookmaker__row {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr auto;
}

.bookmaker__logo {
  height: 120px;
  max-width: 220px;
  -o-object-fit: contain;
  object-fit: contain;
}

.bookmaker__col {
  padding: 32px 32px 8px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.bookmaker__col:nth-child(2) > p.bold {
  font-size: 14px;
}

.bookmaker__col:nth-child(2) > p.text-big {
  font-size: 24px;
  line-height: 29px;
}

.bookmaker__col_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.bookmaker__col_4 {
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bookmaker__footer {
  padding: 16px 32px 32px;
}

.bookmaker__partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
  max-height: 32px;
  overflow: hidden;
}

.bookmaker__partners > img {
  height: 32px;
}

.bookmaker svg use {
  fill: #fff;
}

.promocode {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background-color: var(--color-light);
  color: #ccc;
  padding: 4px 12px;
  border-radius: 8px;
}

.promocode svg use {
  fill: #fff !important;
}

.promocode:hover {
  background-color: var(--color-light-hover);
}

.copied {
  position: fixed;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translate(-50%, 130%);
  -ms-transform: translate(-50%, 130%);
  transform: translate(-50%, 130%);
  background-color: var(--bg-color);
  color: var(--color-opposite);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  z-index: 45;
  border: 1px solid var(--color-light);
}

.copied.show {
  -webkit-animation: showMsg 0.25s ease-in-out 0s forwards;
  animation: showMsg 0.25s ease-in-out 0s forwards;
}

.copied.hide {
  -webkit-animation: hideMsg 0.25s ease-in-out 0s forwards;
  animation: hideMsg 0.25s ease-in-out 0s forwards;
}

@-webkit-keyframes showMsg {
  0% {
    -webkit-transform: translate(-50%, 130%);
    transform: translate(-50%, 130%);
  }

  70% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
  }

  100% {
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
}

@keyframes showMsg {
  0% {
    -webkit-transform: translate(-50%, 130%);
    transform: translate(-50%, 130%);
  }

  70% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
  }

  100% {
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
}

@-webkit-keyframes hideMsg {
  0% {
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }

  30% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
  }

  100% {
    -webkit-transform: translate(-50%, 130%);
    transform: translate(-50%, 130%);
  }
}

@keyframes hideMsg {
  0% {
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }

  30% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
  }

  100% {
    -webkit-transform: translate(-50%, 130%);
    transform: translate(-50%, 130%);
  }
}

.fixedBottomBox {
  position: fixed;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  z-index: 30;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.0196078431);
  background-color: color-mix(in srgb, var(--bg-color) 90%, transparent);
  backdrop-filter: blur(64px);
}

.fixedBottomBox__body {
  position: relative;
  z-index: 5;
}

.fixedBottomBox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.05);
}

.welcomeBonus {
  position: sticky;
  z-index: 32;
}

.welcomeBonus__boby {
  padding: 24px 16px;
  position: relative;
}

.welcomeBonus__btn {
  position: absolute;
  inset-inline-end: 40px;
  top: calc(50% - 20px);
  z-index: 10;
  border: 1px solid transparent;
}

.welcomeBonus__btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie svg use {
  fill: var(--fill-icon-primary);
}

.footer {
  border-top: 1px solid var(--color-light);
}

.footer__body {
  padding: 16px;
}

.footer__partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  max-height: 80px;
  overflow: hidden;
}

.footer__partners > img {
  height: 32px;
  width: auto;
}

.boxInfo {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.boxInfo__grid {
  display: grid;
  row-gap: 8px;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
}

.boxInfo__grid_2col {
  grid-template-columns: auto 1fr;
}

.boxInfo__grid p,
.boxInfo__grid a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.boxInfo__label {
  margin-bottom: 16px;
  color: var(--color-gray);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 120%;
}

.boxLinksApp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 16px;
}

.boxLinksApp__subscribe {
  grid-column: span 2;
}

.boxLinksApp__mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.boxLinksApp .linkApp > svg use {
  fill: var(--fill-icon-primary);
}

.linkApp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background-color: var(--color-light);
  border-radius: 12px;
  padding-block: 16px;
  padding-inline: 16px 8px;
  white-space: nowrap;
}

.linkApp:hover {
  background-color: var(--color-light-hover);
}

.linkApp_windows {
  height: 100%;
}

.linkApp_windows .linkApp__mod {
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.linkApp_windows .linkApp__mod .ml-8 {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
}

.subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 16px;
  border-radius: 12px;
  background-color: var(--color-light);
  height: 100%;
}

.subscribe__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.subscribe__input input {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 150px;
  flex: 1 1 150px;
  width: 150px;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-light);
  padding: 16px;
}

.lastLine__ad {
  border-radius: 4px;
  padding: 1px 4px;
  border: 1px solid var(--color-gray);
  display: inline-block;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  font-size: 11px;
  line-height: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.text-huge,
.firstScreen__title,
.appDownload__title {
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
}

.text-big,
.searchResult__item .entry-title a,
.styledContent > h1,
.styledContent > h2 {
  font-size: var(--fz-text-big);
  line-height: var(--lh-text-big);
  font-weight: bold;
}

.text-medium,
.styledContent > h3,
.styledContent > h4,
.styledContent > h5,
.styledContent h6,
ol.list li:before,
.styledContent > ol li:before {
  font-size: var(--fz-text-medium);
  line-height: var(--lh-text-medium);
  font-weight: bold;
}

.text-small,
.styledContent > h4 {
  font-size: var(--fz-text-small);
  line-height: var(--lh-text-small);
}

.text-micro,
.styledContent > h5,
.styledContent h6 {
  font-size: 11px;
  line-height: 13px;
}

.bold {
  font-weight: bold;
}

.subscribe {
  position: relative;
}

.subscribe .wpcf7 .subscribe__input input {
  border-radius: 8px;
}

.subscribe .wpcf7 .subscribe__input > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}

.subscribe input + .wpcf7-not-valid-tip {
  position: absolute;
  top: 0px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  margin-top: -8px;
  color: white;
  background-color: var(--color-form-error);
  -webkit-box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.5);
  /* immutable */
  padding: 16px;
  border-radius: 12px;
}

.subscribe .wpcf7-submit {
  border-radius: 0 8px 8px 0;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
}

.subscribe .wpcf7-spinner {
  display: none !important;
}

.subscribe .wpcf7-form-control-wrap {
  width: 100%;
  -webkit-padding-end: 16px;
  padding-inline-end: 16px;
}

.subscribe .wpcf7-form-control-wrap input {
  min-width: 160px;
  width: 100%;
  padding: 11px 8px;
}

.subscribe .wpcf7-form-control-wrap input.wpcf7-not-valid {
  border-color: var(--color-form-border);
  color: var(--color-form-error);
}

.subscribe .wpcf7-response-output {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  left: 16px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  margin: 0 !important;
  padding: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  background: var(--bg-color);
  border-radius: 12px;
  color: white !important;
}

.subscribe .wpcf7 {
  width: 100%;
}

.searchResult {
  margin-bottom: 16px;
}

.searchResult__item .entry-title {
  margin-bottom: 8px;
}

.searchResult__item .entry-title a:hover {
  text-decoration: underline;
}

.searchResult__item .entry-summary > *:not(:last-child) {
  margin-bottom: 8px;
}

.navigation.posts-navigation .nav-links {
  position: relative;
  height: 74px;
  padding: 16px 0;
}

.navigation.posts-navigation .nav-previous a,
.navigation.posts-navigation .nav-next a {
  position: absolute;
  text-decoration: none;
}

.navigation.posts-navigation .nav-next a {
  inset-inline-end: 0;
}

.wpcf7-form-control.wpcf7-submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.wpcf7-form > p {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.wpcf7-form > p > br {
  display: none;
}

.wpcf7-form-control-wrap .wpcf7-not-valid {
  border-color: var(--color-form-border);
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: var(--color-form-error);
}

.wpcf7-response-output {
  margin: 16px 0 0 0 !important;
  padding: 0 !important;
  border: none !important;
  color: var(--color-form-error);
}

.wp-caption-text {
  text-align: center;
  font-style: italic;
  margin-top: 5px;
}

.wp-caption {
  max-width: 100%;
}

article.searchResult__item {
  margin-bottom: 2em;
}

@media (min-width: 767.98px) {
  .min-md3-p-16 {
    padding: 16px;
  }

  .min-md3-dn {
    display: none !important;
  }

  .popup_centered {
    width: 540px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .popup_centered .popup__body {
    width: 540px;
    padding: 16px;
  }

  .popup_centered .popup__content {
    padding: 16px;
  }

  .scroll-styled {
    /* ползунок скроллбара */
    scrollbar-color: #232325 var(--bg-color);
    /* «цвет ползунка» «цвет полосы скроллбара» */
    scrollbar-width: thin;
  }

  .scroll-styled ::-webkit-scrollbar {
    width: 12px;
    /* ширина для вертикального скролла */
    height: 12px;
    /* высота для горизонтального скролла */
    background-color: var(--color-opposite);
  }

  .scroll-styled ::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    /* immutable */
    border-radius: 4px;
  }

  .scroll-styled ::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
    /* immutable */
  }

  .logo__mob {
    display: none;
  }

  .firstScreen {
    overflow: hidden;
  }

  .gameCategory__item:hover img {
    -webkit-transition: ease 0.15s;
    transition: ease 0.15s;
    top: 48px;
    left: 48px;
  }

  .bookmaker__col_3 p {
    white-space: nowrap;
  }

  .wpcf7-form > p {
    grid-template-columns: 1fr 1fr;
  }

  .wpcf7-form > p > .wpcf7-form-control-wrap:first-of-type {
    grid-column: 1/3;
  }
}

@media (min-width: 1024px) {
  .bookmaker__col_3 {
    padding: 32px 0px 8px 0px;
  }
}

@media (min-width: 1150.98px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }

  .header__menu ul a {
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    display: inline-block;
    padding: 16px;
  }

  .header__menu ul a:hover {
    -webkit-transition: ease 0.15s;
    transition: ease 0.15s;
    border-color: white;
  }

  .header__menuButtons {
    display: none;
  }
}

@media (max-width: 1413px) {
  .btnBonus {
    inset-inline-end: 16px;
  }

  .welcomeBonus__btn {
    background-color: var(--bg-color);
    inset-inline-end: 16px;
    top: -20px;
    border: 1px solid transparent;
    border-top-color: var(--color-light);
    padding: 7px;
  }

  .welcomeBonus__btn:hover {
    background-color: var(--bg-color);
  }
}

@media (max-width: 1150.98px) {
  .header__language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 16px;
  }

  .header__menu ul a {
    display: inline-block;
    padding: 16px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header__menu ul a:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .header__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
  }

  .header__burger {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    display: block;
  }
}

@media (max-width: 1024px) {
  .btn_left,
  .alignleft {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: 100%;
  }

  .btn_left {
    margin: 5px 16px 5px 0px;
  }

  .btn_right,
  .alignright {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: 100%;
  }

  .btn_right {
    margin: 5px 0px 5px 16px;
  }

  .alignleft,
  .alignright {
    float: none;
  }

  img.alignleft,
  img.alignright {
    display: block;
  }

  .btn_center {
    width: auto;
    max-width: 100%;
  }

  .bookmaker__row {
    grid-template-columns: 1fr 1fr auto;
  }

  .bookmaker__col_4 {
    grid-column: span 3;
  }

  .bookmaker__col_4 .btn,
  .bookmaker__col_4 .wpcf7-form-control.wpcf7-submit,
  .bookmaker__col_4 .navigation.posts-navigation .nav-previous a,
  .navigation.posts-navigation .nav-previous .bookmaker__col_4 a,
  .bookmaker__col_4 .navigation.posts-navigation .nav-next a,
  .navigation.posts-navigation .nav-next .bookmaker__col_4 a {
    width: 100%;
  }

  .bookmaker__footer {
    padding-top: 32px;
  }
}

@media (max-width: 992.98px) {
  .games__item {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
  }

  .footer__partners {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .tabs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .tab {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45%;
    flex: 1 1 45%;
  }
}

@media (max-width: 767.98px) {
  .wrapper {
    overflow: hidden;
    /* Выше 768 мы его убираем чтобы сработал
position sticky у блока .stickyBlock */
  }

  table td,
  table th {
    padding: 8px;
  }

  .md3-m0 {
    margin: 0;
  }

  .md3-p0 {
    padding: 0;
  }

  .p-40-md3-16 {
    padding: 24px 16px;
  }

  .md3-ta-c {
    text-align: center;
  }

  .max-md3-dn {
    display: none !important;
  }

  .md3-w-100 {
    width: 100%;
  }

  .popup {
    bottom: 0;
    width: 100%;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  .popup.isOpen {
    -webkit-animation: showModal 0.15s forwards 0s linear;
    animation: showModal 0.15s forwards 0s linear;
  }

  .popup__body {
    width: 100%;
  }

  .popup__content {
    max-height: 75vh;
  }

  ul.list li,
  .styledContent > ul li,
  ol.list li,
  .styledContent > ol li {
    -webkit-padding-start: 16px;
    padding-inline-start: 16px;
  }

  .header__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .header__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
  }

  .header__menu {
    position: fixed;
    z-index: 6;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 75vh;
    background-color: var(--bg-color);
    border-radius: 16px 16px 0 0;
    padding: 16px 0;
    -webkit-transform: translateY(110%);
    -ms-transform: translateY(110%);
    transform: translateY(110%);
    -webkit-transition: ease-in 0.15s;
    transition: ease-in 0.15s;
  }

  .header__menu.active {
    -webkit-transition: ease-out 0.15s;
    transition: ease-out 0.15s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .header__menu:before {
    content: "";
    position: absolute;
    top: -11px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 61px;
    height: 3px;
    border-radius: 99px;
    background-color: rgba(255, 255, 255, 0.3);
  }

  .header__burger {
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
  }

  .logo__image {
    max-height: 40px;
  }

  .logo__pc {
    display: none;
  }

  .firstScreen__body {
    grid-template-columns: 1fr;
  }

  .firstScreen__title {
    padding: 16px 16px 0 16px;
  }

  .firstScreen__text {
    padding: 0 16px;
  }

  .firstScreen__bonus {
    padding: 0 16px 16px;
  }

  .firstScreen__btn {
    padding: 16px 0 24px 0;
    grid-row: 4;
    grid-column: auto;
  }

  .firstScreen__btn .btn,
  .firstScreen__btn .wpcf7-form-control.wpcf7-submit,
  .firstScreen__btn .navigation.posts-navigation .nav-previous a,
  .navigation.posts-navigation .nav-previous .firstScreen__btn a,
  .firstScreen__btn .navigation.posts-navigation .nav-next a,
  .navigation.posts-navigation .nav-next .firstScreen__btn a {
    width: 100%;
  }

  .firstScreen__image {
    grid-column: 1/2;
    grid-row: 3;
    padding: 0 16px;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .firstScreen__image img {
    position: static;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 328px;
    flex: 0 1 328px;
    height: auto;
  }

  .firstScreen__bg {
    position: relative;
  }

  .firstScreen__bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(160%, var(--bg-color)));
    background: linear-gradient(0deg, transparent 0%, var(--bg-color) 160%);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }

  .gameList__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45%;
    flex: 1 1 45%;
  }

  .gameCategory__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45%;
    flex: 1 1 45%;
  }

  .gameCategory__image_4 img {
    -webkit-transform: translateY(-35px);
    -ms-transform: translateY(-35px);
    transform: translateY(-35px);
  }

  .reviews__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }

  .reviews__image {
    max-width: 340px;
    width: 100%;
  }

  .appDownload__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 32px;
  }

  .appDownload__text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .bookmaker__row {
    grid-template-columns: auto 1fr;
  }

  .bookmaker__col_4 {
    grid-column: span 2;
  }

  .welcomeBonus__boby > .md3-ta-c {
    padding: 0px 2px 0px 2px;
  }

  .welcomeBonus__boby > .md3-ta-c > p.bold {
    font-size: 12px;
    font-weight: 400;
  }

  .welcomeBonus__boby > .md3-ta-c > p.text-big {
    font-size: 12px;
  }

  .welcomeBonus__boby > .btn.btn_secondary,
  .welcomeBonus__boby > .wpcf7-form-control.wpcf7-submit,
  .navigation.posts-navigation .nav-previous .welcomeBonus__boby > a,
  .navigation.posts-navigation .nav-next .welcomeBonus__boby > a {
    font-size: 12px;
  }

  .welcomeBonus .btn,
  .welcomeBonus .wpcf7-form-control.wpcf7-submit,
  .welcomeBonus .navigation.posts-navigation .nav-previous a,
  .navigation.posts-navigation .nav-previous .welcomeBonus a,
  .welcomeBonus .navigation.posts-navigation .nav-next a,
  .navigation.posts-navigation .nav-next .welcomeBonus a {
    padding: 12px;
  }

  .cookie__body {
    padding: 8px 16px;
  }

  .cookie__body > p {
    font-size: 12px;
  }

  .cookie__body .btn.btn_secondary,
  .cookie__body .wpcf7-form-control.wpcf7-submit,
  .cookie__body .navigation.posts-navigation .nav-previous a,
  .navigation.posts-navigation .nav-previous .cookie__body a,
  .cookie__body .navigation.posts-navigation .nav-next a,
  .navigation.posts-navigation .nav-next .cookie__body a {
    font-size: 12px;
  }

  .cookie {
    font-size: var(--fz-text-small);
    line-height: var(--lh-text-small);
  }

  .boxInfo {
    grid-template-columns: 1fr;
  }

  .boxLinksApp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .boxLinksApp > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .boxLinksApp__mobile {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .boxLinksApp__mobile .linkApp {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 180px;
    flex: 1 0 180px;
  }

  .boxLinksApp__windows {
    display: none;
  }

  .text-huge,
  .firstScreen__title,
  .appDownload__title {
    font-size: 28px;
    line-height: 120%;
  }

  .md3-text-small {
    font-size: var(--fz-text-small);
    line-height: var(--lh-text-small);
  }

  .md3-text-default {
    font-size: var(--fz-text-default);
    line-height: var(--lh-text-default);
  }

  .wpcf7-spinner {
    display: none;
  }
}

@media (max-width: 600px) {
  .gameCategory__imageWrap img {
    top: 36px;
    left: 36px;
  }

  .gameCategory__title {
    top: 16px;
    left: 16px;
    font-size: 20px;
  }
}

@media (max-width: 580px) {
  .games__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 550px) {
  .bookmaker__body {
    padding: 32px 16px;
  }

  .bookmaker__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .bookmaker__col {
    padding: 0;
  }

  .bookmaker__footer {
    padding: 32px 0 0 0;
  }
}

@media (max-width: 479.98px) {
  .md4-w-100 {
    width: 100%;
  }

  .tab__count {
    display: none;
  }

  .reviews__card {
    padding: 16px;
  }
}

@media (max-width: 400px) {
  .subscribe__input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .subscribe__input input {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    width: 100%;
  }
}

@media (min-width: 767.98px) and (max-width: 1150.98px) {
  .header__menu {
    position: fixed;
    z-index: 6;
    background-color: var(--bg-color);
    width: 300px;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
    -webkit-transition: ease-in 0.15s;
    transition: ease-in 0.15s;
  }

  .header__menu.active {
    -webkit-transition: ease-out 0.15s;
    transition: ease-out 0.15s;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .header__buttons {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (min-width: 767.98px) and (max-width: 767.98px) {
  .gameCategory__item:hover img {
    top: 36px;
    left: 36px;
  }
}

@media (max-width: 767.98px) and (min-width: 550px) {
  .bookmaker__col_3 {
    grid-column: span 2;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}