.z-index-max {
 z-index: 99999999;   
}

.v-burger {
  display: none;
}

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

.how-to-play {
    margin: 2em 0;
}

.mce-toc ul {
    flex-direction: row !important;
    flex-wrap: wrap;
    padding: 0 !important;
    margin: 0 !important;
}

.mce-toc a {
    display: block;
    padding: 10px 14px;
    margin: 4px 6px;
    background: #1e1e1e;
    border-radius: 4px;
    text-decoration: none !important;
}

.mce-toc ul ul {
    display: none !important;
}

.mce-toc li:before {
    content: none !important;
}


@media (max-width: 1024px) {
  .v-burger {
    --burger-width: 24px;
    --burger-height: 16px;
    --burger-line-height: 2px;
    --border-radius: 3px;
    position: relative;
    border: none;
    padding: 0;
    width: var(--burger-width);
    height: var(--burger-height);
    color: rgba(var(--bg-a), 1);
    background-color: transparent;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 20;
  }
  .v-burger::before, .v-burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--burger-line-height);
    background-color: currentColor;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    border-radius: var(--border-radius);
  }
  .v-burger::before {
    top: 0;
  }
  .v-burger::after {
    top: calc(100% - var(--burger-line-height));
  }
  .v-burger__line {
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
    height: var(--burger-line-height);
    background-color: currentColor;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    border-radius: var(--border-radius);
  }
  .v-burger:hover .v-burger__bg::before {
    opacity: 1;
  }
  .v-burger.active::before {
    top: 45%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .v-burger.active::after {
    top: 45%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .v-burger.active .v-burger__line {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}

.v-overlay {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  padding: 20px 20px;
  overflow-y: scroll;
  background: rgba(var(--bg-b), 0.6);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  pointer-events: none;
}
.v-overlay::-webkit-scrollbar {
  display: none;
}
.v-overlay.active {
  z-index: 20;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  pointer-events: initial;
}

:root {
  --body-bg: #000;
  --body-font-size: 16px;
  --content-width: 1390px;
  --container-offset: 16px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --header-height: 68px;
  --scrollbar-thumb: #0008;
  --scrollbar-track: #202020;
  --scrollbar-track-hover: #202020;
  --overlay-bg: rgba(0, 0, 0, 0.5);
  --font-family: "Roboto" , sans-serif;
  --cl-a: 255, 255, 255;
  --cl-b: 0, 0, 0;
  --cl-c: 136, 136, 136;
  --cl-d: 237, 201, 127;
  --cl-e: 197, 197, 197;
  --cl-f: 224, 224, 224;
  --cl-g: 237, 201, 127;
  --cl-h: 109, 109, 109;
  --bg-a: 255, 255, 255;
  --bg-b: 0, 0, 0;
  --bg-c: 39, 174, 96;
  --bg-d: 63, 205, 123;
  --bg-e: 237, 201, 127;
  --bg-f: 247, 225, 180;
  --bg-g: 92, 80, 54;
  --bg-h: 30, 30, 30;
  --bg-i: 241, 20, 20;
  --bg-j: 85, 85, 85;
  --bg-k: 30, 30, 30;
  --bg-l: 48, 48, 48;
  --bg-m: 33, 36, 37;
  --bg-n: 109, 109, 109;
  --bg-o: 48, 48, 48;
  --bg-p: 61, 59, 59;
  --bg-q: 255, 0, 17;
  --bg-r: 228, 10, 25;
  --bg-s: 38, 38, 38;
  --br-a: #EDC97F;
  --br-b: #888;
  --br-c: #3d3b3b;
  --br-d: #C5C5C5;
  --br-e: #000;
  --br-f: #0B1C24;
  --br-g: #6D6D6D;
  --br-h: #A45800;
}
@media (max-width: 1024px) {
  :root {
    --header-height: 112px;
  }
}

.splide__container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  min-height: -webkit-fill-available;
  margin: 0 auto;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  font-family: var(--font-family);
  color: rgba(var(--cl-b), 1);
  counter-reset: step-counter;
  -webkit-text-size-adjust: 100%;
}

main {
  margin: 0 auto;
  background: var(--body-bg);
  padding-top: calc(var(--header-height) + 15px);
  min-width: 0 !important;
  max-width: 1440px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.95) 0px -60px 70px 50px;
  box-shadow: rgba(0, 0, 0, 0.95) 0px -60px 70px 50px;
}
main.no-padding {
  padding: 0;
}

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

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  font-style: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  padding: 0;
  line-height: initial;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 120%;
  color: rgba(var(--cl-a), 1);
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

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

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

input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
}
input::-webkit-input-placeholder {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
input::-moz-placeholder {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
input:-ms-input-placeholder {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
input::-ms-input-placeholder {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
input::placeholder {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  border: none;
  outline: none;
  resize: none;
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.v-container {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-offset);
}
.v-container--mode {
  max-width: var(--container-width--mode);
}

.panel,
[data-content] {
  z-index: 20;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
}

.dis-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  -ms-scroll-chaining: none !important;
  overscroll-behavior: none !important;
  scroll-behavior: none !important;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 7px;
  cursor: pointer;
}
@media (max-width: 767px) {
  *::-webkit-scrollbar {
    display: none;
  }
}
*::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
*::-webkit-scrollbar-track {
  background-color: var(--scrollbar-track);
}
*::-webkit-scrollbar-button {
  display: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

.v-casino-slider .splide__arrows, .v-jackpot-slider .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  grid-gap: 12px;
  position: absolute;
  right: 0;
  top: calc(clamp(16px, 1.295vw, 18px) * -1);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.v-casino-slider .splide__arrow, .v-jackpot-slider .splide__arrow {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  width: 32px;
  height: 32px;
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
.v-casino-slider .splide__arrow svg, .v-jackpot-slider .splide__arrow svg {
  display: none;
}
.v-casino-slider .splide__arrow::before, .v-jackpot-slider .splide__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='arrow-long' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M2 12c0 .552.497 1 1.111 1H20.89c.614 0 1.111-.448 1.111-1s-.497-1-1.111-1H3.11C2.497 11 2 11.448 2 12z' clip-rule='evenodd'/%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M12.338 19.694c.45.408 1.181.408 1.632 0l7.692-6.956a.974.974 0 0 0 0-1.476L13.97 4.306a1.242 1.242 0 0 0-1.632 0 .974.974 0 0 0 0 1.475L19.214 12l-6.876 6.219a.974.974 0 0 0 0 1.475z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
.v-casino-slider .splide__arrow--prev::before, .v-jackpot-slider .splide__arrow--prev::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
  -ms-transform: translate(-50%, -50%) scaleX(-1);
  transform: translate(-50%, -50%) scaleX(-1);
}
.v-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 8px;
}
.v-timer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 3px;
  color: rgba(var(--cl-g), 1);
}
.v-timer .v-icon-timer {
  margin-top: -3px;
}
.v-timer__text {
  color: rgba(var(--cl-a), 1);
  font-size: 16px;
  line-height: normal;
  font-family: var(--font-family);
}

.v-search {
  width: 100%;
  padding: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border-bottom: solid 2px var(--br-b);
}
.v-search__input {
  margin-left: 20px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: rgba(var(--cl-a), 1);
}
.v-search__input::-webkit-input-placeholder {
  color: rgba(var(--cl-c), 1);
}
.v-search__input::-moz-placeholder {
  color: rgba(var(--cl-c), 1);
}
.v-search__input:-ms-input-placeholder {
  color: rgba(var(--cl-c), 1);
}
.v-search__input::-ms-input-placeholder {
  color: rgba(var(--cl-c), 1);
}
.v-search__input::placeholder {
  color: rgba(var(--cl-c), 1);
}
.v-search__button {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.v-search__button:hover {
  -webkit-filter: brightness(10);
  filter: brightness(10);
}

.v-main-title, 
.v-content h2{
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(18px, 1.8705vw, 26px);
  line-height: 120%;
  font-weight: 700;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 6px;
  margin: 1em 0;
}

.v-main-link, .v-content a {
  color: rgba(var(--cl-g), 1);
  text-decoration: underline;
  font-family: var(--font-family);
  font-size: clamp(14px, 1.1511vw, 16px);
  line-height: 110%;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.v-main-link:hover {
  opacity: 0.8;
}

.v-main-subtitle,
.v-content h3, 
.v-content h4,
.v-content h5 {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 100%;
  color: rgba(var(--cl-g), 1);
  font-size: clamp(16px, 1.4388vw, 20px);
  margin: 1em 0;
}

.v-text-list,
.v-content ul:not(.no-list) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 26px;
  grid-gap: 5px;
  margin: 1em 0;
}

.no-list li:before {
    content: none !important;
}

.v-text-list__item,
.v-content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  grid-gap: 5px;
    color: #fff;
}
.v-text-list__item::before,
.v-content ul li:before {
  content: "";
  left: -12px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  width: 6px;
  height: 6px;
  background-color: rgba(var(--bg-j), 1);
}
.v-text-list--mode {
  padding-left: 11px;
}

.v-main-list,
.v-content ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 5px;
  counter-reset: li;
}
.v-content ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding-left: 20px;
  grid-gap: 10px;
  color: white;
  margin: 2em 0;
}
.v-content ol li::before {
  position: absolute;
  left: 0;
  content: counters(li, "") ".";
  counter-increment: li;
  font-size: clamp(15px, 1.223vw, 17px);
  font-family: var(--font-family2);
  font-weight: 700;
  color: rgba(var(--cl-g), 1);
}

table:not([class]) {
  -ms-flex-item-align: center;
  align-self: center;
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}
@media (max-width: 576px) {
  table:not([class]) {
  /*   display: block;
  overflow-x: auto;
  white-space: nowrap;
  width: calc(100% + 32px);
  padding: 0 16px;
  margin-left: -16px; */
  }
}
@media (max-width: 576px) {
  table:not([class]) thead, table:not([class]) tbody {
    width: 100%;
  }
}
table:not([class]) tbody tr:nth-child(even) td {
  background-color: rgba(var(--bg-n), 0.3);
}
@media (max-width: 576px) {
  table:not([class]) tr {
    width: 100%;
  }
}
table:not([class]) th {
  padding: 15px 5px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.1111vw, 16px);
  font-weight: 700;
  background-color: rgba(var(--bg-n), 1);
  border: solid 1px var(--br-b);
}
@media (max-width: 576px) {
  table:not([class]) th {
    width: 100%;
  }
}
table:not([class]) td {
  text-align: center;
  padding: 10px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.1111vw, 16px);
  font-weight: 400;
  border: solid 1px var(--br-g);
}

.v-main-bg {
  background-image: url(../../static/images/template/bg.png);
  background-repeat: repeat;
  background-position: 50% 50%;
  position: fixed;
  z-index: -1;
  inset: 0;
}

.v-icon-logo {
  background-image: url(../../static/images/sprite/logo.svg);
  width: 175px;
  height: 56px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media (max-width: 767px) {
  .v-icon-logo {
    width: clamp(115px, 22.786vw, 175px);
  }
}
.v-icon-slot {
  background-image: url(../../static/images/sprite/icon1.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-cup {
  background-image: url(../../static/images/template/icons.png);
  width: 26px;
  height: 26px;
  background-position: 0px -28px;
  background-repeat: no-repeat;
  display: block;
}
.v-icon-evoygg {
  background-image: url(../../static/images/template/icons.png);
  background-position: -112px -120px;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  display: block;
}
.v-icon-hack {
  background-image: url(../../static/images/template/icons.png);
  background-position: 0px -148px;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  display: block;
}
.v-icon-spino {
  background-image: url(../../static/images/template/icons.png);
  background-position: -224px -204px;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  display: block;
}
.v-icon-relaxgaming {
  background-image: url(../../static/images/template/icons.png);
  background-position: -84px -204px;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  display: block;
}
.v-icon-thunder {
  background-image: url(../../static/images/template/icons.png);
  background-position: -259px -84px;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  display: block;
}
.v-icon-provider {
  background-image: url(../../static/images/sprite/icon9.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-search {
  background-image: url(../../static/images/sprite/search.svg);
  width: 15px;
  height: 15px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-vip {
  background-image: url(../../static/images/sprite/vip.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-vip {
  background-image: url(../../static/images/sprite/vip.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-crown {
  background-image: url(../../static/images/sprite/crown.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-timer {
  background-image: url(../../static/images/sprite/timer.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.v-icon-case {
  background-image: url(../../static/images/sprite/case.svg);
  width: 18px;
  height: 18px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.v-icon-cp {
  background-image: url(../../static/images/sprite/cp.svg);
  width: 26px;
  height: 26px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.v-icon-user {
  background-image: url(../../static/images/sprite/user.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-cupwhite {
  background-image: url(../../static/images/sprite/cup2.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-riobet {
  background-image: url(../../static/images/sprite/riobet.svg);
  width: 66px;
  height: 22px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-cancel {
  background-image: url(../../static/images/sprite/cancel.svg);
  width: 16px;
  height: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-gold {
  background-image: url(../../static/images/sprite/gold.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-arrowgold {
  background-image: url(../../static/images/sprite/arrowgold.svg);
  width: 48px;
  height: 25px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-arrow {
  background-image: url(../../static/images/sprite/arrow-b.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 22px;
  height: 12px;
  display: block;
}
.v-icon-woman {
  background-image: url(../../static/images/sprite/icon6.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-tournament {
  background-image: url(../../static/images/sprite/icon7.svg);
  width: 24px;
  height: 22px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-bonus {
  background-image: url(../../static/images/sprite/icon8.svg);
  width: 17px;
  height: 22px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.v-icon-acc {
  width: clamp(18px, 1.7266vw, 24px);
  height: clamp(18px, 1.7266vw, 24px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.v-icon-acc::before, .v-icon-acc::after {
  content: "";
  width: 6px;
  height: 100%;
  background: rgba(var(--bg-e), 1);
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -3px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.v-icon-acc::before {
  -webkit-transform: rotateZ(90deg);
  -ms-transform: rotate(90deg);
  transform: rotateZ(90deg);
}
.v-icon-clock {
  background-image: url(../../static/images/sprite/icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 76px;
  height: 96px;
  display: block;
}
.v-icon-warn {
  background-image: url(../../static/images/sprite/warn.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  display: block;
}
.v-icon-more {
  background-image: url(../../static/images/sprite/more.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 34px;
  height: 34px;
  display: block;
}
.v-icon-rio {
  background-image: url(../../static/images/sprite/rio.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 26px;
  height: 26px;
  display: block;
}

.v-content h2:before {
    content: " ";
    display: inline-block;
    background-image: url(../../static/images/sprite/rio.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 26px;
    height: 26px;
    display: block;
}

.v-icon-coin {
  background-image: url(../../static/images/sprite/icon2.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 78px;
  height: 96px;
  display: block;
}
.v-icon-gift {
  background-image: url(../../static/images/sprite/icon3.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 85px;
  height: 96px;
  display: block;
}
.v-icon-slots {
  background-image: url(../../static/images/sprite/icon4.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 95px;
  height: 96px;
  display: block;
}
.v-icon-money {
  background-image: url(../../static/images/sprite/icon5.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 82px;
  height: 96px;
  display: block;
}
.v-icon-man {
  background-image: url(../../static/images/sprite/man.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
}
.v-icon-tour {
  background-image: url(../../static/images/sprite/tour.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
}
.v-icon-info {
  background-image: url(../../static/images/sprite/info.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  display: block;
  z-index: 6;
}
.v-icon-like {
  background-image: url(../../static/images/sprite/like.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  display: block;
  z-index: 6;
}
.v-icon-fav {
  background-image: url(../../static/images/sprite/like2.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
  z-index: 6;
}
.v-icon-evo {
  background-image: url(../../static/images/sprite/evo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 179px;
  height: 35px;
  display: block;
  z-index: 6;
}
.v-icon-lucky {
  background-image: url(../../static/images/sprite/lucky.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 104px;
  height: 58px;
  display: block;
  z-index: 6;
}
.v-icon-auth {
  background-image: url(../../static/images/sprite/auth.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: 75px;
  display: block;
  z-index: 6;
}
.v-icon-ezugi {
  background-image: url(../../static/images/sprite/ezugi.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 110px;
  height: 57px;
  display: block;
  z-index: 6;
}
.v-icon-pragmatic {
  background-image: url(../../static/images/sprite/prag.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 158px;
  height: 73px;
  display: block;
  z-index: 6;
}
.v-icon-play {
  border-radius: 50%;
  width: 103px;
  height: 103px;
  display: block;
  background: rgba(var(--bg-c), 1);
  position: relative;
}
.v-icon-play::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 30%;
  width: 50%;
  height: 50%;
  background-image: url(../../static/images/sprite/play.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.v-icon-bag {
  background-image: url(../../static/images/sprite/bag.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
}
.v-icon-darts {
  background-image: url(../../static/images/sprite/darts.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
}
.v-icon-reward {
  background-image: url(../../static/images/sprite/reward.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
}
.v-icon-micro {
  background-image: url(../../static/images/sprite/micro.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 117px;
  height: 27px;
  display: block;
}
.v-icon-amatic {
  background-image: url(../../static/images/sprite/amatic.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 117px;
  height: 34px;
  display: block;
}
.v-icon-netent {
  background-image: url(../../static/images/sprite/netent.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 99px;
  height: 36px;
  display: block;
}
.v-icon-bet {
  background-image: url(../../static/images/sprite/bet.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 91px;
  height: 30px;
  display: block;
}
.v-icon-evolution {
  background-image: url(../../static/images/sprite/evo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 110px;
  height: 21px;
  display: block;
}
.v-icon-habanero {
  background-image: url(../../static/images/sprite/habanero.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 126px;
  height: 25px;
  display: block;
}
.v-icon-isoft {
  background-image: url(../../static/images/sprite/isoft.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 101px;
  height: 20px;
  display: block;
}
.v-icon-gameart {
  background-image: url(../../static/images/sprite/gameart.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: 20px;
  display: block;
}
.v-icon-evoplay {
  background-image: url(../../static/images/sprite/evoplay.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 117px;
  height: 20px;
  display: block;
}
.v-icon-ygg {
  background-image: url(../../static/images/sprite/ygg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 127px;
  height: 30px;
  display: block;
}
.v-icon-endorphin {
  background-image: url(../../static/images/sprite/endorphin.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 71px;
  height: 32px;
  display: block;
}
.v-icon-ezug {
  background-image: url(../../static/images/sprite/ezugi.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 67px;
  height: 35px;
  display: block;
}
.v-icon-playson {
  background-image: url(../../static/images/sprite/playson.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 23px;
  display: block;
}
.v-icon-streak {
  background-image: url(../../static/images/sprite/lucky.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 64px;
  height: 36px;
  display: block;
}
.v-icon-prag {
  background-image: url(../../static/images/sprite/prag.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 96px;
  height: 45px;
  display: block;
}
.v-icon-quick {
  background-image: url(../../static/images/sprite/quick.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 67px;
  height: 47px;
  display: block;
}
.v-icon-amusnet {
  background-image: url(../../static/images/sprite/amusnet.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 96px;
  height: 20px;
  display: block;
}
.v-icon-tom {
  background-image: url(../../static/images/sprite/tom.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 121px;
  height: 36px;
  display: block;
}
.v-icon-playngo {
  background-image: url(../../static/images/sprite/playngo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 92px;
  height: 25px;
  display: block;
}
.v-icon-tiger {
  background-image: url(../../static/images/sprite/tiger.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 79px;
  height: 39px;
  display: block;
}
.v-icon-apollo {
  background-image: url(../../static/images/sprite/apollo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 122px;
  height: 32px;
  display: block;
}
.v-icon-agaming {
  background-image: url(../../static/images/sprite/agaming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 46px;
  display: block;
}
.v-icon-btg {
  background-image: url(../../static/images/sprite/btg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 102px;
  height: 37px;
  display: block;
}
.v-icon-booming {
  background-image: url(../../static/images/sprite/booming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 94px;
  height: 31px;
  display: block;
}
.v-icon-oaks {
  background-image: url(../../static/images/sprite/oaks.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 124px;
  height: 22px;
  display: block;
}
.v-icon-edict {
  background-image: url(../../static/images/sprite/edict.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 96px;
  height: 28px;
  display: block;
}
.v-icon-elk {
  background-image: url(../../static/images/sprite/elk.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 88px;
  height: 35px;
  display: block;
}
.v-icon-high {
  background-image: url(../../static/images/sprite/highgames.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 115px;
  height: 23px;
  display: block;
}
.v-icon-nolimit {
  background-image: url(../../static/images/sprite/nolimit.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 106px;
  height: 27px;
  display: block;
}
.v-icon-onegaming {
  background-image: url(../../static/images/sprite/onex.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 88px;
  height: 32px;
  display: block;
}
.v-icon-patagonia {
  background-image: url(../../static/images/sprite/patagonia.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 104px;
  height: 26px;
  display: block;
}
.v-icon-pg {
  background-image: url(../../static/images/sprite/pg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 95px;
  height: 26px;
  display: block;
}
.v-icon-platinus {
  background-image: url(../../static/images/sprite/platipus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 97px;
  height: 35px;
  display: block;
}
.v-icon-playtech {
  background-image: url(../../static/images/sprite/playtech.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 108px;
  height: 24px;
  display: block;
}
.v-icon-push {
  background-image: url(../../static/images/sprite/push.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 85px;
  height: 41px;
  display: block;
}
.v-icon-relax {
  background-image: url(../../static/images/sprite/relax.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 99px;
  height: 30px;
  display: block;
}
.v-icon-spinomenal {
  background-image: url(../../static/images/sprite/spinomena.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 122px;
  height: 30px;
  display: block;
}
.v-icon-stake {
  background-image: url(../../static/images/sprite/stake.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 102px;
  height: 28px;
  display: block;
}
.v-icon-thunderkick {
  background-image: url(../../static/images/sprite/thunderkick.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 31px;
  display: block;
}
.v-icon-casino {
  background-image: url(../../static/images/sprite/casino.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 84px;
  height: 46px;
  display: block;
}
.v-icon-wazdan {
  background-image: url(../../static/images/sprite/wazdan.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 75px;
  height: 32px;
  display: block;
}
.v-icon-mascot {
  background-image: url(../../static/images/sprite/mascot.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 76px;
  height: 31px;
  display: block;
}
.v-icon-bf {
  background-image: url(../../static/images/sprite/bf.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 57px;
  height: 41px;
  display: block;
}
.v-icon-belatra {
  background-image: url(../../static/images/sprite/belatra.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 88px;
  height: 31px;
  display: block;
}
.v-icon-bgaming {
  background-image: url(../../static/images/sprite/bgaming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 21px;
  display: block;
}
.v-icon-genii {
  background-image: url(../../static/images/sprite/genii.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 90px;
  height: 36px;
  display: block;
}
.v-icon-fugaso {
  background-image: url(../../static/images/sprite/fucaso.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 121px;
  height: 24px;
  display: block;
}
.v-icon-leander {
  background-image: url(../../static/images/sprite/leander.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 108px;
  height: 34px;
  display: block;
}
.v-icon-pariplay {
  background-image: url(../../static/images/sprite/pari.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 26px;
  display: block;
}
.v-icon-spade {
  background-image: url(../../static/images/sprite/spade.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 48px;
  display: block;
}
.v-icon-real {
  background-image: url(../../static/images/sprite/real.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 31px;
  display: block;
}
.v-icon-vivo {
  background-image: url(../../static/images/sprite/vivo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 78px;
  height: 33px;
  display: block;
}
.v-icon-cool {
  background-image: url(../../static/images/sprite/coll.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 38px;
  display: block;
}
.v-icon-ctgaming {
  background-image: url(../../static/images/sprite/ctgaming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 116px;
  height: 25px;
  display: block;
}
.v-icon-gamzix {
  background-image: url(../../static/images/sprite/gamzix.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 31px;
  display: block;
}
.v-icon-kagaming {
  background-image: url(../../static/images/sprite/kagaming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 115px;
  height: 38px;
  display: block;
}
.v-icon-kalamba {
  background-image: url(../../static/images/sprite/kalamba.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 111px;
  height: 24px;
  display: block;
}
.v-icon-revolver {
  background-image: url(../../static/images/sprite/revolver.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 108px;
  height: 30px;
  display: block;
}
.v-icon-smartsoft {
  background-image: url(../../static/images/sprite/smart.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 107px;
  height: 41px;
  display: block;
}
.v-icon-spinmatic {
  background-image: url(../../static/images/sprite/spinmatic.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 116px;
  height: 24px;
  display: block;
}
.v-icon-wm {
  background-image: url(../../static/images/sprite/wm.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 87px;
  height: 38px;
  display: block;
}
.v-icon-spribe {
  background-image: url(../../static/images/sprite/spribe.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 71px;
  height: 29px;
  display: block;
}
.v-icon-onlyplay {
  background-image: url(../../static/images/sprite/onlyplay.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 25px;
  display: block;
}
.v-icon-novo {
  background-image: url(../../static/images/sprite/novomatic.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 111px;
  height: 16px;
  display: block;
}
.v-icon-eurasian {
  background-image: url(../../static/images/sprite/eurasian.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 102px;
  height: 27px;
  display: block;
}
.v-icon-upgaming {
  background-image: url(../../static/images/sprite/upgaming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 116px;
  height: 31px;
  display: block;
}
.v-icon-twain {
  background-image: url(../../static/images/sprite/twin.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 135px;
  height: 18px;
  display: block;
}
.v-icon-hacksaw {
  background-image: url(../../static/images/sprite/hacksaw.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 93px;
  height: 25px;
  display: block;
}
.v-icon-years {
  background-image: url(../../static/images/sprite/years.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  display: block;
}

.v-green-button {
  font-family: var(--font-family);
  border-radius: 4px;
  padding: 12px;
  text-transform: uppercase;
  text-align: center;
  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;
  position: relative;
  font-weight: 700;
  background-color: rgba(var(--bg-c), 1);
  color: rgba(var(--cl-a), 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: clamp(14px, 1.1511vw, 16px);
  line-height: normal;
}
.v-green-button:hover {
  background-color: rgba(var(--bg-d), 1);
}

.v-grey-button {
  font-family: var(--font-family);
  border-radius: 4px;
  font-size: clamp(14px, 1.1511vw, 16px);
  line-height: normal;
  padding: 12px;
  text-transform: uppercase;
  text-align: center;
  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;
  position: relative;
  font-weight: 700;
  background-color: rgba(var(--bg-n), 1);
  color: rgba(var(--cl-g), 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.v-grey-button:hover {
  background-color: rgba(var(--bg-j), 1);
}

.v-yellow-button {
  font-family: var(--font-family);
  border-radius: 4px;
  padding: 12px;
  text-transform: uppercase;
  text-align: center;
  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;
  position: relative;
  font-weight: 700;
  font-size: clamp(14px, 1.1511vw, 16px);
  line-height: normal;
  background-color: rgba(var(--bg-e), 1);
  color: rgba(var(--cl-b), 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.v-yellow-button:hover {
  background-color: rgba(var(--bg-f), 1);
}

.v-provider-button {
  background: rgba(var(--bg-h), 1);
  height: 42px;
  width: 100%;
  color: rgba(var(--cl-f), 1);
  border-radius: 4px;
  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;
  padding: 10px;
  font-size: clamp(14px, 1.1511vw, 16px);
  line-height: normal;
  font-family: var(--font-family);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.v-provider-button:hover {
  color: rgba(var(--cl-a), 0.6);
}

.v-red-button {
  font-family: var(--font-family);
  border-radius: 4px;
  padding: 12px;
  text-transform: uppercase;
  text-align: center;
  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;
  position: relative;
  font-weight: 700;
  font-size: clamp(14px, 1.5534vw, 16px);
  background-color: rgba(var(--bg-r), 1);
  color: rgba(var(--cl-a), 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.v-red-button:hover {
  background-color: rgba(var(--bg-q), 1);
}

.v-main-button {
  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;
  font-family: var(--font-family);
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(transparent));
  background-image: linear-gradient(0deg, transparent 0%, transparent 100%);
  background-color: rgba(var(--bg-j), 1);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  color: rgba(var(--cl-a), 1);
  font-weight: 600;
  height: 30px;
  justify-content: center;
  padding: 0 15px;
  text-align: center;
  border-radius: 8px;
  font-size: clamp(12px, 0.9722vw, 14px);
  line-height: 120%;
}
.v-main-button:hover {
  background-color: rgba(var(--bg-k), 1);
}

.v-info-button {
  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;
  background-color: rgba(var(--bg-a), 0.2);
  font-size: clamp(12px, 0.9028vw, 13px);
  font-family: var(--font-family);
  padding: 11px 19px;
  color: rgba(var(--cl-a), 1);
  border-radius: 9.5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 3.81967px 19.0984px 0px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3.81967px 19.0984px 0px;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  line-height: 120%;
}
.v-info-button::before, .v-info-button:after {
  position: absolute;
  content: "";
}
.v-info-button::before {
  inset: 0;
  background-color: rgba(var(--bg-b), 0.25);
  border-radius: inherit;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.v-info-button:after {
  z-index: -1;
  bottom: -5%;
  left: -5%;
  height: 110%;
  width: 110%;
  opacity: 0.3;
  border-radius: 50px;
  background: inherit;
  -webkit-filter: blur(8px);
  filter: blur(8px);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.v-info-button:hover {
  -webkit-transform: scale(1.06) translateZ(0) perspective(1px);
  transform: scale(1.06) translateZ(0) perspective(1px);
}
.v-info-button:hover:after {
  opacity: 0.7;
}
.v-info-button--orange {
  background: linear-gradient(107deg, rgb(250, 176, 34) 0%, rgb(248, 111, 0) 100%);
}
.v-info-button--red {
  background: linear-gradient(107deg, rgb(255, 72, 94) 0%, rgb(255, 0, 18) 100%);
}
.v-info-button--green {
  background: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
}
.v-info-button--pink {
  background: linear-gradient(107deg, rgb(248, 0, 157) 0%, rgb(249, 0, 125) 100%);
}
.v-info-button--blue {
  background: linear-gradient(107deg, rgb(57, 155, 255) 0%, rgb(0, 78, 255) 100%);
}
.v-info-button--mode {
  background: linear-gradient(107deg, rgb(64, 0, 209) 0%, rgb(0, 137, 135) 100%);
}

.v-download-button,
.v-mobile-button,
.v-lang-button {
  background: linear-gradient(92.58deg, #1e283f 0%, rgba(20, 27, 46, 0.6) 99.71%);
  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;
  border-radius: 10px;
  width: 35px;
  height: 35px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  font-family: var(--font-family);
  line-height: 16px;
  letter-spacing: 0.01px;
  font-size: 12px;
  color: rgba(var(--cl-a), 1);
  text-transform: uppercase;
}
.v-download-button:hover,
.v-mobile-button:hover,
.v-lang-button:hover {
  opacity: 0.8;
}

.v-main-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 12px;
}
.v-main-top__title {
  font-size: 26px;
  line-height: normal;
  font-weight: 400;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
}
.v-main-top__link {
  margin-top: 5px;
  font-family: var(--font-family);
  font-style: normal;
  cursor: pointer;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  color: rgba(var(--cl-c), 1);
}
.v-main-top__link:hover {
  color: rgba(var(--cl-d), 1);
  -webkit-text-decoration-color: rgba(var(--cl-a), 0);
  text-decoration-color: rgba(var(--cl-a), 0);
}

.v-header-nav {
  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;
  grid-gap: clamp(16px, 1.7266vw, 24px);
}
.v-header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 12px;
  text-align: center;
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  line-height: 100%;
  font-size: clamp(14px, 1.1511vw, 16px);
}
.v-header-nav__link i {
  -webkit-filter: brightness(2);
  filter: brightness(2);
}
.v-header-nav__link:hover {
  color: rgba(var(--cl-d), 1);
}
.v-header-nav__link:hover i {
  -webkit-filter: none;
  filter: none;
}

.v-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid var(--br-a);
  width: 100%;
}
.v-accordion__button {
  width: 100%;
  padding: 12px;
  background: transparent;
  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;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-bottom: 1px dotted var(--br-g);
}
.v-accordion__button.active {
  border-bottom: none;
  background: rgba(var(--bg-e), 1);
}
.v-accordion__button.active .v-accordion__icon:after {
  -webkit-transform: rotateZ(90deg);
  -ms-transform: rotate(90deg);
  transform: rotateZ(90deg);
}
.v-accordion__button.active .v-accordion__icon:before, .v-accordion__button.active .v-accordion__icon::after {
  background: #000;
}
.v-accordion__button.active .v-accordion__title {
  color: rgba(var(--cl-b), 1);
}
.v-accordion__icon {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.v-accordion__content {
  width: 100%;
}
.v-accordion__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 15px;
  padding: 24px 24px 24px 12px;
  border-bottom: 1px solid var(--br-a);
}
.v-accordion__title {
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.v-accordion p {
  font-family: var(--font-family);
}

.v-content {
    margin: 2em 0;
}

.v-main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 16px;
}
.v-main-box p {
  color: rgba(var(--cl-a), 1);
  font-size: clamp(14px, 1.1511vw, 16px);
  line-height: 150%;
  font-family: var(--font-family);
  font-weight: 400;
  padding-bottom: 0.5em;
}
.v-main-box p b {
  font-weight: 700;
}
.v-main-box__image {
  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;
}
.v-main-box__image--mode {
  padding: clamp(5px, 1.1511vw, 16px) 0 clamp(16px, 2.3022vw, 32px);
}
.v-main-box--mode {
  grid-gap: 0;
}
.v-main-box--mode .v-main-subtitle {
  padding: 8px 0;
}

.v-main-slider {
  width: 100%;
}
.v-main-slider__box {
  border-radius: 16px;
  position: relative;
  height: 100%;
  width: 100%;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: clamp(36px, 4.6763vw, 65px) 0 16px clamp(16px, 3.5971vw, 50px);
  background: linear-gradient(93deg, rgb(1, 29, 8) 0%, rgb(3, 49, 14) 35%, rgb(5, 80, 23) 54%, rgb(10, 115, 36) 72%, rgb(0, 38, 9) 100%);
}
.v-main-slider__box--blue {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.8%, rgb(0, 50, 136)), color-stop(50.17%, rgb(69, 7, 107)), color-stop(98.98%, rgba(0, 172, 182, 0.83)));
  background: linear-gradient(90deg, rgb(0, 50, 136) 0.8%, rgb(69, 7, 107) 50.17%, rgba(0, 172, 182, 0.83) 98.98%);
}
.v-main-slider__box--green {
  background: linear-gradient(128deg, rgb(1, 29, 8) 0%, rgb(3, 49, 14) 35.42%, rgb(5, 80, 23) 53.65%, rgb(10, 115, 36) 71.9%, rgb(0, 38, 9) 100%);
}
@media (max-width: 576px) {
  .v-main-slider__box {
    padding: 16px 0 16px clamp(16px, 3.5971vw, 50px);
  }
}
.v-main-slider__info {
  background: rgba(var(--bg-b), 0.75);
  position: absolute;
  right: 6%;
  bottom: 6%;
  border-radius: 40px;
  padding: 6px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 4px;
  z-index: 1;
  color: rgba(var(--cl-a), 1);
  font-size: 16px;
  line-height: normal;
  font-family: var(--font-family);
}
.v-main-slider__value {
  font-size: clamp(26px, 3.4532vw, 48px);
  color: rgba(var(--cl-a), 1);
  line-height: normal;
  font-family: var(--font-family);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.v-main-slider__image {
  -webkit-transition: all 1s;
  transition: all 1s;
  width: 100%;
  max-width: clamp(190px, 38vw, 471px);
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  z-index: 3;
}
.v-main-slider__picture {
  height: 112%;
  position: absolute;
  right: 5%;
  bottom: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.v-main-slider__picture img {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .v-main-slider__picture {
    right: 2%;
  }
}
.v-main-slider p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(var(--cl-a), 1);
  font-size: 16px;
  line-height: normal;
  font-family: var(--font-family);
}
.v-main-slider__slide {
  width: 100%;
  position: relative;
  margin-top: 6%;
  height: clamp(150px, 24.194vw, 300px);
}
.v-main-slider__slide:hover .v-main-slider__image {
  -webkit-transform: scale(1.1) translateX(2%);
  -ms-transform: scale(1.1) translateX(2%);
  transform: scale(1.1) translateX(2%);
}
.v-main-slider__slide:hover .v-main-slider__picture {
  -webkit-transform: translate(-3%, 0);
  -ms-transform: translate(-3%, 0);
  transform: translate(-3%, 0);
  height: 114%;
}
@media (max-width: 576px) {
  .v-main-slider__slide {
    margin-top: 4%;
  }
}
.v-main-slider .v-api {
  width: 150px;
  position: absolute;
  left: clamp(16px, 3.5971vw, 50px);
  bottom: 8%;
}
.v-main-slider .splide__pagination {
  display: none;
}
.v-main-slider .splide__arrow {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: initial;
  top: 58%;
}
.v-main-slider .splide__arrow svg {
  width: 30px;
  height: 30px;
  fill: rgba(var(--cl-a), 0.8);
}
@media (max-width: 767px) {
  .v-main-slider .splide__arrow {
    display: none;
  }
}
.v-main-slider .splide__arrow--prev {
  left: 8px;
}
.v-main-slider .splide__arrow--next {
  right: 8px;
}
.v-main-slider .splide__arrow:hover svg {
  fill: rgba(var(--cl-a), 1);
}

.v-jackpot-card {
  height: clamp(200px, 27.0504vw, 376px);
  display: grid !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 16px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(2.66%, #0E0D12), color-stop(3.17%, #0E0D12), color-stop(48.52%, #482E14), color-stop(74.29%, #985A1B), color-stop(101.6%, #71400E));
  background: linear-gradient(0deg, #0E0D12 2.66%, #0E0D12 3.17%, #482E14 48.52%, #985A1B 74.29%, #71400E 101.6%);
}
.v-jackpot-card::before {
  z-index: 2;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 40%;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 16px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(51.66%, #140D0C), to(rgba(34, 8, 8, 0)));
  background: linear-gradient(360deg, #140D0C 51.66%, rgba(34, 8, 8, 0) 100%);
}
@media (max-width: 576px) {
  .v-jackpot-card {
    min-height: 260px;
  }
}
.v-jackpot-card__value {
  color: rgba(var(--cl-a), 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 8%;
  font-size: clamp(28px, 2.8777vw, 40px);
  font-family: var(--font-family);
  line-height: normal;
}
.v-jackpot-card__image {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.v-jackpot-card__image img, .v-jackpot-card__image picture {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.v-jackpot-card .v-api {
  position: absolute;
  bottom: -28%;
  width: clamp(150px, 16.5468vw, 230px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
}
.v-jackpot-card--blue {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(13.02%, #021734), color-stop(76.04%, #01617C), to(#033357));
  background: linear-gradient(0deg, #021734 13.02%, #01617C 76.04%, #033357 100%);
}
.v-jackpot-card--blue::before {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(39.06%, #0B0813), to(rgba(11, 8, 15, 0)));
  background: linear-gradient(360deg, #0B0813 39.06%, rgba(11, 8, 15, 0) 100%);
}
.v-jackpot-card--red {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(28.98%, #231212), color-stop(72.04%, #430608), color-stop(98.4%, #850001));
  background: linear-gradient(0deg, #231212 28.98%, #430608 72.04%, #850001 98.4%);
}
.v-jackpot-card--red:before {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(39.06%, #130808), to(rgba(11, 8, 15, 0)));
  background: linear-gradient(360deg, #130808 39.06%, rgba(11, 8, 15, 0) 100%);
}
.v-jackpot-card--brown {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(28.98%, #101018), color-stop(77.39%, #382924), color-stop(98.4%, #492C2C));
  background: linear-gradient(0deg, #101018 28.98%, #382924 77.39%, #492C2C 98.4%);
}
.v-jackpot-card--brown::before {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(39.06%, #0B0813), to(rgba(11, 8, 15, 0)));
  background: linear-gradient(360deg, #0B0813 39.06%, rgba(11, 8, 15, 0) 100%);
}
.v-jackpot-card:hover::before {
  height: 50%;
}
.v-jackpot-card:hover .v-jackpot-card__image {
  height: 80% !important;
}
.v-jackpot-card:hover .v-jackpot-card__value {
  bottom: 20%;
}
@media (max-width: 767px) {
  .v-jackpot-card:hover .v-jackpot-card__value {
    bottom: 25%;
  }
}
.v-jackpot-card:hover .v-api {
  bottom: 3%;
}

.v-tutorial-card {
  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;
  height: 100%;
  grid-gap: 10px;
}
.v-tutorial-card__title {
  color: rgba(var(--cl-a), 1);
  line-height: 120%;
  max-width: 160px;
  font-family: var(--font-family);
  text-align: center;
  min-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.v-tutorial-card__icon {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: clamp(15px, 2.1583vw, 30px);
}
.v-tutorial-card__amount {
  position: absolute;
  left: -25%;
  top: 60px;
  width: 41px;
  height: 41px;
  font-size: 20px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  border-radius: 50%;
  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;
  background-color: rgba(var(--bg-i), 1);
  -webkit-animation: steps 1.2s ease-in-out infinite;
  animation: steps 1.2s ease-in-out infinite;
}
.v-tutorial-card .v-yellow-button {
  max-width: 180px;
  height: 41px;
}
.v-tutorial-card--disabled .v-tutorial-card__amount {
  background: rgba(var(--bg-j), 1);
  -webkit-animation: none;
  animation: none;
}
.v-tutorial-card--disabled .v-yellow-button {
  cursor: auto;
  background-color: rgba(var(--bg-g), 1) !important;
}

@-webkit-keyframes steps {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes steps {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.v-players-block {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-gap: 6px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}
.v-players-block__row {
  padding: 15px;
  background: rgba(var(--bg-k), 1);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0 15px;
  border-radius: 4px;
}
.v-players-block__icon {
  grid-row: 1/3;
}
.v-players-block__text {
  font-size: clamp(14px, 1.1511vw, 16px);
  font-family: var(--font-family);
  line-height: normal;
  color: rgba(var(--cl-e), 1);
}
.v-players-block__value {
  font-size: clamp(14px, 1.1511vw, 16px);
  font-family: var(--font-family);
  line-height: normal;
  color: rgba(var(--cl-a), 1);
}

.v-game-card {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
}
.v-game-card:hover .v-game-card__wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.v-game-card:hover .v-icon-play {
  -webkit-animation: 0.8s scales ease-out infinite;
  animation: 0.8s scales ease-out infinite;
}
.v-game-card__image {
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.v-game-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.v-game-card .v-icon-like:hover {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.v-game-card .v-icon-info {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.v-game-card .v-icon-info:hover {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.v-game-card .v-icon-play {
  position: absolute;
  inset: 0;
  margin: auto;
}
.v-game-card__producer {
  position: absolute;
  right: 3px;
  bottom: 4px;
  z-index: 1;
}
.v-game-card__cup {
  position: absolute;
  left: 3px;
  bottom: 4px;
  z-index: 1;
}
.v-game-card__link {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.v-game-card__wrapp {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  padding: 8px;
  border: 2px solid var(--br-a);
  background: rgba(var(--bg-b), 0.9);
  border-radius: 4px;
  display: none;
  z-index: 2;
}
.v-game-card__provider {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 0;
  height: 91px;
  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;
  padding: 10px;
  z-index: 2;
}
.v-game-card__text {
  font-size: 16px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  line-height: normal;
}
.v-game-card--more .v-game-card__wrapp {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 15px;
  border: none;
  background: rgba(var(--bg-s), 0.81);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.v-game-card--more:hover .v-game-card__wrapp {
  background: rgba(var(--bg-s), 0.6);
}

.v-casino-card {
  border-radius: 16px;
}
.v-casino-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: -1px;
  border-radius: 16px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(43.23%, rgb(13, 19, 43)), to(rgba(13, 19, 43, 0)));
  background: linear-gradient(360deg, rgb(13, 19, 43) 43.23%, rgba(13, 19, 43, 0) 100%);
  opacity: 1;
}
.v-casino-card .v-game-card__image {
  border-radius: 16px;
}
.v-casino-card .v-game-card__wrapp {
  border-radius: 16px;
}
.v-casino-card .v-icon-like {
  position: absolute;
  width: 45px;
  height: 34px;
  top: -1px;
  left: -2px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(var(--bg-e), 1);
  border-radius: 16px 0px 8px;
}
.v-casino-card .v-icon-like:hover {
  -webkit-filter: initial;
  filter: initial;
}
.v-casino-card:hover::before {
  opacity: 0;
}

@-webkit-keyframes scales {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scales {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.v-winner-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 12px;
}
.v-winner-card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 5px;
  -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;
  color: rgba(var(--cl-a), 1);
  background-color: rgba(var(--bg-a), 1);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.v-winner-card__text--red {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(54.17%, #FF4D00), to(#A43100));
  background: linear-gradient(180deg, #FF4D00 54.17%, #A43100 100%);
  -webkit-filter: drop-shadow(0px 2px 0px #381C07);
  filter: drop-shadow(0px 2px 0px #381C07);
}
.v-winner-card__text--orange {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(52.08%, #FF8A00), to(#A45800));
  background: linear-gradient(180deg, #FF8A00 52.08%, #A45800 100%);
  -webkit-filter: drop-shadow(0px 2px 0px #0E2328);
  filter: drop-shadow(0px 2px 0px #0E2328);
}
.v-winner-card__text--yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(51.56%, #FFD600), to(#AA7A00));
  background: linear-gradient(180deg, #FFD600 51.56%, #AA7A00 100%);
  -webkit-filter: drop-shadow(0px 2px 0px #421B1B);
  filter: drop-shadow(0px 2px 0px #421B1B);
}
.v-winner-card__title {
  font-family: var(--font-family);
  font-size: clamp(16px, 1.4388vw, 20px);
  line-height: 120%;
  font-weight: 900;
}
.v-winner-card__value {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: clamp(20px, 2.0144vw, 28px);
  line-height: 100%;
  white-space: nowrap;
  text-transform: lowercase;
}
.v-winner-card .v-icon-play {
  width: clamp(60px, 5.7554vw, 80px);
  height: clamp(60px, 5.7554vw, 80px);
}

.v-main-user {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 2px 6px;
  background: rgba(var(--bg-k), 1);
  border-radius: 34px;
  padding: 4px 0 4px 3px;
}
.v-main-user__image {
  grid-row: 1/3;
  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;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 4px;
  overflow: hidden;
  border-radius: 50%;
}
.v-main-user__image img {
  border-radius: 50%;
}
.v-main-user__image::before {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
  border: 2px solid var(--br-c);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.v-main-user__image:hover::before {
  border-color: var(--br-d);
}
.v-main-user__name {
  font-family: var(--font-family);
  color: rgba(var(--cl-c), 1);
  font-size: 12px;
  line-height: 100%;
}
.v-main-user__total {
  color: rgba(var(--cl-a), 1);
  font-size: 16px;
  line-height: 100%;
  font-family: var(--font-family);
}

.v-bonus-card {
  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;
  position: relative;
  min-height: clamp(270px, 31.25vw, 320px);
  padding: 12px;
  border-radius: 12px;
  border: 2px solid var(--br-e);
  background-color: rgba(var(--bg-m), 1);
  background: linear-gradient(45deg, #1c1f20 25%, transparent 25%, transparent 75%, #1c1f20 75%, #1c1f20), linear-gradient(-45deg, #1c1f20 25%, transparent 25%, transparent 75%, #1c1f20 75%, #1c1f20), #212425;
  background-size: 60px 60px;
  -webkit-box-shadow: inset 0px 0px 4px #9B9B9B, inset 0px 4px 4px #373C3E;
  box-shadow: inset 0px 0px 4px #9B9B9B, inset 0px 4px 4px #373C3E;
}
.v-bonus-card:before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid var(--br-e);
  border-radius: 9px;
}
.v-bonus-card__box {
  padding-top: 35px;
  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;
  grid-gap: 5px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}
.v-bonus-card__image {
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.v-bonus-card__image img, .v-bonus-card__image picture {
  width: 100%;
  height: clamp(100px, 9.0647vw, 126px);
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: drop-shadow(0px 2px 5px #000);
  filter: drop-shadow(0px 2px 5px #000);
}
.v-bonus-card__text {
  color: rgba(var(--cl-a), 1);
  font-size: 14px;
  font-family: var(--font-family);
  line-height: 100%;
}
.v-bonus-card__value {
  color: rgba(var(--cl-a), 1);
  font-size: clamp(18px, 1.4388vw, 20px);
  font-family: var(--font-family);
  line-height: 100%;
}
.v-bonus-card__info {
  position: absolute;
  right: 10px;
  top: 10px;
}
.v-bonus-card__deskr {
  color: rgba(var(--cl-g), 1);
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 100%;
  padding-bottom: 10px;
}

.v-loyalty-card {
  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;
  grid-gap: 5px;
  position: relative;
  min-height: clamp(270px, 31.25vw, 320px);
  padding: 12px;
  border-radius: 12px;
  border: 2px solid var(--br-e);
  background-color: #173D4C;
  background-size: 60px 60px;
  background-image: linear-gradient(45deg, #153746 25%, transparent 25%, transparent 75%, #153746 75%, #153746), linear-gradient(-45deg, #153746 25%, transparent 25%, transparent 75%, #153746 75%, #153746);
  -webkit-box-shadow: inset 0 3px 3px #327995, inset 0 -3px 3px #0E2731;
  box-shadow: inset 0 3px 3px #327995, inset 0 -3px 3px #0E2731;
}
.v-loyalty-card:before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid var(--br-f);
  border-radius: 9px;
}
.v-loyalty-card__image {
  padding: clamp(10px, 1.7266vw, 24px) 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.v-loyalty-card__image img, .v-loyalty-card__image picture {
  width: 100%;
  height: clamp(100px, 9.0647vw, 126px);
  -o-object-fit: contain;
  object-fit: contain;
}
.v-loyalty-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 4px;
}
.v-loyalty-card__item {
  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;
  grid-gap: 6px;
}
.v-loyalty-card__item--mode {
  opacity: 0.5;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.v-loyalty-card__title {
  color: rgba(var(--cl-a), 1);
  font-size: 14px;
  font-family: var(--font-family);
  line-height: 100%;
}
.v-loyalty-card__value {
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(var(--cl-a), 1);
  font-size: clamp(18px, 1.4388vw, 20px);
  font-family: var(--font-family);
  line-height: 100%;
}
.v-loyalty-card__info {
  position: absolute;
  right: 10px;
  top: 10px;
}

.v-tournament-card {
  background: radial-gradient(23.18% 56.5% at 72.12% 43.5%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(52.96% 84.5% at 73.39% 50%, #faff1c 0%, rgba(255, 199, 0, 0) 100%), linear-gradient(89deg, #b90043 3.13%, #9a0037 36.46%, #f00 66.15%, #ca0770 100%);
  border: 2px solid #edc97f;
  width: 100%;
  border-radius: 16px;
  height: clamp(120px, 20vw, 286px);
  position: relative;
}
@media (max-width: 767px) {
  .v-tournament-card {
    height: clamp(120px, 44vw, 286px);
  }
}
.v-tournament-card:hover .v-tournament-card__name {
  -webkit-transform: scale(1.1) translateX(2%);
  -ms-transform: scale(1.1) translateX(2%);
  transform: scale(1.1) translateX(2%);
}
.v-tournament-card:hover .v-tournament-card__image {
  -webkit-transform: translate(-3%, 0);
  -ms-transform: translate(-3%, 0);
  transform: translate(-3%, 0);
  height: 124%;
}
.v-tournament-card--blue {
  background: radial-gradient(33.83% 53.7% at 76.7% 46.5%, #fff 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(106.91% 77.66% at 83.24% -10.5%, #00ff94 0%, rgba(255, 92, 0, 0) 100%), linear-gradient(0deg, rgba(0, 255, 163, 0.48) 0%, rgba(0, 240, 255, 0) 100%), linear-gradient(89deg, #01003a 0%, #5300da 40.63%, #0038ff 66.15%, #bd00ff 100%);
}
.v-tournament-card--green {
  background: radial-gradient(60% 360% at 70%, #e6ff4e 6.79%, #128100 55.3%, #00260f 100%);
}
.v-tournament-card--mode {
  background: radial-gradient(60% 360% at 70%, #0ff 0%, #003bae 63.61%, #001344 100%);
}
.v-tournament-card--disabled {
  background: radial-gradient(60% 360% at 70%, #84ffff 0%, #003db5 40.84%, #00113c 100%);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.v-tournament-card__inner {
  position: absolute;
  bottom: 8px;
  left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 576px) {
  .v-tournament-card__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 16px;
    grid-gap: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    left: 10px;
    bottom: 8px;
  }
}
.v-tournament-card__text {
  font-size: clamp(12px, 1.5511vw, 16px);
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  line-height: normal;
}
.v-tournament-card__value {
  font-size: clamp(26px, 3.4532vw, 48px);
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  line-height: normal;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 6px;
}
.v-tournament-card__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: rgba(var(--cl-c), 1);
  font-family: var(--font-family);
  line-height: normal;
}
@media (max-width: 576px) {
  .v-tournament-card__user {
    font-size: 12px;
  }
  .v-tournament-card__user i {
    width: 16px;
    height: 16px;
  }
}
.v-tournament-card__name {
  position: relative;
  padding: 11% 0 0 4%;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 4;
}
.v-tournament-card__name img {
  width: clamp(172px, 26vw, 400px);
}
@media (max-width: 767px) {
  .v-tournament-card__name {
    padding-top: 14%;
  }
  .v-tournament-card__name img {
    width: clamp(172px, 54vw, 360px);
  }
}
.v-tournament-card__info {
  padding: 6px 12px;
  position: absolute;
  right: 24px;
  bottom: 8px;
  background: rgba(var(--bg-b), 0.75);
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  grid-gap: clamp(10px, 1.4388vw, 20px);
}
.v-tournament-card__info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  line-height: normal;
}
@media (max-width: 576px) {
  .v-tournament-card__info-text {
    font-size: 12px;
  }
  .v-tournament-card__info-text i {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 576px) {
  .v-tournament-card__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 16px;
    grid-gap: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    right: 5px;
  }
}
.v-tournament-card__image {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 120%;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.v-tournament-card__image img {
  border-radius: 0 0 14px 0;
  width: 100%;
  height: 100%;
}
.v-tournament-card__providers {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 8px;
}
.v-tournament-card__provider {
  width: clamp(80px, 7.1942vw, 100px);
  height: clamp(25px, 2.518vw, 35px);
}
.v-tournament-card__provider i {
  width: 100%;
  height: 100%;
}
.v-tournament-card__provider:nth-child(2n) {
  margin-left: -10px;
}

.v-player-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 16px;
  height: 100%;
  background: rgba(var(--bg-o), 1);
  overflow: hidden;
  padding-top: 32px;
}
.v-player-card:hover .v-player-card__image img {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 125%;
}
.v-player-card__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(var(--bg-p), 1);
  min-height: 68px;
  position: relative;
}
.v-player-card__box::after {
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: rgba(var(--bg-o), 1);
  position: absolute;
}
.v-player-card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 7px;
  border: 2px solid var(--br-a);
  border-radius: 16px;
  position: relative;
  height: 113px;
  background: radial-gradient(23.18% 56.5% at 72.12% 43.5%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(52.96% 84.5% at 73.39% 50%, #FAFF1C 0%, rgba(255, 199, 0, 0) 100%), linear-gradient(89deg, #B90043 3.13%, #9A0037 36.46%, #F00 66.15%, #CA0770 100%);
}
.v-player-card__image img {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 120%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
}
.v-player-card__image--blue {
  background: radial-gradient(33.83% 53.7% at 76.7% 46.5%, #FFF 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(106.91% 77.66% at 83.24% -10.5%, #00FF94 0%, rgba(255, 92, 0, 0) 100%), linear-gradient(0deg, rgba(0, 255, 163, 0.48) 0%, rgba(0, 240, 255, 0) 100%), linear-gradient(89deg, #01003A 0%, #5300DA 40.63%, #0038FF 66.15%, #BD00FF 100%);
}
.v-player-card__image--violet {
  background: radial-gradient(60% 360% at 70%, #E8C3FF 0%, #B600BA 40.97%, #28013A 100%), radial-gradient(246.94% 81.78% at 81.76% 50%, #F00 0%, #700 45.81%, #260000 100%);
}
.v-player-card__image--mode {
  background: radial-gradient(60% 360% at 70%, #BC93FF 0%, #44007A 51.56%, #150026 100%);
}
.v-player-card__title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 60px;
  padding: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
}
.v-player-card__date {
  line-height: normal;
  font-size: 16px;
  font-family: var(--font-family);
  color: rgba(var(--cl-h), 1);
}
.v-player-card__money {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 5px;
  line-height: normal;
  font-size: 16px;
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
}
.v-player-card__money i {
  width: 18px;
  height: 18px;
}

.v-play-card {
  width: 90vw;
  max-width: 400px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(10px, 3.2823vw, 30px);
  padding: 15px 20px;
  border: 3px solid var(--br-h);
}
.v-play-card__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(10px, 2.1882vw, 20px);
  width: 225px;
}
.v-play-card__title {
  color: rgba(var(--cl-h), 1);
  font-family: var(--font-family2);
  font-weight: 800;
  font-size: clamp(20px, 2.8446vw, 26px);
  font-style: normal;
  line-height: 130%;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(52.08%, #FF8A00), to(#A45800));
  background: linear-gradient(180deg, #FF8A00 52.08%, #A45800 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.v-play-card p {
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.5534vw, 16px);
  line-height: 120%;
  width: 100%;
  text-align: center;
}
.v-play-card .v-green-button {
  font-size: clamp(14px, 1.5534vw, 16px);
}

.v-tutorial-list {
  background: rgba(var(--bg-h), 1);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 24px;
  grid-gap: 15px clamp(20px, 2.5899vw, 36px);
  border-radius: 16px;
}
@media (max-width: 767px) {
  .v-tutorial-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.v-games-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  grid-gap: 6px;
  width: 100%;
}
@media (max-width: 1024px) {
  .v-games-list {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
}
@media (max-width: 576px) {
  .v-games-list {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.v-partners-list {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  grid-gap: 10px;
}
.v-partners-list__item {
  width: clamp(100px, 10.7914vw, 150px);
  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;
  -webkit-filter: grayscale(100%) opacity(0.5);
  filter: grayscale(100%) opacity(0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.v-partners-list__item:hover {
  -webkit-filter: initial;
  filter: initial;
}
.v-partners-list__icon {
  height: 56px;
}

.v-winners-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: clamp(15px, 1.7986vw, 25px);
}
@media (max-width: 1024px) {
  .v-winners-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

.v-bonuses-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 12px;
}

.v-tournaments-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 70px 24px;
}
@media (max-width: 767px) {
  .v-tournaments-list {
    grid-template-columns: 1fr;
    grid-gap: clamp(20px, 6.51vw, 50px);
  }
}
.v-tournaments-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 10px;
}

.v-players-list {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  grid-gap: 24px;
  display: grid;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--br-g);
}

.v-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-color: rgba(var(--bg-h), 1);
  padding: 10px 0;
}
.v-header__box {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px 15px;
  grid-template-columns: auto 1fr auto;
}
@media (max-width: 1024px) {
  .v-header__box {
    grid-template-columns: auto 1fr;
  }
  .v-header__box .v-header-nav {
    display: none;
  }
}
@media (max-width: 576px) {
  .v-header__box {
    grid-gap: 25px 15px;
    grid-template-columns: 1fr;
  }
}
.v-header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 12px;
}
.v-header__btns .v-api {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 576px) {
  .v-header__btns .v-api {
    width: 100%;
    height: 35px;
  }
}
@media (max-width: 1024px) {
  .v-header__btns {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 576px) {
  .v-header .v-burger {
    margin-top: 10px;
  }
}
.v-header .v-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .v-header .v-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 576px) {
  .v-header .v-logo {
    top: 17px;
  }
}
.v-header.sticky, .v-header.active {
  -webkit-box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.4666666667);
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.4666666667);
}

footer {
  padding: clamp(10px, 1.223vw, 17px) 0;
  background-color: rgba(var(--bg-b), 1);
  overflow: hidden;
}

.v-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(20px, 3.125vw, 45px);
  position: relative;
}
@media (max-width: 767px) {
  .v-footer {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.v-footer__copyright {
  color: rgba(var(--cl-e), 1);
  font-size: 12px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.v-footer__copyright i {
  margin-right: 9px;
}
@media (max-width: 576px) {
  .v-footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.v-casino-section {
  padding-bottom: clamp(25px, 2.518vw, 35px);
}
.v-casino-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(16px, 3.4532vw, 48px);
}
.v-casino-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(16px, 1.295vw, 18px);
}

.v-games-section {
  padding-bottom: clamp(40px, 4.8921vw, 68px);
  position: relative;
}
.v-games-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 12px;
}
.v-games-section__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 6px;
}
.v-games-section__top .v-search {
  grid-column: 3/5;
}
@media (max-width: 767px) {
  .v-games-section__top {
    grid-template-columns: repeat(2, 1fr);
  }
  .v-games-section__top .v-search {
    grid-column: 1/-1;
  }
}
.v-games-section .v-main-top {
  padding-bottom: 6px;
}

.v-first-section {
  position: relative;
  padding-bottom: clamp(16px, 1.6667vw, 24px);
}
.v-first-section__box {
  display: grid;
  grid-template-columns: 1fr 285px;
  grid-gap: clamp(16px, 1.8705vw, 26px) 16px;
  position: relative;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
@media (max-width: 1239px) {
  .v-first-section__box {
    grid-template-columns: 100%;
  }
  .v-first-section__box .v-players-block {
    display: none;
  }
}

.v-partners-section {
  padding-bottom: clamp(10px, 2.1583vw, 30px);
}
.v-partners-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 20px;
}

.v-bonuses-section {
  padding-bottom: clamp(30px, 2.8777vw, 40px);
}
.v-bonuses-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(20px, 1.7266vw, 24px);
}
.v-bonuses-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 15px;
}

.v-tournaments-section {
  padding: 10px 0 24px;
}
.v-tournaments-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(16px, 1.7266vw, 24px);
}
.v-tournaments-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(16px, 1.7266vw, 24px);
}

.v-mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 100;
  -webkit-transform: translateX(-230%);
  -ms-transform: translateX(-230%);
  transform: translateX(-230%);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  width: 100%;
  max-width: 450px;
  background-color: rgba(var(--bg-h), 1);
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
  padding: 10px 16px 16px;
}
.v-mobile-menu__box {
  grid-gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.v-mobile-menu .v-header-nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.v-mobile-menu .v-header-nav__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.v-mobile-menu .v-header-nav__link {
  text-transform: uppercase;
  color: rgba(var(--cl-a), 1);
  width: 100%;
  font-size: 14px;
  padding: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.v-mobile-menu.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  transform: translateY(-6px);
}

.acc-active {
   max-height: 100%;
}

.v-about-section {
  padding-bottom: clamp(20px, 2.8777vw, 40px);
  overflow: hidden;
}
.v-about-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(12px, 1.295vw, 18px);
}
.v-about-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: clamp(12px, 1.295vw, 18px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.v-about-section__inner--mode {
  grid-gap: 16px;
}
.v-about-section__inner--mode .v-main-box {
  grid-gap: 12px;
}
.v-about-section__image {
  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;
}
.v-about-section--bonuses {
  padding-bottom: 10px;
}

.v-play-section {
  padding: clamp(25px, 2.7778vw, 40px) 0;
}
.v-play-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

