
.ed-burger {
  display: none;
}

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

@media (max-width: 1024px) {
  .ed-burger {
    --burger-width: 22px;
    --burger-height: 14px;
    --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;
  }
  .ed-burger::before, .ed-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);
  }
  .ed-burger::before {
    top: 0;
  }
  .ed-burger::after {
    top: calc(100% - var(--burger-line-height));
  }
  .ed-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);
  }
  .ed-burger:hover .ed-burger__bg::before {
    opacity: 1;
  }
  .ed-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;
  }
  .ed-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;
  }
  .ed-burger.active .ed-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;
  }
}

.ed-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;
}
.ed-overlay::-webkit-scrollbar {
  display: none;
}
.ed-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: #090f1e;
  --body-font-size: 16px;
  --content-width: 1440px;
  --container-offset: 16px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --header-height: 47px;
  --scrollbar-thumb: #1f2841;
  --scrollbar-track: #202020;
  --scrollbar-track-hover: #202020;
  --overlay-bg: rgba(0, 0, 0, 0.5);
  --font-family: "SF-Pro" , sans-serif;
  --cl-a: 255, 255, 255;
  --cl-b: 0, 0, 0;
  --cl-c: 255, 229, 93;
  --cl-d: 119, 130, 155;
  --cl-e: 52, 64, 94;
  --cl-f: 50, 162, 244;
  --cl-g: 34, 110, 240;
  --bg-a: 255, 255, 255;
  --bg-b: 0, 0, 0;
  --bg-c: 9, 15, 31;
  --bg-d: 9, 15, 30;
  --bg-e: 0, 149, 255;
  --bg-f: 32, 38, 56;
  --bg-g: 20, 27, 46;
  --bg-h: 12, 20, 42;
  --bg-i: 4, 6, 12;
  --bg-j: 31, 40, 65;
  --bg-k: 32, 39, 53;
  --br-a: #1cd7fe;
  --br-b: #ffc400;
  --br-c: #fff;
  --br-d: #292c3c;
  --br-e: #415C8C;
}

.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-b), 1);
  counter-reset: step-counter;
  -webkit-text-size-adjust: 100%;
  background: var(--body-bg);
}

main {
  padding-top: calc(var(--header-height) + 15px);
  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: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 120%;
  color: rgba(var(--cl-a), 1);
}

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

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

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

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

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

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

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

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

.ed-main-subtitle {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
  font-size: 14px;
}

.ed-about-section__inner h1,
.ed-about-section__inner h2,
.ed-about-section__inner h3, 
.ed-about-section__inner h4 {
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(18px, 1.875vw, 27px);
  line-height: 120%;
  font-weight: 700;
  padding-left: 19px;
  position: relative;
  margin-bottom: 10px;
}

.ed-about-section__inner h1::before,
.ed-about-section__inner h2::before,
.ed-about-section__inner h3::before, 
.ed-about-section__inner h4::before {
position: absolute;
  content: "";
  left: 0;
  width: 4px;
  background: linear-gradient(91deg, #0095ff, #0855c4);
  -webkit-box-shadow: 0 6px 22px rgba(5, 109, 218, 0.3019607843);
  box-shadow: 0 6px 22px rgba(5, 109, 218, 0.3019607843);
  height: 100%;
  border-radius: 12px;
}


.ed-main-title {
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(18px, 1.875vw, 27px);
  line-height: 120%;
  font-weight: 700;
  padding-left: 19px;
  position: relative;
}
.ed-main-title::before {
  position: absolute;
  content: "";
  left: 0;
  width: 4px;
  background: linear-gradient(91deg, #0095ff, #0855c4);
  -webkit-box-shadow: 0 6px 22px rgba(5, 109, 218, 0.3019607843);
  box-shadow: 0 6px 22px rgba(5, 109, 218, 0.3019607843);
  height: 100%;
  border-radius: 12px;
}

.ed-main-link {
  color: rgba(var(--cl-g), 1);
  text-decoration: underline;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ed-main-link:hover {
  color: rgba(var(--cl-f), 1);
}

.ed-about-section__inner ol,
.ed-about-section__inner ul {
  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;
  margin-bottom: 15px;
}
.ed-about-section__inner li {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  grid-gap: 5px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #fff;
}

.ed-about-section__inner p {
    margin-bottom: 15px;
    font-size: 17px;
}
.ed-about-section__inner li::before {
  content: "";
  left: -11px;
  position: absolute;
  top: 5px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #056dda;
}
.ed-text-list--mode {
  padding-left: 11px;
}

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

.mce-toc {
        background: #202638;
    padding: 15px;
    border-radius: 8px;
}

table ul,
table ol {
    margin-left: 0 !important;
    padding: 0 !important;
    display: block important;
}

table li:before {
    content: none !important;
}
.ed-main-list__item::before {
  position: absolute;
  left: 0;
  top: -2px;
  content: counters(li, "") ".";
  counter-increment: li;
  font-size: 15px;
  font-family: var(--font-family2);
  font-weight: 800;
  color: rgba(var(--cl-a), 1);
}

table:not([class]) {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
  padding: 5px;
}
@media (max-width: 576px) {
  table:not([class]) {
    
  
  }
}
@media (max-width: 576px) {
  table:not([class]) thead, table:not([class]) tbody {
    width: 100%;
  }
}
table:not([class]) tbody tr:nth-child(even) td {
  background: rgba(var(--bg-g), 1);
}
@media (max-width: 576px) {
  table:not([class]) tr {
    width: 100%;
  }
}
table:not([class]) th {
  padding: 15px 5px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.1111vw, 16px);
  font-weight: 700;
  background-color: rgba(var(--bg-h), 1);
}
@media (max-width: 576px) {
  table:not([class]) th {
    width: 100%;
  }
}
table:not([class]) td {
  text-align: center;
  padding: 10px;
  background: rgba(var(--bg-h), 1);
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.1111vw, 16px);
  font-weight: 400;
  background-color: rgba(var(--bg-f), 1);
}

.ed-icon-logo {
  background-image: url(../img/sprite/logo.svg);
  width: 68px;
  height: 31px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.ed-icon-speed {
  background-image: url(../img/sprite/speed.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 51px;
  height: 15px;
  display: block;
}
.ed-icon-jet {
  background-image: url(../img/sprite/jetx.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 35px;
  height: 15px;
  display: block;
}
.ed-icon-lucky {
  background-image: url(../img/sprite/lucky.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 58px;
  height: 15px;
  display: block;
}
.ed-icon-aviator {
  background-image: url(../img/sprite/aviator.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 15px;
  display: block;
}
.ed-icon-login {
  background-image: url(../img/sprite/plus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 11px;
  height: 11px;
  display: block;
}
.ed-icon-star {
  background-image: url(../img/sprite/star.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 13px;
  height: 13px;
  display: block;
}
.ed-icon-fifa {
  background-image: url(../img/sprite/fifa.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 76px;
  height: 25px;
  display: block;
}
.ed-icon-atp {
  background-image: url(../img/sprite/atp.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 21px;
  height: 25px;
  display: block;
}
.ed-icon-nhl {
  background-image: url(../img/sprite/nhl.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  display: block;
}
.ed-icon-fiba {
  background-image: url(../img/sprite/fiba.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 55px;
  height: 25px;
  display: block;
}
.ed-icon-wta {
  background-image: url(../img/sprite/wta.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 33px;
  height: 25px;
  display: block;
}
.ed-icon-ufc {
  background-image: url(../img/sprite/ufc.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 75px;
  height: 25px;
  display: block;
}
.ed-icon-uefa {
  background-image: url(../img/sprite/uefa.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 61px;
  height: 25px;
  display: block;
}
.ed-icon-bookmaker {
  background-image: url(../img/sprite/bookmaker.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 42px;
  height: 42px;
  display: block;
}
.ed-icon-itf {
  background-image: url(../img/sprite/itf.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 56px;
  height: 25px;
  display: block;
}
.ed-icon-visa {
  background-image: url(../img/sprite/visa.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 57px;
  height: 19px;
  display: block;
}
.ed-icon-master {
  background-image: url(../img/sprite/visa.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 57px;
  height: 19px;
  display: block;
}
.ed-icon-tg {
  background-image: url(../img/sprite/tg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 15px;
  display: block;
}
.ed-icon-youtube {
  background-image: url(../img/sprite/youtube.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 15px;
  display: block;
}
.ed-icon-mob {
  background-image: url(../img/sprite/mob.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 20px;
  display: block;
}
.ed-icon-mono {
  background-image: url(../img/sprite/mono.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
  display: block;
}
.ed-icon-discover {
  background-image: url(../img/sprite/discover.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 99px;
  height: 19px;
  display: block;
}
.ed-icon-scb {
  background-image: url(../img/sprite/scb.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 19px;
  display: block;
}
.ed-icon-much {
  background-image: url(../img/sprite/much.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 84px;
  height: 19px;
  display: block;
}
.ed-icon-webmoney {
  background-image: url(../img/sprite/webmoney.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 84px;
  height: 19px;
  display: block;
}
.ed-icon-fk {
  background-image: url(../img/sprite/fk.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 19px;
  display: block;
}
.ed-icon-flower {
  background-image: url(../img/sprite/flower.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: block;
}
.ed-icon-payeer {
  background-image: url(../img/sprite/payeer.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 77px;
  height: 19px;
  display: block;
}
.ed-icon-skrill {
  background-image: url(../img/sprite/skrill.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 62px;
  height: 19px;
  display: block;
}
.ed-icon-tether {
  background-image: url(../img/sprite/tether.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 61px;
  height: 19px;
  display: block;
}
.ed-icon-eth {
  background-image: url(../img/sprite/eth.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 19px;
  display: block;
}
.ed-icon-qiwi {
  background-image: url(../img/sprite/qiwi.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 43px;
  height: 19px;
  display: block;
}
.ed-icon-btc {
  background-image: url(../img/sprite/btc.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 19px;
  display: block;
}
.ed-icon-pay {
  background-image: url(../img/sprite/pay.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 47px;
  height: 19px;
  display: block;
}
.ed-icon-gpay {
  background-image: url(../img/sprite/gpay.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 19px;
  display: block;
}
.ed-icon-master {
  background-image: url(../img/sprite/master.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 31px;
  height: 16px;
  display: block;
}
.ed-icon-astro {
  background-image: url(../img/sprite/astro.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 91px;
  height: 19px;
  display: block;
}
.ed-icon-download {
  background-image: url(../img/sprite/download.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: block;
}
.ed-icon-vk {
  background-image: url(../img/sprite/vk.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 21px;
  display: block;
}
.ed-icon-inst {
  background-image: url(../img/sprite/inst.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 21px;
  display: block;
}
.ed-icon-betraja {
  background-image: url(../img/template/betraja.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 25px;
  width: 25px;
}
.ed-icon-mentor {
  background-image: url(../img/template/mentor.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 25px;
  width: 86px;
}
.ed-icon-best {
  background-image: url(../img/template/best.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 25px;
  width: 25px;
}
.ed-icon-analyzer {
  background-image: url(../img/template/analyzer.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 25px;
  width: 91px;
}
.ed-icon-cricket {
  background-image: url(../img/template/cricket.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 25px;
  width: 22px;
}
.ed-icon-betting {
  background-image: url(../img/template/betting.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 25px;
  width: 25px;
}
.ed-icon-jackpot {
  background-image: url(../img/template/icon1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 11px;
  width: clamp(170px, 20.2083vw, 291px);
}
.ed-icon-acc {
  background-image: url(../img/sprite/arrow-b.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 28px;
  height: 14px;
  display: block;
}

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

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

.ed-green-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: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
  font-size: clamp(12px, 0.9722vw, 14px);
  line-height: 120%;
  font-weight: 600;
  height: 30px;
  min-width: 80px;
  padding: 0 15px 0 12px;
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  border-radius: 8px;
  grid-gap: 12px;
}
.ed-green-button:hover {
  opacity: 0.9;
}
.ed-green-button .ed-icon-login {
  position: relative;
}
.ed-green-button .ed-icon-login::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-image: linear-gradient(210deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.06) 48%, #fff 133%);
}

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

.ed-main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 16px;
}
.ed-main-box p {
  color: rgba(var(--cl-a), 1);
  font-size: 14px;
  line-height: 1.34;
  font-family: var(--font-family);
  font-weight: 400;
}
.ed-main-box p b {
  font-weight: 700;
  font-size: 16px;
}
.ed-main-box__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ed-main-box__image--mode {
  padding: clamp(5px, 1.1765vw, 16px) 0 clamp(16px, 2.3529vw, 32px);
}
.ed-main-box--mode {
  grid-gap: 0;
}
.ed-main-box--mode .ed-main-subtitle {
  padding: 8px 0;
}

.ed-header-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.15vw, 18px);
  height: 100%;
}
.ed-header-nav__item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ed-header-nav__item:hover .ed-header-nav__link {
  color: rgba(var(--cl-a), 1);
}
.ed-header-nav__item:hover .ed-header-nav__link::before {
  opacity: 1;
  visibility: visible;
}
.ed-header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  text-align: center;
  font-family: var(--font-family);
  position: relative;
  color: rgba(var(--cl-a), 1);
  line-height: 100%;
  position: relative;
  font-size: clamp(12px, 0.9722vw, 14px);
  text-align: center;
  white-space: nowrap;
}
.ed-header-nav__link::before {
  background: linear-gradient(107deg, rgb(57, 155, 255) 0%, rgb(0, 78, 255) 100%);
  bottom: 0;
  content: "";
  height: 3px;
  border-radius: 6px 6px 0 0;
  position: absolute;
  left: -1px;
  right: -1px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.ed-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: 10px;
}
.ed-accordion__button {
  width: 100%;
  padding: 10px;
  background: linear-gradient(107deg, rgb(64, 0, 209) 0%, rgb(0, 137, 135) 100%);
  border-radius: 5px;
  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;
}
.ed-accordion__button.active .ed-accordion__icon {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
.ed-accordion__button:hover {
  background: linear-gradient(107deg, rgb(64, 0, 209) 0%, rgb(0, 137, 135) 80%);
}
.ed-accordion__icon {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.ed-accordion__content {
  width: 100%;
}
.ed-accordion__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 15px;
  padding-top: 10px;
}
.ed-accordion__title {
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
}
.ed-accordion p {
  font-family: var(--font-family);
}

.ed-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.ed-counter__number {
  height: clamp(50px, 4.7222vw, 68px);
  font-size: clamp(24px, 3.125vw, 45px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.133)), color-stop(40%, rgba(255, 255, 255, 0.467)), color-stop(50%, #fff), color-stop(60%, rgba(255, 255, 255, 0.667)), color-stop(75%, rgba(255, 255, 255, 0.467)), color-stop(90%, rgba(255, 255, 255, 0)));
  -webkit-mask-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.133) 25%, rgba(255, 255, 255, 0.467) 40%, #fff 50%, rgba(255, 255, 255, 0.667) 60%, rgba(255, 255, 255, 0.467) 75%, rgba(255, 255, 255, 0) 90%);
  color: rgba(var(--cl-c), 1);
  font-family: var(--font-family);
  font-weight: 900;
  line-height: 1;
}
.ed-counter__number--mode {
  padding-right: 6px;
}

.ed-main-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  grid-gap: 10px;
}
.ed-main-top__title {
  font-size: clamp(18px, 1.7361vw, 25px);
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.408px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
}
.ed-main-top__count {
  margin-bottom: calc(clamp(5px, 0.6944vw, 10px) * -1);
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.288px;
  color: rgba(var(--cl-a), 0.5);
  font-family: var(--font-family);
}

.ed-main-jackpot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: clamp(15px, 2.4306vw, 35px) 15px 15px;
  position: relative;
  z-index: 1;
}
.ed-main-jackpot::before, .ed-main-jackpot:after {
  content: "";
  position: absolute;
}
.ed-main-jackpot::before {
  border-radius: 12px;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at -65% 157%, #c5991e, #b68100 7%, #fff29d 66%, #b57f00 113%, #c7940f 138%);
}
.ed-main-jackpot::after {
  border-radius: 10px;
  z-index: -1;
  inset: 2px;
  background: rgba(var(--bg-c), 1);
  -webkit-box-shadow: 0 9px 17px rgba(214, 179, 71, 0), inset 0 1px 29px #000;
  box-shadow: 0 9px 17px rgba(214, 179, 71, 0), inset 0 1px 29px #000;
}
.ed-main-jackpot__list {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: clamp(15px, 2.4306vw, 35px);
  grid-gap: 10px;
}
.ed-main-jackpot__game {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  max-height: 70px;
}
.ed-main-jackpot__game img, .ed-main-jackpot__game picture {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}
.ed-main-jackpot__game:hover img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
@media (max-width: 1024px) {
  .ed-main-jackpot__game {
    max-height: initial;
  }
}
.ed-main-jackpot__title {
  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: 15px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(26px, 2.2222vw, 32px);
  font-weight: 900;
  letter-spacing: -1.96px;
  text-shadow: 0 2px 87px #0c1820;
  position: relative;
}
.ed-main-jackpot__title::before, .ed-main-jackpot__title::after {
  content: "";
  display: block;
  height: 1px;
  opacity: 0.3;
  width: 28px;
}
.ed-main-jackpot__title::before {
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(transparent));
  background: linear-gradient(to left, #fff, transparent);
}
.ed-main-jackpot__title::after {
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
  background: linear-gradient(to right, #fff, transparent);
}
.ed-main-jackpot__inner {
  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;
}
.ed-main-jackpot__icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-56%);
  -ms-transform: translateX(-56%);
  transform: translateX(-56%);
}
@media (max-width: 1239px) {
  .ed-main-jackpot {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.ed-play-card {
  width: 90vw;
  max-width: 400px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(10px, 3.2823vw, 30px);
  padding: 15px 20px;
  border: 3px solid var(--br-b);
}
.ed-play-card__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(10px, 2.1882vw, 20px);
  width: 225px;
}
.ed-play-card__title {
  color: rgba(var(--cl-h), 1);
  font-family: var(--font-family2);
  font-weight: 800;
  font-size: clamp(20px, 2.8446vw, 26px);
  font-style: normal;
  line-height: 130%;
  text-transform: uppercase;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.133)), color-stop(40%, rgba(255, 255, 255, 0.467)), color-stop(50%, #fff), color-stop(60%, rgba(255, 255, 255, 0.667)), color-stop(75%, rgba(255, 255, 255, 0.467)), color-stop(90%, rgba(255, 255, 255, 0)));
  -webkit-mask-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.133) 25%, rgba(255, 255, 255, 0.467) 40%, #fff 50%, rgba(255, 255, 255, 0.667) 60%, rgba(255, 255, 255, 0.467) 75%, rgba(255, 255, 255, 0) 90%);
  color: rgba(var(--cl-c), 1);
}
.ed-play-card p {
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.5534vw, 16px);
  line-height: 120%;
  width: 100%;
  text-align: center;
}

.ed-main-slider {
  width: 100%;
  border-radius: 8px;
}
.ed-main-slider:hover .splide__arrows {
  opacity: 1;
  visibility: visible;
}
.ed-main-slider__box {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ed-main-slider__inner {
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  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;
}
@media (max-width: 576px) {
  .ed-main-slider__inner {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.ed-main-slider__slide {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  height: 252px;
}
.ed-main-slider__slide.is-active .ed-main-slider__btn {
  opacity: 1;
  visibility: visible;
}
.ed-main-slider__wrapp {
  width: 100%;
  height: 100%;
}
.ed-main-slider p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.31px;
  line-height: 1.31;
  color: rgba(var(--cl-a), 0.8);
  text-shadow: 1px 1px 3px #000;
  z-index: 10;
  max-width: 210px;
  font-family: var(--font-family);
}
@media (max-width: 576px) {
  .ed-main-slider p {
    text-align: center;
  }
}
.ed-main-slider__btns {
  margin-top: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
}
.ed-main-slider__btn {
  opacity: 0;
  visibility: hidden;
}
.ed-main-slider__date {
  font-size: 13px;
  line-height: normal;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
}
.ed-main-slider__date b {
  font-weight: 700;
}
.ed-main-slider__title {
  color: rgba(var(--cl-a), 1);
  font-size: clamp(20px, 2.0139vw, 29px);
  letter-spacing: -0.268px;
  max-width: 280px;
  font-weight: 900;
  font-family: var(--font-family);
  text-shadow: 1px 1px 3px #000;
  line-height: 1.12;
}
@media (max-width: 576px) {
  .ed-main-slider__title {
    text-align: center;
  }
}
.ed-main-slider__icon {
  position: absolute;
  inset: 0;
}
.ed-main-slider__icon img, .ed-main-slider__icon picture {
  width: 100%;
  height: 100%;
}
.ed-main-slider__image {
  width: 100%;
  height: 100%;
}
.ed-main-slider__image img,
.ed-main-slider__image picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 576px) {
  .ed-main-slider__image img,
  .ed-main-slider__image picture {
    -o-object-position: center center;
    object-position: center center;
  }
}

.splide__pagination {
  bottom: 5px;
  position: relative;
  grid-gap: 5px;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media (max-width: 1239px) {
  .splide__pagination {
    bottom: 0;
  }
}
.splide__pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.splide__pagination__page {
  opacity: 1;
  background-color: rgba(var(--bg-a), 0.6);
  width: 5px;
  height: 5px;
  margin: 0;
}
.splide__pagination__page.is-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background-color: rgba(var(--bg-a), 1);
}
.splide__arrows {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 5px;
  opacity: 1;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  bottom: 30px;
  right: 15px;
  border-radius: 12px;
  display: flex;
  padding: 5px;
  z-index: 6;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.splide__arrows::before {
  content: "";
  z-index: 5;
  position: absolute;
  background-color: rgba(var(--bg-a), 0.2);
  -webkit-filter: blur(10px);
  filter: blur(10px);
  inset: 0;
  z-index: -1;
}
@media (max-width: 576px) {
  .splide__arrows {
    display: none;
  }
}
.splide__arrow {
  border-radius: 8px;
  background-color: rgba(var(--bg-a), 0.2);
  cursor: pointer;
  width: 35px;
  height: 35px;
  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-transition: all 0.1s;
  transition: all 0.1s;
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
.splide__arrow svg {
  width: 15px;
  height: 14px;
  fill: rgba(var(--cl-a), 0.3);
}
.splide__arrow:hover {
  background-color: rgba(var(--bg-a), 0.5);
}
.splide__arrow:hover svg {
  fill: rgba(var(--cl-a), 0.5);
}

.ed-game-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.ed-game-card__image {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.ed-game-card__image img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ed-game-card:hover .ed-game-card__image img,
.ed-game-card:hover .ed-game-card__image picture {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

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

.ed-social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 20px;
}
.ed-social-list__link {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
}
.ed-social-list__link::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(108.65deg, #91b8ef 2.63%, #4288ed 101.05%), linear-gradient(135deg, #ff4f4f 0%, #f00 100%);
  -webkit-box-shadow: 0 5px 16px rgba(76, 185, 246, 0.3019607843);
  box-shadow: 0 5px 16px rgba(76, 185, 246, 0.3019607843);
}
.ed-social-list__link:hover::before {
  width: 38px;
  height: 38px;
}
.ed-social-list__link.ed-icon-tg::before {
  background: linear-gradient(240.2deg, #0fb1d6 0%, #08c 61.34%);
  -webkit-box-shadow: 0 5px 16px rgba(76, 162, 246, 0.3019607843);
  box-shadow: 0 5px 16px rgba(76, 162, 246, 0.3019607843);
}
.ed-social-list__link.ed-icon-youtube::before {
  background: linear-gradient(135deg, #ff4f4f 0%, #f00 100%);
  -webkit-box-shadow: 0 5px 16px rgba(246, 76, 76, 0.3019607843);
  box-shadow: 0 5px 16px rgba(246, 76, 76, 0.3019607843);
}
.ed-social-list__link.ed-icon-inst::before {
  background: linear-gradient(214.99deg, #7e2bf4 7.65%, #ed146e 51.93%, #ffc90c 95.29%);
  -webkit-box-shadow: 0 5px 16px rgba(186, 77, 101, 0.3019607843);
  box-shadow: 0 5px 16px rgba(186, 77, 101, 0.3019607843);
}

.ed-footer-company {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: 10px;
  position: relative;
  max-width: 806px;
  width: 100%;
  justify-self: center;
}
@media (max-width: 1024px) {
  .ed-footer-company {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.ed-footer-info {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: clamp(10px, 1.0417vw, 15px);
  position: relative;
}
.ed-footer-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(var(--cl-d), 0.6);
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
}
@media (max-width: 1239px) {
  .ed-footer-info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.ed-footer-info__icon {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-filter: grayscale(1) brightness(50%);
  filter: grayscale(1) brightness(50%);
}
.ed-footer-info__icon:hover {
  -webkit-filter: none;
  filter: none;
}

.ed-header {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  max-width: var(--container-width);
  z-index: 90;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.ed-header__box {
  padding: 0 10px;
  border-radius: 0 0 10px 10px;
  background-image: linear-gradient(92deg, #1e283f, rgba(20, 27, 46, 0.6));
  background-color: rgba(var(--bg-d), 1);
  height: 47px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: clamp(10px, 1.3889vw, 20px);
  position: relative;
  width: 100%;
}
@media (max-width: 1100px) {
  .ed-header__box .ed-header-nav {
    grid-gap: 5px;
  }
}
@media (max-width: 1024px) {
  .ed-header__box .ed-header-nav {
    display: none;
  }
}
@media (max-width: 1024px) {
  .ed-header__box {
    grid-template-columns: auto 1fr auto;
  }
}
.ed-header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 16px;
}
@media (max-width: 1024px) {
  .ed-header__btns {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}
@media (max-width: 414px) {
  .ed-header__btns .ed-login {
    padding: 10px;
  }
}
@media (max-width: 1239px) {
  .ed-header .ed-green-button i {
    display: none;
  }
}
.ed-header .ed-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 3px;
}
.ed-header .ed-burger {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  justify-self: end;
}
.ed-header.sticky, .ed-header.active {
  -webkit-transform: translateX(-50%) scaleX(1.006);
  -ms-transform: translateX(-50%) scaleX(1.006);
  transform: translateX(-50%) scaleX(1.006);
}
.ed-header.sticky .ed-header__box, .ed-header.active .ed-header__box {
  -webkit-box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.6);
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.6);
}

footer {
  padding: 16px 0 clamp(16px, 2.0833vw, 30px);
  overflow: hidden;
}

.ed-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(20px, 3.125vw, 45px);
  position: relative;
}
.ed-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: clamp(20px, 2.0833vw, 30px);
  position: relative;
}
.ed-footer__top::before {
  border-bottom: 1px solid var(--br-d);
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  bottom: calc(clamp(20px, 3.125vw, 45px) / 2 * -1);
  height: 1px;
  width: 100vw;
}
@media (max-width: 1024px) {
  .ed-footer__top {
    padding-bottom: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .ed-footer__top .ed-footer-company {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
.ed-footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 5px;
}
@media (max-width: 1024px) {
  .ed-footer__btns {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.ed-footer__copyright {
  color: rgba(var(--cl-e), 1);
  font-size: 9px;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 12px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media (max-width: 576px) {
  .ed-footer__copyright {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-item-align: center;
    align-self: center;
  }
}
.ed-footer__inner {
  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;
  grid-gap: 20px;
  width: 100%;
  position: relative;
}
.ed-footer__inner::before {
  border-bottom: 1px solid var(--br-d);
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: calc(clamp(20px, 3.125vw, 45px) / 2 * -1);
  height: 1px;
  width: 100vw;
}
@media (max-width: 576px) {
  .ed-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 10px;
  }
}
.ed-footer__inner .ed-footer-info__icon {
  -webkit-filter: none;
  filter: none;
}
.ed-footer .ed-logo {
  position: relative;
}
.ed-footer .ed-logo:before {
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateX(5%);
  -ms-transform: translateX(5%);
  transform: translateX(5%);
  right: 0;
  padding: 0 20px;
  display: block;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(9.92%, rgba(255, 255, 255, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 9.92%, rgba(0, 0, 0, 0) 100%);
}
.ed-footer .ed-logo .ed-icon-logo {
  width: 48px;
  height: 21px;
}

.ed-games-section {
  padding-bottom: clamp(20px, 1.6667vw, 24px);
  position: relative;
}
.ed-games-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 20px;
}
.ed-games-section .ed-info-button {
  margin-top: clamp(5px, 1.3889vw, 20px);
  -ms-flex-item-align: center;
  align-self: center;
}

.ed-first-section {
  position: relative;
  padding-bottom: clamp(16px, 1.6667vw, 24px);
}
.ed-first-section__box {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  grid-gap: 20px 15px;
  position: relative;
}
@media (max-width: 1024px) {
  .ed-first-section__box {
    grid-template-columns: 1fr;
  }
  .ed-first-section__box .ed-main-slider {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .ed-first-section__box .ed-main-jackpot {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.ed-about-section {
  padding-bottom: clamp(20px, 3.3333vw, 48px);
  border-top: 1px solid var(--br-f);
  overflow: hidden;
}
.ed-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: 16px;
}
.ed-about-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ed-about-section__inner--mode {
  grid-gap: 16px;
}
.ed-about-section__inner--mode .ed-main-box {
  grid-gap: 8px;
}
.ed-about-section__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ed-mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  z-index: 100;
  -webkit-transform: translateX(230%);
  -ms-transform: translateX(230%);
  transform: translateX(230%);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  width: 100%;
  max-width: 450px;
  background-color: rgba(var(--bg-i), 1);
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
  padding: 10px 16px 16px;
}
.ed-mobile-menu__box {
  border-radius: 8px;
  padding: 15px;
  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%;
  background-image: linear-gradient(92deg, #1e283f, rgba(20, 27, 46, 0.6));
  background-color: rgba(var(--bg-d), 1);
}
.ed-mobile-menu .ed-header-nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.ed-mobile-menu .ed-header-nav__item {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ed-mobile-menu .ed-header-nav__link {
  text-transform: uppercase;
  color: rgba(var(--cl-a), 1);
  width: 100%;
  font-size: 14px;
  padding: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.ed-mobile-menu.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

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


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