@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900&display=swap&subset=cyrillic-ext);
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Light.woff);
  font-weight: 300;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Regular.woff);
  font-weight: 400;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Medium.woff);
  font-weight: 500;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-SemiBold.woff);
  font-weight: 600;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Heavy.woff);
  font-weight: 700;
}
@font-face {
  font-family: "Gilroy-Bold";
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Medium";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Regular";
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Gilroy";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Gilroy";
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  background: #011213;
  color: #fff;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 100px;
}
@media (max-width: 1200px) {
  ._container {
    padding: 0px 50px;
  }
}
@media (max-width: 998px) {
  ._container {
    padding: 0px 20px;
  }
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
  color: #858FA4;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  cursor: pointer;
  border-radius: 4px;
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: right;
  color: #858FA4;
}
.select__value span {
  padding-right: 10px;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 6px;
  height: 6px;
  background: url("../img/arrow.png") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  border-top: 0;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}
._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
._swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
._swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.header {
  position: fixed;
  z-index: 10;
  width: 100%;
}
.header::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  background: linear-gradient(89deg, rgba(0, 56, 88, 0.3) -28.03%, rgba(3, 69, 74, 0.3) 173.74%);
  height: 100%;
  z-index: -1;
}
.header._scroll::before {
  background: linear-gradient(89deg, #003858 -28.03%, #03454a 173.74%);
}
.header._custom .header__menu ul {
  height: 100%;
}
@media (max-width: 998px) {
  .header._custom .header__menu ul a:nth-child(1), .header._custom .header__menu ul a:nth-child(2) {
    display: none;
  }
}
.header._custom .header__menu ul a:last-child {
  margin-top: auto;
  justify-content: center;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 6px;
}
@media (max-width: 1200px) {
  .header__container {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .header__container {
    padding-top: 18px;
    padding-bottom: 16px;
  }
}
.header__logo {
  width: 163px;
}
.header__logo img {
  width: 100%;
}
@media (max-width: 500px) {
  .header__logo {
    width: 130px;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 998px) {
  .header__menu {
    position: absolute;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    transform: translate(0px, -100%);
    transition: 0.3s;
    background-color: #011213;
    left: 0;
    top: 0;
    z-index: -2;
    padding-top: 130px;
  }
  .header__menu._active {
    transform: translate(0);
  }
  .header__menu::before {
    position: absolute;
    bottom: 5%;
    right: 0;
    pointer-events: none;
    z-index: -1;
    content: "";
    width: 195px;
    height: 383px;
    background-image: url(../img/ethbg.png);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
  }
}
.header__menu ul {
  border-radius: 1000px;
  background: rgba(1, 18, 19, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0px 16px;
  gap: 30px;
}
@media (max-width: 998px) {
  .header__menu ul {
    flex-direction: column;
    width: 100%;
    font-size: 20px;
  }
  .header__menu ul li {
    width: 100%;
  }
  .header__menu ul a {
    width: 100%;
    border-bottom: 1px solid rgba(6, 164, 176, 0.2);
  }
}
.header__menu a {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.header__menu a:hover {
  color: #06a4b0;
}
.header__menu a span {
  opacity: 0.8;
}
.header__menu_sing {
  position: relative;
}
.header__menu_sing img {
  width: 20px;
}
.header__menu_sing._active::before {
  /* background-color: #06a4b0; */
}
.header__menu_sing._blue {
  color: #06a4b0;
}
@media (max-width: 998px) {
  .header__menu_sing {
    margin-left: auto;
    margin-right: 36px;
  }
  .header__menu_sing::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    border-radius: 50%;
    background: rgba(1, 18, 19, 0.5);
    z-index: -1;
    width: 44px;
    height: 44px;
  }
  .header__menu_sing span {
    display: none;
  }
}
.header__line {
  display: flex;
  gap: 8px;
  font-weight: 600;
  align-items: center;
}
@media (max-width: 998px) {
  .header__line {
    margin-top: auto;
    justify-content: center;
    font-size: 16px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
.header__line div {
  opacity: 0.5;
}
.header__line div:nth-child(1) {
  display: none;
}
.header__line._active div {
  opacity: 1;
}
.header__line._active div:nth-child(2) {
  display: none;
}
.header__line._active div:nth-child(1) {
  display: block;
}
.header__line._active::before {
  background-color: #06a4b0;
}
.header__line::before {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(6, 164, 176, 0.2);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.icon-menu {
  display: none;
}
@media (max-width: 998px) {
  .icon-menu {
    display: block;
    position: relative;
    z-index: 1;
    top: 0px;
    right: 0px;
    width: 20px;
    height: 14px;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    border-radius: 50%;
    background: rgba(1, 18, 19, 0.5);
    z-index: -1;
    width: 44px;
    height: 44px;
  }
  .icon-menu span {
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
  .icon-menu span:first-child {
    top: 0px;
  }
  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }
  .icon-menu._active span {
    transform: scale(0);
  }
  .icon-menu._active span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .icon-menu._active span:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 0px);
  }
}

.footer__container {
  padding-top: 60px;
  padding-bottom: 20px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: flex-start;
  font-weight: 500;
}
@media (max-width: 998px) {
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.footer__logo {
  width: 163px;
}
@media (max-width: 998px) {
  .footer__logo {
    order: 1;
  }
}
.footer__logo img {
  width: 100%;
}
.footer__aml {
  padding-top: 20px;
}
@media (max-width: 998px) {
  .footer__aml {
    order: 3;
    padding-top: 0;
    margin-top: 25px;
    width: 100%;
  }
}
.footer__aml a {
  color: #fff;
}
.footer__aml a:hover {
  color: #06a4b0;
  opacity: 0.8;
}
.footer__contacts {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 998px) {
  .footer__contacts {
    order: 3;
    padding-top: 16px;
  }
}
.footer__contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.footer__contacts a:hover span {
  color: #06a4b0;
  opacity: 0.8;
}
.footer__line {
  padding-top: 30px;
  display: flex;
  gap: 8px;
  font-weight: 600;
  align-items: center;
  justify-content: end;
}
@media (max-width: 998px) {
  .footer__line {
    margin-top: auto;
    justify-content: center;
    font-size: 16px;
    padding-bottom: 20px;
    padding-top: 20px;
    order: 2;
  }
}
.footer__line div {
  opacity: 0.5;
}
.footer__line div:nth-child(1) {
  display: none;
}
.footer__line._active div {
  opacity: 1;
}
.footer__line._active div:nth-child(2) {
  display: none;
}
.footer__line._active div:nth-child(1) {
  display: block;
}
.footer__line._active::before {
  background-color: #06a4b0;
}
.footer__line::before {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(6, 164, 176, 0.2);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 998px) {
  .footer__bottom {
    margin-top: 32px;
  }
}
.footer__bottom span {
  opacity: 0.8;
}
@media (max-width: 998px) {
  .footer__bottom span {
    font-size: 12px;
  }
}
.footer__bottom a {
  opacity: 0.5;
  color: #fff;
}
.footer__bottom a:hover {
  text-decoration: underline;
}

.page {
  flex: 1 1 auto;
  padding-top: 140px;
}
@media (max-width: 998px) {
  .page {
    padding-top: 120px;
  }
}

.inp__wp._error span {
  display: block;
}
.inp__wp span {
  display: none;
}

._resp {
  overflow: hidden;
  transition: 0.3s;
}

.excenge__title {
  font-size: 56px;
  max-width: 800px;
  font-weight: 600;
}
@media (max-width: 998px) {
  .excenge__title {
    font-size: 32px;
  }
}
.excenge__title span {
  color: #06a4b0;
}
.excenge__block {
  position: relative;
}
.excenge__block::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 400px;
  height: 243px;
  background-size: contain;
  background-position: bottom right;
  background-image: url(../img/illustration.png);
  pointer-events: none;
  transform: translate(0px, -100%);
}
@media (max-width: 998px) {
  .excenge__block::before {
    display: none;
  }
}

.curs-excenge {
  border-radius: 16px;
  position: relative;
  background: #011213;
  padding: 16px;
  max-width: 450px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
}
.curs-excenge::before {
  border-radius: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: linear-gradient(263deg, rgba(6, 164, 176, 0.5) 1.38%, rgba(3, 69, 74, 0.5) 98.16%);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
}
.curs-excenge._custom {
  width: max-content;
  padding: 8px 16px;
  width: 100%;
  max-width: 260px;
  margin-top: 0px;
  font-weight: 600;
}
@media (max-width: 998px) {
  .curs-excenge._custom {
    max-width: 100%;
  }
}
.curs-excenge._custom .curs-excenge__text {
  margin-top: 0;
}
@media (max-width: 998px) {
  .curs-excenge {
    margin-top: 40px;
  }
}
.curs-excenge__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 600;
  color: #06a4b0;
  position: relative;
}
.curs-excenge__timer._full #countdown-number {
  font-size: 12px;
}
.curs-excenge__top {
  display: flex;
  gap: 8px;
  font-weight: 600;
}
.curs-excenge__top span {
  opacity: 0.7;
}
.curs-excenge__text {
  margin-top: 7px;
  font-size: 14px;
  opacity: 0.5;
}

svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}

svg circle {
  stroke-dasharray: 113px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: #06a4b0;
  fill: none;
}

.animate circle {
  animation: countdown 1800s linear infinite;
  /* длительность 30 минут */
}
.animate._sec circle {
  animation: countdown 30s linear infinite;
  /* длительность 30 сеукнд */
}

@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 113px;
  }
}
.block-excenge {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 34%;
  gap: 10px;
}
@media (max-width: 998px) {
  .block-excenge {
    grid-template-columns: 1fr;
  }
}
.block-excenge__left {
  display: flex;
  flex-direction: column;
}
.block-excenge__first {
  border-radius: 16px;
  background: rgba(6, 164, 176, 0.1);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 16px;
}
@media (max-width: 1300px) {
  .block-excenge__first {
    grid-template-columns: 1fr 36px 1fr;
  }
}
@media (max-width: 998px) {
  .block-excenge__first {
    grid-template-columns: 1fr;
    background: transparent;
    padding: 0;
  }
}
@media (max-width: 998px) {
  .block-excenge__head {
    border-radius: 8px;
    background: rgba(6, 164, 176, 0.1);
    padding: 12px;
  }
}
.block-excenge__title {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 1300px) {
  .block-excenge__title {
    font-size: 20px;
  }
}
.block-excenge__info {
  margin-top: 8px;
}
.block-excenge__info._error input {
  color: #b01a06;
}
.block-excenge__info._error .block-excenge__txt ._error {
  color: #b01a06;
  opacity: 1;
}
.block-excenge__top {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2px;
}
@media (max-width: 1300px) {
  .block-excenge__top {
    grid-template-columns: 46px 1fr;
  }
}
.block-excenge__logo {
  padding: 12px;
  border-radius: 8px;
  background: #011213;
}
@media (max-width: 1300px) {
  .block-excenge__logo {
    padding: 10px;
  }
}
.block-excenge__logo img {
  width: 100%;
}
.block-excenge__quantity {
  border-radius: 8px;
  background: #011213;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
@media (max-width: 1300px) {
  .block-excenge__quantity {
    padding: 10px 14px;
  }
}
.block-excenge__quantity span {
  color: #ffffff3c;
  font-size: 14px;
  text-transform: uppercase;
}
.block-excenge__quantity input {
  width: 100%;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.block-excenge__quantity input::placeholder {
  color: #ffffff3c;
  font-size: 20px;
}
@media (max-width: 1300px) {
  .block-excenge__quantity input {
    font-size: 18px;
  }
  .block-excenge__quantity input::placeholder {
    font-size: 18px;
  }
}
.block-excenge__txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 9px;
}
.block-excenge__txt span {
  opacity: 0.3;
}
.block-excenge__icon-rew {
  margin-top: 40px;
}
@media (max-width: 1300px) {
  .block-excenge__icon-rew {
    margin-top: 35px;
  }
}
@media (max-width: 998px) {
  .block-excenge__icon-rew {
    width: 40px;
    margin: 6px auto;
  }
}
.block-excenge__icon-rew img {
  width: 100%;
}
.block-excenge__body {
  border-radius: 16px;
  background: rgba(6, 164, 176, 0.1);
  margin-top: 2px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  position: relative;
  height: 100%;
}
.block-excenge__body::before {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  content: "";
  width: 2px;
  height: calc(100% - 16px);
  background-color: #011213;
}
@media (max-width: 1300px) {
  .block-excenge__body {
    gap: 56px;
  }
}
@media (max-width: 998px) {
  .block-excenge__body {
    grid-template-columns: 1fr;
    background: transparent;
    padding: 0;
    margin-top: 2px;
    gap: 2px;
  }
  .block-excenge__body::before {
    display: none;
  }
}
@media (max-width: 998px) {
  .block-excenge__item {
    border-radius: 8px;
    background: rgba(6, 164, 176, 0.1);
    padding: 12px;
  }
}
.block-excenge__type {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}
.block-excenge__type label {
  border-radius: 100px;
  border: 1px solid rgba(6, 164, 176, 0.5);
  opacity: 0.7;
  font-size: 14px;
  padding: 8px 0;
  cursor: pointer;
}
@media (max-width: 1300px) {
  .block-excenge__type label {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .block-excenge__type label {
    font-size: 10px;
    padding: 5px 0;
  }
}
@media (max-width: 998px) {
  .block-excenge__type label {
    font-size: 12px;
    padding: 8px 0;
  }
}
.block-excenge__type label:hover {
  opacity: 1;
  border: 1px solid #06a4b0;
}
.block-excenge__type input {
  display: none;
}
.block-excenge__type input:checked + label {
  opacity: 1;
  border: 1px solid #06a4b0;
  background: linear-gradient(0deg, rgba(6, 164, 176, 0.5) -71.21%, rgba(3, 69, 74, 0) 100%);
}
.block-excenge__search {
  display: grid;
  grid-template-columns: 16px 1fr 13px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  gap: 10px;
  padding: 10px;
  align-items: center;
  margin-top: 12px;
}
@media (max-width: 998px) {
  .block-excenge__search {
    padding: 14px 10px;
  }
}
.block-excenge__search .search-delete {
  display: none;
}
.block-excenge__search._cl .search-delete {
  display: block;
}
.block-excenge__search img {
  width: 100%;
  display: flex;
  align-items: center;
}
.block-excenge__search span {
  cursor: pointer;
}
.block-excenge__search input {
  background-color: transparent;
  gap: 10px;
  color: #fff;
  width: 100%;
  font-size: 14px;
  align-items: center;
}
.block-excenge__search input::placeholder {
  font-size: 14px;
  color: #ffffff2e;
}
.block-excenge__wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  max-height: 600px;
  overflow: auto;
  padding-right: 16px;
}
@media (max-width: 998px) {
  .block-excenge__wrapper {
    max-height: 260px;
    padding-right: 7px;
  }
}
@media (min-width: 998px) {
  .block-excenge__mobile {
    display: none;
  }
}
.block-excenge__element input {
  display: none;
}
.block-excenge__element input:checked + label {
  border: 1px solid #06a4b0;
  background: linear-gradient(39deg, #06a4b0 -213.47%, rgba(3, 69, 74, 0) 134.73%);
}
.block-excenge__element input:checked + label span,
.block-excenge__element input:checked + label div {
  opacity: 1;
}
.block-excenge__element label {
  padding: 12px 8px;
  display: grid;
  cursor: pointer;
  grid-template-columns: 24px 1fr max-content;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.block-excenge__element label img {
  width: 100%;
}
.block-excenge__element label:hover {
  border: 1px solid rgba(6, 164, 176, 0.5);
}
.block-excenge__element label:hover span {
  opacity: 1;
}
.block-excenge__element label span {
  opacity: 0.7;
}
.block-excenge__element label div {
  font-size: 14px;
  opacity: 0.2;
  text-transform: uppercase;
}
._scrollbar-custom::-webkit-scrollbar {
  width: 8px;
}

/* Track */
._scrollbar-custom::-webkit-scrollbar-track {
  border-radius: 1000px;
  background: rgba(6, 164, 176, 0.05);
}

/* Handle */
._scrollbar-custom::-webkit-scrollbar-thumb {
  border-radius: 1000px;
  background: rgba(6, 164, 176, 0.15);
}

/* Handle on hover */
._scrollbar-custom::-webkit-scrollbar-thumb:hover {
  border-radius: 1000px;
  background: rgba(6, 164, 176, 0.15);
}

.right-excenge {
  padding: 16px;
  border-radius: 16px;
  background: rgba(6, 164, 176, 0.1);
}
@media (max-width: 998px) {
  .right-excenge {
    border-radius: 8px;
    padding: 12px;
  }
}
.right-excenge__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}
.right-excenge__item {
  display: grid;
  grid-template-columns: 24px 1fr max-content;
  gap: 16px;
  align-items: center;
}
.right-excenge__img img {
  width: 100%;
}
.right-excenge__value {
  font-weight: 600;
}
.right-excenge__name {
  padding-right: 16px;
  opacity: 0.2;
  font-weight: 600;
}
.right-excenge__arb {
  margin: 12px 0px;
  width: 20px;
}
.right-excenge__arb img {
  width: 100%;
}
.right-excenge__ditales {
  margin-bottom: 40px;
  margin-top: 20px;
  max-height: 228px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 998px) {
  .right-excenge__ditales {
    max-height: 197px;
  }
}
.right-excenge__ditales span {
  font-size: 20px;
  font-weight: 600;
}
.right-excenge__ditales p {
  font-size: 14px;
  opacity: 0.5;
}

._form-block {
  display: flex;
  flex-direction: column;
}
._form-block label {
  color: #ffffff5a;
  margin-top: 16px;
}

._input {
  margin-top: 8px;
  position: relative;
}
._input input {
  background-color: transparent;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  color: #fff;
  border-radius: 8px;
  background: rgba(1, 18, 19, 0.5);
}
._input input::placeholder {
  font-size: 16px;
  color: #ffffff2a;
}
._input._error input {
  color: #b01a06;
}
._input._error input::placeholder {
  color: #b01a06;
}
._input._error ._input__error-text {
  display: block;
}
._input._hide-pass input {
  -webkit-text-security: disc;
}
._input._hide-pass ._visible-pass img:nth-child(2) {
  display: none;
}
._input._hide-pass ._visible-pass img:nth-child(1) {
  display: block;
}

._input__error-text {
  color: #b01a06;
  font-size: 12px;
  margin-top: 3px;
  display: none;
}

._checbox-input input {
  display: none;
}
._checbox-input input:checked + label {
  color: #fff;
}
._checbox-input input:checked + label::before {
  background-image: url(../img/check.png);
  border: 1px solid #06a4b0;
}
._checbox-input label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
._checbox-input label::before {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  border-radius: 2px;
  border: 1px solid rgba(6, 164, 176, 0.5);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center center;
}

._input-flex {
  display: flex;
  align-items: center;
}
@media (max-width: 998px) {
  ._input-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
._input-flex label {
  width: 116px;
}

._visible-pass {
  position: absolute;
  right: 16px;
  top: 15px;
  cursor: pointer;
}
._visible-pass img {
  width: 20px;
}
._visible-pass img:nth-child(1) {
  display: none;
}
._visible-pass img:nth-child(2) {
  display: block;
}

._btn button,
._btn a {
  margin-top: 20px;
  border-radius: 10000px;
  border: 1px solid #06a4b0;
  display: block;
  background: linear-gradient(39deg, #06a4b0 -213.47%, rgba(3, 69, 74, 0) 134.73%);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  padding: 15px;
  color: #fff;
}
@media (max-width: 998px) {
  ._btn button,
._btn a {
    font-size: 16px;
  }
}
._btn button:hover,
._btn a:hover {
  background: linear-gradient(60deg, #06a4b0 11%, rgba(3, 69, 74, 0) 110.85%);
}
._btn button:active,
._btn a:active {
  background: linear-gradient(64deg, #06a4b0 -57.75%, rgba(3, 69, 74, 0) 106.35%);
}

.account__wrapper {
  min-height: 600px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 10px;
}
@media (max-width: 998px) {
  .account__wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.account__left {
  border-radius: 16px;
  background: rgba(6, 164, 176, 0.1);
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-height: 650px;
}
@media (max-width: 998px) {
  .account__left {
    display: none;
  }
}
.account__left a {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.account__left a:last-child {
  margin-top: auto;
}
.account__left a._active {
  color: #06a4b0;
}
.account__left a._active .account__left-icon img:nth-child(1) {
  display: none;
}
.account__left a._active .account__left-icon img:nth-child(2) {
  display: block;
}
.account__left-icon img {
  max-width: 100%;
}
.account__left-icon img:nth-child(2) {
  display: none;
}
.account__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.account__block {
  position: relative;
  border-radius: 16px;
  background: rgba(6, 164, 176, 0.1);
  padding: 32px;
}
@media (max-width: 998px) {
  .account__block {
    position: relative;
    padding: 16px;
    border-radius: 8px;
  }
}
.account__title {
  font-size: 24px;
  font-weight: 600;
}
.account__message {
  margin-top: 8px;
  color: #33b006;
  display: none;
}
.account__message._active {
  display: block;
}
.account__message._red {
  color: #b01a06;
}
.account__form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 998px) {
  .account__form {
    margin-top: 0;
    gap: 0;
  }
}
.account__form ._input {
  width: 100%;
}
.account__form .account__btn {
  max-width: 226px;
}

@media (max-width: 998px) {
  .account__form .account__btn {
    max-width: 100%;
  }
}
.account__form .account__btn button {
  font-size: 16px;
}


.account__form input {
  max-width: 352px;
  width: 100%;
}
.account__form_2 {
  margin-top: 8px;
}
@media (max-width: 998px) {
  .account__form_2 {
    margin-top: 0;
  }
}
.account__form_2 ._input {
  max-width: 367px;
}
.account__form_2 .account__btn {
  max-width: 226px;
}
@media (max-width: 998px) {
  .account__form_2 .account__btn {
    max-width: 100%;
  }
}
.account__form_2 .account__btn button {
  font-size: 16px;
}

.story__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 998px) {
  .story__block {
    gap: 24px;
  }
}
.story__item {
  display: grid;
  grid-template-columns: 15.7% 21% 21% 15.7% 1fr 16px;
}
@media (max-width: 1300px) {
  .story__item {
    font-size: 14px;
  }
}
@media (max-width: 998px) {
  .story__item {
    display: flex;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}
.story__item:nth-child(1) {
  color: #ffffff50;
  margin-bottom: 8px;
}
@media (max-width: 998px) {
  .story__item:nth-child(1) {
    display: none;
  }
}
.story__item:nth-child(1) .story__element_status {
  color: #ffffff50;
}
.story__element_number {
  color: #ffffff50;
}

.story__element_link:hover {
  color: white;
}
@media (max-width: 998px) {
  .story__element_number {
    order: 1;
    width: 50%;
    color: #fff;
  }
}
.story__element_post span {
  display: none;
}
@media (max-width: 998px) {
  .story__element_post {
    order: 4;
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 16px;
  }
  .story__element_post span {
    display: inline;
  }
}
.story__element_get span {
  display: none;
}
@media (max-width: 998px) {
  .story__element_get {
    order: 5;
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 5px;
  }
  .story__element_get span {
    display: inline;
  }
}
.story__element_create {
  color: #ffffff50;
}
@media (max-width: 998px) {
  .story__element_create {
    order: 3;
    width: 100%;
    margin-top: 6px;
  }
}
.story__element_status {
  color: #33b006;
  text-align: center;
}
.story__element_status._red {
  color: #b01a06;
}
.story__element_status._yelow {
  text-align: center;
  color: #b07a06;
}
.story__element_status._green {
  text-align: center;
  color: #33b006;
}
.story__element_status._blue {
  color: #06a4b0;
}
@media (max-width: 998px) {
  .story__element_status {
    order: 2;
    width: 50%;
    text-align: right;
  }
}
.story__element_btn span {
  display: none;
}
.story__element_btn img {
  width: 100%;
}
@media (max-width: 998px) {
  .story__element_btn {
    order: 6;
    width: 100%;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
    border-radius: 10000px;
    padding: 12px;
    border: 1px solid rgba(6, 164, 176, 0.2);
  }
  .story__element_btn span {
    display: block;
  }
  .story__element_btn img {
    width: 14px;
  }
}
.story__tabs-btn {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.story__tabs-btn input {
  display: none;
}
.story__tabs-btn input:checked + label {
  border: 1px solid #06a4b0;
  color: #fff;
  background: linear-gradient(0deg, rgba(6, 164, 176, 0.5) -71.21%, rgba(3, 69, 74, 0) 100%);
}
.story__tabs-btn label {
  width: 230px;
  padding: 8px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border-radius: 10000px;
  color: #ffffffa7;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 998px) {
  .story__tabs-btn label {
    width: calc(50% - 4px);
  }
}
.story__pug {
  display: flex;
  margin-top: 32px;
}
.story__pug a {
    color: white
}
@media (max-width: 998px) {
  .story__pug {
    justify-content: center;
  }
}
.story__pug div {
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.story__pug div._active {
  border-radius: 2px;
  background: #06a4b0;
}

.referal {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 10px;
}
@media (max-width: 998px) {
  .referal {
    grid-template-columns: 1fr;
  }
}
.referal__text {
  opacity: 0.7;
  margin-top: 8px;
}
.referal__link label {
  display: block;
  margin-top: 24px;
  opacity: 0.5;
  margin-bottom: 8px;
}
.referal__copy {
  max-width: 244px;
}
@media (max-width: 998px) {
  .referal__copy {
    max-width: 100%;
  }
}
.referal__copy button {
  font-size: 16px;
}
.referal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.referal__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.referal__top .account__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 25px 14px;
  font-size: 20px;
}
.referal__top .account__block span {
  opacity: 0.5;
}
.balance-referal {
  display: flex;
  font-size: 24px;
  font-weight: 600;
  justify-content: space-between;
  margin-top: 30px;
  padding-bottom: 4px;
}

.history-referal__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.from_coin_exchange_slug._error {
    color: #b01a06;
}


.from_coin_exchange_amount_error::placeholder {
    color: #b01a06!important;
}

@media (max-width: 998px) {
  .history-referal__block {
    gap: 24px;
    margin-top: 24px;
  }
}
.history-referal__item {
  display: grid;
  grid-template-columns: 15.8% 15.8% 1fr 15.8%;
  gap: 32px;
}
@media (max-width: 1300px) {
  .history-referal__item {
    font-size: 14px;
  }
}
@media (max-width: 998px) {
  .history-referal__item {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}
.history-referal__item:nth-child(1) {
  color: #ffffff5d;
  margin-bottom: 8px;
}
@media (max-width: 998px) {
  .history-referal__item:nth-child(1) {
    display: none;
  }
}
@media (max-width: 998px) {
  .history-referal__element_id {
    width: 50%;
  }
}
@media (max-width: 998px) {
  .history-referal__element_data {
    width: 50%;
    text-align: right;
    color: #ffffff5d;
  }
}
@media (max-width: 998px) {
  .history-referal__element_user {
    width: 100%;
    margin-top: 16px;
  }
}
@media (max-width: 998px) {
  .history-referal__element_reward {
    width: 100%;
    margin-top: 8px;
  }
}

.detales__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 998px) {
  .detales__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.detales__title {
  font-size: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
@media (max-width: 998px) {
  .detales__title {
    font-size: 24px;
  }
}
.detales__status {
  color: #06a4b0;
  font-weight: 600;
  padding: 8px 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #06a4b0;
  border-radius: 8px;
}
.detales__status::before {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #06a4b0;
  border-radius: 50%;
}
.detales__block {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 10px;
}
@media (max-width: 998px) {
  .detales__block {
    display: flex;
    flex-direction: column-reverse;
  }
}
.detales__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detales__left .account__title {
  margin-bottom: 16px;
}
.detales__ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.detales__ul li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  word-break: break-all;
}
.detales__ul li span {
  opacity: 0.5;
}
.detales__right .account__block {
  height: 100%;
}
.detales__wp {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 998px) {
  .detales__wp {
    flex-direction: column-reverse;
    gap: 16px;
  }
}
.detales__btn {
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  background: #33b006;
  width: max-content;
}
.detales__text {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 8px;
  margin-bottom: 32px;
}

@media (max-width: 998px) {
  .partners__container {
    padding: 0;
  }
}
.dropdown-body{
    display: none;
    position: absolute;
    top: 40px;
    left: -10px;

    width: max-content;
    white-space: nowrap;
    background-color: #02191c;
    border: 2px solid #002026;
    border-radius: 8px;
    flex-direction: column;
}
.dropdown-btn {
    white-space: nowrap;
    display: inline-block !important;
}
.dropdown-link{
    cursor: pointer
}
.dropdown{
    position: relative
}
.dropdown:hover{
    .dropdown-body{
        display: flex !important;
    }
}
.partners__block {
  padding: 40px 0;
  background: linear-gradient(263deg, rgba(6, 164, 176, 0.5) 1.38%, rgba(3, 69, 74, 0.5) 98.16%);
  border-radius: 16px;
  display: grid;
  align-items: center;
  grid-template-columns: 40% 1fr;
  gap: 20px;
  overflow: hidden;
  margin-top: 60px;
}
@media (max-width: 998px) {
  .partners__block {
    display: flex;
    border-radius: 8px;
    flex-direction: column-reverse;
  }
}
.partners__img {
  display: flex;
  justify-content: end;
}
.partners__img img {
  width: 110%;
}
@media (max-width: 998px) {
  .partners__img img {
    width: 100%;
  }
}
.partners__content {
  max-width: 90%;
}
.partners__head {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 998px) {
  .partners__head {
    font-size: 24px;
  }
}
.partners__text {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 20px;
  opacity: 0.5;
}
@media (max-width: 1300px) {
  .partners__text {
    font-size: 18px;
  }
}
@media (max-width: 998px) {
  .partners__text {
    font-size: 16px;
    margin-top: 16px;
  }
}

.entry {
  position: relative;
  z-index: 1;
}
.entry::before, .entry::after {
  position: absolute;
  top: 0;
  left: 5vw;
  z-index: -1;
  content: "";
  background-image: url(../img/Group.png);
  width: 194px;
  background-size: contain;
  height: 383px;
}
@media (max-width: 998px) {
  .entry::before, .entry::after {
    display: none;
  }
}
.entry::after {
  top: auto;
  bottom: 0;
  right: 5vw;
  left: auto;
  transform: rotate(180deg);
}
.entry__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 800px;
  padding-top: 100px;
}
@media (max-width: 998px) {
  .entry__container {
    padding-top: 0;
    min-height: 0;
    padding-bottom: 70px;
  }
}
.entry__block {
  max-width: 600px;
  border-radius: 16px;
  background: rgba(6, 164, 176, 0.1);
  padding: 32px;
  width: 100%;
}
@media (max-width: 998px) {
  .entry__block {
    padding: 16px;
    border-radius: 8px;
  }
}
.entry__title {
  font-size: 32px;
  font-weight: 600;
}
.entry__title._red {
  color: #b01a06;
}
@media (max-width: 998px) {
  .entry__title {
    font-size: 24px;
  }
}
.entry__txt {
  opacity: 0.5;
  margin-top: 8px;
}
.entry__last {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 998px) {
  .entry__last {
    flex-direction: column;
  }
}
.entry__link {
  color: #fff;
  opacity: 0.5;
}
.entry__link:hover {
  text-decoration: underline;
}
.entry__btn {
  margin-left: auto;
}
@media (max-width: 998px) {
  .entry__btn {
    width: 100%;
  }
}
.entry__btn button,
.entry__btn a {
  margin-top: 0;
  padding: 15px 48px;
}
.entry__no-acc {
  margin-top: 25px;
  color: #ffffff5a;
}
.entry__no-acc a {
  font-size: 20px;
  color: #06a4b0;
  font-weight: 500;
}

.detales__flex {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 1300px) {
  .detales__flex {
    grid-template-columns: 1fr 160px;
  }
}
@media (max-width: 1200px) {
  .detales__flex {
    grid-template-columns: 1fr;
  }
}
.detales__total {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 998px) {
  .detales__total {
    flex-direction: column;
    align-items: flex-start;
  }
}
.detales__qr {
  display: flex;
  justify-content: center;
}
.detales__qr img {
  width: 100%;
  border-radius: 8px;
  max-width: 202px;
}
.detales__opl {
  font-weight: 600;
}

.total-detales {
  gap: 10px;
  align-items: center;
  display: flex;
  border-radius: 10000px;
  background: #fff;
  color: #011213;
  font-weight: 600;
  padding: 8px;
}
@media (max-width: 998px) {
  .total-detales {
    width: 100%;
  }
}
.total-detales span {
  padding-right: 10px;
}
.total-detales p {
  opacity: 0.5;
  padding-right: 10px;
}
@media (max-width: 998px) {
  .total-detales p {
    margin-left: auto;
  }
}
.total-detales img {
  width: 24px;
}

.popup::before {
  background: rgba(1, 18, 19, 0.2);
  backdrop-filter: blur(13.75px);
}
.popup__body {
  border-radius: 16px;
  border: 1px solid #06a4b0;
  background: #011213;
  padding: 32px;
}
@media (max-width: 998px) {
  .popup__body {
    padding: 32px 16px;
  }
}
.popup__close {
  background-image: url(../img/x.svg);
  width: 24px;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 20px;
}
.popup__title {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 998px) {
  .popup__title {
    font-size: 24px;
  }
}
.popup__title._red {
  color: #b01a06;
}
.popup__link {
  margin-top: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}
.popup__link img {
  width: 32px;
}
.popup__link:hover {
  color: #06a4b0;
}
.popup__text {
  opacity: 0.5;
  line-height: 1.2;
  margin-top: 10px;
}
.popup__btn {
  display: grid;
  margin-top: 15px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 998px) {
  .popup__btn {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.popup__btn button._red {
  color: #b01a06;
  border-radius: 10000px;
  border: 1px solid #b01a06;
  background: transparent;
}

.policy__wp {
  max-width: 705px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.policy__title {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 998px) {
  .policy__title {
    font-size: 24px;
  }
}
.policy__text {
  opacity: 0.5;
  line-height: 1.2;
  margin-top: -10px;
}
.policy__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #ffffffc7;
}
.policy__item ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  position: relative;
  counter-reset: list-counter;
  padding-left: 20px;
}
.policy__item ul li {
  opacity: 0.5;
  position: relative;
  counter-increment: list-counter;
  /* Увеличиваем счётчик на 1 для каждого элемента */
  padding-left: 20px;
}
.policy__item ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(list-counter) ".";
  width: 20px;
}
.policy__item div {
  position: relative;
  padding-left: 16px;
}
.policy__item div::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
  width: 8px;
  background-color: #06a4b0;
  height: 8px;
  border-radius: 50%;
}
.policy__head {
  font-size: 24px;
  padding-left: 0 !important;
  color: #fff;
}
@media (max-width: 998px) {
  .policy__head {
    font-size: 20px;
  }
}
.policy__head::before {
  display: none;
}


.status {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status .item {
  border: 1px solid #FFFFFF33;
  border-radius: 8px;
  padding-right: 16px;
  padding-left: 12px;
  padding-block: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Gilroy';
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF80;
}

.status .item .blue {
  display: none;
}

.status .item .gray {
  display: block;
}

.status .active .blue {
  display: block;
}

.status .active .gray {
  display: none;
}

.status .active {
  color: #06A4B0;
  background:
    linear-gradient(#022023, #022023) padding-box,
    linear-gradient(86.54deg, #011213 -32.33%, #06A4B0 75.25%) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
}

.checkbox_link {
    text-decoration: underline;
    color: #ffffff5a;
}
.status .hidden{
  display: none;
}

@media (max-width: 998px) {
  .status {
    position: relative;
    bottom: 0px;
    margin-top: 16px;
    left: 0px;
    flex-direction: column;
    align-items: start;
  }
  .status img{
    transform: rotate(90deg);
  }
}

