@font-face {
  font-style: normal;
  font-weight: 900;
  font-family: "Muller";
  font-display: swap;
  src: url("../fonts/Roboto-Black.woff2") format("woff2"), url("../fonts/Roboto-Black.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "Muller";
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 300;
  font-family: "Muller";
  font-display: swap;
  src: url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Muller";
  font-display: swap;
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "Muller";
  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: 600;
  font-family: "OlympDisplay";
  font-display: swap;
  src: url("../fonts/OlympDisplay-Semibold.woff2") format("woff2"), url("../fonts/OlympDisplay-Semibold.woff") format("woff");
}
/* stylelint-disable */
.zllb-burger {
  background: rgba(var(--bg-c), 0.9);
  border: 0;
  width: 50px;
  height: 50px;
  margin: -5px;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  scale: 0.6;
  border-radius: 8px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.zllb-burger:hover {
  scale: 0.65;
}

.zllb-burger__line {
  position: relative;
  width: 32px;
  border: 0;
}

.zllb-burger__line,
.zllb-burger__line::before,
.zllb-burger__line::after {
  display: block;
  border-radius: 2px;
  height: 2px;
  background: #f9f9f9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.zllb-burger__line::before,
.zllb-burger__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.zllb-burger__line::before {
  top: -8px;
}

.zllb-burger__line::after {
  top: 8px;
}

.zllb-burger.active .zllb-burger__line {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  background: transparent;
}

.zllb-burger.active .zllb-burger__line::before {
  -webkit-transform: rotate(-45deg) translate(-6px, 5px);
  -ms-transform: rotate(-45deg) translate(-6px, 5px);
  transform: rotate(-45deg) translate(-6px, 5px);
}

.zllb-burger.active .zllb-burger__line::after {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
  -ms-transform: rotate(45deg) translate(-5px, -6px);
  transform: rotate(45deg) translate(-5px, -6px);
}

.zllb-overlay {
  position: fixed;
  height: calc(100% - var(--header-height));
  right: 0;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  z-index: 29;
  padding: 20px 20px;
  overflow-y: scroll;
  background: rgba(var(--bg-b), 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  pointer-events: none;
}
.zllb-overlay::-webkit-scrollbar {
  display: none;
}
.zllb-overlay.active {
  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: rgb(1 25 50);
  --body-font-size: 16px;
  --content-width: 1350px;
  --container-offset: clamp(16px, 1.4815vw, 20px);
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --header-height: 63px;
  --scrollbar-thumb: #17298b;
  --scrollbar-track: #0b154b;
  --scrollbar-track-hover: #0b154b;
  --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: 255, 186, 0;
  --cl-d: 53, 161, 221;
  --cl-e: 81, 198, 40;
  --cl-f: 250, 77, 0;
  --cl-g: 153, 202, 255;
  --cl-h: 0, 35, 71;
  --cl-j: 17, 131, 211;
  --cl-k: 135, 188, 245;
  --cl-l: 162, 206, 255;
  --cl-m: 255, 234, 0;
  --bg-a: 255, 255, 255;
  --bg-b: 0, 0, 0;
  --bg-c: 66, 140, 220;
  --bg-d: 0, 50, 102;
  --bg-e: 17, 91, 169;
  --bg-f: 10, 81, 158;
  --bg-g: 48, 113, 184;
  --bg-h: 7, 51, 97;
  --br-a: #09437f;
  --br-b: #428cdc;
  --br-c: #2e6fb7;
  --gr-a: linear-gradient(to top, #4288dc, #4aa1ff 97% 100%);
  --gr-b: linear-gradient(to top, #fa0100, #fa5e00);
  --gr-c: linear-gradient(to bottom,#428cdc,#509aea 97% 100%);
  --gr-d: linear-gradient(to top, #3071b8, #09519e 49%, #3071b8);
  --gr-e: linear-gradient(180deg, #ff689e, #c107df);
  --gr-f: linear-gradient(to right, #09519e, #2e6fb7, #09519e);
}
@media (max-width: 1024px) {
  :root {
    --header-height: 56px;
  }
}
@media (max-width: 475px) {
  :root {
    --header-height: 89px;
  }
}

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

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-a), 1);
  -webkit-text-size-adjust: 100%;
  background: var(--body-bg);
}
body.mode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100dvh;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(var(--bg-f), 1)), color-stop(50%, rgb(1 25 50)));
  background-image: linear-gradient(to bottom, rgba(var(--bg-f), 1) 10%, rgb(1 25 50) 50%);
}
body.mode main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  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%;
}

main {
  margin: 0 auto;
  min-width: 0 !important;
}
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: clamp(14px, 1.1852vw, 16px);
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 130%;
  color: rgba(var(--cl-a), 0.7);
}

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

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

.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;
  border-radius: 2px;
  -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;
}

h1 {
  font-family: var(--font-family);
  font-size: clamp(24px, 2.6667vw, 36px);
  line-height: 125%;
  font-weight: 600;
  color: rgba(var(--cl-a), 1);
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

h2 {
  font-family: var(--font-family);
  font-size: clamp(20px, 2.2222vw, 30px);
  line-height: 125%;
  font-weight: 600;
  color: rgba(var(--cl-a), 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

h3,
h4 {
  font-family: var(--font-family);
  font-size: clamp(18px, 1.9259vw, 26px);
  font-weight: 600;
  text-align: left;
}

h5,
h6 {
  font-family: var(--font-family);
  font-size: clamp(16px, 1.4815vw, 20px);
  font-weight: 600;
  text-align: left;
  color: rgba(var(--cl-a), 1);
}

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: 10px;
  counter-reset: li;
}
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), 0.7);
}
ol:not([class]) li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: counters(li, "") ".";
  counter-increment: li;
  font-size: clamp(15px, 1.4167vw, 17px);
  font-family: var(--font-family);
  font-weight: 700;
  color: rgba(var(--cl-c), 1);
}

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;
  grid-gap: 10px;
  position: relative;
}
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;
  padding-left: 12px;
  color: rgba(var(--cl-a), 0.7);
}
ul:not([class]) li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(var(--cl-c), 1);
}

table:not([class]) {
  width: 100%;
  border-collapse: collapse;
}
table:not([class]) tbody tr:nth-child(even) td {
  background-color: rgba(var(--bg-c), 0.1);
}
table:not([class]) tbody tr:first-child td {
  padding: 15px 5px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.3333vw, 16px);
  font-weight: 700;
  background-color: rgba(var(--bg-c), 0.4);
  border: solid 1px rgba(var(--cl-a), 0.2);
}
table:not([class]) th {
  padding: 15px 5px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.3333vw, 16px);
  font-weight: 700;
  background-color: rgba(var(--bg-c), 0.4);
  border: solid 1px rgba(var(--cl-a), 0.2);
}
@media (max-width: 415px) {
  table:not([class]) th {
    padding: 10px 3px;
    font-size: 13px;
  }
}
table:not([class]) td {
  text-align: center;
  padding: 10px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  border: solid 1px rgba(var(--cl-a), 0.2);
}
@media (max-width: 415px) {
  table:not([class]) td {
    padding: 5px;
    font-size: 13px;
  }
}

.zllb-age {
  border: 2px solid var(--br-a);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgba(var(--cl-j), 1);
  font-weight: 600;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family);
  font-style: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  direction: ltr;
}

@media (max-width: 576px) {
  .table-responsive {
    overflow: auto;
    width: calc(100% + clamp(20px, 2.34vw, 24px) * 2);
    margin-left: calc(clamp(20px, 2.34vw, 24px) * -1);
    padding: 0 clamp(20px, 2.34vw, 24px);
  }
  table:not([class]) {
    min-width: 450px;
  }
  table:not([class]) td p {
    min-width: 125px;
  }
}
@-webkit-keyframes online-rotation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes online-rotation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.zllb-icon-logo {
  height: 40px;
  width: 235px;
  display: block;
  background-image: url(../img/sprite/logo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-slots {
  height: 44px;
  width: 50px;
  display: block;
  background-image: url(../img/sprite/slots.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-crown {
  height: 44px;
  width: 50px;
  display: block;
  background-image: url(../img/sprite/crown.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-actions {
  height: 48px;
  width: 54px;
  display: block;
  background-image: url(../img/sprite/actions.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  bottom: -3px;
}
.zllb-icon-cup {
  height: 24px;
  width: 24px;
  display: block;
  background-image: url(../img/sprite/cup.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  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;
  border-radius: 100%;
  background-color: rgba(var(--cl-d), 1);
}
.zllb-icon-arrows {
  height: 14px;
  width: 20px;
  display: block;
  background-image: url(../img/sprite/arrows.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-new {
  height: 24px;
  width: 24px;
  display: block;
  background-image: url(../img/sprite/new.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  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;
  border-radius: 100%;
  background-color: rgba(var(--cl-e), 1);
}
.zllb-icon-flash {
  height: 24px;
  width: 24px;
  display: block;
  background-image: url(../img/sprite/flash.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  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;
  border-radius: 100%;
  background-color: rgba(var(--cl-f), 1);
}
.zllb-icon-rm {
  height: 24px;
  width: 24px;
  display: block;
  background-image: url(../img/sprite/rm.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  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;
  border-radius: 100%;
  background-color: rgba(var(--cl-c), 1);
}
.zllb-icon-btc {
  height: 27px;
  width: 120px;
  margin: 5px;
  display: block;
  background-image: url(../img/sprite/btc.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-eco {
  height: 27px;
  width: 120px;
  margin: 5px;
  display: block;
  background-image: url(../img/sprite/eco.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-web {
  height: 27px;
  width: 120px;
  margin: 5px;
  display: block;
  background-image: url(../img/sprite/web.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-mae {
  height: 27px;
  width: 60px;
  margin: 5px;
  display: block;
  background-image: url(../img/sprite/mae.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-visa {
  height: 27px;
  width: 120px;
  margin: 5px;
  display: block;
  background-image: url(../img/sprite/visa.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-check {
  height: 24px;
  width: 24px;
  display: block;
  background-image: url(../img/sprite/check.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-ms {
  height: 27px;
  width: 34px;
  margin: 5px;
  display: block;
  background-image: url(../img/sprite/ms.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-play {
  height: 50px;
  width: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  margin: auto;
  background-image: url(../img/sprite/play.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.zllb-icon-plus {
  position: absolute;
  right: 20px;
  top: -20px;
  -webkit-box-shadow: 0 11px 27px rgba(250, 65, 0, 0.631372549);
  box-shadow: 0 11px 27px rgba(250, 65, 0, 0.631372549);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #fa0000;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-image: url(../img/sprite/plus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
.zllb-icon-brow {
  background-image: url(../img/sprite/brow.svg);
  position: absolute;
  height: 60px;
  bottom: calc(100% - 1px);
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 45% auto;
  pointer-events: none;
}

.zllb-main-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 41px;
  padding: 10px clamp(10px, 1.39vw, 20px);
  background: var(--gr-a);
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
  color: rgba(var(--cl-a), 1);
  text-decoration: none;
  line-height: 1.2;
  font-size: clamp(14px, 1.25vw, 18px);
}
.zllb-main-btn:hover {
  background: var(--gr-c);
}
.zllb-main-btn--orange {
  background: var(--gr-b);
  -webkit-box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
  box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
}
.zllb-main-btn--orange:hover {
  background: var(--gr-b);
  -webkit-box-shadow: 0 20px 30px rgba(250, 65, 0, 0.4);
  box-shadow: 0 20px 30px rgba(250, 65, 0, 0.4);
}

.zllb-white-btn {
  font-family: var(--font-family2);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9019607843);
  height: 32px;
  padding: 5px 10px;
  background-color: rgba(var(--bg-a), 0.2);
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-size: 12px;
  line-height: 10px;
}
.zllb-white-btn::before {
  background-color: rgba(var(--bg-a), 0.14);
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.zllb-white-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

.zllb-main-top {
  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: 8px;
  width: 100%;
}
.zllb-main-top__title {
  font-family: var(--font-family);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: gba(var(--cl-a), 1);
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  text-transform: uppercase;
}
.zllb-main-top__title i {
  max-width: 54px;
  max-height: 54px;
}
.zllb-main-top__link {
  font-family: var(--font-family);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(var(--cl-a), 1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  align-items: center;
  height: 40px;
  margin-left: 10px;
  border-radius: 20px;
  padding: 5px 10px 5px 15px;
  gap: 10px;
  background-color: rgba(var(--bg-d), 1);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.zllb-main-top__link:hover {
  background-color: rgba(var(--bg-e), 1);
}

.zllb-main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: clamp(10px, 1.3889vw, 15px);
  height: 100%;
}
@media (min-width: 1024px) {
  .zllb-main-nav {
    padding: 5px;
  }
}
.zllb-main-nav__list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.zllb-main-nav__item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.zllb-main-nav__link {
  position: relative;
  z-index: 3;
  text-decoration: none;
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6px clamp(10px, 1.39vw, 20px);
  white-space: nowrap;
}
.zllb-main-nav__link:hover {
  color: rgba(var(--cl-c), 1);
}
@media (max-width: 1239px) {
  .zllb-main-nav__link {
    padding: 6px 10px;
  }
}

.zllb-games-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: clamp(16px, 1.4493vw, 20px);
}
@media (max-width: 576px) {
  .zllb-games-list {
    grid-template-columns: repeat(auto-fill, minmax(183px, 1fr));
  }
}

.zllb-provider-card {
  overflow: hidden;
  padding: 20px;
  position: relative;
  border-radius: 15px;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: rgba(var(--bg-h), 1);
}
.zllb-provider-card__btn {
  position: absolute;
  z-index: 3;
  inset: 0;
}
.zllb-provider-card__image {
  margin-top: auto;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.zllb-provider-card__image img {
  width: 100%;
  height: auto;
}
.zllb-provider-card:hover {
  background: rgba(var(--bg-e), 1);
}

.zllb-promo-card {
  width: 100%;
  border-radius: 15px;
  border: 10px solid rgba(var(--bg-d), 1);
  overflow: hidden;
  -webkit-transition: border 0.4s;
  transition: border 0.4s;
  position: relative;
  z-index: 1;
  max-height: 233px;
}
.zllb-promo-card__btn {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.zllb-promo-card__image {
  width: 100%;
  height: 100%;
}
.zllb-promo-card__image img {
  width: 100%;
  height: 100%;
}
.zllb-promo-card:hover {
  border-color: rgba(var(--bg-e), 1);
}

.zllb-event-card {
  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;
  z-index: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 15px;
}
.zllb-event-card__btn {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.zllb-event-card__box {
  position: relative;
  z-index: 2;
  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-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  background-color: rgba(var(--bg-f), 1);
}
.zllb-event-card__label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 8px;
  border-radius: 15px;
  width: 25%;
  font-size: 16px;
  line-height: 1;
  color: rgba(var(--cl-a), 1);
  background: var(--gr-e);
  -webkit-box-shadow: 0 4px 4px rgba(215, 74, 206, 0.2);
  box-shadow: 0 4px 4px rgba(215, 74, 206, 0.2);
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  height: 16px;
}
.zllb-event-card__wrapp {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin-bottom: 18px;
  padding: 8px 10px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  background-image: var(--gr-f);
}
.zllb-event-card__value {
  color: rgba(var(--cl-m), 1);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
.zllb-event-card__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgba(var(--cl-l), 1);
  text-align: center;
}
.zllb-event-card__info {
  color: rgba(var(--cl-l), 1);
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
.zllb-event-card__title {
  margin-bottom: 7px;
  margin-top: 8px;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: rgba(var(--cl-a), 1);
  text-transform: uppercase;
  text-align: center;
  height: 38px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.zllb-event-card__image {
  height: 200px;
  width: 100%;
}
.zllb-event-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.zllb-event-card:hover {
  -webkit-transform: scale(1.05, 1.045) translateZ(0);
  transform: scale(1.05, 1.045) translateZ(0);
  -webkit-box-shadow: 0 12px 28px rgba(12, 95, 184, 0.3019607843);
  box-shadow: 0 12px 28px rgba(12, 95, 184, 0.3019607843);
}
.zllb-event-card:hover .zllb-event-card__icon {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.zllb-game-card {
  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;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 3/2;
  position: relative;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 15px;
  min-height: 187px;
}
.zllb-game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: rgba(0, 50, 102, 0.8);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
  opacity: 0;
  visibility: hidden;
  border-radius: inherit;
  pointer-events: none;
}
.zllb-game-card__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
}
.zllb-game-card__icons img {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.zllb-game-card .zllb-icon-play {
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
.zllb-game-card__demo {
  opacity: 0;
  visibility: hidden;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 20px;
  padding: 3px 10px;
  color: rgba(var(--cl-h), 1);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: rgba(var(--bg-c), 1);
}
.zllb-game-card__demo:hover {
  color: rgba(var(--cl-a), 1);
  background: rgba(var(--cl-d), 1);
}
.zllb-game-card__image {
  border-radius: inherit;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  inset: 0;
  z-index: -2;
}
.zllb-game-card__image img,
.zllb-game-card__image picture {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
}
.zllb-game-card .zllb-icon-play {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.zllb-game-card .zllb-icon-play:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.zllb-game-card__provider {
  opacity: 0;
  visibility: hidden;
  text-align: center;
  margin-left: 40px;
  margin-right: 40px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: rgba(var(--cl-g), 1);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-height: 32px;
  font-size: 14px;
  line-height: 1.1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.zllb-game-card:hover .zllb-icon-play {
  opacity: 1;
  visibility: visible;
}
.zllb-game-card:hover::before {
  opacity: 1;
  visibility: visible;
}
.zllb-game-card:hover .zllb-game-card__image img,
.zllb-game-card:hover .zllb-game-card__image picture {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.zllb-game-card:hover .zllb-game-card__provider {
  opacity: 1;
  visibility: visible;
}
.zllb-game-card:hover .zllb-game-card__demo {
  opacity: 1;
  visibility: visible;
}

.zllb-main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 24px;
}
.zllb-main-box img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
}
.zllb-main-box ul:not([class]), .zllb-main-box ol:not([class]) {
  margin-left: 15px;
}
.zllb-main-box p {
  color: rgba(var(--cl-a), 0.7);
}
.zllb-main-box a, .zllb-main-box button {
  color: rgba(var(--cl-c), 1);
  text-decoration: underline;
  font-family: var(--font-family);
  font-size: clamp(14px, 1.1852vw, 16px);
  line-height: 130%;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-underline-offset: 3px;
}
.zllb-main-box a:hover, .zllb-main-box button:hover {
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}
.zllb-main-box--mode {
  grid-gap: 18px;
}

.zllb-game-slider__wrapp {
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .zllb-game-slider__wrapp {
    padding: 0 var(--container-offset) !important;
    border-radius: 0;
  }
}
.zllb-game-slider .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -20px;
  right: 120px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 2;
  gap: 10px;
}
@media (max-width: 576px) {
  .zllb-game-slider .splide__arrows {
    display: none;
  }
}
.zllb-game-slider .splide__arrow {
  position: relative;
  opacity: 1;
  top: initial;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  bottom: 0;
  left: initial;
  right: initial;
  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;
  width: 40px;
  border-radius: 50%;
  border: solid 1px #003266;
  height: 40px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
}
.zllb-game-slider .splide__arrow svg {
  width: 14px;
  fill: #fff;
}
.zllb-game-slider .splide__arrow:disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.zllb-game-slider .splide__arrow:disabled svg {
  fill: rgba(255, 255, 255, 0.2784313725);
}
.zllb-game-slider .splide__arrow:hover {
  background-color: rgba(var(--bg-e), 1);
  border-color: rgba(var(--bg-e), 1);
}
.zllb-game-slider .splide__slide {
  height: 100%;
}
.zllb-game-slider .splide__pagination {
  display: none;
}
@media (max-width: 576px) {
  .zllb-game-slider {
    width: calc(100% + var(--container-offset) * 2);
    margin-left: calc(var(--container-offset) * -1);
  }
}
.zllb-game-slider[data-promo] .zllb-game-slider__wrapp {
  border-radius: 0;
}
@media (max-width: 1024px) and (min-width: 576px) {
  .zllb-game-slider[data-promo] .zllb-game-slider__wrapp {
    border-radius: 15px;
  }
}
.zllb-game-slider[data-promo] .splide__arrows {
  right: 0;
}
@media (min-width: 1024px) {
  .zllb-game-slider[data-promo] .splide__arrows {
    display: none;
  }
}
@media (max-width: 576px) {
  .zllb-game-slider[data-promo] .splide__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: var(--container-offset);
  }
}

.zllb-hero-slider {
  width: 100%;
  overflow: hidden;
  padding-top: 10px;
}
@media (max-width: 576px) {
  .zllb-hero-slider {
    width: calc(100% + var(--container-offset) * 2);
    margin-left: calc(var(--container-offset) * -1);
    padding-top: 0;
  }
}
.zllb-hero-slider__slide {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  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;
  overflow: hidden;
  position: relative;
  height: clamp(290px, 26.087vw, 360px);
}
@media (max-width: 576px) {
  .zllb-hero-slider__slide {
    height: 300px;
    border-radius: 0;
  }
}
.zllb-hero-slider__box {
  padding-right: var(--imageWidth);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(8px, 0.8889vw, 12px);
  padding: clamp(30px, 3.6232vw, 50px) clamp(20px, 2.8986vw, 40px) clamp(25px, 2.5362vw, 35px);
  gap: 5px;
  height: 100%;
  border-radius: inherit;
}
.zllb-hero-slider__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), color-stop(50%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 576px) {
  .zllb-hero-slider__box::before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.1)), color-stop(50%, rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
  }
}
.zllb-hero-slider__box p {
  color: rgba(var(--cl-a), 0.8);
  font-size: clamp(17px, 2.029vw, 28px);
  line-height: 1.2;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.03em;
  max-width: 550px;
}
.zllb-hero-slider__box p.mode {
  font-size: clamp(16px, 1.5942vw, 22px);
}
.zllb-hero-slider__box .zllb-main-btn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(22px, 1.8841vw, 26px);
  padding: 12px 30px;
}
@media (max-width: 415px) {
  .zllb-hero-slider__box .zllb-main-btn {
    height: 50px;
  }
}
@media (max-width: 576px) {
  .zllb-hero-slider__box {
    padding: 10px var(--container-offset) 25px;
  }
}
.zllb-hero-slider__title {
  font-family: var(--font-family);
  font-size: clamp(30px, 2.7536vw, 38px);
  line-height: 125%;
  font-weight: 600;
  color: rgba(var(--cl-a), 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
    max-width: 550px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
    .zllb-hero-slider__title {
         max-width: 50%;
    }
    .zllb-hero-slider p{
        max-width: 50%;
    }
}
@media (max-width: 576px) {
  .zllb-hero-slider__title {
    max-width: 80%;
  }
}
.zllb-hero-slider .splide__pagination {
  position: static;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(6px, 0.5797vw, 8px);
}
.zllb-hero-slider .splide__pagination__page {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background: transparent;
  opacity: 1;
  border: 2px solid var(--br-b);
  border-radius: 50%;
  width: clamp(12px, 1.0145vw, 14px);
  height: clamp(12px, 1.0145vw, 14px);
  outline: none !important;
}
.zllb-hero-slider .splide__pagination__page.is-active {
  border-color: rgba(var(--cl-a), 1);
  background: rgba(var(--cl-a), 1);
}
.zllb-hero-slider__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
}
.zllb-hero-slider__image picture,
.zllb-hero-slider__image img,
.zllb-hero-slider__image video {
  border-radius: inherit;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom right;
  object-position: bottom right;
}
@media (max-width: 576px) {
  .zllb-hero-slider__image picture,
  .zllb-hero-slider__image img,
  .zllb-hero-slider__image video {
    -o-object-position: 85% 100%;
    object-position: 85% 100%;
  }
}
@media (max-width: 415px) {
  .zllb-hero-slider__image picture,
  .zllb-hero-slider__image img,
  .zllb-hero-slider__image video {
    -o-object-position: 80% 100%;
    object-position: 80% 100%;
  }
}
.zllb-hero-slider__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: none;
}
.zllb-hero-slider__bg picture,
.zllb-hero-slider__bg img,
.zllb-hero-slider__bg video {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}
.zllb-hero-slider__link {
  position: absolute;
  z-index: 8;
  inset: 0;
  display: block;
}
.zllb-hero-slider .splide__arrow {
  display: none;
}

.zllb-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.zllb-footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.zllb-footer-nav__item {
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.zllb-footer-nav__item * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-family: var(--font-family);
  font-size: 16px;
  text-transform: uppercase;
  color: #1183d3;
  text-decoration: none;
}
.zllb-footer-nav__item a,
.zllb-footer-nav__item button {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.zllb-footer-nav__item a:hover,
.zllb-footer-nav__item button:hover {
  color: rgba(var(--cl-a), 1);
}

.zllb-game-nav {
  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;
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 8px;
}
.zllb-game-nav__item {
  height: 80px;
  width: 100%;
}
.zllb-game-nav__item.mode {
  max-width: 100px;
}
.zllb-game-nav__item.mode .zllb-game-nav__btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  min-width: 95px;
  background: rgba(255, 255, 255, 0.0705882353);
}
.zllb-game-nav__item.mode .zllb-game-nav__btn i {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .zllb-game-nav__item {
    height: 60px;
  }
}
.zllb-game-nav__btn {
  width: 100%;
  height: 100%;
  gap: 5px;
  width: 100%;
  padding: 10px 4px 8px;
  color: rgba(var(--cl-a), 0.7);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  background: rgba(var(--bg-d), 1);
  border: 1px solid rgba(var(--bg-d), 1);
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  word-break: normal;
  overflow-wrap: anywhere;
  white-space: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.zllb-game-nav__btn i {
  width: 32px;
  height: 32px;
}
.zllb-game-nav__btn:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .zllb-game-nav__btn {
    min-width: 172px;
  }
}
@media (max-width: 767px) {
  .zllb-game-nav__btn {
    min-width: 90px;
  }
}
@media (max-width: 1024px) {
  .zllb-game-nav {
    overflow-x: scroll;
    width: calc(100% + var(--container-offset) * 2);
    margin-left: calc(var(--container-offset) * -1);
    padding: 0 var(--container-offset);
    -webkit-overflow-scrolling: touch;
    cursor: -webkit-grab;
    cursor: grab;
  }
  .zllb-game-nav::-webkit-scrollbar {
    display: none;
  }
}

.zllb-accordion {
  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;
}
.zllb-accordion__item {
  background: rgba(var(--bg-d), 0.6);
  border: 1px solid rgba(var(--cl-a), 0.1);
  border-radius: 12px;
}
.zllb-accordion__button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 10px;
  -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.3s;
  transition: all 0.3s;
  border-radius: 12px;
  border: none;
  text-decoration: none !important;
  padding: clamp(10px, 1.0145vw, 14px) 16px clamp(10px, 1.0145vw, 14px) clamp(16px, 1.7778vw, 24px);
}
.zllb-accordion__button.active {
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}
.zllb-accordion__button.active .zllb-accordion__icon {
  rotate: 180deg;
}
.zllb-accordion__button:hover .zllb-accordion__icon {
  -webkit-filter: brightness(1.15);
  filter: brightness(1.15);
}
.zllb-accordion__icon {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  position: relative;
  top: 0px;
  z-index: 1;
  background-color: rgba(var(--bg-d), 1);
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.zllb-accordion__icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: 2;
  border-bottom: 2px solid rgba(var(--cl-a), 1);
  border-left: 2px solid rgba(var(--cl-a), 1);
  rotate: -45deg;
  top: 8px;
  left: 10px;
}
.zllb-accordion__content {
  width: 100%;
  border-radius: 0 0 12px 12px;
}
.zllb-accordion__box {
  border-radius: inherit;
  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: 5px 36px 15px clamp(16px, 1.7778vw, 24px);
  margin-bottom: 1px;
}
.zllb-accordion__title {
  font-family: var(--font-family2);
  font-size: clamp(18px, 1.4815vw, 20px);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: start;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.4;
  color: rgba(var(--cl-a), 1);
}
.zllb-accordion p {
  font-size: clamp(14px, 1.1852vw, 16px);
  font-weight: 400;
  line-height: 1.3;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
}

.zllb-demo-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 18px;
}
.zllb-demo-card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: clamp(320px, 43.4783vw, 600px);
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}
.zllb-demo-card__image::before {
  position: absolute;
  content: "";
  z-index: 2;
  background-color: rgba(23, 21, 21, 0.35);
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
}
.zllb-demo-card__image img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(4px);
  filter: blur(4px);
}
.zllb-demo-card button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 220px;
  height: 55px;
  color: rgba(var(--cl-a), 1);
}
@media (max-width: 576px) {
  .zllb-demo-card button {
    width: 160px;
    height: 48px;
  }
}
.zllb-demo-card button.zllb-demo-card__btn {
  display: block;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.zllb-demo-card:hover img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.zllb-promo-list {
  display: grid;
  grid-auto-columns: 2fr;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.zllb-promo-list .zllb-promo-card {
  border: none;
  max-height: initial;
  height: 368px;
  background-color: rgba(var(--bg-f), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -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;
  text-decoration: none;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-shadow: 0 7px 20px rgba(12, 95, 184, 0.1019607843);
  box-shadow: 0 7px 20px rgba(12, 95, 184, 0.1019607843);
}
.zllb-promo-list .zllb-promo-card__image {
  height: 216px;
}
.zllb-promo-list .zllb-promo-card__title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  color: rgba(var(--cl-a), 1);
  margin-bottom: 4px;
}
.zllb-promo-list .zllb-promo-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;
  width: 100%;
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 25px 20px 25px 22px;
  text-align: center;
}
.zllb-promo-list .zllb-promo-card__label {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 15px;
  background-color: #002347;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 8px;
  color: rgb(92, 198, 255);
}
.zllb-promo-list .zllb-promo-card__label.violet {
  color: rgb(255, 82, 249);
}
.zllb-promo-list .zllb-promo-card__label.green {
  color: rgb(67, 210, 229);
}
.zllb-promo-list .zllb-promo-card p {
  color: rgba(var(--cl-k), 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}
.zllb-promo-list .zllb-promo-card:hover {
  -webkit-transform: scale(1.05, 1.045) translateZ(0);
  transform: scale(1.05, 1.045) translateZ(0);
  -webkit-box-shadow: 0 12px 28px rgba(12, 95, 184, 0.3019607843);
  box-shadow: 0 12px 28px rgba(12, 95, 184, 0.3019607843);
}
.zllb-promo-list .zllb-promo-card:hover .zllb-promo-card__icon {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
@media (max-width: 415px) {
  .zllb-promo-list .zllb-promo-card {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 767px) {
  .zllb-promo-list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.zllb-events-list {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
}
@media (max-width: 767px) {
  .zllb-events-list {
    grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  }
}

.zllb-timer {
  margin: 10px 0 20px;
  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;
  color: rgba(var(--cl-a), 1);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.zllb-timer__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.zllb-timer__item:not(:last-child):after {
  content: ":";
  display: block;
  height: 100%;
  margin: 0 3px;
  font-size: 12px;
}
.zllb-timer__value {
  padding: 8px 6px;
  border-radius: 3px;
  border: 2px solid var(--br-c);
  background-color: rgba(var(--bg-g), 1);
  background-image: var(--gr-d);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.zllb-timer__value::after {
  margin-left: 2px;
  content: attr(data-title);
  display: block;
}

.zllb-step {
  margin: 15px 0 15px 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.zllb-step::before, .zllb-step::after {
  content: "";
  background: rgba(var(--cl-c), 1);
  border-radius: 100%;
  width: 13px;
  height: 13px;
  left: 20px;
  position: absolute;
}
.zllb-step::before {
  top: -13px;
}
.zllb-step::after {
  bottom: -13px;
}
.zllb-step__list {
  margin: 0;
  list-style: none;
  position: relative;
  padding: 25px 0 5px;
  counter-reset: step-counter;
}
.zllb-step__list:before {
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 13px;
  background-image: radial-gradient(ellipse at center, rgba(var(--cl-c), 1) 0%, var(--body-bg) 30%, transparent 30%);
  background-size: 8px 8px;
  background-position: center;
  background-repeat: repeat-y;
  content: "";
}
.zllb-step__item {
  position: relative;
  padding-bottom: 10px;
  padding-left: 40px;
  counter-increment: step-counter;
}
.zllb-step__item b {
  color: rgba(var(--cl-a), 1);
}
.zllb-step__item:after {
  position: absolute;
  left: 22px;
  top: 6px;
  height: 9px;
  width: 9px;
  border-radius: 100%;
  content: "";
  background-color: rgba(var(--cl-c), 1);
}
.zllb-step__item:before {
  position: absolute;
  left: 0;
  top: -1.5px;
  font-size: 20px;
  font-family: var(--font-family);
  font-weight: 700;
  color: rgba(var(--cl-c), 1);
  content: counter(step-counter);
}

.zllb-info-box {
  border-radius: 15px;
  padding: 0 15px 20px;
  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;
  gap: 25px;
  background: rgba(var(--bg-h), 1);
}
.zllb-info-box__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 30px);
  margin: 0 -15px;
  padding: 15px 15px 15px;
  background: rgba(var(--bg-f), 1);
  font-size: clamp(18px, 2.037vw, 22px);
  font-weight: 700;
  color: rgba(var(--cl-a), 1);
}
.zllb-info-box__pretitle {
  font-size: clamp(16px, 1.6667vw, 18px);
  font-weight: 700;
  color: rgba(var(--cl-a), 1);
}
.zllb-info-box__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.zllb-info-box__icon {
  position: absolute;
  left: -10px;
  top: calc(clamp(4px, 0.463vw, 5px) * -1);
  -webkit-transform: translate(-100%, 10%);
  -ms-transform: translate(-100%, 10%);
  transform: translate(-100%, 10%);
}
.zllb-info-box__list {
  display: grid;
  gap: 20px clamp(40px, 6.4815vw, 70px);
}
.zllb-info-box__list p {
  color: rgba(var(--cl-a), 1);
  line-height: 135%;
}
@media (min-width: 1024px) {
  .zllb-info-box__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .zllb-info-box__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .zllb-info-box__list {
    padding-left: calc(clamp(40px, 6.4815vw, 70px) - 25px);
  }
}
@media (max-width: 767px) {
  .zllb-info-box__list {
    padding-left: calc(clamp(40px, 6.4815vw, 70px) - clamp(8px, 1.693vw, 13px));
    grid-template-columns: 100%;
  }
}

.zllb-game-section {
  position: relative;
  padding: calc(var(--header-height) + 15px) 0 30px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(var(--bg-f), 1)), to(rgb(1 25 50)));
  background-image: linear-gradient(to bottom, rgba(var(--bg-f), 1) 10%, rgb(1 25 50) 100%);
}
.zllb-game-section h1 {
  font-size: clamp(26px, 3.4074vw, 46px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: center;
  align-self: center;
  text-align: center;
}
.zllb-game-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: 15px;
}

.zllb-header {
  left: 0;
  right: 0;
  position: fixed;
  z-index: 30;
  top: 0;
  padding: 10px 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 50, 102, 0)), color-stop(73%, rgba(var(--bg-d), 1)), color-stop(98%, rgba(var(--bg-d), 1)));
  background-image: linear-gradient(to top, rgba(0, 50, 102, 0) 0%, rgba(var(--bg-d), 1) 73%, rgba(var(--bg-d), 1) 98%);
  background-color: rgba(var(--bg-f), 1);
  height: 63px;
}
@media (max-width: 1024px) {
  .zllb-header {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 8px 0;
  }
}
@media (max-width: 576px) {
  .zllb-header {
    padding: 3px 0 8px;
  }
}
.zllb-header.active {
  background: rgba(var(--bg-d), 1);
}
.zllb-header.sticky {
  -webkit-box-shadow: -3px -20px 43px 8px rgba(0, 0, 0, 0.53);
  box-shadow: -3px -20px 43px 8px rgba(0, 0, 0, 0.53);
}
.zllb-header .zllb-logo {
  width: clamp(150px, 16.39vw, 236px);
}
.zllb-header__box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .zllb-header__box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-items: end;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
@media (max-width: 576px) {
  .zllb-header__box {
    gap: 6px 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    grid-template-columns: auto 1fr;
  }
}
.zllb-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .zllb-header__inner .zllb-main-btn {
    height: 32px;
  }
}
@media (max-width: 576px) {
  .zllb-header__inner {
    grid-row: 2;
    grid-column: 1/-1;
    width: 100%;
  }
  .zllb-header__inner a,
  .zllb-header__inner button {
    height: 30px;
    width: calc(50% - 4px);
  }
}
@media (min-width: 1024px) {
  .zllb-header .zllb-main-nav {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .zllb-header .zllb-logo {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
  }
}
.zllb-header .zllb-burger {
  justify-self: end;
}
@media (min-width: 1024px) {
  .zllb-header .zllb-burger {
    display: none;
  }
}
@media (max-width: 1024px) {
  .zllb-header .zllb-burger {
    --burger-width: 24px;
    --burger-height: 14px;
    --burger-line-height: 2px;
    --border-radius: 3px;
    position: relative;
    right: -4px;
  }
}

footer {
  background: #003166;
  border-radius: 15px 15px 0 0;
}

.zllb-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding: 30px var(--container-offset);
}
@media (max-width: 767px) {
  .zllb-footer {
    padding: 30px 0;
  }
}
.zllb-footer__logo {
  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: 8px;
}
@media (max-width: 767px) {
  .zllb-footer__logo .zllb-logo {
    width: clamp(150px, 16.39vw, 236px);
  }
}
.zllb-footer__box {
  display: grid;
  grid-gap: clamp(25px, 2.1739vw, 30px);
  grid-template-columns: 100%;
}
.zllb-footer__logos {
  padding: 10px 20px;
  background-color: #04386e;
  border-radius: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .zllb-footer__logos {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .zllb-footer__logos {
    padding: 10px;
  }
}
.zllb-footer__logos button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.zllb-footer__logos button:hover {
  opacity: 0.5;
}
@media (max-width: 576px) {
  .zllb-footer__logos button {
    height: 20px;
    max-width: 100px;
  }
}

.zllb-mobile {
  position: fixed;
  right: 0;
  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: 35px;
  -webkit-transform: translateX(230%);
  -ms-transform: translateX(230%);
  transform: translateX(230%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  overflow-y: auto;
  top: var(--header-height);
  padding: 15px 20px 15px;
  z-index: 30;
  background: rgba(var(--bg-d), 1);
  border-top: solid 1px var(--br-a);
}
.zllb-mobile.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .zllb-mobile .zllb-main-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1024px) and (min-width: 576px) {
  .zllb-mobile .zllb-main-nav__list {
    grid-gap: 15px;
  }
}
@media (max-width: 1024px) and (max-width: 576px) {
  .zllb-mobile .zllb-main-nav__list {
    grid-gap: 10px;
  }
}
@media (max-width: 1024px) {
  .zllb-mobile .zllb-main-nav__link {
    padding: 15px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(var(--cl-a), 1);
  }
}
.zllb-mobile__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: 32px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .zllb-mobile__box {
    display: contents;
  }
}
@media (min-width: 1024px) {
  .zllb-mobile {
    display: contents;
  }
}

.zllb-hero-section {
  position: relative;
  padding: 0 0 16px;
  margin-top: var(--header-height);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(var(--bg-f), 1)), to(rgb(1 25 50)));
  background-image: linear-gradient(to bottom, rgba(var(--bg-f), 1) 10%, rgb(1 25 50) 100%);
}

.zllb-accordion__button {
  cursor: pointer;
}

.zllb-error-section {
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: calc(var(--header-height) + clamp(40px, 8.3333vw, 100px)) 0 clamp(80px, 8.3333vw, 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.zllb-error-section .zllb-container {
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: center;
}

.zllb-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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.zllb-error-section h1 {
  font-weight: 700;
  font-size: clamp(100px, 13.3333vw, 180px);
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  letter-spacing: 0.03em;
}

.zllb-error-section p {
  margin: 0 0 clamp(25px, 2.963vw, 40px);
  font-size: clamp(26px, 2.963vw, 40px);
  color: rgba(var(--cl-a), 0.9);
}

.zllb-error-section .zllb-main-btn {
  height: 52px;
  max-width: 230px;
  width: 100%;
}

.zllb-about-section {
  padding-bottom: 40px;
  overflow: hidden;
}
.zllb-about-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 20px;
}
.zllb-about-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.zllb-about-section__inner--mode {
  grid-gap: 20px;
}
.zllb-about-section__inner--mode .zllb-main-box {
  grid-gap: 16px;
}

.zllb-games-section {
  margin-bottom: clamp(30px, 3.2609vw, 45px);
}
.zllb-games-section__box, .zllb-games-section__wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.zllb-accordion__box p:first-child{
    display:none;
}
.zllb-accordion__box p:last-child{
    display:none;
}
.zllb-accordion__box > p:only-child{
    display: inline-flex !important;
}
.mce-toc {
    position: relative;
    z-index: 1;
    padding: 20px 15px 20px 20px;
    width: 100%;
    border-radius: 8px;
    background: rgba(var(--bg-b), 0.2);
    border: 1px solid var(--br-b);
}

.mce-toc h2{
    font-size: clamp(16px, 1.525vw, 22px);
    font-weight: 600;
    text-align: start;
    color: rgba(var(--cl-a), 1);
    order: -1;
    margin-bottom: 15px;
    padding-left: 12px;
}

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

.mce-toc ul > li::before {
    content: '' !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-c), 1);
    text-decoration-color: inherit;
}

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

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

@media (max-width: 768px) {
    .mce-toc {
        padding-left: 15px;
    }
}
@media (min-width: 767px) {
html[lang="uz"] .zllb-game-slider .splide__arrows {
  right: 150px;
}
}
/*# sourceMappingURL=style.css.map */