@charset "UTF-8";
.content__container {
  background-color: var(--header-dark-color);
  min-height: 100vh;
}

.btn__green-neon {
  font-weight: 400;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark-grey);
  background: var(--green-btn-submit);
  border: 1px solid var(--green-btn-submit);
  border-radius: 40px;
  height: 36px;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn__green-neon:hover {
  box-shadow: 0px 0px 18px rgba(1, 255, 194, 0.62);
}
.btn__green-neon:disabled {
  color: #000;
  background: var(--color-border-grey);
  border: 1px solid var(--color-border-grey);
  cursor: not-allowed;
}
.btn__green-neon:disabled:hover {
  box-shadow: none;
}
.btn__grey-fill {
  font-weight: 400;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  background: var(--color-border-grey);
  border: 1px solid var(--color-border-grey);
  border-radius: 40px;
  height: 36px;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.4s;
}
.btn__outline-grey {
  font-weight: 400;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark-grey-text);
  background: inherit;
  border: 1px solid var(--color-dark-grey-text);
  border-radius: 40px;
  height: 36px;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.4s;
}
.btn__outline-grey:hover {
  color: #fff;
  border-color: #fff;
}
.btn__uppercase {
  text-transform: uppercase;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 22px;
}
.switchinput {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #5B617B;
  transition: 0.4s;
}
.switch__slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}
.switch__slider.round {
  border-radius: 34px;
}
.switch__slider.round:before {
  border-radius: 50%;
}
.switch input:checked + .switch__slider {
  background-color: var(--green-btn-submit);
}
.switch input:checked + .switch__slider:before {
  transform: translateX(26px);
}

.message-error-green {
  color: var(--green-btn-submit);
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  display: block;
  text-align: center;
}
.message-error-green svg {
  fill: var(--green-btn-submit);
}
.message-error-red {
  color: #ff75a0;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  display: block;
  text-align: center;
}
.message-error-red svg {
  fill: #ff75a0;
}
.message-error-grey {
  color: var(--color-dark-grey-text);
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  display: block;
  text-align: center;
}
.message-error-grey svg {
  fill: var(--color-dark-grey-text);
}
.message-error-link {
  display: block;
  padding: 10px 0;
  font-style: normal;
  text-decoration: underline;
  font-size: 14px;
}

.popup-content__wrapper {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(27, 27, 36, 0.96);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
}
.popup-content__block {
  background-color: var(--bg-black-color);
  padding: 45px 20px;
  margin-top: 130px;
  border-radius: 20px;
  transform: scale(0);
  transition: transform 0.8s;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 540px) {
  .popup-content__block {
    margin-top: 30%;
  }
}
.popup-content__title {
  color: var(--color-border-grey);
  font-size: 16px;
  font-weight: 600;
}
.popup-content__text-grey {
  color: var(--color-dark-grey-text);
  font-size: 16px;
  font-weight: 600;
}
.popup-content__title-white {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.popup-content__text-white {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.popup-content__text-price {
  color: var(--green-btn-submit);
  font-size: 30px;
  font-weight: 600;
}

.popup-open {
  visibility: visible;
  opacity: 1;
}
.popup-open .popup-content__block {
  transform: scale(1);
}

.notification__block-wrapper {
  position: relative;
  background-color: var(--blue-notification);
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}
.notification__block-wrapper h1, .notification__block-wrapper h2, .notification__block-wrapper h3, .notification__block-wrapper h4, .notification__block-wrapper h5, .notification__block-wrapper h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.notification__block-wrapper p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.notification__block-close {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 12px;
  cursor: pointer;
}
.notification__block-close svg {
  stroke: #fff;
}

.line-border {
  display: block;
  width: 100%;
  background-color: var(--color-dark-grey-text);
  height: 1px;
}

.header__block-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid var(--color-light-grey);
}
.header__block-content {
  padding: 0 30px;
  margin: 0 auto;
  height: 72px;
  background: var(--header-dark-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 540px) {
  .header__block-content {
    padding: 0 10px;
  }
}
.header__content-left {
  align-items: center;
  display: flex;
  gap: 40px;
}
.header__content-right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}
.header__logo-wrapper {
  position: relative;
}
.header__logo {
  display: flex;
}
@media (max-width: 540px) {
  .header__logo svg {
    width: 110px;
  }
}
.header__version {
  position: absolute;
  top: 7px;
  right: -25px;
  color: var(--green-btn-submit);
  font-size: 12px;
  font-weight: 600;
}
.header__btns-wrapper {
  display: flex;
}
@media (min-width: 768px) {
  .header__btns-wrapper {
    gap: 10px;
  }
  .header__btns-wrapper #btn-profile-icon {
    display: none;
  }
}
@media (max-width: 768px) {
  .header__btns-wrapper {
    gap: 10px;
  }
}
.header__btn-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.header__btn-item__title {
  display: flex;
  margin: 0 10px;
  padding: 15px 0;
  min-width: 190px;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 1200px) {
  .header__btn-item__title {
    min-width: auto;
  }
}
.header__btn-item__title:hover p {
  color: #fff;
  transition: all 0.3s;
}
.header__btn-item__title:hover svg {
  fill: #fff;
  transition: all 0.3s;
}
.header__btn-item__title p {
  color: var(--color-dark-grey-text);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
  padding: 2px 10px 0 10px;
}
@media (max-width: 1200px) {
  .header__btn-item__title p {
    display: none;
  }
}
.header__menu-list {
  width: 390px;
  list-style: none;
  background-color: var(--header-dark-color);
  position: absolute;
  top: 49px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: auto;
  transition: 0.5s opacity, 0.5s visibility;
}
.header__menu-list.open {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
@media (max-width: 1200px) {
  .header__menu-list {
    top: 48px;
  }
}
@media (max-width: 768px) {
  .header__menu-list {
    position: fixed;
    width: 100%;
    height: 100%;
    padding-bottom: 75px;
  }
}
.header__menu-item {
  background-color: var(--bg-black-color);
  margin: 10px 0;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 354px) {
  .header__menu-item {
    padding: 15px 5px;
  }
  .header__menu-item .access {
    display: none;
  }
}
.header__menu-item.active {
  border: 1px solid var(--green-btn-submit);
}
.header__menu-item.active p {
  color: #fff;
}
.header__menu-item.active .icon-fill-dropdown {
  fill: #fff;
}
.header__menu-item.active .icon-stroke-dropdown {
  stroke: #fff;
}
.header__menu-item__link {
  display: flex;
}
.header__menu-item svg {
  margin-right: 10px;
}
.header__menu-item:hover .icon-stroke-dropdown {
  stroke: #fff;
}
.header__menu-item:hover .icon-fill-dropdown {
  fill: #fff;
}
.header__menu-item:hover .header__menu-text {
  color: #fff;
}
.header__menu-item .access {
  position: absolute;
  top: 24px;
  right: 20px;
  color: var(--green-btn-submit);
  font-size: 14px;
  font-weight: 600;
}
.header__menu-item .access-grey {
  position: absolute;
  top: 24px;
  right: 20px;
  color: var(--color-border-grey);
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 354px) {
  .header__menu-item .access-grey {
    top: 17px;
  }
}
.header__menu-text {
  color: var(--color-dark-grey-text);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s;
}
.header__username-block {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header__username-block {
    display: none;
  }
}
.header__username-block svg {
  fill: var(--green-btn-submit);
}
.header__name-user {
  color: var(--green-btn-submit);
  text-shadow: 0px 0px 25px rgba(1, 255, 194, 0.62);
  white-space: nowrap;
  font-size: 18px;
  font-weight: 400;
  margin-left: 10px;
}
.header__token-block {
  display: flex;
  align-items: center;
  color: var(--color-dark-grey-text);
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .header__token-block {
    display: none;
  }
}
.header__token-block a {
  color: var(--green-btn-submit);
  text-shadow: 0px 0px 25px rgba(1, 255, 194, 0.62);
  margin-left: 10px;
}
.header__menu-block {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.header__menu-block:hover .header__menu-name {
  color: #fff;
}
.header__menu-block:hover .header__menu-icon::before {
  background: #fff;
}
.header__menu-block:hover .header__menu-icon::after {
  background: #fff;
}
.header__menu-name {
  color: var(--color-dark-grey-text);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .header__menu-name {
    display: none;
  }
}
.header__menu-icon {
  display: flex;
  width: 35px;
  height: 35px;
  margin-left: 10px;
}
.header__menu-icon::before {
  border-radius: 4px;
  position: absolute;
  content: "";
  width: 38px;
  height: 3px;
  background: var(--color-dark-grey-text);
  top: 28px;
  transition: 0.3s;
}
.header__menu-icon::after {
  border-radius: 4px;
  position: absolute;
  content: "";
  width: 38px;
  height: 3px;
  background: var(--color-dark-grey-text);
  top: 40px;
  transition: 0.3s;
}
.header__menu-icon.open::before {
  transform: rotate(45deg) translate3d(0, 8.5px, 0);
}
.header__menu-icon.open::after {
  width: 38px !important;
  transform: rotate(-45deg) translate3d(0, -8.5px, 0);
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

.content__container.auth {
  height: 750px;
}

.auth__wrapper {
  position: absolute;
  left: 0;
  top: 120px;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 540px) {
  .auth__wrapper {
    position: static;
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.auth__block {
  background-color: var(--bg-black-color);
  border-radius: 20px;
  width: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
}
@media (max-width: 540px) {
  .auth__block {
    width: 330px;
    padding: 30px 15px;
  }
}
.auth__block * {
  z-index: 2;
}
.auth__block input[type=radio] {
  display: none;
}
.auth__block input[id=radio-login]:checked ~ .auth__glider-tab {
  transform: translateX(0);
}
.auth__block input[id=radio-register]:checked ~ .auth__glider-tab {
  transform: translateX(112%);
}
@media (max-width: 540px) {
  .auth__block input[id=radio-register]:checked ~ .auth__glider-tab {
    transform: translateX(125%);
  }
}
.auth__block-btns {
  color: #fff;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to right, #01FFC2, #6738B1) border-box;
  border-radius: 40px;
  width: 100%;
  margin-bottom: 30px;
}
.auth__title-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 150px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: color 0.15s ease-in;
}
@media (max-width: 540px) {
  .auth__title-tab {
    width: 138px;
  }
}
.auth__glider-tab {
  position: absolute;
  display: flex;
  height: 38px;
  width: 150px;
  margin: 5px;
  background-color: var(--header-dark-color);
  z-index: 1;
  border-radius: 40px;
  transition: 0.45s ease-out;
}
@media (max-width: 540px) {
  .auth__glider-tab {
    width: 128px;
  }
}
.auth__subtitle {
  color: var(--green-btn-submit);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.auth__block-text {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.auth__text {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark-grey-text);
}
.auth__text.text-green {
  color: var(--green-btn-submit);
}
.auth__counter-second {
  display: block;
  margin: 10px 0 0 0;
  color: var(--color-dark-grey-text);
  font-size: 16px;
  text-align: center;
}
.auth__btn-text {
  border: none;
  background-color: inherit;
  color: var(--color-dark-grey-text);
  font-size: 14px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
}
.auth__btn-text.active {
  color: var(--green-btn-submit);
  cursor: default;
}
.auth__btn-text.active:hover {
  color: var(--green-btn-submit);
}
.auth__btn-text:hover {
  color: #fff;
}
.auth__login {
  transform: translateX(115%);
  min-width: 320px;
  position: absolute;
  top: 27%;
  transition: all 0.8s;
}
.auth__login.active {
  transform: translateX(0);
  position: relative;
  display: block;
}
@media (max-width: 540px) {
  .auth__login {
    min-width: 100%;
  }
}
.auth__registration {
  transform: translateX(-115%);
  position: absolute;
  top: 34%;
  transition: all 0.8s;
}
.auth__registration.active {
  transform: translateX(0);
  position: relative;
  display: block;
  text-align: -webkit-center;
}
.auth__number-block {
  text-align: center;
}
.auth__number-block input[type=number] {
  text-align: center;
  letter-spacing: 5px;
}
.auth__number-block input[type=number]::-moz-placeholder {
  font-style: normal;
}
.auth__number-block input[type=number]::placeholder {
  font-style: normal;
}
.auth__number-block input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.auth__number-block input[name=phone]::-moz-placeholder {
  letter-spacing: 1px;
}
.auth__number-block input[name=phone]::placeholder {
  letter-spacing: 1px;
}
.auth__number-block input[name=code]::-moz-placeholder {
  letter-spacing: 5px;
}
.auth__number-block input[name=code]::placeholder {
  letter-spacing: 5px;
}
.auth__input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.auth__input-wrapper input {
  background-color: inherit;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #5B617B;
  color: #fff;
  font-size: 16px;
  padding: 0 32px 0 12px;
  min-height: 36px;
  margin-top: 10px;
  text-align: center;
}
.auth__input-wrapper input:focus-visible {
  outline: none;
}
.auth__input-wrapper input::-moz-placeholder {
  font-size: 14px;
  color: #5B617B;
  font-style: italic;
}
.auth__input-wrapper input::placeholder {
  font-size: 14px;
  color: #5B617B;
  font-style: italic;
}
.auth__input-wrapper label {
  color: var(--color-dark-grey-text);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.auth__input-wrapper span {
  margin-top: 10px;
}
.auth__password-control {
  position: absolute;
  top: 25px;
  right: 0;
  padding: 15px;
  display: inline-block;
  width: 20px;
  height: 20px;
  opacity: 0.4;
  transition: all 0.3s;
  cursor: pointer;
  background: url(../../../img/view-dark.svg) 0 0 no-repeat;
}
.auth__password-control.view {
  background: url(../../../img/no-view-dark.svg) 0 0 no-repeat;
}
.auth__password-control:hover {
  opacity: 0.7;
}
.auth__input-switch {
  display: flex;
  justify-content: space-between;
}
.auth__input-switch__text {
  color: var(--color-dark-grey-text);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: -2px 0 0 0;
  width: 82%;
}
.auth__input-switch__text a {
  border-bottom: 1px solid var(--color-dark-grey-text);
  transition: all 0.4s;
}
.auth__input-switch__text a:hover {
  color: #fff;
  border-color: #fff;
}
.auth__input-btn {
  margin-top: 30px;
}
.auth__popup .popup-content__block {
  width: 370px;
  height: 260px;
  justify-content: center;
}
.auth__popup .auth__input-btn {
  display: flex;
  width: 100%;
}
.auth__popup form {
  width: 100%;
}
.auth__popup .auth__input-wrapper {
  margin-bottom: 40px;
}
.auth__popup .auth__input-wrapper input {
  text-align: center;
}

.nav-menu-overlay {
  display: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 120;
  background-color: rgba(0, 0, 0, 0.5);
}

.nav-menu-overlay.active {
  display: block;
  opacity: 1;
  transition: 2s;
}

.main-menu {
  position: fixed;
  height: 100%;
  top: 0;
  right: -600px;
  width: 390px;
  transition: 0.7s;
  z-index: 130;
  overflow: auto;
}
@media (max-width: 540px) {
  .main-menu {
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
  }
}
.main-menu.active {
  right: 0px;
}
.main-menu__wrapper {
  padding: 83px 10px 50px 10px;
}
.main-menu__user-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  background-color: var(--bg-black-color);
  height: 45px;
  margin: 10px 0;
  padding: 10px 20px;
  border-radius: 10px;
}
@media (max-width: 540px) {
  .main-menu__user-block {
    padding: 10px;
  }
}
.main-menu__user-block__content {
  display: flex;
  align-items: center;
  color: var(--color-dark-grey-text);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}
.main-menu__user-block__content svg {
  margin-right: 10px;
  transition: all 0.3s;
}
.main-menu__user-block__text {
  margin: 0;
}
.main-menu__user-block:hover .main-menu__user-block__content {
  color: #fff;
}
.main-menu__user-block:hover svg {
  fill: #fff;
}
.main-menu__user-name {
  color: var(--green-btn-submit);
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0px 0px 25px #01FFC2;
}
.main-menu__user-token {
  color: var(--green-btn-submit);
  font-size: 16px;
  display: flex;
  align-items: center;
  text-shadow: 0px 0px 25px #01FFC2;
}
.main-menu__user-token p {
  font-size: 11px;
  margin-right: 10px;
}
.main-menu__user-token svg {
  margin-right: 10px;
}
.main-menu__line {
  display: block;
  width: 110%;
  height: 1px;
  border-bottom: 1px solid var(--bg-black-color);
  margin: 0 -10px 0 -10px;
}
.main-menu__link-block {
  display: flex;
  flex-direction: column;
  padding: 10px 0 20px;
}
.main-menu__link-item {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark-grey-text);
  text-decoration: unset;
  padding: 5px 0 5px 10px;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.main-menu__link-item:hover {
  color: #fff;
}
.main-menu__chats-block {
  padding: 20px 0 20px 10px;
}
.main-menu__chat-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.main-menu__chat-item svg {
  margin-right: 10px;
}
.main-menu__chat-item .stroke {
  stroke: var(--color-dark-grey-text);
  fill: none;
}
.main-menu__chat-item .fill {
  fill: var(--color-dark-grey-text);
  stroke: none;
}
.main-menu__chat-item__text {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark-grey-text);
  text-decoration: unset;
  margin: 0;
  padding: 5px 0;
  transition: all 0.3s;
}
.main-menu__chat-item:hover .stroke {
  stroke: #fff;
}
.main-menu__chat-item:hover .fill {
  fill: #fff;
}
.main-menu__chat-item:hover .main-menu__chat-item__text {
  color: #fff;
}
.main-menu__social-block {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 340px) {
  .main-menu__social-block {
    padding: 10px 5px;
  }
}
.main-menu__social-block__title {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark-grey-text);
  display: flex;
  align-items: center;
}
@media (max-width: 340px) {
  .main-menu__social-block__title {
    font-size: 14px;
  }
}
.main-menu__text-circle {
  display: inline-block;
  border: 1px solid var(--color-dark-grey-text);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  padding: 4px 2px 2px 3px;
  font-size: 11px;
  margin-right: 10px;
}
.main-menu__social-icon__wrapper {
  display: flex;
  align-items: center;
}
.main-menu__social-icon__wrapper a {
  padding: 4px 8px 0;
}
.main-menu__social-icon__wrapper a:hover svg {
  fill: #fff;
}

.profile__container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--header-dark-color);
  padding: 75px 0 120px 0;
}
.profile__text {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.profile__chats-block {
  grid-template-columns: repeat(3, 1fr);
  margin: 20px auto;
  grid-gap: 10px;
  display: grid;
  width: 100%;
}
@media (max-width: 1023px) {
  .profile__chats-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .profile__chats-block {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 540px) {
  .profile__chats-block {
    grid-gap: 12px;
    padding: 0 5px;
  }
}
.profile__tooltip {
  cursor: pointer;
  color: var(--green-btn-submit);
  position: absolute;
  top: 24px;
  right: 15px;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  margin-left: 5px;
}
@media (max-width: 540px) {
  .profile__tooltip {
    top: 14px;
    right: 8px;
    font-size: 12px;
  }
}
.profile__tooltip:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 25px;
  right: -15px;
  background-color: #5b647e;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-style: italic;
  line-height: 16px;
  font-weight: 400;
  min-width: 315px;
  z-index: 9999;
}
.profile__chat-item {
  display: flex;
  align-items: center;
  background-color: var(--bg-black-color);
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 540px) {
  .profile__chat-item {
    padding: 10px;
  }
}
.profile__chat-item .icon-stroke {
  stroke: var(--color-dark-grey-text);
}
.profile__chat-item .icon-fill {
  fill: var(--color-dark-grey-text);
}
.profile__chat-item:hover .icon-stroke {
  stroke: #fff;
}
.profile__chat-item:hover .icon-fill {
  fill: #fff;
}
.profile__chat-item:hover .profile__chat-text {
  color: #fff;
}
.profile__chat-item .access {
  position: absolute;
  top: 24px;
  right: 15px;
  color: var(--green-btn-submit);
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 540px) {
  .profile__chat-item .access {
    top: 14px;
    right: 8px;
    font-size: 12px;
  }
}
.profile__chat-item .access-grey {
  position: absolute;
  top: 24px;
  right: 20px;
  color: var(--color-border-grey);
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 540px) {
  .profile__chat-item .access-grey {
    top: 14px;
    right: 8px;
    font-size: 12px;
  }
}
.profile__chat-text {
  color: var(--color-dark-grey-text);
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  padding: 2px 10px 0 10px;
}
.profile__block-dropdown {
  background-color: var(--bg-black-color);
  border-radius: 10px;
  margin-bottom: 20px;
}
.profile__block-dropdown__header {
  position: relative;
  padding: 20px;
}
.profile__block-dropdown__header::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 20px;
  background-image: url(../../../img/icons/arrowDownFill.svg);
  background-repeat: no-repeat;
  transition: 0.3s all;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: var(--color-light-grey);
  cursor: pointer;
}
.profile__block-dropdown__header.open::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 27px;
  width: 18px;
  height: 18px;
  background-color: inherit;
  background-image: url(../../../img/icons/arrowDown2.svg);
  background-repeat: no-repeat;
  transform: rotate(180deg);
  opacity: 0.5;
  transition: 0.3s all;
  cursor: pointer;
}
.profile__block-dropdown__header h2 {
  color: var(--green-btn-submit);
  font-size: 18px;
  font-weight: 600;
  pointer-events: none;
}
.profile__block-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.profile__user-data__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px 20px;
  padding: 30px 20px;
  border-top: 1px solid var(--color-light-grey);
}
@media (max-width: 768px) {
  .profile__user-data__content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 540px) {
  .profile__user-data__content {
    grid-template-rows: 1fr 1fr 40px 1fr;
    gap: 20px;
  }
}
.profile__user-data__input {
  background-color: inherit;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #5B617B;
  color: #fff;
  font-size: 16px;
  padding: 0 10px;
  min-height: 36px;
  margin-top: 10px;
  text-align: start;
  white-space: nowrap; /* Запрещаем перенос строк */
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile__user-data__input::-moz-placeholder {
  color: #fff;
}
.profile__user-data__input::placeholder {
  color: #fff;
}
.profile__user-data__input-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.profile__user-data__input-block label {
  color: var(--color-dark-grey-text);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .profile__user-data__input-block.mobile {
    grid-column: 3/1;
    grid-row: 3/3;
  }
}
@media (max-width: 540px) {
  .profile__user-data__input-block.name {
    grid-column: 3/1;
  }
  .profile__user-data__input-block.email {
    grid-column: 3/1;
    grid-row: 2;
  }
  .profile__user-data__input-block.mobile {
    grid-row: 4/4;
  }
}
.profile__user-data__btns {
  grid-column: 1/4;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .profile__user-data__btns {
    grid-column: 1/3;
    grid-row: 2;
  }
}
@media (max-width: 540px) {
  .profile__user-data__btns {
    grid-row: 3;
  }
}
.profile__user-data__btn {
  background-color: inherit;
  min-width: 160px;
  border-radius: 20px;
  border: 1px solid #5B617B;
  color: var(--color-dark-grey-text);
  font-size: 14px;
  padding: 0 10px;
  height: 34px;
  text-align: center;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 540px) {
  .profile__user-data__btn {
    min-width: 140px;
    margin: 0 5px;
  }
}
.profile__user-data__btn:hover {
  color: #fff;
  border-color: #fff;
}
.profile__telegram__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 40px;
  border-top: 1px solid var(--color-light-grey);
}
.profile__telegram__content p {
  text-align: center;
}
.profile__telegram__btn-block {
  position: relative;
  margin-bottom: 25px;
}
.profile__telegram__btn-block iframe {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.profile__telegram__btn {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 25px;
  text-align: center;
  border: none;
  border-radius: 40px;
  background-color: var(--blue-notification);
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0px 0px 10px rgba(88, 8, 251, 0.62);
}
.profile__telegram__btn:disabled {
  cursor: not-allowed;
  box-shadow: none;
}
@media (max-width: 540px) {
  .profile__telegram__btn {
    font-size: 13px;
  }
}
.profile__telegram__btns {
  display: flex;
  margin-top: 25px;
}
@media (max-width: 540px) {
  .profile__telegram__btns {
    flex-direction: column;
    gap: 15px;
  }
}
.profile__telegram__btns a {
  min-width: 185px;
}
.profile__statistics__content {
  padding: 30px 20px;
  border-top: 1px solid var(--color-light-grey);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .profile__statistics__content {
    flex-direction: column;
  }
}
.profile__statistics__block-left {
  flex-basis: 50%;
}
.profile__statistics__counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 540px) {
  .profile__statistics__counters {
    grid-template-columns: 1fr;
  }
}
.profile__statistics__counter-block {
  display: flex;
  align-items: center;
  margin: 0 0 20px 0;
  color: #fff;
  height: 35px;
}
.profile__statistics__item-body {
  font-size: 14px;
}
@media (max-width: 540px) {
  .profile__statistics__item-body {
    font-size: 13px;
  }
}
.profile__statistics__item-title {
  font-weight: 400;
  margin: 0 0 5px 0;
}
.profile__statistics__item-value {
  font-weight: 700;
  margin: 0;
}
.profile__statistics__services {
  margin-top: 15px;
}
.profile__statistics__services h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.profile__statistics__services-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.profile__statistics__services-list li {
  list-style: none;
  background-color: inherit;
  border-radius: 20px;
  border: 1px solid #5B617B;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 10px;
  text-align: center;
  margin: 4px 5px 4px 0;
}
@media (max-width: 540px) {
  .profile__statistics__services-list li {
    margin: 3px 3px 3px 0;
    padding: 8px;
  }
}
.profile__statistics__block-right {
  flex-basis: 46%;
  border: 1px solid var(--color-light-grey);
  border-radius: 10px;
  padding: 20px 20px 40px;
}
@media (max-width: 992px) {
  .profile__statistics__block-right {
    padding: 20px 10px 40px 10px;
  }
}
.profile__statistics__status {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 25px;
}
@media (max-width: 540px) {
  .profile__statistics__status {
    gap: 35px 15px;
  }
}
.profile__status-block {
  position: relative;
}
.profile__status-title {
  position: inherit;
  background-color: inherit;
  border-radius: 20px;
  border: 1px solid #5B617B;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 36px;
  text-align: center;
}
.profile__status-title p {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.profile__status-progress {
  position: absolute;
  height: 95%;
  left: 1px;
  top: 1px;
  border-radius: 20px 0 0 20px;
  background: var(--color-light-grey);
}
.profile__status-value {
  position: absolute;
  bottom: -20px;
  left: 29%;
  color: var(--color-dark-grey-text);
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
}
@media (max-width: 992px) {
  .profile__status-value {
    left: 39%;
  }
}
@media (max-width: 768px) {
  .profile__status-value {
    left: 30%;
  }
}
@media (max-width: 430px) {
  .profile__status-value {
    left: 12%;
  }
}
.profile__title-frame {
  color: var(--green-btn-submit);
  border: 1px solid var(--green-btn-submit);
  box-shadow: 0px 0px 5px rgba(1, 255, 194, 0.62);
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 40px;
  text-transform: uppercase;
  text-align: center;
}
.profile__rates {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .profile__rates {
    grid-template-columns: 1fr;
  }
}
.profile__subscription-block {
  border-radius: 10px;
  padding: 20px 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bg-black-color);
}
.profile__subscription-block:nth-child(odd) {
  background: radial-gradient(100% 114.13% at 0% 0%, #5808FB 0%, #7F04FE 100%);
}
.profile__subscription-block:nth-child(odd) .profile__subscription-title {
  color: #fff;
  border: 1px solid #fff;
}
.profile__subscription-block:nth-child(odd) .profile__subscription-btn {
  background-color: var(--green-btn-submit);
  color: var(--header-dark-color);
}
.profile__subscription-block:nth-child(odd) .profile__subscription-btn:hover {
  box-shadow: 0px 0px 18px rgba(1, 255, 194, 0.62);
}
.profile__subscription-block p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.profile__subscription-title {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  padding: 8px 10px;
  height: 40px;
  border-radius: 40px;
  color: var(--green-btn-submit);
  border: 1px solid var(--green-btn-submit);
}
@media (max-width: 1200px) {
  .profile__subscription-title {
    text-align: center;
    height: auto;
  }
}
@media (max-width: 540px) {
  .profile__subscription-title {
    text-align: start;
    font-size: 14px;
  }
}
.profile__subscription-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 15px 0;
}
@media (max-width: 540px) {
  .profile__subscription-subtitle {
    font-size: 13px;
  }
}
.profile__subscription-btn {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 8px;
  text-align: center;
  border: none;
  border-radius: 40px;
  margin-top: 30px;
  background-color: var(--blue-notification);
  color: #fff;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}
.profile__subscription-btn:hover {
  box-shadow: 0px 0px 18px rgba(88, 8, 251, 0.62);
}
.profile__subscription-btn:disabled {
  cursor: not-allowed;
  box-shadow: none;
}
@media (max-width: 540px) {
  .profile__subscription-btn {
    font-size: 13px;
  }
}
.profile__program__content {
  justify-content: space-between;
  padding: 30px 20px;
  border-top: 1px solid var(--color-light-grey);
  display: flex;
}
@media (max-width: 768px) {
  .profile__program__content {
    flex-direction: column;
  }
}
.profile__program__block-left {
  flex-basis: 48%;
}
.profile__program__info-block {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.profile__program__info-block h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}
.profile__program__info-block input {
  padding: 0 40px 0 10px;
}
.profile__program__copy-label {
  background-color: var(--green-btn-submit);
  color: #080C18;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  padding: 4px 6px;
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 12px;
  display: none;
}
.profile__program__copy-btn {
  position: absolute;
  top: 33px;
  right: 6px;
  padding: 5px;
  cursor: pointer;
}
.profile__program__copy-btn:hover svg {
  pointer-events: none;
  stroke: #fff;
}
.profile__program__copy-btn svg {
  stroke: var(--color-dark-grey-text);
}
.profile__program__block-right {
  flex-basis: 49%;
  border: 1px solid var(--color-light-grey);
  border-radius: 10px;
  padding: 20px;
}
.profile__program__statistics-block {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.profile__program__statistics-item {
  display: flex;
  align-items: center;
  height: 38px;
  margin-bottom: 20px;
}
@media (max-width: 540px) {
  .profile__program__statistics-item {
    margin-left: -20px;
  }
  .profile__program__statistics-item svg {
    flex-basis: 30%;
  }
}
.profile__program__statistics-item p {
  color: var(--color-dark-grey-text);
}
@media (max-width: 540px) {
  .profile__program__statistics-item p {
    flex-basis: 70%;
  }
}
.profile__program__statistics-item p span {
  font-weight: 700;
}
.profile__app__content {
  padding: 15px 15px 25px;
  border-top: 1px solid var(--color-light-grey);
  gap: 15px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1120px) {
  .profile__app__content {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .profile__app__content {
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
  }
}
.profile__app-item {
  padding: 20px 10px;
  border: 1px solid var(--color-light-grey);
  border-radius: 10px;
  color: #fff;
  flex-basis: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1120px) {
  .profile__app-item {
    flex-basis: 48%;
  }
}
@media (max-width: 768px) {
  .profile__app-item {
    min-width: 250px;
  }
}
@media (max-width: 540px) {
  .profile__app-item {
    margin: 0 auto;
    padding: 10px;
  }
}
.profile__app-item h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.profile__app-item p {
  margin-bottom: 20px;
}
@media (max-width: 340px) {
  .profile__app-item p {
    display: none;
  }
}
.profile__app-link img {
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid var(--bg-black-color);
  transition: all 0.3s;
}
.profile__app-link:hover img {
  border: 1px solid #fff;
}
.profile__notification-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .profile__notification-footer {
    flex-direction: column;
    margin: 0 5px;
  }
}
.profile__notification-item {
  width: 50%;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .profile__notification-item {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .profile__notification-item {
    padding: 20px 10px;
  }
}
.profile__notification-item.green-block {
  background-color: #00CD9C;
}
.profile__notification-item.green-block a {
  width: 30px;
  height: 30px;
  background-image: url(../../../img/icons/arrowDownGreenFill.svg);
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .profile__notification-item.green-block a {
    width: 45px;
  }
}
@media (max-width: 540px) {
  .profile__notification-item.green-block a {
    width: 55px;
  }
}
.profile__notification-item.blue-block {
  background-color: var(--blue-notification);
  padding-right: 10px;
}
@media (max-width: 540px) {
  .profile__notification-item.blue-block {
    flex-direction: column;
    align-items: flex-start;
  }
}
.profile__notification-item.blue-block h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 540px) {
  .profile__notification-item.blue-block h3 {
    font-size: 16px;
  }
}
@media (max-width: 540px) {
  .profile__notification-content {
    width: 80%;
  }
}
.profile__notification-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 540px) {
  .profile__notification-content h3 {
    font-size: 16px;
  }
}
.profile__notification-content p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.profile__notification-links {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 540px) {
  .profile__notification-links {
    justify-content: flex-start;
    height: 45px;
  }
}
.profile__notification-links a {
  margin-right: 10px;
  width: 30px;
  height: 30px;
}
.profile__notification-links a svg {
  fill: #fff;
  opacity: 0.8;
  transition: all 0.3s;
  width: 30px;
  height: 30px;
}
@media (max-width: 540px) {
  .profile__notification-links a svg {
    opacity: 1;
  }
}
.profile__notification-links a:hover svg {
  opacity: 1;
}
.profile__popup__btn-close {
  position: absolute;
  right: -8px;
  top: -40px;
  cursor: pointer;
}
.profile__popup__btn-close svg {
  pointer-events: none;
}
.profile__popup.popup-content__wrapper.popup-open {
  z-index: 99;
}
.profile__popup .popup-content__block {
  position: relative;
  padding: 25px;
  border-radius: 10px;
  width: 370px;
}
@media (max-width: 540px) {
  .profile__popup .popup-content__block {
    width: 300px;
  }
}
.profile__popup .popup-content__block.support {
  width: 700px;
}
@media (max-width: 768px) {
  .profile__popup .popup-content__block.support {
    width: 300px;
    margin-top: 30%;
  }
}
@media (max-width: 540px) {
  .profile__popup .popup-content__block.support {
    margin-top: 45%;
  }
}
.profile__popup .popup-content__block .green-neon-text {
  color: var(--green-btn-submit);
}
.profile__popup form {
  margin-top: 20px;
  width: 100%;
}
.profile__popup__input-wrapper input {
  background-color: var(--bg-black-color);
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--color-dark-grey-text);
  color: #fff;
  font-size: 16px;
  padding: 0 32px 0 12px;
  min-height: 36px;
  text-align: center;
  margin-bottom: 10px;
}
.profile__popup__input-wrapper input::-moz-placeholder {
  color: var(--color-dark-grey-text);
}
.profile__popup__input-wrapper input::placeholder {
  color: var(--color-dark-grey-text);
}
.profile__popup__input-btns {
  display: flex;
  width: 100%;
  margin-top: 20px;
}
.profile__popup__input-btns .btn__green-neon, .profile__popup__input-btns .btn__outline-grey {
  border-radius: 10px;
}
.profile__popup__switch {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
.profile__popup__switch-text {
  color: #fff;
  font-size: 12px;
  margin: 0;
  text-align: left;
  width: 80%;
}
@media (max-width: 540px) {
  .profile__popup__switch-text {
    width: 73%;
  }
}
.profile__popup__switch-text a {
  color: var(--green-btn-submit);
}
.profile__popup__switch-text a:hover {
  text-decoration: underline;
}
.profile__popup__btns {
  margin-top: 30px;
  margin-bottom: 25px;
  width: 100%;
}
.profile__password-control {
  position: absolute;
  top: 8px;
  right: 0;
  padding: 15px;
  display: inline-block;
  width: 20px;
  height: 20px;
  opacity: 0.4;
  transition: all 0.3s;
  cursor: pointer;
  background: url(../../../img/view-dark.svg) 0 0 no-repeat;
}
.profile__password-control.view {
  background: url(../../../img/no-view-dark.svg) 0 0 no-repeat;
}
.profile__password-control:hover {
  opacity: 0.7;
}

.detail-view-img__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 72px);
}
.detail-view-img__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 250px;
  height: 100%;
  margin: 30px 0;
}
@media (max-width: 1023px) {
  .detail-view-img__content {
    padding: 0 100px;
  }
}
.detail-view-img__content img {
  max-width: 100%;
  max-height: 65vh;
}
@media (max-width: 540px) {
  .detail-view-img__content img {
    max-height: 45vh;
    max-width: 300px;
  }
}
@media (max-width: 340px) {
  .detail-view-img__content img {
    max-width: 280px;
  }
}

.page-error__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  overflow-x: hidden;
}
.page-error__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 100px 0 30px 0;
  animation: glitch 1s linear infinite;
}
.page-error__content img {
  max-width: 100%;
}
@media (max-width: 992px) {
  .page-error__content img {
    width: 80%;
  }
}
.page-error__content:before, .page-error__content:after {
  content: attr(title);
  position: absolute;
  left: 0;
}
.page-error__content:before {
  animation: glitchTop 1s linear infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.page-error__content:after {
  animation: glitchBotom 1.5s linear infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}
.page-error__btn {
  margin-top: 80px;
  border-radius: 5px;
  width: 430px;
  box-shadow: 0px 0px 18px rgba(1, 255, 194, 0.62);
  margin: 0 auto;
}
@media (max-width: 540px) {
  .page-error__btn {
    width: 300px;
  }
}

.nav-menu-wrapp {
  background: #070e26 !important;
}

.footer-gradient__inner {
  background: linear-gradient(180deg, #5808FB 0%, #01FFC2 100%);
}

.gradient-row {
  height: 15px;
}

.gradient-row__inner {
  background: var(--landing-bg-color);
}

.gradient-row {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
}

@media (max-width: 768px) {
  lottie-player.animate-logo-footer {
    margin-bottom: -70px;
  }
}
@keyframes glitch {
  2%, 64% {
    transform: translate(2px, 0) skew(0deg);
  }
  4%, 60% {
    transform: translate(-2px, 0) skew(0deg);
  }
  62% {
    transform: translate(0, 0) skew(5deg);
  }
}
@keyframes glitchTop {
  2%, 64% {
    transform: translate(2px, -2px);
  }
  4%, 60% {
    transform: translate(-2px, 2px);
  }
  62% {
    transform: translate(13px, -1px) skew(-13deg);
  }
}
@keyframes glitchBotom {
  2%, 64% {
    transform: translate(-2px, 0);
  }
  4%, 60% {
    transform: translate(-20px, 0);
  }
  62% {
    transform: translate(-42px, 5px) skew(50deg);
  }
}
.footer__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: var(--header-dark-color);
  color: var(--color-dark-grey-text);
  text-align: center;
  padding: 10px;
  font-size: 16px;
  border-top: 1px solid var(--color-light-grey);
  z-index: 100;
}
@media (max-width: 430px) {
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
  }
}
.footer__links-block {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--color-dark-grey-text);
  font-size: 12px;
  font-weight: 700;
}
.footer__links-block p {
  margin: 0;
  margin-right: 15px;
  white-space: nowrap;
}
@media (max-width: 430px) {
  .footer__links-block p {
    margin: 12px 0;
  }
}
.footer__links-block a {
  white-space: nowrap;
}
.footer__links-block a:hover {
  color: var(--color-grey-text);
}
@media (max-width: 1430px) {
  .footer__links-block a {
    display: none;
  }
}
.footer__support-block {
  background-color: var(--bg-black-color);
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
}
.footer__support-block:hover svg {
  fill: var(--color-grey-text);
}
.footer__support-block:hover .footer__support-text {
  color: var(--color-grey-text);
}
.footer__support-text {
  color: var(--color-dark-grey-text);
  margin: 0 0 4px 5px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}/*# sourceMappingURL=main.css.map */
