@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
}
/* stylelint-disable */
/* stylelint-disable */
.shuv-burger {
  display: none;
}
@media (max-width: 1024px) {
  .shuv-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;
  }
  .shuv-burger::before, .shuv-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);
  }
  .shuv-burger::before {
    top: 0;
  }
  .shuv-burger::after {
    top: calc(100% - var(--burger-line-height));
  }
  .shuv-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);
  }
  .shuv-burger:hover .shuv-burger__bg::before {
    opacity: 1;
  }
  .shuv-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;
  }
  .shuv-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;
  }
  .shuv-burger.active .shuv-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;
  }
}

.shuv-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;
}
.shuv-overlay::-webkit-scrollbar {
  display: none;
}
.shuv-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: 134px;
  --scrollbar-thumb: rgb(8, 97, 45);
  --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: 167, 167, 167;
  --cl-d: 237, 201, 127;
  --cl-e: 59, 167, 69;
  --cl-f: 109, 109, 109;
  --cl-g: 237, 201, 127;
  --cl-h: 109, 109, 109;
  --bg-a: 255, 255, 255;
  --bg-b: 0, 0, 0;
  --bg-c: 59, 162, 67;
  --bg-d: 47, 134, 55;
  --bg-e: 255, 0, 17;
  --bg-f: 154, 4, 14;
  --bg-g: 109, 109, 109;
  --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: 76px;
  }
}
@media (max-width: 576px) {
  :root {
    --header-height: 106px;
  }
}

.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%;
  background-color: rgba(0, 0, 0, 0.9);
}
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  pointer-events: none;
  background: linear-gradient(321deg, #042a0b 0%, #081d09 8.22%, #080808 29.66%, #020a02 33.55%, #051405 67.93%, #000000 89.18%, #000000 100%);
}

main {
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 15px);
  min-width: 0 !important;
  max-width: 1440px;
}
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: #d5d5d5;
}

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;
}

.shuv-container {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-offset);
}
.shuv-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;
}

.shuv-main-search {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.shuv-main-search__input {
  background: rgba(var(--bg-a), 0.06);
  font-size: 16px;
  padding: 16px 44px 14px 30px;
  border: 2px solid transparent;
  border-radius: 12px;
  width: 100%;
  height: 48px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: normal;
  color: rgba(var(--cl-a), 1);
}
.shuv-main-search__input::-webkit-input-placeholder {
  color: rgba(var(--cl-a), 0.6);
}
.shuv-main-search__input::-moz-placeholder {
  color: rgba(var(--cl-a), 0.6);
}
.shuv-main-search__input:-ms-input-placeholder {
  color: rgba(var(--cl-a), 0.6);
}
.shuv-main-search__input::-ms-input-placeholder {
  color: rgba(var(--cl-a), 0.6);
}
.shuv-main-search__input::placeholder {
  color: rgba(var(--cl-a), 0.6);
}
.shuv-main-search__input:focus {
  border-color: rgba(var(--cl-e), 1);
}
.shuv-main-search__button {
  position: absolute;
  left: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.shuv-main-search__button:hover {
  -webkit-filter: brightness(10);
  filter: brightness(10);
}

.shuv-casino-slider .splide__arrows, .shuv-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%);
}
.shuv-casino-slider .splide__arrow, .shuv-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;
}
.shuv-casino-slider .splide__arrow svg, .shuv-jackpot-slider .splide__arrow svg {
  display: none;
}
.shuv-casino-slider .splide__arrow::before, .shuv-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");
}
.shuv-casino-slider .splide__arrow--prev::before, .shuv-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);
}
.shuv-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 8px;
}
.shuv-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);
}
.shuv-timer .shuv-icon-timer {
  margin-top: -3px;
}
.shuv-timer__text {
  color: rgba(var(--cl-a), 1);
  font-size: 16px;
  line-height: normal;
  font-family: var(--font-family);
}

.shuv-main-title {
  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;
}

.shuv-main-link {
  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;
}
.shuv-main-link:hover {
  opacity: 0.8;
}

.shuv-main-subtitle {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 100%;
  color: rgba(var(--cl-g), 1);
  font-size: clamp(16px, 1.4388vw, 20px);
}

.shuv-text-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;
}
.shuv-text-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;
  position: relative;
  grid-gap: 5px;
  color: rgba(var(--cl-c), 1);
}
.shuv-text-list__item::before {
  content: "";
  left: -12px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  width: 6px;
  height: 6px;
  background-color: rgba(var(--bg-j), 1);
}
.shuv-text-list--mode {
  padding-left: 11px;
}

.shuv-main-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: 5px;
  counter-reset: li;
}
.shuv-main-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;
  position: relative;
  padding-left: 20px;
  grid-gap: 10px;
}
.shuv-main-list__item::before {
  position: absolute;
  left: 0;
  top: -3px;
  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]) {
  width: 100% !important;
  border-collapse: collapse;
}

table:not([class]) tbody tr:nth-child(even) td {
  background-color: rgba(var(--bg-a), 0.05);
}

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-a), 0.1);
  border: solid 1px rgba(var(--bg-a), 0.3);
}

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 rgba(var(--bg-a), 0.3);
}

@media (max-width: 576px){
  .table-responsive{
    overflow:auto;
    width: calc(100% + (var(--container-offset) * 2));
    margin-left: calc(var(--container-offset) * -1);
    padding: 0 var(--container-offset);
  }
  
  table:not([class]){
      min-width: 450px;
  }
  
  table:not([class]) td p{
      min-width: 125px;
  }
}

.shuv-icon-logo {
  background-image: url(../img/sprite/logo.svg);
  width: 175px;
  height: 56px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media (max-width: 767px) {
  .shuv-icon-logo {
    width: clamp(115px, 22.786vw, 175px);
  }
}
.shuv-icon-game {
  background-image: url(../img/sprite/777.svg);
  width: 31px;
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-man {
  background-image: url(../img/sprite/man.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
}
.shuv-icon-bag {
  background-image: url(../img/sprite/bag.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
}
.shuv-icon-darts {
  background-image: url(../img/sprite/darts.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
}
.shuv-icon-reward {
  background-image: url(../img/sprite/reward.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
}
.shuv-icon-provider {
  background-image: url(../img/sprite/icon9.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-search {
  background-image: url(../img/sprite/search.svg);
  width: 15px;
  height: 15px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-info {
  background-image: url(../img/sprite/info.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  display: block;
  z-index: 6;
}
.shuv-icon-like {
  background-image: url(../img/sprite/like.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  display: block;
  z-index: 6;
}
.shuv-icon-acc {
  width: clamp(18px, 1.7266vw, 24px);
  height: clamp(18px, 1.7266vw, 24px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shuv-icon-acc::before, .shuv-icon-acc::after {
  content: "";
  width: 5px;
  height: 100%;
  background: rgba(var(--cl-d), 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;
}
.shuv-icon-acc::before {
  -webkit-transform: rotateZ(90deg);
  -ms-transform: rotate(90deg);
  transform: rotateZ(90deg);
}
.shuv-icon-think {
  background-image: url(../img/sprite/icon-thinking.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  display: block;
  z-index: 6;
}
.shuv-icon-news {
  background-image: url(../img/template/icon-news.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  display: block;
  z-index: 6;
}
.shuv-icon-age {
  background-image: url(../img/sprite/18.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  display: block;
  z-index: 6;
}
.shuv-icon-btc {
  background-image: url(../img/sprite/btc.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
  z-index: 6;
}
.shuv-icon-trx {
  background-image: url(../img/sprite/trx.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
  z-index: 6;
}
.shuv-icon-eth {
  background-image: url(../img/sprite/eth.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
  z-index: 6;
}
.shuv-icon-ltc {
  background-image: url(../img/sprite/ltc.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
  z-index: 6;
}
.shuv-icon-up {
  background-image: url(../img/sprite/up.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
  z-index: 6;
}
.shuv-icon-slot {
  background-image: url(../img/sprite/icon1.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-ball {
  background-image: url(../img/sprite/ball.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-live {
  background-image: url(../img/sprite/live.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-star {
  background-image: url(../img/sprite/star.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-vip {
  background-image: url(../img/sprite/vip.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-crown {
  background-image: url(../img/sprite/crown.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-timer {
  background-image: url(../img/sprite/timer.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.shuv-icon-case {
  background-image: url(../img/sprite/case.svg);
  width: 18px;
  height: 18px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.shuv-icon-cp {
  background-image: url(../img/sprite/cp.svg);
  width: 26px;
  height: 26px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.shuv-icon-user {
  background-image: url(../img/sprite/user.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-cupwhite {
  background-image: url(../img/sprite/cup2.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-riobet {
  background-image: url(../img/sprite/riobet.svg);
  width: 66px;
  height: 22px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-cancel {
  background-image: url(../img/sprite/cancel.svg);
  width: 16px;
  height: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-gold {
  background-image: url(../img/sprite/gold.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-arrowgold {
  background-image: url(../img/sprite/arrowgold.svg);
  width: 48px;
  height: 25px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-arrow {
  background-image: url(../img/sprite/arrow-b.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 22px;
  height: 12px;
  display: block;
}
.shuv-icon-woman {
  background-image: url(../img/sprite/icon6.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-tournament {
  background-image: url(../img/sprite/icon7.svg);
  width: 24px;
  height: 22px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-bonus {
  background-image: url(../img/sprite/icon8.svg);
  width: 17px;
  height: 22px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.shuv-icon-clock {
  background-image: url(../img/sprite/icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 76px;
  height: 96px;
  display: block;
}
.shuv-icon-warn {
  background-image: url(../img/sprite/warn.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  display: block;
}
.shuv-icon-more {
  background-image: url(../img/sprite/more.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 34px;
  height: 34px;
  display: block;
}
.shuv-icon-rio {
  background-image: url(../img/sprite/rio.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 26px;
  height: 26px;
  display: block;
}
.shuv-icon-coin {
  background-image: url(../img/sprite/icon2.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 78px;
  height: 96px;
  display: block;
}
.shuv-icon-gift {
  background-image: url(../img/sprite/icon3.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 85px;
  height: 96px;
  display: block;
}
.shuv-icon-slots {
  background-image: url(../img/sprite/icon4.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 95px;
  height: 96px;
  display: block;
}
.shuv-icon-money {
  background-image: url(../img/sprite/icon5.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 82px;
  height: 96px;
  display: block;
}
.shuv-icon-tour {
  background-image: url(../img/sprite/tour.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
}
.shuv-icon-fav {
  background-image: url(../img/sprite/like2.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
  z-index: 6;
}
.shuv-icon-evo {
  background-image: url(../img/sprite/evo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 179px;
  height: 35px;
  display: block;
  z-index: 6;
}
.shuv-icon-lucky {
  background-image: url(../img/sprite/lucky.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 104px;
  height: 58px;
  display: block;
  z-index: 6;
}
.shuv-icon-auth {
  background-image: url(../img/sprite/auth.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: 75px;
  display: block;
  z-index: 6;
}
.shuv-icon-ezugi {
  background-image: url(../img/sprite/ezugi.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 110px;
  height: 57px;
  display: block;
  z-index: 6;
}
.shuv-icon-pragmatic {
  background-image: url(../img/sprite/prag.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 158px;
  height: 73px;
  display: block;
  z-index: 6;
}
.shuv-icon-play {
  border-radius: 50%;
  width: 103px;
  height: 103px;
  display: block;
  background: rgba(var(--bg-c), 1);
  position: relative;
}
.shuv-icon-play::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 30%;
  width: 50%;
  height: 50%;
  background-image: url(../img/sprite/play.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.shuv-icon-micro {
  background-image: url(../img/sprite/micro.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 117px;
  height: 27px;
  display: block;
}
.shuv-icon-amatic {
  background-image: url(../img/sprite/amatic.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 117px;
  height: 34px;
  display: block;
}
.shuv-icon-netent {
  background-image: url(../img/sprite/netent.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 99px;
  height: 36px;
  display: block;
}
.shuv-icon-bet {
  background-image: url(../img/sprite/bet.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 91px;
  height: 30px;
  display: block;
}
.shuv-icon-evolution {
  background-image: url(../img/sprite/evo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 110px;
  height: 21px;
  display: block;
}
.shuv-icon-habanero {
  background-image: url(../img/sprite/habanero.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 126px;
  height: 25px;
  display: block;
}
.shuv-icon-isoft {
  background-image: url(../img/sprite/isoft.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 101px;
  height: 20px;
  display: block;
}
.shuv-icon-gameart {
  background-image: url(../img/sprite/gameart.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: 20px;
  display: block;
}
.shuv-icon-evoplay {
  background-image: url(../img/sprite/evoplay.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 117px;
  height: 20px;
  display: block;
}
.shuv-icon-ygg {
  background-image: url(../img/sprite/ygg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 127px;
  height: 30px;
  display: block;
}
.shuv-icon-endorphin {
  background-image: url(../img/sprite/endorphin.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 71px;
  height: 32px;
  display: block;
}
.shuv-icon-ezug {
  background-image: url(../img/sprite/ezugi.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 67px;
  height: 35px;
  display: block;
}
.shuv-icon-playson {
  background-image: url(../img/sprite/playson.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 23px;
  display: block;
}
.shuv-icon-streak {
  background-image: url(../img/sprite/lucky.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 64px;
  height: 36px;
  display: block;
}
.shuv-icon-prag {
  background-image: url(../img/sprite/prag.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 96px;
  height: 45px;
  display: block;
}
.shuv-icon-quick {
  background-image: url(../img/sprite/quick.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 67px;
  height: 47px;
  display: block;
}
.shuv-icon-amusnet {
  background-image: url(../img/sprite/amusnet.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 96px;
  height: 20px;
  display: block;
}
.shuv-icon-tom {
  background-image: url(../img/sprite/tom.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 121px;
  height: 36px;
  display: block;
}
.shuv-icon-playngo {
  background-image: url(../img/sprite/playngo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 92px;
  height: 25px;
  display: block;
}
.shuv-icon-tiger {
  background-image: url(../img/sprite/tiger.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 79px;
  height: 39px;
  display: block;
}
.shuv-icon-apollo {
  background-image: url(../img/sprite/apollo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 122px;
  height: 32px;
  display: block;
}
.shuv-icon-agaming {
  background-image: url(../img/sprite/agaming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 46px;
  display: block;
}
.shuv-icon-btg {
  background-image: url(../img/sprite/btg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 102px;
  height: 37px;
  display: block;
}
.shuv-icon-booming {
  background-image: url(../img/sprite/booming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 94px;
  height: 31px;
  display: block;
}
.shuv-icon-oaks {
  background-image: url(../img/sprite/oaks.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 124px;
  height: 22px;
  display: block;
}
.shuv-icon-edict {
  background-image: url(../img/sprite/edict.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 96px;
  height: 28px;
  display: block;
}
.shuv-icon-elk {
  background-image: url(../img/sprite/elk.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 88px;
  height: 35px;
  display: block;
}
.shuv-icon-high {
  background-image: url(../img/sprite/highgames.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 115px;
  height: 23px;
  display: block;
}
.shuv-icon-nolimit {
  background-image: url(../img/sprite/nolimit.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 106px;
  height: 27px;
  display: block;
}
.shuv-icon-onegaming {
  background-image: url(../img/sprite/onex.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 88px;
  height: 32px;
  display: block;
}
.shuv-icon-patagonia {
  background-image: url(../img/sprite/patagonia.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 104px;
  height: 26px;
  display: block;
}
.shuv-icon-pg {
  background-image: url(../img/sprite/pg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 95px;
  height: 26px;
  display: block;
}
.shuv-icon-platinus {
  background-image: url(../img/sprite/platipus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 97px;
  height: 35px;
  display: block;
}
.shuv-icon-playtech {
  background-image: url(../img/sprite/playtech.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 108px;
  height: 24px;
  display: block;
}
.shuv-icon-push {
  background-image: url(../img/sprite/push.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 85px;
  height: 41px;
  display: block;
}
.shuv-icon-relax {
  background-image: url(../img/sprite/relax.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 99px;
  height: 30px;
  display: block;
}
.shuv-icon-spinomenal {
  background-image: url(../img/sprite/spinomena.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 122px;
  height: 30px;
  display: block;
}
.shuv-icon-stake {
  background-image: url(../img/sprite/stake.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 102px;
  height: 28px;
  display: block;
}
.shuv-icon-thunderkick {
  background-image: url(../img/sprite/thunderkick.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 31px;
  display: block;
}
.shuv-icon-casino {
  background-image: url(../img/sprite/casino.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 84px;
  height: 46px;
  display: block;
}
.shuv-icon-wazdan {
  background-image: url(../img/sprite/wazdan.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 75px;
  height: 32px;
  display: block;
}
.shuv-icon-mascot {
  background-image: url(../img/sprite/mascot.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 76px;
  height: 31px;
  display: block;
}
.shuv-icon-bf {
  background-image: url(../img/sprite/bf.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 57px;
  height: 41px;
  display: block;
}
.shuv-icon-belatra {
  background-image: url(../img/sprite/belatra.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 88px;
  height: 31px;
  display: block;
}
.shuv-icon-bgaming {
  background-image: url(../img/sprite/bgaming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 21px;
  display: block;
}
.shuv-icon-genii {
  background-image: url(../img/sprite/genii.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 90px;
  height: 36px;
  display: block;
}
.shuv-icon-fugaso {
  background-image: url(../img/sprite/fucaso.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 121px;
  height: 24px;
  display: block;
}
.shuv-icon-leander {
  background-image: url(../img/sprite/leander.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 108px;
  height: 34px;
  display: block;
}
.shuv-icon-pariplay {
  background-image: url(../img/sprite/pari.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 26px;
  display: block;
}
.shuv-icon-spade {
  background-image: url(../img/sprite/spade.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 48px;
  display: block;
}
.shuv-icon-real {
  background-image: url(../img/sprite/real.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 31px;
  display: block;
}
.shuv-icon-vivo {
  background-image: url(../img/sprite/vivo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 78px;
  height: 33px;
  display: block;
}
.shuv-icon-cool {
  background-image: url(../img/sprite/coll.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 38px;
  display: block;
}
.shuv-icon-ctgaming {
  background-image: url(../img/sprite/ctgaming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 116px;
  height: 25px;
  display: block;
}
.shuv-icon-gamzix {
  background-image: url(../img/sprite/gamzix.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 31px;
  display: block;
}
.shuv-icon-kagaming {
  background-image: url(../img/sprite/kagaming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 115px;
  height: 38px;
  display: block;
}
.shuv-icon-kalamba {
  background-image: url(../img/sprite/kalamba.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 111px;
  height: 24px;
  display: block;
}
.shuv-icon-revolver {
  background-image: url(../img/sprite/revolver.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 108px;
  height: 30px;
  display: block;
}
.shuv-icon-smartsoft {
  background-image: url(../img/sprite/smart.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 107px;
  height: 41px;
  display: block;
}
.shuv-icon-spinmatic {
  background-image: url(../img/sprite/spinmatic.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 116px;
  height: 24px;
  display: block;
}
.shuv-icon-wm {
  background-image: url(../img/sprite/wm.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 87px;
  height: 38px;
  display: block;
}
.shuv-icon-spribe {
  background-image: url(../img/sprite/spribe.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 71px;
  height: 29px;
  display: block;
}
.shuv-icon-onlyplay {
  background-image: url(../img/sprite/onlyplay.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 125px;
  height: 25px;
  display: block;
}
.shuv-icon-novo {
  background-image: url(../img/sprite/novomatic.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 111px;
  height: 16px;
  display: block;
}
.shuv-icon-eurasian {
  background-image: url(../img/sprite/eurasian.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 102px;
  height: 27px;
  display: block;
}
.shuv-icon-upgaming {
  background-image: url(../img/sprite/upgaming.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 116px;
  height: 31px;
  display: block;
}
.shuv-icon-twain {
  background-image: url(../img/sprite/twin.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 135px;
  height: 18px;
  display: block;
}
.shuv-icon-hacksaw {
  background-image: url(../img/sprite/hacksaw.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 93px;
  height: 25px;
  display: block;
}
.shuv-icon-years {
  background-image: url(../img/sprite/years.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  display: block;
}

.shuv-green-button {
  font-family: var(--font-family);
  padding: 12px 20px;
  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;
  color: rgba(var(--cl-a), 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: clamp(14px, 1.1511vw, 16px);
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(var(--bg-c), 1);
  border-radius: 12px;
  height: 48px;
}
.shuv-green-button:hover {
  background-color: rgba(var(--bg-d), 1);
}

.shuv-grey-button {
  font-family: var(--font-family);
  padding: 12px 20px;
  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;
  color: rgba(var(--cl-a), 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: clamp(14px, 1.1511vw, 16px);
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(var(--bg-a), 0.2);
  border-radius: 12px;
  height: 48px;
}
.shuv-grey-button:hover {
  background-color: rgba(var(--bg-a), 0.32);
}

.shuv-provider-button {
  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;
  background: rgba(var(--bg-a), 0.06);
  font-size: 16px;
  padding: 10px;
  border: 2px solid transparent;
  border-radius: 12px;
  width: 100%;
  height: 48px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: normal;
  color: rgba(var(--cl-a), 0.6);
}
.shuv-provider-button:focus {
  border-color: rgba(var(--cl-e), 1);
}
.shuv-provider-button:hover {
  border-color: rgba(var(--cl-e), 1);
}

.shuv-red-button {
  font-family: var(--font-family);
  padding: 12px 20px;
  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;
  color: rgba(var(--cl-a), 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: clamp(14px, 1.1511vw, 16px);
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(var(--bg-e), 1);
  border-radius: 12px;
  height: 48px;
}
.shuv-red-button:hover {
  background-color: rgba(var(--bg-f), 1);
}

.shuv-up-btn {
  background-color: rgba(255, 255, 255, 0.16);
  color: rgba(var(--cl-a), 1);
  position: fixed;
  z-index: 20;
  padding: 8px;
  position: fixed;
  left: 3%;
  bottom: 6%;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.shuv-up-btn i {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.shuv-up-btn:hover i {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.shuv-up-btn.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .shuv-up-btn {
    bottom: 80px;
  }
}
@media (max-width: 576px) {
  .shuv-up-btn {
    bottom: 2%;
  }
}

.shuv-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%;
}
.shuv-yellow-button:hover {
  background-color: rgba(var(--bg-f), 1);
}

.shuv-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%;
}
.shuv-main-button:hover {
  background-color: rgba(var(--bg-k), 1);
}

.shuv-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%;
}
.shuv-info-button::before, .shuv-info-button:after {
  position: absolute;
  content: "";
}
.shuv-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;
}
.shuv-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;
}
.shuv-info-button:hover {
  -webkit-transform: scale(1.06) translateZ(0) perspective(1px);
  transform: scale(1.06) translateZ(0) perspective(1px);
}
.shuv-info-button:hover:after {
  opacity: 0.7;
}
.shuv-info-button--orange {
  background: linear-gradient(107deg, rgb(250, 176, 34) 0%, rgb(248, 111, 0) 100%);
}
.shuv-info-button--red {
  background: linear-gradient(107deg, rgb(255, 72, 94) 0%, rgb(255, 0, 18) 100%);
}
.shuv-info-button--green {
  background: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
}
.shuv-info-button--pink {
  background: linear-gradient(107deg, rgb(248, 0, 157) 0%, rgb(249, 0, 125) 100%);
}
.shuv-info-button--blue {
  background: linear-gradient(107deg, rgb(57, 155, 255) 0%, rgb(0, 78, 255) 100%);
}
.shuv-info-button--mode {
  background: linear-gradient(107deg, rgb(64, 0, 209) 0%, rgb(0, 137, 135) 100%);
}

.shuv-download-button,
.shuv-mobile-button,
.shuv-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;
}
.shuv-download-button:hover,
.shuv-mobile-button:hover,
.shuv-lang-button:hover {
  opacity: 0.8;
}

.shuv-topline-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);
  position: relative;
  z-index: 1;
}
.shuv-topline-nav::before, .shuv-topline-nav:after {
  position: absolute;
  content: "";
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 1px;
  pointer-events: none;
  z-index: -1;
}
.shuv-topline-nav::before {
  border-bottom: 2px solid rgba(255, 255, 255, 0.04);
  bottom: 0;
}
.shuv-topline-nav:after {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  top: 0;
}
.shuv-topline-nav__link {
  height: 58px;
  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);
}
.shuv-topline-nav__link i {
  -webkit-filter: brightness(2);
  filter: brightness(2);
}
.shuv-topline-nav__link:hover {
  color: rgba(var(--cl-d), 1);
}
.shuv-topline-nav__link:hover i {
  -webkit-filter: none;
  filter: none;
}

.shuv-hero-slider {
  width: 100%;
}
.shuv-hero-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%);
}
.shuv-hero-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%);
}
.shuv-hero-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) {
  .shuv-hero-slider__box {
    padding: 16px 0 16px clamp(16px, 3.5971vw, 50px);
  }
}
.shuv-hero-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);
}
.shuv-hero-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;
}
.shuv-hero-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;
}
.shuv-hero-slider__picture {
  height: 112%;
  position: absolute;
  right: 5%;
  bottom: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.shuv-hero-slider__picture img {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .shuv-hero-slider__picture {
    right: 2%;
  }
}
.shuv-hero-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);
}
.shuv-hero-slider__slide {
  width: 100%;
  position: relative;
  margin-top: 6%;
  height: clamp(150px, 24.194vw, 300px);
}
.shuv-hero-slider__slide:hover .shuv-hero-slider__image {
  -webkit-transform: scale(1.1) translateX(2%);
  -ms-transform: scale(1.1) translateX(2%);
  transform: scale(1.1) translateX(2%);
}
.shuv-hero-slider__slide:hover .shuv-hero-slider__picture {
  -webkit-transform: translate(-3%, 0);
  -ms-transform: translate(-3%, 0);
  transform: translate(-3%, 0);
  height: 114%;
}
@media (max-width: 576px) {
  .shuv-hero-slider__slide {
    margin-top: 4%;
  }
}
.shuv-hero-slider .shuv-api {
  width: 150px;
  position: absolute;
  left: clamp(16px, 3.5971vw, 50px);
  bottom: 8%;
}
.shuv-hero-slider .splide__pagination {
  display: none;
}
.shuv-hero-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%;
}
.shuv-hero-slider .splide__arrow svg {
  width: 30px;
  height: 30px;
  fill: rgba(var(--cl-a), 0.8);
}
@media (max-width: 767px) {
  .shuv-hero-slider .splide__arrow {
    display: none;
  }
}
.shuv-hero-slider .splide__arrow--prev {
  left: 8px;
}
.shuv-hero-slider .splide__arrow--next {
  right: 8px;
}
.shuv-hero-slider .splide__arrow:hover svg {
  fill: rgba(var(--cl-a), 1);
}

.shuv-block-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 12px;
}
.shuv-block-top__title {
  font-size: clamp(18px, 1.7266vw, 24px);
  line-height: normal;
  font-weight: 400;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.shuv-block-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-d), 1);
  text-decoration: underline;
  padding: 0 3px;
  margin: 0px -3px 0px -3px;
}
.shuv-block-top__link:hover {
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}

.shuv-content-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;
}
.shuv-content-box p {
  color: rgba(var(--cl-a), 1);
  font-size: clamp(14px, 1.1511vw, 16px);
  line-height: 110%;
  font-family: var(--font-family);
  font-weight: 400;
}
.shuv-content-box p b {
  font-weight: 700;
}
.shuv-content-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;
}
.shuv-content-box__image--mode {
  padding: clamp(5px, 1.1511vw, 16px) 0 clamp(16px, 2.3022vw, 32px);
}
.shuv-content-box--mode {
  grid-gap: 0;
}
.shuv-content-box--mode .shuv-main-subtitle {
  padding: 8px 0;
}

.shuv-faq-acc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 2px solid rgba(var(--bg-a), 0.04);
  width: 100%;
  border-radius: 16px;
  position: relative;
  background: rgba(var(--bg-a), 0.04);
  z-index: 1;
  overflow: hidden;
}
.shuv-faq-acc::before {
  border-radius: inherit;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}
.shuv-faq-acc__item:last-of-type .shuv-faq-acc__button {
  border: none;
}
.shuv-faq-acc__button {
  width: 100%;
  padding: 16px 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 solid rgba(var(--bg-a), 0.04);
}
.shuv-faq-acc__button.active {
  background: rgba(var(--bg-a), 0.03);
}
.shuv-faq-acc__button.active .shuv-faq-acc__icon:after {
  -webkit-transform: rotateZ(90deg);
  -ms-transform: rotate(90deg);
  transform: rotateZ(90deg);
}
.shuv-faq-acc__button.active .shuv-faq-acc__icon:before, .shuv-faq-acc__button.active .shuv-faq-acc__icon::after {
  background: rgba(var(--cl-d), 1);
}
.shuv-faq-acc__button.active .shuv-faq-acc__title {
  color: rgba(var(--cl-d), 1);
}
.shuv-faq-acc__button:hover {
  opacity: 1 !important;
}
.shuv-faq-acc__button:hover .shuv-faq-acc__title {
  color: rgba(var(--cl-d), 1);
}
.shuv-faq-acc__icon {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.shuv-faq-acc__content {
  width: 100%;
}
.shuv-faq-acc__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 rgba(var(--bg-a), 0.04);
}
.shuv-faq-acc__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;
}
.shuv-faq-acc p {
  font-family: var(--font-family);
  font-size: 14px;
}
.shuv-icon-bean2{
       background-image: url(../img/sprite/coin2.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 110px;
    height: 94px;
    display: block;
}
.shuv-icon-bean{
     background-image: url(../img/sprite/coin.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 147px;
    height: 131px;
    display: block;
}
.shuv-info-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;
  gap: 6px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  height: 275px;
  border: solid 1px rgba(var(--bg-a), 0.04);
  background: rgba(var(--bg-a), 0.04);
  position: relative;
  z-index: 1;
}
.shuv-info-block::before {
  border-radius: inherit;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}
.shuv-info-block__item:last-child .shuv-info-block__row::before {
  content: none;
}
.shuv-info-block__row {
  padding: 13px 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0 15px;
  position: relative;
  z-index: 1;
}
.shuv-info-block__row::before {
  content: "";
  background: rgba(var(--bg-a), 0.04);
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
}
.shuv-info-block__icon {
  grid-row: 1/3;
}
.shuv-info-block__text {
  font-family: var(--font-family);
  line-height: normal;
  color: rgba(var(--cl-c), 1);
  font-size: 13px;
}
.shuv-info-block__value {
  font-size: clamp(14px, 1.295vw, 18px);
  font-family: var(--font-family);
  line-height: normal;
  color: rgba(var(--cl-a), 1);
}

.shuv-slots-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%;
}
.shuv-slots-card:hover .shuv-slots-card__wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shuv-slots-card:hover .shuv-icon-play {
  -webkit-animation: 0.8s scales ease-out infinite;
  animation: 0.8s scales ease-out infinite;
}
.shuv-slots-card__image {
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shuv-slots-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.shuv-slots-card .shuv-icon-like:hover {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.shuv-slots-card .shuv-icon-info {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.shuv-slots-card .shuv-icon-info:hover {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.shuv-slots-card .shuv-icon-play {
  position: absolute;
  inset: 0;
  margin: auto;
}
.shuv-slots-card__link {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.shuv-slots-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;
}
.shuv-slots-card__text {
  font-size: 16px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  line-height: normal;
}

.shuv-casino-card {
  border-radius: 16px;
}
.shuv-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;
}
.shuv-casino-card .shuv-game-card__image {
  border-radius: 16px;
}
.shuv-casino-card .shuv-game-card__wrapp {
  border-radius: 16px;
}
.shuv-casino-card .shuv-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;
}
.shuv-casino-card .shuv-icon-like:hover {
  -webkit-filter: initial;
  filter: initial;
}
.shuv-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);
  }
}
.shuv-slot-card {
   width: 100%;
  align-items: center;
  display: flex;
  max-width: 1180px;
  flex-direction: column;
  grid-gap: clamp(10px, 3.2823vw, 30px);
  border-radius: 16px;
}

.shuv-slot-card__image{
      display: flex;
    justify-content: center;
    position: relative;
    height: clamp(300px, 55.0847vw, 650px);
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.shuv-slot-card__image:before{
        position: absolute;
      content: "";
      z-index: 2;
      background-color: rgba(23, 21, 21, 0.3);
      inset: 0;
      border-radius: 5px;
      pointer-events: none;
}

.shuv-slot-card img{
      transition: all 0.4s;
      width: 100%;
      height: 100%;
      filter: blur(4px);
}

.shuv-slot-card button, .shuv-slot-card a{
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 220px;
    color: rgba(var(--cl-a), 1);
}

.shuv-slot-card:hover{
    img {
      transform: scale(1.03);
    }
}

.shuv-how-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;
  position: relative;
  z-index: 1;
  background: linear-gradient(332deg, #003400 8.19%, #185718 97.56%);
  padding: 12px 24px 24px 24px;
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .shuv-how-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 576px) {
  .shuv-how-card {
    padding: 16px 8px 16px 8px;
  }
}
.shuv-how-card::before {
  content: counter(li, decimal-leading-zero);
  display: block;
  position: absolute;
  right: 8%;
  top: 5%;
  opacity: 0.3;
  z-index: 1;
  color: rgba(var(--cl-a), 1);
  font-size: 32px;
  font-weight: 600;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .shuv-how-card::before {
    font-size: 18px;
    right: auto;
    left: 90px;
  }
}
@media (max-width: 576px) {
  .shuv-how-card::before {
    left: 70px;
  }
}
.shuv-how-card__title {
  color: rgba(var(--cl-a), 1);
  line-height: 120%;
  max-width: 160px;
  font-family: var(--font-family);
  text-align: center;
  font-size: 16px;
  min-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .shuv-how-card__title {
    margin: 0 12px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: start;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .shuv-how-card__title {
    font-size: 14px;
    margin: 0 0 0 8px;
  }
}
.shuv-how-card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  max-height: 200px;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.shuv-how-card__icon img, .shuv-how-card__icon picture {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
}
@media (max-width: 1024px) {
  .shuv-how-card__icon {
    width: auto;
    max-width: 72px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media (max-width: 576px) {
  .shuv-how-card__icon {
    max-width: 65px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.shuv-how-card .shuv-green-button {
  max-width: 180px;
  width: 100%;
}
@media (max-width: 767px) {
  .shuv-how-card .shuv-green-button {
    max-width: 112px;
  }
}
.shuv-how-card--disabled {
  background: linear-gradient(332deg, rgba(0, 52, 0, 0.5) 8.19%, rgba(24, 87, 24, 0.5) 97.56%);
}
.shuv-how-card--disabled * {
  opacity: 0.5;
}
.shuv-how-card--disabled .shuv-green-button {
  cursor: auto;
}

.shuv-news-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;
  overflow: hidden;
  height: 100%;
  padding: 0 0 12px;
}
.shuv-news-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: rgba(var(--bg-c), 1);
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
}
.shuv-news-card__title {
  font-size: 16px;
  color: rgba(var(--cl-a), 1);
  font-weight: 400;
}
.shuv-news-card__date {
  font-size: 16px;
  color: rgba(var(--cl-a), 1);
  font-weight: 400;
}
.shuv-news-card__image {
  width: 100%;
  height: 140px;
  margin-bottom: 12px;
}
.shuv-news-card__image img, .shuv-news-card__image picture {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .shuv-news-card__image {
    height: clamp(140px, 23.438vw, 180px);
  }
}
.shuv-news-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding: 0 12px;
}
.shuv-news-card__bottom p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-size: 16px;
}

.shuv-footer-nav {
  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;
  position: relative;
  z-index: 1;
}
.shuv-footer-nav::before {
  content: attr(data-title);
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: rgba(var(--cl-f), 1);
  display: block;
}
@media (min-width: 768px) {
  .shuv-footer-nav::before {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
  }
}

@media (max-width: 576px) {
  .shuv-footer-nav::before {
    font-size: 14px;
    line-height: 18px;
  }
}
.shuv-footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: grid;
    grid-template-columns: repeat(2, auto);
}
@media (max-width: 576px) {
  .shuv-footer-nav__list {
    gap: 8px;
  }
}
.shuv-footer-nav__item {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}
.shuv-footer-nav__item * {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  display: block;
  color: rgba(var(--cl-a), 1);
  text-decoration: none;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: start;
}
@media (max-width: 576px) {
  .shuv-footer-nav__item * {
    font-size: 14px;
    line-height: 18px;
  }
}
.shuv-footer-nav__item a, .shuv-footer-nav__item button {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.shuv-footer-nav__item a:hover, .shuv-footer-nav__item button:hover {
  color: rgba(var(--cl-d), 1);
}

.shuv-footer-coins {
  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;
  gap: 20px;
  max-width: 385px;
}
.shuv-footer-coins__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.shuv-footer-coins__value {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: rgba(var(--cl-a), 1);
}
@media (max-width: 576px) {
  .shuv-footer-coins {
    -ms-flex-item-align: center;
    align-self: center;
  }
}

.shuv-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%);
}
.shuv-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) {
  .shuv-jackpot-card {
    min-height: 260px;
  }
}
.shuv-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;
}
.shuv-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;
}
.shuv-jackpot-card__image img, .shuv-jackpot-card__image picture {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.shuv-jackpot-card .shuv-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;
}
.shuv-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%);
}
.shuv-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%);
}
.shuv-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%);
}
.shuv-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%);
}
.shuv-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%);
}
.shuv-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%);
}
.shuv-jackpot-card:hover::before {
  height: 50%;
}
.shuv-jackpot-card:hover .shuv-jackpot-card__image {
  height: 80% !important;
}
.shuv-jackpot-card:hover .shuv-jackpot-card__value {
  bottom: 20%;
}
@media (max-width: 767px) {
  .shuv-jackpot-card:hover .shuv-jackpot-card__value {
    bottom: 25%;
  }
}
.shuv-jackpot-card:hover .shuv-api {
  bottom: 3%;
}

.shuv-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;
}
.shuv-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;
}
.shuv-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);
}
.shuv-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);
}
.shuv-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);
}
.shuv-winner-card__title {
  font-family: var(--font-family);
  font-size: clamp(16px, 1.4388vw, 20px);
  line-height: 120%;
  font-weight: 900;
}
.shuv-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;
}
.shuv-winner-card .shuv-icon-play {
  width: clamp(60px, 5.7554vw, 80px);
  height: clamp(60px, 5.7554vw, 80px);
}

.shuv-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;
}
.shuv-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%;
}
.shuv-main-user__image img {
  border-radius: 50%;
}
.shuv-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;
}
.shuv-main-user__image:hover::before {
  border-color: var(--br-d);
}
.shuv-main-user__name {
  font-family: var(--font-family);
  color: rgba(var(--cl-c), 1);
  font-size: 12px;
  line-height: 100%;
}
.shuv-main-user__total {
  color: rgba(var(--cl-a), 1);
  font-size: 16px;
  line-height: 100%;
  font-family: var(--font-family);
}

.shuv-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;
}
.shuv-bonus-card:before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid var(--br-e);
  border-radius: 9px;
}
.shuv-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%;
}
.shuv-bonus-card__image {
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.shuv-bonus-card__image img, .shuv-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);
}
.shuv-bonus-card__text {
  color: rgba(var(--cl-a), 1);
  font-size: 14px;
  font-family: var(--font-family);
  line-height: 100%;
}
.shuv-bonus-card__value {
  color: rgba(var(--cl-a), 1);
  font-size: clamp(18px, 1.4388vw, 20px);
  font-family: var(--font-family);
  line-height: 100%;
}
.shuv-bonus-card__info {
  position: absolute;
  right: 10px;
  top: 10px;
}
.shuv-bonus-card__deskr {
  color: rgba(var(--cl-g), 1);
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 100%;
  padding-bottom: 10px;
}

.shuv-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;
}
.shuv-loyalty-card:before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid var(--br-f);
  border-radius: 9px;
}
.shuv-loyalty-card__image {
  padding: clamp(10px, 1.7266vw, 24px) 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.shuv-loyalty-card__image img, .shuv-loyalty-card__image picture {
  width: 100%;
  height: clamp(100px, 9.0647vw, 126px);
  -o-object-fit: contain;
  object-fit: contain;
}
.shuv-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;
}
.shuv-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;
}
.shuv-loyalty-card__item--mode {
  opacity: 0.5;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.shuv-loyalty-card__title {
  color: rgba(var(--cl-a), 1);
  font-size: 14px;
  font-family: var(--font-family);
  line-height: 100%;
}
.shuv-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%;
}
.shuv-loyalty-card__info {
  position: absolute;
  right: 10px;
  top: 10px;
}

.shuv-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) {
  .shuv-tournament-card {
    height: clamp(120px, 44vw, 286px);
  }
}
.shuv-tournament-card:hover .shuv-tournament-card__name {
  -webkit-transform: scale(1.1) translateX(2%);
  -ms-transform: scale(1.1) translateX(2%);
  transform: scale(1.1) translateX(2%);
}
.shuv-tournament-card:hover .shuv-tournament-card__image {
  -webkit-transform: translate(-3%, 0);
  -ms-transform: translate(-3%, 0);
  transform: translate(-3%, 0);
  height: 124%;
}
.shuv-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%);
}
.shuv-tournament-card--green {
  background: radial-gradient(60% 360% at 70%, #e6ff4e 6.79%, #128100 55.3%, #00260f 100%);
}
.shuv-tournament-card--mode {
  background: radial-gradient(60% 360% at 70%, #0ff 0%, #003bae 63.61%, #001344 100%);
}
.shuv-tournament-card--disabled {
  background: radial-gradient(60% 360% at 70%, #84ffff 0%, #003db5 40.84%, #00113c 100%);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.shuv-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) {
  .shuv-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;
  }
}
.shuv-tournament-card__text {
  font-size: clamp(12px, 1.5511vw, 16px);
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  line-height: normal;
}
.shuv-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;
}
.shuv-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) {
  .shuv-tournament-card__user {
    font-size: 12px;
  }
  .shuv-tournament-card__user i {
    width: 16px;
    height: 16px;
  }
}
.shuv-tournament-card__name {
  position: relative;
  padding: 11% 0 0 4%;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 4;
}
.shuv-tournament-card__name img {
  width: clamp(172px, 26vw, 400px);
}
@media (max-width: 767px) {
  .shuv-tournament-card__name {
    padding-top: 14%;
  }
  .shuv-tournament-card__name img {
    width: clamp(172px, 54vw, 360px);
  }
}
.shuv-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);
}
.shuv-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) {
  .shuv-tournament-card__info-text {
    font-size: 12px;
  }
  .shuv-tournament-card__info-text i {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 576px) {
  .shuv-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;
  }
}
.shuv-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;
}
.shuv-tournament-card__image img {
  border-radius: 0 0 14px 0;
  width: 100%;
  height: 100%;
}
.shuv-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;
}
.shuv-tournament-card__provider {
  width: clamp(80px, 7.1942vw, 100px);
  height: clamp(25px, 2.518vw, 35px);
}
.shuv-tournament-card__provider i {
  width: 100%;
  height: 100%;
}
.shuv-tournament-card__provider:nth-child(2n) {
  margin-left: -10px;
}

.shuv-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;
}
.shuv-player-card:hover .shuv-player-card__image img {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 125%;
}
.shuv-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;
}
.shuv-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;
}
.shuv-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%);
}
.shuv-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;
}
.shuv-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%);
}
.shuv-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%);
}
.shuv-player-card__image--mode {
  background: radial-gradient(60% 360% at 70%, #BC93FF 0%, #44007A 51.56%, #150026 100%);
}
.shuv-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;
}
.shuv-player-card__date {
  line-height: normal;
  font-size: 16px;
  font-family: var(--font-family);
  color: rgba(var(--cl-h), 1);
}
.shuv-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);
}
.shuv-player-card__money i {
  width: 18px;
  height: 18px;
}

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

.shuv-how-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  counter-reset: li;
}
@media (max-width: 1024px) {
  .shuv-how-list {
    grid-template-columns: 100%;
  }
}
.shuv-how-list__item {
  counter-increment: li;
  position: relative;
  z-index: 2;
}
.shuv-how-list__item:not(:last-child)::before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  right: -4px;
  z-index: 5;
  display: block;
  top: 50%;
  background: rgba(14, 33, 22, 0.7);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.4' d='M1.25 1.5 4.75 5l-3.5 3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 30% 50%;
  background-position: center;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .shuv-how-list__item:not(:last-child)::before {
    right: 50%;
    -webkit-transform: translate(50%, -50%) rotateZ(90deg);
    -ms-transform: translate(50%, -50%) rotate(90deg);
    transform: translate(50%, -50%) rotateZ(90deg);
    top: calc(100% - 4px);
  }
}

.shuv-news-list {
  display: grid;
  grid-gap: 16px;
}
@media (min-width: 1240px) {
  .shuv-news-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1239px) and (min-width: 768px) {
  .shuv-news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .shuv-news-list {
    grid-template-columns: 100%;
  }
}
@media (max-width: 1239px) and (min-width: 768px) {
  .shuv-news-list__item:last-of-type {
    grid-column: 1/-1;
  }
  .shuv-news-list__item:last-of-type .shuv-news-card__image {
    height: clamp(140px, 23.438vw, 240px);
  }
}

.shuv-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;
}
.shuv-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;
}
.shuv-partners-list__item:hover {
  -webkit-filter: initial;
  filter: initial;
}
.shuv-partners-list__icon {
  height: 56px;
}

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

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

.shuv-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);
}

.shuv-topline {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 10px 0 0;
  background: rgba(14, 33, 22, 0.7);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
@media (max-width: 1024px) {
  .shuv-topline {
    padding-bottom: 10px;
  }
}
.shuv-topline__inner {
  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;
  gap: 15px;
  height: 56px;
  position: relative;
  z-index: 1;
}
.shuv-topline__inner::before {
  position: absolute;
  content: "";
  z-index: -1;
  background: rgba(14, 33, 22, 0.25);
  top: -10px;
  bottom: -10px;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .shuv-topline__inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 10px;
  }
}
@media (max-width: 576px) {
  .shuv-topline__inner {
    display: contents;
  }
}
.shuv-topline__box {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px 15px;
  grid-template-columns: 100%;
}
@media (max-width: 1024px) {
  .shuv-topline__box {
    grid-template-columns: auto 1fr;
  }
  .shuv-topline__box .shuv-topline-nav {
    display: none;
  }
}
@media (max-width: 576px) {
  .shuv-topline__box {
    grid-gap: 25px 15px;
    grid-template-columns: 1fr;
  }
}
.shuv-topline__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 12px;
}
.shuv-topline__btns a,
.shuv-topline__btns button {
  min-width: 136px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 576px) {
  .shuv-topline__btns a,
  .shuv-topline__btns button {
    width: 100%;
    height: 35px;
  }
}
@media (max-width: 1024px) {
  .shuv-topline__btns {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 576px) {
  .shuv-topline .shuv-burger {
    margin-top: 10px;
  }
}
.shuv-topline .shuv-topline__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 (min-width: 1024px) {
  .shuv-topline .shuv-topline__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) {
  .shuv-topline .shuv-topline__logo {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 17px;
  }
}
.shuv-topline.sticky, .shuv-topline.active {
  -webkit-box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.259);
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.259);
}
.shuv-topline.active {
  background: rgb(14, 33, 22);
}

.shuv-hero-section {
  position: relative;
  padding-bottom: clamp(16px, 1.6667vw, 24px);
}
.shuv-hero-section__box {
  display: grid;
  grid-template-columns: calc(100% - 310px - 16px) 310px;
  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) {
  .shuv-hero-section__box {
    grid-template-columns: 100%;
  }
  .shuv-hero-section__box .shuv-players-block {
    display: none;
  }
}

.shuv-slots-section {
  padding-bottom: clamp(40px, 4.8921vw, 68px);
  position: relative;
}
.shuv-slots-section__box {
  overflow: hidden;
  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);
  background: rgba(var(--bg-a), 0.04);
  position: relative;
  padding: clamp(16px, 1.7266vw, 24px);
  z-index: 1;
  border-radius: 16px;
  border: 1px solid rgba(var(--cl-a), 0.04);
}
.shuv-slots-section__top {
  display: grid;
  grid-template-columns: 1fr repeat(2, minmax(auto, 280px));
  grid-gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: clamp(16px, 1.7266vw, 24px);
  position: relative;
  z-index: 1;
}
.shuv-slots-section__top::before {
  position: absolute;
  content: "";
  z-index: -1;
  border: 1px solid rgba(var(--cl-a), 0.04);
  height: 1px;
  bottom: 0;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .shuv-slots-section__top {
    grid-template-columns: repeat(2, 1fr);
  }
  .shuv-slots-section__top .shuv-main-search {
    grid-column: 1/-1;
  }
}
@media (max-width: 576px) {
  .shuv-slots-section__top {
    grid-template-columns: 100%;
  }
}

.shuv-content-section {
  padding-bottom: clamp(20px, 2.8777vw, 40px);
  overflow: hidden;
}
.shuv-content-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);
  overflow: hidden;
  background: rgba(var(--bg-a), 0.04);
  position: relative;
  padding: clamp(16px, 1.7266vw, 24px);
  z-index: 1;
  border-radius: 16px;
  border: 1px solid rgba(var(--cl-a), 0.04);
}
.shuv-content-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;
}
.shuv-content-section__inner--mode {
  grid-gap: 16px;
}
.shuv-content-section__inner--mode .shuv-main-box {
  grid-gap: 12px;
}
.shuv-content-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;
}
.shuv-content-section h1 {
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(22px, 2.3022vw, 32px);
  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;
}
.shuv-content-section h1 i {
  position: relative;
  top: -2px;
}
.shuv-content-section h2,
.shuv-content-section h3,
.shuv-content-section h4 {
  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;
}
.shuv-content-section h2 i,
.shuv-content-section h3 i,
.shuv-content-section h4 i {
  position: relative;
  top: -2px;
}
.shuv-content-section 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);
}
.shuv-content-section h6 {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 100%;
  color: rgba(var(--cl-g), 1);
  font-size: clamp(16px, 1.295vw, 18px);
}
.shuv-content-section ul:not([class]) {
  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;
}
.shuv-content-section ul:not([class]) 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: rgba(var(--cl-a), 1);
}
.shuv-content-section ul:not([class]) li::before {
  content: "";
  left: -12px;
  border-radius: 50%;
  position: absolute;
  top: 6.5px;
  width: 6px;
  height: 6px;
  background-color: rgba(var(--cl-d), 1);
}
.shuv-content-section ol:not([class]) {
  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;
  padding-left: 12px;
}
.shuv-content-section ol:not([class]) 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;
  padding-left: 20px;
  grid-gap: 10px;
  color: rgba(var(--cl-a), 1);
  
}
.shuv-content-section ol:not([class]) li::before {
  position: absolute;
  left: 0;
  top: calc(clamp(0px, 0.144vw,2px) * -1);
  content: counters(li, "") ".";
  counter-increment: li;
  font-size: clamp(16px, 1.223vw, 17px);
  font-family: var(--font-family2);
  font-weight: 700;
  color: rgba(var(--cl-d), 1);
}
.shuv-content-section img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
}
.shuv-content-section button {
  color: rgba(var(--cl-d), 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;
}
.shuv-content-section button:hover {
  opacity: 0.8;
}

.shuv-mobile {
  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;
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
  padding: 0 16px 16px;
  background: rgb(14, 33, 22);
}
.shuv-mobile__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%;
}
.shuv-mobile .shuv-topline-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;
  padding: 24px 0;
}
.shuv-mobile .shuv-topline-nav::before {
  content: none;
}
.shuv-mobile .shuv-topline-nav__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.shuv-mobile .shuv-topline-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;
}
.shuv-mobile.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.shuv-slot-section {
  padding: clamp(25px, 4.3165vw, 60px) 0;
}
.shuv-slot-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.shuv-how-section {
  padding-bottom: clamp(25px, 2.518vw, 35px);
  position: relative;
}
.shuv-how-section__box {
  overflow: hidden;
  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);
  background: rgba(var(--bg-a), 0.04);
  position: relative;
  padding: clamp(16px, 1.7266vw, 24px);
  z-index: 1;
  border-radius: 16px;
  border: 1px solid rgba(var(--cl-a), 0.04);
}
.shuv-how-section .shuv-block-top {
  padding-bottom: clamp(16px, 1.7266vw, 24px);
  position: relative;
  z-index: 1;
}
.shuv-how-section .shuv-block-top::before {
  position: absolute;
  content: "";
  z-index: -1;
  border: 1px solid rgba(var(--cl-a), 0.04);
  height: 1px;
  bottom: 0;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

.shuv-news-section {
  padding-bottom: clamp(40px, 4.8921vw, 68px);
  position: relative;
}
.shuv-news-section__box {
  overflow: hidden;
  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);
  background: rgba(var(--bg-a), 0.04);
  position: relative;
  padding: clamp(16px, 1.7266vw, 24px);
  z-index: 1;
  border-radius: 16px;
  border: 1px solid rgba(var(--cl-a), 0.04);
}
.shuv-news-section .shuv-block-top {
  padding-bottom: clamp(16px, 1.7266vw, 24px);
  position: relative;
  z-index: 1;
}
.shuv-news-section .shuv-block-top::before {
  position: absolute;
  content: "";
  z-index: -1;
  border: 1px solid rgba(var(--cl-a), 0.04);
  height: 1px;
  bottom: 0;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

.shuv-news-section {
  padding-bottom: clamp(40px, 4.8921vw, 68px);
  position: relative;
}
.shuv-news-section__box {
  overflow: hidden;
  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);
  background: rgba(var(--bg-a), 0.04);
  position: relative;
  padding: clamp(16px, 1.7266vw, 24px);
  z-index: 1;
  border-radius: 16px;
  border: 1px solid rgba(var(--cl-a), 0.04);
}
.shuv-news-section .shuv-block-top {
  padding-bottom: clamp(16px, 1.7266vw, 24px);
  position: relative;
  z-index: 1;
}
.shuv-news-section .shuv-block-top::before {
  position: absolute;
  content: "";
  z-index: -1;
  border: 1px solid rgba(var(--cl-a), 0.04);
  height: 1px;
  bottom: 0;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}

footer {
  overflow: hidden;
}

.shuv-footer {
  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;
}
@media (max-width: 767px) {
  .shuv-footer {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.shuv-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
}
@media (max-width: 1024px) {
  .shuv-footer__inner {
    grid-column: 1/-1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
    display:contents;
  }
}
@media (max-width: 576px) {
  .shuv-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .shuv-footer__inner .shuv-topline__logo {
    -ms-flex-item-align: center;
    align-self: center;
  }
}
.shuv-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 25px;
  position: relative;
  z-index: 1;
  padding: 24px 0;
  width: 100%;
}
.shuv-footer__top::before {
  position: absolute;
  content: "";
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  top: 0;
  background: rgba(14, 33, 22, 0.7);
  z-index: -1;
}
@media (max-width: 1024px) {
  .shuv-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}
.shuv-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
}
.shuv-footer__deskr {
  font-size: 12px;
  margin: 17px 12px;
  text-align: left;
  color: rgba(var(--cl-a), 1);
}
.shuv-footer__deskr button {
  color: rgba(var(--cl-d), 1);
}

.shuv-partners-section {
  padding-bottom: clamp(10px, 2.1583vw, 30px);
}
.shuv-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;
}

.shuv-bonuses-section {
  padding-bottom: clamp(30px, 2.8777vw, 40px);
}
.shuv-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);
}
.shuv-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;
}

.shuv-tournaments-section {
  padding: 10px 0 24px;
}
.shuv-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);
}
.shuv-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);
}
.shuv-footer__inner .shuv-topline__logo{
      width: fit-content;
}
.shuv-news-card__bottom{
    margin-bottom: 12px;
    flex-grow: 1;
}
.shuv-news-card button{
    margin: 0 12px;
    font-size: 16px;
    color: rgba(var(--cl-a),1.0);
    transition: all .3s;
    text-decoration: underline;
}
.shuv-news-card button:hover{
    color: rgba(var(--cl-d),1.0);
}
.shuv-faq-acc__button{
    cursor:pointer;
}
.shuv-info-block__item.logo{
    position: absolute;
    right: -23px;
    top: calc(clamp(35px, 4.4604vw, 62px) * -1);
    pointer-events: none;
}
.shuv-info-block__item.logo--mode{
    position: absolute;
    pointer-events: none;
    right: calc(clamp(35px, 3.741vw, 52px) * -1);
    top: 0px;
    z-index: -2;
}
.shuv-info-block {
    overflow:initial;
}
.shuv-icon-bean2{
    width: clamp(80px, 7.9137vw, 110px);
    height: clamp(64px, 6.7626vw, 94px);
}
.shuv-icon-bean{
    width: clamp(97px, 10.5755vw, 147px);
    height: clamp(81px, 9.4245vw, 131px);
}
.shuv-hero-section{
    overflow: hidden;
}

.shuv-slot-section h1{
           color: rgba(var(--cl-h), 1);
        font-family: var(--font-family2);
        font-weight: 800;
        font-size: clamp(20px, 2.6667vw, 32px);
        font-style: normal;
        line-height: 130%;
        text-transform: uppercase;
        background: linear-gradient(180deg, #3BA745 52.08%, #010d02 100%);
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent;
}

.shuv-slot-section__box{
        flex-direction: column;
        align-items: center;
        gap: 20px;
        justify-content: center;
}
@media (max-width: 1024px) {
  .shuv-footer-nav {
    justify-self: center;
    grid-column: 1 / -1;
  }
  .shuv-footer-nav__list{
      min-width: 250px;
      grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
    .shuv-footer__inner{
        display: flex;
    }
    .shuv-footer-nav__item a{
         text-align:center;
    }
    .shuv-footer-nav:before{
        text-align:center;
    }
}

.shuv-error-section {
  margin: clamp(40px, 7.4627vw, 100px) 0 clamp(80px, 7.4627vw, 100px);
}

.shuv-error-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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.shuv-error-section h1 {
  font-weight: 900;
  font-size: clamp(100px, 11.9403vw, 160px);
  color: rgba(var(--bg-c), 1);
}

.shuv-error-section p {
    text-align: center;
  margin: clamp(1px, 0.7463vw, 10px) 0 clamp(25px, 2.9851vw, 40px);
  font-size: clamp(26px, 2.9851vw, 40px);
}

.shuv-error-section .shuv-green-button{
    min-width: 160px;
}

.shuv-how-section + .shuv-partners-section{
    padding-top: calc(clamp(40px, 4.8921vw, 68px) - clamp(25px, 2.518vw, 35px));
}

.shuv-icon-rio{
    flex-shrink: 0;
}

.mce-toc {
    position: relative;
    z-index: 1;
    padding: 15px 15px 20px 10px;
    width: 100%;
    background: rgba(var(--bg-a), 0.06);
    border:1px solid rgba(var(--cl-a), 0.04);
    border-radius: 12px;
}

.mce-toc ul {
    gap: 7px !important;
}

.mce-toc ul > li::before {
    content: '' !important;
    top: 6px !important;
}

.mce-toc ul > li > a {
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
    text-underline-offset: 3px;
    color: rgba(var(--cl-a), 1);
}

.mce-toc ul > li > a:hover {
    color: rgba(var(--cl-d), 1);
    text-decoration-color: inherit;
}

.mce-toc ul > li > ul:not([class]) {
    display: none;
}

.mce-toc ul > li > ul > li > a {
    font-weight: 400;
}

.mce-toc::before {
    content: 'Содержание';
    display: block;
    font-size: clamp(16px, 1.525vw, 18px);
    font-weight: 600;
    text-align: start;
    color: rgba(var(--cl-d), 1);
    order: -1;
    margin-bottom: 15px;
    padding-left: 13px;
}

@media (max-width: 768px) {
    .mce-toc {
        padding-left: 0px;
    }
}

.shuv-topline-nav__link .shuv-icon-bonus{
   margin-top: -5px;
}

.shuv-content-section h1 i{
    top: 0;    
}


ul:not([class]) li ul:not([class]) li{
    padding-left: 6px;
}

ul:not([class]) li ul:not([class]) li:before{
   border-radius: 0;
    width: 9px;
    top: 8px;
    height: 2px;
}

ul:not([class]) li:has(ul:not([class])):before {
    content: none;
}

ul:not([class]) ul:not([class]) li{
    padding-left: 6px;
}

ul:not([class]) ul:not([class]) li:before{
    border-radius: 0;
    width: 9px;
    top: 8px;
    height: 2px;
}

ul:not([class]) ul:not([class]):before {
    content: none;
}


ol:not([class]) ol:not([class]){
 padding-left: 34px;
}

ol:not([class]) ol:not([class]) li{
 padding-left: 0;
}

ol:not([class]) ol:not([class]) li:before{
  content: '';
  left: -12px;
  border-radius: 50%;
  top: 6.5px;
  width: 6px;
  height: 6px;
  background-color: rgba(var(--cl-d), 1);
}


ol:not([class]) li ol:not([class]){
  padding-left: 14px;
}

ol:not([class]) li ol:not([class]) li{
  padding-left: 0;
}

ol:not([class]) li ol:not([class]) li:before{
  content: '';
  left: -12px;
  border-radius: 50%;
  top: 6.5px;
  width: 6px;
  height: 6px;
  background-color: rgba(var(--cl-d), 1);
}
/*# sourceMappingURL=style.css.map */