:root{
  --container: 1600px;
  --header-height: 112px;
  --content-inner: 16px;
  --gray-light: #b2b2b3;
  --accent: #2e358e;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
iframe{
  height: auto;
  max-width:100%;
  aspect-ratio: 16/9;
}
.o-flex,
.o-flex-column,
.o-flex-wrap {
  display: flex;
}
.o-flex-column {
  flex-direction: column;
}
.o-flex-wrap {
  flex-wrap: wrap;
}

.o-align-center {
  align-items: center;
}
.o-align-end {
  align-items: flex-end;
}
.o-align-start {
  align-items: flex-start;
}

.o-justify-center {
  justify-content: center;
}
.o-justify-end {
  justify-content: flex-end;
}
.o-justify-start {
  justify-content: flex-start;
}
.o-justify-between {
  justify-content: space-between;
}
button {
  border: none;
  background-color: transparent;
}
button:hover {
  cursor: pointer;
}
.o-container {
  padding-left: var(--content-inner);
  padding-right: var(--content-inner);
}
@media (min-width: 1024px) {
  .o-container {
    padding-left: calc(50dvw - var(--container) / 2);
    padding-right: calc(50dvw - var(--container) / 2);
  }
}
.o-btn {
  display: inline-block;
  border-radius: 4px;
  padding: 8px 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  outline: none;
}
.o-btn.o-btn--primary {
  color: #ffffff;
  background: var(--accent);
}
.o-btn--promo-btn {
  --icon: url(../img/icons/btn/copy.svg);
  --icon-color: #000;
  --btn-bg: #f6f6f6;
  --btn-c: #151617;
  align-items: center;
  cursor: pointer;
  display: flex;
  border: 1px solid #f1f1f1;
  gap: 8px;
  justify-content: center;
  line-height: normal;
}
.o-btn--promo-btn span {
  max-width: calc(16em - var(--icon-height));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.o-btn--promo-btn,
.o-btn--promo-btn:hover {
  box-shadow: 0px 4px 0px 0px rgba(208, 208, 208, 0.3490196078);
}
.o-btn--promo-btn.js-copyed {
  pointer-events: none;
  border-color: transparent;
}
.o-btn--promo-btn.js-copyed::after {
  --icon: url(../img/icons/btn/success.svg);
}
.o-btn--secondary {
  outline: 1px solid #f6f6f6;
  color: #f6f6f6;
  transition: 0.2s ease-in-out;
  transition-property: background-color, color, outline, border;
}
.o-btn--secondary:hover {
  background-color: #f6f6f6;
  color: var(--accent);
}
.o-btn--secondary:focus {
  border: 1px solid #f6f6f6;
  outline: 1px solid var(--focus-yellow);
  outline-offset: 1px;
}
.o-btn--secondary:active {
  color: #fff;
  outline-color: #f6f6f6;
}
.c-header {
  display: block;
  padding: 4px 4px 0 4px;
  box-shadow: -3px 0px 50px -2px rgba(0, 0, 0, 0.09);
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 5;
}

.c-header__logo-block {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.c-header__toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  text-align: -webkit-center;
}
.c-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  margin: 2px auto;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.c-header__toggle.js-active span {
  position: absolute;
  width: 36px;
  margin: 0;
}
.c-header__toggle.js-active span:nth-child(1) {
  transform: rotate(45deg);
}
.c-header__toggle.js-active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.c-header__toggle.js-active span:nth-child(3) {
  transform: rotate(-45deg);
}
.c-header__nav-block {
  position: fixed;
  box-shadow: -3px 0px 50px -2px rgba(0, 0, 0, 0.09);
  font-size: 14px;
  height: 100%;
  width: 300px;
  right: 0;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: 0.3s;
  background-color: #fff;
}
.c-header__nav-block.js-active {
  transform: translateX(0);
}
.c-header__nav-list {
  display: block;
  margin: 15px 0;
  list-style: none;
  padding: 0;
  color: #000;
}
.c-header__nav-list li {
  list-style: none;
}

.c-header__nav-list li a {
  color: #000;
  display: block;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
}
.c-header__dropdown-block {
  display: flex;
  justify-content: space-between;
}
.c-header__dropdown-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.c-header__dropdown-toggle span {
  width: 6px;
  height: 2px;
  background-color: #000;
  margin: -1px;
}
.c-header__dropdown-toggle span:nth-child(1) {
  transform: rotate(45deg);
}
.c-header__dropdown-toggle span:nth-child(2) {
  transform: rotate(-45deg);
}
.c-header__dropdown-list {
  display: none;
  padding: 9px 56px 9px 16px;
}
.c-header__dropdown.js-open .c-header__dropdown-list {
  display: block;
  background-color: #fff;
  color: #000;
  padding: 0;
}
.c-header__dropdown.js-open .c-header__dropdown-list a {
  font-size: 12px;
}
.c-header__dropdown.js-open .c-header__dropdown-toggle i {
  transform: rotate(180deg);
}
.c-header__dropdown.js-open .c-header__dropdown-toggle span {
  background-color: #fff;
}
.c-header__dropdown.js-open .c-header__dropdown-block {
  background-color: #000;
}
.c-header__dropdown.js-open .c-header__dropdown-block i,
.c-header__dropdown.js-open .c-header__dropdown-block a{
  color: #fff;
}
@media (min-width: 768px) {
  .c-header {
    padding: 10px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-header__toggle {
    display: none;
  }
  .c-header__nav-block {
    display: flex;
    position: relative;
    box-shadow: none;
    width: auto;
    font-size: 16px;
    transform: none;
    transition: 0;
  }
  .c-header__nav-list {
    display: flex;
    margin: 0;
    gap: 20px;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
  }
  .c-header__nav-list li a {
    font-size: 16px;
  }
  .c-header__dropdown-block {
    white-space: nowrap;
    align-items: center;
  }
  .c-header__dropdown:hover .c-header__dropdown-list {
    position: fixed;
    display: block;
    background-color: #fff;
    color: #000;
    padding: 15px;
    width: 270px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.09);
  }
  .c-header__dropdown-toggle {
    width: 16px;
    height: 24px;
    margin: 2px 0;
  }
  .c-header__dropdown-list {
    display: none;
    padding: 9px 56px 9px 16px;
    transition: 0.5s;
  }
  .c-header__dropdown-list li a {
    font-size: 14px;
    padding: 1px 0;
  }
  .c-header__dropdown.js-open .c-header__dropdown-list {
    position: fixed;
    display: block;
    background-color: #fff;
    color: #000;
    padding: 15px;
    width: 270px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.09);
  }
  .c-header__dropdown.js-open .c-header__dropdown-list li:hover a {
    display: flex;
  }
  .c-header__dropdown.js-open .c-header__dropdown-list li a {
    font-size: 14px;
    padding: 1px 0;
  }
  .c-header__dropdown.js-open .c-header__dropdown-list li a::before {
    content: " > ";
    font-weight: bold;
    display: inline;
    margin: 0 -10px 0 0;
    color: #fff;
  }
  .c-header__dropdown.js-open .c-header__dropdown-toggle span {
    background-color: #000;
  }
  .c-header__dropdown.js-open .c-header__dropdown-block {
    background-color: #fff;
    color: #000;
  }
}
.c-breadcrumbs {
  padding: 12px 0;
}
.c-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
  font-size: 16px;
}

.c-breadcrumbs__list > li {
  font-weight: 700;
  color: #1d1d1d;
}

.c-breadcrumbs__list > li > a {
  display: flex;
  align-items: center;
  line-height: 16px;
  color: #535353;
}

.c-breadcrumbs__list > li > a:hover {
  color: var(--accent);
}

.c-breadcrumbs__list > li > a::after {
  content: ">";
  font-size: 14px;
  margin-left: 8px;
  line-height: 13px;
}

.section {
  padding-top: 35px;
  padding-bottom: 34px;
}
.o-icon__left::before,
.o-icon__right::after {
  -webkit-mask-image: var(--icon);
  mask-image: var(--icon);
}

.o-icon-lazy__left.lazyloaded::before,
.o-icon-lazy__right.lazyloaded::after {
  -webkit-mask-image: var(--icon);
  mask-image: var(--icon);
}

.o-icon-lazy__left,
.o-icon-lazy__right,
.o-icon__left,
.o-icon__right {
  --icon-height: 24px;
  --icon-width: var(--icon-height);
  --icon-color: var(--bg);
  position: relative;
}
.o-icon-lazy__left.o-bg::before,
.o-icon-lazy__left.o-bg::after,
.o-icon-lazy__right.o-bg::before,
.o-icon-lazy__right.o-bg::after,
.o-icon__left.o-bg::before,
.o-icon__left.o-bg::after,
.o-icon__right.o-bg::before,
.o-icon__right.o-bg::after {
  background-image: var(--icon);
}
.o-icon-lazy__left::before,
.o-icon-lazy__right::after,
.o-icon__left::before,
.o-icon__right::after {
  background-color: var(--icon-color);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  content: "";
  display: block;
  height: var(--icon-height);
  width: var(--icon-width);
}
.o-p-img,
.o-two-cols {
  display: grid;
  gap: var(--xs,4px);
  margin: var(--xs,4px) 0;
}
.o-p-img {
  display: grid;
  place-items: center;
  gap: var(--content-inner);
}
.o-p-img div {
  display: flex;
  flex-direction: column;
  gap: var(--content-inner);
}
@media (min-width: 768px) {
  .o-p-img,
  .o-two-cols {
    grid-template-columns: auto auto;
  }
}

.o-table-caption,
.o-table caption {
  font-size: clamp(1.25rem, 3dvw, 2rem);
  font-weight: bold;
  margin-bottom: clamp(var(--xs,4px), 2dvw, var(--s,8px));
  text-align: left;
}

.o-table,
.o-table-container {
  overflow-x: auto;
}

.o-table table {
  border-spacing: 0;
  width: 100%;
}
.o-table th,
.o-table td {
  padding: clamp(0.5rem, 2dvw, 1rem);
}
.o-table th:first-child,
.o-table td:first-child {
  border-left: 1px solid var(--gray-light);
}
.o-table th:last-child,
.o-table td:last-child {
  border-right: 1px solid var(--gray-light);
}
.o-table th {
  background: var(--accent);
  color: #fff;
}

.o-table tbody th,
.o-table tbody td {
  border-bottom: 1px solid var(--gray-light);
}
.o-table tbody tr:first-child td,
.o-table tbody tr:first-child th {
  border-top: 1px solid var(--gray-light);
}
.c-content {
  display: grid;
  gap: 8px;
  padding-top: var(--header-height);
  padding-bottom: 50px;
}
.c-content p{
  margin: 0;
  line-height: normal;
}
.c-content ol,
.c-content ul {
  padding-left: 1rem;
}
.c-content ul {
  list-style: disc;
}
.c-content h2 {
  padding-top: 1rem;
}

.c-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.c-rating {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-rating__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f4f8ff;
  border-radius: 16px;
  padding: 12px;
  color: #000;
}
.c-rating__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-rating__col--full {
  flex: 1;
}
.c-rating__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  width: 100%;
}
.c-rating__logo img {
  display: block;
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.c-rating__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-rating__name {
  font-size: 16px;
  font-weight: 700;
}
.c-rating__rate {
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-rating__rate::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #0042db;
  mask-image: var(--rate-icon);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.c-rating__bonus {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.c-rating__advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}
.c-rating__island {
  background: #27374f;
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
  color: #fff;
  line-height: normal;
  font-size: 14px;
}
.c-rating__btns .o-btn {
  flex: 1 0 160px;
}
@media (min-width: 1280px) {
  .c-rating__item {
    flex-direction: row;
    align-items: center;
  }
  .c-rating__col.c-rating__first {
    min-width: 270px;
  }
  .c-rating__item .o-btn {
    min-width: fit-content;
  }
  .c-rating__island {
    flex: 1 0 calc(33% - 30px);
  }
}
.c-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 5dvw, 64px);
  padding-left: 0;
  padding-top: 10px;
  margin-bottom: 0;
  list-style: none;
}
.c-categories img {
  height: 48px;
  width: 48px;
}
.c-categories a {
  align-items: center;
  display: flex;
  flex-direction: column;
  color: #979797;
  font-size: 16px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}
.c-categories .nav-link.active {
  color: #2a8eff;
}
:root {
  --container: 1100px;
  --content-inner: 16px;
}

.o-btn-show-more {
  background: unset;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  line-height: 31px;
  padding: 0;
  outline: none;
  text-align: left;
  width: fit-content;
}

.c-first-words-container {
  background-color: #4a80d7;
  padding: var(--content-inner);
}
.c-first-words__accordion,
.c-first-words {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-first-words h1 {
  color: inherit;
}
.c-first-words * {
  margin: 0 !important;
}
.c-first-words.js-expanded .c-first-words__accordion {
  max-height: unset;
  overflow: unset;
}
.c-first-words__accordion {
  max-height: clamp(44px, 5dvw, 66px);
  overflow: hidden;
}
.c-first-words .o-btn-show-more {
  visibility: hidden;
}
.c-first-words__accordion.js-text-hidden + .o-btn-show-more {
  visibility: visible;
}
.c-circle-linking {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}
.c-circle-linking__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  transition: transform 0.2s ease-in-out;
}

.c-circle-linking__item:hover {
  cursor: pointer;
  transform: scale(103%);
}

.c-circle-linking__item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .c-circle-linking__item {
    width: calc(50% - 8px);
  }
}
@media (min-width: 1280px) {
  .c-circle-linking__item {
    width: calc(25% - (16px / 1.33));
  }
}

.c-slots:not(.js-expanded) .c-slots__list-item.js-hidden {
  display: none;
}
.c-slots__list {
  gap: clamp(8px, 2dvw, 20px);
}
.c-slots__list-item {
  background: #27374f;
  border-radius: 24px;
  gap: 8px;
  padding: 8px;
  flex: 1 0 280px;
}
.c-slots__list-item:hover .c-slots__list-item-logo-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-slots__list-item:hover .c-slots__list-item-logo-overlay .o-btn {
  z-index: 1;
}
.c-slots__list-item-logo {
  position: relative;
  aspect-ratio: 1/1;
}
.c-slots__list-item-logo-overlay {
  background: color-mix(in srgb, #27374f 50%, transparent);
  position: absolute;
  padding: 8px;
  gap: 8px;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s ease-in-out;
  transition-property: opacity, visibility;
  height: 100%;
  width: 100%;
}
.c-slots__list-item-logo-overlay .o-btn {
  width: 100%;
}
.c-slots__list-item img {
  border-radius: 16px;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.c-slots__list-item-name {
  color: #fff;
  padding-left: 8px;
  transition: color 0.3s ease-in-out;
  margin-top: auto;
  max-width: 98%;
}
@media (min-width: 768px) {
  .c-slots__list-item {
    flex-grow: 0;
  }
}
@media (min-width: 992px) {
  .c-slots__list--big {
    display: grid;
    grid-template-columns: repeat(4, 202px);
  }
  .c-slots__list--big .c-slots__list-item:first-child .c-slots__list-item-name {
    font-size: 2.4rem;
  }
  .c-slots__list--big .c-slots__list-item:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
    padding-bottom: 32px;
  }
}
@media (min-width: 1440px) {
  .c-slots__list--big {
    grid-template-columns: repeat(5, 202px);
  }
}
.c-slot-demo {
  --demo-height: 481px;
  --control-size: clamp(40px, 4dvw, 56px);
  --padding: 0px;
  --iframe-height: calc(
    var(--demo-height) - var(--control-size) - 8px - var(--padding) * 2
  );
  position: relative;
  padding: var(--padding);
  transition: 0.2s ease-in-out;
  transition-property: height, max-width;
  height: var(--demo-height);
  width: 100%;
}
.c-slot-demo.lazyloaded .c-slot-demo__controls-close {
  background-image: url(../img/icons/btn/close.svg);
  background-color: var(--accent);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 54%;
  border-radius: 50%;
  height: var(--btn-size, 32px);
  width: var(--btn-size, 32px);
}
.c-slot-demo {
  gap: 10px;
}
.c-slot-demo__controls button {
  --btn-size: var(--control-size);
}
.c-slot-demo__controls-refresh,
.c-slot-demo__controls-stop {
  transition: 0.2s ease-in-out;
  pointer-events: none;
  opacity: 0.5;
}
.c-slot-demo__controls-refresh {
  transition-property: rotate, opacity;
}
.c-slot-demo__controls-refresh:hover {
  rotate: 180deg;
}
.c-slot-demo__controls-stop {
  transition-property: scale, opacity;
}
.c-slot-demo__controls-stop:focus:hover {
  scale: 0.9;
}
.c-slot-demo__controls-fullscreen {
  margin-left: auto;
}

.c-slot-demo__iframe {
  border-radius: 24px;
  height: 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .c-slot-demo {
    --padding: 8px;
    background: #27374f;
    border-radius: 16px;
  }
}
.c-slot-demo-modal {
  background: #3c3c3c;
  display: flex;
  position: fixed;
  padding: 0.8rem 0.4rem;
  top: 0;
  left: 0;
  overflow-y: auto;
  height: 100%;
  width: 100%;
  z-index: 99;
}
.c-slot-demo-modal:not(.js-opened) {
  display: none;
}
.c-slot-demo-modal .c-slot-demo {
  --demo-height: 100%;
}
@media (max-width: 1023px) and (orientation: landscape) {
  .c-slot-demo-modal .c-slot-demo {
    --demo-height: 100%;
    --iframe-height: var(--demo-height);
    flex-direction: row;
  }
  .c-slot-demo-modal .c-slot-demo__controls {
    flex-direction: column;
    order: 1;
  }
  .c-slot-demo-modal .c-slot-demo__controls-fullscreen {
    margin-left: unset;
    margin-top: auto;
  }
}
@media (min-width: 1024px) {
  .c-slot-demo-modal .c-slot-demo {
    --demo-height: 737px;
  }
}