/* Cambria font */
@font-face {
  font-family: "Cambria";
  src: url("../fonts/Cambria.html");
  src: url("../fonts/Cambriad41d.html?#iefix") format("embedded-opentype"), url("../fonts/Cambria.woff2") format("woff2"), url("Cambria.html") format("woff"), url("../fonts/Cambria-2.html") format("truetype"), url("../fonts/Cambria-3.html#Cambria") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cambria";
  src: url("../fonts/Cambria-Bold.html");
  src: url("../fonts/Cambria-Boldd41d.html?#iefix") format("embedded-opentype"), url("../fonts/Cambria-Bold.woff2") format("woff2"), url("../fonts/Cambria-Bold-2.html") format("woff"), url("../fonts/Cambria-Bold-3.html") format("truetype"), url("../fonts/Cambria-Bold.html#Cambria-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Next W1G";
  src: url("../fonts/DINNextW1G.html");
  src: url("../fonts/DINNextW1Gd41d.html?#iefix") format("embedded-opentype"), url("../fonts/DINNextW1G.woff2") format("woff2"), url("../fonts/DINNextW1G-2.html") format("woff"), url("../fonts/DINNextW1G-3.html") format("truetype"), url("../fonts/DINNextW1G-4.html#DINNextW1G") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Next W1G";
  src: url("../fonts/DINNextW1G-Bold.html");
  src: url("../fonts/DINNextW1G-Boldd41d.html?#iefix") format("embedded-opentype"), url("../fonts/DINNextW1G-Bold.woff2") format("woff2"), url("../fonts/DINNextW1G-Bold-2.html") format("woff"), url("../fonts/DINNextW1G-Bold-3.html") format("truetype"), url("../fonts/DINNextW1G-Bold-4.html#DINNextW1G-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Azonix";
  src: url('../fonts/Azonix.otf') format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* BASIC SETTINGS */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input::placeholder {
  transition: 250ms ease all;
}

input:focus::placeholder {
  opacity: 0;
}

html,
body {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
  line-height: 1;
  font-family: "Cambria", sans-serif;
  font-weight: 400;
  background: rgb(2, 1, 1);
  overflow-x: hidden;
}

body {
  height: fit-content;
  width: 100%;
  overflow-y: hidden;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  padding: 0;
  margin: 0;
  border: 0;
}

:focus,
a:focus,
a:active :active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

img {
  /* display: block; */
  vertical-align: sub;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.container {
  width: 100%;
  max-width: 1460px;
  padding: 0 30px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

/* BASIC SETTINGS END*/
/* header */
.header {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  padding: 28px 0;
  z-index: 10;
  transition: 300ms ease all;
}

header.active {
  background: rgba(0, 0, 0, 0.49);
  padding: 18px 0;
  backdrop-filter: blur(8px);
}

.header-left-nav__list li {
  position: relative;
}
.header-left-nav__list li[data-sub-button] > a:after {
  content: "";
  width: 12px;
  display: inline-block;
  aspect-ratio: 12/6;
  background: url(../img/arrow.png);
  background-size: 100% 100%;
  transition: transform 0.3s ease-in-out;
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
  top: -1px;
}
.header-left-nav__list li[data-sub-button]:hover > a:after {
  transform: scale(1, -1);
}
.header-left-nav__list li span {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: calc(100% + 40px);
  padding: 35px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
}
.header-left-nav__list li span:before {
  content: "";
  width: 100%;
  height: calc(100% - 15px);
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 0;
  background-color: #12110f;
  clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
}
/* .header-left-nav__list li span a {
  white-space: nowrap;
  position: relative;
  z-index: 2;
} */

.header-left-nav__list li span a {
  white-space: nowrap;
  position: relative;
  z-index: 2;
  letter-spacing: .10em;
  font-family: 'DIN Next W1G';
}


.header-left-nav__list li[data-sub-button]:hover span {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

/* .header-left-nav__list li a {
  color: rgb(238, 228, 217);
  font-size: 17px;
  text-transform: uppercase;
  transition: 250ms ease all;
  cursor: pointer;
  white-space: nowrap;
} */

.header-left-nav__list li a {
  color: rgb(238, 228, 217);
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: 250ms ease all;
  cursor: pointer;
  font-family: 'azonix';
  white-space: nowrap;
  letter-spacing: .12em;
}

.header-left-nav__list li a:hover {
  color: rgb(255, 184, 47);
}

.header-left-nav__list {
  gap: 40px;
  align-items: center;
}

.header__wrapper {
  justify-content: space-between;
  align-items: center;
}

.header-right {
  align-items: center;
}

.btn {
  position: relative;
  width: fit-content;
  display: block;
  transition: 250ms ease all;
}

.btn:hover {
  filter: brightness(1.2);
}

/* .btn__text {
  position: absolute;
  left: 50%;
  color: rgb(255, 255, 255);
  top: 48%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-weight: bold;
} */

.btn__text {
  position: absolute;
  left: 50%;
  color: rgb(255, 255, 255);
  top: 52%;
  transform: translate(-50%, -50%);
  font-size: 0.85rem;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-family: 'azonix';
  letter-spacing: .12em;
}

.header-right {
  gap: 55px;
}

/* .header-right__log-in {
  color: rgb(238, 228, 217);
  font-size: 16px;
  text-transform: uppercase;
  transition: 250ms ease all;
} */

.header-right__log-in {
  color: rgb(238, 228, 217);
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: 250ms ease all;
  font-family: 'Azonix';
  letter-spacing: .12em;
}

.header-right__log-in:hover {
  color: rgb(255, 184, 47);
}

/* /header */
/* start */
.start {
  padding: 180px 0 70px;
}

.start__logo {
  width: fit-content;
  display: block;
  margin: 0 auto;
  transition: 250ms ease all;
}

.start__logo:hover {
  filter: brightness(1.3);
}

.start__btn .btn__back img {
  filter: drop-shadow(0px 0px 24px rgba(255, 131, 9, 0.46));
}

.start .btn__text {
  font-size: 22px;
}

.start__btn {
  margin: 0 auto;
}

.start__text {
  color: rgb(214, 214, 213);
  text-align: center;
  font-family: "DIN Next W1G";
  font-size: 16px;
  line-height: 22px;
  margin: 13px auto 30px;
  max-width: 380px;
  width: 100%;
}

.start__title {
  color: rgb(255, 184, 47);
  text-align: center;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 31px;
}

.servers .line {
  bottom: -10px;
}

.news-item__title {
  transition: 250ms ease all;
}

.news-item__title:hover {
  color: rgb(255, 184, 47);
}

/* /start */
/* servers */
.servers-info__list {
  flex-wrap: wrap;
  width: 48.6%;
}

.news-item__back img {
  transition: 450ms ease all;
}

.news__item:hover .news-item__back img {
  transform: scale(1.05);
}

.servers-info-list-item__icon {
  width: 36%;
  max-width: 105px;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.servers-info-list-item__icon-progress, .servers-info-list-item__icon-back, .servers-info-list-item__icon-img, .servers-info-list-item__icon-info {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.servers-info-list-item__icon-progress {
  z-index: 1;
  background: url("../img/progress_bg.png") center center no-repeat;
  background-size: 100% 100%;
}
.servers-info-list-item__icon-progress canvas {
  width: 100% !important;
  height: 100% !important;
}
.servers-info-list-item__icon-back {
  z-index: 2;
}
.servers-info-list-item__icon-back img {
  width: 100%;
  height: 100%;
}
.servers-info-list-item__icon-img {
  z-index: 3;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.servers-info-list-item__icon-img img {
  width: 100%;
  height: 100%;
}
.servers-info-list-item__icon-info {
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: scale(0);
  opacity: 0;
}
.servers-info-list-item__icon-info-online {
  font-size: 17px;
}
.servers-info-list-item__icon-info-sub {
  font-size: 10px;
  color: #ffb82f;
}
.servers-info-list-item__icon:hover .servers-info-list-item__icon-img {
  transform: scale(0);
  opacity: 0;
}
.servers-info-list-item__icon:hover .servers-info-list-item__icon-info {
  transform: scale(1);
  opacity: 1;
}

.servers-info__slider .owl-item {
  opacity: 0;
  transition: 350ms ease opacity;
}

.servers-info__slider .owl-item.active {
  opacity: 1;
}

.servers-info-list__item {
  align-items: center;
  gap: 15px;
  width: 50%;
  justify-content: flex-start;
  padding: 28px 22px;
  position: relative;
}

.header__burger {
  display: none;
}

.silit__desc {
  color: rgb(165, 153, 142);
  font-size: 12px;
  font-family: "DIN Next W1G";
  text-transform: uppercase;
  position: relative;
  width: fit-content;
  transition: 250ms ease all;
}

.silit__desc::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgb(165, 153, 142);
  left: 0;
  bottom: -1px;
  position: absolute;
  transition: 250ms ease all;
}

.silit__desc:hover {
  color: rgb(255, 255, 255);
}

.silit__desc:hover::after {
  left: 50%;
  width: 0;
}

.silit__title {
  color: rgb(238, 228, 217);
  font-size: 18px;
  font-weight: bold;
}

.silit__title small {
  color: rgb(211, 201, 191);
  /* font-size: 18px; */
  font-weight: 100;
}

.servers-info-list-item__text {
  flex-direction: column;
  gap: 12px;
}

.servers-info-list__item.opacity {
  opacity: 0.3;
}

.servers-info__list {
  background: url(../img/servers-list-back.png) no-repeat center center, rgb(30, 25, 21);
  background-size: cover;
  border-radius: 12px;
}

.servers-info-list__item {
  border-bottom: 1px solid rgb(54, 47, 42);
}

.servers-info-list__item:nth-child(odd) {
  border-right: 1px solid rgb(54, 47, 42);
}

.servers-info-list__item:last-child,
.servers-info-list__item:nth-child(3) {
  border-bottom: 0;
}

.line {
  position: absolute;
  bottom: -11px;
  z-index: 1;
  width: 100%;
  gap: 37px;
  align-items: center;
}

footer .line {
  bottom: unset;
  top: 50px;
}

.news {
  margin-bottom: 80px;
}

.news-info__box {
  position: relative;
}

footer {
  position: relative;
}

.line__back {
  width: 32px;
  height: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background: rgb(38, 31, 26);
}

.line__def {
  width: -webkit-fill-available;
  background: rgb(73, 64, 56);
  height: 2px;
}

.line__center {
  width: 25px;
  height: 25px;
  border: 3px solid rgb(73, 64, 56);
  flex: 0 0 auto;
  transform: rotate(45deg);
}

.servers {
  position: relative;
}

.servers-info-list-item__labels {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.server-info-list-item__status {
  padding: 6px 9px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgb(0, 130, 80);
  border-radius: 5px;
}

.server-info-list-item__status.offline {
  background: rgb(199, 0, 0);
}

.server-info-list-item__status.data {
  background: rgb(255, 114, 0);
}

.server-info-list-item__status.soon {
  background: rgb(64, 60, 56);
}

.server-info-list-item__status.new {
  background: rgb(134, 19, 241);
  animation: status_new 2s ease-in-out infinite;
}

@keyframes status_new {
  0% {
    box-shadow: 0px 0px 20px rgba(134, 19, 241, 0);
  }
  50% {
    box-shadow: 0px 0px 20px rgb(134, 19, 241);
  }
  100% {
    box-shadow: 0px 0px 20px rgba(134, 19, 241, 0);
  }
}
.servers__info {
  justify-content: space-between;
}

.servers-info__slider {
  width: 48.6%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.servers-info-slider__item {
  position: relative;
  height: 100%;
}

.servers__info .owl-dots {
  position: absolute;
  bottom: 46px;
  z-index: 1;
  left: 215px;
  display: flex;
  gap: 15px;
}

.servers__video {
  justify-content: space-between;
}

.servers-video__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1280/720;
  width: 31.4%;
}

.servers-video-item__btn {
  cursor: pointer;
  transition: 250ms ease all;
}

.servers-video-item__btn:hover {
  filter: brightness(1.2);
  transform: translate(-50%, -50%);
}

.info-right__vote {
  height: 80px;
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: 250ms ease all;
  border: 1px solid rgba(249, 205, 73, 0.41);
}

.info-right__vote:hover {
  filter: brightness(1.2);
}

.info-right-vote__back img {
  width: 100%;
  position: absolute;
  height: 100%;
  object-fit: cover;
}

.footer__left,
.footer__right {
  width: 290px;
}

.info-right-vote__text {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgb(255, 182, 43);
  font-weight: bold;
  padding-left: 30px;
  text-transform: uppercase;
}

.irvt__top {
  font-size: 39px;
  line-height: 33px;
}

.info-right-socs__title {
  font-size: 25px;
  color: rgb(238, 228, 217);
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
}

.irvt__bottom {
  font-size: 21px;
}

.info-right-socs-list__item {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 250ms ease all;
}

.info-right-socs-list__item:hover {
  filter: brightness(1.2);
}

.info-right-socs-list__item:nth-child(4) .irsli__icon {
  top: -13px;
}

.irsli__icon {
  position: absolute;
  top: -8px;
}

.info-right-socs__list {
  justify-content: space-between;
  align-items: center;
}

.servers-video-item__btn img:nth-child(2) {
  filter: drop-shadow(0px 0px 6px rgba(221, 189, 73, 0.58));
}

.servers-video-item__btn,
.servers-video-item__btn img:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 300ms ease all;
}

.servers__video {
  margin-top: 75px;
}

.info__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.servers {
  padding-bottom: 75px;
}

.servers-video-item__back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.servers__info .owl-dots .owl-dot {
  background: url(../img/service-slider-dot.png) no-repeat center center;
  background-size: cover;
  width: 14px;
  height: 14px;
  opacity: 0.3;
}

.servers__info .owl-dots .owl-dot.active {
  opacity: 1;
}

.sisic__title {
  color: rgb(255, 255, 255);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.sisic__text {
  color: rgb(211, 201, 191);
  font-size: 18px;
  font-family: "DIN Next W1G";
  margin-bottom: 24px;
}

.sisic__title span {
  color: rgb(255, 184, 47);
}

.servers-info-slider-item__content {
  flex-direction: column;
  height: 100%;
  display: flex;
  position: relative;
  justify-content: flex-end;
  padding: 30px;
}

.servers-info-slider-item__back img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owl-stage {
  display: flex;
  height: 100%;
}

.owl-stage-outer {
  overflow: hidden;
  height: 100%;
}

.servers .owl-nav {
  display: none;
}

/* /servers */
/* news */
.news__item {
  min-height: 417px;
  width: 22.9%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.news-item__back img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 30px;
}

.news__wrapper {
  justify-content: space-between;
}

.news-item__text {
  font-family: "DIN Next W1G";
  color: rgb(164, 155, 147);
  font-size: 16px;
  line-height: 22px;
  margin: 21px 0 23px;
}

.news-item__title {
  color: rgb(238, 228, 217);
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-item__date {
  color: rgb(147, 134, 119);
  font-size: 14px;
  margin-bottom: 19px;
}

.news-item__date span {
  color: rgb(238, 228, 217);
  font-size: 24px;
}

.servers {
  position: relative;
  padding-top: 100px;
  margin-top: -100px;
}

/* /news */
/* footer */
footer {
  padding: 70px 0;
  position: relative;
}

.footer__wrapper {
  padding-top: 70px;
}

.footer__wrapper {
  justify-content: center;
  align-items: center;
  gap: 45px;
}

.footer__line {
  height: 40px;
  width: 1px;
  background: rgb(133, 118, 103);
}

.footer__left {
  text-align: right;
}

.footer-left__top {
  font-size: 16px;
  color: rgb(243, 235, 228);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}

.footer-left__bottom {
  color: rgb(177, 162, 149);
  font-size: 14px;
}

.footer-right__developed {
  align-items: center;
  gap: 10px;
  width: fit-content;
  transition: 250ms ease all;
}

.footer-right__developed:hover {
  filter: brightness(1.2);
}

.footer-right-developed-text__top {
  color: rgb(177, 162, 149);
  font-size: 12px;
  margin-bottom: 4px;
}

.footer-right-developed-text__bottom {
  font-size: 12px;
  color: rgb(243, 235, 228);
  font-weight: 700;
  text-transform: uppercase;
}

.table.table-striped {
  width: 100%;
  border-collapse: collapse;
}

.thead-dark.text-uppercase {
  text-align: left;
  color: rgb(200, 187, 177);
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}

.table.table-striped th,
.table.table-striped td {
  text-align: left;
  padding: 8px 30px;
}

.table.table-striped tbody th,
.table.table-striped tbody td {
  color: rgb(255, 255, 255);
  font-size: 18px;
  line-height: 24px;
}

.table.table-striped tbody tr:nth-child(1) th,
.table.table-striped tbody tr:nth-child(1) td {
  color: rgb(255, 184, 46);
}

.table.table-striped tbody tr th {
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

.table.table-striped tbody tr td:last-child {
  overflow: hidden;
  border-radius: 0 10px 10px 0;
}

.table.table-striped tbody tr:nth-child(odd) {
  background: rgb(28, 23, 18);
  border-radius: 10px;
  overflow: hidden;
}

.news-info__box {
  padding: 75px 0 0;
}

.news-info__box {
  padding-bottom: 25px;
}

.info-rating-top__item {
  text-transform: uppercase;
  position: relative;
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 700;
  width: 114px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 250ms ease all;
  cursor: pointer;
}

.servers-info-slider-item__back::after,
.news-item__back::after {
  content: "";
  background: linear-gradient(210deg, rgba(255, 255, 255, 0) -36%, rgba(0, 0, 0, 0.8) 92%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.nav__langs {
  position: relative;
  z-index: 2;
}

.nav__langs-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 6px;
  flex-wrap: nowrap;
  font-weight: 400;
  font-size: 16px;
  line-height: 1em;
  color: #eee4d9;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: 250ms ease all;
}

.nav__langs > .nav__langs-item:after {
  content: "";
  width: 12px;
  aspect-ratio: 12/6;
  background: url(../img/arrow.png);
  background-size: 100% 100%;
  transition: transform 0.3s ease-in-out;
}

.news-item__back::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -16%, rgba(31, 26, 23, 0.89) 46%);
}

.nav__langs:hover > .nav__langs-item:after {
  transform: scale(1, -1);
}

.nav-langs-item__img img {
  width: 100%;
}

.nav-langs-item__img {
  max-width: 34px;
  overflow: hidden;
  border-radius: 4px;
}

.nav__langs-stroke {
  padding: 12px;
  padding-top: 22px;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: -10px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 8px;
}

.nav__langs-stroke:before {
  content: "";
  width: 100%;
  height: calc(100% - 10px);
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 0;
  background-color: #12110f;
  clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
}

.nav__langs-item:hover {
  color: rgb(255, 184, 47);
}

.info-rating-top__item:nth-child(1) {
  transition: 250ms ease all;
  background: rgb(91, 82, 70);
}

.info-rating-top__item:nth-child(1):after {
  transition: 250ms ease all;
  content: "";
  clip-path: polygon(11% 0, 22% 13%, 23% 86%, 10% 100%, 0 100%, 0 0);
  background: rgb(91, 82, 70);
  width: 28px;
  height: 100%;
  position: absolute;
  right: -25px;
  top: 0;
}

.nav__langs:hover .nav__langs-stroke {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: all;
}

.info-rating-top__item:nth-child(1):before {
  transition: 250ms ease all;
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 82% 100%, 0 50%, 82% 0);
  background: rgb(91, 82, 70);
  width: 16px;
  height: 100%;
  position: absolute;
  left: -14px;
  top: 0;
}

.info-rating-top__item:nth-child(2) {
  transition: 250ms ease all;
  background: rgb(91, 82, 70);
}

.info-rating-top__item:nth-child(2):after {
  transition: 250ms ease all;
  content: "";
  clip-path: polygon(89% 0, 77% 12%, 77% 89%, 88% 100%, 100% 100%, 100% 0);
  background: rgb(91, 82, 70);
  width: 28px;
  height: 100%;
  position: absolute;
  left: -25px;
  top: 0;
}

.info-rating-top__item.active,
.info-rating-top__item.active:nth-child(1):after,
.info-rating-top__item.active:nth-child(1):before,
.info-rating-top__item.active:nth-child(2):after,
.info-rating-top__item.active:nth-child(2):before {
  background: rgb(197, 143, 40);
}

.info-rating__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.8);
  transition: 250ms ease all;
}

.info-rating__content.active {
  opacity: 1;
  transform: scale(1);
}

.irc-top {
  color: rgb(149, 149, 149);
  font-family: "DIN Next W1G";
  font-size: 13px;
  margin-bottom: 20px;
}

.info-rating-top__item:nth-child(2):before {
  content: "";
  clip-path: polygon(0 0, 0 100%, 22% 100%, 100% 50%, 22% 0);
  background: rgb(91, 82, 70);
  width: 16px;
  height: 100%;
  position: absolute;
  right: -13px;
  top: 0;
  transition: 250ms ease all;
}

.irc-list {
  flex-direction: column;
  gap: 13px;
}

.irc-list-item__pvp {
  font-size: 20px;
  color: rgb(200, 178, 142);
}

.irc-list-item__nickname,
.irc-top__item--name {
  margin-left: 20px;
}

.irc-list-item__pvp,
.irc-top__item--pvp {
  margin-left: auto;
}

.irc-top__item--pvp {
  margin-right: 0px;
}

.info-rating__content,
.info-desc__content {
  padding: 30px;
  max-height: 350px;
  min-height: 350px;
  overflow: auto;
}

.irc-list-item__num,
.irc-top__item--num {
  width: 40px;
  text-align: center;
}

.irc-list-item__num {
  position: relative;
}

.ilin__num {
  position: absolute;
  top: 50%;
  left: 50%;
  /* font-size: 16px; */
  color: rgb(229, 229, 229);
  transform: translate(-52%, -55%);
}

.irc-list-item__nickname {
  color: rgb(154, 148, 141);
  font-size: 20px;
}

.irc-list .irc-list__item:nth-child(1) .irc-list-item__nickname {
  color: rgb(255, 184, 47);
}

.irc-list .irc-list__item:nth-child(2) .irc-list-item__nickname {
  color: rgb(229, 229, 229);
}

.irc-list .irc-list__item:nth-child(3) .irc-list-item__nickname {
  color: rgb(228, 193, 147);
}

.info-rating__bottom,
.info-desc__bottom {
  gap: 2px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgb(52, 44, 39);
  width: 100%;
}

.info-rating__bottom {
  gap: 0px;
}

.idc__item {
  gap: 13px;
}

.info-right__video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 275px;
}

.info__right {
  width: 31.4%;
}

.servers-video-item__btn img:first-child {
  width: 75px;
}

.servers-video-item__btn img:last-child {
  width: 30px;
  transform: translate(-42%, -50%);
}

.info-right-video__back img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info__wrapper {
  justify-content: space-between;
}

.idc-item-text__title {
  font-size: 18px;
  color: rgb(194, 184, 176);
  line-height: 20px;
  margin-bottom: 7px;
  overflow: hidden;
  display: -webkit-box;
  margin-top: -4px;
  -webkit-line-clamp: 1;
  transition: 250ms ease all;
  -webkit-box-orient: vertical;
}

.idc-item-text__title:hover {
  color: rgb(255, 184, 47);
}

.info-desc__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

.idc-item-text__date {
  color: rgb(147, 134, 119);
  font-size: 14px;
}

.idc-item-text__date span {
  font-size: 16px;
  color: rgb(164, 155, 147);
}

.info-rating-bottom__item {
  width: 25%;
  height: 100%;
  color: rgb(255, 255, 255);
  padding: 10px 15px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  transition: 250ms ease all;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-rating-bottom__item:not(:last-child) {
  border-right: 1px solid rgb(52, 44, 39);
}

.info-rating__item {
  height: 100%;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.info-rating-content__box {
  height: 350px;
  position: relative;
}

.info-rating__item.active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

.info-rating-bottom__item.active {
  background: rgba(255, 255, 255, 0.05);
}

.irc-list__item {
  align-items: center;
}

.irc-top-items {
  color: rgb(149, 149, 149);
  font-size: 13px;
}

.info-rating__top {
  position: relative;
  gap: 10px;
  width: fit-content;
}

.info-rating__top::after,
.info-rating__top::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgb(91, 82, 70);
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: -8px;
}

.info-rating__top--box,
.info-desc__top {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgb(52, 44, 39);
}

.info-desc__top {
  justify-content: flex-start;
  padding-left: 30px;
  font-size: 25px;
  color: rgb(238, 228, 217);
  text-transform: uppercase;
  font-weight: 700;
}

.info-rating__top::before {
  top: unset;
  bottom: -8px;
}

.info__rating,
.info__desc {
  width: 31.4%;
  background: url(../img/info-backs.png) no-repeat center center;
  background-size: cover;
  border-radius: 12px;
  overflow: hidden;
}

/* /footer */
.text-area {
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  color: rgb(170, 170, 170);
  background: rgba(30, 25, 21, 0.8);
  padding: 70px;
  border-radius: 30px;
  border: 1px solid rgb(55, 48, 43);
}

@media (max-width: 1024px) {
  .text-area {
    font-size: 16px;
    line-height: 20px;
  }
}
.text-area > *:not(:first-child) {
  margin-top: 30px;
}

.text-area > img {
  width: 100%;
  margin: 0;
  padding: 0;
}

.text-area b {
  font-family: var(--secondary-font);
}

.text-area p b {
  font-weight: bold;
}

.text-area p img {
  height: auto !important;
  max-width: 100% !important;
  vertical-align: middle;
}

.text-area ul li,
.text-area ol li {
  color: rgb(170, 170, 170);
  font-family: "DIN Next W1G";
  font-size: 18px;
  line-height: 26px;
  padding-left: 33px;
  position: relative;
}

.text-area ol li {
  padding-left: 0;
  font-family: "DIN Next W1G";
  font-size: 18px;
  color: rgb(170, 170, 170);
  line-height: 26px;
}

.text-area ul li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 8px;
  background: rgb(191, 156, 88);
  top: 8px;
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .text-area ul li,
  .text-area ol li {
    font-size: 16px;
    line-height: 20px;
  }
}
.text-area ul li::marker,
.text-area ol li::marker {
  color: rgb(191, 156, 88);
  font-weight: bold;
  font-family: "DIN Next W1G";
}

.text-area ul li:not(:first-child),
.text-area ol li:not(:first-child) {
  margin-top: 15px;
}

.text-area ul li img,
.text-area ol li img {
  vertical-align: middle;
}

.text-area ul li {
  position: relative;
  list-style-type: none;
}

.text-area ul ul:not(:first-child) {
  margin-top: 15px;
}

.icon-stroke__line {
  display: flex;
}

.icon-stroke__line {
  gap: 14px;
}

.icon-stroke__line-text-content {
  color: rgb(170, 170, 170);
  font-size: 18px;
  font-family: "DIN Next W1G";
  line-height: 26px;
  margin-bottom: 10px;
}

.text-area a {
  color: rgb(217, 157, 63);
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}

.text-area a:hover {
  color: var(--brand-color);
}

.spoiler__top + .spoiler__bottom {
  overflow: hidden;
  opacity: 0;
  border-left: 1px solid rgb(122, 100, 58);
  height: 0;
  transition: 250ms ease all;
  background: rgb(45, 41, 34);
  font-size: 18px;
  line-height: 26px;
  color: rgb(153, 153, 146);
}

.spoiler__top {
  padding: 14px 17px;
  align-items: center;
  justify-content: space-between;
  background: rgb(85, 76, 62);
  color: rgb(255, 255, 255);
  font-size: 18px;
  line-height: 23px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-left: 1px solid transparent;
  transition: 250ms ease all;
}

.spoiler-top__angle {
  transition: 250ms ease all;
}

.spoiler__top.active .spoiler-top__angle {
  transform: rotate(180deg);
}

.spoiler__top.active {
  border-left: 1px solid rgb(122, 100, 58);
}

.spoiler-bottom__content.text-area {
  padding: 17px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgb(153, 153, 146);
  line-height: 26px;
}

.spoiler__top.active + .spoiler__bottom {
  overflow: visible;
  opacity: 1;
}

.text-area hr {
  border: none;
  border-bottom: 1px solid rgb(50, 45, 41);
  margin: 45px 0 !important;
}

.text-area h1,
.text-area h2,
.text-area h3,
.text-area h4,
.text-area h5,
.text-area h6 {
  font-family: var(--primary-font);
  color: var(--brand-color);
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 5px;
}

.text-area h1 b,
.text-area h2 b,
.text-area h3 b,
.text-area h4 b,
.text-area h5 b,
.text-area h6 b {
  font-family: var(--primary-font);
}

.text-area h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  margin: 0 auto 33px;
  color: rgb(191, 156, 88);
}

@media (max-width: 1460px) {
  .text-area h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 1024px) {
  .text-area h1 {
    font-size: 26px;
    line-height: 30px;
  }
}
.text-area h2 {
  font-size: 32px;
  line-height: 36px;
  color: rgb(191, 156, 88);
  font-weight: bold;
  margin-bottom: 28px;
}

@media (max-width: 1460px) {
  .text-area h2 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 1024px) {
  .text-area h2 {
    font-size: 22px;
    line-height: 26px;
  }
}
.text-area h3 {
  font-size: 26px;
  line-height: 30px;
  color: rgb(191, 156, 88);
  font-weight: bold;
}

@media (max-width: 1460px) {
  .text-area h3 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .text-area h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.text-area h4,
.text-area h5,
.text-area h6 {
  font-size: 22px;
  line-height: 23px;
  color: rgb(191, 156, 88);
  font-weight: bold;
}

@media (max-width: 1460px) {
  .text-area h4,
  .text-area h5,
  .text-area h6 {
    font-size: 18px;
    line-height: 22px;
  }
}
.text-area table {
  width: 100% !important;
  min-width: 700px;
}

.text-area table tr td {
  padding: 16px 20px;
}

.text-area table tr td img {
  vertical-align: middle;
}

.text-area ol {
  padding-left: 20px;
}

.text-area table thead tr td {
  background: rgb(85, 76, 62);
  text-transform: uppercase;
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-family: "Cambria", sans-serif;
}

@media (max-width: 1024px) {
  .text-area table thead tr td {
    font-size: 16px;
    line-height: 16px;
  }
}
.text-area table tbody tr:nth-child(even) td {
  background: rgb(45, 41, 34);
  color: rgb(153, 153, 146);
  font-family: "DIN Next W1G";
  line-height: 23px;
}

.text-area table tbody tr:nth-child(odd) td {
  background: rgb(29, 25, 21);
  color: rgb(153, 153, 146);
  font-family: "DIN Next W1G";
  line-height: 23px;
}

.text-area table tbody tr td {
  font-size: 16px;
  line-height: 22px;
  color: rgb(159, 172, 190);
}

@media (max-width: 1024px) {
  .text-area table tbody tr td {
    font-size: 14px;
    line-height: 18px;
  }
}
.text-area table td {
  border-color: rgb(60, 75, 112) !important;
  border-width: 1px;
}

.text-area p {
  font-size: 18px;
  color: rgb(170, 170, 170);
  line-height: 26px;
  font-family: "DIN Next W1G";
}

.table-bg {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgb(71, 66, 57);
  padding: 2px;
}

.table-bg::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #fff;
}

.other-pages .start__btn {
  margin-top: 45px;
}

.other-pages .footer__wrapper {
  padding: 0;
}

.table-bg::-webkit-scrollbar-thumb {
  background-color: rgb(255, 184, 46);
}

.table-bg::-webkit-scrollbar-thumb:hover {
  background-color: rgb(255, 184, 46);
}

.info,
.step {
  position: relative;
}

.step__item {
  background: rgba(30, 25, 21, 0.6);
  padding: 60px;
  border-radius: 15px;
  position: relative;
}

.step__top {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.step-top__text {
  font-weight: bold;
  color: rgb(255, 255, 255);
  font-size: 18px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
}

.step__title {
  color: rgb(255, 184, 46);
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 24px;
  margin-bottom: 30px;
}

.step__text {
  font-family: "DIN Next W1G";
  color: rgb(196, 183, 173);
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  max-width: 730px;
  margin: 0 auto 25px;
}

.step__btn {
  display: block;
  width: fit-content;
  position: relative;
  transition: 250ms ease all;
}

.step__btn:hover {
  filter: brightness(1.2);
}

.step-btn__text {
  color: rgb(255, 255, 255);
  font-size: 12px;
  text-transform: uppercase;
  line-height: 15px;
  position: absolute;
  top: 52%;
  transform: translateY(-56%);
  width: 100%;
  text-align: center;
  left: 0;
}

.tabs-btns__btn:hover {
  filter: brightness(1.2);
}

.tabs-btns__btn.active:hover {
  filter: brightness(1);
}

.step__btns.trans .step-btn__back img {
  width: 186px;
}

.tabs-item {
  display: none;
}

.step-btn__download-launcher .step-btn__back img {
  width: 238px;
}

.step-btn__download-launcher .step-btn__text {
  font-size: 15px;
}

.tabs-item:first-child {
  display: block;
}

.step__btns + .step__text {
  margin-top: 25px;
}

.step__btns.trans .step-btn__text {
  font-size: 14px;
  color: rgb(200, 187, 177);
  line-height: 11px;
  transform: translateY(-54%);
}

.step__subtitle {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  margin-bottom: 25px;
  text-align: center;
  margin-top: 35px;
}

.step__text span {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: rgb(255, 184, 46);
}

.step-btn__back img {
  width: 200px;
}

.step__link {
  font-family: "DIN Next W1G";
  color: rgb(181, 130, 32);
  font-size: 14px;
  line-height: 28px;
  width: fit-content;
  margin: 0 auto;
  display: block;
  position: relative;
  transition: 250ms ease all;
}

.step__link:hover {
  filter: brightness(1.1);
}

.step__link::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 4px;
  left: 0;
  transition: 250ms ease all;
  background: rgb(181, 130, 32);
}

.step__link:hover::after {
  left: 50%;
  width: 0;
}

.step__wrapper {
  gap: 40px;
  flex-direction: column;
}

.step__btns {
  justify-content: center;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}

.tabs__btns {
  gap: 3px;
  justify-content: space-between;
  margin: 45px auto 50px;
  max-width: 1080px;
  width: 100%;
}

.step-content__item {
  width: 48.5%;
  padding: 50px 45px;
  background: rgba(26, 23, 21, 0.5);
}

.step-content {
  justify-content: space-between;
}

.tabs-btns__btn {
  width: 12.5%;
  font-size: 15px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  background: rgb(91, 82, 70);
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 250ms ease all;
}

.tit__item:first-child,
.tii__item:first-child {
  width: 10%;
}

.tit__item {
  color: rgb(200, 187, 177);
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}

.tabs-item__top,
.tabs-item__info {
  padding: 8px 30px;
}

.tabs-item__info:nth-child(1) {
  color: rgb(255, 184, 46);
}

.tabs-item__info:nth-child(odd) {
  background: rgb(28, 23, 18);
}

.tabs-item__info {
  color: rgb(255, 255, 255);
  font-size: 18px;
  line-height: 24px;
  border-radius: 10px;
}

.tit__item:nth-child(2),
.tii__item:nth-child(2) {
  width: 45%;
}

.tit__item:nth-child(3),
.tii__item:nth-child(3) {
  width: 23%;
}

.tit__item:nth-child(4),
.tii__item:nth-child(4) {
  width: 22%;
}

.tabs-btns__btn.active {
  background: rgb(197, 143, 40);
}

.tabs-line {
  height: 1px;
  background: rgb(52, 47, 42);
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 25px;
}

.tabs__content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: rgb(238, 238, 238);
}

.tabs__content::-webkit-scrollbar-thumb {
  background-color: rgb(255, 184, 46);
}

.tabs__content::-webkit-scrollbar-thumb:hover {
  background-color: rgb(255, 184, 46);
}

.wrapper {
  width: 100%;
  max-width: 1920px;
  background: url(../img/header_bg.png) top center no-repeat, url(../img/footer_bg.png) bottom center no-repeat, url(../img/bg.jpg) top center repeat-y;
  margin: 0 auto;
}

.wrapper--inner {
  background: url(../img/inner_header_bg.png) top center no-repeat, url(../img/footer_bg.png) bottom center no-repeat, url(../img/inner_bg.jpg) top center repeat-y;
}

.news-info__box {
  background: url(../img/news_back_bg.png) top center no-repeat;
  margin-top: -2px;
}

.popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  pointer-events: none;
  overflow: auto;
  padding: 50px;
  display: none;
  align-items: center;
  justify-content: center;
}

.popup.active {
  pointer-events: all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup__bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  background-size: cover;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  backdrop-filter: blur(4px);
}

.popup__bg.active {
  opacity: 1;
}

.popup__content {
  width: 100%;
  max-width: 1024px;
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(-60px);
  transform: translateY(-60px);
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.popup__content.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.popup__cancel {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: #ffb62b;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  z-index: 2;
  top: -20px;
  right: -20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.popup__cancel img {
  width: 15px;
}

.video-player {
  width: 100%;
  aspect-ratio: 1280/720;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}

.video-player iframe {
  width: 100% !important;
  height: 100% !important;
}

.step-content-item-title {
  color: rgb(255, 184, 46);
  text-align: center;
  font-weight: bold;
  line-height: 24px;
  margin-bottom: 35px;
  font-size: 24px;
  text-transform: uppercase;
}

.step-content-item-title span {
  color: #ffffff;
}

.step__btns .step-btn__box:nth-child(1) {
  width: 100%;
  display: flex;
  justify-content: center;
}

.step-content-2 {
  margin-top: 40px;
}

.step-content-2 .step__text,
.step-content-2 .step__text span {
  font-size: 14px;
}

@media screen and (max-width: 1600px) {
  .start {
    padding: 160px 0 70px;
  }
}
@media screen and (max-width: 1400px) {
  .header-left-nav__list,
  .header-right {
    gap: 40px;
  }
  .header-left-nav__list li a,
  .header-right__log-in {
    font-size: 15px;
  }
  .btn__text {
    font-size: 14px;
  }
  .start {
    padding: 150px 0 50px;
  }
  .start__logo img {
    width: 350px;
  }
  .start__title {
    font-size: 23px;
    margin-top: 25px;
  }
  .start__text {
    font-size: 15px;
    line-height: 20px;
    margin: 17px auto 24px;
  }
  .start .btn__text {
    font-size: 22px;
  }
  .start__btn .btn__back img {
    width: 300px;
  }
  .servers-info-list__item {
    gap: 12px;
  }
  .servers-info-list-item__text {
    gap: 10px;
  }
  .header {
    padding: 20px 0;
  }
  .sisic__title {
    font-size: 30px;
  }
  .sisic__text {
    font-size: 16px;
  }
  .servers__video {
    margin-top: 65px;
  }
  .servers-video__item {
    min-height: 216px;
  }
  .servers {
    padding-bottom: 65px;
  }
  .line__center {
    width: 20px;
    height: 20px;
  }
  .line__back {
    width: 28px;
    height: 28px;
  }
  .line {
    bottom: -9px;
    gap: 21px;
  }
  .news-info__box {
    padding: 65px 0;
  }
  .news-item__date span {
    font-size: 22px;
  }
  .news-item__date {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .news-item__content {
    padding: 25px;
  }
  .news-item__title {
    font-size: 17px;
    line-height: 22px;
  }
  .news-item__text {
    font-size: 15px;
    line-height: 20px;
    margin: 13px 0 17px;
  }
  .news {
    margin-bottom: 65px;
  }
  .news__item {
    min-height: 388px;
    width: 23.5%;
  }
  .info__rating,
  .info__desc,
  .info__right {
    width: 32%;
  }
  .info-rating-top__item {
    font-size: 16px;
  }
  .info-rating__top--box,
  .info-desc__top {
    height: 87px;
  }
  .info-rating__content,
  .info-desc__content {
    padding: 25px;
    max-height: 336px;
    min-height: 336px;
  }
  .irc-top {
    margin-bottom: 17px;
  }
  .irc-list {
    gap: 12px;
  }
  .info-desc__content {
    gap: 18px;
  }
  .info-rating-bottom__item {
    padding: 9px;
    font-size: 14px;
  }
  .info-desc__top {
    font-size: 23px;
  }
  .idc-item-text__title {
    font-size: 17px;
  }
  .irc-list-item__nickname,
  .irc-list-item__pvp {
    font-size: 19px;
  }
  .info-right__video {
    height: 245px;
  }
  .info-right-vote__text {
    padding-left: 25px;
  }
  .info-right-socs__title {
    font-size: 23px;
    margin-bottom: 23px;
  }
  .irsli__back img {
    width: 55px;
  }
  .irsli__icon img {
    width: 75px;
  }
  .irsli__icon {
    top: -6px;
  }
  .info-right-socs-list__item:nth-child(4) .irsli__icon img {
    width: 58px;
  }
  .info-right-socs-list__item:nth-child(4) .irsli__icon {
    top: -10px;
  }
  .footer__wrapper {
    padding-top: 65px;
  }
  .news-info__box {
    padding: 65px 0 25px;
  }
  .irvt__top {
    font-size: 35px;
    line-height: 31px;
  }
  .irvt__bottom {
    font-size: 19px;
  }
  .text-area {
    padding: 60px;
  }
  .step__title {
    font-size: 27px;
    margin-bottom: 27px;
  }
  .step__item {
    padding: 55px;
  }
  .step__text {
    font-size: 17px;
    line-height: 23px;
    margin: 0 auto 27px;
  }
  header.active {
    padding: 15px 0;
  }
  .info-right-socs-list__item img {
    width: 90%;
  }
  .step-btn__back img {
    width: 193px;
  }
  .step__text {
    line-height: 21px;
  }
  .step__link {
    font-size: 13px;
  }
}
@media screen and (max-width: 1200px) {
  .header-left-nav__list,
  .header-right {
    gap: 24px;
  }
  .header-left-nav__list li a,
  .header-right__log-in {
    font-size: 14px;
  }
  .start {
    padding: 130px 0 50px;
  }
  .start__logo img {
    width: 325px;
  }
  .start__title {
    font-size: 21px;
    margin-top: 18px;
  }
  .start__text {
    font-size: 14px;
    line-height: 18px;
    margin: 11px auto 20px;
    max-width: 350px;
  }
  .start__btn .btn__back img {
    width: 275px;
  }
  .start .btn__text {
    font-size: 19px;
  }
  .silit__title {
    font-size: 16px;
    line-height: 18px;
  }
  .servers-info-slider-item__content {
    padding: 25px;
  }
  .sisic__title {
    font-size: 28px;
  }
  .sisic__text {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .servers-video__item {
    min-height: 182px;
  }
  .servers__video {
    margin-top: 55px;
  }
  .servers {
    padding-bottom: 55px;
  }
  .line__center {
    width: 17px;
    border: 2px solid rgb(73, 64, 56);
    height: 17px;
  }
  .line__back {
    width: 24px;
    height: 24px;
  }
  .news-info__box {
    padding: 55px 0 14px;
  }
  .servers-info-list__item {
    padding: 30px 9px 23px;
  }
  .server-info-list-item__status {
    font-size: 14px;
  }
  .info-rating-top__item {
    font-size: 14px;
    width: 106px;
    height: 30px;
  }
  .info-rating-bottom__item {
    padding: 9px 6px;
    font-size: 13px;
  }
  .info-rating__bottom,
  .info-desc__bottom,
  .info-rating__top--box,
  .info-desc__top {
    height: 87px;
  }
  .info-desc__top {
    font-size: 21px;
  }
  .info-right__video {
    height: 227px;
  }
  .irvt__top {
    font-size: 31px;
  }
  .irvt__bottom {
    font-size: 17px;
  }
  .info-right__vote {
    height: 92px;
  }
  .irsli__back img {
    width: 52px;
  }
  .info-right-socs-list__item:nth-child(5) .irsli__icon {
    top: -8px;
  }
  .footer__wrapper {
    padding-top: 55px;
  }
  footer {
    padding: 65px 0;
  }
  .servers .line {
    bottom: -7px;
  }
  .step-btn__back img {
    width: 200px;
  }
  .step__btns {
    gap: 20px;
  }
  .step-btn__text {
    font-size: 14px;
  }
  .tabs__btns {
    flex-wrap: wrap;
  }
  .tabs-btns__btn {
    width: 23.5%;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .tit__item,
  .tabs-item__info {
    font-size: 17px;
  }
  .step-content-2 {
    flex-direction: column;
    gap: 30px;
  }
  .step-content__item {
    width: 100%;
    padding: 40px;
  }
  .step-content-item-title {
    font-size: 23px;
  }
}
@media screen and (max-width: 992px) {
  .header {
    padding: 15px 0;
  }
  .header__wrapper {
    justify-content: space-between;
    gap: 29px;
    flex-direction: row-reverse;
  }
  .header-left {
    position: absolute;
    left: 0;
    top: -13px;
    width: 100%;
  }
  .step-content-item-title {
    font-size: 21px;
    line-height: 21px;
    margin-bottom: 30px;
  }
  .header-left-nav__list {
    position: absolute;
    top: 74px;
    width: 100%;
    justify-content: center;
    left: 0;
    height: 48px;
    opacity: 0;
    visibility: hidden;
    transition: 300ms ease all;
    background: rgba(0, 0, 0, 0.9);
  }
  .text-area {
    padding: 40px;
  }
  .step-top__back img {
    width: 130px;
  }
  .step-top__text {
    font-size: 16px;
  }
  .step__item {
    padding: 45px;
  }
  .step-btn__back img {
    width: 220px;
  }
  .step-btn__text {
    font-size: 14px;
  }
  .step__btns {
    gap: 25px;
  }
  .step__btns {
    flex-wrap: wrap;
  }
  .step__text {
    font-size: 15px;
  }
  .step__subtitle {
    margin-top: 35px;
    font-size: 23px;
  }
  .text-area > *:not(:first-child) {
    margin-top: 20px;
  }
  .text-area p {
    font-size: 16px;
    line-height: 21px;
  }
  .text-area h1 {
    margin: 0 auto 27px;
  }
  .text-area h2 {
    margin-bottom: 20px;
  }
  .text-area ul li::after {
    width: 8px;
    height: 8px;
    top: 7px;
  }
  .icon-stroke__line-text-content {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .spoiler-bottom__content.text-area {
    padding: 16px;
    line-height: 24px;
  }
  .text-area hr {
    margin: 37px 0 !important;
  }
  .spoiler__top {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 20px;
  }
  .text-area ul li,
  .text-area ol li {
    padding-left: 29px;
  }
  header.burger .header-left-nav__list {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .text-area ol li {
    padding-left: 0;
  }
  .header__burger {
    display: flex;
    width: 30px;
    height: 22px;
    justify-content: space-between;
    flex-direction: column;
    cursor: pointer;
  }
  header.burger .header__burger span:nth-child(2) {
    opacity: 0;
  }
  header.burger .header__burger span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  header.burger .header__burger span:nth-child(3) {
    transform: rotate(-45deg);
    top: -10px;
  }
  .header__burger span {
    width: 100%;
    height: 2px;
    position: relative;
    transition: 300ms ease all;
    background: rgb(238, 228, 217);
  }
  header {
    height: 76px;
    transition: 300ms ease all;
  }
  header.burger {
    background: rgba(0, 0, 0, 0.49);
    backdrop-filter: blur(8px);
  }
  .start__logo img {
    width: 299px;
  }
  .start {
    padding: 120px 0 40px;
  }
  .start__title {
    font-size: 19px;
    margin-top: 15px;
  }
  .start__btn .btn__back img {
    width: 262px;
  }
  .servers__info {
    flex-direction: column;
    gap: 50px;
  }
  .sisic__title {
    text-align: center;
  }
  .sisic__text {
    text-align: center;
  }
  .servers-info-slider-item__content .btn {
    margin: 0 auto;
  }
  .servers-info-slider-item__content {
    padding: 50px 25px;
  }
  .servers__info .owl-dots {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .servers-video__item {
    min-height: 133px;
  }
  .servers__video {
    margin-top: 50px;
  }
  .news__item {
    min-height: 323px;
    width: 48.5%;
  }
  .news__wrapper {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .info__wrapper {
    flex-direction: column;
  }
  .info__rating,
  .info__desc,
  .info__right {
    width: 100%;
  }
  .info-rating__bottom,
  .info-desc__bottom,
  .info-rating__top--box,
  .info-desc__top {
    height: 75px;
  }
  .servers-info__list,
  .servers-info__slider {
    width: 100%;
  }
  .silit__title {
    font-size: 18px;
  }
  .irc-list-item__nickname,
  .irc-list-item__pvp {
    font-size: 20px;
  }
  .info-rating-bottom__item {
    padding: 9px 16px;
  }
  .info__wrapper {
    gap: 20px;
  }
  .info__right {
    gap: 25px;
  }
  .info-right-socs__list {
    justify-content: flex-start;
    gap: 0px;
  }
  .step__title {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .step__text {
    font-size: 16px;
    line-height: 21px;
  }
  .step__item {
    padding: 25px;
    padding-top: 30px;
  }
  .step-btn__back img {
    width: 200px;
  }
  .tabs__btns {
    margin: 35px auto 35px;
  }
  .step__title {
    font-size: 23px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header-left-nav__list {
    height: auto;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 20px;
  }
  .header-left-nav__list li span {
    left: 0;
    padding: 0;
    padding-top: 20px;
    padding-left: 20px;
  }
  .header-left-nav__list li span::before {
    display: none;
  }
  .start__logo img {
    width: 261px;
  }
  .start__btn .btn__back img {
    width: 241px;
  }
  .step__title {
    font-size: 23px;
  }
  .step__text {
    font-size: 15px;
    line-height: 20px;
  }
  .step-btn__back img {
    width: 230px;
  }
  .step__link {
    font-size: 14px;
  }
  .start .btn__text {
    font-size: 17px;
  }
  .servers__info {
    gap: 40px;
  }
  .sisic__title {
    font-size: 26px;
  }
  .servers__video {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
  }
  .servers-video__item {
    width: 100%;
    min-height: 200px;
  }
  .news__wrapper {
    flex-direction: column;
  }
  .news__item {
    min-height: fit-content;
    width: 100%;
  }
  .news-item__content {
    padding-top: 50px;
  }
  .news {
    margin-bottom: 50px;
  }
  .irc-list-item__nickname,
  .irc-list-item__pvp {
    font-size: 19px;
  }
  .news-info__box {
    padding: 55px 0 9px;
  }
  .footer__wrapper {
    padding-top: 48px;
  }
  footer {
    padding-bottom: 50px;
  }
  .footer__wrapper {
    flex-direction: column;
  }
  .footer-left__top {
    text-align: center;
  }
  .footer__wrapper {
    gap: 25px;
  }
  .footer__line {
    display: none;
  }
  .info-right-socs__title {
    text-align: center;
  }
  .info-right-socs__list {
    justify-content: center;
  }
  header.burger .header-left-nav__list li span {
    position: relative;
    top: 0;
    display: none;
  }
  header.burger .header-left-nav__list li[data-sub-button]:hover span {
    display: flex;
  }
  .footer-right__developed {
    width: 100%;
    justify-content: center;
  }
  .footer__left,
  .footer__right {
    width: 100%;
    justify-content: center;
  }
  .footer-left__bottom {
    text-align: center;
  }
  .step-btn__back img {
    width: 202px;
  }
  .tabs-btns__btn {
    width: 49%;
  }
  .tit__item,
  .tabs-item__info {
    font-size: 16px;
  }
  .step__link::after {
    display: none;
  }
  .step__link {
    text-decoration: underline;
    text-align: center;
    line-height: 20px;
    margin: 15px auto;
  }
  .step-content-item-title {
    font-size: 19px;
    line-height: 19px;
  }
  .step__item {
    padding-top: 45px;
  }
}
@media screen and (max-width: 576px) {
  .start__logo img {
    width: 240px;
  }
  .text-area {
    padding: 30px;
  }
  .container {
    padding: 0 15px;
  }
  .start__title {
    font-size: 17px;
  }
  .header-left-nav__list {
    padding-left: 15px;
  }
  .start__text {
    font-size: 13px;
  }
  .servers-info__list {
    flex-direction: column;
  }
  .tabs-btns__btn {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }
  .tabs-item {
    min-width: 500px;
  }
  .tabs__content {
    overflow: auto;
    border: 1px solid #342f2a;
    padding: 8px;
    border-radius: 8px;
  }
  .servers-info-list__item {
    width: 100%;
    border: 0;
  }
  .servers-info-list__item:nth-child(odd) {
    border: unset;
    border-bottom: 1px solid rgb(54, 47, 42);
  }
  .table.table-striped tbody th,
  .table.table-striped tbody td {
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 19px;
  }
  .step__link {
    line-height: 18px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 6px;
    text-decoration: underline;
  }
  .step__link::after {
    display: none;
  }
  .servers-info-list__item {
    border-bottom: 1px solid rgb(54, 47, 42);
  }
  .sisic__title {
    font-size: 21px;
  }
  .sisic__text {
    font-size: 14px;
    line-height: 17px;
  }
  .line {
    bottom: -7px;
  }
  .irc-list-item__nickname,
  .irc-list-item__pvp {
    font-size: 18px;
  }
  .info-rating-bottom__item {
    padding: 8px 9px;
  }
  .info-desc__top {
    font-size: 19px;
  }
  .idc-item-text__title {
    font-size: 15px;
  }
  .idc-item-text__title {
    margin-bottom: 7px;
  }
  .info-rating__content,
  .info-desc__content {
    max-height: fit-content;
    min-height: fit-content;
  }
  .footer__wrapper {
    gap: 20px;
  }
  .step__btns {
    gap: 15px;
  }
  .step__text span {
    font-size: 14px;
    line-height: 18px;
    margin-top: 9px;
  }
  .step__subtitle {
    margin-top: 25px;
    font-size: 19px;
  }
  .footer-left__bottom {
    text-align: center;
    line-height: 20px;
  }
  .step__title {
    font-size: 20px;
    line-height: 24px;
  }
  .step__item {
    padding: 25px;
    padding-top: 40px;
  }
  .step-btn__back img {
    width: 220px;
  }
  .step__text {
    font-size: 14px;
    line-height: 19px;
  }
  .nav-langs-item__img {
    max-width: 28px;
  }
  .nav-langs-item__img {
    max-width: 28px;
    min-width: 20px;
  }
  .header-left-nav__list,
  .header-right {
    gap: 15px;
  }
  .step-content__item {
    padding: 20px;
    padding-top: 32px;
  }
  .step-content-2 {
    margin-top: 30px;
  }
  .step-content-2 {
    gap: 20px;
  }
}
@media screen and (max-width: 440px) {
  .nav__langs > .nav__langs-item span {
    display: none;
  }
  .nav__langs-item {
    font-size: 14px;
  }
  .header__wrapper {
    gap: 15px;
  }
}
.tippy-box[data-theme~=dark] {
  background-color: #000;
  padding: 5px;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.tippy-box[data-theme~=dark] .tippy-arrow {
  color: #000;
}

.payment-page {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .payment-page {
    flex-wrap: wrap;
  }
}

.payment {
  width: 60%;
  background: rgba(30, 25, 21, 0.8);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgb(55, 48, 43);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .payment {
    padding: 30px;
    gap: 20px;
    width: 100%;
  }
}
.payment__title {
  font-size: 30px;
  line-height: 30px;
  color: rgb(191, 156, 88);
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .payment__title {
    font-size: 20px;
    line-height: 20px;
  }
}
.payment__servers {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.payment__servers-title {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .payment__servers-title {
    font-size: 16px;
    line-height: 16px;
  }
}
.payment__servers-content {
  width: 100%;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.payment__servers-item {
  width: calc((100% - 15px) / 4);
  align-self: stretch;
  padding: 20px 10px;
  border-radius: 4px;
  background-color: rgba(77, 69, 61, 0.3);
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .payment__servers-item {
    font-size: 14px;
    line-height: 14px;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 680px) {
  .payment__servers-item {
    width: calc((100% - 5px) / 2);
  }
}
.payment__servers-item:hover {
  background-color: rgba(77, 69, 61, 0.4);
}
.payment__servers-item--active {
  background-color: rgb(197, 143, 40);
}
.payment__servers-item--active:hover {
  background-color: rgb(197, 143, 40);
}
.payment__methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.payment__methods-title {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .payment__methods-title {
    font-size: 16px;
    line-height: 16px;
  }
}
.payment__methods-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.payment__methods-item {
  width: calc((100% - 15px) / 4);
  align-self: stretch;
  padding: 10px;
  border-radius: 4px;
  background-color: rgba(77, 69, 61, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 680px) {
  .payment__methods-item {
    width: calc((100% - 5px) / 2);
  }
}
.payment__methods-item:hover {
  background-color: rgba(77, 69, 61, 0.4);
}
.payment__methods-item--active {
  background-color: rgb(197, 143, 40);
}
.payment__methods-item--active:hover {
  background-color: rgb(197, 143, 40);
}
.payment__methods-item-img {
  width: 100%;
  height: 50px;
}
.payment__methods-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.payment__payments {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.payment__payments-title {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .payment__payments-title {
    font-size: 16px;
    line-height: 16px;
  }
}
.payment__payments-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.payment__payments-item {
  width: calc((100% - 15px) / 4);
  align-self: stretch;
  padding: 10px;
  border-radius: 4px;
  background-color: rgba(77, 69, 61, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 680px) {
  .payment__payments-item {
    width: calc((100% - 5px) / 2);
  }
}
.payment__payments-item:hover {
  background-color: rgba(77, 69, 61, 0.4);
}
.payment__payments-item--active {
  background-color: rgb(197, 143, 40);
}
.payment__payments-item--active:hover {
  background-color: rgb(197, 143, 40);
}
.payment__payments-item-img {
  width: 100%;
  height: 50px;
}
.payment__payments-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.payment__input {
  width: 100%;
  height: 60px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1240px) {
  .payment__input {
    height: 44px;
  }
}
.payment__input input {
  height: 100%;
  border-radius: 5px 0px 0px 5px;
  background: #1c1718;
  border: 1px solid rgb(197, 143, 40);
  border-right: none;
  font-size: 24px;
  line-height: 1em;
  color: #fff;
  font-weight: 700;
  padding: 0px 20px;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0px;
}
@media (max-width: 1240px) {
  .payment__input input {
    padding: 0px 15px;
    font-size: 18px;
  }
}
.payment__input input::-webkit-outer-spin-button, .payment__input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.payment__input input:last-child {
  border: 1px solid rgb(197, 143, 40);
  border-radius: 5px 5px 5px 5px;
}
.payment__input-valute {
  height: 100%;
  padding: 0 20px;
  background: #1c1718;
  border-top: 1px solid rgb(197, 143, 40);
  border-bottom: 1px solid rgb(197, 143, 40);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1em;
  color: rgb(197, 143, 40);
}
@media (max-width: 1240px) {
  .payment__input-valute {
    padding: 0px 15px;
  }
}
.payment__input-bonus {
  height: 100%;
  border-radius: 0px 5px 5px 0px;
  border-left: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background: rgb(197, 143, 40);
  cursor: pointer;
}
@media (max-width: 1240px) {
  .payment__input-bonus {
    padding: 0px 15px;
  }
}
.payment__input-bonus-text {
  font-size: 20px;
  line-height: 1em;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 1240px) {
  .payment__input-bonus-text {
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  .payment__range {
    display: none;
  }
}
.payment__range.noUi-target {
  background: #1c1718;
  border-radius: 5px;
  border: 1px solid #505050;
  box-shadow: none;
}
.payment__range.noUi-horizontal {
  height: 10px;
}
.payment__range.noUi-horizontal .noUi-handle {
  width: 26px;
  height: 26px;
  border-radius: 26px;
  background: rgb(197, 143, 40);
  border: none;
  box-shadow: none;
  top: -9px;
  right: -13px;
}
.payment__range.noUi-horizontal .noUi-handle:before, .payment__range.noUi-horizontal .noUi-handle:after {
  display: none;
}
.payment__range.noUi-horizontal .noUi-connect {
  background: rgb(197, 143, 40);
}
.payment__range .noUi-tooltip {
  border: 1px solid #505050;
  border-radius: 5px;
  background: #1c1718;
  color: #fff;
  font-size: 14px;
  line-height: 1em;
  font-weight: 400;
  padding: 6px 5px 5px;
}
.payment__range .noUi-pips-horizontal {
  height: 42px;
}
.payment__range .noUi-marker-horizontal.noUi-marker {
  width: 1px;
}
.payment__range .noUi-marker {
  background: #483f41;
}
.payment__range .noUi-marker-large {
  background: #686363;
}
.payment__range .noUi-marker-horizontal.noUi-marker-large {
  height: 10px;
}
.payment__range .noUi-value {
  font-size: 10px;
  line-height: 18px;
  font-weight: 400;
  color: #afafaf;
}
.payment__buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.payment__buttons button {
  padding: 20px 30px;
  background: rgb(197, 143, 40);
  border-radius: 5px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1024px) {
  .payment__buttons button {
    font-size: 16px;
    line-height: 16px;
    padding: 15px 20px;
  }
}

.payment-bonuses {
  width: 40%;
  background: rgba(30, 25, 21, 0.8);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgb(55, 48, 43);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .payment-bonuses {
    padding: 30px;
    gap: 20px;
    width: 100%;
  }
}
.payment-bonuses__title {
  font-size: 30px;
  line-height: 30px;
  color: rgb(191, 156, 88);
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .payment-bonuses__title {
    font-size: 20px;
    line-height: 20px;
  }
}
.payment-bonuses__text {
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: rgb(238, 228, 217);
}
@media screen and (max-width: 1024px) {
  .payment-bonuses__text {
    font-size: 16px;
    line-height: 20px;
  }
}
.payment-bonuses__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.payment-bonuses__items-item {
  width: 100%;
  border-radius: 5px;
  background: linear-gradient(to right, #272320, #39322d);
  border: 1px solid #53443c;
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  overflow: hidden;
}
.payment-bonuses__items-item-col {
  width: calc((100% - 15px) / 2);
}
.payment-bonuses__items-item-sub {
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.5;
}
.payment-bonuses__items-item-value {
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  color: #fff;
  margin-top: 5px;
}
.payment-bonuses__items-item:after {
  content: "";
  width: 200%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  background-color: rgba(255, 255, 255, 0.05);
}
.payment-bonuses__items-item--yellow {
  background: linear-gradient(to right, #3b2514, #573a25);
  border: 1px solid #6d4835;
}
.payment-bonuses__items-item--yellow .payment-bonuses__items-item-value {
  color: #ffbc75;
}
.payment-bonuses__items-item--green {
  background: linear-gradient(to right, #213712, #3d572b);
  border: 1px solid #4f693c;
}
.payment-bonuses__items-item--green .payment-bonuses__items-item-value {
  color: #95d568;
}
.payment-bonuses__items-item--red {
  background: linear-gradient(to right, #592424, #833c3c);
  border: 1px solid #874141;
}
.payment-bonuses__items-item--red .payment-bonuses__items-item-value {
  color: #ff9898;
}
.payment-bonuses__items-item--violet {
  background: linear-gradient(to right, #3b1961, #6c3b75);
  border: 1px solid #7d438f;
}
.payment-bonuses__items-item--violet .payment-bonuses__items-item-value {
  color: #e4aaf7;
}

.streams {
  width: 340px;
  height: 100vh;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
@media screen and (max-width: 1480px) {
  .streams {
    width: 320px;
  }
}
@media screen and (max-width: 580px) {
  .streams {
    display: none;
  }
}
.streams.active {
  transform: translateX(0%);
  box-shadow: 0px 0px 200px #12110f, 0px 0px 200px #12110f, 0px 0px 300px #12110f;
}
.streams__list {
  width: 100%;
  height: 100vh;
  overflow: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.streams__list::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #303030;
}
.streams__list::-webkit-scrollbar-thumb {
  background-color: rgb(255, 184, 47);
}
.streams__item {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
  background: rgba(51, 44, 34, 0.5);
  flex-shrink: 0;
}
.streams__button {
  width: 78px;
  aspect-ratio: 78/437;
  background: url("../img/streams_button.png") center center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: filter 0.3s ease-in-out;
}
.streams__button:hover {
  filter: brightness(150%);
}
@media screen and (max-width: 1480px) {
  .streams__button {
    width: 56px;
    transform: translateY(-50%) translateX(-5px);
  }
}