
.smahjle-burger {
  display: none;
}
@media (max-width: 1024px) {
  .smahjle-burger {
    --burger-width: 24px;
    --burger-height: 18px;
    --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;
  }
  .smahjle-burger::before, .smahjle-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);
  }
  .smahjle-burger::before {
    top: 0;
  }
  .smahjle-burger::after {
    top: calc(100% - var(--burger-line-height));
  }
  .smahjle-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);
  }
  .smahjle-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;
  }
  .smahjle-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;
  }
  .smahjle-burger.active .smahjle-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;
  }
}

.smahjle-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;
}
.smahjle-overlay::-webkit-scrollbar {
  display: none;
}
.smahjle-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: #002347;
  --body-font-size: 16px;
  --content-width: 100%;
  --content-width-mode: 1200px;
  --container-offset: 20px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --header-height: 132px;
  --scrollbar-thumb: #115ba9;
  --scrollbar-track: #22252D;
  --scrollbar-track-hover: #22252D;
  --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: 66, 140, 220;
  --cl-e: 17, 131, 211;
  --cl-f: 153, 202, 255;
  --cl-g: 0, 35, 71;
  --cl-h: 22, 103, 193;
  --cl-i: 135, 188, 245;
  --cl-j: 255, 82, 249;
  --cl-k: 92, 198, 255;
  --cl-l: 67, 210, 229;
  --bg-a: 255, 255, 255;
  --bg-b: 0, 0, 0;
  --bg-c: 5, 69, 136;
  --bg-d: 66, 140, 220;
  --bg-e: 0, 49, 102;
  --bg-f: 232, 236, 241;
  --bg-g: 250, 77, 0;
  --bg-h: 0, 50, 102;
  --bg-i: 0, 50, 102;
  --bg-j: 17, 91, 169;
  --bg-k: 255, 119, 156;
  --bg-l: 10, 81, 158;
  --bg-m: 0, 35, 71;
  --bg-n: 4, 56, 110;
  --bg-o: 9, 81, 158;
  --br-a: #ffb801;
  --br-b: #043e7d;
  --br-c: #fff;
  --br-d: #e8ecf1;
  --br-e: #0d4177;
  --br-f: #003266;
  --br-g: #115ba9;
  --br-h: #428cdc;
  --br-i: #09437f;
  --br-j: #003266;
  --br-k: #054588;
  --gr-a: linear-gradient(0deg,#fa4d00 0,#fa5e00);
  --gr-b: linear-gradient(0deg,#fa5e00 0,#fa7c00);
  --gr-c: linear-gradient(0deg,#428cdc 0,#509aea 97%,#509aea);
  --gr-d: linear-gradient(180deg,#428cdc 0,#509aea 97%,#509aea);
  --gr-e: linear-gradient(180deg,#003266 90%,#00326600);
  --gr-f: linear-gradient(to top,#00326600 0,#003266 73%,#003266 98%);
  --gr-g: linear-gradient(to bottom,#00326600 0,#003266 73%,#003266 98%);
  --gr-h: linear-gradient(180deg, #ffba00 52.08%, #fa4d00 100%);
  --gr-i: linear-gradient(to top,#002347 0,#002347 20%,#003266 100%);
  --gr-j: linear-gradient(to top,#fa4d00 0,#fa5e00 100%);
  --gr-k: linear-gradient(180deg,#002347 0,#002347 20%,#0000);
  --gr-l: linear-gradient(0deg,#006fe5 0,#288eff);
}
@media (max-width: 767px) {
  :root {
    --container-offset: 16px;
  }
}
@media (max-width: 1024px) {
  :root {
    --header-height: 57px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 54px;
  }
}
@media (max-width: 576px) {
  :root {
    --header-height: 87px;
  }
}

.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: var(--header-height);
  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: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 120%;
  color: rgba(var(--cl-d), 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;
}

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

.smahjle-main-inner {
  padding: 20px 0;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 280px 1fr;
}
@media (max-width: 1024px) {
  .smahjle-main-inner {
    grid-template-columns: 1fr;
  }
}

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

@-webkit-keyframes propeller {
  0% {
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  100% {
    -webkit-transform: rotate(-25deg) rotateX(180deg);
    transform: rotate(-25deg) rotateX(180deg);
  }
}

@keyframes propeller {
  0% {
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  100% {
    -webkit-transform: rotate(-25deg) rotateX(180deg);
    transform: rotate(-25deg) rotateX(180deg);
  }
}
.smahjle-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.smahjle-download-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(var(--bg-c), 1);
  border-radius: 20px;
  display: flex;
  padding-left: 5px;
  padding-right: 5px;
}
.smahjle-download-links__title {
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 5px;
}
.smahjle-download-links__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.smahjle-download-links__link {
  display: block;
  padding: 10px 5px;
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
}
.smahjle-download-links__link:hover {
  -webkit-filter: brightness(10);
  filter: brightness(10);
}

.smahjle-search-form {
  padding: 10px 0 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
  height: 100%;
}
.smahjle-search-form__box {
  padding: 0 10px;
  height: 40px;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid var(--br-e);
  border-radius: 20px;
}
.smahjle-search-form__input {
  width: 100%;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  font-size: 14px;
}
.smahjle-search-form__input::-webkit-input-placeholder {
  text-transform: uppercase;
  color: rgba(var(--cl-h), 1);
}
.smahjle-search-form__input::-moz-placeholder {
  text-transform: uppercase;
  color: rgba(var(--cl-h), 1);
}
.smahjle-search-form__input:-ms-input-placeholder {
  text-transform: uppercase;
  color: rgba(var(--cl-h), 1);
}
.smahjle-search-form__input::-ms-input-placeholder {
  text-transform: uppercase;
  color: rgba(var(--cl-h), 1);
}
.smahjle-search-form__input::placeholder {
  text-transform: uppercase;
  color: rgba(var(--cl-h), 1);
}
.smahjle-search-form__clear {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.smahjle-search-form__clear.active {
  visibility: visible;
  opacity: 1;
}

.smahjle-plane {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-left: 4px;
  position: relative;
}
.smahjle-plane__icon {
  fill: rgba(var(--bg-k), 1);
  -webkit-animation: propeller 0.1s infinite;
  animation: propeller 0.1s infinite;
  background-image: url(/static/images/sprite/propeller.svg);
  background-size: cover;
  height: 16px;
  position: absolute;
  right: -3px;
  top: -5.5px;
  -webkit-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  transform: rotate(-25deg);
  width: 3px;
}

.smahjle-age-limit {
  font-family: var(--font-family);
  font-size: clamp(14px, 1.2903vw, 16px);
  text-transform: uppercase;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid var(--br-i);
  border-radius: 50%;
  color: rgba(var(--cl-e), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  height: clamp(35px, 3.2258vw, 40px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: clamp(35px, 3.2258vw, 40px);
}

.smahjle-main-title,
.smahjle-about-section__inner h2{
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  font-size: clamp(18px, 2.0968vw, 26px);
  font-weight: 500;
  padding-left: 15px;
  position: relative;
  text-transform: uppercase;
}
.smahjle-main-title::before,
.smahjle-about-section__inner h2::before {
  background: rgba(var(--cl-c), 1);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  height: 80%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
}

.smahjle-main-subtitle {
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  font-size: clamp(16px, 1.9531vw, 20px);
  font-weight: 500;
  padding-left: 15px;
  position: relative;
}

.smahjle-main-subtitle::before {
  background: rgba(var(--cl-d), 1);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  height: 80%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
}

.smahjle-about-section__inner h3,
.smahjle-about-section__inner h4,
.smahjle-about-section__inner h5 {
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  font-size: clamp(16px, 1.9531vw, 20px);
  font-weight: 500;
  padding-left: 15px;
  position: relative;
}

.smahjle-about-section__inner h3::before,
.smahjle-about-section__inner h4::before,
.smahjle-about-section__inner h5::before {
  background: rgba(var(--cl-d), 1);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  height: 80%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
}


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

.smahjle-main-list,
.smahjle-about-section__inner ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 5px;
  counter-reset: li;
  color: #fff;
      padding-left: 26px;
}
.smahjle-main-list__item, 
.smahjle-about-section__inner ol 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;
}
.smahjle-main-list__item::before, 
.smahjle-about-section__inner ol li:before {
  position: absolute;
  left: 0;
  top: -3px;
  content: counters(li, "") ".";
  counter-increment: li;
  font-size: clamp(15px, 1.223vw, 17px);
  font-family: var(--font-family);
  font-weight: 700;
  color: rgba(var(--cl-a), 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;
  padding-left: 26px;
  grid-gap: 5px;
}
ul:not([class]) li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  grid-gap: 5px;
  color: rgba(var(--cl-a), 1);
}
ul:not([class]) li::before {
  content: "";
  left: -12px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  width: 6px;
  height: 6px;
  background-color: rgba(var(--bg-d), 1);
}

table:not([class]) {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
table:not([class]) tbody tr:nth-child(even) td {
  background-color: rgba(var(--bg-n), 0.3);
}
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-c), 1);
  border: solid 1px var(--br-b);
}
table:not([class]) td {
  text-align: center;
  padding: 10px;
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.1111vw, 16px);
  font-weight: 400;
  border: solid 1px var(--br-e);
}

.smahjle-icon-money {
  background-image: url(/static/images/template/money.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  bottom: 0;
  height: clamp(44px, 4.0323vw, 50px);
  position: absolute;
  right: 0;
  width: clamp(45px, 4.8387vw, 60px);
}
.smahjle-icon-lock {
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(/static/images/sprite/lock.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-shop {
  width: 18px;
  height: 18px;
  display: block;
  background-image: url(/static/images/sprite/shop.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-android {
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(/static/images/sprite/android.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-apple {
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(/static/images/sprite/apple.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-box {
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(/static/images/sprite/box.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-stock {
  width: 54px;
  height: 48px;
  display: block;
  background-image: url(/static/images/sprite/stock.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-logo {
  background-image: url(/static/images/sprite/logo.svg);
  width: clamp(160px, 19.0323vw, 236px);
  height: clamp(30px, 3.2258vw, 40px);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.smahjle-icon-aside {
  background-image: url(/static/images/sprite/filter.svg);
  width: 28px;
  height: 25px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.smahjle-icon-all {
  background-image: url(/static/images/sprite/all.svg);
  width: 20px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.smahjle-icon-circle {
  background-image: url(/static/images/sprite/circle.svg);
  width: 20px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.smahjle-icon-add {
  background-image: url(/static/images/sprite/add.svg);
  width: 24px;
  height: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.smahjle-icon-seven {
  background-image: url(/static/images/sprite/seven.svg);
  width: 20px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.smahjle-icon-play {
  background-image: url(/static/images/sprite/play.svg);
  width: 40px;
  height: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.smahjle-icon-cup {
  background-image: url(/static/images/sprite/cup.svg);
  width: 20px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60% 60%;
  display: block;
  position: relative;
}
.smahjle-icon-cup::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(var(--bg-d), 1);
}
.smahjle-icon-flash {
  background-image: url(/static/images/sprite/flash.svg);
  width: 20px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60% 60%;
  display: block;
  position: relative;
}
.smahjle-icon-flash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(var(--bg-g), 1);
}
.smahjle-icon-fire {
  width: clamp(30px, 3.9063vw, 40px);
  height: clamp(30px, 3.9063vw, 40px);
  display: block;
  background-image: url(/static/images/sprite/fire.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-new {
  width: clamp(30px, 3.9063vw, 40px);
  height: clamp(30px, 3.9063vw, 40px);
  display: block;
  background-image: url(/static/images/sprite/new.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-star {
  width: clamp(30px, 3.9063vw, 40px);
  height: clamp(30px, 3.9063vw, 40px);
  display: block;
  background-image: url(/static/images/sprite/star.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-search {
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(/static/images/sprite/search.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-clear {
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(/static/images/sprite/clear.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-slots {
  width: clamp(30px, 3.9063vw, 40px);
  height: clamp(30px, 3.9063vw, 40px);
  display: block;
  background-image: url(/static/images/sprite/slots.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-roulette {
  width: clamp(30px, 3.9063vw, 40px);
  height: clamp(30px, 3.9063vw, 40px);
  display: block;
  background-image: url(/static/images/sprite/roulette.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-cards {
  width: clamp(30px, 3.9063vw, 40px);
  height: clamp(30px, 3.9063vw, 40px);
  display: block;
  background-image: url(/static/images/sprite/cards.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-lotteries {
  width: clamp(30px, 3.9063vw, 40px);
  height: clamp(30px, 3.9063vw, 40px);
  display: block;
  background-image: url(/static/images/sprite/lotteries.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-jackpots {
  width: clamp(30px, 3.9063vw, 40px);
  height: clamp(30px, 3.9063vw, 40px);
  display: block;
  background-image: url(/static/images/sprite/jackpots.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-games {
  width: clamp(30px, 3.9063vw, 40px);
  height: clamp(30px, 3.9063vw, 40px);
  display: block;
  background-image: url(/static/images/sprite/games.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-shop {
  width: 18px;
  height: 18px;
  display: block;
  background-image: url(/static/images/sprite/shop.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-aviator {
  width: 67px;
  height: 18px;
  display: block;
  background-image: url(/static/images/sprite/aviator.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-cabin {
  width: 26px;
  height: 13px;
  display: block;
  background-image: url(/static/images/sprite/cabin.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-game {
  width: 54px;
  height: 48px;
  display: block;
  background-image: url(/static/images/sprite/game.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-sport {
  width: clamp(30px, 3.9063vw, 40px);
  height: clamp(30px, 3.9063vw, 40px);
  display: block;
  background-image: url(/static/images/sprite/sport.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-more {
  width: 20px;
  height: 14px;
  display: block;
  background-image: url(/static/images/sprite/more.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-master {
  width: clamp(28px, 2.7419vw, 34px);
  height: clamp(20px, 2.1774vw, 27px);
  display: block;
  background-image: url(/static/images/sprite/master.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-visa {
  width: clamp(80px, 9.6774vw, 120px);
  height: clamp(20px, 2.1774vw, 27px);
  display: block;
  background-image: url(/static/images/sprite/visa.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-maestro {
  width: clamp(45px, 4.8387vw, 60px);
  height: clamp(20px, 2.1774vw, 27px);
  display: block;
  background-image: url(/static/images/sprite/maestro.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-webmoney {
  width: clamp(90px, 9.6774vw, 120px);
  height: clamp(20px, 2.1774vw, 27px);
  display: block;
  background-image: url(/static/images/sprite/webmoney.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-ecopayz {
  width: clamp(90px, 9.6774vw, 120px);
  height: clamp(20px, 2.1774vw, 27px);
  display: block;
  background-image: url(/static/images/sprite/ecopayz.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-btc {
  width: clamp(90px, 9.6774vw, 120px);
  height: clamp(20px, 2.1774vw, 27px);
  display: block;
  background-image: url(/static/images/sprite/btc.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-fifa {
  width: clamp(59px, 6.371vw, 79px);
  height: clamp(26px, 4.5161vw, 56px);
  display: block;
  background-image: url(/static/images/sprite/fifa.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-nhl {
  width: clamp(20px, 3.2258vw, 40px);
  height: clamp(26px, 4.5161vw, 56px);
  display: block;
  background-image: url(/static/images/sprite/nhl.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-wta {
  width: clamp(37px, 4.5968vw, 57px);
  height: clamp(26px, 4.5161vw, 56px);
  display: block;
  background-image: url(/static/images/sprite/wta.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-fiba {
  width: clamp(41px, 4.9194vw, 61px);
  height: clamp(26px, 4.5161vw, 56px);
  display: block;
  background-image: url(/static/images/sprite/fiba.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-atp {
  width: clamp(29px, 3.9516vw, 49px);
  height: clamp(26px, 4.5161vw, 56px);
  display: block;
  background-image: url(/static/images/sprite/atp.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-uefa {
  width: clamp(51px, 5.7258vw, 71px);
  height: clamp(26px, 4.5161vw, 56px);
  display: block;
  background-image: url(/static/images/sprite/uefa.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-ihf {
  width: clamp(79px, 7.9839vw, 99px);
  height: clamp(26px, 4.5161vw, 56px);
  display: block;
  background-image: url(/static/images/sprite/ihf.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.smahjle-icon-nba {
  width: clamp(48px, 5.4839vw, 68px);
  height: clamp(26px, 4.5161vw, 56px);
  display: block;
  background-image: url(/static/images/sprite/nba.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.smahjle-orange-button {
  font-family: var(--font-family);
  border-radius: 50px;
  color: rgba(var(--cl-a), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(14px, 1.4516vw, 18px);
  line-height: 1.2;
  font-weight: 500;
  padding: 10px clamp(10px, 1.6129vw, 20px);
  background-image: var(--gr-a);
  -webkit-box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
  box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
}
.smahjle-orange-button:hover {
  background-image: 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);
}

.smahjle-add-btn {
  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: 50%;
  -webkit-box-shadow: 0 11px 27px rgba(250, 65, 0, 0.631372549);
  box-shadow: 0 11px 27px rgba(250, 65, 0, 0.631372549);
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: -20px;
  border-radius: 50%;
  background-image: var(--gr-j);
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.smahjle-blue-button {
  font-family: var(--font-family);
  border-radius: 50px;
  color: rgba(var(--cl-a), 1);
  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;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  background-image: var(--gr-c);
  font-size: clamp(14px, 1.4516vw, 18px);
  padding: 10px clamp(10px, 1.6129vw, 20px);
}
.smahjle-blue-button:hover {
  background-image: var(--gr-d);
}
.smahjle-blue-button--mode {
  background-image: var(--gr-l);
  -webkit-box-shadow: 0 11px 27px rgba(4, 109, 223, 0.231372549);
  box-shadow: 0 11px 27px rgba(4, 109, 223, 0.231372549);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.smahjle-blue-button--mode:hover {
  background-image: var(--gr-l);
  -webkit-box-shadow: 0 11px 27px rgba(4, 109, 223, 0.631372549);
  box-shadow: 0 11px 27px rgba(4, 109, 223, 0.631372549);
}

.smahjle-yellow-button {
  font-family: var(--font-family);
  background: -webkit-gradient(linear, left top, left bottom, from(#fa9400), to(#fab700));
  background: linear-gradient(180deg, #fa9400, #fab700);
  border-radius: 40px;
  color: rgba(var(--cl-b), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  padding: 10px clamp(30px, 4.8387vw, 60px) 10px clamp(10px, 1.6129vw, 20px);
  text-align: center;
  white-space: nowrap;
  position: relative;
}

.smahjle-lock-button {
  font-family: var(--font-family);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(var(--bg-c), 1);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 5px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 10px;
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  color: rgba(var(--cl-a), 1);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 1239px) {
  .smahjle-lock-button {
    width: 40px;
    height: 40px;
    text-indent: -999px;
    overflow: hidden;
  }
  .smahjle-lock-button i {
    left: 4px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.smahjle-lock-button:hover {
  -webkit-box-shadow: inset 0 0 0 1.5px #fff;
  box-shadow: inset 0 0 0 1.5px #fff;
}

.smahjle-action-button {
  font-family: var(--font-family);
  background-color: rgba(var(--bg-d), 1);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #428cdc), to(#0992af));
  background-image: linear-gradient(0deg, #428cdc 0, #0992af);
  border-radius: 20px;
  -webkit-box-shadow: 0 11px 27px rgba(66, 140, 220, 0.631372549);
  box-shadow: 0 11px 27px rgba(66, 140, 220, 0.631372549);
  color: rgba(var(--cl-a), 1);
  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;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  grid-gap: 10px;
  padding: 10px;
  text-transform: uppercase;
}
.smahjle-action-button:hover {
  color: rgba(var(--cl-c), 1);
}
.smahjle-action-button:hover i {
  -webkit-filter: none;
  filter: none;
}
.smahjle-action-button i {
  -webkit-filter: brightness(300%) grayscale(1);
  filter: brightness(300%) grayscale(1);
}

.smahjle-shop-button {
  position: relative;
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 8px;
  font-size: clamp(14px, 1.4516vw, 18px);
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding: 0 3px;
}
.smahjle-shop-button:hover {
  color: rgba(var(--cl-c), 1);
}
.smahjle-shop-button::before {
  border: 2px solid var(--br-a);
  border-radius: 20px;
  bottom: -10px;
  content: "";
  left: -10px;
  position: absolute;
  right: -12px;
  top: -10px;
}
.smahjle-shop-button i {
  position: relative;
  top: -1px;
}

.smahjle-play-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;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.smahjle-main-top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.smahjle-main-top__title {
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  font-size: clamp(16px, 1.4516vw, 18px);
  font-weight: 500;
  line-height: var(--app-base-spacing);
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 8px;
  padding-left: 62px;
  position: relative;
}
.smahjle-main-top__title i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-41%);
  -ms-transform: translateY(-41%);
  transform: translateY(-41%);
}
.smahjle-main-top__btn {
  background-color: rgba(var(--bg-i), 1);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 8px;
  height: clamp(35px, 3.2258vw, 40px);
  padding: clamp(5px, 0.8065vw, 10px) clamp(15px, 1.6129vw, 20px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: rgba(var(--cl-a), 1);
  font-size: clamp(14px, 1.2903vw, 16px);
  font-weight: 500;
  line-height: 20px;
  font-family: var(--font-family);
}
.smahjle-main-top__btn:hover {
  background-color: rgba(var(--bg-j), 1);
}
.smahjle-main-top__btn i {
  position: relative;
  top: calc(clamp(0px, 0.0806vw, 1px) * -1);
}

.smahjle-main-social {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: clamp(10px, 1.2097vw, 15px) 15px;
  background-color: rgba(var(--bg-n), 1);
  border-radius: 16px;
  padding: 10px;
}
@media (max-width: 767px) {
  .smahjle-main-social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.table-responsive {
    width: auto;
    max-width: 91vw;
}
.smahjle-main-social--mode {
  border-radius: 0;
  padding: 10px var(--container-offset);
  margin: 0 calc(var(--container-offset) * -1);
}

.smahjle-main-slider {
  position: absolute;
  left: calc((280px + var(--container-offset) * 2) * -1);
  top: 0;
  width: 100vw;
  height: 370px;
  background-color: rgba(var(--bg-m), 1);
}
@media (min-width: 1920px) {
  .smahjle-main-slider {
    height: 460px;
  }
}
@media (max-width: 1300px) {
  .smahjle-main-slider {
    height: clamp(205px, 20.577vw, 300px);
  }
}
@media (max-width: 576px) {
  .smahjle-main-slider {
    height: clamp(165px, 35.59vw, 205px);
  }
}
@media (max-width: 1024px) {
  .smahjle-main-slider {
    position: relative;
    left: initial;
    top: initial;
    width: calc(100% + var(--container-offset) * 2);
    margin-left: calc(var(--container-offset) * -1);
  }
}
.smahjle-main-slider__image {
  width: 100%;
  height: 370px;
}
@media (min-width: 1920px) {
  .smahjle-main-slider__image {
    height: 460px;
  }
}
@media (max-width: 1300px) {
  .smahjle-main-slider__image {
    height: clamp(205px, 20.577vw, 300px);
  }
}
@media (max-width: 576px) {
  .smahjle-main-slider__image {
    height: clamp(165px, 35.59vw, 205px);
  }
}
.smahjle-main-slider__image img, .smahjle-main-slider__image picture {
  width: 100%;
  height: 100%;
}
.smahjle-main-slider__button {
  position: absolute;
  inset: 0;
  z-index: 5;
}
@media (max-width: 576px) {
  .smahjle-main-slider .splide__pagination {
    bottom: 6px;
  }
}
.smahjle-main-slider .splide__pagination__page {
  background: none;
  border: 2px solid var(--br-h);
  border-radius: 50%;
  height: clamp(10px, 1.129vw, 14px);
  width: clamp(10px, 1.129vw, 14px);
  opacity: 1;
  outline: none;
}
.smahjle-main-slider .splide__pagination__page.is-active {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background: rgba(var(--bg-a), 1);
  border-color: var(--br-c);
}
.smahjle-main-slider .splide__arrow {
  display: none;
}

.smahjle-sidebar-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 5px;
  background: var(--gr-e);
  border-radius: 15px;
  padding-top: 32px;
}
.smahjle-sidebar-banner__title {
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  margin-top: 12px;
  padding: 0 12px;
  text-transform: uppercase;
}
.smahjle-sidebar-banner__count {
  color: rgba(var(--cl-c), 1);
  font-family: var(--font-family);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-top: 5px;
  min-height: 30px;
  padding: 0 8px;
  text-transform: uppercase;
}
.smahjle-sidebar-banner .smahjle-orange-button {
  margin-top: 2px;
}
.smahjle-sidebar-banner::before {
  background-image: url(/static/images/sprite/crown.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 59px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  right: 0;
  top: -15px;
  width: 87px;
}
.smahjle-sidebar-banner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -54%);
  -ms-transform: translate(-50%, -54%);
  transform: translate(-50%, -54%);
  background-image: url(/static/images/sprite/border.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 70%;
}

.smahjle-stock-slider .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: calc(clamp(20px, 2.4194vw, 30px) / 2 * -1);
  -webkit-transform: translateY(-110%);
  -ms-transform: translateY(-110%);
  transform: translateY(-110%);
  grid-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .smahjle-stock-slider .splide__arrows {
    -webkit-transform: translateY(-105%);
    -ms-transform: translateY(-105%);
    transform: translateY(-105%);
  }
}
.smahjle-stock-slider .splide__arrow {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  position: static;
  border: 1px solid var(--br-j);
  height: clamp(35px, 3.2258vw, 40px);
  width: clamp(35px, 3.2258vw, 40px);
  background-color: initial;
  opacity: 1;
}
.smahjle-stock-slider .splide__arrow svg {
  fill: rgba(var(--cl-a), 1);
}
.smahjle-stock-slider .splide__arrow:hover svg {
  fill: rgba(var(--cl-c), 1);
}
.smahjle-stock-slider .splide__arrow:disabled {
  opacity: 0.4;
}

.smahjle-side-banner {
  background-color: rgba(var(--bg-i), 1);
  border-radius: 15px;
  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: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  padding: 0 11px 20px;
  position: relative;
  height: 274px;
}
@media (max-width: 576px) {
  .smahjle-side-banner {
    height: clamp(170px, 34.722vw, 200px);
  }
}
.smahjle-side-banner__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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-gap: clamp(15px, 1.9355vw, 24px);
  padding: 0 20px 20px;
  position: absolute;
  bottom: 0;
}
.smahjle-side-banner__box .smahjle-more {
  z-index: 6;
}
.smahjle-side-banner__image {
  margin-top: -10px;
}
@media (max-width: 576px) {
  .smahjle-side-banner__image {
    width: clamp(140px, 21.2891vw, 218px);
    height: clamp(145px, 22.168vw, 227px);
    margin-top: -8px;
  }
  .smahjle-side-banner__image img, .smahjle-side-banner__image picture {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .smahjle-side-banner__image--mode {
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
  .smahjle-side-banner__image--mode {
    margin-top: -4px;
    width: clamp(136px, 31.25vw, 180px);
    height: clamp(98px, 22.569vw, 130px);
  }
}
.smahjle-side-banner__title {
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  font-size: clamp(16px, 1.6129vw, 20px);
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
}
.smahjle-side-banner .smahjle-more {
  text-transform: uppercase;
}
.smahjle-side-banner__btn {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.smahjle-bonus-slider {
  position: relative;
  min-height: 274px;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .smahjle-bonus-slider {
    min-height: initial;
    max-height: clamp(170px, 34.722vw, 200px);
  }
}
.smahjle-bonus-slider__button {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.smahjle-bonus-slider__slide {
  overflow: hidden;
  border-radius: 15px;
  display: block;
  min-height: 274px;
  -webkit-transition: all 1.25s ease-in-out;
  transition: all 1.25s ease-in-out;
  -webkit-box-shadow: 10px -12px 20px 0 rgba(0, 0, 0, 0.1490196078);
  box-shadow: 10px -12px 20px 0 rgba(0, 0, 0, 0.1490196078);
  margin-right: calc((clamp(540px, 35.417vw, 680px) - clamp(540px, 35.417vw, 680px) / 3) * -1);
}
@media (min-width: 1930px) {
  .smahjle-bonus-slider__slide {
    margin-right: calc((clamp(540px, 35.417vw, 680px) - clamp(540px, 35.417vw, 680px) / 2) * -1);
  }
}
@media (min-width: 2300px) {
  .smahjle-bonus-slider__slide {
    margin-right: calc((clamp(540px, 35.417vw, 680px) - clamp(540px, 35.417vw, 680px) / 1.55) * -1);
  }
}
.smahjle-bonus-slider__slide:not(.is-active) .smahjle-bonus-slider__box {
  -webkit-transform: translateX(10%);
  -ms-transform: translateX(10%);
  transform: translateX(10%);
}
.smahjle-bonus-slider__slide:hover .smahjle-bonus-slider__box::before {
  opacity: 0.5;
}
.smahjle-bonus-slider__slide.is-prev {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}
.smahjle-bonus-slider__slide.is-active {
  z-index: 30 !important;
}
.smahjle-bonus-slider__slide.is-active::before {
  display: none;
}
.smahjle-bonus-slider__slide.is-active .smahjle-bonus-slider__box {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.smahjle-bonus-slider__slide.is-active .smahjle-bonus-slider__box::before {
  opacity: 0;
}
.smahjle-bonus-slider__slide.is-active .smahjle-bonus-slider__image img,
.smahjle-bonus-slider__slide.is-active .smahjle-bonus-slider__image picture {
  -o-object-position: left;
  object-position: left;
}
@media (max-width: 576px) {
  .smahjle-bonus-slider__slide {
    min-width: 200px;
  }
}
.smahjle-bonus-slider__box {
  height: 100%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  border-radius: 15px;
  overflow: hidden;
}
.smahjle-bonus-slider__box::before {
  background: rgba(var(--bg-o), 0.451);
  border-radius: 15px;
  bottom: 0;
  content: "";
  left: 0;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (max-width: 576px) {
  .smahjle-bonus-slider__box {
    max-height: clamp(170px, 34.722vw, 200px);
  }
}
.smahjle-bonus-slider__image {
  width: 100%;
  height: 100%;
}
.smahjle-bonus-slider__image img,
.smahjle-bonus-slider__image picture {
  max-width: 680px;
  max-height: 274px;
  width: 100%;
  height: 100%;
}
.smahjle-bonus-slider__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.smahjle-bonus-slider__bg img,
.smahjle-bonus-slider__bg picture {
  width: 100%;
  height: 100%;
}

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

.smahjle-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;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}
.smahjle-game-card:hover .smahjle-game-card__image img, .smahjle-game-card:hover .smahjle-game-card__image picture {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.smahjle-game-card:hover .smahjle-game-card__wrapp {
  opacity: 1;
  visibility: visible;
}
.smahjle-game-card__btn {
  inset: 0;
  position: absolute;
  z-index: 20;
}
.smahjle-game-card__wrapp {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  position: absolute;
  inset: 0;
  z-index: 5;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: rgba(var(--bg-i), 0.8);
}
.smahjle-game-card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.smahjle-game-card__image img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.smahjle-game-card__title {
  font-family: var(--font-family);
  color: rgba(var(--cl-f), 1);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  max-height: 32px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.smahjle-game-card__title:hover {
  color: rgba(var(--cl-c), 1);
}
.smahjle-game-card__providers {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 10;
  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;
}
.smahjle-game-card .smahjle-blue-button {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(var(--bg-d), 1);
  border-radius: 20px;
  color: rgba(var(--cl-g), 1);
  font-size: 14px;
  line-height: 1;
  padding: 3px 10px;
  text-transform: uppercase;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.smahjle-game-card .smahjle-blue-button:hover {
  color: rgba(var(--cl-a), 1);
}

.smahjle-stock-card {
  border: 10px solid var(--br-f);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
  width: 100%;
}
.smahjle-stock-card:hover {
  border-color: var(--br-g);
}
.smahjle-stock-card__image {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .smahjle-stock-card__image {
    -o-object-position: 55% 50%;
    object-position: 55% 50%;
  }
}
.smahjle-stock-card__btn {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.smahjle-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;
}
.smahjle-accordion__button {
  width: 100%;
  padding: 10px 15px;
  background: rgba(var(--bg-c), 1);
  border: solid 1px var(--br-g);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 5px;
  -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;
}
.smahjle-accordion__button.active {
  background: rgba(var(--bg-c), 0.4);
}
.smahjle-accordion__button.active .smahjle-accordion__icon {
  rotate: 135deg;
}
.smahjle-accordion__button:hover {
  background: rgba(var(--bg-c), 0.4);
}
.smahjle-accordion__icon {
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--br-d);
  border-left: 2px solid var(--br-d);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  rotate: -45deg;
}
.smahjle-accordion__content {
  width: 100%;
}
.smahjle-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: 15px;
  border: solid 1px var(--br-g);
  border-top: none;
  margin-bottom: 1px;
}
.smahjle-accordion__title {
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  text-align: start;
}
.smahjle-accordion p {
  font-size: clamp(14px, 1.1511vw, 16px);
  font-weight: 400;
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
}

.smahjle-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, 2.4194vw, 30px);
  padding: 15px 20px;
  border: 3px solid var(--br-g);
  border-radius: 12px;
}
.smahjle-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, 1.6129vw, 20px);
  width: 225px;
}
@media (max-width: 576px) {
  .smahjle-play-card__btns {
    width: 100%;
  }
}
.smahjle-play-card__title {
  color: rgba(var(--cl-h), 1);
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(20px, 2.0968vw, 26px);
  font-style: normal;
  line-height: 130%;
  text-transform: uppercase;
  background: var(--gr-h);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.smahjle-play-card__image {
  border-radius: 8px;
  overflow: hidden;
}
.smahjle-play-card__image img {
  border-radius: 8px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.smahjle-play-card__image img:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.smahjle-play-card p {
  color: rgba(var(--cl-a), 1);
  font-family: var(--font-family);
  font-size: clamp(14px, 1.2903vw, 16px);
  line-height: 120%;
  width: 100%;
  text-align: center;
}

.smahjle-bonus-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: clamp(350px, 29.6774vw, 368px);
  width: 100%;
  overflow: hidden;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  background-color: rgba(var(--bg-l), 1);
  border-radius: 15px;
  -webkit-box-shadow: 0 7px 20px rgba(12, 95, 184, 0.1019607843);
  box-shadow: 0 7px 20px rgba(12, 95, 184, 0.1019607843);
  position: relative;
}
@media (max-width: 1024px) {
  .smahjle-bonus-card {
    min-height: initial;
    height: 100%;
  }
}
.smahjle-bonus-card:hover {
  -webkit-box-shadow: 0 12px 28px rgba(12, 95, 184, 0.3019607843);
  box-shadow: 0 12px 28px rgba(12, 95, 184, 0.3019607843);
  -webkit-transform: scale(1.05, 1.045);
  -ms-transform: scale(1.05, 1.045);
  transform: scale(1.05, 1.045);
}
.smahjle-bonus-card:hover .smahjle-add-btn {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.smahjle-bonus-card__image {
  width: 100%;
  max-height: 216px;
}
.smahjle-bonus-card__image img, .smahjle-bonus-card__image picture {
  width: 100%;
  height: 100%;
  max-height: 216px;
}
.smahjle-bonus-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 5px;
  position: relative;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 25px 20px 25px 22px;
  position: relative;
  text-align: center;
  width: 100%;
}
.smahjle-bonus-card__label {
  background-color: rgba(var(--bg-m), 1);
  border-radius: 15px;
  display: block;
  left: 10px;
  padding: 4px 8px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
  font-size: clamp(12px, 1.129vw, 12px);
  line-height: 100%;
  font-family: var(--font-family);
  color: rgba(var(--cl-k), 1);
}
.smahjle-bonus-card__label--violet {
  color: rgba(var(--cl-j), 1);
}
.smahjle-bonus-card__label--blue {
  color: rgba(var(--cl-l), 1);
}
.smahjle-bonus-card__title {
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  font-size: clamp(16px, 1.6129vw, 20px);
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 4px;
  text-transform: uppercase;
  text-align: center;
}
.smahjle-bonus-card p {
  font-family: var(--font-family);
  color: rgba(var(--cl-i), 1);
  font-size: clamp(14px, 1.2903vw, 16px);
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}
.smahjle-bonus-card__btn {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.smahjle-header-nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(var(--bg-e), 1);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 5px;
}
.smahjle-header-nav__item {
  padding: 10px clamp(10px, 1.189vw, 20px);
  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;
}
.smahjle-header-nav__link {
  font-family: var(--font-family);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(var(--cl-a), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(14px, 1.4516vw, 18px);
  font-weight: 500;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.smahjle-header-nav__link:hover {
  color: rgba(var(--cl-c), 1);
}
.smahjle-header-nav__link:hover .smahjle-plane {
  bottom: 0;
  opacity: 1;
}
.smahjle-header-nav__link.active {
  color: rgba(var(--cl-d), 1);
}
.smahjle-header-nav__link--mode {
  color: rgba(var(--cl-c), 1);
}
.smahjle-header-nav .smahjle-plane {
  bottom: -20px;
  opacity: 0;
  position: relative;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: opacity 0.5s linear, bottom 0.5s linear;
  transition: opacity 0.5s linear, bottom 0.5s linear;
}

.smahjle-sidebar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.smahjle-sidebar-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
}
.smahjle-sidebar-nav__item:not(:first-child) {
  border-top: 2px solid var(--br-b);
}
.smahjle-sidebar-nav__link {
  font-family: var(--font-family);
  font-size: clamp(14px, 1.5625vw, 16px);
  font-weight: 500;
  line-height: 110%;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
  color: rgba(var(--cl-a), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
  display: flex;
  height: clamp(45px, 5.8594vw, 60px);
}
.smahjle-sidebar-nav__link:hover {
  color: rgba(var(--cl-e), 1);
}
.smahjle-sidebar-nav__link.active {
  color: rgba(var(--cl-c), 1);
}

.smahjle-choice-nav {
  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;
  background-color: rgba(var(--bg-a), 1);
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
}
.smahjle-choice-nav__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: clamp(45px, 5.8594vw, 60px);
  width: 100%;
  border-top: 2px solid var(--br-d);
}
.smahjle-choice-nav__item--mode {
  background-color: rgba(var(--bg-f), 1);
  border-top: 2px solid var(--br-c);
}
.smahjle-choice-nav__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 1.5625vw, 16px);
  color: rgba(var(--cl-b), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  grid-gap: 10px;
  padding: 0 10px;
}
.smahjle-choice-nav__link:hover {
  color: rgba(var(--cl-e), 1);
}
.smahjle-choice-nav__link.active {
  color: rgba(var(--cl-e), 1);
}

.smahjle-games-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(211px, 1fr));
  grid-gap: clamp(10px, 1.6129vw, 20px);
}
@media (max-width: 1440px) {
  .smahjle-games-list {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }
}

.smahjle-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: clamp(10px, 2.4194vw, 30px);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.smahjle-footer-nav__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(var(--cl-e), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family);
  font-size: clamp(14px, 1.2903vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.smahjle-footer-nav__link:hover {
  color: rgba(var(--cl-c), 1);
}

.smahjle-bonus-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(var(--bg-m), 1);
  background-image: var(--gr-i);
  border-radius: 15px 15px 0 0;
}
.smahjle-bonus-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.smahjle-bonus-nav__item:not(:first-child)::before {
  content: "";
  width: 2px;
  height: clamp(48px, 6.371vw, 79px);
  display: block;
  background-image: var(--gr-k);
}
.smahjle-bonus-nav__btn {
  font-family: var(--font-family);
  color: rgba(var(--cl-a), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 6px;
  font-size: clamp(16px, 1.6129vw, 20px);
  padding: clamp(13px, 2.0968vw, 26px) clamp(10px, 1.6129vw, 20px);
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.smahjle-bonus-nav__btn:hover {
  text-shadow: 0 0 12px #448ede, 0 0 12px #448ede, 0 0 12px rgba(68, 142, 222, 0.4), 0 0 12px rgba(68, 142, 222, 0.4);
}
.smahjle-bonus-nav__btn.active {
  text-shadow: 0 0 12px #448ede, 0 0 12px #448ede, 0 0 12px rgba(68, 142, 222, 0.4), 0 0 12px rgba(68, 142, 222, 0.4);
}

.smahjle-bonus-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: clamp(15px, 1.6129vw, 20px);
}

.smahjle-header {
  width: 100%;
  padding: 10px 0;
  background-color: rgba(var(--bg-l), 1);
  background-image: var(--gr-f);
  position: fixed;
  top: 0;
  z-index: 80;
}
.smahjle-header.sticky {
  -webkit-box-shadow: 0 11px 25px rgba(66, 140, 220, 0.631372549);
  box-shadow: 0 11px 25px rgba(66, 140, 220, 0.631372549);
}
.smahjle-header__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;
}
.smahjle-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 20px;
}
.smahjle-header__top-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  grid-gap: clamp(10px, 1.6129vw, 20px);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .smahjle-header__top-btns button {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .smahjle-header__top-btns button {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .smahjle-header__top {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.smahjle-header__top .smahjle-logo {
  display: none;
}
@media (max-width: 1024px) {
  .smahjle-header__top .smahjle-logo {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 576px) {
  .smahjle-header__top .smahjle-logo {
    top: 0;
    -webkit-transform: translate(-50%, -20%);
    -ms-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
  }
}
.smahjle-header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
}
@media (max-width: 1239px) {
  .smahjle-header__bottom .smahjle-icon-logo {
    background-image: url(/static/images/template/logo.png);
    width: 46px;
    height: 46px;
  }
}
@media (max-width: 1024px) {
  .smahjle-header__bottom {
    display: none;
  }
}
@media (max-width: 1024px) {
  .smahjle-header .smahjle-download-links, .smahjle-header .smahjle-lock-button, .smahjle-header .smahjle-yellow-button, .smahjle-header .smahjle-action-button, .smahjle-header .smahjle-action-button {
    display: none;
  }
}

.smahjle-sidebar {
  z-index: 10;
}
.smahjle-sidebar__top {
  border-radius: 15px;
  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;
  background-color: rgba(var(--bg-i), 1);
  position: relative;
}
.smahjle-sidebar__top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  bottom: -6%;
  left: 0;
  background-color: rgba(var(--bg-i), 1);
  z-index: -1;
  pointer-events: none;
}
.smahjle-sidebar__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: 5px;
}
@media (max-width: 1024px) {
  .smahjle-sidebar__box {
    padding-top: 15px;
    height: 100vh;
  }
}
@media (max-width: 1024px) {
  .smahjle-sidebar {
    position: fixed;
    z-index: 70;
    top: var(--header-height);
    left: var(--container-offset);
    -webkit-transform: translateX(-130%);
    -ms-transform: translateX(-130%);
    transform: translateX(-130%);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    border-radius: 15px;
    height: calc(100vh - (var(--header-height) + 15px));
    overflow-y: auto;
  }
  .smahjle-sidebar.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.smahjle-first-section {
  position: relative;
  margin: -20px 0 30px;
  min-height: 370px;
}
@media (min-width: 1920px) {
  .smahjle-first-section {
    min-height: 460px;
  }
}
@media (max-width: 1300px) {
  .smahjle-first-section {
    min-height: clamp(205px, 20.577vw, 300px);
  }
}
@media (max-width: 1024px) {
  .smahjle-first-section {
    min-height: initial;
  }
}
.smahjle-first-section__box {
  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;
  grid-gap: 20px;
}
.smahjle-first-section__inner {
  display: none;
  -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;
}
@media (max-width: 1024px) {
  .smahjle-first-section__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .smahjle-first-section__inner .smahjle-search-form {
    padding: 0;
  }
  .smahjle-first-section__inner .smahjle-search-form__input {
    max-width: 100%;
  }
}

footer {
  background-color: rgba(var(--bg-i), 1);
  padding: clamp(15px, 1.6129vw, 20px) 0 0;
}

.smahjle-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(10px, 1.6129vw, 20px);
  position: relative;
}
.smahjle-footer__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: clamp(10px, 1.6129vw, 20px);
}
.smahjle-footer__top .smahjle-footer-nav {
  grid-column: 1/-1;
}
.smahjle-footer__top .smahjle-age-limit {
  justify-self: end;
}
.smahjle-footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(10px, 1.6129vw, 20px);
}
@media (min-width: 1920px) {
  .smahjle-footer__box {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .smahjle-footer__box .smahjle-download-links {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    grid-row: 1;
  }
  .smahjle-footer__box .smahjle-main-social--mode {
    grid-column: 1/-1;
  }
}
@media (max-width: 576px) {
  .smahjle-footer__box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.smahjle-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transform: translateX(-230%);
  -ms-transform: translateX(-230%);
  transform: translateX(-230%);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  width: 100%;
  max-width: 440px;
  background-color: rgba(var(--bg-c), 1);
  height: 100vh;
  overflow-y: auto;
  padding: 16px;
  background-color: rgba(var(--bg-l), 1);
  background-image: var(--gr-g);
}
.smahjle-mobile-menu__box {
  grid-gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.smahjle-mobile-menu__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;
  padding-bottom: 20px;
}
.smahjle-mobile-menu .smahjle-header-nav {
  padding: 20px;
  -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;
  grid-gap: 20px;
}
.smahjle-mobile-menu .smahjle-header-nav__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.smahjle-mobile-menu .smahjle-header-nav__link {
  width: 100%;
}
.smahjle-mobile-menu .smahjle-header-nav .smahjle-plane {
  bottom: 0;
  opacity: 1;
}
.smahjle-mobile-menu.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

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

.smahjle-games-section {
  padding-bottom: 30px;
}
.smahjle-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: clamp(20px, 2.4194vw, 30px);
}

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

.smahjle-bonus-section {
  padding-bottom: 30px;
}
.smahjle-bonus-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: 10px;
}

.smahjle-banners-section {
  background-color: rgba(var(--bg-l), 1);
  padding: 10px 0 20px;
  margin-bottom: 20px;
}
.smahjle-banners-section__box {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  grid-gap: clamp(15px, 1.6129vw, 20px);
}
@media (max-width: 1024px) {
  .smahjle-banners-section__box {
    grid-template-columns: repeat(2, 1fr);
  }
  .smahjle-banners-section__box .smahjle-bonus-slider {
    grid-column: 1/-1;
    grid-row: 1;
  }
}
@media (max-width: 576px) {
  .smahjle-banners-section__box {
    grid-template-columns: 1fr;
  }
  .smahjle-banners-section__box .smahjle-bonus-slider {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    grid-column: initial;
    grid-row: initial;
  }
  .smahjle-banners-section__box .smahjle-side-banner {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.smahjle-about-section {
  padding-bottom: clamp(20px, 2.4194vw, 30px);
  overflow: hidden;
}
.smahjle-about-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: clamp(12px, 1.295vw, 18px);
}
.smahjle-about-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: clamp(12px, 1.295vw, 18px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.smahjle-about-section__inner--mode {
  grid-gap: 16px;
}
.smahjle-about-section__inner--mode .smahjle-main-box {
  grid-gap: 12px;
}
.smahjle-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;
}
.smahjle-about-section__inner p {
    font-size: 16px;
    color: #fff;
}

.smahjle-download-content {
    width: 80%;
    margin: 15px auto;
}

.smahjle-faq-title {
    margin-bottom: 15px;
}

.mce-toc {
        background: #012953;
    padding: 15px;
    border: solid 1px var(--br-e);
}

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