/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import "../js/jquery-ui-1.12.1.custom/jquery-ui.min.css";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyr-Bold.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyr-Medium.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyr-Roman.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: "Helvetica Neue", "HelveticaNeueCyr", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  background: #f7f7f7;
  -webkit-text-size-adjust: 100%;
}

/* links */
a {
  color: #000;
  text-decoration: none;
  transition: 0.2s color;
}

.link--with-hover:hover {
  color: #6f6f6f;
}

.link {
  color: #6426EA;
}

.link:hover {
  color: #8F6DF5;
}

.link--with-underline {
  border-bottom: 2px solid #6426EA;
}

.link--with-underline:hover {
  border-color: #8F6DF5;
}

.link--external:after {
  content: " ";
  background: url(../images/external-link.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: 10px;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}

.link--external:hover:after {
  opacity: 0.7;
}

.link--with-arrow {
  color: #8F6DF5;
  border-bottom: 1px solid #8F6DF5;
  font-weight: 500;
}

.link--with-arrow:after {
  content: " ";
  background: url(../images/arrow-link-right.svg);
  width: 5px;
  height: 7px;
  background-size: 5px 7px;
  display: inline-block;
  margin-left: 3px;
  vertical-align: middle;
}

.link--with-arrow:hover {
  color: #6426EA;
  border-color: #6426EA;
}

.link--with-arrow:hover:after {
  background: url(../images/arrow-link-right-hover.svg);
}

/* logo */
.logo {
  background: url(../images/logo.svg) no-repeat;
  display: block;
  transition: 0.3s opacity;
  background-size: 115px 40px;
  width: 115px;
  height: 40px;
}

.logo--white {
  background-image: url(../images/logo-white.svg);
}

.logo:hover {
  opacity: 0.7;
}

/* grid */
.grid {
  display: grid;
}

.grid--two-columns {
  grid-template-columns: 50% 50%;
}

.grid--four-columns {
  grid-template-columns: 25% 25% 25% 25%;
}

.grid--five-columns {
  grid-template-columns: 20% 20% 20% 20% 20%;
}

.grid--three-columns {
  grid-template-columns: 33.3% 33.3% 33.3%;
}

.grid--birthday-columns {
  grid-template-columns: 30% 40% 30%;
}

.grid--columns--60-40 {
  grid-template-columns: 60% 40%;
}

.grid--columns--25-75 {
  grid-template-columns: 25% 75%;
}

.grid--columns--40-60 {
  grid-template-columns: 40% 60%;
}

.grid--gap--20 {
  grid-gap: 20px;
}

.grid--gap--5 {
  grid-gap: 5px;
}

.grid--two-columns.grid--gap--20 {
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
}

.grid--three-columns.grid--gap--5 {
  grid-template-columns: calc(33.3% - 5px) calc(33.3% - 5px) calc(33.3% - 5px);
}

.grid--columns--25-75.grid--gap--20 {
  grid-template-columns: calc(25% - 10px) calc(75% - 10px);
}

/* page base tags */
.page__h1 {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 13px;
}

.page__description {
  color: #717171;
  line-height: 20px;
  padding-bottom: 22px;
}

.page__block {
  background: #fff;
  padding: 20px 20px;
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.content__blocks__block:first-child {
  margin-right: 5px;
}

.content__blocks__block:last-child {
  margin-left: 5px;
}

.page__block__body {
  padding-top: 12px;
}

.page__block--no-padding {
  padding: 0;
}

.page__block__title {
  font-size: 20px;
  font-weight: 700;
}

.page__block__title--medium {
  font-size: 25px;
}

.page__block__title--small {
  font-size: 15px;
}

.page__block__title--bottom-extra-space {
  margin-bottom: 20px;
}

.page__block__sub-title {
  padding-top: 5px;
  line-height: 22px;
  color: #4b4b4b;
}

.page__block__description {
  padding-top: 12px;
  line-height: 22px;
  color: #1e1e1e;
  padding-bottom: 11px;
}

.page__block__description:last-child {
  padding-bottom: 0;
}

.page__block__description--linkify a {
  color: #6426EA;
}

.page__body--center {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page__block__text img {
  margin-top: 10px;
}

.page__block__text__section {
  padding-bottom: 10px;
  padding-top: 10px;
}

.page__block__text p {
  line-height: 23px;
}

.page__block__text p:last-child {
  padding-bottom: 0;
}

.page__block__text h2 {
  color: #6426EA;
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 10px;
  padding-top: 20px;
}

.page__block__text h2:first-child {
  padding-top: 0;
}

.page__block__text ul {
  list-style-type: disc;
  margin-left: 20px;
}

.page__block__text ul li {
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 2px;
  line-height: 23px;
}

.page__block__text a {
  color: #6426EA;
}

/* flex */
.flex {
  display: flex;
}

.flex-grow--1 {
  flex-grow: 1;
}

.flex--items-center {
  align-items: center;
}

.flex--content-center {
  justify-content: center;
}

/* helpers */
.wrapper {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.page-content {
  min-height: calc(100vh - 275px);
  /*min-height: 500px;*/
}

.text-align--right {
  text-align: right;
}

.text-align--center {
  text-align: center;
}

.margin-left--35 {
  margin-left: 35px;
}

.margin-top--10 {
  margin-top: 10px;
}

.margin-top--20 {
  margin-top: 20px;
}

.margin-top--2 {
  margin-top: 2px;
}

.margin-top--3 {
  margin-top: 3px;
}

.margin-left--5 {
  margin-left: 5px;
}

.margin-left--10 {
  margin-left: 10px;
}

.margin-left--15 {
  margin-left: 15px;
}

.margin-right--5 {
  margin-right: 5px;
}

.margin-right--10 {
  margin-right: 10px;
}

.margin-bottom--20 {
  margin-bottom: 20px;
}

.padding-top--15 {
  padding-top: 15px;
}

.padding-top--20 {
  padding-top: 20px;
}

.padding-bottom--20 {
  padding-bottom: 20px;
}

.padding-bottom--5 {
  padding-bottom: 5px;
}

.padding-bottom--10 {
  padding-bottom: 10px;
}

.padding-top--10 {
  padding-top: 10px;
}

.max-width--500 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.max-width--700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text--highlight {
  color: #6426EA !important;
}

.text--highlight .rouble g {
  fill: #6426EA;
}

.text--medium {
  font-weight: 500;
}

.text--grey {
  color: #a6a6a6;
}

.text--success {
  color: #149211;
}

.text--small {
  font-size: 13px;
}

.text--error {
  color: #F25822;
}

.white-space--nowrap {
  white-space: nowrap;
}

.width--100 {
  width: 100%;
}

.display--none {
  display: none !important;
}

.clipboard {
  cursor: pointer;
}

.align-middle {
  vertical-align: middle;
}

/* system */
svg.rouble {
  height: 10px;
  width: 10px;
  margin-right: 1px;
}

/* jquery ui */
#ui-datepicker-div {
  z-index: 2 !important;
}

.ui-datepicker-header.ui-widget-header {
  border-color: #fff;
  background: #fff;
}

@media (max-width: 1150px) {
  .wrapper {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media (max-width: 880px) {
  .content__blocks__block {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .content__blocks__block:last-child {
    padding-top: 10px;
  }

  .page__body > .grid,
.page__body > form > .grid,
.page__block .content__blocks {
    display: block;
  }

  .page__body > .grid > .page__block:not(:first-child) {
    margin-top: 20px;
  }

  .logo {
    background-size: 86px 30px;
    width: 86px;
    height: 30px;
  }
}
@media (max-width: 750px) {
  .max-width--500 {
    max-width: 100%;
  }

  .page__h1 {
    font-size: 30px;
    padding-bottom: 10px;
  }

  .wrapper {
    margin-left: 20px;
    margin-right: 20px;
  }

  .page__body--center {
    padding-top: 0;
    padding-bottom: 0;
  }

  .link--external:after {
    margin-left: 2px;
  }
}
@media (max-width: 374px) {
  .logo {
    background-size: 72px 25px;
    width: 72px;
    height: 25px;
  }
}
.button {
  background: #8F6DF5;
  color: #fff;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  transition: 0.2s background-color;
  min-width: 140px;
  height: 36px;
  line-height: 35px;
  font-weight: 500;
  cursor: pointer;
  padding: 0 15px;
  box-sizing: border-box;
  white-space: nowrap;
}

.button svg.rouble {
  height: 11px;
  width: 11px;
}

.is-desktop .button:hover {
  background: #6426EA;
}

.button--big {
  width: 100%;
  height: 40px;
  line-height: 38px;
}

.button--grey {
  background: #EEEEEE;
  color: #000;
}

.is-desktop .button--grey:hover {
  background: #d5d5d5;
}

.button--small {
  font-size: 14px;
}

.button--disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.button__text {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.button__text svg.rouble g {
  fill: #fff;
}

.button--progress {
  transition: all 0.4s ease;
  position: relative;
  pointer-events: none;
  cursor: default;
  background: #6426EA !important;
  opacity: 1;
}

.button--progress:after {
  content: " ";
  animation: progress-indefinite-anim 6s infinite linear 0s, progress-opacity 0.8s;
  animation-fill-mode: forwards;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'50'%20height%3D'100'%20viewBox%3D'0%200%205%2010'%3E%0A%09%3Crect%20width%3D'110%25'%20x%3D'-5%25'%20y%3D'-5%25'%20height%3D'110%25'%20fill%3D'transparent'%2F%3E%0A%09%3Cline%20x1%3D'-2'%20y1%3D'1'%20x2%3D'7'%20y2%3D'10'%20stroke%3D'%238146ff'%20stroke-width%3D'2'%2F%3E%0A%09%3Cline%20x1%3D'-2'%20y1%3D'6'%20x2%3D'7'%20y2%3D'15'%20stroke%3D'%238146ff'%20stroke-width%3D'2'%2F%3E%0A%09%3Cline%20x1%3D'-2'%20y1%3D'-4'%20x2%3D'7'%20y2%3D'5'%20stroke%3D'%238146ff'%20stroke-width%3D'2'%2F%3E%0A%3C%2Fsvg%3E");
  background-size: 50px;
  border-radius: 5px;
  opacity: 0;
}

@keyframes progress-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes progress-indefinite-anim {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
@media (max-width: 750px) {
  .button {
    font-size: 13px;
    height: 33px;
    line-height: 32px;
    min-width: 120px;
  }

  .button--big {
    height: 37px;
    line-height: 36px;
  }

  .button svg.rouble {
    height: 9px;
    width: 9px;
  }
}
.header {
  padding-top: 32px;
  padding-bottom: 32px;
}

.header__link {
  font-weight: 500;
  margin: 0 12px 0 12px;
}

.header__link:hover {
  color: #616161;
}

.header__language {
  padding: 8px 25px;
}

.header__language--border--left {
  border-left: 1px solid #E8E8E8;
  margin-left: 10px;
}

.header__language-icon {
  background: url("../images/flag/en.svg") no-repeat left center;
  background-size: auto 20px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s opacity;
}

.header__language-icon--lang--russian {
  background-image: url("../images/flag/ru.svg");
}

.header__language-icon--lang--chinese {
  background-image: url("../images/flag/zh.svg");
}

.header__language-icon:hover {
  opacity: 0.7;
}

.header__user-info {
  background: #E8E0FF;
  padding-left: 12px;
  padding-right: 12px;
  color: #6426EA;
  font-weight: 500;
  height: 36px;
  line-height: 32px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.2s background-color;
}

.header__user-info:after {
  background: url(../images/arrow.svg) no-repeat center center;
  background-size: 12px 6px;
  width: 12px;
  height: 10px;
  content: " ";
  margin-left: 5px;
}

.header__user-info__username {
  display: inline-block;
  max-width: 100px;
  min-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  white-space: nowrap;
}

.header__user-info__avatar {
  background: #8F6DF5 url(../images/user.svg) no-repeat center center;
  background-size: 14px 19px;
  width: 22px;
  height: 22px;
  display: inline-block;
  border-radius: 20px;
  margin-right: 8px;
}

.header__user-info__avatar--custom-avatar {
  background-size: cover;
}

.is-desktop .header__user-info__dropdown__handler:hover .header__user-info,
.header__user-info__dropdown__handler.dropdown--handler--visible .header__user-info {
  background: #8F6DF5;
  color: #FFFFFF;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.2);
}

.is-desktop .header__user-info__dropdown__handler:hover .header__user-info__avatar,
.header__user-info__dropdown__handler.dropdown--handler--visible .header__user-info__avatar {
  background-color: #fff;
  background-image: url(../images/user-selected.svg);
}

.is-desktop .header__user-info__dropdown__handler:hover .header__user-info:after,
.header__user-info__dropdown__handler.dropdown--handler--visible .header__user-info:after {
  background-image: url(../images/arrow-white.svg);
}

.dropdown--disabled .header__user-info:after {
  display: none;
}

.header__mobile__menu {
  display: none;
}

.header__mobile__menu__icon {
  background: url(../images/mobile-menu.svg);
  width: 25px;
  height: 25px;
  background-size: 25px 25px;
  margin-right: 13px;
}

.is-desktop .header__mobile__menu .dropdown--handler:hover .header__mobile__menu__icon {
  opacity: 0.6;
}

@media (max-width: 1000px) {
  .header__link {
    margin-left: 8px;
    margin-right: 8px;
  }
}
@media (max-width: 880px) {
  .header__mobile__menu {
    display: block;
  }

  .header__link {
    display: none;
  }
}
@media (max-width: 750px) {
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header__user-info__username,
.header__button {
    display: none;
  }

  .header__user-info__avatar {
    margin-right: 4px;
  }

  .header__user-info__dropdown__handler.dropdown--handler--visible .dropdown__content,
.header__user-info__dropdown__handler:hover .dropdown__content {
    right: 0;
    border-top-left-radius: 5px;
  }

  .header__language {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    border-left: 0;
  }

  .header__user-info__dropdown__handler {
    margin-left: 20px;
  }
}
@media (max-width: 374px) {
  .header__user-info__dropdown__handler {
    margin-left: 15px;
  }
}
.footer {
  background: rgb(74, 29, 172);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
}

.footer__copyright {
  padding-top: 20px;
  color: #cfbfff;
  font-size: 13px;
  line-height: 18px;
}

.footer__links-link {
  color: #fff;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 13px;
  margin-right: 5px;
}

.footer__links-link:hover {
  color: #8F6DF5;
}

.footer__links {
  padding-top: 10px;
}

@media (max-width: 750px) {
  .footer .wrapper > .grid {
    display: block;
  }

  .footer__copyright {
    padding-bottom: 15px;
  }

  .footer__links-link {
    margin-right: 10px;
  }

  .footer__links {
    grid-template-columns: 50% 50%;
  }
}
.home-page__welcome__left-block {
  padding-top: 40px;
}

.home-page__welcome {
  padding-top: 20px;
  padding-bottom: 30px;
}

.home-page__welcome-title {
  font-size: 50px;
  font-weight: bold;
  letter-spacing: -1px;
  padding-bottom: 18px;
  line-height: 55px;
}

.home-page__bg {
  background: url(../images/pay-form.png);
  background-repeat: no-repeat;
  width: 585px;
  height: 485px;
  background-size: 585px;
}

.home-page__welcome__grid {
  grid-template-columns: auto 585px;
}

.home-page__benefits--padding-y--30 {
  padding-top: 30px;
  padding-bottom: 20px;
}

.home-page__benefits--padding-y--36 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.home-page__benefits-benefit {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}

.home-page__benefits-benefit:before {
  content: " ";
  border: 2px solid #6426EA;
  border-radius: 3px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../images/tick.svg) no-repeat center center;
  background-size: 15px;
  margin-right: 12px;
}

.home-page__benefits-benefit--bold {
  font-weight: 700;
  margin-right: 5px;
}

.home-page__supported-games {
  background: #6426EA;
  height: 200px;
  line-height: 200px;
  margin-top: 18px;
}

.home-page__supported-games__grid {
  grid-template-columns: 45% 55%;
}

.home-page__supported-games__title {
  font-size: 33px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.home-page__supported-games__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
}

.home-page__supported-games__list:before {
  position: absolute;
  content: " ";
  transform: skew(-20deg);
  background: #8F6DF5;
  width: 100%;
  height: 100%;
  display: block;
}

.home-page__supported-games__list-item {
  background: url(../images/home/csgo.svg);
  width: 110px;
  height: 60px;
  background-size: 110px 60px;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}

.home-page__supported-games__list-item--icon--dota2 {
  background: url(../images/home/dota2.svg);
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
}

.home-page__supported-games__list-item--icon--rust {
  background: url(../images/home/rust.svg);
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
}

.home-page__supported-games__list-item--icon--tf2 {
  background: url(../images/home/tf2.svg);
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
}

.home-page__block-title {
  font-size: 35px;
  font-weight: 700;
  max-width: 500px;
  line-height: 44px;
  letter-spacing: -0.5px;
}

.home-page__block--padding-top--60 {
  padding-top: 60px;
}

.home-page__block--padding-top--23 {
  padding-top: 23px;
}

.home-page__statistics__list--padding-y--50 {
  padding-top: 48px;
  padding-bottom: 50px;
}

.home-page__statistics__list__item {
  max-width: 140px;
}

.home-page__statistics__list__item:before {
  content: " ";
  width: 80px;
  height: 80px;
  background: #F7F7F7;
  display: inline-block;
  border-radius: 3px;
}

.home-page__statistics__list__item-counter {
  font-weight: 700;
  font-size: 19px;
  padding-top: 12px;
}

.home-page__statistics__list__item-title {
  border-top: 2px solid #8F6DF5;
  padding-top: 14px;
  margin-top: 13px;
}

.home-page__statistics__list-item--icon--money:before {
  background-image: url("../images/home/moneybag.svg");
  background-size: 50px 58px;
  background-repeat: no-repeat;
  background-position: center center;
}

.home-page__statistics__list-item--icon--items:before {
  background-image: url("../images/home/cart.svg");
  background-size: 50px 48px;
  background-repeat: no-repeat;
  background-position: center center;
}

.home-page__statistics__list-item--icon--users:before {
  background-image: url("../images/home/couple.svg");
  background-size: 50px 37px;
  background-repeat: no-repeat;
  background-position: center center;
}

.home-page__block-title__highlight {
  color: #6426EA;
  border-bottom: 2px solid #6426EA;
}

.home-page__list {
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 15px 25px;
  max-width: 216px;
  box-sizing: border-box;
}

.home-page__list-title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 12px;
  line-height: 24px;
}

.home-page__list__items-item {
  border-top: 1px solid #E8E8E8;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.home-page__list__items-item:before {
  content: " ";
  margin-right: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}

.home-page__list--icon--bitcoin:before {
  background-image: url(../images/home/payments/bitcoin.svg);
}

.home-page__list--icon--ethereum:before {
  background-image: url(../images/home/payments/ethereum.svg);
}

.home-page__list--icon--tether:before {
  background-image: url(../images/home/payments/tether.svg);
}

.home-page__list--icon--visa-mastercard:before {
  background-image: url(../images/home/payments/visa.svg);
}

.home-page__list--icon--advcash:before {
  background-image: url(../images/home/payments/advcash.svg);
}

.home-page__list--icon--us-dollar:before {
  background-image: url(../images/home/currencies/usd.svg);
}

.home-page__list--icon--russian-rouble:before {
  background-image: url(../images/home/currencies/rub.svg);
}

.home-page__list--icon--euro:before {
  background-image: url(../images/home/currencies/euro.svg);
}

.home-page__list--icon--chinese-yuan:before {
  background-image: url(../images/home/currencies/yuan.svg);
}

.home-page__background {
  background: linear-gradient(177deg, #fff 55%, #fbfbfb 55%);
  padding-bottom: 30px;
}

.home-page__safety {
  padding-top: 60px;
  position: relative;
  text-align: center;
}

.home-page__safety__big-title {
  color: rgba(0, 0, 0, 0.05);
  font-size: 170px;
  font-weight: 700;
  display: inline-block;
}

html[lang=en] .home-page__safety__big-title {
  font-size: 220px;
  letter-spacing: 5px;
}

.home-page__safety__bottom {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 870px;
}

html[lang=en] .home-page__safety__bottom {
  bottom: 18px;
}

.home-page__safety-percent {
  color: #6426EA;
  font-weight: 700;
  font-size: 70px;
  display: inline-block;
  /*position: absolute;*/
  /*left: 0;*/
  /*bottom: 0;*/
}

.home-page__safety-text {
  display: inline-block;
  /*padding-bottom: 12px;*/
}

.home-page__connect-block {
  padding-top: 40px;
  background: #fbfbfb;
}

.home-page__connect-block__block-content {
  padding-bottom: 40px;
}

.home-page__connect-block-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.5px;
}

.home-page__connect-block-description {
  padding-top: 30px;
  padding-bottom: 30px;
  line-height: 23px;
}

.home-page__list__grid {
  grid-template-columns: 233px 233px;
}

@media (max-width: 1150px) {
  .home-page__bg {
    width: 450px;
    height: 373px;
    background-size: 450px 373px;
    margin-top: 40px;
  }

  .home-page__welcome__grid {
    grid-template-columns: auto 450px;
  }

  .home-page__supported-games__title {
    font-size: 25px;
    letter-spacing: normal;
  }

  .home-page__safety__big-title {
    font-size: 110px;
  }

  html[lang=en] .home-page__safety__big-title {
    font-size: 130px;
    letter-spacing: normal;
  }

  .home-page__safety__bottom {
    bottom: 6px;
  }

  html[lang=en] .home-page__safety__bottom {
    bottom: 8px;
  }

  .home-page__safety-percent {
    font-size: 50px;
  }

  .home-page__supported-games__list-item {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 880px) {
  .home-page__supported-games__list-item {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 1000px) {
  .home-page__welcome__left-block {
    padding-top: 0;
  }

  .home-page__bg {
    display: none;
  }

  .home-page__welcome__grid {
    display: block;
  }

  .home-page__supported-games__title {
    font-size: 23px;
  }

  .home-page__supported-games {
    height: 160px;
    line-height: 160px;
  }

  .home-page__list__grid {
    grid-template-columns: 50% 50%;
  }

  .home-page__block .grid--two-columns {
    display: block;
  }

  .home-page__list {
    max-width: 100%;
    margin-right: 20px;
  }

  .home-page__list:last-child {
    margin-right: 0;
  }

  .home-page__list-title br {
    display: none;
  }

  .home-page__safety__big-title {
    font-size: 40px !important;
    padding-bottom: 5px;
    letter-spacing: normal !important;
    color: #e0e0e0;
  }

  .home-page__safety__bottom {
    position: static;
    display: flex;
    align-items: center;
    padding-top: 10px;
    max-width: none;
  }

  .home-page__safety-percent {
    font-size: 30px;
    padding-bottom: 0;
    padding-right: 10px;
  }

  .home-page__safety {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
  }

  .home-page__safety-text {
    line-height: 20px;
  }

  .home-page__connect-block {
    padding-top: 10px;
  }
}
@media (max-width: 750px) {
  .home-page__welcome-title {
    font-size: 35px;
    line-height: 40px;
  }

  .home-page__benefits--padding-y--36 {
    padding-top: 15px;
    padding-bottom: 25px;
  }

  .home-page__welcome {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .home-page__benefits-benefit {
    display: block;
    line-height: 23px;
    padding-bottom: 15px;
  }

  .home-page__benefits-benefit:before {
    vertical-align: middle;
    margin-right: 5px;
  }

  .home-page__benefits-benefit--bold {
    margin-right: 0;
  }

  .home-page__supported-games__grid {
    display: block;
  }

  .home-page__supported-games__title {
    font-size: 20px;
    letter-spacing: normal;
    padding-bottom: 10px;
  }

  .home-page__supported-games__list:before {
    display: none;
  }

  .home-page__supported-games {
    height: auto;
    line-height: 15px;
    padding-top: 25px;
    padding-bottom: 15px;
  }

  .home-page__supported-games__list {
    width: 100%;
    padding-top: 10px;
    display: grid;
    grid-template-columns: 50% 50%;
  }

  .home-page__supported-games__list-item {
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 70px;
    background-size: 100px 70px;
  }

  .home-page__supported-games__list-item--icon--dota2 {
    width: 50px;
    height: 85px;
    background-size: 50px 85px;
  }

  .home-page__supported-games__list-item--icon--rust {
    width: 50px;
    height: 85px;
    background-size: 50px 85px;
  }

  .home-page__block .grid--two-columns,
.home-page__list__grid {
    display: block;
  }

  .home-page__list {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .home-page__list:last-child {
    margin-bottom: 0;
  }

  .home-page__benefits--padding-y--30 {
    padding-bottom: 10px;
  }

  .home-page__block-title {
    font-size: 30px;
    max-width: 100%;
    line-height: 38px;
  }

  .home-page__block--padding-top--60 {
    padding-top: 30px;
  }

  .home-page__connect-block-title {
    font-size: 30px;
    line-height: 38px;
  }

  .home-page__connect-block-description {
    padding-top: 15px;
  }

  .home-page__connect-block__block-content {
    padding-bottom: 20px;
  }
}
@media (max-width: 374px) {
  .home-page__welcome-title {
    font-size: 30px;
    line-height: 37px;
  }

  .home-page__welcome__left-block .button,
.home-page__connect-block__block-content .button {
    margin-right: 100px;
    margin-bottom: 10px;
  }

  .home-page__welcome__left-block .link--with-arrow,
.home-page__connect-block__block-content .link--with-arrow {
    margin-left: 5px;
  }
}
.contacts__item {
  padding: 13px;
  border-radius: 5px;
  background: #F7F7F7;
  margin-bottom: 10px;
}

.contacts__item__link {
  color: #6426EA;
  font-weight: bold;
}

.contacts__item__link:hover {
  opacity: 0.7;
}

.contacts__about-scam {
  line-height: 18px;
  padding-left: 15px;
  font-size: 14px;
  color: #1e1e1e;
}

@media (max-width: 750px) {
  .contacts__page .flex {
    display: block;
  }

  .contacts__about-scam {
    padding-left: 0;
    padding-top: 10px;
    line-height: 20px;
  }
}
.form__field {
  margin-bottom: 17px;
}

.form__field:not(.form__field--two-column):last-child {
  margin-bottom: 20px;
}

.form__field--no-margin {
  margin-bottom: 0 !important;
}

.form__field--two-column {
  display: grid;
  grid-template-columns: 30% 70%;
}

.max-width--500 .form__field--two-column {
  grid-template-columns: 35% 65%;
}

.form__field__name {
  font-weight: 500;
  line-height: 20px;
  padding-bottom: 5px;
  padding-left: 1px;
}

.form__field--two-column .form__field__name {
  padding-top: 8px;
  padding-bottom: 0;
  padding-left: 0;
}

.form__field__value--error {
  border: 1px solid rgb(255, 115, 115) !important;
}

.form__field__value__input::placeholder {
  color: #9a9a9a;
}

.form__field__value__input::-moz-placeholder {
  color: #555555;
}

.form__field__value__input:-ms-input-placeholder {
  color: #9a9a9a;
}

.form__field__value__input::-ms-input-placeholder {
  color: #9a9a9a;
}

.form__field__value__input {
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
  font: 14px "Helvetica Neue", "HelveticaNeueCyr", Arial, sans-serif;
  color: #222;
  padding-left: 12px;
  padding-right: 12px;
  height: 40px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  outline: 0;
  transition: 0.15s border;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form__field__value__select {
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
  font: 14px "Helvetica Neue", "HelveticaNeueCyr", Arial, sans-serif;
  color: #222;
  padding-left: 12px;
  padding-right: 30px;
  height: 40px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  outline: 0;
  transition: 0.15s border;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form__field__value__select__outer {
  position: relative;
}

.form__field__value__select__outer:after {
  position: absolute;
  right: 13px;
  top: 15px;
  display: inline-block;
  background: url(../images/arrow.svg);
  background-size: 12px 12px;
  content: " ";
  width: 12px;
  height: 12px;
}

.form__field__value_search {
  position: relative;
}

.form__field__value_search:after {
  position: absolute;
  left: 13px;
  top: 12px;
  display: inline-block;
  background: url(../images/search.svg);
  background-size: 14px 14px;
  content: " ";
  width: 14px;
  height: 14px;
}

.form__field__value__input--search {
  padding-left: 35px;
}

.form__field__value__input--search::-webkit-input-placeholder {
  font-style: italic;
}

.form__field__value__input--search:-moz-placeholder {
  font-style: italic;
}

.form__field__value__input--search::-moz-placeholder {
  font-style: italic;
}

.form__field__value__select--no-value {
  color: #9a9a9a;
}

.form__field__value__textarea {
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
  font: 14px "Helvetica Neue", "HelveticaNeueCyr", Arial, sans-serif;
  color: #222;
  padding: 12px;
  height: 100px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  outline: 0;
  line-height: 20px;
  transition: 0.15s border;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form__field__value__input:focus,
.form__field__value__select:focus,
.form__field__value__textarea:focus {
  border-color: #9e71ff;
}

.form__field__value__textarea::placeholder {
  color: #9a9a9a;
}

.form__field__value__textarea::-moz-placeholder {
  color: #555555;
}

.form__field__value__textarea:-ms-input-placeholder {
  color: #9a9a9a;
}

.form__field__value__textarea::-ms-input-placeholder {
  color: #9a9a9a;
}

.form__field__checkbox label {
  cursor: pointer;
}

.form__field__checkbox input[type=checkbox] {
  position: absolute;
  left: -9999px;
}

.form__field__checkbox input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  border: 2px solid #6426EA;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  margin-right: 9px;
  vertical-align: top;
}

.form__field__checkbox input[type=checkbox]:checked + label:before {
  background: url(../images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form__field__description {
  padding-top: 4px;
  padding-left: 2px;
  color: #626262;
  font-size: 12px;
  line-height: 17px;
}

.form__field__description--error {
  color: #d50000;
}

.filters__form {
  padding-left: 9px;
}

.form__field__value--processing {
  transition: all 0.4s ease;
  position: relative;
  background: #f7f7f7;
  border-radius: 5px;
}

.form__field__value--processing:after {
  content: " ";
  animation: progress-indefinite-anim 6s infinite linear 0s, progress-opacity 0.8s;
  animation-fill-mode: forwards;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'50'%20height%3D'100'%20viewBox%3D'0%200%205%2010'%3E%0A%09%3Crect%20width%3D'110%25'%20x%3D'-5%25'%20y%3D'-5%25'%20height%3D'110%25'%20fill%3D'transparent'%2F%3E%0A%09%3Cline%20x1%3D'-2'%20y1%3D'1'%20x2%3D'7'%20y2%3D'10'%20stroke%3D'%23ededed'%20stroke-width%3D'2'%2F%3E%0A%09%3Cline%20x1%3D'-2'%20y1%3D'6'%20x2%3D'7'%20y2%3D'15'%20stroke%3D'%23ededed'%20stroke-width%3D'2'%2F%3E%0A%09%3Cline%20x1%3D'-2'%20y1%3D'-4'%20x2%3D'7'%20y2%3D'5'%20stroke%3D'%23ededed'%20stroke-width%3D'2'%2F%3E%0A%3C%2Fsvg%3E");
  background-size: 50px;
  border-radius: 5px;
  opacity: 0;
}

.form__field__value--processing input:not(:focus),
.form__field__value--processing textarea:not(:focus),
.form__field__value--processing select:not(:focus) {
  background: transparent;
  border-color: transparent;
}

.form__field__value--processing input,
.form__field__value--processing textarea,
.form__field__value--processing select {
  position: relative;
  z-index: 1;
}

@media (max-width: 750px) {
  .form__field--two-column {
    display: block;
  }

  .form__field--two-column .form__field__name {
    padding-top: 0;
    padding-bottom: 5px;
    padding-left: 1px;
  }

  .form__field--two-column .form__field__name br {
    display: none;
  }
}
.connect-site__notes {
  padding-left: 20px;
}

.connect-site__notes__list__item {
  margin-bottom: 20px;
  line-height: 20px;
  background: #fff;
  padding: 10px;
  box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.connect__select {
  border-radius: 10px;
  padding: 12px 18px;
  background: #fff;
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.08);
  border: 2px solid #fff;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s border;
}

.connect__select:hover,
.connect__select.active {
  border: 2px solid #8F6DF5;
}

.connect__select__title {
  font-size: 16px;
  font-weight: 600;
  color: #6426EA;
}

.connect__select__description {
  padding-top: 15px;
  line-height: 20px;
}

.connect__select__logos {
  padding-top: 10px;
}

.connect__select__logos img {
  margin-right: 15px;
}

@media (max-width: 880px) {
  .connect-site__notes {
    padding-left: 0;
    margin-top: 20px;
  }
}
.faq__item {
  padding-top: 15px;
  padding-bottom: 15px;
}

.faq__item__title {
  font-size: 18px;
  line-height: 22px;
}

.faq__item__title__number {
  color: #6426EA;
}

.faq__item__description {
  padding-top: 8px;
  line-height: 23px;
}

.dropdown--handler {
  position: relative;
}

.dropdown--disabled {
  pointer-events: none;
}

.dropdown__content {
  display: none;
}

.is-desktop .dropdown--handler:hover .dropdown__content,
.dropdown--handler--visible .dropdown__content {
  display: block;
  position: absolute;
  background: #fff;
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 2;
  min-width: 100%;
}

.dropdown__content--standalone {
  margin-left: -66.6666666667%;
  margin-top: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.dropdown__content--rounded {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.dropdown__menu__item {
  font-size: 13px;
  padding: 11px 20px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.dropdown__content--standalone .dropdown__menu__item:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.dropdown__menu__item:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dropdown__menu__item:hover {
  background: #F7F7F7;
}

.dropdown__menu__item:not(:last-child) {
  border-bottom: 1px solid #f7f7f7;
}

.dropdown__menu__item-icon {
  margin-right: 10px;
}

@media (max-width: 750px) {
  .dropdown__content--standalone {
    right: -10px;
  }
}
.notification {
  position: fixed;
  right: 30px;
  top: -300px;
  background: #fff;
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 10px 5px 10px 15px;
  display: flex;
  z-index: 3;
  opacity: 0;
}

.notification__title {
  font-weight: 500;
}

.notification__line {
  width: 3px;
  background: #BDE0BC;
  border-radius: 5px;
  flex-basis: auto;
  margin-right: 15px;
}

.notification__inner {
  padding: 5px 15px;
}

.notification__text {
  font-size: 14px;
  padding-top: 5px;
  color: #1e1e1e;
  max-width: 280px;
  line-height: 18px;
}

.notification__text a {
  color: #6426EA;
}

.notification__icon {
  background: #BDE0BC url(../images/tick-green.svg) no-repeat center center;
  background-size: 15px;
  width: 25px;
  height: 25px;
  align-self: center;
  border-radius: 15px;
}

.notification__close {
  background: url(../images/close.svg) no-repeat center center;
  background-size: 10px;
  width: 30px;
  height: 30px;
  color: #bdbdbd;
  cursor: pointer;
  align-self: center;
}

.notification--error .notification__icon {
  background-color: #FCD5C8;
  background-image: url(../images/notification-error.svg);
  background-size: auto 13px;
}

.notification--error .notification__line {
  background: #FCD5C8;
}

@media (max-width: 750px) {
  .notification {
    right: 15px !important;
    left: 15px !important;
  }
}
.api-docs__grid {
  grid-template-columns: 220px auto;
}

.api-docs__text__title {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  padding-top: 20px;
}

.api-docs__text__title:first-child {
  padding-top: 0;
}

.api-docs__text__content {
  line-height: 25px;
}

.api-docs__text__content--code {
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
  background: #f5f5f5;
  padding: 10px;
  font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, serif;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 5px;
}

.api-docs__text__content--highlight {
  background: #f1f1f1;
  padding: 3px 5px;
  border-radius: 5px;
  font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, serif;
  font-size: 13px;
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
}

.api-docs__title--highlight {
  background: #f1f1f1;
  padding: 4px 5px;
  border-radius: 5px;
  font-size: 13px;
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
  color: #6426EA;
  vertical-align: middle;
  display: inline-block;
  margin-top: -2px;
}

.api__docs__method-separator {
  font-size: 13px;
  color: #868686;
  text-transform: uppercase;
  padding-top: 4px;
  padding-bottom: 4px;
}

.api-docs__text__content--highlight--extra-space {
  padding: 6px 10px;
}

.api-docs__text__content p {
  padding-bottom: 7px;
}

.api-docs__text__important:before {
  content: "!";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #f2e490;
  border-radius: 25px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  margin-right: 5px;
  line-height: 19px;
  color: #998205;
}

.api-docs__text__section {
  font-weight: 700;
  font-size: 13px;
  padding-top: 10px;
}

.api-docs__tick {
  background: url(../images/tick.svg) no-repeat center center;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: 15px;
  vertical-align: middle;
}

.api-docs__table {
  padding-top: 10px;
}

.api-docs__table .table__cell:not(.table__header-cell) {
  padding: 11px 10px;
}

.api-docs__ul_decimal {
  list-style-type: decimal;
  margin-left: 20px;
  padding-top: 5px;
}

@media (max-width: 750px) {
  .api-docs__table .table__cell:not(.table__header-cell) {
    padding: 4px 0;
  }
}
.sidebar__items {
  padding-top: 10px;
  padding-bottom: 10px;
}

.sidebar__items__link {
  display: inline-block;
  padding: 9px 15px;
  width: 100%;
  box-sizing: border-box;
  line-height: 20px;
  font-size: 14px;
  border-bottom: 1px solid #f7f7f7;
  font-weight: 500;
}

.sidebar__items__link--last-item {
  border-bottom: 0;
}

.is-desktop .sidebar__items__link:hover {
  background: #f7f7f7;
}

.sidebar__items__link--active {
  background: #6426EA !important;
  color: #fff;
}

.sidebar__category {
  color: #868686;
  padding-left: 15px;
  padding-top: 13px;
  padding-bottom: 13px;
  text-transform: uppercase;
  font-size: 12px;
}

.project__stats__value {
  font-weight: 700;
  color: #1e1e1e;
  font-size: 18px;
}

.project__dropdown__handler {
  display: inline-block;
}

.project__dropdown__handler.dropdown--handler--visible .button {
  background: #d5d5d5;
}

.project__stat {
  padding-bottom: 7px;
}

.project__stats {
  padding-top: 20px;
  padding-bottom: 15px;
}

.project__stat__title {
  color: #1e1e1e;
  font-size: 14px;
  padding-bottom: 6px;
}

.project__max-withdraw-sum {
  cursor: pointer;
}

.project__statistics__left-block {
  max-height: 235px;
}

@media (max-width: 750px) {
  .project__stats.grid--three-columns {
    grid-template-columns: 50% 50%;
  }

  .project__stat {
    padding-bottom: 15px;
  }

  .project__stat:nth-last-child(2),
.project__stat:last-child {
    padding-bottom: 7px;
  }
}
@media (max-width: 374px) {
  .project__buttons .button {
    width: 100%;
    margin-bottom: 5px;
  }

  .project__dropdown__handler {
    width: 100%;
  }
}
.popup {
  background: rgba(0, 0, 0, 0.35);
  display: none;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 1rem;
  z-index: 2;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  transition: 0.3s opacity;
}

.popup--visible {
  opacity: 1;
  display: flex;
}

.popup__close {
  background: url("../images/close.svg") no-repeat center center;
  background-size: 15px;
  position: absolute;
  top: 15px;
  right: 10px;
  padding: 10px;
  cursor: pointer;
  width: 15px;
  height: 15px;
}

.popup__close:hover {
  opacity: 0.7;
}

.popup__content {
  display: flex;
  flex-direction: column;
  margin: auto;
  position: relative;
  min-width: 350px;
}

.popup__content .page__block__title {
  padding-right: 40px;
}

@media (max-width: 750px) {
  .popup__content {
    min-width: 0;
  }
}
.table {
  display: table;
  width: 100%;
}

.table__row {
  display: table-row;
}

.table__cell {
  display: table-cell;
  padding: 13px 10px;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid #ececec;
}

.table__row:last-child .table__cell {
  border-bottom: 0;
}

.table__cell--middle {
  vertical-align: middle;
}

.table__header-cell {
  font-weight: 500;
  vertical-align: bottom;
  text-transform: uppercase;
  color: #808080;
  padding-top: 0;
  padding-bottom: 7px;
  font-size: 12px;
}

.table__item__icon {
  display: inline-block;
  background: #BDE0BC;
  color: #149211;
  font-weight: 500;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 18px;
  align-self: center;
  border-radius: 15px;
  margin-right: 8px;
}

.table__item__icon--minus {
  color: #F25822;
  background: #FCD5C8;
}

.table__filters__field {
  margin-right: 10px;
  margin-bottom: 10px;
}

.filters__show-button {
  color: #8F6DF5;
  font-weight: 500;
  cursor: pointer;
  margin-left: 8px;
}

.filters__show-button:after {
  content: " ";
  background: url(../images/arrow.svg) no-repeat center center;
  width: 10px;
  height: 7px;
  background-size: 10px;
  display: inline-block;
  margin-left: 3px;
  vertical-align: middle;
}

.filters__show-button--opened:after {
  transform: rotate(180deg);
}

.table__no-data {
  text-align: center;
  font-weight: 500;
  color: #808080;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 14px;
}

@media (max-width: 880px) {
  .table .white-space--nowrap {
    white-space: normal;
  }
}
@media (max-width: 750px) {
  .table,
.table__cell,
.table__row {
    display: block;
  }

  .table__cell {
    border-bottom: none;
    padding: 4px 0;
    text-align: left !important;
  }

  .table__cell br {
    display: none;
  }

  .table__row {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
  }

  .table__row:nth-child(2) {
    padding-top: 0;
  }

  .table__row:first-child {
    display: none;
  }

  .table__row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .table__header-cell {
    display: none;
  }

  .table__cell__header__mobile {
    display: inline-block;
    font-weight: 500;
    margin-right: 3px;
    color: #a6a6a6;
  }

  .table__cell__header__mobile + * {
    display: inline-block;
  }

  .table__cell__header__mobile + .text--grey {
    margin-left: 10px;
  }

  .table__item__icon {
    margin-right: 1px;
  }

  .filters__form {
    display: block;
    padding-left: 0;
  }

  .filters__show-button {
    margin-left: 0;
  }

  .table__no-data {
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.pagination {
  display: flex;
  padding-top: 15px;
  padding-bottom: 5px;
  justify-content: center;
}

.pagination__item {
  width: 29px;
  height: 29px;
  text-align: center;
  border-radius: 5px;
  line-height: 28px;
  font-size: 14px;
  cursor: pointer;
  margin-right: 4px;
  transition: none;
}

.pagination__left,
.pagination__right {
  background: #f1f1f1 url(../images/arrow.svg) no-repeat center center;
  transform: rotate(90deg);
}

.pagination__left:hover,
.pagination__right:hover {
  background-image: url(../images/arrow-white.svg);
}

.pagination__right {
  transform: rotate(-90deg);
}

.pagination__page-active {
  background: #6426EA;
  color: #fff;
}

.pagination__item:hover {
  background-color: #6426EA;
  color: #fff;
}

.status-label {
  display: inline-block;
  color: #149211;
  background: #BDE0BC;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 13px;
}

.status-label--processing {
  color: #998205;
  background: #f2e490;
}

.status-label--error {
  color: #F25822;
  background: #FCD5C8;
}

.game-switcher__item {
  background: #F7F7F7;
  height: 40px;
  width: 42px;
  cursor: pointer;
}

.game-switcher__item:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.game-switcher__item:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.game-switcher__item--dota2 {
  background-image: url("../images/dota-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}

.game-switcher__item--csgo {
  background-image: url("../images/csgo-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}

.game-switcher__item--rust {
  background-image: url("../images/rust-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}

.game-switcher__item--tf2 {
  background-image: url("../images/tf2-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}

.game-switcher__item--active,
.game-switcher__item:hover {
  background-color: #ebebeb;
}

.skins__price-order__block {
  margin-left: 15px;
}

.skins__price-order__arrow {
  background-image: url(../images/arrow-grey.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 7px;
}

.skins__price-order__text {
  margin-right: 6px;
  font-size: 14px;
  white-space: nowrap;
}

.skins__price-order__arrow {
  margin-right: 3px;
}

.skins__price-order__arrow--desc {
  transform: rotate(180deg);
}

.skins__price-order__arrow:last-child {
  margin-right: 0;
}

.skins__price-order {
  cursor: pointer;
}

.skins__price-order__arrow--active {
  background-image: url(../images/arrow.svg);
}

.skins__scrollable {
  margin-top: 15px;
  margin-bottom: 20px;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 420px;
  padding-bottom: 10px;
  box-sizing: border-box;
  position: relative;
}

.skins__scrollable--small {
  height: 250px;
}

.skins__scrollable::-webkit-scrollbar {
  width: 4px;
}

.skins__scrollable::-webkit-scrollbar-track {
  background: #dedede;
  border-radius: 4px;
}

.skins__scrollable::-webkit-scrollbar-thumb {
  background: #6426EA;
  border-radius: 4px;
}

.skins__list {
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  padding-bottom: 10px;
  padding-right: 5px;
}

.skins__list--animated {
  opacity: 0;
  transition: 0.4s opacity;
}

.skins__list--visible {
  opacity: 1;
}

.skins__list__item {
  background: #f5f5f5;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.skins__list {
  padding-top: 5px;
}

.skins__list__selected .skins__list__item:after {
  content: " ";
  display: inline-block;
  background: url(../images/remove-skin.svg);
  width: 16px;
  height: 16px;
  background-size: 16px;
  position: absolute;
  top: -5px;
  right: -5px;
}

.skins__list__selected .skins__list__item:hover:after {
  opacity: 0.8;
}

.skins__list__item:hover {
  background: #ebebeb;
}

.skins__list__item:active {
  background: #dedede;
}

.skins__list__item__quality {
  text-align: center;
  font-size: 12px;
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
}

.skins__list__item__image {
  width: 100%;
  height: 112px;
  background-size: 80px;
  background-position: center center;
  background-repeat: no-repeat;
}

.skins__list__item__image--rust {
  background-size: 65px;
}

.skins__list__item__price {
  text-align: center;
  font-size: 14px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  font-weight: 500;
  color: #915ffe;
}

.skins__list__item__price svg g path {
  fill: #915ffe;
}

.skins__buttons__reload__label {
  font-size: 14px;
  cursor: pointer;
}

.skins__buttons__reload__label:hover {
  color: #6426EA;
}

.skins__buttons__reload {
  position: absolute;
  left: -9999px;
}

.skins__buttons__reload__label:before {
  content: "";
  display: inline-block;
  border: 3px solid #6426EA;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin-right: 9px;
  vertical-align: top;
}

.skins__buttons__reload:checked + .skins__buttons__reload__label:before {
  background: #6426EA;
}

.skins__buttons__reload:checked + .skins__buttons__reload__label {
  color: #6426EA;
}

.skins__refresh-button {
  font-size: 14px;
  cursor: pointer;
}

.skins__refresh-button:before {
  display: inline-block;
  content: " ";
  background: url(../images/reload.svg);
  width: 15px;
  height: 15px;
  background-size: 15px;
  vertical-align: top;
  margin-right: 9px;
}

.skins__refresh-button:hover {
  color: #6426EA;
}

.pay__block__title {
  font-size: 23px;
  padding-bottom: 4px;
}

.pay__block__title svg.rouble {
  height: 16px;
  width: 16px;
}

.pay__block__title svg.rouble g {
  fill: #6426EA;
}

.skins__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.skins__error {
  line-height: 19px;
  width: 100%;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
  font-weight: 500;
  color: #aaa;
}

.skins__error__description {
  padding-top: 5px;
  padding-bottom: 8px;
  font-size: 14px;
}

.skins__order-info {
  font-size: 14px;
}

.pay__confirm__separator {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #E6E6E6;
}

.pay__confirm__timer {
  margin-top: 20px;
  position: relative;
  height: 250px;
}

.pay__confirm__example {
  position: relative;
  margin-top: 20px;
  padding-bottom: 23px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pay__confirm__circle {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 400px;
  height: 400px;
  background: rgba(143, 109, 245, 0.1);
  border-radius: 200px;
}

.pay__confirm__image {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background: url(../images/mobile-markup.png) no-repeat;
  background-size: 400px;
  width: 400px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
}

.pay__confirm__name-first {
  position: absolute;
  top: 146px;
  left: 173px;
  z-index: 2;
  color: #fff;
  font-size: 10px;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 13px;
}

.pay__confirm__name-second {
  position: absolute;
  top: 214px;
  left: 135px;
  z-index: 2;
  color: #fff;
  font-size: 9px;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 13px;
}

.pay__confirm__example__bot__item {
  position: absolute;
  top: 25px;
  z-index: 1;
  display: inline-block;
  line-height: 20px;
  font-size: 14px;
  background: #fff;
  padding: 5px 10px;
  box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.08);
  border-radius: 7px;
}

.pay__confirm__example__bot__item-name:after {
  position: absolute;
  top: 70px;
  left: 40px;
  content: " ";
  display: inline-block;
  background: url(../images/mobile-left-arrow.svg) no-repeat;
  background-size: 71px 65px;
  width: 71px;
  height: 65px;
}

.pay__confirm__example__bot__item-reg-date {
  top: inherit;
  bottom: 70px;
  right: 10px;
}

.pay__confirm__example__bot__item-reg-date:before {
  position: absolute;
  top: -80px;
  right: 30px;
  content: " ";
  display: inline-block;
  background: url(../images/mobile-right-arrow.svg) no-repeat;
  background-size: 71px 65px;
  width: 71px;
  height: 65px;
}

.trade-url-button-field {
  position: relative;
}

.pay__trade-url-button {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  min-width: 100px;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  transition: 0.15s all;
  pointer-events: none;
  height: 40px;
  line-height: 39px;
  padding-left: 5px;
  padding-right: 5px;
  z-index: 2;
}

.trade-url-field:focus + .pay__trade-url-button {
  opacity: 1;
  pointer-events: all;
}

.trade-url-field:focus {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: calc(100% - 100px);
}

.pay__block {
  transition: 0.9s opacity, 0.6s margin-top;
}

.pay__no-trade-url {
  opacity: 0;
  pointer-events: none;
  margin-top: 100px;
}

.pay__blocks-no-trade-url {
  transition: 0.4s;
  grid-template-columns: 100% !important;
  width: 100%;
  max-height: 850px;
  overflow: hidden;
}

.pay__blocks-no-trade-url.animated {
  width: 50%;
}

.ui-widget.pay__skins__tooltip {
  border: 0 !important;
  background: #6426EA;
  color: #fff;
  box-shadow: none !important;
  -webkit-box-shadow: none;
  font-size: 12px;
}

.skins__inline-notification {
  width: calc(100% - 10px) !important;
}

@media (max-width: 1000px) {
  .pay__confirm__buttons {
    display: block;
  }

  .pay__confirm__buttons > div {
    margin-bottom: 8px;
  }

  .pay__confirm__buttons > div:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 880px) {
  .pay-main-content .pay__blocks__right {
    margin-top: 20px;
  }

  .skins__error {
    padding-left: 5px;
    padding-right: 5px;
  }

  .pay__blocks-no-trade-url.animated {
    width: 100% !important;
  }

  .pay__block {
    transition: 0.2s opacity, 0.3s margin-top !important;
  }
}
@media (max-width: 750px) {
  .pay__block__title {
    font-size: 20px;
  }

  .pay__block__title svg.rouble {
    height: 14px;
  }

  .skins__scrollable {
    height: 350px;
  }

  .pay-main-content .pay__blocks__right .pay__block__selected__items {
    line-height: 25px;
    padding-bottom: 0;
  }

  .pay-main-content .pay__blocks__right .page__block {
    padding-top: 17px;
  }

  .pay__trade-url-button {
    min-width: 80px;
    font-size: 12px;
  }

  .trade-url-field:focus {
    width: calc(100% - 80px);
  }

  .skins__price-order__text {
    display: none;
  }

  .pay__confirm__info {
    display: block;
  }

  .pay__confirm__info .skins__order-info {
    padding-bottom: 8px;
  }

  .pay__confirm__info .skins__order-info:last-child {
    padding-bottom: 0;
  }

  .pay__confirm__separator {
    margin-top: 20px;
    padding-top: 20px;
  }

  .pay__confirm__circle,
.pay__confirm__image {
    width: calc(100vw - 90px);
    height: calc(100vw - 90px);
  }

  .pay__confirm__image {
    background-size: calc(100vw - 90px) calc(100vw - 90px);
  }

  .pay__confirm__example__bot__item {
    top: 0;
  }

  .pay__confirm__example__bot__item-reg-date {
    top: auto;
    bottom: 0;
  }

  .pay__confirm__example__bot__item-name:after,
.pay__confirm__example__bot__item-reg-date:before,
.pay__confirm__name-first,
.pay__confirm__name-second {
    display: none;
  }

  .pay__confirm__timer {
    height: 200px;
  }
}
@media (max-width: 374px) {
  .pay__block__title {
    font-size: 18px;
  }

  .pay__block__title svg.rouble {
    height: 13px;
  }
}
.circle-timer {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #EEE9FE;
  transform: scale(1.5);
}

.circle-timer--big {
  transform: scale(2);
}

.circle-timer:before,
.circle-timer > .progressEnd {
  position: absolute;
  z-index: 3;
  top: 2px;
  left: 45px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6426EA;
  transform-origin: 3px 46px;
  content: "";
}

.circle-timer:after,
.circle-timer > .progress {
  position: absolute;
  transform-origin: 48px 48px;
  z-index: 0;
  top: 0;
  left: 0;
  width: 48px;
  height: 96px;
  border-radius: 48px 0 0 48px;
  background: #EEE9FE;
  content: "";
}

.circle-timer.fifty-plus:after {
  background: #6426EA;
  transform: rotate(180deg);
}

.circle-timer > .progress.progress {
  background: #6426EA;
}

.circle-timer > .counter {
  position: absolute;
  box-sizing: border-box;
  z-index: 2;
  width: 100px;
  height: 100px;
  margin-top: -2px;
  margin-left: -2px;
  border-radius: 50%;
  border: 4px solid white;
}

.circle-timer > .counter:before {
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -13px;
  width: 100%;
  height: 26px;
  font-size: 17px;
  line-height: 23px;
  font-weight: 700;
  text-align: center;
  color: #8F6DF5;
  content: attr(data-value);
}

.circle-timer > .counter:after {
  position: absolute;
  width: 76px;
  height: 76px;
  top: 8px;
  left: 8px;
  border-radius: 50%;
  background: white;
  content: "";
}

.inline-notification {
  width: 100%;
  box-sizing: border-box;
  background: #F7F7F7;
  border-radius: 5px;
  padding: 10px 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.inline-notification__icon {
  background: #BDE0BC;
  text-align: center;
  line-height: 25px;
  color: #149211;
  font-weight: 700;
  width: 25px;
  height: 25px;
  border-radius: 15px;
  min-width: 25px;
  margin-right: 8px;
}

.inline-notification__icon--success {
  background: #BDE0BC url(../images/tick-green.svg) no-repeat center center;
  background-size: 15px;
}

.inline-notification__icon--warning {
  background: #f2e490;
  color: #998205;
}

.inline-notification__icon--danger {
  background: #FCD5C8;
  color: #F25822;
}

.inline-notification--big {
  padding: 15px 15px;
  line-height: 19px;
}

.inline-notification--big .inline-notification__icon {
  margin-right: 13px;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 25px;
  line-height: 30px;
  font-size: 17px;
}

.inline-notification svg.rouble g {
  fill: #6426EA;
}

.inline-notification svg.rouble {
  height: 11px;
  width: 11px;
}

.inline-notification__text {
  line-height: 16px;
}

.inline-notification__text--extra-space {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}

@media (max-width: 750px) {
  .inline-notification svg.rouble {
    height: 10px;
    width: 10px;
  }
}
@media (max-width: 374px) {
  .inline-notification--big .inline-notification__icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    line-height: 20px;
    font-size: 12px;
  }
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin-left: 7px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0.06em;
  position: relative;
  text-indent: -9999em;
  border-top: 1.8em solid #EEE9FE;
  border-right: 1.8em solid #EEE9FE;
  border-bottom: 1.8em solid #EEE9FE;
  border-left: 1.8em solid #6426EA;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #e0e0e0;
  outline: none;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6426EA;
  cursor: pointer;
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #6426EA;
  cursor: pointer;
}

/*# sourceMappingURL=application.css.map */
