html,
body,
header,
nav,
section,
aside,
article,
footer,
div,
span,
applet,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a,
span,
p {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
}

font {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

input,
button,
select,
textarea {
  outline: none;
  border: none;
}

select,
button {
  cursor: pointer;
}

button {
  font-size: 1em;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#detach-button-host {
  display: none;
}

:root {
  --font-primary: "Beaufort";
  --font-secondary: "Beaufort";
  --font-primary-color: #dd4848;
  --font-primary-hover-color: #af2b2b;
  --font-color: #2e394f;
  --font-hover-color: #222a3a;
  --font-secondary-color: #36435e;
  --font-secondary-hover-color: #222a3a;
  --font-light-color: #6d6d6d;
  --font-light-hover-color: #3a3a3a;
  --brand-color: #dd4848;
  --brand-hover-color: #af2b2b;
  --brand-dusk-color: #ee6868;
}

:root {
  --page-gap-x: 1.5rem;
  --page-nav-height: 3.8rem;
}

html {
  font-family: var(--font-secondary);
  color: var(--font-secondary-color);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
}
@media (max-width: 1680px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 1460px) {
  html {
    font-size: 16px;
  }
}

body {
  min-height: 100vh;
  background-color: #eaeff3;
}

input,
textarea {
  font-family: var(--font-secondary);
  color: var(--font-secondary-color);
  font-size: 0.9rem;
  line-height: 1.4;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--font-light-color);
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--font-light-color);
  opacity: 0.5;
  -moz-transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--font-light-color);
  opacity: 0.5;
  -moz-transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--font-light-color);
  opacity: 0.5;
  -ms-transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0;
  transform: translateX(20px);
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0;
  transform: translateX(20px);
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0;
  transform: translateX(20px);
}

.wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: var(--page-nav-height);
  overflow: hidden;
}

.container {
  width: calc(100% - var(--page-gap-x) * 2);
  max-width: 1440px;
  margin: 0px auto;
  position: relative;
  z-index: 1;
}

.section {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}
@media (max-width: 1680px) {
  .section {
    padding: 5rem 0;
  }
}
@media (max-width: 1460px) {
  .section {
    padding: 4rem 0;
  }
}
@media (max-width: 1024px) {
  .section {
    padding: 3rem 0;
  }
}
.section__title {
  font-family: var(--font-primary);
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 900;
  color: var(--font-color);
  text-transform: uppercase;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1024px) {
  .section__title {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  .section__title {
    font-size: 1.5rem;
  }
}
.section__title small {
  font-size: 0.6em;
  font-weight: 300;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
}

.bordered-top {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bordered-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.btn {
  height: 4rem;
  padding: 0 4.2rem;
  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;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 100rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.btn span,
.btn small {
  font-family: var(--font-primary);
  text-align: center;
}
.btn span,
.btn i,
.btn small {
  position: relative;
  z-index: 3;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--font-color);
  font-weight: 300;
  text-transform: uppercase;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}
.btn img {
  height: 1em;
  position: relative;
  z-index: 3;
}
.btn small {
  opacity: 0.7;
}
.btn:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 1;
}
.btn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0rem;
  opacity: 1;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: opacity 0.5s ease-in-out, border-radius 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, border-radius 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, border-radius 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, border-radius 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  border-radius: 0 100px 100px 0;
}
.btn:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
  border-radius: 0;
}
.btn--primary {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--primary:after {
  background: -webkit-gradient(linear, left top, right top, from(#2e394f), to(#2e394f));
  background: linear-gradient(to right, #2e394f, #2e394f);
}
.btn--primary:before {
  background: -webkit-gradient(linear, left top, right top, from(#425272), to(#425272));
  background: linear-gradient(to right, #425272, #425272);
}
.btn--primary span,
.btn--primary i,
.btn--primary small {
  font-weight: 300;
  color: #fff;
}
.btn--outline-primary:after {
  padding: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#2e394f), to(#2e394f));
  background-image: linear-gradient(to right, #2e394f, #2e394f);
  border-radius: inherit;
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
.btn--outline-primary:before {
  background: -webkit-gradient(linear, left top, right top, from(#425272), to(#425272));
  background: linear-gradient(to right, #425272, #425272);
}
.btn--outline-primary span,
.btn--outline-primary i,
.btn--outline-primary small {
  color: #2e394f;
}
.btn--outline-primary:hover span,
.btn--outline-primary:hover i,
.btn--outline-primary:hover small {
  color: #fff;
}
.btn--alt {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--alt:after {
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background: linear-gradient(to right, #fff, #fff);
}
.btn--alt:before {
  background: -webkit-gradient(linear, left top, right top, from(#ffebea), to(#ffd9f9));
  background: linear-gradient(to right, #ffebea, #ffd9f9);
}
.btn--alt span,
.btn--alt i,
.btn--alt small {
  font-weight: 300;
  color: #dd4848;
}
.btn--outline-alt:after {
  padding: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(to right, #fff, #fff);
  border-radius: inherit;
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
.btn--outline-alt:before {
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background: linear-gradient(to right, #fff, #fff);
}
.btn--outline-alt span,
.btn--outline-alt i,
.btn--outline-alt small {
  color: #fff;
}
.btn--outline-alt:hover span,
.btn--outline-alt:hover i,
.btn--outline-alt:hover small {
  color: #dd4848;
}
.btn--secondary {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--secondary:after {
  background: -webkit-gradient(linear, left top, right top, from(#2e394f), to(#2e394f));
  background: linear-gradient(to right, #2e394f, #2e394f);
}
.btn--secondary:before {
  background: -webkit-gradient(linear, left top, right top, from(#425272), to(#425272));
  background: linear-gradient(to right, #425272, #425272);
}
.btn--secondary span,
.btn--secondary i,
.btn--secondary small {
  font-weight: 300;
  color: #fff;
}
.btn--outline-secondary:after {
  padding: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#2e394f), to(#2e394f));
  background-image: linear-gradient(to right, #2e394f, #2e394f);
  border-radius: inherit;
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
.btn--outline-secondary:before {
  background: -webkit-gradient(linear, left top, right top, from(#425272), to(#425272));
  background: linear-gradient(to right, #425272, #425272);
}
.btn--outline-secondary span,
.btn--outline-secondary i,
.btn--outline-secondary small {
  color: #2e394f;
}
.btn--outline-secondary:hover span,
.btn--outline-secondary:hover i,
.btn--outline-secondary:hover small {
  color: #fff;
}
.btn--vk {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--vk:after {
  background: -webkit-gradient(linear, left top, right top, from(#225895), to(#225895));
  background: linear-gradient(to right, #225895, #225895);
}
.btn--vk:before {
  background: -webkit-gradient(linear, left top, right top, from(#2866ad), to(#2866ad));
  background: linear-gradient(to right, #2866ad, #2866ad);
}
.btn--vk span,
.btn--vk i,
.btn--vk small {
  font-weight: 300;
  color: #fff;
}
.btn--outline-vk:after {
  padding: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#225895), to(#225895));
  background-image: linear-gradient(to right, #225895, #225895);
  border-radius: inherit;
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
.btn--outline-vk:before {
  background: -webkit-gradient(linear, left top, right top, from(#2866ad), to(#2866ad));
  background: linear-gradient(to right, #2866ad, #2866ad);
}
.btn--outline-vk:hover span,
.btn--outline-vk:hover i,
.btn--outline-vk:hover small {
  color: #fff;
}
.btn--tg {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--tg:after {
  background: -webkit-gradient(linear, left top, right top, from(#1384b8), to(#1384b8));
  background: linear-gradient(to right, #1384b8, #1384b8);
}
.btn--tg:before {
  background: -webkit-gradient(linear, left top, right top, from(#1996cf), to(#1996cf));
  background: linear-gradient(to right, #1996cf, #1996cf);
}
.btn--tg span,
.btn--tg i,
.btn--tg small {
  font-weight: 300;
  color: #fff;
}
.btn--outline-tg:after {
  padding: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#1384b8), to(#1384b8));
  background-image: linear-gradient(to right, #1384b8, #1384b8);
  border-radius: inherit;
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
.btn--outline-tg:before {
  background: -webkit-gradient(linear, left top, right top, from(#1996cf), to(#1996cf));
  background: linear-gradient(to right, #1996cf, #1996cf);
}
.btn--outline-tg:hover span,
.btn--outline-tg:hover i,
.btn--outline-tg:hover small {
  color: #fff;
}
.btn--ds {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--ds:after {
  background: -webkit-gradient(linear, left top, right top, from(#715aad), to(#715aad));
  background: linear-gradient(to right, #715aad, #715aad);
}
.btn--ds:before {
  background: -webkit-gradient(linear, left top, right top, from(#8c70d3), to(#8c70d3));
  background: linear-gradient(to right, #8c70d3, #8c70d3);
}
.btn--ds span,
.btn--ds i,
.btn--ds small {
  font-weight: 300;
  color: #fff;
}
.btn--outline-ds:after {
  padding: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#715aad), to(#715aad));
  background-image: linear-gradient(to right, #715aad, #715aad);
  border-radius: inherit;
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
.btn--outline-ds:before {
  background: -webkit-gradient(linear, left top, right top, from(#8c70d3), to(#8c70d3));
  background: linear-gradient(to right, #8c70d3, #8c70d3);
}
.btn--outline-ds:hover span,
.btn--outline-ds:hover i,
.btn--outline-ds:hover small {
  color: #fff;
}
.btn--google {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--google:after {
  background: -webkit-gradient(linear, left top, right top, from(#2b75bc), to(#2b75bc));
  background: linear-gradient(to right, #2b75bc, #2b75bc);
}
.btn--google:before {
  background: -webkit-gradient(linear, left top, right top, from(#358bdb), to(#358bdb));
  background: linear-gradient(to right, #358bdb, #358bdb);
}
.btn--google span,
.btn--google i,
.btn--google small {
  font-weight: 300;
  color: #fff;
}
.btn--outline-google:after {
  padding: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#2b75bc), to(#2b75bc));
  background-image: linear-gradient(to right, #2b75bc, #2b75bc);
  border-radius: inherit;
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
.btn--outline-google:before {
  background: -webkit-gradient(linear, left top, right top, from(#358bdb), to(#358bdb));
  background: linear-gradient(to right, #358bdb, #358bdb);
}
.btn--outline-google:hover span,
.btn--outline-google:hover i,
.btn--outline-google:hover small {
  color: #fff;
}
.btn--yandex {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--yandex:after {
  background: -webkit-gradient(linear, left top, right top, from(#f43d1c), to(#f43d1c));
  background: linear-gradient(to right, #f43d1c, #f43d1c);
}
.btn--yandex:before {
  background: -webkit-gradient(linear, left top, right top, from(#ff6247), to(#ff6247));
  background: linear-gradient(to right, #ff6247, #ff6247);
}
.btn--yandex span,
.btn--yandex i,
.btn--yandex small {
  font-weight: 300;
  color: #fff;
}
.btn--outline-yandex:after {
  padding: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#f43d1c), to(#f43d1c));
  background-image: linear-gradient(to right, #f43d1c, #f43d1c);
  border-radius: inherit;
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
.btn--outline-yandex:before {
  background: -webkit-gradient(linear, left top, right top, from(#ff6247), to(#ff6247));
  background: linear-gradient(to right, #ff6247, #ff6247);
}
.btn--outline-yandex:hover span,
.btn--outline-yandex:hover i,
.btn--outline-yandex:hover small {
  color: #fff;
}
.btn--nvidia {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--nvidia:after {
  background: -webkit-gradient(linear, left top, right top, from(#65a000), to(#65a000));
  background: linear-gradient(to right, #65a000, #65a000);
}
.btn--nvidia:before {
  background: -webkit-gradient(linear, left top, right top, from(#6ead01), to(#6ead01));
  background: linear-gradient(to right, #6ead01, #6ead01);
}
.btn--nvidia span,
.btn--nvidia i,
.btn--nvidia small {
  font-weight: 300;
  color: #fff;
}
.btn--outline-nvidia {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--outline-nvidia:after {
  background: -webkit-gradient(linear, left top, right top, from(#65a000), to(#65a000));
  background: linear-gradient(to right, #65a000, #65a000);
}
.btn--outline-nvidia:before {
  background: -webkit-gradient(linear, left top, right top, from(#6ead01), to(#6ead01));
  background: linear-gradient(to right, #6ead01, #6ead01);
}
.btn--outline-nvidia span,
.btn--outline-nvidia i,
.btn--outline-nvidia small {
  font-weight: 300;
  color: #fff;
}
.btn--amd {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--amd:after {
  background: -webkit-gradient(linear, left top, right top, from(#009a66), to(#009a66));
  background: linear-gradient(to right, #009a66, #009a66);
}
.btn--amd:before {
  background: -webkit-gradient(linear, left top, right top, from(#00ad74), to(#00ad74));
  background: linear-gradient(to right, #00ad74, #00ad74);
}
.btn--amd span,
.btn--amd i,
.btn--amd small {
  font-weight: 300;
  color: #fff;
}
.btn--outline-amd {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--outline-amd:after {
  background: -webkit-gradient(linear, left top, right top, from(#009a66), to(#009a66));
  background: linear-gradient(to right, #009a66, #009a66);
}
.btn--outline-amd:before {
  background: -webkit-gradient(linear, left top, right top, from(#00ad74), to(#00ad74));
  background: linear-gradient(to right, #00ad74, #00ad74);
}
.btn--outline-amd span,
.btn--outline-amd i,
.btn--outline-amd small {
  font-weight: 300;
  color: #fff;
}
.btn--intel {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--intel:after {
  background: -webkit-gradient(linear, left top, right top, from(#0078ff), to(#0078ff));
  background: linear-gradient(to right, #0078ff, #0078ff);
}
.btn--intel:before {
  background: -webkit-gradient(linear, left top, right top, from(#238aff), to(#238aff));
  background: linear-gradient(to right, #238aff, #238aff);
}
.btn--intel span,
.btn--intel i,
.btn--intel small {
  font-weight: 300;
  color: #fff;
}
.btn--outline-intel {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn--outline-intel:after {
  background: -webkit-gradient(linear, left top, right top, from(#0078ff), to(#0078ff));
  background: linear-gradient(to right, #0078ff, #0078ff);
}
.btn--outline-intel:before {
  background: -webkit-gradient(linear, left top, right top, from(#238aff), to(#238aff));
  background: linear-gradient(to right, #238aff, #238aff);
}
.btn--outline-intel span,
.btn--outline-intel i,
.btn--outline-intel small {
  font-weight: 300;
  color: #fff;
}
.btn--full {
  width: 100%;
}
.btn--middle {
  height: 2.25rem;
  padding: 0 1.5rem;
  gap: 0.5rem;
}
.btn--middle i {
  font-size: 0.8rem;
  line-height: 1;
}
.btn--middle span {
  font-size: 0.8rem;
  line-height: 1;
}
.btn--middle small {
  font-size: 0.6rem;
  line-height: 1;
}
.btn--small {
  height: 2rem;
  padding: 0 1rem;
  gap: 0.5rem;
}
.btn--small i {
  font-size: 0.7rem;
  line-height: 1;
}
.btn--small span {
  font-size: 0.7rem;
  line-height: 1;
}
.btn--small small {
  font-size: 0.5rem;
  line-height: 1;
}
.btn--mini {
  height: 1.5rem;
  padding: 0 0.8rem;
  gap: 0.5rem;
}
.btn--mini i {
  font-size: 0.6rem;
  line-height: 1;
}
.btn--mini span,
.btn--mini small {
  font-size: 0.6rem;
  line-height: 1;
}
.btn:disabled, .btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.btn.sending {
  pointer-events: none;
  -webkit-animation: sending 1s ease-in-out infinite;
          animation: sending 1s ease-in-out infinite;
}
@-webkit-keyframes sending {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes sending {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}

button {
  background: none;
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3rem;
}
.btn-group--start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-group--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.btn-group--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sep {
  width: 100%;
  height: 4px;
  background-color: var(--brand-color);
  border-radius: 100px;
}

.item-list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 20px;
}
.item-list__item {
  cursor: pointer;
}
.item-list__item-icon {
  width: 64px;
  height: 64px;
  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: 3px solid var(--secondary-color);
  position: relative;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
}
@media (max-width: 1680px) {
  .item-list__item-icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1460px) {
  .item-list__item-icon {
    width: 54px;
    height: 54px;
  }
}
@media (max-width: 1024px) {
  .item-list__item-icon {
    width: 48px;
    height: 48px;
  }
}
.item-list__item-icon:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--secondary-color);
  rotate: 45deg;
  opacity: 0.5;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
}
.item-list__item-icon img {
  width: 70%;
  -webkit-transition: scale 0.3s ease-in-out;
  transition: scale 0.3s ease-in-out;
}
.item-list__item:hover .item-list__item-icon {
  border: 3px solid var(--primary-color);
}
.item-list__item:hover .item-list__item-icon:after {
  border: 1px solid var(--primary-color);
}
.item-list__item:hover .item-list__item-icon img {
  scale: 0.8;
}
.item-list--small .item-list__item-icon {
  width: 54px;
  height: 54px;
}
@media (max-width: 1024px) {
  .item-list--small .item-list__item-icon {
    width: 48px;
    height: 48px;
  }
}

*[data-scroll-effect] {
  opacity: 0;
  -webkit-transition: opacity 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
  transition: opacity 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, opacity 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, opacity 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
}

*[data-scroll-effect].visible {
  opacity: 1;
}

*[data-scroll-effect=bottom] {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

*[data-scroll-effect=bottom].visible {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

*[data-scroll-effect=top] {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

*[data-scroll-effect=top].visible {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

*[data-scroll-effect=left] {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

*[data-scroll-effect=left].visible {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

*[data-scroll-effect=right] {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

*[data-scroll-effect=right].visible {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

*[data-scroll-effect=center] {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

*[data-scroll-effect=center].visible {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  pointer-events: none;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}
.popup.fadeIn {
  overflow: auto;
}
.popup.fadeIn .popup__bg {
  pointer-events: all;
}
.popup.active {
  pointer-events: all;
  overflow: auto;
}
.popup.fadeOut {
  pointer-events: none;
}
.popup__bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(220, 220, 220, 0.8);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.popup.fadeIn .popup__bg {
  opacity: 1;
}
.popup.active .popup__bg {
  opacity: 1;
}
.popup.fadeOut .popup__bg {
  opacity: 0;
}
.popup__content {
  width: 100%;
  max-width: 50rem;
  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;
  margin: auto;
}
.popup__content.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.popup.fadeIn .popup__content {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.popup.active .popup__content {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.popup.fadeOut .popup__content {
  opacity: 0;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
.popup__layout {
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 1.5rem;
  border-top: 2px solid var(--brand-color);
}
.popup__layout--video {
  aspect-ratio: 1280/720;
  line-height: 0;
  background-color: none;
}
.popup__layout--video iframe {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  padding: 0;
}
.popup__cancel {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--brand-color);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  top: -0.25rem;
  right: -0.25rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  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;
}
.popup__cancel:hover {
  background-color: var(--brand-hover-color);
}
.popup__cancel img {
  width: 0.5rem;
  margin: 0;
  padding: 0;
}
.popup__title {
  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;
  gap: 0.25rem;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}
.popup__title--middle {
  text-align: center;
}
.popup__title span {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--font-primary-color);
  font-weight: 300;
  text-transform: uppercase;
}
.popup__title small {
  width: 100%;
  font-size: 0.55em;
  line-height: 1;
  font-weight: 300;
}

.tippy-tooltip {
  font-size: 0.7rem;
  line-height: 1.4;
  color: #fff;
}

.alert {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
.alert__header {
  width: calc(100% + 2rem);
  padding: 0.6rem 1rem;
  display: block;
  margin: -0.6rem -1rem 0;
  margin-bottom: 0.6rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.alert__header span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1.4;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-height: unset;
  display: inline-block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}
.alert__close {
  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;
  cursor: pointer;
  -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;
}
.alert__close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.alert--small {
  font-size: 0.7rem;
  line-height: 1.4;
}
.alert--success {
  background-color: #c4ffd6;
  color: #216d38;
}
.alert--success:after {
  background-color: #59a871;
}
.alert--success .alert__header {
  color: #216d38;
  background-color: #aff3c4;
}
.alert--warning {
  background-color: #fff1ca;
  color: #e05809;
}
.alert--warning:after {
  background-color: #f8a02c;
}
.alert--warning .alert__header {
  color: #e05809;
  background-color: #fae6ae;
}
.alert--danger {
  background-color: #ffe4e4;
  color: #dd4848;
}
.alert--danger:after {
  background-color: #ee9292;
}
.alert--danger .alert__header {
  color: #dd4848;
  background-color: #ffd5d5;
}
.alert--info {
  background-color: #e7e7e7;
  color: #5a5a5a;
}
.alert--info:after {
  background-color: #a3a3a3;
}
.alert--info .alert__header {
  color: #5a5a5a;
  background-color: #d8d8d8;
}
.alert--autoclose {
  padding-bottom: 15px;
  -webkit-animation: alert_anim 8s linear forwards;
          animation: alert_anim 8s linear forwards;
}
.alert--autoclose:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.alert--autoclose:hover:after {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.alert--autoclose:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.alert--autoclose:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  -webkit-animation: alert_bar_anim 8s linear forwards;
          animation: alert_bar_anim 8s linear forwards;
}
@-webkit-keyframes alert_anim {
  from {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  to {
    display: none;
    opacity: 0;
  }
}
@keyframes alert_anim {
  from {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  to {
    display: none;
    opacity: 0;
  }
}
@-webkit-keyframes alert_bar_anim {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes alert_bar_anim {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.alert-messages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  position: fixed;
  z-index: 8888;
  right: 1rem;
  bottom: 1rem;
}
@media (max-width: 480px) {
  .alert-messages {
    left: 1rem;
  }
}
.alert-messages .alert {
  width: 18rem;
  max-width: 18rem;
}
@media (max-width: 480px) {
  .alert-messages .alert {
    width: 100%;
    max-width: 100%;
  }
}

.pagination {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2rem;
}
.pagination .btn {
  aspect-ratio: 1/1;
  padding: 0;
}
.pagination__dots {
  pointer-events: none;
  opacity: 0.5;
}

.annotation {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem;
  font-size: 0.7rem;
  line-height: 1.4;
  position: relative;
  background-color: #dcdcdc;
  border-radius: 0.5rem;
  color: var(--font-secondary-color);
}
.annotation--error {
  background-color: #ffe4e4;
  color: #dd4848;
}

.loader {
  width: 100%;
  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;
}
.loader:after {
  content: "";
  width: 50px;
  aspect-ratio: 1/1;
  background: url("../images/preloader-spin-alt.svg");
  background-size: 100% 100%;
}

.placeholder {
  width: 6rem;
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  border-radius: 0.2rem;
  background-color: #dcdcdc;
  -webkit-animation: placeholder-glow 2s ease-in-out infinite;
          animation: placeholder-glow 2s ease-in-out infinite;
}
@-webkit-keyframes placeholder-glow {
  50% {
    opacity: 0.5;
  }
}
@keyframes placeholder-glow {
  50% {
    opacity: 0.5;
  }
}

.text-area {
  width: 100%;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--font-secondary-color);
  font-weight: 300;
}
.text-area--backgrounded {
  background-color: rgba(24, 25, 26, 0.65);
  border: 1px solid rgba(57, 57, 57, 0.4);
  padding: 1rem;
}
.text-area > *:not(:first-child) {
  margin-top: 1.1rem;
}
.text-area > img {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.text-area b {
  font-family: var(--secondary-font);
}
.text-area p b {
  color: var(--font-color);
}
.text-area p img {
  height: auto !important;
  max-width: 100% !important;
  vertical-align: middle;
}
.text-area ul, .text-area ol {
  padding-left: 1rem;
}
.text-area ul li::marker, .text-area ol li::marker {
  color: var(--font-primary-color);
  font-weight: 700;
}
.text-area ul li:not(:first-child), .text-area ol li:not(:first-child) {
  margin-top: 0.9rem;
}
.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 li:after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 9px;
  left: -20px;
  background: var(--font-primary-color);
}
.text-area ul ul:not(:first-child) {
  margin-top: 1em;
}
.text-area a:not(.btn, .download__row-buttons a) {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.text-area a:not(.btn, .download__row-buttons a):hover {
  color: var(--font-primary-color);
}
.text-area hr {
  border: none;
  border-bottom: 1px solid #dcdcdc;
}
.text-area hr:not(:first-child) {
  margin-top: 1.5rem;
}
.text-area hr:not(:last-child) {
  margin-bottom: 1.5rem;
}
.text-area h1, .text-area h2, .text-area h3, .text-area h4, .text-area h5, .text-area h6 {
  font-family: var(--font-primary);
  color: var(--font-color);
  font-weight: 900;
}
.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(--font-primary);
}
.text-area h1 {
  font-size: 1.6rem;
  line-height: 1;
}
.text-area h2 {
  font-size: 1.4rem;
  line-height: 1;
}
.text-area h3 {
  font-size: 1.2rem;
  line-height: 1;
}
.text-area h4, .text-area h5, .text-area h6 {
  font-size: 1rem;
  line-height: 1;
}
.text-area table {
  width: 100% !important;
  border-spacing: 0px;
  border-collapse: collapse;
  font-size: 0.8rem;
  font-weight: 400;
}
.text-area table tr td, .text-area table tr th {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  text-align: left;
}
.text-area table tr td:not(:last-child), .text-area table tr th:not(:last-child) {
  padding-right: 1rem;
}
.text-area table tr td img, .text-area table tr th img {
  vertical-align: middle;
}
.text-area table tr td.full, .text-area table tr th.full {
  width: 100%;
}
.text-area table thead tr td, .text-area table thead tr th {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 300;
  color: var(--font-light-color);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(57, 57, 57, 0.1);
}
.text-area table thead:first-child tr:first-child td, .text-area table thead:first-child tr:first-child th {
  padding-top: 0px;
}
.text-area table thead:last-child tr:last-child td, .text-area table thead:last-child tr:last-child th {
  padding-bottom: 0px;
}
.text-area table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(57, 57, 57, 0.1);
}
.text-area table tbody:first-child tr:first-child td {
  padding-top: 0px;
}
.text-area table tbody:last-child tr:last-child td {
  padding-bottom: 0px;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
}
.table-wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #dcdcdc;
}
.table-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
}
.table-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand-color);
}

.spoiler {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
}
.spoiler--small {
  border-radius: 0.35rem;
}
.spoiler__title {
  width: 100%;
  padding: 1.1rem 3.5rem 1.1rem 1.5rem !important;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 400;
  color: var(--font-secondary-color);
  cursor: pointer;
  position: relative;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  border-bottom: 1px solid rgba(57, 57, 57, 0.15);
  margin-bottom: -1px;
}
.spoiler__title:hover {
  background-color: rgb(255, 255, 255);
}
.spoiler__title:before {
  content: "\f282";
  height: 100%;
  aspect-ratio: 1/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;
  position: absolute;
  right: 0;
  font-family: "bootstrap-icons";
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
  -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;
}
.spoiler--small .spoiler__title {
  padding: 0.8rem 2.5rem 0.8rem 0.8rem !important;
  font-size: 0.8rem;
}
.spoiler.active > .spoiler__title:before {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.spoiler__content {
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.5s ease-in-out;
  transition: grid-template-rows 0.5s ease-in-out;
  transition: grid-template-rows 0.5s ease-in-out, -ms-grid-rows 0.5s ease-in-out;
}
.spoiler__content-layout {
  width: 100%;
  padding: 0 1.5rem;
  overflow: hidden;
  -webkit-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
}
.spoiler--small .spoiler__content-layout {
  padding: 0 0.8rem;
}
.spoiler.active .spoiler__content {
  grid-template-rows: 1fr;
}
.spoiler.active .spoiler__content-layout {
  padding: 1.5rem;
}
.spoiler--small.active .spoiler__content-layout {
  padding: 0.8rem;
}

.icon-stroke {
  width: 100%;
}
.icon-stroke__line {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.icon-stroke__line:not(:first-child) {
  margin-top: 15px;
}
.icon-stroke__line-icon {
  width: 32px;
  height: 32px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  position: relative;
}
@media (max-width: 1024px) {
  .icon-stroke__line-icon {
    width: 24px;
    height: 24px;
  }
}
.icon-stroke__line-icon img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.icon-stroke__line-text {
  width: calc(100% - 32px);
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 3px;
}
@media (max-width: 1024px) {
  .icon-stroke__line-text {
    width: calc(100% - 24px);
    padding-left: 10px;
    padding-top: 1px;
  }
}

.tabs {
  width: 100%;
}
.tabs__switch {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid var(--font-primary-color);
  padding-bottom: 1.1em;
  margin-bottom: 1.1em;
}
.tabs__switch-item {
  font-size: 0.7rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}
.tabs__switch-item:hover, .tabs__switch-item.active {
  color: var(--font-primary-color);
}
.tabs__layout {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.tabs__layout-content {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.tabs__layout-content.active {
  position: relative;
  opacity: 1;
  pointer-events: all;
}

.roulette-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.roulette {
  width: 100%;
  position: relative;
  background-color: #f5f5f5;
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-bottom: 2px solid #dd4848;
  border-radius: 0.5rem;
  overflow: hidden;
}
.roulette:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: calc(50% - 10px);
  border-left: 10px transparent solid;
  border-right: 10px transparent solid;
  border-bottom: 10px #dd4848 solid;
}
.roulette:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#f5f5f5), color-stop(25%, rgba(245, 245, 245, 0)), color-stop(75%, rgba(245, 245, 245, 0)), to(#f5f5f5));
  background: linear-gradient(to right, #f5f5f5 0%, rgba(245, 245, 245, 0) 25%, rgba(245, 245, 245, 0) 75%, #f5f5f5 100%);
  pointer-events: none;
}
.roulette__case {
  width: 100%;
  height: 150px;
  position: relative;
  z-index: 1;
}
.roulette__case-items {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0px;
  left: calc(50% - 1800px - 90px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.roulette__case-item {
  width: 180px;
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  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;
}
.roulette__case-item:not(:first-child) {
  border-left: 1px solid rgba(57, 57, 57, 0.15);
}
.roulette__case-item-content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}
.roulette__case-item-icon {
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.roulette__case-item-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.roulette__case-item-name {
  font-size: 0.7rem;
  line-height: 1.2;
  text-align: center;
}

.roulette-actions {
  width: 100%;
  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;
  gap: 0.5rem;
  position: relative;
}
.roulette-actions .btn {
  height: 2.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
  z-index: 1;
  padding-bottom: 0.3rem;
}
.roulette-actions .btn small {
  font-size: 0.65rem;
  background-color: #fff;
  border-radius: 1.5rem;
  font-weight: bold;
  color: var(--font-primary-color);
  padding: 0.2rem 0.5rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.roulette-actions__price {
  background-color: #fff;
  border: 2px solid #2e394f;
  border-radius: 1rem;
  font-weight: bold;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  line-height: 1;
  color: #2e394f;
  padding: 0.2rem 0.5rem;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.roulette-actions__btn {
  height: 2rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.5rem;
  background-color: #f5f5f5;
  border: 1px solid rgba(57, 57, 57, 0.15);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1;
  color: var(--font-light-color);
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.roulette-actions__btn:hover {
  color: var(--font-color);
}
.roulette-actions__btn.active {
  color: var(--font-primary-color);
}
.roulette-actions__btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.roulette-result {
  width: 15rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  padding: 1rem;
  background-color: hsla(0, 0%, 100%, 0.9);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.roulette-result.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.roulette-result__title {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--font-primary-color);
}
.roulette-result__text {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.2rem;
}
.roulette-result__content {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.roulette-result__item {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
}
.roulette-result__item-icon {
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.roulette-result__item-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.roulette-result__item-name {
  font-size: 0.7rem;
  line-height: 1.2;
  text-align: center;
}

.roulette-rewards {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.roulette-rewards__item {
  width: calc((100% - 2rem) / 5);
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .roulette-rewards__item {
    width: calc((100% - 1.5rem) / 4);
  }
}
@media (max-width: 760px) {
  .roulette-rewards__item {
    width: calc((100% - 1rem) / 3);
  }
}
@media (max-width: 640px) {
  .roulette-rewards__item {
    width: calc((100% - 0.5rem) / 2);
  }
}
@media (max-width: 480px) {
  .roulette-rewards__item {
    width: 100%;
  }
}
.roulette-rewards__item-icon {
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.roulette-rewards__item-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.roulette-rewards__item-name {
  font-size: 0.7rem;
  line-height: 1.2;
  text-align: center;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.rating__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.rating__header .form {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}
.rating__filters {
  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;
  gap: 0.2rem;
}
.rating__content table {
  border-collapse: separate;
  border-spacing: 0 0.3rem;
  white-space: nowrap;
}
.rating__content table .num {
  width: 1px;
  position: relative;
  font-size: 0.7rem;
  font-weight: bold;
  text-align: center;
}
.rating__content table .num:before {
  content: "";
  display: block;
  width: 1.4rem;
  aspect-ratio: 1/1;
  border-radius: 10rem;
  border: 2px solid #dcdcdc;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.rating__content table .min {
  width: 1px;
}
.rating__content table th {
  padding: 0 1rem 0.8rem !important;
}
.rating__content table td {
  padding: 0.8rem 1rem !important;
}
.rating__content table thead tr th.num:before {
  display: none;
}
.rating__content table tbody tr td {
  border-bottom: none !important;
  background: rgba(220, 220, 220, 0.3);
}
.rating__content table tbody tr td:first-child {
  border-radius: 0.35rem 0 0 0.35rem;
}
.rating__content table tbody tr td:last-child {
  border-radius: 0 0.35rem 0.35rem 0;
}
.rating__content table tbody tr:nth-child(1) td {
  color: #642000;
  background: #fcd774;
}
.rating__content table tbody tr:nth-child(1) td.num:before {
  border: 2px solid #ffb23d;
}
.rating__content table tbody tr:nth-child(2) td {
  color: #32465c;
  background: #c6e2ec;
}
.rating__content table tbody tr:nth-child(2) td.num:before {
  border: 2px solid #8fd0e7;
}
.rating__content table tbody tr:nth-child(3) td {
  color: #3f2f1d;
  background: #ffe2c2;
}
.rating__content table tbody tr:nth-child(3) td.num:before {
  border: 2px solid #ecc79f;
}

.nav {
  --nav-bg: #fff;
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: var(--nav-bg);
}
.nav__container {
  width: calc(100% - var(--page-gap-x) * 2);
  max-width: 1860px;
  height: var(--page-nav-height);
  margin: 0px auto;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media (max-width: 1024px) {
  .nav__container {
    -webkit-column-gap: var(--page-gap-x);
       -moz-column-gap: var(--page-gap-x);
            column-gap: var(--page-gap-x);
  }
}
.nav__logo {
  height: 2.35rem;
  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;
  position: relative;
  z-index: 1;
}
.nav__logo-default {
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.nav__logo:hover .nav__logo-default {
  opacity: 0;
}
.nav__logo-hover {
  height: 100%;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.nav__logo:hover .nav__logo-hover {
  opacity: 1;
}
.nav__links {
  height: 100%;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0px;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  font-size: 0.8rem;
  font-family: var(--font-primary);
  font-weight: 400;
}
@media (max-width: 1024px) {
  .nav__links {
    position: fixed;
    top: var(--page-nav-height);
    right: var(--page-gap-x);
    z-index: 10;
    height: auto;
    max-height: calc(100dvh - var(--page-nav-height) - var(--page-gap-x));
    width: calc(100% - var(--page-gap-x) * 2);
    max-width: 16rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    background: #eeeeee;
    overflow-y: auto;
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
    opacity: 0;
    pointer-events: none;
    -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: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
.nav__links.active {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  pointer-events: all;
}
.nav__links > li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .nav__links > li {
    width: 100%;
  }
  .nav__links > li:not(:last-child) {
    border-bottom: 1px solid #dcdcdc;
  }
}
.nav__links-item {
  font-size: 0.8rem;
  line-height: 1;
  color: var(--font-secondary-color);
  white-space: nowrap;
  text-transform: uppercase;
  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;
  gap: 0.5rem;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .nav__links-item {
    width: 100%;
    padding: 0.8rem;
  }
}
.nav__links-item.active, .nav__links-item:active {
  color: var(--font-primary-color);
}
@media (hover: hover) {
  .nav__links-item:hover {
    color: var(--font-primary-color);
  }
}
.nav__links-droplink:after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 0.5rem;
  line-height: 1;
  -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;
}
.nav__links-droplink.active:after {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.nav__links-dropbox {
  list-style-type: none;
  position: absolute;
  min-width: calc(100% + 1.6rem);
  top: 100%;
  left: -0.8rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
  -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;
  background: #eeeeee;
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .nav__links-dropbox {
    min-width: 100%;
    top: 0;
    left: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    border-top: 1px solid #dcdcdc;
    border-radius: 0;
    background-color: #e4e4e4;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition: opacity 0s ease-in-out, -webkit-transform 0s ease-in-out;
    transition: opacity 0s ease-in-out, -webkit-transform 0s ease-in-out;
    transition: opacity 0s ease-in-out, transform 0s ease-in-out;
    transition: opacity 0s ease-in-out, transform 0s ease-in-out, -webkit-transform 0s ease-in-out;
    display: none;
  }
}
.nav__links-dropbox > li {
  position: relative;
}
.nav__links-dropbox > li:has(.game) {
  border: none !important;
}
.nav__links-dropbox.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  display: block;
}
@media (max-width: 1024px) {
  .nav__links-dropbox.active {
    position: relative;
  }
}
.nav__links-dropbox > li:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}
@media (max-width: 1024px) {
  .nav__links-dropbox > li:not(:last-child) {
    border-bottom: 1px solid #dcdcdc;
  }
}
.nav__links-dropbox-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1;
  color: var(--font-secondary-color);
  white-space: nowrap;
  text-transform: uppercase;
  padding: 0.8rem;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.nav__links-dropbox-link.active, .nav__links-dropbox-link:active {
  color: var(--font-primary-color);
  background-color: #eeeeee;
}
@media (max-width: 1024px) {
  .nav__links-dropbox-link.active, .nav__links-dropbox-link:active {
    background-color: #e4e4e4;
  }
}
@media (hover: hover) {
  .nav__links-dropbox-link:hover {
    color: var(--font-primary-color);
    background-color: #eeeeee;
  }
}
@media (hover: hover) and (max-width: 1024px) {
  .nav__links-dropbox-link:hover {
    background-color: #e4e4e4;
  }
}
.nav__links-dropbox-link--middle {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.nav__user {
  height: 100%;
  position: relative;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  margin-left: auto;
  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;
}
.nav__user-content {
  max-width: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}
.nav__user-content-avatar {
  width: 2rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  padding: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid var(--brand-color);
  border-radius: 50%;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
}
.nav__user-content-avatar span {
  width: 100%;
  height: 100%;
  position: relative;
}
.nav__user-content-avatar span img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 50%;
}
.nav__user-content-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2em;
  overflow: hidden;
}
.nav__user-content-info-name {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1;
  color: var(--font-secondary-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-height: unset;
  display: inline-block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.nav__user-content-info-balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  color: var(--font-light-color);
}
@media (max-width: 1460px) {
  .nav__user-content-info {
    display: none;
  }
}
.nav__user-content:after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
  -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;
}
@media (max-width: 1460px) {
  .nav__user-content:after {
    display: none;
  }
}
.nav__user:hover .nav__user-content-avatar, .nav__user.active .nav__user-content-avatar {
  border: 1px solid var(--brand-color);
}
.nav__user:hover .nav__user-content-info-name, .nav__user.active .nav__user-content-info-name {
  color: var(--font-hover-color);
}
.nav__user.active .nav__user-content:after {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.nav__user-dropbox {
  list-style-type: none;
  position: absolute;
  min-width: calc(100% + 1.6rem);
  top: 100%;
  right: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
  -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;
  background: #eee;
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: hidden;
}
.nav__user-dropbox > li {
  position: relative;
}
.nav__user-dropbox > li:has(.select--server) {
  padding: 0.8rem;
  background-color: #f7f7f7;
}
.nav__user-dropbox > li:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}
.nav__user-dropbox-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  line-height: 1;
  color: var(--font-secondary-color);
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 0.8rem;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.nav__user-dropbox-link.active, .nav__user-dropbox-link:active {
  color: var(--font-primary-color);
}
@media (hover: hover) {
  .nav__user-dropbox-link:hover {
    color: var(--font-primary-color);
  }
}
.nav__user-dropbox-link--middle {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.nav__user-dropbox-user {
  display: none;
}
@media (max-width: 1460px) {
  .nav__user-dropbox-user {
    display: block;
  }
}
.nav__user.active .nav__user-dropbox {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  display: block;
}
.nav__buttons {
  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;
  gap: 0.25rem;
  margin-left: auto;
}
.nav__buttons .btn i {
  display: none;
}
@media (max-width: 1460px) {
  .nav__buttons .btn {
    height: 2rem;
    padding: 0;
    aspect-ratio: 1/1;
  }
  .nav__buttons .btn i {
    display: block;
    font-size: 0.8rem;
  }
  .nav__buttons .btn span {
    display: none;
  }
}
.nav__servers {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #eeeeee;
  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;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
.nav__servers-item {
  position: relative;
  z-index: 2;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  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;
  gap: 0.3rem;
}
.nav__servers-item-online {
  font-weight: 700;
  color: var(--brand-color);
}
.nav__open {
  height: 2rem;
  padding: 0;
  aspect-ratio: 1/1;
  display: none;
}
@media (max-width: 1024px) {
  .nav__open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.nav__open i.bi-list {
  font-size: 1.2rem;
}
.nav__open i.bi-x-lg {
  font-size: 0.9rem;
}
.nav__open .bi-x-lg {
  display: none;
}
.nav__open.active .bi-list {
  display: none;
}
.nav__open.active .bi-x-lg {
  display: block;
}

.game {
  margin: 0.7rem;
  border-radius: 0.35rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.game:hover {
  background-color: #fff;
}
.game__icon {
  width: 2rem;
  aspect-ratio: 1/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: 700;
  border-radius: 0.35rem;
  color: #fff !important;
  font-size: 0.6rem !important;
  line-height: 1;
}
.game__icon--boi {
  background: linear-gradient(45deg, #007e9e, #47c4da);
}
.game__icon--woi {
  background: linear-gradient(45deg, #81130b, #ee1404);
}
.game.active .game__icon {
  background: #fff;
  color: #ee1404 !important;
}
.game span {
  text-transform: none;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 400;
}
.game span small {
  font-size: 0.9em;
  font-weight: 300 !important;
  opacity: 0.6;
}
.game.active span {
  color: #fff;
}
.game.active {
  background: linear-gradient(45deg, #ee1404, #df00bb);
}

.user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem;
  padding: 0.8rem;
}
.user-info__name {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  color: var(--font-secondary-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-height: unset;
  display: inline-block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.user-info__balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  line-height: 1;
  white-space: nowrap;
  color: var(--font-light-color);
}
.user-info__balance span {
  color: var(--font-secondary-color);
}

.page-background {
  width: 100%;
  height: calc(100dvh - var(--page-nav-height));
  position: absolute;
  top: var(--page-nav-height);
  left: 0;
  -webkit-mask: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(40%, black), to(black));
  -webkit-mask: linear-gradient(to top, transparent 0%, black 40%, black 100%);
  -webkit-mask-size: 100% 100%;
  overflow: hidden;
  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;
}
@media (max-width: 1024px) {
  .page-background {
    min-height: 418.75px;
  }
}
.page-background img {
  width: 100%;
  min-width: 2860px;
  height: auto;
}

.page-background-auth {
  width: 100%;
  height: calc(100dvh - var(--page-nav-height));
  position: absolute;
  top: var(--page-nav-height);
  left: 0;
  -webkit-mask: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(40%, black), to(black));
  -webkit-mask: linear-gradient(to top, transparent 0%, black 40%, black 100%);
  -webkit-mask-size: 100% 100%;
  overflow: hidden;
  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;
}
@media (max-width: 1024px) {
  .page-background-auth {
    min-height: 418.75px;
  }
}
.page-background-auth img {
  width: 100%;
  min-width: 2860px;
  height: auto;
}

.main-footer {
  position: relative;
  z-index: 2;
  background: url("../images/bg/main_footer_bg.jpg") top center no-repeat;
  background-size: cover;
  margin-top: auto;
}
.main-footer .container {
  position: relative;
  z-index: 2;
}
.main-footer:after {
  content: "";
  width: 100%;
  height: 118px;
  background: url("../images/bg/section_top_bg.png") top center;
  background-size: auto 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  pointer-events: none;
  -webkit-mask: linear-gradient(to top, transparent 0%, black 20px, black 100%);
  -webkit-mask-size: 100% 100%;
}
@media (max-width: 1680px) {
  .main-footer:after {
    height: 90px;
  }
}
@media (max-width: 1460px) {
  .main-footer:after {
    height: 60px;
  }
}
@media (max-width: 1024px) {
  .main-footer:after {
    height: 40px;
    -webkit-mask: linear-gradient(to top, transparent 0%, black 10px, black 100%);
    -webkit-mask-size: 100% 100%;
  }
}
.main-footer__socials .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-footer__socials-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 300;
  color: var(--font-primary-color);
  text-transform: uppercase;
  text-align: center;
}
.main-footer__socials-text {
  width: 100%;
  max-width: 34rem;
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
}
.main-footer__socials-buttons {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.main-footer__socials-buttons .btn {
  width: 100%;
  max-width: 10rem;
}
.main-footer__content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  color: var(--font-alt-secondary-color);
}
.main-footer__cpr {
  width: calc((100% - 2rem) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .main-footer__cpr {
    width: 100%;
    gap: 1rem;
  }
}
.main-footer__cpr-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 1rem;
}
@media (max-width: 1024px) {
  .main-footer__cpr-logos {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main-footer__cpr-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 1024px) {
  .main-footer__cpr-content {
    text-align: center;
  }
}
.main-footer__cpr-content h3 {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1;
  color: var(--font-secondary-color);
  text-transform: uppercase;
}
.main-footer__cpr-content p {
  font-size: 0.6rem;
  line-height: 1.4;
  color: var(--font-light-color);
  text-transform: uppercase;
}
.main-footer__cpr-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 300;
  color: var(--font-secondary-color);
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .main-footer__cpr-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main-footer__cpr-links a {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.main-footer__cpr-links a:hover {
  color: var(--font-primary-hover-color);
}
.main-footer__nav {
  width: calc((100% - 2rem) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .main-footer__nav {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main-footer__nav-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--font-primary-color);
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .main-footer__nav-title {
    margin-bottom: 0px;
  }
}
.main-footer__nav ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .main-footer__nav ul {
    text-align: center;
    margin-left: unset;
  }
}
@media (max-width: 640px) {
  .main-footer__nav ul {
    width: 100%;
  }
}
.main-footer__nav ul a {
  font-size: 0.9rem;
  line-height: 1;
  color: var(--font-secondary-color);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.main-footer__nav ul a:hover {
  color: var(--font-primary-hover-color);
}

.page-content {
  min-height: calc(100dvh - var(--page-nav-height));
  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;
}
@media (max-width: 1024px) {
  .page-content {
    min-height: auto;
  }
}
.page-content__auth {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
}

.text-page {
  width: 100%;
  padding: 40px;
  background-color: rgba(253, 251, 244, 0.65);
  border-top: 2px solid var(--primary-color);
}
@media (max-width: 1024px) {
  .text-page {
    padding: 30px;
  }
}

.auth-result {
  width: 100%;
  padding: 2rem;
  background-color: #fff;
  border-radius: 1.5rem;
  border-top: 2px solid var(--brand-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.auth-result__title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--font-primary-color);
  text-align: center;
  text-transform: uppercase;
}
.auth-result__content {
  text-align: center;
}
.auth-result__mail {
  font-size: 6rem;
  text-align: center;
  color: var(--font-primary-color);
}
.auth-result__mail i {
  background: linear-gradient(45deg, #dd4848, #dd4848);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.auth-result__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.auth-result .download__row {
  padding: 0;
}
.auth-result .download__row:not(:first-child) {
  padding-top: 1.1rem;
}

.cabinet {
  width: 100%;
  z-index: 2;
}
.cabinet .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1460px) {
  .cabinet .container {
    gap: 30px;
  }
}
.cabinet__aside {
  width: 25%;
  min-width: 15rem;
  min-height: calc(100dvh - var(--page-nav-height) - 240px);
  background-color: #fbfbfb;
  border-radius: 1.5rem;
  border-top: 2px solid var(--brand-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: var(--font-secondary-color);
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(164, 170, 192, 0.25);
          box-shadow: 0 0 20px rgba(164, 170, 192, 0.25);
}
@media (max-width: 1024px) {
  .cabinet__aside {
    min-height: auto;
    display: none;
  }
}
.cabinet__aside-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 2rem;
  background-color: #fff;
}
.cabinet__aside-header-avatar {
  width: 3.5rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10rem;
  position: relative;
}
.cabinet__aside-header-avatar img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.cabinet__aside-header-avatar-change {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  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;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  opacity: 0;
  padding-top: 0.1em;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.cabinet__aside-header-avatar-change i {
  background: linear-gradient(45deg, #dd4848, #dd4848);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.cabinet__aside-header-avatar-change:hover {
  opacity: 1;
}
.cabinet__aside-header-content {
  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;
  gap: 0.3rem;
}
.cabinet__aside-header-login {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  color: var(--font-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-height: unset;
  display: inline-block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}
.cabinet__aside-header-balance {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1;
  color: var(--font-secondary-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-height: unset;
  display: inline-block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}
.cabinet__aside-server {
  width: 100%;
}
.cabinet__aside-server .select {
  border-radius: 0;
  border: 0;
}
.cabinet__aside-server .select__toggle {
  padding: 0.9rem 2rem 0rem !important;
  border-top: 1px solid rgba(57, 57, 57, 0.15);
  border-bottom: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0;
}
.cabinet__aside-server .select__placeholder {
  padding: 0 2rem !important;
}
.cabinet__aside-server .select__dropdown {
  border: 0 !important;
  border-bottom: 1px solid rgba(57, 57, 57, 0.15) !important;
  border-radius: 0 !important;
}
.cabinet__aside-server .select_show .select__dropdown {
  -webkit-transform: translateY(0rem) !important;
          transform: translateY(0rem) !important;
}
.cabinet__aside-server .select__option {
  height: 2.6rem !important;
  padding: 0 2rem !important;
}
.cabinet__aside-nav {
  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;
  gap: 1.4rem;
  padding: 2rem;
}
.cabinet__aside-nav-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 300;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.cabinet__aside-nav-item i {
  background: linear-gradient(45deg, var(--brand-color), var(--brand-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.cabinet__aside-nav-item:hover, .cabinet__aside-nav-item.active {
  color: var(--brand-color);
}
.cabinet__content {
  width: calc(75% - 2rem);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  backdrop-filter: blur(5px);
  border-top: 2px solid var(--brand-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-shadow: 0 0 20px rgba(164, 170, 192, 0.25);
          box-shadow: 0 0 20px rgba(164, 170, 192, 0.25);
}
@media (max-width: 1460px) {
  .cabinet__content {
    width: calc(75% - 1.5rem);
  }
}
@media (max-width: 1024px) {
  .cabinet__content {
    width: 100%;
  }
}

.settings {
  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;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1.5rem;
}
@media (max-width: 1024px) {
  .settings {
    padding: 20px;
  }
}
.settings .form {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1460px) {
  .settings .form {
    gap: 20px;
  }
}
.settings .form__row {
  width: calc((100% - 30px) / 2);
}
@media (max-width: 1460px) {
  .settings .form__row {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 640px) {
  .settings .form__row {
    width: 100%;
  }
}

.empty-info {
  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;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  padding: 1rem;
}
.empty-info__message {
  width: 100%;
  font-size: 0.9rem;
  text-align: center;
}
.empty-info__buttons {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.cabinet-section {
  width: 100%;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.cabinet-section:not(:last-child) {
  border-bottom: 1px solid rgba(57, 57, 57, 0.15);
}
.cabinet-section__header {
  width: 100%;
  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;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1rem;
}
.cabinet-section__header h2 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 300;
  color: var(--font-primary-color);
  text-transform: uppercase;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.15em;
}
.cabinet-section__header h2 small {
  font-size: 0.65em;
  line-height: 1em;
  font-weight: 300;
  color: var(--font-color);
}
.cabinet-section__header--small h2 {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--font-color);
}
.cabinet-section__header--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cabinet-section__header--center h2 {
  text-align: center;
}
.cabinet-section__header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.cabinet-section__content {
  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;
  gap: 1.5rem;
}
.cabinet-section__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
.cabinet-section__column {
  width: calc((100% - 1.5rem) / 2);
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 640px) {
  .cabinet-section__column {
    width: 100%;
  }
}

.form {
  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;
  gap: 1.5rem;
}
.form__row {
  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;
  gap: 0.5rem;
}
.form__label {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1;
}
.form__input {
  width: 100%;
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.form__input:has(.input-error) {
  border: 1px solid rgb(255, 205, 205);
}
.form__input:has(input[readonly]), .form__input-readonly {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(57, 57, 57, 0.1);
}
.form__input:has(input[readonly]) input,
.form__input:has(input[readonly]) .input, .form__input-readonly input,
.form__input-readonly .input {
  color: #696969;
}
.form__input.bordered {
  border: 1px solid rgba(57, 57, 57, 0.1);
}
.form__input input,
.form__input .input {
  width: 100%;
  min-width: 0;
  height: 2.3rem;
  background: none;
  padding: 0 0.7rem;
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 300;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.form__input input span,
.form__input .input span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.form__input input.input-error,
.form__input .input.input-error {
  background-color: rgb(255, 229, 229);
}
.form__input-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  padding: 3px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.form__input-buttons .btn span {
  white-space: nowrap;
}
input.input-error + .form__input-buttons {
  background-color: rgb(255, 229, 229);
}
.form__input-currency {
  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;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding-right: 0.7rem;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.form__input-currency img {
  height: 1.4em;
}
input.input-error + .form__input-currency {
  background-color: rgb(255, 229, 229);
}
.form__textarea {
  width: 100%;
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form__textarea.bordered {
  border: 1px solid rgba(57, 57, 57, 0.15);
}
.form__textarea textarea {
  width: 100%;
  font-family: var(--font-secondary);
  background: none;
  padding: 0.7rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 300;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  resize: none;
  overflow-x: hidden;
}
.form__textarea textarea::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.05);
}
.form__textarea textarea::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
}
.form__textarea textarea::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand-color);
}
.form__textarea textarea.input-error {
  background-color: #ffe5e5;
}
.form__textarea-content {
  width: 100%;
  padding: 0.7rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.7rem;
}
.form__textarea.bordered > *:not(:first-child) {
  border-top: 1px solid rgba(57, 57, 57, 0.1);
}
.form__textarea .annotation {
  border-top: 0px solid rgba(57, 57, 57, 0.1) !important;
  border-radius: 0;
}
.form__file {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__select {
  width: 100%;
}
.form__checkbox {
  width: 100%;
}
.form__checkbox input {
  opacity: 0;
  position: absolute !important;
  pointer-events: none;
}
.form__checkbox.bordered input ~ label:before {
  border: 1px solid #cfcfca;
}
.form__checkbox input ~ label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.form__checkbox input ~ label:before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-color: #e1dcd3;
  cursor: pointer;
}
.form__checkbox input ~ label:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 3px;
  left: 3px;
  opacity: 0;
  background-color: #1d1d1b;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.form__checkbox input ~ label span {
  width: calc(100% - 16px);
  padding-left: 8px;
  font-size: 0.9em;
  line-height: 1.2em;
}
@media (max-width: 1024px) {
  .form__checkbox input ~ label span {
    padding-top: 1px;
  }
}
.form__checkbox input ~ label span a {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.form__checkbox input ~ label span a:hover {
  color: var(--font-primary-color);
}
.form__checkbox input:checked ~ label:after {
  opacity: 1;
}
.form__crop {
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(57, 57, 57, 0.1);
  border-radius: 0.5rem;
}
.form__pogress {
  width: 100%;
  height: 1rem;
  padding: 2px;
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  position: relative;
  z-index: 1;
}
.form__pogress-bar {
  width: 0%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--brand-color)), to(var(--brand-color)));
  background: linear-gradient(to right, var(--brand-color), var(--brand-color));
  position: relative;
  z-index: 1;
  border-radius: 0.5rem;
}
.form__pogress-counter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  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-size: 0.6rem;
  line-height: 1;
  font-weight: bold;
}
.form .annotation {
  padding: 10px 15px 9px;
}
.form__buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form__buttons--inline {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.form__description {
  width: 100%;
  padding: 0.6rem 0.7rem 0.6rem;
  font-size: 0.8rem;
  line-height: 1.3;
  position: relative;
  background-color: #e7e7e7;
  border-radius: 0.5rem;
  color: var(--font-secondary-color);
}

.form-select {
  width: 100%;
  position: relative;
  z-index: 2;
  height: 46px;
  background-color: #e3ded5;
  font-size: 0.9em;
  line-height: 0.9em;
  font-weight: 300;
}
.form-select--active {
  z-index: 3;
}
.form-select.bordered {
  border: 1px solid #cfcfca;
}
.form-select__current {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 0 15px;
  line-height: 1em;
  padding-top: 2px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.form-select__current:hover {
  background-color: #dad6cf;
}
.form-select__current--placeholder {
  color: var(--font-light-color);
}
.form-select__current img {
  margin-top: -2px;
  max-height: calc(100% - 20px);
}
.form-select__current:after {
  content: "";
  width: 11px;
  aspect-ratio: 13/7;
  background: url("../images/icon/alt-arrow.png") center center no-repeat;
  background-size: 100% 100%;
  margin-top: -1px;
  -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;
  margin-left: auto;
}
.form-select--active .form-select__current:after {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.form-select__stroke {
  width: 100%;
  background-color: #141414;
  color: var(--font-alt-secondary-color);
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}
.form-select__stroke::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #2b2b2b;
}
.form-select__stroke::-webkit-scrollbar-thumb {
  background-color: #696969;
}
.form-select__stroke::-webkit-scrollbar-thumb:hover {
  background-color: #696969;
}
.form-select__item {
  width: 100%;
  height: 47px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 0 15px;
  line-height: 1em;
  padding-top: 2px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.form-select__item:hover, .form-select__item--active {
  color: var(--font-alt-primary-color);
  background-color: #202020;
}
.form-select__item:not(:last-child) {
  border-bottom: 1px solid #2b2b2b;
}
.form-select__item img {
  margin-top: -2px;
  max-height: calc(100% - 20px);
}

.select {
  width: 100%;
  position: relative;
  z-index: 2;
  height: 2.3rem;
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 300;
}
.select--server {
  height: 3.5rem;
  font-size: 0.9rem;
}
.select_show {
  z-index: 3;
}
.select.bordered {
  border: 1px solid rgba(57, 57, 57, 0.15);
}
.select__toggle {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-secondary);
  font-weight: 300;
  text-align: left;
  gap: 0.5rem;
  padding: 0 0.7rem;
  line-height: 1;
  color: var(--font-secondary-color);
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  border-radius: 0.5rem;
}
.select__toggle:hover {
  background-color: #fff;
}
.select__toggle img {
  max-height: calc(100% - 1.3rem);
}
.select__toggle:after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
  -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;
  margin-left: auto;
}
.select--server .select__toggle {
  padding: 0.9rem 0.7rem 0rem;
  background-color: #fff;
}
.select--server .select__toggle:hover {
  background-color: #f5f5f5;
}
.select--server .select__toggle:after {
  margin-top: -0.9rem;
  margin-left: auto;
}
.select_show .select__toggle:after {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.select--server .select__placeholder {
  position: absolute;
  z-index: 3;
  top: 0.8rem;
  padding: 0 0.7rem;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 300;
  color: var(--font-secondary-color);
  opacity: 0.7;
  pointer-events: none;
}
.select__dropdown {
  width: calc(100% + 2px);
  left: -1px;
  background-color: #fff;
  color: var(--font-secondary-color);
  opacity: 0;
  -webkit-transform: translateY(-2.3rem);
          transform: translateY(-2.3rem);
  pointer-events: none;
  -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;
  position: relative;
  z-index: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(57, 57, 57, 0.1);
}
.select_show .select__dropdown {
  opacity: 1;
  -webkit-transform: translateY(0.25rem);
          transform: translateY(0.25rem);
  pointer-events: all;
  border-radius: 0.5rem;
}
.select__option {
  width: 100%;
  height: 2.3rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0 0.7rem;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.select__option:hover, .select__option--active {
  color: var(--font-secondary-hover-color);
  background-color: #f5f5f5;
}
.select__option:not(:last-child) {
  border-bottom: 1px solid rgba(57, 57, 57, 0.1);
}
.select__option img {
  max-height: calc(100% - 1.3rem);
}

.form-couner {
  width: 100%;
  position: relative;
  z-index: 2;
  height: 2.3rem;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2px;
}
.form-couner__button {
  height: 100%;
  aspect-ratio: 1/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;
  white-space: nowrap;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 0.5rem;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.form-couner__button:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 1;
  padding: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#2e394f), to(#2e394f));
  background-image: linear-gradient(to right, #2e394f, #2e394f);
  border-radius: inherit;
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
.form-couner__button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0rem;
  opacity: 1;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: opacity 0.5s ease-in-out, border-radius 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, border-radius 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, border-radius 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, border-radius 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  border-radius: 0 100px 100px 0;
  background: -webkit-gradient(linear, left top, right top, from(#2e394f), to(#2e394f));
  background: linear-gradient(to right, #2e394f, #2e394f);
}
.form-couner__button:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
  border-radius: 0;
}
.form-couner__button span,
.form-couner__button i {
  position: relative;
  z-index: 2;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}
.form-couner__button:hover span,
.form-couner__button:hover i {
  color: #fff;
}
.form-couner__num {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: 1px solid rgba(57, 57, 57, 0.1);
  border-radius: 0.5rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  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-size: 0.8rem;
}

.form-total {
  background-color: #fff;
}

.form-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
}
.form-file.bordered {
  border: 1px solid rgba(57, 57, 57, 0.15);
}
.form-file__button {
  min-height: 2.3rem;
  aspect-ratio: 1/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;
  white-space: nowrap;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
  font-size: 0.9rem;
  border-right: 1px solid rgba(57, 57, 57, 0.15);
}
.form-file__button:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.form-file.bordered .form-file__button {
  margin-right: 0;
  border-right: 1px solid rgba(57, 57, 57, 0.15);
}
.form-file__input {
  width: 100%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form-file__input-placeholder {
  width: 100%;
  height: 100%;
  padding: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1;
  color: var(--font-secondary-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-height: unset;
  display: inline-block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}
.form-file__input-placeholder:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.form-file__input-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  background-color: rgba(0, 0, 0, 0.05);
  position: relative;
}
.form-file__input-item:not(:last-child) {
  border-bottom: 1px solid rgba(57, 57, 57, 0.1);
}
.form-file__input-item-progress {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 3px;
  background-color: #dcdcdc;
  border-radius: 0.3rem;
  overflow: hidden;
}
.form-file__input-item-progress-bar {
  width: 0%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: url("../images/bar.jpg") left 0 center repeat-x;
  background-size: 47px 39px;
  -webkit-animation: progress-anim 1s linear infinite;
          animation: progress-anim 1s linear infinite;
}
@-webkit-keyframes progress-anim {
  from {
    background-position: 0px center;
  }
  to {
    background-position: 47px center;
  }
}
@keyframes progress-anim {
  from {
    background-position: 0px center;
  }
  to {
    background-position: 47px center;
  }
}
.form-file__input-item-preview {
  height: 32px;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-left: -0.25rem;
  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;
  background-color: #dcdcdc;
  border-radius: 0.3rem;
}
.form-file__input-item-preview img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 0.3rem;
}
.form-file__input-item-preview i {
  font-size: 0.7rem;
  line-height: 1;
}
.form-file__input-item-name {
  font-size: 0.7rem;
  line-height: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.form-file__input-item-cancel {
  height: 22px;
  aspect-ratio: 1/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;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
  background-color: var(--brand-color);
  border-radius: 1rem;
  position: relative;
  z-index: 2;
}
.form-file__input-item-cancel:hover {
  background-color: var(--brand-hover-color);
}
.form-file__input-item-cancel i {
  font-size: 0.9rem;
  line-height: 1;
  color: #fff;
}

.accounts {
  width: 100%;
}
.accounts__list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
}
.accounts__item {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
}
.accounts__item-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(57, 57, 57, 0);
  margin-bottom: -1px;
  -webkit-transition: border-bottom 0.5s ease-in-out;
  transition: border-bottom 0.5s ease-in-out;
}
.accounts__item-title-button {
  padding: 0;
  padding-left: 0.1rem;
  aspect-ratio: 1/1;
}
.accounts__item-title-button i {
  font-size: 0.65rem;
  -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;
}
.accounts__item-title-info {
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem;
  -webkit-transform: translateY(-0.1rem);
          transform: translateY(-0.1rem);
}
.accounts__item-title-info span {
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 300;
}
.accounts__item-title-info small {
  font-size: 0.65rem;
  line-height: 1;
  font-weight: 400;
  color: var(--font-light-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}
.accounts__item-title-info small img {
  height: 1.2em;
  margin: -0.1em 0 -0.1em;
}
.accounts__item-title-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.accounts__item-title-actions .btn {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.accounts__item.active .accounts__item-title {
  border-bottom: 1px solid rgba(57, 57, 57, 0.15);
}
.accounts__item.active .accounts__item-title-button i {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.accounts__item-content {
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: grid-template-rows 0.5s ease-in-out, background-color 0.5s ease-in-out;
  transition: grid-template-rows 0.5s ease-in-out, background-color 0.5s ease-in-out;
  transition: grid-template-rows 0.5s ease-in-out, background-color 0.5s ease-in-out, -ms-grid-rows 0.5s ease-in-out;
}
.accounts__item-content-layout {
  width: 100%;
  padding: 0 1rem;
  overflow: hidden;
  -webkit-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
}
.accounts__item.active .accounts__item-content {
  grid-template-rows: 1fr;
  background-color: rgba(0, 0, 0, 0.03);
}
.accounts__item.active .accounts__item-content-layout {
  padding: 1rem;
}
.accounts__item .empty-info {
  border-radius: 0.35rem;
}

.inventory {
  width: 100%;
}
.inventory__list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
}
@media (max-width: 640px) {
  .inventory__list {
    gap: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.inventory__item {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .inventory__item {
    width: calc((100% - 20px) / 2);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}
@media (max-width: 480px) {
  .inventory__item {
    width: 100%;
  }
}
.inventory__item-preview {
  height: 4.5rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.5rem;
  border-right: 1px solid rgba(57, 57, 57, 0.15);
  background-color: rgba(0, 0, 0, 0.03);
  overflow: hidden;
  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;
}
.inventory__item-preview-item {
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.inventory__item-preview-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media (max-width: 640px) {
  .inventory__item-preview {
    width: 100%;
    aspect-ratio: 298/145;
    border-right: none;
    border-bottom: 1px solid rgba(57, 57, 57, 0.15);
    padding: 1.5rem;
    height: 6rem;
  }
}
.inventory__item-preview .loader {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.inventory__item-preview .loader:after {
  height: 50%;
  background: url("../images/preloader-spin.svg");
  background-size: 100% 100%;
}
.inventory__item-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
@media (max-width: 640px) {
  .inventory__item-content {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-bottom: 0;
  }
}
.inventory__item-content-name {
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 400;
  color: var(--font-secondary-color);
}
.inventory__item-content-price {
  font-size: 0.7rem;
  line-height: 1;
  color: var(--font-light-color);
}
.inventory__item-content-price span {
  font-weight: 400;
  white-space: nowrap;
}
.inventory__item-buttons {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 1rem;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .inventory__item-buttons {
    width: 100%;
    padding-top: 15px;
  }
}
.shop {
  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;
  gap: 1.5rem;
}
.shop__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.shop__item {
  width: calc((100% - 40px) / 3);
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 640px) {
  .shop__item {
    width: calc((100% - 1rem) / 2);
  }
}
@media (max-width: 480px) {
  .shop__item {
    width: 100%;
  }
}
.shop__item-header {
  width: 100%;
  padding: 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--font-secondary-color);
  text-align: center;
}
.shop__item-preview {
  width: 100%;
  min-height: 7rem;
  padding: 1rem;
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(57, 57, 57, 0.15);
  border-bottom: 1px solid rgba(57, 57, 57, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
}
.shop__item-preview-item {
  width: 4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.shop__item-preview-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.shop__item-content {
  width: 100%;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.shop__item-price {
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.shop__item-buttons {
  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;
  gap: 0.5em;
}
.shop__item-buttons .btn {
  min-width: min(100%, 180px);
}
.shop .loader {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.shop .loader:after {
  height: 50%;
  background: url("../images/preloader-spin.svg");
  background-size: 100% 100%;
}

.gift-shop {
  width: 100%;
}
.gift-shop__list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
@media (max-width: 640px) {
  .gift-shop__list {
    gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.gift-shop__item {
  width: 100%;
  background-color: #f6f2ec;
  border: 1px solid #212121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .gift-shop__item {
    width: calc((100% - 20px) / 2);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}
@media (max-width: 480px) {
  .gift-shop__item {
    width: 100%;
  }
}
.gift-shop__item-preview {
  width: 180px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 1460px) {
  .gift-shop__item-preview {
    width: 150px;
  }
}
@media (max-width: 640px) {
  .gift-shop__item-preview {
    width: 100%;
    aspect-ratio: 298/145;
  }
}
.gift-shop__item-preview img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.gift-shop__item-preview-icon {
  z-index: 2;
}
.gift-shop__item-preview-bg {
  z-index: 1;
}
.gift-shop__item-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3em;
}
@media (max-width: 1460px) {
  .gift-shop__item-content {
    gap: 0.2em;
  }
}
@media (max-width: 640px) {
  .gift-shop__item-content {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-bottom: 0;
    gap: 0.3em;
  }
}
.gift-shop__item-content-name {
  font-size: 1.2em;
  line-height: 1em;
  font-weight: 700;
  color: var(--font-primary-color);
}
@media (max-width: 1460px) {
  .gift-shop__item-content-name {
    font-size: 1em;
  }
}
@media (max-width: 640px) {
  .gift-shop__item-content-name {
    font-size: 1.2em;
  }
}
.gift-shop__item-content-price {
  font-size: 1em;
  line-height: 1em;
}
@media (max-width: 1460px) {
  .gift-shop__item-content-price {
    font-size: 0.9em;
  }
}
.gift-shop__item-content-price span {
  font-weight: 700;
  white-space: nowrap;
}
.gift-shop__item-buttons {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 20px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 0.5em;
}
@media (max-width: 640px) {
  .gift-shop__item-buttons {
    width: 100%;
    padding-top: 15px;
  }
}
.gift-code {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (max-width: 640px) {
  .gift-code {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.gift-code .form__input {
  border-radius: 1.5rem;
}
@media (max-width: 480px) {
  .gift-code .form .btn {
    aspect-ratio: 1/1;
    padding: 0;
  }
}
.gift-code .form .btn i {
  display: none;
}
@media (max-width: 480px) {
  .gift-code .form .btn i {
    display: block;
  }
}
@media (max-width: 480px) {
  .gift-code .form .btn span {
    display: none;
  }
}

.referal {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
}
@media (max-width: 760px) {
  .referal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.referal__info {
  width: 30%;
  min-width: 250px;
}
@media (max-width: 760px) {
  .referal__info {
    width: 100%;
    min-width: auto;
  }
}
.referal__info-text {
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 300;
}
.referal__info .form .btn {
  aspect-ratio: 1/1;
  padding: 0;
}

.my-referal {
  width: 100%;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -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-item-align: stretch;
      align-self: stretch;
  text-align: center;
  gap: 1rem;
}
.my-referal .form__input {
  border-radius: 1.5rem;
}
.my-referal .form .btn {
  aspect-ratio: 1/1;
  padding: 0;
}

.donate-bonuses table tr td {
  padding-top: 0.65em;
  padding-bottom: 0.65em;
}
@media (max-width: 1460px) {
  .donate-bonuses table tr td {
    padding-top: 0.6em;
    padding-bottom: 0.6em;
  }
}
@media (max-width: 1024px) {
  .donate-bonuses table tr td {
    padding-top: 0.67em;
    padding-bottom: 0.67em;
  }
}
@media (max-width: 640px) {
  .donate-bonuses table tr td {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
}

.support__list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.support__list-item {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3rem;
}
.support__list-item-icon {
  width: 3.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/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-size: 1.5rem;
  line-height: 1;
  padding-top: 0.05em;
  border-radius: 0.35rem;
  margin: -1px;
}
@media (max-width: 1024px) {
  .support__list-item-icon {
    width: 50px;
    font-size: 1.2em;
  }
}
.support__list-item.green .support__list-item-icon {
  background-color: #a3eeba;
  color: #18552a;
}
.support__list-item.yellow .support__list-item-icon {
  background-color: #f7e1a5;
  color: #cc4b00;
}
.support__list-item.red .support__list-item-icon {
  background-color: #ffcaca;
  color: #ee1404;
}
.support__list-item.blue .support__list-item-icon {
  background-color: #caddff;
  color: #0498ee;
}
.support__list-item-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
  overflow: hidden;
}
.support__list-item-content h2 {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1;
  color: var(--font-secondary-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-height: unset;
  display: inline-block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}
.support__list-item-content small {
  font-size: 0.7em;
  line-height: 1;
  color: var(--font-light-color);
}
.support__list-item-notifications {
  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-size: 1rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.1);
  gap: 0.5em;
}
.support__list-item-notifications *.active {
  color: var(--font-primary-color);
}
.support__list-item-buttons {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 0 1rem;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .support__list-item-buttons .btn {
    aspect-ratio: 1/1;
    padding: 0;
  }
}
.support__list-item-buttons .btn i {
  display: none;
}
@media (max-width: 640px) {
  .support__list-item-buttons .btn i {
    display: block;
  }
}
@media (max-width: 640px) {
  .support__list-item-buttons .btn span {
    display: none;
  }
}
.support__messages {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.support__messages-item {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(57, 57, 57, 0.15);
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  gap: 1rem;
}
.support__messages-item.answer {
  border: 1px solid rgba(233, 36, 255, 0.18);
  background-color: rgba(231, 200, 255, 0.3);
}
.support__messages-item-title {
  font-size: 0.8rem;
  line-height: 1;
  color: var(--brand-color);
  font-weight: 300;
  margin-bottom: -5px;
}
.support__messages-item.answer .support__messages-item-title {
  color: #8034ff;
}
.support__messages-item-files {
  padding-top: 1rem;
  border-top: 1px solid rgba(57, 57, 57, 0.15);
}
.support__messages-item-date {
  font-size: 0.7rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: 300;
  color: var(--font-light-color);
}

.file-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3rem;
}
.file-list__item {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(46, 47, 51, 0.1);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  border-radius: 0.5rem;
  overflow: hidden;
}
.file-list__item:hover {
  background-color: rgba(46, 47, 51, 0.2);
}
.file-list__item-previw {
  width: 3rem;
  aspect-ratio: 1/1;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.file-list__item-previw img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.file-list__item-info {
  padding: 0 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
  overflow: hidden;
}
.file-list__item-name {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--font-secondary-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-height: unset;
  display: inline-block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}
.file-list__item-size {
  font-size: 0.7rem;
  line-height: 1;
  white-space: nowrap;
  color: var(--font-light-color);
}

.popup--product .popup__content {
  max-width: 24rem;
}
@media (max-width: 760px) {
  .popup--product .popup__title {
    text-align: center;
  }
}

.product {
  width: 100%;
  border-top: none;
}
.product__preview {
  width: 100%;
  padding: 1.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#dd4848), to(#ff382a));
  background: linear-gradient(to right, #dd4848, #ff382a);
  border-radius: 1.5rem 1.5rem 0 0;
  position: relative;
  z-index: 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;
  overflow: hidden;
}
.product__preview::after {
  width: 100%;
  aspect-ratio: 1/1;
  background: -webkit-gradient(linear, left top, right top, from(#ff382a), to(#ff2cdc));
  background: linear-gradient(to right, #ff382a, #ff2cdc);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  border-radius: 50%;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  opacity: 0.2;
}
.product__preview-item {
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 0.5rem solid rgba(255, 255, 255, 0.3);
}
.product__preview-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.product__content {
  width: 100%;
  padding: 40px;
}
@media (max-width: 1460px) {
  .product__content {
    padding: 30px;
  }
}
@media (max-width: 1024px) {
  .product__content {
    padding: 20px;
  }
}

.popup--change .popup__content {
  max-width: 24rem;
}
@media (max-width: 760px) {
  .popup--change .popup__title {
    text-align: center;
  }
}

.change {
  width: 100%;
  border-top: none;
}
.change__preview {
  width: 100%;
  aspect-ratio: 298/145;
  position: relative;
  z-index: 1;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
}
.change__preview img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.change__preview-icon {
  z-index: 2;
}
.change__preview-bg {
  z-index: 1;
}
.change__content {
  width: 100%;
  padding: 2rem;
}

.popup--create-ticket .popup__content {
  max-width: 720px;
}
@media (max-width: 760px) {
  .popup--create-ticket .popup__title {
    text-align: center;
  }
}

.create-ticket {
  width: 100%;
}
.create-ticket__title {
  font-size: 1.4em;
  gap: 0.2em;
}
.create-ticket__title small {
  font-size: 0.7em;
  line-height: 1.2em;
}
.create-ticket__content {
  width: 100%;
  padding: 40px;
}
@media (max-width: 1460px) {
  .create-ticket__content {
    padding: 30px;
  }
}
@media (max-width: 1024px) {
  .create-ticket__content {
    padding: 20px;
  }
}

.popup--download .popup__content {
  max-width: 45rem;
}
.popup--download .popup__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.popup--download .popup__layout > * {
  width: 100%;
  padding: 2rem;
}
.popup--download .popup__layout > *:not(:first-child) {
  border-top: 1px solid #dcdcdc;
}

.download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.download .sep {
  max-width: 3rem;
  background-color: #e9e9e9;
  margin: 1.2rem auto;
}
.download__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 2rem;
}
.download__row:not(:first-child) {
  border-top: 1px solid #e9e9e9;
}
.download__row-step {
  width: 100%;
  font-size: 0.6rem;
  line-height: 1;
  font-weight: 700;
  color: var(--font-primary);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}
.download__row-step span {
  background: -webkit-gradient(linear, left top, right top, from(var(--brand-color)), to(var(--brand-color)));
  background: linear-gradient(to right, var(--brand-color), var(--brand-color));
  border-radius: 100px;
  padding: 0.3rem 0.5rem;
}
.download__row-title {
  width: 100%;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 300;
  color: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
}
.download__row-subtitle {
  width: 100%;
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1;
  font-weight: 300;
  color: var(--font-color);
  text-transform: uppercase;
  text-align: center;
}
.download__row-subtitle b {
  color: var(--font-primary-color);
  text-decoration: underline;
}
.download__row-text {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 300;
  text-align: center;
}
.download__row-links {
  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;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.5rem;
}
.download__row-links a {
  width: calc((100% - 0.5rem) / 2);
  padding: 0.5rem 0.5rem;
  background-color: #eeeeee;
  border-radius: 100rem;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  color: #3a3a3a;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  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;
}
.download__row-links a:hover {
  background-color: #dcdcdc;
}
@media (max-width: 640px) {
  .download__row-links a {
    width: 100%;
  }
}
.download__row-buttons {
  width: 100%;
  max-width: 44rem;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.download__row-buttons .btn {
  width: calc((100% - 1rem) / 3);
  height: 2.3rem;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
@media (max-width: 640px) {
  .download__row-buttons .btn {
    width: calc((100% - 0.5rem) / 2);
  }
}
@media (max-width: 480px) {
  .download__row-buttons .btn {
    width: 100%;
  }
}
.download__row-buttons .btn span, .download__row-buttons .btn small, .download__row-buttons .btn img {
  z-index: 3;
}
.download__row-buttons .btn img {
  width: 5rem;
  max-width: 100%;
}
.download__row-table {
  width: 100%;
  max-width: 44rem;
  overflow-x: auto;
  border-radius: 0.75rem;
  overflow: hidden;
}
.download__row-table table {
  width: 100%;
  border-spacing: 0px;
  border-collapse: collapse;
  font-size: 0.8rem;
  line-height: 1.4;
}
.download__row-table table thead tr {
  background-color: #e9e9e9;
}
.download__row-table table thead tr th, .download__row-table table thead tr td {
  color: var(--font-color);
  font-size: 0.8rem;
  font-weight: 400;
}
.download__row-table table th, .download__row-table table td {
  text-align: left;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
}
.download__row-table table th b, .download__row-table table td b {
  font-size: 0.7rem;
  font-weight: 400;
}
.download__row-table table tbody tr:nth-child(even) {
  background-color: #eeeeee;
}
.download__row-table table tbody tr:nth-child(odd) {
  background-color: #f3f3f3;
}

.popup--auth .popup__content {
  max-width: 1080px;
}
@media (max-width: 760px) {
  .popup--auth .popup__content {
    max-width: 500px;
  }
}
@media (max-width: 760px) {
  .popup--auth .popup__title {
    text-align: center;
  }
}

.auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.auth__title {
  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;
  gap: 0.35rem;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}
.auth__title--middle {
  text-align: center;
}
.auth__title span {
  width: 100%;
  color: var(--font-primary-color);
  font-family: var(--font-primary);
  font-weight: 300;
  text-transform: uppercase;
}
.auth__title small {
  width: 100%;
  font-size: 0.6em;
  line-height: 1;
  font-weight: 300;
}
.auth__content {
  width: 100%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 1.5rem;
  border-top: 2px solid var(--brand-color);
}
.auth__form {
  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;
  gap: 1.5rem;
}
.auth__form-group {
  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;
  gap: 0.5rem;
}
.auth__form-row {
  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;
  gap: 0.2rem;
}
.auth__form-row--checkbox, .auth__form-row--captcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.auth__form-row .btn {
  width: 100%;
  height: 2.8rem;
}
.auth__form-input {
  width: 100%;
  height: 2.8rem;
  position: relative;
}
.auth__form-input input {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background: none;
  padding: 0.9rem 1rem 0px;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 400;
}
.auth__form-input input:focus {
  border: 1px solid var(--brand-color);
}
.auth__form-input input:focus + label span, .auth__form-input input.inputed + label span {
  -webkit-transform: scale(0.75) translateY(-10px);
          transform: scale(0.75) translateY(-10px);
}
.auth__form-input input.input-error {
  border: 1px solid #dd4848;
}
.auth__form-input label {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1rem;
  color: #9b9b9b;
  font-size: 0.8rem;
  line-height: 1;
}
.auth__form-input label span {
  width: 100%;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -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;
  padding-top: 2px;
}
.auth__form-checkbox {
  width: 100%;
}
.auth__form-checkbox input {
  opacity: 0;
  position: absolute !important;
  pointer-events: none;
}
.auth__form-checkbox input ~ label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.auth__form-checkbox input ~ label:before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  cursor: pointer;
}
.auth__form-checkbox input ~ label:after {
  content: "";
  width: calc(1rem - 8px);
  height: calc(1rem - 8px);
  position: absolute;
  top: 4px;
  left: 4px;
  opacity: 0;
  background: -webkit-gradient(linear, left top, right top, from(#dd4848), to(#dd4848));
  background: linear-gradient(to right, #dd4848, #dd4848);
  border-radius: 0.35rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.auth__form-checkbox input ~ label span {
  width: calc(100% - 1rem);
  padding-left: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.2;
}
.auth__form-checkbox input ~ label span a {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.auth__form-checkbox input ~ label span a:hover {
  color: var(--font-primary-color);
}
.auth__form-checkbox input.input-error ~ label:before {
  border: 1px solid #ee1404;
}
.auth__form-checkbox input:checked ~ label:after {
  opacity: 1;
}
.auth__form-captcha {
  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;
}
.auth__form-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.5rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.auth__form-links a {
  font-size: 0.8rem;
  line-height: 1;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.auth__form-links a:hover {
  color: var(--font-primary-color);
}/*# sourceMappingURL=style.css.map */


.battlepass {
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  padding: 1.5em;
}
.battlepass-title {
  font-size: .9rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: .8em;
}
.battlepass-exp__bar {
  position: relative;
  padding: .4em 0;
  background: #e8e8e8;
  border-radius: 18px;
  overflow: hidden;
  --percent: calc(var(--current) / var(--max) * 100%);
}
.exp__bar-fill {
  position: absolute;
  inset: 0;
  width: var(--percent);
  background: linear-gradient(to left, #d60b87, #910085 35%, #87018c 65%, #620074);
  transition: width 0.3s ease;
  border-radius: 18px;
}
.battlepass-exp__bar span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: .7em;
}
.battlepass-exp__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2em;
}
.battlepass-rewards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  overflow: hidden;
  align-items: center;
  flex-wrap: wrap;
  gap: .4em;
  align-items: stretch;
}
.battlepass-rewards__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: calc((100% - 2rem)/5);
  align-items: center;
  text-align: center;
  background: #f5f5f5;
  border-radius: 10px;
  gap: .2rem;
  padding: 1rem;
  border: 1px solid #dcdcdc;
  width: 100%;
}
.battlepass-rewards__item-icon {
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.battlepass-rewards__item-name {
  padding-top: .4em;
  font-size: .7em;
  line-height: 1.2;
}
.battlepass-rewards__item-exp {
  color: #008215;
  font-weight: bold;
  font-size: .8em;
  line-height: 1;
}
.battlepass-rewards-spoiler .spoiler__title, .battlepass-tasks-spoiler .spoiler__title {
  padding: .9rem 3.5rem .9rem 1.5rem !important;
}
.spoiler__content .battlepass-rewards, .spoiler__content .battlepass-tasks {
  padding: .45em;
}
.battlepass-rewards {
  display: grid;
  gap: .4em;
}
.battlepass-rewards--preview{
  --cols: 5;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  grid-auto-rows: 1fr;
  overflow: hidden;
  max-height: calc(var(--item-h, 165px) + .4em);
}
.premium-reward {
  background: #f5f2e1;
  border-color: #e2deca;
}
.rewards-claimed .battlepass-rewards__item {
  border: none;
  color: #9197a2;
}
.rewards-claimed .default-reward {
  background: #f5f5f5;
}
.rewards-claimed .premium-reward {
  background:  #f5f2e1;
}
.rewards-claimed .battlepass-rewards__item-icon {
  filter: grayscale(1) opacity(.5);
}
.rewards-claimed .battlepass-rewards__item .battlepass-rewards__item-exp {
  color: #7aba7b;
}
.battlepass-tasks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  overflow: hidden;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: .4em;
  align-items: stretch;
}
.battlepass-tasks__item {
  background: #f5f5f5;
  padding: 1.5em 1em 1.2em 1em;
}
.battlepass-tasks__item-exp, .battlepass-tasks__item-title {
  color: #2e394f;
  font-weight: bold;
  font-size: .9em;
  line-height: 1.2;
}
.battlepass-tasks__item-title {
  padding-top: .4em;
}
.battlepass-tasks__item-date {
  color: #6d6d6d;
  font-weight: bold;
  font-size: .6em;
  text-transform: uppercase;
  padding-top: .2em;
}
.battlepass-tasks__item-fill-wrap {
  max-width: 40%;
  background: #dddddd;
  border-radius: 2.5px;
  margin: 0 auto;
  margin-top: .6em;
  margin-bottom: .3em;
}
.battlepass-tasks__item-fill {
  height: 5px;
  inset: 0;
  width: calc(var(--task-current) / var(--task-max) * 100%);
  background: linear-gradient(to left, #008215);
  transition: width 0.3s ease;
  border-radius: 2.5px;
}
.battlepasss-tasks__item-progess {
  text-transform: uppercase;
  font-weight: bold;
  font-size: .6em;
}
.tasks__item-progress-complete {
  color: #7abb85;
}
.battlepass-tasks--preview {
  --tasks-cols: 3;
  grid-template-columns: repeat(var(--tasks-cols), minmax(0, 1fr));
  grid-auto-rows: 1fr;
  overflow: hidden;
  max-height: calc(var(--item-h, 163px) + .4em);
}
.task-completed > * {
  filter: opacity(.5);
}
.battlepass-premium_header {
  display: flex;
  width: 100%;
  min-width: 0;
  justify-content: space-between;
}

.marathons {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: .4em;
}
.marathon {
  display: grid;
  min-width: 0;
  grid-template-columns: 50% 50%;
  background: #f5f5f5;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  padding: 0 1.5em;
}
.marathon-table, .marathon-rewards {
  padding: 1.5em 0;
}
.marathon-tr {
  display: grid;
  grid-template-columns: 76% 24%;
  text-align: left;
  align-items: center;
  padding: .6em 0;
  border-bottom: 1px solid #ebebeb;
  padding-right: 2em;
}
.marathon-rewards {
  padding-left: 2em;
  border-left: 1px solid #dcdcdc;
}
.marathon-rewards-list {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  gap: .4em;
}
.marathon-reward-item {
  position: relative;
}
.marathon-reward-img {
  display: flex;
  min-width: 0;
  justify-content: center;
  align-items: center;
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.item-tooltip {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: all .4s ease;
  background: #e2e2e2;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  padding: .7em 1em;
  width: max-content;
  bottom: 70%;
  left: 50%;
  transform: translateX(-50%);
}
.marathon-reward-item:hover .item-tooltip {
  opacity: 1;
  visibility: visible;
}
.item-tooltip-title {
  font-size: .7em;
}
.item-tooltip-desc {
  font-size: .6em;
  color: #6d6d6d;
}
.marathon-table-title {
  text-transform: uppercase;
  padding-bottom: .8em;
  font-weight: 500;
  font-size: .9em;
}
.marathon-table-title span {
  color: #dd4848;
}
.marathon-th {
  color: #6d6d6d;
  text-transform: uppercase;
  font-size: .7em;
}
.marathon-td {
  font-size: .7em;
  font-weight: bold;
}
.marathon-progress {
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
}
.marathon-progress-fill-wrap {
  width: 3em;
  height: .35em;
  background: #dddddd;
  border-radius: 2.5px;
  margin: 0 .9em;
}
.marathon-progress-fill {
  border-radius: 2.5px;
  height: .35em;
  width: calc(var(--marathon-current) / var(--marathon-max) * 100%);
  background: linear-gradient(to left, #008215);
  transition: width 0.3s ease;
}
.marathon-completed .marathon-progress-current, .marathon-completed .marathon-progress-sep {
  display: none;
}
.marathon-completed .marathon-progress-completed {
  background: url(../images/icon/icon-approve.png) center no-repeat;
  background-size: contain;
  aspect-ratio: 12/10;
  width: .7em;
  margin-left: .3em;
}


.calendar__header {
  display: flex;
  width: 100%;
  min-width: 0;
  justify-content: space-between;
  align-items: center;
}
.calendar-ttile {
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: .9em;
  padding: 1.2em;
}
.calendar-rewards {
  padding: 1em;
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .4em;
}
.calendar-reward {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  background: #f5f5f5;
  border: 1px solid #dcdcdc;
  padding: 1.5em;
}
.calendar-reward-img {
  position: relative;
}
.calendar-reward-img img {
  position: relative;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 3rem;
}
.calendar-reward-title {
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2;
  padding-top: .5em;
}
.calendar-reward-period {
  text-transform: uppercase;
  font-size: .8em;
  font-weight: bold;
  color: #858585;
  padding-top: .2em;
}
.calendar-reward-status {
  content: "";
  position: absolute;
  width: 4em;
  aspect-ratio: 90/24;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.available .calendar-reward-status {
  background-image: url(../images/rewards/reward-available.png);
}
.taken .calendar-reward-status {
  background-image: url(../images/rewards/reward-taken.png);
}
.taken .calendar-reward-period {
  color: #b2b2b2;
}
.gold {
  background: #f5f2e1;
  border-color: #e2deca;
}
.gold .calendar-reward-period {
  color: #9f9334;
}

.achievements {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1.4em;
}
.achievements-table {
  padding: 1.4em;
  background: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
}
.achievements-tr {
  padding: 1.1em 0;
  display: grid;
  grid-template-columns: 50% 25% 25%;
  border-bottom: 1px solid #ebebeb;
  align-items: center;
}
.achievements-tr:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.achievements-table-title {
  text-transform: uppercase;
  font-size: .9em;
}
.achievements-th {
  font-size: .7em;
  text-transform: uppercase;
  font-weight: 500;
  color: #6d6d6d;
}
.achievements-td {
  font-size: .7em;
  font-weight: bold;
}
.achievements-td span {
  color: #dd4848;
}
.achivements-td-rewards {
  display: flex;
  min-width: 0;
  gap: .2em;
}
.achivements-reward {
  position: relative;
}
.achivements-reward-img {
  display: flex;
  min-width: 0;
  justify-content: center;
  align-items: center;
}
.achivements-reward-img img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 2em;
}
.achivements-reward:hover .item-tooltip {
  visibility: visible;
  opacity: 1;
}
.achievements-completed .achievements-td, .achievements-completed .achievements-td span {
  color: #9197a2;
}
.achievements-completed .achievements-reward, .achievements-completed .achivements-reward-img img {
  filter: grayscale(1);
  opacity: .5;
}
.achievements-completed span.achievements-completed {
  display: inline-block;
  background: url(../images/icon/icon-approve.png) center no-repeat;
  background-size: contain;
  aspect-ratio: 12/10;
  width: .7em;
  margin-right: .4em;
}

@media(max-width: 1680px) {
  .battlepass-rewards--preview {
    max-height: calc(var(--item-h, 130px) + .4em);
  }
  .battlepass-tasks--preview {
    max-height: calc(var(--item-h, 145px) + .4em);
  }
}
@media(max-width: 1460px) {
  .battlepass-tasks--preview {
    max-height: calc(var(--item-h, 110px) + .4em);
  }
}
@media(max-width: 1200px) {
  .achievements-tr {
    grid-template-columns: 40% 40% 20%;
  }
}
@media(max-width: 850px) {
  .battlepass-rewards--preview {
    max-height: calc(var(--item-h, 115px) + .4em);
    --cols: 3;
  }
  .battlepass-rewards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .marathon {
    grid-template-columns: 60% 40%;
  }
  .marathon-reward-item, .marathon-reward-img, .marathon-reward-img img {
    width: 2em;
  }
}
@media(max-width: 780px) {
  .battlepass-tasks--preview {
    --tasks-cols: 2;
    grid-template-columns: repeat(var(--tasks-cols), minmax(0, 1fr));
    grid-auto-rows: 1fr;
    overflow: hidden;
    max-height: calc(var(--item-h, 130px) + .4em);
  }
  .battlepass-tasks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-rewards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media(max-width: 680px) {
  .achievements__urs, .achievements__unique {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    overflow: scroll;
  }
  .achievements-table {
    width: 460px;
  }
}
@media(max-width: 650px) {
  .marathon {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }
  .marathon-tr {
    padding-right: 0;
    grid-template-columns: 80% 20%;
  }
  .marathon-rewards {
    border-left: none;
    text-align: center;
    padding-left: 0;
  }
  .marathon-reward-item, .marathon-reward-img, .marathon-reward-img img {
    width: 2em;
  }
  .marathon-rewards-list {
    justify-content: center;
  }
}
@media(max-width: 615px) {
  .battlepass-tasks--preview {
    --tasks-cols: 1;
    grid-template-columns: repeat(var(--tasks-cols), minmax(0, 1fr));
    grid-auto-rows: 1fr;
    overflow: hidden;
    max-height: calc(var(--item-h, 130px) + .4em);
  }
  .battlepass-tasks {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .calendar-rewards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media(max-width: 520px) {
  .battlepass-rewards--preview {
    max-height: calc(var(--item-h, 115px) + .4em);
    --cols: 2;
  }
  .battlepass-rewards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media(max-width: 400px) {
  .battlepass-rewards--preview {
    max-height: calc(var(--item-h, 130px) + .4em);
  }
  .calendar-rewards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}