@font-face {
  font-family: Rubik;
  font-style: normal;
  font-weight: 400;
  src: url(/public/fonts/Rubik-Regular.ttf);
}
@font-face {
  font-family: Rubik;
  font-style: normal;
  font-weight: 500;
  src: url(/public/fonts/Rubik-Medium.ttf);
}
@font-face {
  font-family: Rubik;
  font-style: normal;
  font-weight: 600;
  src: url(/public/fonts/Rubik-SemiBold.ttf);
}
@font-face {
  font-family: Rubik;
  font-style: normal;
  font-weight: 700;
  src: url(/public/fonts/Rubik-Bold.ttf);
}
@font-face {
  font-family: Rubik;
  font-style: normal;
  font-weight: 800;
  src: url(/public/fonts/Rubik-ExtraBold.ttf);
}
@font-face {
  font-family: Rubik;
  font-style: normal;
  font-weight: 900;
  src: url(/public/fonts/Rubik-ExtraBold.ttf);
}
:root {
  --h1-font__size: 3rem;
  --h2-font__size: 2rem;
  --h3-font__size: 1rem;
  --default-font__size: 0.9rem;
  --small-font__size: 0.8rem;
  --big-font__size: 1.3rem;
  --regular-font: 400;
  --medium-font: 500;
  --semi-font: 600;
  --bold-font: 700;
  --extra-font: 800;
  --black-font: 900;
  --body-color: #fbfdff;
  --first-text-color: #3e3e3e;
  --second-text-color: #8b8d98;
  --third-text-color: #262744;
  --fourth-text-color: #252542;
  --border-line-color: #e5e7eb;
  --tr-hover-color: #e5e7eb;
  --rows-color: #f4f6f9;
  --tr-hover-color-second: #d6d8df;
  --hover-v1-color: #1d2234;
  --white-input: #fff;
  --progress-color: #8b8d98;
  --select-option: #fff;
  --menu-btn-color: #fff;
  --blue-dark-color: #1d2234;
  --blue-dark-second-color: #151926;
  --blue-dark-thir-color: #1d2234;
  --blue-dark-bar-color: #131621;
  --blue-dark-fourth-color: #303254;
  --blue-dark-fifth-color: #10111c;
  --red-color: #df5a52;
  --red-second-color: #d12f44;
  --green-color: #26c99b;
  --green-second-color: #25b176;
  --yellow-color: #ffc107;
  --yellow-secondary-color: #ad8617;
  --gray-color: #bababa;
  --gray-color-secondary: #e8ebef;
  --purple-fourth-color: #181c2b;
  --purple-color: #5f54aa;
  --purple-second-color: #5f54aa;
  --purple-third-color: #161a28;
  --white-color: #fff;
  --dark-gray: #585858;
  --dark-body-color: #131722;
  --dark-text-color: #b9bac0;
  --dark-text-color2: #262626;
  --second-fourth-color: #635f5f;
  --border-select-color: #e8e8e8;
  --btn-secondary-color: #273445;
  --btn-secondary-text-color: #fff;
  --disabled-checkbox: #ccc;
  --checkbox-bg: #fffdfd;
  --checkbox-border: #ccc;
  --border-line-color-v2: #e5e7eb;
  --btn-stroke-color: #57638d;
  --yellow-darker-color: #d1a825;
  --gray-color-third: #848e9c;
  --table-head-color: #f3f3f3;
  --modal-border-line-color: #cbcbcb;
  --modal-information-color: #f3f4f6;
  --modal-information-warning-color: #101320;
  --modal-information-warning-color-label: #384260;
  --strict-border-color: #1d2234;
  --dark-profile-body-color: #0c111a;
  --label-bubble-color: #eee;
}
body {
  background-color: var(--body-color);
  color: var(--first-text-color);
  font-size: var(--default-font__size);
  font-weight: var(--medium-font);
  margin: 0;
  padding: 0;
}
.site-layout {
  overflow-x: hidden;
}
body.dark .site-layout {
  --tr-hover-color: #1d2234;
  --tr-hover-color-second: #646f8f;
  --border-line-color: #1d2234;
  --rows-color: #1d2234;
  --hover-v1-color: #ffc107;
  --first-text-color: #b9bac0;
  --white-input: #131722;
  --progress-color: #c19a23;
  --select-option: #1d2234;
  --second-fourth-color: #8d8787;
  --border-select-color: #2a2948;
  --btn-secondary-color: #273445;
  --btn-secondary-text-color: #fff;
  --disabled-checkbox: #1b1b1b;
  --checkbox-bg: #1f1e35;
  --checkbox-border: #393b3d;
  --border-line-color-v2: #252c42;
  --yellow-darker-color: #a78929;
  --table-head-color: #1d2234;
  --modal-border-line-color: #696b77;
  --modal-information-color: #101520;
  --modal-information-warning-color: #101320;
  --modal-information-warning-color-label: #384260;
  --label-bubble-color: #0e101e;
  --dark-text-color2: #b9bac0;
  --dark-gray: #b9b9b9;
  background-color: var(--dark-body-color);
  color: var(--dark-text-color);
}
.components-title h2 {
  font-size: var(--h2-font__size);
  margin: 5rem 0 3rem;
}
.tabs-nav {
  color: var(--second-text-color);
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
}
.tabs-nav__item {
  margin-right: 1.5rem;
  padding: 0.5rem 0;
  position: relative;
}
.tabs-nav__item:hover {
  color: var(--hover-v1-color);
}
.tabs-nav__item:hover:after {
  background-color: var(--yellow-color);
  bottom: -1.12rem;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}
.tabs-nav__active {
  color: var(--hover-v1-color);
}
.tabs-nav__active:after {
  background-color: var(--yellow-color);
  bottom: -1.12rem;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .tabs-nav {
    flex-direction: column;
  }
  .tabs-nav__active:after,
  .tabs-nav__item:hover:after {
    height: 0;
  }
}
.tabs-search {
  display: flex;
  justify-content: flex-start;
}
.tabs-search input {
  background-color: transparent;
  border: none;
  color: var(--first-text-color);
  display: block;
  font-size: var(--default-font__size);
  outline: none;
  padding: 0.4rem 0.5rem 0.4rem 0;
  width: 100%;
}
.tabs-search input:focus {
  box-shadow: none;
  outline: none;
}
.tabs-search input::-moz-placeholder {
  color: var(--second-text-color);
}
.tabs-search input::placeholder {
  color: var(--second-text-color);
}
.tabs-search__icon {
  display: inline-block;
  height: 24px;
  margin-right: 4px;
  position: relative;
  top: 8px;
  width: 22px;
}
.tabs-search__color {
  stroke: var(--first-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tabs {
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: space-between;
  margin: 0 0 4rem;
  padding: 1rem 0;
}
.tabs-left,
.tabs-right {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.tabs-right .tabs-balance {
  display: block;
}
.tabs-right .tabs-balance p {
  border-bottom: 1px dashed #848e9c;
  display: inline-block;
  font-size: 1.2rem;
  margin-top: 10px;
}
.tabs-right .tabs-balance small {
  display: block;
  font-size: 0.9rem;
  margin-top: 10px;
}
.components-label {
  background-color: var(--border-line-color);
  border-radius: 9999px;
  color: var(--second-text-color);
  display: inline-block;
  font-size: var(--small-font__size);
  padding: 0.2rem 0.7rem;
  text-align: center;
  width: 120px;
}
.label-red {
  background-color: rgba(238, 40, 68, 0.16);
  color: var(--red-color);
}
.label-red span {
  color: var(--red-color) !important;
  cursor: pointer;
}
.label-green {
  background-color: rgba(34, 158, 107, 0.16);
  color: var(--green-color);
}
.label-orange {
  background-color: rgba(225, 167, 54, 0.16);
  color: var(--yellow-color);
}
.card-warning.active {
  border: 1px solid var(--yellow-color);
}
.card-warning.active,
.card-warning:hover {
  background: var(--yellow-color);
}
body.dark .site-layout .card-warning,
body.dark .site-layout .table-form-container-item {
  border-color: var(--fourth-text-color);
}
body.dark .site-layout .card-warning h2 {
  color: var(--first-text-color);
  color: var(--second-text-color);
}
body.dark .site-layout .card-warning div {
  background: var(--third-text-color);
  color: var(--second-text-color);
}
body.dark .site-layout .card-warning.active,
body.dark .site-layout .card-warning:hover {
  background: var(--blue-dark-fourth-color);
  border: 1px solid var(--blue-dark-fourth-color);
}
body.dark .site-layout #card-element {
  border-color: var(--border-line-color);
}
.form-border {
  border: 0 solid var(--border-line-color) !important;
}
.components-filter__form {
  border: 1px solid var(--border-line-color);
  margin: 1rem 0;
  max-width: 724px;
  padding: 1.5rem;
  width: 100%;
}
.components-filter__form .form-row .components-filter__item {
  width: 100% !important;
}
.components-filter__form .components-filter__row {
  align-items: flex-start;
  justify-content: space-between !important;
  margin-bottom: 1.5rem;
}
.components-filter__form .components-filter__item {
  margin-right: 0;
  width: 49%;
}
.components-filter__form .components-filter__item input,
.components-filter__form .components-filter__item select {
  background-color: transparent;
  border: 1px solid var(--border-line-color);
  font-size: var(--small-font__size);
  padding: 0.8rem;
}
.components-filter__form .components-filter__item input:focus,
.components-filter__form .components-filter__item select:focus {
  border: 1px solid var(--yellow-color);
  box-shadow: none;
  outline: none;
}
.components-filter__form .components-filter__item input option,
.components-filter__form .components-filter__item select option {
  background-color: var(--select-option);
  border: var(--border-line-color);
  outline: none;
}
.components-filter__form .components-filter__item label {
  font-size: var(--default-font__size);
}
.components-filter__form .components-filter__item .filter-select {
  background-color: transparent !important;
  border: 1px solid var(--border-line-color);
  font-size: var(--default-font__size);
  padding: 0.9rem 1.5rem;
}
.components-filter__form .components-filter__item .filter-select:focus {
  border: 1px solid var(--yellow-color);
  box-shadow: none;
  outline: none;
}
.components-filter__form .components-filter__item .filter-select__option {
  background-color: var(--select-option);
  border: 1px solid var(--border-line-color);
  color: var(--second-text-color);
  padding: 0.8rem;
}
.components-filter__form .components-filter__item .filter-hover {
  background-color: var(--purple-second-color);
  color: #fff;
}
.components-filter__form .components-filter__item .filter-active {
  background-color: var(--purple-second-color);
}
.components-filter__form .components-filter__item .bth-clear {
  padding-left: 0 !important;
  padding-right: 0 !important;
  top: 14px;
}
.components-filter__form .components-filter__button {
  background-color: var(--purple-second-color);
  display: block;
  outline: 0 solid red;
  padding: 1rem 0;
  position: relative;
  width: 100%;
}
.components-filter__form .components-filter__button:hover {
  background-color: var(--purple-color);
}
.components-filter {
  margin-bottom: 5rem;
}
.components-filter__row {
  align-items: center;
  align-items: flex-end;
  display: flex;
  justify-content: flex-start;
}
.components-filter__item {
  margin-right: 1rem;
  width: 24%;
}
.components-filter__item input,
.components-filter__item select {
  background-color: transparent;
  border: 1px solid var(--border-line-color);
  font-size: var(--small-font__size);
  padding: 0.8rem;
}
.components-filter__item input:focus,
.components-filter__item select:focus {
  border: 1px solid var(--yellow-color);
  box-shadow: none;
  outline: none;
}
.components-filter__item input option,
.components-filter__item select option {
  background-color: var(--select-option);
  border: var(--border-line-color);
  outline: none;
}
.components-filter__item label {
  font-size: var(--default-font__size);
}
.components-filter__item .filter-select {
  background-color: transparent !important;
  border: 1px solid var(--border-line-color);
  font-size: var(--default-font__size);
  padding: 0.9rem 1.5rem;
}
.components-filter__item .filter-select:focus {
  border: 1px solid var(--yellow-color);
  box-shadow: none;
  outline: none;
}
.components-filter__item .filter-select__option {
  background-color: var(--select-option);
  border: 1px solid var(--border-line-color);
  color: var(--second-text-color);
  padding: 0.8rem;
}
.components-filter__item .filter-hover {
  color: #fff;
}
.components-filter__item .filter-active,
.components-filter__item .filter-hover {
  background-color: var(--purple-second-color);
}
.components-filter__item .bth-clear {
  padding-left: 0 !important;
  padding-right: 0 !important;
  top: 14px;
}
.components-filter__item .bth-clear:hover {
  background-color: var(--purple-color);
  color: var(--white-color);
}
.components-filter__item8 {
  margin-right: 1rem;
}
.components-filter__item8 input,
.components-filter__item8 select {
  background-color: transparent;
  border: 1px solid var(--border-line-color);
  font-size: var(--small-font__size);
  padding: 0.8rem;
}
.components-filter__item8 input:focus,
.components-filter__item8 select:focus {
  border: 1px solid var(--yellow-color);
  box-shadow: none;
  outline: none;
}
.components-filter__item8 input option,
.components-filter__item8 select option {
  background-color: var(--select-option);
  border: var(--border-line-color);
  outline: none;
}
.components-filter__item8 label {
  font-size: var(--default-font__size);
}
.components-filter__item8 .filter-select {
  background-color: transparent !important;
  border: 1px solid var(--border-line-color);
  border-radius: 9999px;
  font-size: var(--default-font__size);
  padding: 0.9rem 1.5rem;
}
.components-filter__item8 .filter-select:focus {
  border: 1px solid var(--yellow-color);
  box-shadow: none;
  outline: none;
}
.components-filter__item8 .filter-select__option {
  background-color: var(--select-option);
  border: 1px solid var(--border-line-color);
  color: var(--second-text-color);
  padding: 0.8rem;
}
.components-filter__item8 .filter-hover {
  color: #fff;
}
.components-filter__item8 .filter-active,
.components-filter__item8 .filter-hover {
  background-color: var(--purple-second-color);
}
.components-filter__item8 .bth-clear {
  padding-left: 0 !important;
  padding-right: 0 !important;
  top: 14px;
}
.components-filter__item8 .bth-clear:hover {
  background-color: var(--purple-color);
  color: var(--white-color);
}
.components-filter__button {
  background-color: var(--purple-second-color);
  border-radius: 9999px;
  display: block;
  outline: none;
  padding: 1rem 0;
  position: relative;
  width: 100%;
}
.components-filter__button:hover {
  background-color: var(--purple-color);
}
@media screen and (max-width: 1000px) {
  .components-filter__form {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 770px) {
  .components-filter__row {
    display: block;
  }
  .components-filter__item {
    margin-bottom: 1.2rem;
    width: 100% !important;
  }
}
@media screen and (max-width: 670px) {
  .components-filter__form .components-filter__row {
    display: block;
  }
  .components-filter__form .components-filter__item {
    margin-bottom: 1rem;
    width: 100%;
  }
}
.table-sort__value {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
}
.table-sort__title {
  color: var(--second-text-color);
  font-size: 0.8rem;
  font-weight: 500;
}
.table-sort__icon {
  display: inline-block;
  height: 24px;
  margin-left: 1rem;
  width: 24px;
}
.table-sort__icon-color {
  stroke: var(--second-text-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.table-sort__icon-active {
  stroke: var(--yellow-color);
}
@media screen and (max-width: 1000px) {
  .table-sort {
    display: none;
  }
}
.table-list tr {
  border-bottom: 1px solid var(--border-line-color);
  transition: all 0.5s ease-out;
}
.table-list tr:hover {
  background-color: var(--tr-hover-color);
}
.table-list__subtitle {
  display: none;
}
.table-list__value {
  padding: 0.9rem 0 0.9rem 0.2rem;
}
.table-list__text,
.table-list__value {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.table-list__link {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
}
.table-list__link a {
  color: var(--yellow-color);
  display: block;
  margin-right: 1.5rem;
}
.table-list__link a:after {
  background-color: var(--yellow-color);
  content: "";
  display: block;
  height: 2px;
  transition: all 0.5s ease-out;
  width: 0;
}
.table-list__link a:hover:after {
  width: 100%;
}
.table-list .title-icon {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.table-list .title-icon__icon {
  display: inline-block;
  height: 18px;
  margin: 0 8px;
  position: relative;
  top: 1px;
  width: 18px;
  z-index: 9;
}
.table-list .title-icon__icon-color {
  fill: var(--second-text-color);
}
.table-list .title-icon__icon-active {
  fill: var(--yellow-color);
}
.table-list .title-icon__name {
  font-size: var(--default-font__size);
}
.table-list__image {
  align-items: center;
  display: flex;
  height: 40px;
  margin: 0 1rem 0 0.6rem;
  width: 40px;
}
.table-list__image img {
  border-radius: 50%;
}
.table-list__title-big {
  display: block;
  width: 100%;
}
.table-list__title-small {
  color: var(--second-text-color);
  display: block;
  font-size: var(--small-font__size);
}
.table-list .list-text__name {
  color: var(--second-text-color);
  display: block;
  margin-right: 10px;
}
.table-list .list-text__icon {
  cursor: pointer;
  display: block;
  height: 20px;
  margin-left: 10px;
  position: relative;
  width: 20px;
}
.table-list .list-text__icon-color {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.table-list .list-text__icon:hover .list-text__icon-color {
  stroke: var(--hover-v1-color);
}
.table-list__icon {
  display: inline-block;
  height: 18px;
  margin: 0 8px;
  outline: 1px solid red;
  position: relative;
  top: 1px;
  width: 18px;
  z-index: 9;
}
.table-list__icon-color {
  fill: var(--second-text-color);
}
@media screen and (max-width: 1000px) {
  .table-list tr:hover {
    background-color: none;
  }
  .table-list td {
    align-items: center;
    clear: both;
    display: flex;
    justify-content: space-between;
  }
  .table-list td:first-child {
    padding-top: 1rem;
  }
  .table-list td:last-child {
    padding-bottom: 1rem;
  }
  .table-list__subtitle {
    color: var(--second-text-color);
    display: block;
  }
  .table-list__link a {
    color: var(--yellow-color);
    display: block;
    margin-left: 1.5rem;
    margin-right: 0;
  }
  .table-list__link a:after {
    background-color: var(--yellow-color);
    content: "";
    display: block;
    height: 2px;
    transition: all 0.5s ease-out;
    width: 0;
  }
  .table-list__link a:hover:after {
    width: 100%;
  }
}
.table-result__notfound {
  font-size: 0.9rem;
  margin: 0 auto;
  padding: 6rem 0;
  text-align: center;
  width: 100%;
}
.table-result__notfound-icon {
  display: inline-block;
  height: 60px;
  margin-bottom: 0.3rem;
  width: 60px;
}
.table-result__notfound-color {
  stroke: var(--second-text-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.table-result__notfound .color-yellow {
  stroke: var(--yellow-color);
}
.table-result__notfound-text {
  color: var(--second-text-color);
  display: flex;
  justify-content: center;
}
.table-result__notfound-text a {
  color: var(--yellow-color);
  display: block;
  margin: 0 0.4rem;
}
.table-result__notfound-text a:hover {
  text-decoration: underline;
}
.table-components {
  margin: 3rem 0;
}
.table-components table {
  width: 100%;
}
.table-components table tbody,
.table-components table thead,
.table-components table tr {
  padding: 0;
  text-align: left;
}
.table-components table th {
  padding-bottom: 1rem;
}
.table-components .table-filter .filter-btn {
  padding-bottom: 10px;
  padding-top: 10px;
}
.table-components .table-list__cursor {
  cursor: pointer;
}
.table-components .no-cursor .table-sort__value {
  cursor: default !important;
}
body.dark
  .site-layout
  .form-search__result
  .form-search__result-icon
  svg
  .form-search__result-color,
body.dark
  .site-layout
  .form-search__result
  .form-search__result-icon
  svg
  .form-search__result-color2 {
  stroke: var(--second-text-color);
}
body.dark
  .site-layout
  .form-search__result
  .form-search__result-icon
  svg:hover
  .form-search__result-color,
body.dark
  .site-layout
  .form-search__result
  .form-search__result-icon
  svg:hover
  .form-search__result-color2 {
  stroke: var(--yellow-color);
}
.base-container {
  align-items: stretch;
  display: flex;
  justify-content: space-between;
}
.base-container__left {
  align-items: center;
  background-color: var(--blue-dark-color);
  background-image: url(/public/assets/system/bg-home.png);
  background-size: cover;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  width: 50%;
}
.base-container__left-content {
  color: var(--white-color);
  font-weight: 400;
  max-width: 600px;
  padding-left: 1rem;
  position: relative;
  width: 100%;
}
.base-container__left-logo {
  display: block;
  margin-bottom: 6rem;
  width: 200px;
}
.base-container__left-logo img {
  width: 100%;
}
.base-container__left-title h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.base-container__left-title h1 .typer-cursor,
.base-container__left-title h1 .typer-text {
  color: var(--yellow-color) !important;
}
.base-container__left-title p {
  font-size: 1.5rem;
}
.base-container__right {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  width: 50%;
}
.base-container__right-content {
  max-width: 470px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .base-container__left {
    display: none;
  }
  .base-container__right {
    padding: 2rem;
    width: 100%;
  }
  .base-container__right-content {
    max-width: 90%;
  }
}
.form-components__title {
  font-size: var(--h2-font__size);
  margin-bottom: 2rem;
  width: 100%;
}
.form-components__input-text .form-components__block {
  margin-bottom: 2rem;
}
.form-components__input-text .block-button {
  margin-top: 3rem;
}
.form-components__table {
  margin-top: 4rem;
}
.form-components__table table {
  margin: 2rem 0;
  width: 100%;
}
.form-components__table table tr {
  border-bottom: 1px solid var(--border-line-color);
}
.form-components__table table td:last-child {
  text-align: right;
}
.form-components__table-list span {
  display: inline-block;
  padding: 1rem 0;
  width: 16rem;
}
.form-components__item {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 1rem;
}
.form-components .block-status {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.form-components .block-status__icon {
  display: block;
  height: 34px;
  margin-right: 1rem;
  width: 34px;
}
.form-components .block-status__color {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-components .block-status__title {
  font-size: 0.9rem;
}
.form-components .block-status__title span {
  display: inline-block;
  margin-left: 0.6rem;
}
.form-components__block-item {
  position: relative;
}
.form-components__block-item:focus .form-components__block-icon__color1,
.form-components__block-item:hover .form-components__block-icon__color1 {
  stroke: var(--purple-color);
}
.form-components__block-item:focus .form-components__block-icon__color2,
.form-components__block-item:hover .form-components__block-icon__color2 {
  fill: var(--purple-color);
}
.form-components__block-icon {
  display: block;
  height: 22px;
  position: absolute;
  top: 15px;
  width: 22px;
}
.form-components__block-icon__color1 {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-components__block-icon__color2 {
  fill: var(--second-text-color);
}
.form-components__block-label {
  color: var(--second-text-color);
  display: block;
  font-size: 0.9rem;
}
.form-components__block-label a {
  color: var(--yellow-color);
  display: inline-block;
  margin: 0 0.5rem;
  text-decoration: none;
}
.form-components__block-link {
  color: var(--yellow-color);
  display: block;
  font-size: 0.9rem;
  text-align: right;
  width: 100%;
}
.form-components__block-link-first {
  text-align: left;
}
.form-error input {
  background-color: transparent !important;
  border-bottom: 2px solid var(--red-color) !important;
  color: var(--first-text-color);
}
.form-error .form-components__block-icon__color1 {
  stroke: var(--red-color);
}
.form-error .form-components__block-icon__color2 {
  fill: var(--red-color);
}
.form-error__text {
  color: var(--red-color);
  display: block;
  font-size: 0.9rem;
  margin: 8px 0 10px;
}
.form-success input {
  background-color: transparent !important;
  border-bottom: 2px solid var(--green-color) !important;
  color: var(--first-text-color);
}
.form-success .form-components__block-icon__color1 {
  stroke: var(--green-color);
}
.form-success .form-components__block-icon__color2 {
  fill: var(--green-color);
}
.form-success__text {
  color: var(--green-color);
  display: block;
  font-size: 0.9rem;
  margin: 8px 0 10px;
}
.block-title {
  font-size: 1.2rem;
  margin: 3rem 0 1rem;
}
.block-text p {
  font-size: 0.9rem;
}
.block-button button {
  background-color: var(--purple-color);
  border: 1px solid var(--purple-color);
  border-radius: 9999px;
  color: var(--white-color);
  display: block;
  outline: none;
  padding: 1rem 0;
  text-align: center;
  width: 100%;
}
.block-button button:focus,
.block-button button:hover {
  background-color: var(--purple-second-color);
}
.block-button button:active {
  background-color: var(--purple-color);
}
.block-input-text input {
  background-color: transparent !important;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  color: var(--first-text-color);
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  padding: 0.8rem 0.8rem 0.8rem 2rem;
  width: 100%;
}
.block-input-text input:focus,
.block-input-text input:hover {
  background-color: transparent !important;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  outline: none;
}
.block-input-text input:focus {
  box-shadow: none;
  color: var(--first-text-color);
}
.block-input-text input:active,
.block-input-text input:focus-visible,
.block-input-text input:target,
.block-input-text input:visited {
  background-color: transparent !important;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  color: var(--first-text-color);
  outline: none;
}
.block-checkbox__group {
  display: flex;
  justify-content: space-between;
}
.block-checkbox {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.block-checkbox input {
  background-color: transparent;
  border: 1px solid var(--border-line-color);
  display: block;
  height: 20px;
  margin-right: 10px;
  width: 20px;
}
.block-checkbox input:focus {
  box-shadow: none;
  outline: none;
}
.block-checkbox input:active {
  outline: none;
}
.input-radio {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.input-radio input {
  display: block;
  height: 20px;
  margin-right: 10px;
  width: 20px;
}
.block-list {
  margin-top: 3rem;
}
.block-list__item {
  border-bottom: 1px solid var(--border-line-color);
  border-top: 1px solid var(--border-line-color);
  padding: 2rem 0;
}
.block-list__item-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.block-list__item ul {
  list-style-position: inside;
  list-style-type: circle;
}
.block-list__item-info {
  margin: 1rem 0;
}
.block-list__item-info p {
  color: var(--second-text-color);
  margin-bottom: 0.5rem;
}
.block-list__item-info span {
  font-weight: 700;
}
.block-qr {
  background-color: #fff;
  margin: 1rem 0;
  padding: 20px;
}
.block-keys {
  background-color: var(--rows-color);
}
.block-keys ul {
  font-size: 0.9rem;
  padding: 1rem;
}
.block-keys ul li {
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 670px) {
  .form-components__table table {
    margin: 2rem 0;
    width: 100%;
  }
  .form-components__table table td {
    display: block;
  }
  .form-components__table table td:last-child {
    padding: 1rem 0;
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .form-components__input-text .flex {
    display: block;
  }
  .form-components__input-text .flex a {
    display: block;
    padding: 0.2rem 0;
    text-align: left;
  }
}
.btn {
  background-color: var(--purple-color);
  border: 1px solid var(--purple-color);
  border-radius: 9999px;
  color: var(--white-color);
  display: inline-block;
  font-size: 0.9rem;
  outline: none;
  padding: 0.7rem 1.5rem;
  position: relative;
  text-decoration: none;
}
.btn:focus,
.btn:hover {
  background-color: var(--purple-second-color);
}
.btn:active,
.btn:focus {
  outline: none;
}
.btn:active {
  background-color: var(--purple-color);
}
.btn-text {
  font-size: 0.9rem;
}
.bth-sm {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
}
.bth-lg {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
}
.btn-block {
  display: block;
  margin: 0.5rem 0;
  width: 100%;
}
.btn-white {
  background-color: var(--white-color);
  border: 1px solid var(--border-line-color);
  color: var(--second-text-color);
}
.btn-white:focus,
.btn-white:hover {
  background-color: var(--rows-color);
}
.btn-white:focus {
  outline: none;
}
.btn-white:active {
  background-color: var(--body-color);
  outline: none;
}
.btn-red {
  background-color: var(--red-color);
  border: 1px solid var(--red-color);
  color: var(--white-color);
}
.btn-red:focus,
.btn-red:hover {
  background-color: var(--red-second-color);
}
.btn-red:focus {
  outline: none;
}
.btn-red:active {
  background-color: var(--red-color);
  outline: none;
}
.btn-loading {
  padding: 0.7rem 2rem;
}
.btn-loading:after {
  animation: btn-loading-spinner 1s ease infinite;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top: 2px solid var(--white-color);
  bottom: 0;
  content: "";
  height: 16px;
  margin: auto 0;
  position: absolute;
  right: 0.5rem;
  top: 0;
  width: 16px;
}
.btn-warning {
  border: 1px solid var(--yellow-color);
  border-radius: 9999px;
  color: var(--yellow-color);
  display: block;
  font-size: 0.8rem;
  outline: none;
  padding: 0.4rem 0;
  transition: all 0.5s ease-out;
  width: 100px;
}
.btn-warning:hover {
  background-color: var(--yellow-color);
  color: var(--white-color);
}
@keyframes btn-loading-spinner {
  0% {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
.input-field {
  margin-bottom: 2rem;
}
.input-field label {
  color: var(--second-text-color);
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.input-field select {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  border-radius: 0 !important;
  color: var(--first-text-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  outline: none;
  padding: 0.5rem 0;
  transition: all 0.5s ease-out;
  width: 100%;
}
.input-field select:focus,
.input-field select:hover {
  border: none;
  border-bottom: 2px solid var(--purple-color);
  outline: none;
}
.input-field select:focus {
  box-shadow: none;
}
.input-field select:active {
  border: none;
  border-bottom: 2px solid var(--purple-color);
  outline: none;
}
.input-field input {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  color: var(--first-text-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  outline: none;
  padding: 0.5rem 0;
  transition: all 0.5s ease-out;
  width: 100%;
}
.input-field input:focus,
.input-field input:hover {
  border: none;
  border-bottom: 2px solid var(--purple-color);
  outline: none;
}
.input-field input:focus {
  box-shadow: none;
}
.input-field input:active {
  border: none;
  border-bottom: 2px solid var(--purple-color);
  outline: none;
}
.invalid .helper-text,
.valid .helper-text {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.form-group {
  margin-bottom: 2rem;
}
.form-group_field {
  color: var(--second-text-color);
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  position: relative;
}
.form-group_field:focus .form-group_color,
.form-group_field:hover .form-group_color {
  stroke: var(--purple-color);
}
.form-group label {
  color: var(--second-text-color);
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.form-group_icon {
  display: block;
  height: 22px;
  position: absolute;
  top: 12px;
  width: 22px;
}
.form-group_color {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-group input {
  background-color: transparent !important;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  color: var(--second-text-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  outline: none;
  padding: 0.6rem 0 0.6rem 2rem;
  transition: all 0.5s ease-out;
  width: 100%;
}
.form-group input:focus,
.form-group input:hover {
  border: none;
  border-bottom: 2px solid var(--purple-color);
  outline: none;
}
.form-group input:focus {
  box-shadow: none;
}
.form-group input:active {
  border: none;
  border-bottom: 2px solid var(--purple-color);
  outline: none;
}
.invalid .helper-text,
.valid .helper-text {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.valid input {
  border-bottom: 2px solid var(--green-color);
}
.valid .helper-text {
  color: var(--green-color);
}
.valid .form-group_color,
.valid:focus .form-group_color,
.valid:hover .form-group_color {
  stroke: var(--green-color);
}
.valid:focus input,
.valid:hover input {
  border-bottom: 2px solid var(--green-color);
}
.invalid input {
  border-bottom: 2px solid var(--red-color);
}
.invalid .helper-text {
  color: var(--red-color);
}
.invalid .form-group_color,
.invalid:focus .form-group_color,
.invalid:hover .form-group_color {
  stroke: var(--red-color);
}
.invalid:focus input,
.invalid:hover input {
  border-bottom: 2px solid var(--red-color);
}
.form-search {
  margin-top: 2rem;
}
.form-search__container {
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 3rem;
}
.form-search__block {
  align-items: stretch;
  padding: 0 1rem 0 0;
  width: 30%;
}
.form-search__block-title {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.form-search__block button {
  margin-top: 1.4rem;
}
.form-search__info {
  align-items: flex-start;
  background-color: var(--rows-color);
  border-radius: 4px;
  display: flex;
  justify-content: flex-start;
  padding: 2rem;
  width: 60%;
}
.form-search__info h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.form-search__info p {
  font-size: 0.9rem;
  line-height: 150%;
}
.form-search__info-icon {
  height: 50px;
  margin-right: 2rem;
  width: 50px;
}
.form-search__result-block {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.form-search__result-block ul {
  list-style-position: inside;
  list-style-type: circle;
}
.form-search__result .result-block {
  display: flex;
  justify-content: space-between;
}
.form-search__result-title {
  color: var(--second-text-color);
}
.form-search__result-link {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.form-search__result-icon {
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin-left: 1rem;
  width: 20px;
}
.form-search__result-color {
  stroke: var(--yellow-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-search__result-color2 {
  fill: var(--yellow-color);
}
.form-search__result-item {
  padding-right: 1rem;
  width: 50%;
}
.form-search__result-item.w-full {
  width: 100% !important;
}
.form-search__result-item span {
  color: var(--second-text-color);
}
@media screen and (max-width: 1000px) {
  .form-search__info {
    width: 100%;
  }
}
@media screen and (max-width: 670px) {
  .form-search__info {
    display: block;
  }
  .form-search__info-icon {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
.phone-input-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
}
.phone-input {
  align-items: center;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  display: flex;
  margin-left: 2rem;
  padding: 0;
  transition: border-color 0.2s;
  width: 100%;
}
.phone-input:hover {
  border-bottom-color: var(--purple-color);
}
.phone-input.form-error {
  border-bottom-color: #ef4444;
}
.phone-input__country-selector {
  align-items: center;
  border-right: 1px solid var(--border-line-color);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  gap: 6px;
  height: 100%;
  margin-right: 8px;
  min-width: 90px;
  padding: 0 8px 0 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.phone-input__flag {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
}
.phone-input__code {
  color: var(--first-text-color);
  font-size: 0.9rem;
  font-weight: 500;
}
.phone-input__arrow {
  color: var(--second-text-color);
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s;
}
.phone-input__country-selector:hover .phone-input__arrow {
  transform: rotate(180deg);
}
.phone-input input {
  background: transparent;
  border: none;
  color: var(--first-text-color);
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 0;
  outline: none;
  padding: 0.8rem 0.8rem 0.8rem 0;
  width: 100%;
}
.phone-input input::-moz-placeholder {
  color: var(--second-text-color);
}
.phone-input input::placeholder {
  color: var(--second-text-color);
}
.phone-input input:focus,
.phone-input input:hover {
  background-color: transparent !important;
  border: none;
  outline: none;
}
.phone-input input:focus {
  box-shadow: none;
  color: var(--first-text-color);
}
.phone-input input:active,
.phone-input input:focus-visible,
.phone-input input:target,
.phone-input input:visited {
  background-color: transparent !important;
  border: none;
  outline: none;
}
.phone-input__country-list {
  background: var(--rows-color);
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  left: 2rem;
  margin-top: 4px;
  max-height: 300px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1000;
}
.phone-input__search {
  border-bottom: 1px solid var(--border-line-color);
  padding: 8px;
}
.phone-input__search-input {
  background: var(--rows-color);
  border: 1px solid var(--border-line-color);
  border-radius: 6px;
  color: var(--first-text-color);
  font-size: 14px;
  outline: none;
  padding: 8px 12px;
  width: 100%;
}
.phone-input__country-items {
  max-height: 250px;
  overflow-y: auto;
}
.phone-input__country-item {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 12px;
  transition: background-color 0.2s;
}
.phone-input__country-item:hover {
  background: var(--sixth-color);
}
.phone-input__country-name {
  color: var(--first-text-color);
  flex: 1;
  font-size: 14px;
}
.phone-input__country-code {
  color: var(--second-text-color);
  font-size: 14px;
  font-weight: 500;
}
.phone-input-wrapper .form-error__text {
  color: #ef4444;
  display: block;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding-left: 2rem;
}
body.dark .phone-input {
  border-bottom-color: var(--border-line-color);
}
body.dark .phone-input:hover {
  border-bottom-color: var(--purple-color);
}
body.dark .phone-input__country-list,
body.dark .phone-input__country-selector {
  border-color: var(--border-line-color);
}
body.dark .phone-input__country-list {
  background: var(--rows-color);
}
body.dark .phone-input__country-item:hover {
  background: var(--sixth-color);
}
body.dark .phone-input__search-input {
  background: var(--rows-color);
  border-color: var(--border-line-color);
  color: var(--first-text-color);
}
@media (max-width: 768px) {
  .phone-input {
    margin-left: 2rem;
  }
  .phone-input__country-list {
    left: 2rem;
    right: 0;
  }
  .phone-input-wrapper .form-error__text {
    padding-left: 2rem;
  }
}
.form-container {
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  margin: 6rem auto;
  max-width: 900px;
  padding: 2rem;
  width: 100%;
}
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
  -webkit-text-fill-color: var(--first-text-color);
  -webkit-box-shadow: 0 0 0 1000px var(--white-input) inset;
}
input:-internal-autofill-selected {
  -webkit-appearance: menulist-button;
  -moz-appearance: menulist-button;
  appearance: menulist-button;
  background-color: var(--white-input) !important;
  background-image: none !important;
  color: var(--first-text-color) !important;
}
.pagenav {
  margin-top: 3rem;
}
.pagenav a {
  background-color: transparent;
  border-color: var(--border-line-color);
  border-radius: 2px;
  outline: none;
}
.pagenav a:hover {
  background-color: var(--border-line-color);
}
.pagenav a:focus {
  border-color: var(--yellow-color);
  color: var(--yellow-color);
}
.pagenav div {
  background-color: transparent;
  border-color: var(--border-line-color);
  outline: none;
}
.pagenav .bg-white {
  background-color: var(--border-line-color);
}
body.dark .site-layout .vue-portal-target {
  word-break: break-word;
}
body.dark .site-layout .vue-portal-target .transition-all .absolute {
  background-color: var(--blue-dark-second-color);
}
body.dark .site-layout .vue-portal-target .modal-container {
  background-color: var(--blue-dark-thir-color);
}
body.dark .site-layout .vue-portal-target .modal-container .text-lg {
  color: var(--yellow-color);
}
body.dark .site-layout .vue-portal-target .modal-container div.bg-gray-100 {
  background-color: var(--purple-third-color);
}
body.dark
  .site-layout
  .vue-portal-target
  .modal-container
  div.bg-gray-100
  .modal-secondary-button {
  background: var(--purple-second-color);
  border: 0;
  color: var(--white-color);
  text-transform: capitalize;
}
body.dark .site-layout .modal-change-password {
  --tw-ring-opacity: 0;
  background: var(--blue-dark-thir-color);
  border-color: var(--third-text-color);
}
body.dark .site-layout .modal-change-password-confirm {
  --tw-border-opacity: 0;
  background: var(--fourth-text-color);
}
.vue-portal-target {
  word-break: break-word;
}
.user-status__item {
  padding: 2rem 0;
  text-align: center;
}
.user-status__title {
  color: var(--first-text-color);
  font-size: var(--h2-font__size);
  margin-bottom: 1rem;
}
.user-status p {
  font-size: var(--default-font__size);
}
.header-logo {
  margin-right: 3.5rem;
}
.header-logo a {
  font-size: var(--big-font__size);
  font-weight: var(--extra-font);
}
@media screen and (max-width: 900px) {
  .header-logo {
    display: inline-block;
    margin-right: 0;
  }
}
.header-btn {
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 6;
}
.header-btn:hover span {
  background-color: var(--yellow-color);
}
.header-btn span {
  background-color: var(--menu-btn-color);
  border-radius: 5px;
  display: block;
  height: 2px;
  margin: 0.5rem 0;
  width: 25px;
}
@media screen and (max-width: 1000px) {
  .header-btn {
    display: block;
  }
}
.header-nav__list {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.header-nav__list a {
  display: block;
  margin-right: 1.5rem;
  outline: none;
  padding: 1.8rem 0;
  text-decoration: none;
  transition: all 0.5s ease-out;
}
.header-nav__list a.active,
.header-nav__list a:hover {
  color: var(--yellow-color);
}
.header-nav__active {
  display: block;
}
@media screen and (max-width: 1000px) {
  .header-nav {
    background-color: var(--blue-dark-second-color);
    left: 0;
    margin: 2rem 0;
    max-width: 100%;
    outline: none;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: 2.4rem;
    transform: translateX(100%);
    transition: transform 0.5s ease-out;
    width: 100%;
  }
  .header-nav.active {
    transform: translateX(0);
  }
  .header-nav__list {
    display: block;
  }
  .header-nav__list a {
    border-bottom: 1px solid #1d2234;
    padding: 1rem 0;
  }
  .header-nav__list a:last-child {
    border-bottom: none;
  }
}
.header-button {
  align-items: center;
  display: flex;
}
.header-button__signin {
  margin: 0 1.5rem;
  transition: all 0.5s ease-out;
}
.header-button__signin:hover {
  color: var(--yellow-color);
}
.header-button__signup {
  background-color: var(--purple-color);
  border: 1px solid var(--purple-color);
  border-radius: 4px;
  padding: 0.6rem 1.5rem;
  text-align: center;
  transition: all 0.5s ease-out;
  width: 160px;
}
.header-button__signup:focus,
.header-button__signup:hover {
  background-color: var(--purple-second-color);
}
.header-button__signup:active {
  background-color: var(--purple-color);
}
.header-dropdown {
  margin-left: 1.5rem;
}
.header-dropdown__button {
  cursor: pointer;
  padding: 1.65rem 0 1.65rem 2.65rem;
}
.header-dropdown__button:hover .header-dropdown__icon-color {
  stroke: var(--yellow-color);
}
.header-dropdown .logout-icon {
  left: 2px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .header-dropdown__button {
    cursor: pointer;
    padding: 1.6rem 0 1.12rem 1rem;
  }
  .header-dropdown__list {
    top: 3.9rem;
  }
}
@media screen and (max-width: 500px) {
  .header-dropdown__list {
    right: -3.6rem !important;
  }
}
.language-dropdown {
  margin-left: 0.5rem;
}
.language-dropdown .header-dropdown__button {
  cursor: pointer;
  padding: 1.65rem 0 1.65rem 0.5rem !important;
}
.language-dropdown .header-dropdown__button:hover .header-dropdown__icon-color {
  stroke: var(--yellow-color);
}
.language-dropdown .header-dropdown__list-info {
  padding: 1rem 1rem 0.5rem;
}
.language-dropdown .header-dropdown__list a {
  padding: 1rem;
}
.language-dropdown .item-language__active {
  color: var(--yellow-color);
}
.language-dropdown .item-language__active .header-dropdown__list-color {
  stroke: var(--yellow-color);
}
.header-dropdown__row {
  position: relative;
}
.header-dropdown__icon {
  display: block;
  height: 26px;
  width: 26px;
}
.header-dropdown__icon-color {
  stroke: var(--white-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.5s ease-out;
}
.header-dropdown .active {
  display: block !important;
}
.header-dropdown__list {
  background-color: var(--blue-dark-second-color);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  display: none;
  min-width: 280px;
  padding: 0.5rem 0;
  position: absolute;
  right: -1.6rem;
  top: 4.9rem;
  z-index: 8;
}
.header-dropdown__list-info {
  padding: 0.6rem 0.2rem 0.6rem 1rem;
}
.header-dropdown__list-info p {
  color: var(--white-color);
}
.header-dropdown__list-info .email {
  color: var(--yellow-color);
  word-break: break-word;
}
.header-dropdown__list a,
.header-dropdown__list button {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  padding: 0.6rem 0.5rem;
  transition: all 0.5s ease-out;
  width: 100%;
}
.header-dropdown__list a:hover,
.header-dropdown__list button:hover {
  background-color: var(--dark-body-color);
  color: var(--yellow-color);
}
.header-dropdown__list a:hover .header-dropdown__list-color,
.header-dropdown__list button:hover .header-dropdown__list-color {
  stroke: var(--yellow-color);
}
.header-dropdown__list-icon {
  display: block;
  height: 28px;
  margin-right: 10px;
  width: 28px;
}
.header-dropdown__list-color {
  stroke: var(--white-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 1000px) {
  .header-dropdown__list {
    top: 4.9rem;
  }
  .language-dropdown .header-dropdown__button {
    cursor: pointer;
    padding: 1.12rem 0 1.12rem 1rem;
  }
  .language-dropdown
    .header-dropdown__button:hover
    .header-dropdown__icon-color {
    stroke: var(--yellow-color);
  }
}
.header-mode {
  align-items: center;
  display: flex;
  justify-content: center;
}
.mode {
  background-color: #151926;
  border-radius: 30px;
  flex-shrink: 0;
  height: 32px;
  margin-left: 16px;
  outline: 0;
  position: relative;
  width: 58px;
}
.mode:focus {
  outline: none !important;
}
.mode:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23fff' stroke-width='2.4' fill='%23fff' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Cpath d='M12 1v2m0 18v2M4.22 4.22l1.42 1.42m12.72 12.72 1.42 1.42M1 12h2m18 0h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 50%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
  width: 32px;
}
.mode:after,
.mode:before {
  content: "";
  position: absolute;
  pointer-events: none;
}
.mode:after {
  background-color: var(--blue-dark-fourth-color);
  border-radius: 50%;
  height: 20px;
  right: 6px;
  top: 6px;
  transition: transform 0.3s;
  width: 20px;
}
body.dark .mode:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23fff' stroke-width='2' fill='%23fff' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1' viewBox='0 0 24 24'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E");
  transform: translateX(26px);
}
body.dark .mode:after {
  transform: translateX(-24px);
}
.header {
  background-color: var(--blue-dark-color);
  color: var(--white-color);
  padding: 0.5rem 0;
}
.header-home {
  background-color: transparent;
  margin-bottom: -6rem;
}
.header__row {
  font-size: var(--default-font__size);
  justify-content: space-between;
  margin: auto;
  max-width: 2790px;
  padding: 0 1rem;
  position: relative;
  width: 100%;
}
.header__row,
.header__row-left {
  align-items: center;
  display: flex;
}
.header__row-left {
  justify-content: flex-start;
}
.header__row-right {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .header__row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
  }
  .header__row-right {
    padding: 0;
  }
}
.head {
  background-color: var(--blue-dark-thir-color);
  background-image: url(/public/assets/system/bg-home.png);
  background-size: cover;
  padding: 1px 0;
}
.head-row {
  margin: 0 auto;
  max-width: 1280px;
  padding: 1rem 0;
  width: 100%;
}
.head-title {
  color: var(--white-color);
  text-align: center;
}
.head-title .typer-cursor,
.head-title .typer-text {
  color: var(--yellow-color) !important;
}
.head-title h1 {
  font-size: 4rem;
  font-weight: 400;
  margin: 16rem auto 0;
  width: 100%;
}
.head-title p {
  font-size: 1rem;
  margin-top: 1rem;
}
.head-title a {
  border: 2px solid var(--white-color);
  border-radius: 9999px;
  display: block;
  font-size: 1rem;
  margin: 4rem auto 2rem;
  padding: 1rem 0;
  transition: all 0.5s ease-out;
  width: 200px;
}
.head-title a:hover {
  background-color: var(--white-color);
  color: var(--blue-dark-color);
}
.head-carousel {
  margin: 8rem 0 0;
  padding: 0 1rem;
  position: relative;
}
.head-carousel__inner {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  padding: 3rem 0 2.8rem;
}
.head-carousel__item {
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 400;
  padding: 10px;
  width: 100%;
}
.head-carousel__item img {
  border-radius: 10px;
}
.head-carousel__item img:hover {
  opacity: 0.6;
}
.head-carousel__coin {
  display: flex;
  justify-content: space-between;
}
.head-carousel__value {
  font-size: 2.5rem;
  margin: 1rem 0 0;
}
.head-carousel__price {
  opacity: 50%;
}
@media screen and (max-width: 1000px) {
  .head-row {
    width: 96%;
  }
  .head-title h1 {
    font-size: var(--h1-font__size);
  }
  .head-title p {
    margin: 1rem auto 0;
    width: 80%;
  }
  .head-title a,
  .head-title p {
    font-size: var(--default-font__size);
  }
  .head-title a {
    margin: 2rem auto;
  }
  .head-carousel {
    margin: 6rem 0 0;
    padding: 0 1rem;
    position: relative;
  }
  .head-carousel__inner {
    padding: 2rem 0 1.8rem;
  }
  .head-carousel__item {
    font-size: 0.9rem;
    width: 100%;
  }
  .head-carousel__value {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 670px) {
  .head-row {
    width: 96%;
  }
  .head-title {
    margin: 1rem 0 6rem;
  }
  .head-title h1 {
    font-size: var(--h2-font__size);
    margin: 12rem auto 0;
  }
  .head-title a,
  .head-title p {
    font-size: var(--default-font__size);
  }
  .head-title a {
    padding: 0.6rem 0;
    width: 150px;
  }
  .head-carousel {
    margin: 6rem 0 0;
    padding: 0 1rem;
    position: relative;
  }
  .head-carousel__inner {
    padding: 2rem 0 0;
  }
  .head-carousel__item {
    font-size: 0.9rem;
    width: 100%;
  }
  .head-carousel__value {
    font-size: 1.5rem;
  }
}
.table-home__row {
  margin: 0 auto;
  max-width: 1280px;
  padding: 1rem;
  width: 100%;
}
.table-home__title {
  margin: 10rem 0 6rem;
}
.table-home__title h2 {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
}
.table-home__link {
  margin-top: 3rem;
  text-align: center;
}
.table-home__link a {
  color: var(--second-text-color);
  display: inline-block;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.5s ease-out;
}
.table-home__link a:after {
  background-color: var(--yellow-color);
  content: "";
  display: block;
  height: 2px;
  transition: all 0.5s ease-out;
  width: 0;
}
.table-home__link a:hover {
  color: var(--yellow-color);
}
.table-home__link a:hover:after {
  width: 100%;
}
.table-home table tbody,
.table-home table thead,
.table-home table tr {
  padding: 0;
  text-align: left;
}
.table-home table th {
  padding-bottom: 1rem;
}
.table-home table td:last-child .list-body__value {
  justify-content: flex-end;
  padding-right: 0.6rem;
}
.list-table {
  width: 100%;
}
.list-head__value {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  padding: 1rem 0;
}
.list-head__title {
  color: var(--second-text-color);
  font-size: 0.8rem;
  font-weight: 500;
}
.list-body tr {
  border-bottom: 1px solid var(--border-line-color);
}
.list-body tr:hover {
  background-color: var(--rows-color);
}
.list-body__subtitle {
  display: none;
}
.list-body__value {
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  justify-content: flex-start;
  padding: 0.9rem 0;
}
.list-body__img {
  align-items: center;
  display: flex;
  height: 40px;
  margin: 0 0.5rem 0 0.6rem;
  width: 40px;
}
.list-body__name-big {
  display: block;
  font-size: 0.9rem;
  width: 100%;
}
.list-body__name-small {
  color: var(--second-text-color);
  display: block;
  font-size: 0.8rem;
}
.list-body__button {
  border: 1px solid var(--yellow-color);
  border-radius: 4px;
  color: var(--yellow-color);
  display: block;
  font-size: 0.8rem;
  outline: none;
  padding: 0.4rem 0;
  transition: all 0.5s ease-out;
  width: 150px;
}
.list-body__button:hover {
  background-color: var(--yellow-color);
  color: var(--white-color);
}
.home-example-image {
  max-width: 700px;
}
@media screen and (max-width: 1000px) {
  .home-example-image {
    max-width: 70%;
  }
  .table-home__title {
    margin: 8rem 0 3rem;
  }
  .list-head {
    display: none;
  }
  .list-body tr:hover {
    background-color: none !important;
  }
  .list-body td {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .list-body td:first-child {
    padding-top: 3rem;
  }
  .list-body td:last-child {
    padding-bottom: 1rem;
  }
  .list-body td:last-child .list-body__value {
    padding-right: 0 !important;
  }
  .list-body__subtitle {
    display: block;
  }
}
@media screen and (max-width: 670px) {
  .home-example-image {
    max-width: 80%;
  }
  .table-home__title {
    margin: 2rem 0 3rem;
  }
  .table-home__title h2 {
    font-size: 2rem;
  }
}
.screen {
  background-color: var(--rows-color);
  margin: 10rem 0 2rem;
  padding: 2rem 0;
}
.screen-row {
  margin: 0 auto;
  max-width: 2790px;
  width: 100%;
}
.screen-title {
  font-weight: 400;
  margin: 5rem 0 2rem;
  text-align: center;
}
.screen-title h2 {
  font-size: 3rem;
}
.screen-title p {
  font-size: 1.5rem;
  margin: 1.5rem auto 0;
  max-width: 700px;
  width: 100%;
}
.screen-img {
  margin: 2rem auto;
  max-width: 1000px;
  padding: 1rem;
  width: 100%;
}
.screen-img img {
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .screen-title {
    margin: 6rem 0 3rem;
  }
  .screen-title p {
    font-size: 0.9rem;
    margin: 1rem auto 0;
    width: 90%;
  }
}
@media screen and (max-width: 670px) {
  .screen-title {
    margin: 4rem 0 3rem;
  }
  .screen-title h2 {
    font-size: 2rem;
  }
}
.step-components__container {
  align-items: stretch;
  border: 1px solid var(--border-line-color);
  border-radius: 4px;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 6rem;
}
.step-components__block {
  padding: 3rem 2rem;
  position: relative;
  width: 30%;
}
.step-components__block:after {
  border-bottom: 2px solid var(--yellow-color);
  content: "";
  left: 3.5rem;
  margin: auto;
  position: absolute;
  top: 4.5rem;
  width: 100%;
  z-index: 2;
}
.step-components__block:last-child:after {
  content: none;
}
.step-components__block-number {
  align-items: center;
  background-color: var(--yellow-color);
  border: 4px solid var(--rows-color);
  border-radius: 50%;
  color: var(--white-color);
  display: flex;
  height: 50px;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  width: 50px;
  z-index: 4;
}
.step-components__block-title {
  font-size: 1.1rem;
  margin: 0.5rem 0 0.3rem;
}
.step-components__block-text {
  color: var(--second-text-color);
  font-size: 0.9rem;
}
@media screen and (max-width: 900px) {
  .step-components__container {
    align-items: stretch;
    border: 1px solid var(--border-line-color);
    border-radius: 4px;
    display: block;
    justify-content: flex-start;
    margin-bottom: 6rem;
  }
  .step-components__block {
    border-bottom: 1px solid var(--border-line-color);
    padding: 3rem 2rem;
    width: 100%;
  }
  .step-components__block:after {
    border-bottom: 2px solid var(--yellow-color);
    content: "";
    display: none;
    left: 3.5rem;
    margin: auto;
    position: absolute;
    top: 4.5rem;
    width: 100%;
    z-index: 2;
  }
  .step-components__block:last-child:after {
    content: none;
  }
  .step-components__block-number {
    align-items: center;
    background-color: var(--yellow-color);
    border: 4px solid var(--rows-color);
    border-radius: 50%;
    color: var(--white-color);
    display: flex;
    height: 50px;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    width: 50px;
    z-index: 4;
  }
  .step-components__block-title {
    font-size: 1.1rem;
    margin: 0.5rem 0 0.3rem;
  }
  .step-components__block-text {
    color: var(--second-text-color);
    font-size: 0.9rem;
  }
}
.features {
  margin: 2rem 0 4rem;
  padding: 1px 0;
}
.features-row {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}
.features-title {
  margin: 8rem 0 6rem;
}
.features-title h2 {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
}
.features-block {
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem;
}
.features-block,
.features-item {
  align-items: flex-start;
  display: flex;
}
.features-item {
  border: 1px solid var(--border-line-color);
  border-radius: 4px;
  justify-content: flex-start;
  margin-bottom: 2rem;
  padding: 2rem;
  width: 48%;
}
.features-item__icon {
  background-color: var(--rows-color);
  border-radius: 50%;
  display: block;
  height: 60px;
  margin-right: 1.5rem;
  padding: 1rem;
  width: 60px;
}
.features-item__icon-color {
  fill: var(--purple-color);
}
.features-item__icon svg {
  height: 30px;
  width: 30px;
}
.features-item__title h4 {
  font-size: 1.5rem;
  font-weight: 400;
}
.features-item__title p {
  font-size: 0.9rem;
  margin: 1rem 0;
}
body.dark .site-layout .features-item__icon-color {
  fill: var(--yellow-color);
}
@media screen and (max-width: 1000px) {
  .features-title {
    margin: 8rem 0 3rem;
  }
  .features-block {
    display: block;
  }
  .features-item {
    width: 100%;
  }
}
@media screen and (max-width: 670px) {
  .features {
    margin: 2rem 0;
  }
  .features-title {
    margin: 8rem 0 4rem;
  }
  .features-title h2 {
    font-size: 2rem;
  }
  .features-item {
    display: block;
    text-align: center;
  }
  .features-item__icon {
    margin: 1rem auto;
  }
  .features-item__title h4 {
    font-size: 1.2rem;
  }
}
.section-footer {
  background-color: var(--blue-dark-thir-color);
  background-image: url(/public/assets/system/bg-home.png);
  background-size: cover;
  color: var(--white-color);
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 6rem;
  padding: 2rem 0;
}
.section-footer__row {
  margin: 0 auto;
  max-width: 1280px;
  padding: 1rem;
  width: 100%;
}
.section-footer .banner {
  margin-top: 6rem;
}
.section-footer .banner h2 {
  font-size: 2rem;
  font-weight: 400;
  max-width: 600px;
  text-align: left;
}
.section-footer .banner-text {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
}
.section-footer .banner-text p {
  font-size: 0.9rem;
  max-width: 500px;
}
.section-footer .banner-text a {
  border: 2px solid var(--white-color);
  border-radius: 9999px;
  display: block;
  font-size: 1rem;
  padding: 1rem 0;
  text-align: center;
  transition: all 0.5s ease-out;
  width: 200px;
}
.section-footer .banner-text a:hover {
  background-color: var(--white-color);
  color: var(--blue-dark-color);
}
.section-footer .footer {
  align-items: flex-start;
  border-bottom: 1px solid #27283c;
  border-top: 1px solid #27283c;
  display: flex;
  justify-content: space-between;
  margin: 4rem 0 2rem;
  padding: 4rem 0;
}
.section-footer .footer-left {
  text-transform: uppercase;
}
.section-footer .footer-right {
  width: 80%;
}
.section-footer .footer-right__navigation {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.section-footer .footer-right__item {
  width: 30%;
}
.section-footer .footer-right__item h4 {
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}
.section-footer .footer-right__item li {
  margin-bottom: 0.4rem;
}
.section-footer .footer-right__item a {
  display: block;
  outline: none;
  text-decoration: none;
  transition: all 0.5s ease-out;
}
.section-footer .footer-right__item a:hover {
  color: var(--yellow-color);
}
.section-footer .footer .social {
  margin: 3rem 0 2rem;
}
.section-footer .footer .social h4 {
  margin-bottom: 1.8rem;
}
.section-footer .footer .social nav {
  display: flex;
  justify-content: flex-start;
}
.section-footer .footer .social a {
  border: 1px solid var(--white-color);
  border-radius: 50%;
  display: block;
  margin-bottom: 10px;
  margin-right: 1rem;
  opacity: 0.5;
  outline: none;
  padding: 0.7rem;
  text-decoration: none;
  transition: all 0.5s ease-out;
}
.section-footer .footer .social a:hover {
  opacity: 1;
}
.section-footer .footer .social-icon {
  display: block;
  height: 20px;
  position: relative;
  width: 20px;
}
.section-footer .footer .social-icon__color {
  fill: var(--white-color);
}
.section-footer .copyright {
  align-items: center;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
}
.section-footer .copyright-left p {
  opacity: 50%;
}
.section-footer .copyright-right span {
  display: inline-block;
  margin-left: 1.5rem;
  opacity: 50%;
}
.section-footer .copyright-right .online-status-icon {
  font-size: 0.7rem;
  padding-bottom: 3px;
}
@media screen and (max-width: 1000px) {
  .section-footer .footer .social nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .section-footer .footer .social a {
    word-break: break-word;
  }
}
@media screen and (max-width: 770px) {
  .module-orderbook__title-price.mob-hide,
  .orderbook-mode-change {
    display: none !important;
  }
  .section-footer .banner {
    margin-top: 2rem;
  }
  .section-footer .banner h2 {
    font-size: 1.5rem;
  }
  .section-footer .banner-text {
    display: block;
    margin: 1rem 0;
  }
  .section-footer .banner-text p {
    font-size: 0.9rem;
    width: 100%;
  }
  .section-footer .banner-text a {
    font-size: 0.9rem;
    margin-top: 2rem;
    padding: 1rem 0;
    width: 180px;
  }
  .section-footer .footer {
    display: block;
  }
  .section-footer .footer-left {
    margin-bottom: 2rem;
  }
  .section-footer .footer-right {
    width: 100%;
  }
  .section-footer .footer-right__navigation {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
  .section-footer .footer-right__item {
    width: 30%;
  }
  .section-footer .footer-right__item h4 {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
  }
  .section-footer .footer-right__item li {
    margin-bottom: 0.4rem;
  }
  .section-footer .footer-right__item a {
    display: block;
    outline: none;
    text-decoration: none;
    transition: all 0.5s ease-out;
  }
  .section-footer .footer-right__item a:hover {
    color: var(--yellow-color);
  }
}
@media screen and (max-width: 550px) {
  .section-footer .footer {
    margin: 4rem 0 2rem;
    padding: 2rem 0;
  }
  .section-footer .footer-right {
    width: 100%;
  }
  .section-footer .footer-right__navigation {
    display: block;
  }
  .section-footer .footer-right__item {
    margin-bottom: 2rem;
    width: 30%;
  }
  .section-footer .footer-right__item h4 {
    margin-bottom: 1rem;
  }
  .section-footer .copyright {
    align-items: left;
    display: block;
    font-weight: 400;
    justify-content: space-between;
  }
  .section-footer .copyright-left {
    margin-bottom: 1rem;
  }
  .section-footer .copyright-right span {
    display: inline-block;
    margin: 0 1.5rem 1rem 0;
    opacity: 50%;
  }
  .section-footer .copyright-right .online-status-icon {
    font-size: 0.7rem;
    padding-bottom: 3px;
  }
}
.form-search__container,
.table-components {
  word-break: break-word;
}
.trade {
  margin: 3rem 0;
}
.trade-head {
  display: flex;
  justify-content: space-between;
}
.trade-head__row-left {
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  width: 72%;
}
.trade-head__row-right {
  width: 27%;
}
.trade-head__block-top {
  padding: 1.5rem;
}
.trade-head__block-middle {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0 1.5rem 1.5rem;
}
.trade-head__left {
  padding-right: 0.4rem;
  width: 35%;
}
.trade-head__right {
  padding-left: 0.4rem;
  width: 64%;
}
.trade-head__right iframe {
  padding-right: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .trade-head__block-top {
    padding: 1rem;
  }
  .trade-head__block-middle {
    padding: 0 1rem 1rem;
  }
}
@media screen and (max-width: 1130px) {
  .trade {
    margin: 3rem 0;
  }
  .trade-head {
    display: block;
  }
  .trade-head__row-left {
    margin-bottom: 1.5rem;
    width: 100%;
  }
  .trade-head__row-right {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .trade-head__row-right .widget {
    width: 49%;
  }
}
@media screen and (max-width: 770px) {
  .trade-head {
    display: block;
    justify-content: space-between;
  }
  .trade-head__row-left {
    width: 100%;
  }
  .trade-head__row-right {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .trade-head__row-right .widget {
    width: 49%;
  }
  .trade-head__block-top {
    padding: 0.5rem;
  }
  .trade-head__block-middle {
    display: block;
    padding: 0.5rem;
  }
  .trade-head__left,
  .trade-head__right {
    padding: 0.4rem;
    width: 100%;
  }
  .trade .module-container__row {
    display: flex;
    justify-content: space-between;
  }
  .trade .module-container__block {
    width: 49%;
  }
}
@media screen and (max-width: 570px) {
  .trade-head__row-left {
    width: 100%;
  }
  .trade-head__row-right {
    display: block;
  }
  .trade-head__row-right .widget {
    width: 100%;
  }
  .trade-head__block-middle {
    display: block;
    padding: 0.5rem;
  }
  .trade-head__left,
  .trade-head__right {
    padding: 0.4rem;
    width: 100%;
  }
  .trade .module-container__row {
    display: block;
  }
  .trade .module-container__block {
    width: 100%;
  }
}
.vue-slider {
  margin: 1.8rem 0;
  padding: 7px 4px !important;
}
.vue-slider-rail {
  background-color: var(--border-line-color);
  border-radius: 4px;
  height: 10px;
}
.vue-slider-process {
  background-color: var(--progress-color);
  border-radius: 4px;
}
.vue-slider-mark {
  background-color: var(--border-line-color);
  border: 4px solid var(--white-color);
  border-radius: 10px;
  cursor: pointer;
  height: 15px !important;
  width: 15px !important;
}
.vue-slider-dot-handle,
.vue-slider-mark-active {
  background-color: var(--progress-color);
}
.vue-slider-dot-handle {
  border: 4px solid var(--white-color);
  border-radius: 50%;
  cursor: pointer;
  height: 20px;
  position: relative;
  top: -4px;
  width: 20px;
}
.vue-slider-dot-handle-disabled {
  background-color: var(--progress-color);
  cursor: not-allowed;
}
.vue-slider-dot-tooltip-text {
  color: var(--first-text-color);
  font-size: 0.8rem;
  margin-bottom: 3px;
  margin-left: 10px;
}
.vue-slider-dot-tooltip-top {
  top: 0 !important;
}
body.dark .site-layout .vue-slider-mark {
  background-color: var(--blue-dark-second-color);
  border: 4px solid var(--blue-dark-color);
}
body.dark .site-layout .vue-slider-mark-active {
  background-color: var(--progress-color);
}
body.dark .site-layout .vue-slider-dot-handle {
  background-color: var(--progress-color);
  border: 1px solid var(--yellow-color);
  height: 15px;
  top: 0;
  width: 15px;
}
body.dark .module-orderform .button-tab {
  background-color: var(--blue-dark-color);
  color: var(--white-color);
}
.widget-market-stats .widget-stats {
  align-items: flex-start;
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: flex-start;
  padding: 1px 1px 20px;
}
.widget-market-stats .widget-stats__title {
  font-size: var(--default-font__size);
  margin-right: 9rem;
}
.widget-market-stats .widget-stats__title__market-name {
  cursor: pointer;
  margin-bottom: 4px;
}
.widget-market-stats .widget-stats__title__market-name span.market-label {
  color: var(--blue-dark-color);
  text-decoration: underline;
}
.widget-market-stats .widget-stats__title__market-name div.absolute {
  z-index: 1 !important;
}
.widget-market-stats .widget-stats__title__currency-name {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.widget-market-stats .widget-stats__title__currency-icon {
  display: block;
  margin-right: 8px;
}
.widget-market-stats .widget-stats__title__currency-icon img {
  width: 18px;
}
.widget-market-stats .widget-stats__price {
  font-size: var(--small-font__size);
}
.widget-market-stats .widget-stats__price-title {
  color: var(--second-text-color);
  margin-bottom: 6px;
}
.widget-market-stats .widget-stats__list {
  display: flex;
  font-size: var(--small-font__size);
  justify-content: flex-start;
}
.widget-market-stats .widget-stats__list-item {
  margin-right: 40px;
}
.widget-market-stats .widget-stats__list__lable-title {
  color: var(--second-text-color);
  margin-bottom: 6px;
}
.widget-market-stats .widget-stats__funding-rate {
  display: flex;
  flex-direction: column;
}
.widget-market-stats
  .widget-stats__funding-rate
  .widget-stats__funding-countdown {
  color: var(--second-text-color);
  font-family:
    Courier New,
    monospace;
  font-size: 0.75rem;
  margin-top: 4px;
}
.widget-stats__inner {
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  padding-bottom: 15px;
}
.widget-stats__inner .widget-stats__row {
  display: flex;
  margin-right: 2rem;
}
@media screen and (max-width: 1360px) {
  .widget-stats__inner {
    border-bottom: 1px solid var(--border-line-color);
    display: flex;
    padding-bottom: 10px;
  }
  .widget-stats__inner .widget-stats__row {
    display: flex;
    margin-right: 1rem;
  }
  .widget-market-stats .widget-stats__title {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 840px) {
  .widget-market-stats .widget-stats__list-item {
    margin-right: 10px;
  }
}
@media screen and (max-width: 680px) {
  .widget-stats__inner {
    display: block;
    padding-bottom: 0;
  }
  .widget-stats__inner .widget-stats__row {
    display: flex;
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .widget-stats__inner .widget-stats__row {
    display: flex;
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .widget-stats__inner .widget-stats__row:last-child {
    display: block;
  }
  .widget-market-stats .widget-stats__list {
    display: block;
  }
  .widget-market-stats .widget-stats__list-item {
    display: inline-block;
    margin-bottom: 0.5rem;
    width: 42%;
  }
  .widget-market-stats .widget-stats__list .widget-stats__funding-rate {
    display: block;
    width: 100%;
  }
}
.widget-markets {
  background: #fff;
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  box-shadow: 3px 5px 5px 0 rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 3px 5px 5px 0 rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 3px 5px 5px 0 rgba(0, 0, 0, 0.18);
  margin-bottom: 2rem;
  min-width: 350px;
  padding: 1.5rem;
}
.widget-markets__navigation {
  display: flex;
  font-size: var(--default-font__size);
  justify-content: flex-start;
}
.widget-markets__navigation h3 {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  padding-top: 2px;
}
.widget-markets__navigation h3:hover .navigation-icon__color {
  fill: var(--yellow-color);
}
.widget-markets__navigation nav {
  padding: 0;
}
.widget-markets__navigation a {
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  margin-left: 5px;
  outline: none;
  padding: 0.2rem 0.5rem;
}
.widget-markets__navigation .navigation-active,
.widget-markets__navigation a:hover {
  background-color: var(--purple-color);
  border-radius: 4px;
  color: var(--white-color);
  padding: 0.2rem 0.5rem;
}
.widget-markets__navigation .navigation-icon {
  display: inline-block;
  height: 18px;
  margin-right: 10px;
  position: relative;
  top: 2px;
  width: 18px;
}
.widget-markets__navigation .navigation-icon__color {
  fill: var(--second-text-color);
}
.widget-markets__navigation .navigation-icon__active {
  fill: var(--yellow-color);
}
.widget-markets__search {
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: flex-start;
  margin-top: 0.5rem;
}
.widget-markets__search:hover {
  border-bottom: 1px solid var(--yellow-color);
}
.widget-markets__search input {
  background-color: transparent;
  border: none;
  color: var(--first-text-color);
  display: block;
  font-size: var(--default-font__size);
  font-weight: 500;
  outline: none;
  padding: 0.6rem 0.4rem 0.6rem 0;
  width: 100%;
}
.widget-markets__search input:focus {
  box-shadow: none;
  outline: none;
}
.widget-markets__search input::-moz-placeholder {
  color: var(--second-text-color);
}
.widget-markets__search input::placeholder {
  color: var(--second-text-color);
}
.widget-markets__search button {
  border: none;
  outline: none;
}
.widget-markets__search-icon {
  display: inline-block;
  height: 19px;
  margin-right: 4px;
  position: relative;
  top: 14px;
  width: 19px;
}
.widget-markets__search-color {
  stroke: var(--first-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.widget-markets__sort {
  color: var(--second-text-color);
  display: flex;
  font-size: var(--small-font__size);
  justify-content: space-between;
  margin: 1.2rem 0;
  opacity: 80%;
}
.widget-markets__sort-pair,
.widget-markets__sort-price {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  width: 38%;
}
.widget-markets__sort-price {
  text-align: left;
}
.widget-markets__sort-change {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  margin-right: 0.5rem;
  text-align: right;
  width: 24%;
}
.widget-markets__sort-icon {
  display: inline-block;
  height: 24px;
  margin-right: 4px;
  position: relative;
  top: -2px;
  width: 24px;
}
.widget-markets__sort-icon__color {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.widget-markets__sort-icon__active {
  stroke: var(--yellow-color);
}
.widget-markets__list {
  height: 180px;
}
.widget-markets__list-item {
  padding: 0;
}
.widget-markets__list-item a {
  display: flex;
  font-size: var(--small-font__size);
  justify-content: space-between;
  padding: 0.22rem 0;
  position: relative;
  z-index: 5;
}
.widget-markets__list-item a:hover {
  background-color: var(--border-line-color);
  position: relative;
  z-index: 1;
}
.widget-markets__list-item__link {
  cursor: pointer;
  display: block;
}
.widget-markets__list-item__pair {
  display: flex;
  justify-content: flex-start;
  outline: none;
  width: 38%;
}
.widget-markets__list-item .pair-icon {
  fill: var(--second-text-color);
  display: inline-block;
  height: 18px;
  margin-right: 5px;
  position: relative;
  top: 1px;
  width: 18px;
  z-index: 9;
}
.widget-markets__list-item .pair-icon__active {
  fill: var(--yellow-color);
}
.widget-markets__list-item__price {
  outline: none;
  text-align: left;
  width: 38%;
}
.widget-markets__list-item__change {
  margin-right: 0.8rem;
  outline: none;
  text-align: right;
  width: 24%;
}
.widget-markets .__rail-is-vertical {
  right: 0 !important;
}
@media screen and (max-width: 1200px) {
  .widget-markets {
    padding: 1rem;
  }
}
.widget-market-trades {
  margin-top: 2rem;
  min-height: 260px;
}
.widget-market-trades__navigation nav {
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: flex-start;
}
.widget-market-trades__navigation a {
  color: var(--white-color);
  color: var(--second-text-color);
  cursor: pointer;
  display: block;
  font-size: var(--default-font__size);
  margin-right: 0.7rem;
  outline: 1px solid red;
  outline: none;
  padding-bottom: 0.8rem;
}
.widget-market-trades__navigation a:hover {
  color: var(--first-text-color);
}
.widget-market-trades__navigation .navigation-active {
  border-bottom: 2px solid var(--first-text-color);
  color: var(--first-text-color);
}
.widget-market-trades__title {
  color: var(--second-text-color);
  display: flex;
  font-size: var(--small-font__size);
  justify-content: space-between;
  margin: 1.2rem 0;
  opacity: 80%;
}
.widget-market-trades__title-price {
  width: 36%;
}
.widget-market-trades__title-amount {
  text-align: left;
  width: 40%;
}
.widget-market-trades__title-time {
  padding-right: 0.8rem;
  text-align: right;
  width: 24%;
}
.widget-market-trades__list {
  height: 260px;
}
.widget-market-trades__list-item {
  padding: 0.2rem 0.8rem 0.2rem 0;
}
.widget-market-trades__list-item a {
  display: flex;
  font-size: var(--small-font__size);
  justify-content: space-between;
}
.widget-market-trades__list-item__link {
  display: block;
}
.widget-market-trades__list-item__price {
  outline: none;
  width: 36%;
}
.widget-market-trades__list-item__amount {
  outline: none;
  text-align: left;
  width: 40%;
}
.widget-market-trades__list-item__time {
  outline: none;
  text-align: right;
  width: 24%;
}
.widget-market-trades .__rail-is-vertical {
  right: 0 !important;
}
.widget .mobile-head-title {
  display: none;
}
.widget-empty {
  align-items: center;
  color: var(--second-text-color);
  display: flex;
  justify-content: center;
  min-height: 346px;
}
.widget-empty span {
  font-size: 0.9rem;
}
.module-orderbook__sell .module-orderbook {
  margin-bottom: var(--mp-3);
}
.module-orderbook__sell .module-orderbook .mobile-head-title {
  display: none;
}
.module-orderbook__sell .module-orderbook__title-point {
  background: var(--red-color);
  border-radius: 50%;
  height: 4px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 4px;
}
.module-orderbook__sell .module-orderbook__title {
  color: var(--first-color);
  color: #8b8d98;
  display: flex;
  font-size: var(--small-font__size);
  justify-content: space-between;
  margin: 0 0 0.8rem;
  padding-left: 6px;
}
.module-orderbook__sell .module-orderbook__title-price {
  text-align: left;
  width: 25%;
}
.module-orderbook__sell .module-orderbook__title-amount {
  text-align: right;
  width: 28%;
}
.module-orderbook__sell .module-orderbook__title-total {
  text-align: left;
  width: 32%;
}
.module-orderbook__sell .module-orderbook__list {
  font-size: var(--small-font__size);
  height: 150px;
  overflow: hidden;
}
.module-orderbook__sell .module-orderbook__list-item {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 0;
  position: relative;
}
.module-orderbook__sell .module-orderbook__list-item__price {
  padding-left: 6px;
  text-align: left;
  width: 25%;
}
.module-orderbook__sell .module-orderbook__list-item__amount {
  text-align: right;
  width: 28%;
}
.module-orderbook__sell .module-orderbook__list-item__total {
  text-align: left;
  width: 32%;
}
.module-orderbook__sell .module-orderbook__list-item__progressbar {
  background: linear-gradient(
    90deg,
    rgba(238, 40, 68, 0.05),
    rgba(238, 40, 68, 0.25)
  );
  height: 80%;
  position: absolute;
  right: 0;
  top: 2px;
  transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
}
.module-orderbook__sell .module-orderbook__list-item:hover {
  background: var(--rows-color);
  cursor: pointer;
}
.module-orderbook__sell .module-orderbook__empty {
  align-items: center;
  color: var(--second-text-color);
  display: flex;
  font-size: 0.9rem;
  justify-content: center;
  min-height: 150px;
  text-align: center;
}
.module-orderbook__buy .module-orderbook {
  margin-bottom: var(--mp-3);
}
.module-orderbook__buy .module-orderbook__title-point {
  background: var(--green-color);
  border-radius: 50%;
  height: 4px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 4px;
}
.module-orderbook__buy .module-orderbook__title {
  border-bottom: 1px solid var(--border-line-color);
  color: var(--second-text-color);
  display: flex;
  font-size: var(--small-font__size);
  justify-content: space-between;
  margin: 1rem 0 1rem 6px;
  padding: var(--mp-1) 0;
}
.module-orderbook__buy .module-orderbook__title-price {
  display: flex;
  justify-content: flex-start;
  padding: 0.5rem 0;
  text-align: left;
  width: 25%;
}
.module-orderbook__buy .module-orderbook__title-total {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  width: 32%;
}
.module-orderbook__buy .module-orderbook__title-icon {
  display: inline-block;
  height: 20px;
  left: 8px;
  margin-right: 4px;
  position: relative;
  top: 0;
  width: 20px;
}
.module-orderbook__buy .module-orderbook__title-icon__color {
  stroke: var(--green-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.module-orderbook__buy .module-orderbook__list {
  font-size: var(--small-font__size);
  height: 150px;
  overflow: hidden;
}
.module-orderbook__buy .module-orderbook__list-item {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 0;
  position: relative;
}
.module-orderbook__buy .module-orderbook__list-item__price {
  padding-left: 6px;
  text-align: left;
  width: 25%;
}
.module-orderbook__buy .module-orderbook__list-item__amount {
  text-align: right;
  width: 28%;
}
.module-orderbook__buy .module-orderbook__list-item__total {
  text-align: left;
  width: 32%;
}
.module-orderbook__buy .module-orderbook__list-item__progressbar {
  background: linear-gradient(
    90deg,
    rgba(34, 158, 107, 0.05),
    rgba(34, 158, 107, 0.25)
  );
  height: 80%;
  position: absolute;
  right: 0;
  top: 2px;
  transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
}
.module-orderbook__buy .module-orderbook__list-item:hover {
  background: var(--rows-color);
  cursor: pointer;
}
.module-orderbook__buy .module-orderbook__empty-buy {
  align-items: center;
  color: var(--second-text-color);
  display: flex;
  font-size: 0.9rem;
  justify-content: center;
  min-height: 150px;
  text-align: center;
}
.module-orderbook__list.full-height {
  height: 320px !important;
}
.__bar-is-vertical {
  background: var(--second-text-color) !important;
}
.__rail-is-vertical {
  background: var(--white-color) !important;
}
body.dark .site-layout .__bar-is-vertical {
  background: var(--blue-dark-fourth-color) !important;
}
body.dark .site-layout .__rail-is-vertical {
  background: var(--blue-dark-bar-color) !important;
}
body.dark
  .site-layout
  .widget-market-stats
  .widget-stats__title__market-name
  span.market-label {
  color: var(--yellow-color);
}
body.dark .site-layout .widget-markets {
  background: var(--blue-dark-color);
}
.grouping-dropdown {
  display: inline-block;
  position: relative;
}
.grouping-dropdown__trigger {
  align-items: center;
  background: var(--rows-color);
  border: 1px solid var(--border-line-color);
  border-radius: 4px;
  color: var(--second-text-color);
  cursor: pointer;
  display: flex;
  font-size: 11px;
  padding: 2px 6px;
  transition: all 0.15s ease;
}
.grouping-dropdown__trigger:hover {
  background: var(--border-line-color);
  color: var(--first-color);
}
.grouping-dropdown__value {
  font-family: monospace;
  font-weight: 500;
}
.grouping-dropdown__menu {
  background: var(--white-color);
  border: 1px solid var(--border-line-color);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 4px;
  max-height: 200px;
  min-width: 70px;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 100;
}
.grouping-dropdown__item {
  color: var(--first-color);
  cursor: pointer;
  display: block;
  font-family: monospace;
  font-size: 11px;
  padding: 6px 10px;
  text-align: right;
  transition: background 0.15s ease;
  width: 100%;
}
.grouping-dropdown__item:hover {
  background: var(--rows-color);
}
.grouping-dropdown__item--active {
  background: var(--blue-color);
  color: #fff;
}
.grouping-dropdown__item--active:hover {
  background: var(--blue-color);
}
body.dark .grouping-dropdown__trigger {
  background: var(--blue-dark-second-color);
  color: var(--second-text-color);
}
body.dark .grouping-dropdown__trigger:hover {
  background: var(--blue-dark-third-color);
  color: var(--white-color);
}
body.dark .grouping-dropdown__menu {
  background: var(--blue-dark-second-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
body.dark .grouping-dropdown__item {
  color: var(--second-text-color);
}
body.dark .grouping-dropdown__item:hover {
  background: var(--blue-dark-third-color);
  color: var(--white-color);
}
body.dark .grouping-dropdown__item--active {
  background: var(--blue-color);
  color: #fff;
}
.module-orderform__title {
  border-bottom: 1px solid var(--border-line-color);
  color: var(--second-text-color);
  display: flex;
  font-size: var(--default-font__size);
  justify-content: flex-start;
}
.module-orderform__title-item {
  cursor: pointer;
  margin-right: 1.875rem;
  padding: 1.5rem 0 0.5rem;
}
.module-orderform__title-item:hover {
  color: var(--first-text-color);
}
.module-orderform .info-badge {
  color: var(--second-text-color);
}
.module-orderform .button-tab {
  background-color: var(--rows-color);
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  color: var(--dark-body-color);
  display: inline-block;
  float: left;
  outline: none;
  padding: 0.8rem 0;
  position: relative;
  text-align: center;
  width: 50%;
  z-index: 1;
}
.module-orderform .button-tab-buy:after {
  border-bottom-right-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  right: -1rem;
  width: 50%;
}
.module-orderform .button-tab-buy:after,
.module-orderform .button-tab-sell:before {
  background: inherit;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transform: translate(0) rotate(0) skewX(-35deg) skewY(0) scaleX(1) scaleY(1);
  z-index: -1;
}
.module-orderform .button-tab-sell:before {
  border-bottom-left-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  left: -0.6rem;
  width: 40%;
}
.module-orderform .button-tab-buy-active {
  background-color: var(--green-color) !important;
  color: var(--white-color);
}
.module-orderform .button-tab-sell-active {
  background-color: var(--red-color) !important;
  color: var(--white-color);
}
.module-orderform .button-clear {
  clear: both;
}
.module-orderform__active {
  border-bottom: 2px solid var(--first-text-color);
  color: var(--first-text-color);
}
.module-orderform__container {
  display: flex;
  justify-content: space-between;
  padding: 1px;
}
.module-orderform__container,
.module-orderform__container input {
  font-size: var(--small-font__size);
}
.module-orderform__buy {
  width: 100%;
}
.module-orderform__buy-title {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0 0.5rem;
}
.module-orderform__buy-currency {
  color: var(--second-text-color);
  display: flex;
  justify-content: flex-start;
}
.module-orderform__buy-icon {
  display: inline-block;
  height: 20px;
  margin-right: 4px;
  position: relative;
  top: -1px;
  width: 20px;
}
.module-orderform__buy-color {
  stroke: var(--second-text-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.module-orderform__buy-forms__invalid {
  border: 1px solid var(--red-color) !important;
}
.module-orderform__buy-forms__item {
  align-items: center;
  background-color: var(--rows-color);
  border: 1px solid var(--rows-color);
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding: 0.3rem 1rem;
  position: relative;
}
.module-orderform__buy-forms__item:hover {
  border: 1px solid var(--yellow-color);
  box-shadow: var(--yellow-color);
}
.module-orderform__buy-forms__item input {
  background: transparent;
  border: none;
  color: var(--first-text-color);
  font-weight: 500;
  outline: none;
  text-align: right;
  width: 60%;
}
.module-orderform__buy-forms__item input:focus {
  box-shadow: none;
}
.module-orderform__buy-forms__item-left {
  display: block;
  opacity: 50%;
  text-align: left;
  width: 20%;
}
.module-orderform__buy-forms__item-right {
  display: block;
  opacity: 50%;
  text-align: right;
  width: 20%;
}
.module-orderform__buy-forms button {
  background-color: var(--green-color);
  border: 1px solid var(--green-color);
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  color: var(--white-color);
  display: block;
  margin-top: 1rem;
  outline: none;
  padding: 0.8rem 0;
  text-align: center;
  width: 100%;
}
.module-orderform__buy-forms button:hover {
  opacity: 90%;
}
.module-orderform__sell {
  width: 100%;
}
.module-orderform__sell-title {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0 0.5rem;
}
.module-orderform__sell-currency {
  color: var(--second-text-color);
  display: flex;
  justify-content: flex-start;
}
.module-orderform__sell-icon {
  display: inline-block;
  height: 20px;
  margin-right: 4px;
  position: relative;
  top: -1px;
  width: 20px;
}
.module-orderform__sell-color {
  stroke: var(--second-text-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.module-orderform__sell-forms__invalid {
  border: 1px solid var(--red-color) !important;
}
.module-orderform__sell-forms__item {
  align-items: center;
  background-color: var(--rows-color);
  border: 1px solid var(--rows-color);
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding: 0.3rem 1rem;
  position: relative;
}
.module-orderform__sell-forms__item:hover {
  border: 1px solid var(--yellow-color);
  box-shadow: var(--yellow-color);
}
.module-orderform__sell-forms__item input {
  background: transparent;
  border: none;
  color: var(--first-text-color);
  font-weight: 500;
  outline: none;
  text-align: right;
  width: 60%;
}
.module-orderform__sell-forms__item input:focus {
  box-shadow: none;
}
.module-orderform__sell-forms__item-left {
  display: block;
  opacity: 50%;
  text-align: left;
  width: 20%;
}
.module-orderform__sell-forms__item-right {
  display: block;
  opacity: 50%;
  text-align: right;
  width: 20%;
}
.module-orderform__sell-forms button {
  background-color: var(--red-color);
  border: 1px solid var(--red-color);
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  color: var(--white-color);
  display: block;
  margin-top: 1rem;
  outline: none;
  padding: 0.8rem 0;
  text-align: center;
  width: 100%;
}
.module-orderform__sell-forms button:hover {
  opacity: 90%;
}
.module-orderform .form-disabled {
  background-color: var(--border-line-color);
}
.module-orderform .form-disabled:hover {
  border: 1px solid var(--rows-color);
  box-shadow: none;
}
.module-orderform__buy-forms__tp-sl,
.module-orderform__sell-forms__tp-sl {
  border-top: 1px solid var(--border-line-color);
  margin-top: 1rem;
  padding-top: 1rem;
}
.module-orderform__buy-forms__tp-sl-checkbox,
.module-orderform__sell-forms__tp-sl-checkbox {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin-bottom: 0.8rem;
}
.module-orderform__buy-forms__tp-sl-checkbox input[type="checkbox"],
.module-orderform__sell-forms__tp-sl-checkbox input[type="checkbox"] {
  cursor: pointer;
  margin-right: 0.5rem;
}
.module-orderform__buy-forms__tp-sl-checkbox label,
.module-orderform__sell-forms__tp-sl-checkbox label {
  color: var(--second-text-color);
  cursor: pointer;
  font-size: var(--small-font__size);
}
@media screen and (max-width: 570px) {
  .module-orderform__container {
    display: block;
  }
  .module-orderform__buy,
  .module-orderform__sell {
    width: 100%;
  }
}
.module-orderopen {
  margin: 0;
  padding: 0 2rem;
}
.module-orderopen__navigation {
  border-bottom: 1px solid var(--border-line-color);
  color: var(--second-text-color);
  display: flex;
  font-size: var(--default-font__size);
  justify-content: flex-start;
  margin: 0 0 1rem;
}
.module-orderopen__navigation-title {
  cursor: pointer;
  margin-right: 1.875rem;
  padding: 1rem 0;
}
.module-orderopen__navigation-title h4 {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin: 0;
}
.module-orderopen__navigation-title .tab-count {
  color: var(--second-text-color);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
}
.module-orderopen__navigation-active {
  border-bottom: 2px solid var(--blue-dark-color);
  color: var(--blue-dark-color);
}
.module-orderopen__navigation-active .tab-count {
  opacity: 1;
}
.module-orderopen__navlist {
  color: #8b8d98;
  display: flex;
  font-size: var(--default-font__size);
  justify-content: flex-start;
  margin: 1.5rem 0;
}
.module-orderopen__navlist-item {
  margin-right: 1.5rem;
}
.module-orderopen__navlist-active {
  color: var(--blue-dark-color);
}
.module-orderopen__table .table-title {
  display: flex;
  font-size: var(--small-font__size);
  justify-content: space-between;
}
.module-orderopen__table .table-title__name {
  color: var(--second-text-color);
  padding: 1rem 0;
  text-align: left;
  width: 20%;
}
.module-orderopen__table .table-list {
  font-size: var(--small-font__size);
}
.module-orderopen__table .table-list__subtitle {
  display: none;
}
.module-orderopen__table .table-list__item {
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: space-between;
}
.module-orderopen__table .table-list__item-date {
  color: var(--second-text-color);
}
.module-orderopen__table .table-list__item-value {
  align-items: center;
  display: flex;
  padding: 0.9rem 0;
  text-align: left;
  width: 20%;
}
.module-orderopen__login {
  font-size: 0.9rem;
}
.module-orderopen__login-text {
  color: var(--second-text-color);
  display: flex;
  justify-content: center;
  padding: 7rem 0;
}
.module-orderopen__login-text a {
  color: var(--yellow-color);
  display: block;
  margin: 0 0.4rem;
}
.module-orderopen__login-text a:hover {
  text-decoration: underline;
}
.module-orderopen__notfont {
  font-size: 0.8rem;
  padding: 3rem 0;
  text-align: center;
}
.module-orderopen__notfont-icon {
  display: inline-block;
  height: 60px;
  margin-bottom: 0.3rem;
  width: 60px;
}
.module-orderopen__notfont-icon__color {
  stroke: var(--second-text-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.module-orderopen__notfont-icon .color-yellow {
  stroke: var(--yellow-color);
}
.module-orderopen__notfont-text {
  color: var(--second-text-color);
  display: flex;
  justify-content: center;
}
.module-orderopen__notfont-text a {
  color: var(--yellow-color);
  display: block;
  margin: 0 0.4rem;
}
.module-orderopen__notfont-text a:hover {
  text-decoration: underline;
}
body.dark .site-layout .module-orderopen__navigation-active h4 {
  color: var(--dark-text-color);
}
@media screen and (max-width: 900px) {
  .module-orderopen__table .table-title {
    display: none;
    justify-content: space-between;
  }
  .module-orderopen__table .table-list__subtitle {
    display: block;
  }
  .module-orderopen__table .table-list__item {
    border-bottom: 1px solid var(--border-line-color);
    display: block;
    justify-content: space-between;
    padding: 2rem 0;
  }
  .module-orderopen__table .table-list__item-value {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
.funding-rate-info {
  background: var(--rows-color);
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  font-size: var(--default-font__size);
  margin-bottom: 1rem;
  padding: 1rem;
}
.funding-rate-info__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.funding-rate-info__label {
  color: var(--second-text-color);
  font-weight: 500;
}
.funding-rate-info__rate {
  font-size: 1.1rem;
  font-weight: 600;
}
.funding-rate-info__rate--positive {
  color: #ef4444;
}
.funding-rate-info__rate--negative {
  color: #10b981;
}
.funding-rate-info__rate--neutral {
  color: var(--second-text-color);
}
.funding-rate-info__details {
  align-items: center;
  display: flex;
  font-size: 0.875rem;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.funding-rate-info__interval {
  color: var(--second-text-color);
}
.funding-rate-info__timer {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}
.funding-rate-info__timer-label {
  color: var(--second-text-color);
}
.funding-rate-info__timer-value {
  background: var(--sixth-color);
  border-radius: 4px;
  color: var(--first-text-color);
  font-family:
    Courier New,
    monospace;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
}
.funding-rate-info__description {
  border-top: 1px solid var(--border-line-color);
  color: var(--second-text-color);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}
body.dark .funding-rate-info__rate--positive {
  color: #f87171;
}
body.dark .funding-rate-info__rate--negative {
  color: #34d399;
}
@media (max-width: 768px) {
  .funding-rate-info {
    font-size: 0.875rem;
    padding: 0.75rem;
  }
  .funding-rate-info__details,
  .funding-rate-info__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.page-section .components-title h1 {
  font-size: var(--h2-font__size);
  margin: 5rem 0 3rem;
}
.page-section-content img {
  max-width: 100%;
}
.page-section-content h2,
.page-section-content h3,
.page-section-content h4,
.page-section-content li,
.page-section-content p {
  color: var(--first-text-color);
  line-height: 2.2rem;
}
.page-section-content h2 {
  color: var(--first-text-color);
  font-size: 1.3rem;
  margin: 2rem 0;
}
.page-section-content ul {
  list-style: circle;
  padding: 0 1rem;
}
.page-section-content a,
.page-section-content a:hover,
.page-section-content a:visited {
  color: var(--purple-second-color) !important;
}
.profile-inner-page .form-components__title h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.articles-page {
  background: var(--main-color);
  min-height: 80vh;
  padding: 2rem 0;
}
.articles-header {
  margin-bottom: 3rem;
}
.articles-header .articles-title {
  color: var(--main-text-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .articles-header .articles-title {
    font-size: 1.875rem;
  }
}
.articles-header .articles-subtitle {
  color: var(--second-text-color);
  font-size: 1.125rem;
  margin: 0 auto;
  max-width: 600px;
}
@media (max-width: 768px) {
  .articles-header .articles-subtitle {
    font-size: 1rem;
  }
}
.featured-article {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.featured-article:hover {
  transform: translateY(-4px);
}
.featured-article:hover .featured-image img {
  transform: scale(1.05);
}
.featured-article:hover .read-more-btn {
  gap: 0.75rem;
}
.featured-article .featured-article-inner {
  background: var(--rows-color);
  border-radius: 1rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
@media (max-width: 968px) {
  .featured-article .featured-article-inner {
    grid-template-columns: 1fr;
  }
}
.featured-article .featured-image {
  min-height: 300px;
  overflow: hidden;
  position: relative;
}
.featured-article .featured-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}
.featured-article .featured-image .featured-badge {
  background: var(--blue-color);
  border-radius: 2rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  left: 1rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  position: absolute;
  text-transform: uppercase;
  top: 1rem;
}
.featured-article .featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
@media (max-width: 968px) {
  .featured-article .featured-content {
    padding: 1.5rem;
  }
}
.featured-article .featured-meta {
  margin-bottom: 1rem;
}
.featured-article .featured-meta .featured-date {
  align-items: center;
  color: var(--second-text-color);
  display: inline-flex;
  font-size: 0.875rem;
  gap: 0.5rem;
}
.featured-article .featured-meta .featured-date svg {
  opacity: 0.7;
}
.featured-article .featured-title {
  color: var(--main-text-color);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .featured-article .featured-title {
    font-size: 1.5rem;
  }
}
.featured-article .featured-excerpt {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--second-text-color);
  display: -webkit-box;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.featured-article .featured-cta .read-more-btn {
  align-items: center;
  color: var(--blue-color);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}
.featured-article .featured-cta .read-more-btn svg {
  transition: transform 0.3s ease;
}
.articles-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}
.article-card {
  background: var(--rows-color);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
.article-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}
.article-card:hover .article-card-image img {
  transform: scale(1.1);
}
.article-card:hover .read-more-link svg {
  transform: translateX(4px);
}
.article-card .article-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.article-card .article-card-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}
.article-card .article-card-image .article-card-overlay {
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.1));
  inset: 0;
  position: absolute;
}
.article-card .article-card-content {
  padding: 1.5rem;
}
.article-card .article-card-meta {
  margin-bottom: 0.75rem;
}
.article-card .article-card-meta .article-date {
  color: var(--second-text-color);
  font-size: 0.8125rem;
}
.article-card .article-card-title {
  color: var(--main-text-color);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.article-card .article-card-excerpt,
.article-card .article-card-title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.article-card .article-card-excerpt {
  color: var(--second-text-color);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.article-card .article-card-footer .read-more-link {
  align-items: center;
  color: var(--blue-color);
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.25rem;
}
.article-card .article-card-footer .read-more-link svg {
  transition: transform 0.3s ease;
}
.articles-empty {
  background: var(--rows-color);
  border-radius: 1rem;
  padding: 4rem 2rem;
  text-align: center;
}
.articles-empty .empty-icon {
  margin-bottom: 1.5rem;
}
.articles-empty .empty-icon svg {
  color: var(--second-text-color);
  opacity: 0.5;
}
.articles-empty .empty-title {
  color: var(--main-text-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.articles-empty .empty-description {
  color: var(--second-text-color);
  font-size: 1rem;
}
.articles-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.article-page {
  background: var(--main-color);
  min-height: 80vh;
  padding: 2rem 0;
}
.article-breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.article-breadcrumb .breadcrumb-link {
  color: var(--second-text-color);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.article-breadcrumb .breadcrumb-link:hover {
  color: var(--blue-color);
}
.article-breadcrumb .breadcrumb-separator {
  align-items: center;
  color: var(--second-text-color);
  display: flex;
  opacity: 0.5;
}
.article-breadcrumb .breadcrumb-current {
  color: var(--main-text-color);
  font-size: 0.875rem;
  font-weight: 500;
}
.article-container {
  margin: 0 auto;
  max-width: 800px;
}
.article-header {
  margin-bottom: 2rem;
}
.article-header .article-title {
  color: var(--main-text-color);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .article-header .article-title {
    font-size: 1.875rem;
  }
}
.article-header .article-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.article-header .article-meta .meta-item {
  align-items: center;
  color: var(--second-text-color);
  display: flex;
  font-size: 0.9375rem;
  gap: 0.5rem;
}
.article-header .article-meta .meta-item svg {
  opacity: 0.7;
}
.article-featured-image {
  border-radius: 1rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.article-featured-image img {
  height: auto;
  max-height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.article-body {
  margin-bottom: 3rem;
}
.article-body .article-content {
  color: var(--main-text-color);
  font-size: 1.0625rem;
  line-height: 1.8;
}
.article-body .article-content h1,
.article-body .article-content h2,
.article-body .article-content h3,
.article-body .article-content h4,
.article-body .article-content h5,
.article-body .article-content h6 {
  color: var(--main-text-color);
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.article-body .article-content h2 {
  font-size: 1.75rem;
}
.article-body .article-content h3 {
  font-size: 1.5rem;
}
.article-body .article-content p {
  margin-bottom: 1.25rem;
}
.article-body .article-content a {
  color: var(--blue-color);
  text-decoration: underline;
}
.article-body .article-content a:hover {
  text-decoration: none;
}
.article-body .article-content ol,
.article-body .article-content ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.article-body .article-content li {
  margin-bottom: 0.5rem;
}
.article-body .article-content img {
  border-radius: 0.5rem;
  height: auto;
  margin: 1.5rem 0;
  max-width: 100%;
}
.article-body .article-content blockquote {
  border-left: 4px solid var(--blue-color);
  color: var(--second-text-color);
  font-style: italic;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.article-body .article-content code,
.article-body .article-content pre {
  background: var(--rows-color);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
}
.article-body .article-content pre {
  margin: 1.5rem 0;
  overflow-x: auto;
  padding: 1rem;
}
.article-body .article-content pre code {
  background: transparent;
  padding: 0;
}
.article-body .article-content table {
  border-collapse: collapse;
  margin: 1.5rem 0;
  width: 100%;
}
.article-body .article-content table td,
.article-body .article-content table th {
  border: 1px solid var(--border-line-color);
  padding: 0.75rem;
  text-align: left;
}
.article-body .article-content table th {
  background: var(--rows-color);
  font-weight: 600;
}
.article-footer {
  border-top: 1px solid var(--border-line-color);
  padding-top: 2rem;
}
.article-footer .article-share {
  margin-bottom: 2rem;
}
.article-footer .article-share .share-label {
  color: var(--second-text-color);
  display: block;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.article-footer .article-share .share-buttons {
  display: flex;
  gap: 0.75rem;
}
.article-footer .article-share .share-btn {
  align-items: center;
  background: var(--rows-color);
  border: none;
  border-radius: 50%;
  color: var(--main-text-color);
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  transition: all 0.2s ease;
  width: 44px;
}
.article-footer .article-share .share-btn:hover {
  transform: translateY(-2px);
}
.article-footer .article-share .share-btn.share-twitter:hover {
  background: #1da1f2;
  color: #fff;
}
.article-footer .article-share .share-btn.share-facebook:hover {
  background: #4267b2;
  color: #fff;
}
.article-footer .article-share .share-btn.share-telegram:hover {
  background: #08c;
  color: #fff;
}
.article-footer .article-share .share-btn.share-copy:hover {
  background: var(--blue-color);
  color: #fff;
}
.article-footer .article-back .back-link {
  align-items: center;
  color: var(--blue-color);
  display: inline-flex;
  font-weight: 500;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}
.article-footer .article-back .back-link:hover {
  gap: 0.75rem;
}
.support-page {
  min-height: 100vh;
  padding-bottom: 4rem;
}
.support-page__hero {
  background: linear-gradient(
    135deg,
    var(--purple-color) 0,
    var(--purple-second-color) 100%
  );
  border-radius: 0 0 2rem 2rem;
  margin-bottom: 2rem;
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .support-page__hero {
    margin-bottom: 1.5rem;
    padding: 3rem 1.5rem;
  }
}
.support-page__hero-content {
  color: #fff;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}
.support-page__hero-icon {
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.15);
  border-radius: 50%;
  display: inline-flex;
  height: 80px;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 80px;
}
.support-page__hero-icon svg {
  color: #fff;
}
.support-page__hero-content h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .support-page__hero-content h1 {
    font-size: 1.5rem;
  }
}
.support-page__hero-content p {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}
.support-page__success {
  margin: -1rem auto 2rem;
  max-width: 800px;
  padding: 0 1.5rem;
}
.support-page__success-content {
  align-items: flex-start;
  background: linear-gradient(
    135deg,
    rgba(38, 201, 155, 0.1),
    rgba(38, 201, 155, 0.05)
  );
  border: 1px solid var(--green-color);
  border-radius: 1rem;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .support-page__success-content {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
.support-page__success-icon {
  align-items: center;
  background: var(--green-color);
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  min-width: 48px;
  width: 48px;
}
.support-page__success-icon svg {
  color: #fff;
}
.support-page__success-text h3 {
  color: var(--green-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.support-page__success-text p {
  color: var(--first-text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.support-page__error-banner {
  margin: 1rem auto 2rem;
  max-width: 800px;
  padding: 0 1.5rem;
}
.support-page__error-content {
  align-items: flex-start;
  background: linear-gradient(
    135deg,
    rgba(223, 90, 82, 0.1),
    rgba(223, 90, 82, 0.05)
  );
  border: 1px solid var(--red-color);
  border-radius: 1rem;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .support-page__error-content {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
.support-page__error-icon {
  align-items: center;
  background: var(--red-color);
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  min-width: 48px;
  width: 48px;
}
.support-page__error-icon svg {
  color: #fff;
}
.support-page__error-text h3 {
  color: var(--red-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.support-page__error-text p {
  color: var(--first-text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.support-page__grid {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 380px;
}
@media (max-width: 1024px) {
  .support-page__grid {
    grid-template-columns: 1fr;
  }
}
.support-page__form-section {
  order: 1;
}
@media (max-width: 1024px) {
  .support-page__form-section {
    order: 2;
  }
}
.support-page__card {
  border: 1px solid var(--border-line-color);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.support-page__card-header {
  border-bottom: 1px solid var(--border-line-color);
  padding: 2rem 2rem 1.5rem;
}
.support-page__card-header h2 {
  color: var(--first-text-color);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.support-page__card-header p {
  color: var(--second-text-color);
  font-size: 0.9rem;
  margin: 0;
}
.support-page__login-required {
  padding: 3rem 2rem;
  text-align: center;
}
.support-page__login-required h3 {
  color: var(--first-text-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.support-page__login-required p {
  color: var(--second-text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 auto 1.5rem;
  max-width: 400px;
}
.support-page__login-icon {
  align-items: center;
  background: var(--rows-color);
  border-radius: 50%;
  color: var(--purple-color);
  display: inline-flex;
  height: 80px;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 80px;
}
.support-page__login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.support-page__login-btn {
  align-items: center;
  background: var(--purple-color);
  border-radius: 8px;
  color: var(--white-color);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.support-page__login-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.support-page__register-btn {
  align-items: center;
  background: transparent;
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  color: var(--first-text-color);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.support-page__register-btn:hover {
  border-color: var(--purple-color);
  color: var(--purple-color);
}
.support-page__form {
  padding: 2rem;
}
.support-page__field {
  margin-bottom: 1.75rem;
}
.support-page__field:last-of-type {
  margin-bottom: 0;
}
.support-page__label {
  align-items: center;
  color: var(--first-text-color);
  display: flex;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.support-page__label-icon {
  align-items: center;
  color: var(--purple-color);
  display: flex;
  justify-content: center;
}
.support-page__required {
  color: var(--red-color);
}
.support-page__optional {
  color: var(--second-text-color);
  font-size: 0.85rem;
  font-weight: 400;
}
.support-page__input {
  background: var(--rows-color);
  border: 2px solid transparent;
  border-radius: 0.75rem;
  color: var(--first-text-color);
  font-size: 0.95rem;
  outline: none;
  padding: 0.875rem 1rem;
  transition: all 0.2s ease;
  width: 100%;
}
.support-page__input::-moz-placeholder {
  color: var(--second-text-color);
}
.support-page__input::placeholder {
  color: var(--second-text-color);
}
.support-page__input:hover {
  border-color: var(--border-line-color);
}
.support-page__input:focus {
  border-color: var(--purple-color);
  box-shadow: 0 0 0 4px rgba(95, 84, 170, 0.1);
}
.support-page__input--error {
  background: rgba(223, 90, 82, 0.05);
  border-color: var(--red-color);
}
.support-page__input--error:focus {
  border-color: var(--red-color);
  box-shadow: 0 0 0 4px rgba(223, 90, 82, 0.1);
}
.support-page__textarea {
  background: var(--rows-color);
  border: 2px solid transparent;
  border-radius: 0.75rem;
  color: var(--first-text-color);
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.6;
  min-height: 140px;
  outline: none;
  padding: 0.875rem 1rem;
  resize: vertical;
  transition: all 0.2s ease;
  width: 100%;
}
.support-page__textarea::-moz-placeholder {
  color: var(--second-text-color);
}
.support-page__textarea::placeholder {
  color: var(--second-text-color);
}
.support-page__textarea:hover {
  border-color: var(--border-line-color);
}
.support-page__textarea:focus {
  border-color: var(--purple-color);
  box-shadow: 0 0 0 4px rgba(95, 84, 170, 0.1);
}
.support-page__textarea--error {
  background: rgba(223, 90, 82, 0.05);
  border-color: var(--red-color);
}
.support-page__error {
  color: var(--red-color);
  display: block;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.support-page__upload {
  margin-top: 0.5rem;
}
.support-page__upload-zone {
  background: var(--rows-color);
  border: 2px dashed var(--border-line-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
}
.support-page__upload-zone:hover {
  background: rgba(95, 84, 170, 0.02);
  border-color: var(--purple-color);
}
.support-page__upload-zone--has-file {
  background: rgba(38, 201, 155, 0.05);
  border-color: var(--green-color);
  border-style: solid;
}
.support-page__upload-placeholder {
  align-items: center;
  color: var(--second-text-color);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.support-page__upload-placeholder svg {
  color: var(--purple-color);
  opacity: 0.7;
}
.support-page__upload-placeholder span {
  color: var(--first-text-color);
  font-size: 0.95rem;
  font-weight: 500;
}
.support-page__upload-placeholder small {
  color: var(--second-text-color);
  font-size: 0.8rem;
}
.support-page__upload-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.support-page__upload-status {
  align-items: center;
  color: var(--second-text-color);
  display: inline-flex;
  font-size: 0.85rem;
  gap: 0.35rem;
}
.support-page__upload-status--success {
  color: var(--green-color);
}
.support-page__upload-remove {
  align-items: center;
  background: transparent;
  border: 1px solid var(--red-color);
  border-radius: 0.5rem;
  color: var(--red-color);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 500;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}
.support-page__upload-remove:hover {
  background: var(--red-color);
  color: #fff;
}
.support-page__file-agent .file-preview-wrapper {
  margin: 0 auto;
}
.support-page__recaptcha {
  display: flex;
  justify-content: center;
}
.support-page__actions {
  border-top: 1px solid var(--border-line-color);
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.support-page__submit {
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--purple-color) 0,
    var(--purple-second-color) 100%
  );
  border: none;
  border-radius: 0.75rem;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.75rem;
  justify-content: center;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  width: 100%;
}
.support-page__submit:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(95, 84, 170, 0.35);
  transform: translateY(-2px);
}
.support-page__submit:active:not(:disabled) {
  transform: translateY(0);
}
.support-page__submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.support-page__submit--loading {
  opacity: 0.8;
}
.support-page__spinner {
  animation: spin 1s linear infinite;
  height: 20px;
  width: 20px;
}
.support-page__info-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  order: 2;
}
@media (max-width: 1024px) {
  .support-page__info-section {
    flex-direction: row;
    flex-wrap: wrap;
    order: 1;
  }
}
@media (max-width: 640px) {
  .support-page__info-section {
    flex-direction: column;
  }
}
.support-page__info-card {
  border: 1px solid var(--border-line-color);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
}
@media (max-width: 1024px) {
  .support-page__info-card {
    flex: 1;
    min-width: 280px;
  }
}
.support-page__info-card h3 {
  color: var(--first-text-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.support-page__info-card p {
  color: var(--second-text-color);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.support-page__info-card--tips {
  background: linear-gradient(
    135deg,
    rgba(95, 84, 170, 0.05),
    rgba(95, 84, 170, 0.02)
  );
  border-color: rgba(95, 84, 170, 0.2);
}
.support-page__info-icon {
  align-items: center;
  border-radius: 0.75rem;
  display: flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 44px;
}
.support-page__info-icon--clock {
  background: rgba(95, 84, 170, 0.1);
  color: var(--purple-color);
}
.support-page__info-icon--email {
  background: rgba(38, 201, 155, 0.1);
  color: var(--green-color);
}
.support-page__info-icon--tips {
  background: rgba(255, 193, 7, 0.1);
  color: var(--yellow-color);
}
.support-page__tips-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.support-page__tips-list li {
  color: var(--second-text-color);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}
.support-page__tips-list li:last-child {
  margin-bottom: 0;
}
.support-page__tips-list li:before {
  background: var(--purple-color);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.6rem;
  width: 6px;
}
[data-theme="dark"] .support-page__card,
[data-theme="dark"] .support-page__info-card {
  background: var(--dark-body-color);
  border-color: var(--strict-border-color);
}
[data-theme="dark"] .support-page__input,
[data-theme="dark"] .support-page__textarea {
  background: var(--blue-dark-color);
  color: var(--dark-text-color);
}
[data-theme="dark"] .support-page__input:focus,
[data-theme="dark"] .support-page__textarea:focus {
  background: var(--blue-dark-second-color);
}
[data-theme="dark"] .support-page__upload-zone {
  background: var(--blue-dark-color);
  border-color: var(--strict-border-color);
}
[data-theme="dark"] .support-page__success-content {
  background: rgba(38, 201, 155, 0.1);
}
.cex-home {
  margin-top: 30px;
}
.cex-home__hero {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  margin-bottom: 2rem;
  overflow: hidden;
  padding: 5rem 2rem;
  position: relative;
  text-align: center;
}
.cex-home__hero:before {
  background: linear-gradient(
    135deg,
    rgba(251, 253, 255, 0.92),
    rgba(251, 253, 255, 0.85) 50%,
    rgba(251, 253, 255, 0.75)
  );
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.cex-home__hero:after {
  background: radial-gradient(
    ellipse at center,
    rgba(95, 84, 170, 0.08) 0,
    transparent 70%
  );
  content: "";
  height: 200%;
  pointer-events: none;
  position: absolute;
  right: -20%;
  top: -50%;
  width: 60%;
  z-index: 1;
}
@media (max-width: 768px) {
  .cex-home__hero {
    border-radius: 16px;
    padding: 3rem 1.5rem;
  }
}
.cex-home__hero-floating {
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .cex-home__hero-floating {
    display: none;
  }
}
.cex-home__hero-coin {
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  height: 48px;
  opacity: 0.6;
  position: absolute;
  width: 48px;
}
.cex-home__hero-coin--1 {
  animation-delay: 0s;
  height: 56px;
  left: 8%;
  top: 15%;
  width: 56px;
}
.cex-home__hero-coin--2 {
  animation-delay: 1s;
  height: 44px;
  left: 12%;
  top: 60%;
  width: 44px;
}
.cex-home__hero-coin--3 {
  animation-delay: 2s;
  height: 52px;
  right: 10%;
  top: 25%;
  width: 52px;
}
.cex-home__hero-coin--4 {
  animation-delay: 3s;
  height: 40px;
  right: 8%;
  top: 70%;
  width: 40px;
}
.cex-home__hero-coin--5 {
  animation-delay: 4s;
  height: 36px;
  right: 18%;
  top: 45%;
  width: 36px;
}
@keyframes float {
  0%,
  to {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}
.cex-home__hero-content {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  z-index: 3;
}
.cex-home__hero-content .typer-cursor,
.cex-home__hero-content .typer-text {
  color: var(--yellow-color) !important;
}
.cex-home__hero-content h1 {
  color: var(--first-text-color);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 1rem;
}
@media (max-width: 768px) {
  .cex-home__hero-content h1 {
    font-size: 2rem;
  }
}
.cex-home__typer {
  color: var(--purple-color);
  font-weight: 300;
}
.cex-home .typer-cursor {
  animation: blink 1s infinite;
  color: var(--purple-color);
}
.cex-home__hero-content > p {
  color: var(--second-text-color);
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 2rem;
}
@media (max-width: 768px) {
  .cex-home__hero-content > p {
    font-size: 1rem;
  }
}
.cex-home__hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .cex-home__hero-actions {
    align-items: center;
    flex-direction: column;
  }
}
.cex-home__btn {
  align-items: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  padding: 0.875rem 2rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cex-home__btn--primary {
  background: var(--purple-color);
  color: var(--white-color);
}
.cex-home__btn--primary:hover {
  opacity: 0.9;
}
.cex-home__btn--secondary {
  background: transparent;
  border: 1px solid var(--border-line-color);
  color: var(--first-text-color);
}
.cex-home__btn--secondary:hover {
  border-color: var(--purple-color);
  color: var(--purple-color);
}
.cex-home__btn--large {
  font-size: 1.1rem;
  padding: 1rem 3rem;
}
.cex-home__hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
}
@media (max-width: 576px) {
  .cex-home__hero-stats {
    gap: 1.5rem;
  }
}
.cex-home__hero-stat {
  text-align: center;
}
.cex-home__hero-stat-value {
  color: var(--purple-color);
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}
@media (max-width: 576px) {
  .cex-home__hero-stat-value {
    font-size: 1.25rem;
  }
}
.cex-home__hero-stat-label {
  color: var(--second-text-color);
  font-size: 0.875rem;
}
.cex-home__ticker {
  border-bottom: 1px solid var(--border-line-color);
  border-top: 1px solid var(--border-line-color);
  margin-bottom: 3rem;
  overflow: hidden;
  padding: 1rem 0;
}
.cex-home__ticker-item {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  padding: 0 1.5rem;
}
.cex-home__ticker-logo {
  border-radius: 50%;
  height: 20px;
  width: 20px;
}
.cex-home__ticker-name {
  font-weight: 500;
  min-width: 90px;
}
.cex-home__ticker-name,
.cex-home__ticker-price {
  color: var(--first-text-color);
}
.cex-home__ticker-change {
  font-weight: 500;
}
.cex-home__ticker-change--up {
  color: var(--green-color);
}
.cex-home__ticker-change--down {
  color: var(--red-color);
}
.cex-home__announcements {
  margin-bottom: 4rem;
}
.cex-home__announcements-slider .hooper {
  height: auto;
}
.cex-home__announcements-slider .hooper-slide {
  padding: 0 0.5rem;
}
.cex-home__announcement-card {
  border-radius: 12px;
  cursor: pointer;
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cex-home__announcement-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.cex-home__announcement-card:hover .cex-home__announcement-image {
  transform: scale(1.05);
}
.cex-home__announcement-image {
  border-radius: 12px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}
.cex-home__section-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.cex-home__section-header h2 {
  color: var(--first-text-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.cex-home__section-header > p {
  color: var(--second-text-color);
  font-size: 0.95rem;
  margin: 0.25rem 0 0;
}
.cex-home__section-header--center {
  align-items: center;
  flex-direction: column;
  margin-bottom: 2.5rem;
  text-align: center;
}
.cex-home__section-header--center > p {
  max-width: 500px;
}
@media (max-width: 576px) {
  .cex-home__section-header {
    flex-direction: column;
    gap: 1rem;
  }
}
.cex-home__view-all {
  align-items: center;
  color: var(--purple-color);
  display: inline-flex;
  font-weight: 500;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.cex-home__view-all:hover {
  opacity: 0.8;
}
.cex-home__markets {
  margin-bottom: 4rem;
}
.cex-home__markets-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.cex-home__markets-tab {
  align-items: center;
  background: transparent;
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  color: var(--second-text-color);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  transition: all 0.2s ease;
}
.cex-home__markets-tab:hover {
  border-color: var(--purple-color);
  color: var(--purple-color);
}
.cex-home__markets-tab--active {
  background: var(--purple-color);
  border-color: var(--purple-color);
  color: var(--white-color);
}
.cex-home__markets-tab--active:hover {
  color: var(--white-color);
}
.cex-home__markets-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .cex-home__markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cex-home__markets-grid {
    grid-template-columns: 1fr;
  }
}
.cex-home__market-card {
  border: 1px solid var(--border-line-color);
  border-radius: 12px;
  cursor: pointer;
  padding: 1.25rem;
  transition: all 0.2s ease;
}
.cex-home__market-card:hover {
  border-color: var(--purple-color);
  transform: translateY(-2px);
}
.cex-home__market-header {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.cex-home__market-logo {
  border-radius: 50%;
  height: 36px;
  width: 36px;
}
.cex-home__market-info {
  display: flex;
  flex-direction: column;
}
.cex-home__market-pair {
  color: var(--first-text-color);
  font-weight: 600;
}
.cex-home__market-pair span {
  color: var(--second-text-color);
  font-weight: 400;
}
.cex-home__market-name {
  color: var(--second-text-color);
  font-size: 0.75rem;
}
.cex-home__market-price {
  color: var(--first-text-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.cex-home__market-change {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.cex-home__market-change--up {
  color: var(--green-color);
}
.cex-home__market-change--down {
  color: var(--red-color);
}
.cex-home__market-volume {
  color: var(--second-text-color);
  font-size: 0.8rem;
}
.cex-home__market-volume-label {
  margin-right: 0.25rem;
}
.cex-home__staking {
  margin-bottom: 4rem;
}
.cex-home__staking-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .cex-home__staking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cex-home__staking-grid {
    grid-template-columns: 1fr;
  }
}
.cex-home__staking-card {
  border: 1px solid var(--border-line-color);
  border-radius: 12px;
  cursor: pointer;
  padding: 1.25rem;
  transition: all 0.2s ease;
}
.cex-home__staking-card:hover {
  border-color: var(--purple-color);
  transform: translateY(-2px);
}
.cex-home__staking-header {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.cex-home__staking-logo {
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.cex-home__staking-info {
  display: flex;
  flex-direction: column;
}
.cex-home__staking-symbol {
  color: var(--first-text-color);
  font-weight: 600;
}
.cex-home__staking-name {
  color: var(--second-text-color);
  font-size: 0.8rem;
}
.cex-home__staking-apy {
  background: var(--rows-color);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
}
.cex-home__staking-apy-label {
  color: var(--second-text-color);
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.cex-home__staking-apy-value {
  color: var(--green-color);
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.cex-home__staking-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cex-home__staking-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cex-home__staking-detail span:first-child {
  color: var(--second-text-color);
  font-size: 0.75rem;
}
.cex-home__staking-detail span:last-child {
  color: var(--first-text-color);
  font-size: 0.9rem;
  font-weight: 500;
}
.cex-home__staking-btn {
  background: var(--purple-color);
  border: none;
  border-radius: 8px;
  color: var(--white-color);
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem;
  transition: opacity 0.2s ease;
  width: 100%;
}
.cex-home__staking-btn:hover {
  opacity: 0.9;
}
.cex-home__launchpad {
  margin-bottom: 4rem;
}
.cex-home__launchpad-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .cex-home__launchpad-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cex-home__launchpad-grid {
    grid-template-columns: 1fr;
  }
}
.cex-home__launchpad-card {
  border: 1px solid var(--border-line-color);
  border-radius: 12px;
  cursor: pointer;
  padding: 1.25rem;
  transition: all 0.2s ease;
}
.cex-home__launchpad-card:hover {
  border-color: var(--purple-color);
  transform: translateY(-2px);
}
.cex-home__launchpad-header {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.cex-home__launchpad-logo {
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.cex-home__launchpad-info {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.cex-home__launchpad-symbol {
  color: var(--first-text-color);
  font-weight: 600;
}
.cex-home__launchpad-name {
  color: var(--second-text-color);
  font-size: 0.8rem;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cex-home__launchpad-status {
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  text-transform: uppercase;
}
.cex-home__launchpad-status--active {
  background: rgba(38, 201, 155, 0.15);
  color: var(--green-color);
}
.cex-home__launchpad-status--upcoming {
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow-color);
}
.cex-home__launchpad-progress {
  margin-bottom: 1rem;
}
.cex-home__launchpad-progress-header {
  color: var(--second-text-color);
  display: flex;
  font-size: 0.8rem;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.cex-home__launchpad-progress-header span:last-child {
  color: var(--purple-color);
  font-weight: 600;
}
.cex-home__launchpad-progress-bar {
  background: var(--rows-color);
  border-radius: 3px;
  height: 6px;
  overflow: hidden;
}
.cex-home__launchpad-progress-fill {
  background: linear-gradient(
    90deg,
    var(--purple-color) 0,
    var(--green-color) 100%
  );
  border-radius: 3px;
  height: 100%;
  transition: width 0.3s ease;
}
.cex-home__launchpad-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cex-home__launchpad-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cex-home__launchpad-detail span:first-child {
  color: var(--second-text-color);
  font-size: 0.75rem;
}
.cex-home__launchpad-detail span:last-child {
  color: var(--first-text-color);
  font-size: 0.9rem;
  font-weight: 500;
}
.cex-home__launchpad-btn {
  background: var(--purple-color);
  border: none;
  border-radius: 8px;
  color: var(--white-color);
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem;
  transition: opacity 0.2s ease;
  width: 100%;
}
.cex-home__launchpad-btn:hover {
  opacity: 0.9;
}
.cex-home__launchpad-btn--upcoming {
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow-color);
  cursor: default;
}
.cex-home__launchpad-btn--upcoming:hover {
  opacity: 1;
}
.cex-home__features {
  margin-bottom: 4rem;
  padding: 3rem 0;
}
.cex-home__features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .cex-home__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cex-home__features-grid {
    grid-template-columns: 1fr;
  }
}
.cex-home__feature-card {
  border: 1px solid var(--border-line-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
}
.cex-home__feature-card:hover {
  border-color: var(--purple-color);
}
.cex-home__feature-card h3 {
  color: var(--first-text-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.cex-home__feature-card p {
  color: var(--second-text-color);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.cex-home__feature-icon {
  align-items: center;
  background: var(--rows-color);
  border-radius: 16px;
  color: var(--purple-color);
  display: inline-flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 64px;
}
.cex-home__cta {
  background: linear-gradient(
    135deg,
    #0c0a1d,
    #1a1640 25%,
    #231d54 50%,
    #1a1640 75%,
    #0c0a1d
  );
  border-radius: 20px;
  margin-bottom: 2rem;
  overflow: hidden;
  padding: 4rem 2rem;
  position: relative;
  text-align: center;
}
.cex-home__cta:before {
  animation: shimmer 3s infinite;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(0, 0%, 100%, 0.1) 50%,
    transparent
  );
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 200%;
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  to {
    left: 100%;
  }
}
.cex-home__cta-content {
  margin: 0 auto;
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.cex-home__cta-content h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
@media (max-width: 768px) {
  .cex-home__cta-content h2 {
    font-size: 1.5rem;
  }
}
.cex-home__cta-content p {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 2rem;
}
@media (max-width: 768px) {
  .cex-home__cta-content p {
    font-size: 1rem;
  }
}
.cex-home__cta .cex-home__btn--primary {
  background: #fff;
  color: #5f54aa;
}
.cex-home__cta .cex-home__btn--primary:hover {
  background: hsla(0, 0%, 100%, 0.9);
}
body.dark .cex-home__hero:before {
  background: linear-gradient(
    135deg,
    rgba(19, 23, 34, 0.94),
    rgba(19, 23, 34, 0.88) 50%,
    rgba(19, 23, 34, 0.8)
  );
}
body.dark .cex-home__hero:after {
  background: radial-gradient(
    ellipse at center,
    rgba(95, 84, 170, 0.15) 0,
    transparent 70%
  );
}
.launchpad-page {
  padding: 0 0 2rem;
}
.launchpad-page__header {
  align-items: center;
  border: 1px solid var(--border-line-color);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 2rem;
}
@media (max-width: 768px) {
  .launchpad-page__header {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.launchpad-page__header-content h1 {
  color: var(--first-text-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.launchpad-page__header-content p {
  color: var(--second-text-color);
  font-size: 0.95rem;
  margin: 0;
}
.launchpad-page__header-stats {
  display: flex;
  gap: 2rem;
}
.launchpad-page__stat {
  text-align: center;
}
.launchpad-page__stat-value {
  color: var(--purple-color);
  display: block;
  font-size: 2rem;
  font-weight: 700;
}
.launchpad-page__stat-label {
  color: var(--second-text-color);
  font-size: 0.85rem;
}
.launchpad-page__tabs {
  border: 1px solid var(--border-line-color);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  width: 100%;
}
@media (max-width: 576px) {
  .launchpad-page__tabs {
    width: 100%;
  }
}
.launchpad-page__tab {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--second-text-color);
  cursor: pointer;
  display: flex;
  font-size: 0.9rem;
  font-weight: 500;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  transition: all 0.2s ease;
}
.launchpad-page__tab svg {
  opacity: 0.7;
}
.launchpad-page__tab:hover {
  background: var(--rows-color);
  color: var(--first-text-color);
}
.launchpad-page__tab--active {
  background: var(--purple-color);
  color: var(--white-color);
}
.launchpad-page__tab--active svg {
  opacity: 1;
}
.launchpad-page__tab--active:hover {
  background: var(--purple-color);
  color: var(--white-color);
}
@media (max-width: 576px) {
  .launchpad-page__tab {
    flex: 1;
    font-size: 0.8rem;
    justify-content: center;
    padding: 0.6rem;
  }
  .launchpad-page__tab svg {
    display: none;
  }
}
.launchpad-page__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
@media (max-width: 576px) {
  .launchpad-page__grid {
    grid-template-columns: 1fr;
  }
}
.launchpad-page__empty {
  align-items: center;
  border: 2px dashed var(--border-line-color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  grid-column: 1/-1;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.launchpad-page__empty-icon {
  color: var(--second-text-color);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.launchpad-page__empty h3 {
  color: var(--first-text-color);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.launchpad-page__empty p {
  color: var(--second-text-color);
  margin: 0;
}
.launchpad-card {
  border: 1px solid var(--border-line-color);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}
.launchpad-card:hover {
  border-color: var(--purple-color);
  transform: translateY(-2px);
}
.launchpad-card__header {
  align-items: flex-start;
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: space-between;
  padding: 1.25rem;
}
.launchpad-card__coin {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}
.launchpad-card__logo {
  border-radius: 50%;
  height: 48px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 48px;
}
.launchpad-card__coin-info {
  display: flex;
  flex-direction: column;
}
.launchpad-card__symbol {
  color: var(--first-text-color);
  font-size: 1.1rem;
  font-weight: 600;
}
.launchpad-card__name {
  color: var(--second-text-color);
  font-size: 0.85rem;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.launchpad-card__status {
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
}
.launchpad-card__status--active {
  background: rgba(38, 201, 155, 0.15);
  color: var(--green-color);
}
.launchpad-card__status--upcoming {
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow-color);
}
.launchpad-card__status--closed {
  background: var(--rows-color);
  color: var(--second-text-color);
}
.launchpad-card__body {
  flex: 1;
  padding: 1.25rem;
}
.launchpad-card__progress {
  margin-bottom: 1.25rem;
}
.launchpad-card__progress-header {
  color: var(--second-text-color);
  display: flex;
  font-size: 0.85rem;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.launchpad-card__progress-percent {
  color: var(--purple-color);
  font-weight: 600;
}
.launchpad-card__progress-bar {
  background: var(--rows-color);
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
}
.launchpad-card__progress-fill {
  background: linear-gradient(
    90deg,
    var(--purple-color) 0,
    var(--green-color) 100%
  );
  border-radius: 4px;
  height: 100%;
  transition: width 0.3s ease;
}
.launchpad-card__progress-values {
  color: var(--second-text-color);
  display: flex;
  font-size: 0.75rem;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.launchpad-card__details {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.launchpad-card__detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.launchpad-card__detail-label {
  color: var(--second-text-color);
  font-size: 0.75rem;
}
.launchpad-card__detail-value {
  color: var(--first-text-color);
  font-size: 0.95rem;
  font-weight: 500;
}
.launchpad-card__detail-value--small {
  font-size: 0.8rem;
}
.launchpad-card__footer {
  border-top: 1px solid var(--border-line-color);
  padding: 1rem 1.25rem;
}
.launchpad-card__btn {
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem;
  transition: all 0.2s ease;
  width: 100%;
}
.launchpad-card__btn--primary {
  background: var(--purple-color);
  color: var(--white-color);
}
.launchpad-card__btn--primary:hover {
  opacity: 0.9;
}
.launchpad-card__btn--upcoming {
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow-color);
  cursor: default;
}
.launchpad-card__btn--closed {
  background: var(--rows-color);
  color: var(--second-text-color);
}
.launchpad-card__btn--closed:hover {
  border: 1px solid var(--border-line-color);
}
.launchpad-detail {
  margin: 0 auto;
  max-width: 1100px;
}
.launchpad-detail__back {
  margin-bottom: 1.5rem;
}
.launchpad-detail__back-link {
  align-items: center;
  color: var(--second-text-color);
  display: inline-flex;
  font-size: 0.9rem;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.launchpad-detail__back-link:hover {
  color: var(--purple-color);
}
.launchpad-detail__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 380px;
}
@media (max-width: 992px) {
  .launchpad-detail__grid {
    grid-template-columns: 1fr;
  }
}
.launchpad-detail__info {
  border: 1px solid var(--border-line-color);
  border-radius: 16px;
  padding: 1.5rem;
}
.launchpad-detail__header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.launchpad-detail__logo {
  border-radius: 50%;
  height: 64px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 64px;
}
.launchpad-detail__coin {
  flex: 1;
}
.launchpad-detail__coin h1 {
  color: var(--first-text-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.launchpad-detail__coin span {
  color: var(--second-text-color);
  font-size: 0.95rem;
}
.launchpad-detail__status {
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}
.launchpad-detail__status--active {
  background: rgba(38, 201, 155, 0.15);
  color: var(--green-color);
}
.launchpad-detail__status--upcoming {
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow-color);
}
.launchpad-detail__status--closed {
  background: var(--rows-color);
  color: var(--second-text-color);
}
.launchpad-detail__progress-section {
  background: var(--rows-color);
  border-radius: 12px;
  margin-bottom: 2rem;
  padding: 1.25rem;
}
.launchpad-detail__progress-header {
  color: var(--second-text-color);
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.launchpad-detail__progress-percent {
  color: var(--purple-color);
  font-size: 1.25rem;
  font-weight: 700;
}
.launchpad-detail__progress-bar {
  background: var(--border-line-color);
  border-radius: 6px;
  height: 12px;
  overflow: hidden;
}
.launchpad-detail__progress-fill {
  background: linear-gradient(
    90deg,
    var(--purple-color) 0,
    var(--green-color) 100%
  );
  border-radius: 6px;
  height: 100%;
  transition: width 0.3s ease;
}
.launchpad-detail__progress-values {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.launchpad-detail__progress-value {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.launchpad-detail__progress-value span:last-child {
  color: var(--first-text-color);
  font-weight: 600;
}
.launchpad-detail__progress-label {
  color: var(--second-text-color);
  font-size: 0.75rem;
}
.launchpad-detail__details {
  margin-bottom: 2rem;
}
.launchpad-detail__details h3 {
  color: var(--first-text-color);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.launchpad-detail__details-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 576px) {
  .launchpad-detail__details-grid {
    grid-template-columns: 1fr;
  }
}
.launchpad-detail__detail-item {
  align-items: center;
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.launchpad-detail__detail-item:nth-child(odd) {
  border-right: 1px solid var(--border-line-color);
  padding-right: 1rem;
}
@media (max-width: 576px) {
  .launchpad-detail__detail-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
}
.launchpad-detail__detail-item:nth-child(2n) {
  padding-left: 1rem;
}
@media (max-width: 576px) {
  .launchpad-detail__detail-item:nth-child(2n) {
    padding-left: 0;
  }
}
.launchpad-detail__detail-label {
  color: var(--second-text-color);
  font-size: 0.85rem;
}
.launchpad-detail__detail-value {
  color: var(--first-text-color);
  font-weight: 500;
  text-align: right;
}
.launchpad-detail__detail-value--highlight {
  color: var(--green-color);
}
.launchpad-detail__description h3 {
  color: var(--first-text-color);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.launchpad-detail__description-content {
  color: var(--second-text-color);
  font-size: 0.95rem;
  line-height: 1.7;
}
.launchpad-detail__description-content img {
  border-radius: 8px;
  margin: 1rem 0;
  max-width: 100%;
}
.launchpad-detail__description-content p {
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .launchpad-detail__buy {
    order: -1;
  }
}
.launchpad-detail__buy-card {
  border: 1px solid var(--border-line-color);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}
.launchpad-detail__buy-card h2 {
  color: var(--first-text-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}
.launchpad-detail__rate {
  background: var(--rows-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  text-align: center;
}
.launchpad-detail__rate-label {
  color: var(--second-text-color);
  font-size: 0.8rem;
}
.launchpad-detail__rate-value {
  color: var(--first-text-color);
  font-size: 1.1rem;
  font-weight: 600;
}
.launchpad-detail__cta {
  margin-bottom: 1rem;
}
.launchpad-detail__buy-btn {
  align-items: center;
  background: var(--purple-color);
  border: none;
  border-radius: 10px;
  color: var(--white-color);
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem;
  transition: opacity 0.2s ease;
  width: 100%;
}
.launchpad-detail__buy-btn:hover {
  opacity: 0.9;
}
.launchpad-detail__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.launchpad-detail__field label {
  color: var(--second-text-color);
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.launchpad-detail__input-wrapper {
  align-items: center;
  border: 1px solid var(--border-line-color);
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.launchpad-detail__input-wrapper:focus-within {
  border-color: var(--purple-color);
}
.launchpad-detail__input {
  background: transparent;
  border: none;
  color: var(--first-text-color);
  flex: 1;
  font-size: 1rem;
  outline: none;
  padding: 0.875rem 1rem;
}
.launchpad-detail__input::-moz-placeholder {
  color: var(--second-text-color);
  opacity: 0.6;
}
.launchpad-detail__input::placeholder {
  color: var(--second-text-color);
  opacity: 0.6;
}
.launchpad-detail__input-suffix {
  color: var(--second-text-color);
  font-weight: 500;
  padding: 0 1rem;
}
.launchpad-detail__receive {
  background: var(--rows-color);
  border-radius: 8px;
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}
.launchpad-detail__receive span:first-child {
  color: var(--second-text-color);
}
.launchpad-detail__receive-value {
  color: var(--green-color);
  font-weight: 600;
}
.launchpad-detail__submit {
  align-items: center;
  background: var(--purple-color);
  border: none;
  border-radius: 10px;
  color: var(--white-color);
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem;
  transition: opacity 0.2s ease;
  width: 100%;
}
.launchpad-detail__submit:hover {
  opacity: 0.9;
}
.launchpad-detail__submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.launchpad-detail__spinner {
  animation: spin 1s linear infinite;
  height: 20px;
  width: 20px;
}
.launchpad-detail__login {
  padding: 1rem 0;
  text-align: center;
}
.launchpad-detail__login p {
  color: var(--second-text-color);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.launchpad-detail__login-btn {
  align-items: center;
  background: var(--purple-color);
  border: none;
  border-radius: 10px;
  color: var(--white-color);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 600;
  justify-content: center;
  padding: 0.875rem 2rem;
  transition: opacity 0.2s ease;
}
.launchpad-detail__login-btn:hover {
  opacity: 0.9;
}
.launchpad-detail__upcoming {
  padding: 1.5rem;
  text-align: center;
}
.launchpad-detail__upcoming svg {
  color: var(--yellow-color);
  margin-bottom: 1rem;
}
.launchpad-detail__upcoming p {
  color: var(--first-text-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.launchpad-detail__upcoming span {
  color: var(--second-text-color);
  font-size: 0.9rem;
}
.launchpad-detail__closed {
  padding: 1.5rem;
  text-align: center;
}
.launchpad-detail__closed svg {
  color: var(--green-color);
  margin-bottom: 1rem;
}
.launchpad-detail__closed p {
  color: var(--second-text-color);
  font-size: 0.95rem;
  margin: 0;
}
.staking-page {
  padding: 0 0 2rem;
}
.staking-page__header {
  align-items: center;
  border: 1px solid var(--border-line-color);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 2rem;
}
@media (max-width: 768px) {
  .staking-page__header {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.staking-page__header-content h1 {
  color: var(--first-text-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.staking-page__header-content p {
  color: var(--second-text-color);
  font-size: 0.95rem;
  margin: 0;
}
.staking-page__header-stats {
  display: flex;
  gap: 2rem;
}
.staking-page__stat {
  text-align: center;
}
.staking-page__stat-value {
  color: var(--purple-color);
  display: block;
  font-size: 2rem;
  font-weight: 700;
}
.staking-page__stat-label {
  color: var(--second-text-color);
  font-size: 0.85rem;
}
.staking-page__tabs {
  border: 1px solid var(--border-line-color);
  border-radius: 12px;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  min-width: 100%;
  padding: 0.5rem;
  width: 100%;
}
@media (max-width: 576px) {
  .staking-page__tabs {
    width: 100%;
  }
}
.staking-page__tab {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--second-text-color);
  cursor: pointer;
  display: flex;
  font-size: 0.9rem;
  font-weight: 500;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  transition: all 0.2s ease;
}
.staking-page__tab svg {
  opacity: 0.7;
}
.staking-page__tab:hover {
  background: var(--rows-color);
  color: var(--first-text-color);
}
.staking-page__tab--active {
  background: var(--purple-color);
  color: var(--white-color);
}
.staking-page__tab--active svg {
  opacity: 1;
}
.staking-page__tab--active:hover {
  background: var(--purple-color);
  color: var(--white-color);
}
@media (max-width: 576px) {
  .staking-page__tab {
    flex: 1;
    font-size: 0.85rem;
    justify-content: center;
    padding: 0.75rem;
  }
}
.staking-page__note {
  color: var(--second-text-color);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}
.staking-page__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media (max-width: 576px) {
  .staking-page__grid {
    grid-template-columns: 1fr;
  }
}
.staking-page__my-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.staking-page__empty {
  align-items: center;
  border: 2px dashed var(--border-line-color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  grid-column: 1/-1;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.staking-page__empty-icon {
  color: var(--second-text-color);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.staking-page__empty h3 {
  color: var(--first-text-color);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.staking-page__empty p {
  color: var(--second-text-color);
  margin: 0;
}
.staking-card {
  border: 1px solid var(--border-line-color);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}
.staking-card:hover {
  border-color: var(--purple-color);
  transform: translateY(-2px);
}
.staking-card__header {
  align-items: flex-start;
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: space-between;
  padding: 1.25rem;
}
.staking-card__coin {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}
.staking-card__logo {
  border-radius: 50%;
  height: 48px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 48px;
}
.staking-card__coin-info {
  display: flex;
  flex-direction: column;
}
.staking-card__symbol {
  color: var(--first-text-color);
  font-size: 1.1rem;
  font-weight: 600;
}
.staking-card__name {
  color: var(--second-text-color);
  font-size: 0.85rem;
}
.staking-card__status {
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
}
.staking-card__status--active {
  background: rgba(38, 201, 155, 0.15);
  color: var(--green-color);
}
.staking-card__status--sold {
  background: rgba(255, 193, 7, 0.15);
  color: var(--yellow-color);
}
.staking-card__body {
  flex: 1;
  padding: 1.25rem;
}
.staking-card__apy {
  background: var(--rows-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
}
.staking-card__apy-label {
  color: var(--second-text-color);
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.staking-card__apy-value {
  color: var(--green-color);
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}
.staking-card__details {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.staking-card__detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.staking-card__detail-label {
  color: var(--second-text-color);
  font-size: 0.75rem;
}
.staking-card__detail-value {
  color: var(--first-text-color);
  font-size: 0.95rem;
  font-weight: 500;
}
.staking-card__footer {
  border-top: 1px solid var(--border-line-color);
  padding: 1rem 1.25rem;
}
.staking-card__btn {
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem;
  transition: all 0.2s ease;
  width: 100%;
}
.staking-card__btn--primary {
  background: var(--purple-color);
  color: var(--white-color);
}
.staking-card__btn--primary:hover {
  opacity: 0.9;
}
.staking-card__btn--secondary {
  background: var(--rows-color);
  color: var(--second-text-color);
  cursor: not-allowed;
}
.my-stake-card {
  border: 1px solid var(--border-line-color);
  border-radius: 16px;
  overflow: hidden;
}
.my-stake-card__header {
  align-items: center;
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: space-between;
  padding: 1.25rem;
}
.my-stake-card__coin {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}
.my-stake-card__logo {
  border-radius: 50%;
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 40px;
}
.my-stake-card__coin-info {
  display: flex;
  flex-direction: column;
}
.my-stake-card__symbol {
  color: var(--first-text-color);
  font-size: 1rem;
  font-weight: 600;
}
.my-stake-card__name {
  color: var(--second-text-color);
  font-size: 0.8rem;
}
.my-stake-card__status {
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
}
.my-stake-card__status--active {
  background: rgba(38, 201, 155, 0.15);
  color: var(--green-color);
}
.my-stake-card__status--completed {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}
.my-stake-card__status--redeemed {
  background: var(--rows-color);
  color: var(--second-text-color);
}
.my-stake-card__body {
  padding: 1.25rem;
}
.my-stake-card__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .my-stake-card__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.my-stake-card__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.my-stake-card__item--full {
  grid-column: span 2;
}
.my-stake-card__item-label {
  color: var(--second-text-color);
  font-size: 0.75rem;
}
.my-stake-card__item-value {
  color: var(--first-text-color);
  font-size: 0.95rem;
  font-weight: 500;
}
.my-stake-card__item-value--highlight {
  color: var(--purple-color);
}
.my-stake-card__item-value--reward {
  color: var(--green-color);
}
.my-stake-card__footer {
  border-top: 1px solid var(--border-line-color);
  padding: 1rem 1.25rem;
}
.my-stake-card__btn {
  align-items: center;
  background: transparent;
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  color: var(--first-text-color);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 500;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  transition: all 0.2s ease;
}
.my-stake-card__btn:hover {
  border-color: var(--purple-color);
  color: var(--purple-color);
}
.staking-detail {
  margin: 0 auto;
  max-width: 1100px;
}
.staking-detail__back {
  margin-bottom: 1.5rem;
}
.staking-detail__back-link {
  align-items: center;
  color: var(--second-text-color);
  display: inline-flex;
  font-size: 0.9rem;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.staking-detail__back-link:hover {
  color: var(--purple-color);
}
.staking-detail__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 400px;
}
@media (max-width: 992px) {
  .staking-detail__grid {
    grid-template-columns: 1fr;
  }
}
.staking-detail__info {
  border: 1px solid var(--border-line-color);
  border-radius: 16px;
  padding: 1.5rem;
}
.staking-detail__header {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.staking-detail__logo {
  border-radius: 50%;
  height: 64px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 64px;
}
.staking-detail__coin h1 {
  color: var(--first-text-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}
.staking-detail__coin span {
  color: var(--second-text-color);
  font-size: 0.95rem;
}
.staking-detail__apy-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  margin-bottom: 2rem;
}
.staking-detail__apy-card {
  border: 2px solid var(--border-line-color);
  border-radius: 12px;
  cursor: pointer;
  padding: 1rem;
  text-align: center;
  transition: all 0.2s ease;
}
.staking-detail__apy-card:hover {
  border-color: var(--purple-color);
}
.staking-detail__apy-card--selected {
  background: var(--rows-color);
  border-color: var(--purple-color);
}
.staking-detail__apy-days {
  color: var(--second-text-color);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.staking-detail__apy-value {
  color: var(--green-color);
  font-size: 1.25rem;
  font-weight: 700;
}
.staking-detail__apy-label {
  color: var(--second-text-color);
  font-size: 0.7rem;
}
.staking-detail__details {
  border-top: 1px solid var(--border-line-color);
  padding-top: 1.5rem;
}
.staking-detail__detail-item {
  align-items: center;
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.staking-detail__detail-label {
  color: var(--second-text-color);
  font-size: 0.9rem;
}
.staking-detail__detail-value {
  color: var(--first-text-color);
  font-weight: 500;
}
@media (max-width: 992px) {
  .staking-detail__calculator {
    order: -1;
  }
}
.staking-detail__calc-card {
  border: 1px solid var(--border-line-color);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}
.staking-detail__calc-card h2 {
  color: var(--first-text-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}
.staking-detail__balance {
  align-items: center;
  background: var(--rows-color);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1rem;
}
.staking-detail__balance-label {
  color: var(--second-text-color);
  font-size: 0.85rem;
}
.staking-detail__balance-value {
  color: var(--first-text-color);
  font-weight: 600;
}
.staking-detail__field {
  margin-bottom: 1.5rem;
}
.staking-detail__field label {
  color: var(--second-text-color);
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.staking-detail__period-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.staking-detail__period-btn {
  background: transparent;
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  color: var(--first-text-color);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  transition: all 0.2s ease;
}
.staking-detail__period-btn:hover {
  border-color: var(--purple-color);
}
.staking-detail__period-btn--active {
  background: var(--purple-color);
  border-color: var(--purple-color);
  color: var(--white-color);
}
.staking-detail__input-wrapper {
  align-items: center;
  border: 1px solid var(--border-line-color);
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.staking-detail__input-wrapper:focus-within {
  border-color: var(--purple-color);
}
.staking-detail__input {
  background: transparent;
  border: none;
  color: var(--first-text-color);
  flex: 1;
  font-size: 1rem;
  outline: none;
  padding: 0.875rem 1rem;
}
.staking-detail__input::-moz-placeholder {
  color: var(--second-text-color);
  opacity: 0.6;
}
.staking-detail__input::placeholder {
  color: var(--second-text-color);
  opacity: 0.6;
}
.staking-detail__input-suffix {
  color: var(--second-text-color);
  font-weight: 500;
  padding: 0 1rem;
}
.staking-detail__summary {
  background: var(--rows-color);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  padding: 1rem;
}
.staking-detail__summary-item {
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.staking-detail__summary-item span:first-child {
  color: var(--second-text-color);
}
.staking-detail__summary-value {
  color: var(--first-text-color);
  font-weight: 500;
}
.staking-detail__summary-value--highlight {
  color: var(--green-color);
  font-weight: 600;
}
.staking-detail__submit {
  align-items: center;
  background: var(--purple-color);
  border: none;
  border-radius: 10px;
  color: var(--white-color);
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem;
  transition: opacity 0.2s ease;
  width: 100%;
}
.staking-detail__submit:hover {
  opacity: 0.9;
}
.staking-detail__submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.staking-detail__spinner {
  animation: spin 1s linear infinite;
  height: 20px;
  width: 20px;
}
#p2p-post-create .p2p-post-wrapper {
  border-radius: 5px;
  margin-top: 25px;
}
#p2p-post-create .p2p-post-wrapper .p2p-post-tab-buttons button {
  padding: 15px 0;
}
#p2p-post-create .p2p-post-wrapper .p2p-post-tab-buttons button.active {
  background: var(--purple-second-color);
  font-weight: 700;
}
#p2p-post-create .p2p-post-wrapper .p2p-post-tab-content .components-filter {
  margin-bottom: 2rem;
}
#p2p-post-create .p2p-field-width {
  display: flex;
  max-width: 300px;
}
#p2p-post-create .p2p-post-next-btn {
  margin-top: 50px;
}
#p2p-post-create .p2p-post-next-btn button {
  margin-bottom: 20px;
  max-width: 250px;
}
#p2p-post-create .p2p-asset-arrow {
  margin-left: 13px;
  margin-right: 13px;
  margin-top: 30px;
}
#p2p-post-create .components-filter__item {
  margin-right: 0;
  width: 50%;
}
#p2p-post-create .components-filter__item .filter-select {
  height: 55px;
  padding: 0 1.5rem;
}
#p2p-post-create .components-filter__item .filter-select:focus {
  border: 1px solid var(--border-line-color);
}
#p2p-post-create .custom-input-group {
  position: relative;
}
#p2p-post-create .custom-input-group input {
  padding-right: 37px !important;
}
#p2p-post-create .custom-input-group span {
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  right: 25px;
  top: 18px;
}
#p2p-post-create .p2p-result-price-group {
  margin-top: 40px;
}
#p2p-post-create .p2p-result-price-group p {
  font-size: 24px;
  margin-top: 10px;
}
.p2p-order-view {
  gap: 32px;
}
.p2p-order-view .p2p-headline {
  font-size: var(--big-font__size);
}
.p2p-order-view .p2p-headline-info {
  margin-top: 25px;
}
.p2p-order-view .text-headline {
  color: var(--second-fourth-color);
  margin-bottom: 10px;
}
.p2p-order-view .p2p-headline-method {
  margin-top: 25px;
}
.p2p-create-steps {
  display: flex;
}
.p2p-create-steps .p2p-steps-line {
  align-self: flex-end;
  background: var(--table-head-color);
  bottom: 20px;
  box-sizing: border-box;
  flex: 1 1 0%;
  height: 0;
  margin: 0;
  min-width: 0;
  position: relative;
}
.p2p-create-steps .p2p-steps-line:after {
  background-color: inherit;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p2p-create-steps .p2p-steps-line-np {
  bottom: 12px;
}
.p2p-create-steps .p2p-steps-step {
  align-items: center;
  box-sizing: border-box;
  color: #707a8a;
  display: flex;
  flex-grow: 0;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding: 8px;
  position: static;
  text-align: center;
}
.p2p-create-steps .p2p-steps-step-np {
  padding: 0;
}
.p2p-create-steps .p2p-steps-step-inner {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
}
.p2p-create-steps .p2p-steps-step-marker {
  background: var(--table-head-color);
  border-radius: 100%;
  height: 24px;
  line-height: 24px;
  margin-top: 20px;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 24px;
}
.p2p-create-steps .p2p-steps-step-marker.active {
  background-color: var(--yellow-color) !important;
  color: var(--blue-dark-color);
}
.p2p-create-steps .p2p-steps-step-marker .p2p-create-step-marker-label {
  box-sizing: border-box;
  font-size: 12px;
  margin: 0;
  min-width: 0;
}
.p2p-create-steps .p2p-steps-step-marker .p2p-create-step-marker-label:after {
  background: var(--table-head-color);
  content: "";
  height: 4px;
  left: 100%;
  margin-left: 8px;
  position: absolute;
  top: 12px;
  width: 9999px;
}
.p2p-create-steps .p2p-steps-step-marker .p2p-create-step-marker-label-extra {
  box-sizing: border-box;
  font-size: 12px;
  margin: 0;
  min-width: 0;
}
.p2p-create-steps
  .p2p-steps-step-marker
  .p2p-create-step-marker-label-extra:before {
  background: var(--table-head-color);
  content: "";
  height: 4px;
  margin-right: 8px;
  position: absolute;
  right: 100%;
  top: 12px;
  width: 9999px;
}
@media screen and (max-width: 1000px) {
  .header__row {
    padding: 0 1rem !important;
  }
  .header-nav {
    top: 1.4rem !important;
  }
  .qr-container {
    margin: 0 auto;
  }
  .qr-container div {
    width: 100% !important;
  }
  .qr-container div img {
    margin: 0 auto;
    max-width: 150px;
    width: 100%;
  }
  .header-home {
    display: block !important;
  }
  .markets-tabs .tabs-search {
    margin-top: 1rem !important;
  }
  .articles-titles {
    margin: 0 !important;
  }
  .articles-titles .flex-wrap {
    margin-bottom: 1rem !important;
  }
  #body .widget-stats__block-10 {
    display: block !important;
  }
  #body .widget-stats__block-10 .widget-stats__list {
    display: flex !important;
    margin-top: 1rem !important;
  }
  #body .widget-stats__block-10 .widget-stats__list .widget-stats__list-item {
    margin-right: 5px !important;
  }
  #body .widget-stats__block-1 {
    display: block !important;
  }
  .components-title {
    text-align: center;
  }
  .components-title h2 {
    font-size: 1.5rem !important;
    margin: 1rem 0 !important;
  }
  .account-overview-tab {
    display: flex;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .account-overview-tab .sub-tabs-nav__item {
    padding: 5px 0 !important;
  }
  .account-overview-tab .item {
    font-size: 1rem;
    font-weight: 500;
  }
  .account-overview-tab .item .item-link {
    margin-right: 0.5rem;
    padding: 0.5rem 0;
  }
  .account-overview-tab .item .item-link.item-link--active {
    border-bottom: 2px solid var(--yellow-color);
  }
  .account-overview-tab .item .item-link .item-link__text {
    color: var(--dark-text-color2);
  }
  .dark .header-home {
    background-color: var(--blue-dark-color);
  }
  .head-carousel {
    margin-top: 5.5rem !important;
  }
  .hidden-in-mobile {
    display: none !important;
  }
  .mobile-order-1 {
    margin-top: 1rem;
    order: 1;
    padding-left: 0.5rem;
    text-align: left;
  }
  .hooper {
    height: auto !important;
  }
  .header-home {
    background-color: var(--blue-dark-color);
  }
  .head {
    background-color: transparent;
    background-image: none;
  }
  .head-carousel {
    padding: 0;
  }
  .table-home__row {
    margin-top: 1rem;
  }
  .table-home__row .table-home__link,
  .table-home__row .table-home__title {
    display: none;
  }
  .markets-tabs-list {
    margin-top: 2rem !important;
  }
  .markets-tabs-list .table-home__row {
    padding: 0;
  }
  .markets-tabs-list .table-list td:first-child {
    padding: 6px 0 !important;
  }
  .markets-tabs-list .table-list td:nth-child(3) .table-list__value div {
    font-size: 0.7rem !important;
  }
  .markets-tabs-list
    .table-list
    td:nth-child(3)
    .table-list__value
    .color-sell {
    background: var(--red-color) !important;
    color: #fff !important;
  }
  .markets-tabs-list .table-list td:nth-child(3) .table-list__value .color-buy {
    background: var(--green-color) !important;
    color: #fff !important;
  }
}
@media screen and (min-width: 1000px) {
  .hidden-in-desktop {
    display: none !important;
  }
}
.left-header-icon {
  cursor: pointer;
}
.shortcut-section {
  border-bottom: 1px solid var(--border-line-color);
  margin-top: 0.5rem;
  padding-bottom: 20px;
}
.shortcut-section .shortcut-item .shortcut-item__icon {
  width: 100%;
}
.shortcut-section .shortcut-item .shortcut-item__icon .filled {
  fill: var(--dark-text-color2);
  display: block;
  height: 32px;
  margin: 0 auto;
  width: 32px;
}
.shortcut-section .shortcut-item .shortcut-item__icon .stroked {
  display: block;
  height: 32px;
  margin: 0 auto;
  width: 32px;
}
.shortcut-section .shortcut-item .shortcut-item__icon .stroked path {
  stroke: var(--dark-text-color2);
}
.shortcut-section .shortcut-item .shortcut-item__title {
  display: block;
  margin-top: 0.25rem;
  text-align: center;
}
.market-filter {
  display: flex;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.market-filter .market-filter-item {
  cursor: pointer;
  margin-right: 1.5rem;
}
.market-filter .market-filter-item.active {
  border-bottom: 1px solid var(--yellow-color);
  padding-bottom: 0.25rem;
}
body {
  background-color: var(--sixth-color);
  color: var(--blue-dark-color);
  font-family: Rubik, sans-serif;
  font-weight: 400;
}
* {
  -webkit-tap-highlight-color: transparent;
}
.main-logo {
  max-width: 140px;
}
.close-item,
.mobbar,
.mobile-head-title {
  display: none;
}
.mob-show {
  display: none !important;
}
.mob-hide {
  display: block !important;
}
.swap-inner {
  margin: 0 auto;
  width: 450px;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.color-sell {
  color: var(--red-color);
}
.color-buy {
  color: var(--green-color);
}
.color-gray {
  color: var(--gray-color);
}
.color-default {
  color: var(--blue-dark-color);
}
div.mobile-body .markets-tabs {
  background: transparent;
  border-bottom: none;
  display: block;
  margin-bottom: 1rem;
  margin-top: 0;
  padding: 0;
}
div.mobile-body .components-title h2 {
  margin: 2rem 0 3rem;
}
div.mobile-body .markets-tabs .tabs-left {
  display: block;
}
div.mobile-body .markets-tabs .tabs-nav {
  align-items: center;
  color: var(--white-color);
  cursor: pointer;
  display: flex;
  flex-direction: row !important;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  overflow-x: none;
}
div.mobile-body .markets-tabs .tabs-nav__item {
  background-color: #eceded;
  border-radius: 9999px;
  color: var(--dark-body-color);
  display: flex;
  margin-right: 1rem;
  max-width: auto;
  min-width: 80px;
  padding: 0.5rem;
  position: relative;
  text-align: center;
}
div.mobile-body .markets-tabs .tabs-nav__item h4 {
  margin: 0 auto;
}
.block-qr-bg {
  background: #f1f1f1;
}
.d-table {
  background: #fff;
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
body.dark .block-qr-bg {
  background: var(--blue-dark-color);
}
body.dark div.mobile-body .markets-tabs .tabs-nav__item {
  background-color: #1d2234;
  color: var(--dark-text-color);
}
body.dark .staking-inner__calculator button {
  background: var(--blue-dark-color);
  border: 1px solid var(--blue-dark-color);
  color: var(--white-color);
}
body.dark .futures-select option {
  background: var(--rows-color);
}
body.dark .merchant-input,
body.dark .merchant-modal {
  background: var(--dark-body-color) !important;
}
.merchant-container .merchant-table tr {
  border-bottom: 1px solid var(--border-line-color);
}
.merchant-container .border,
.merchant-container .rounded-card {
  border: 1px solid var(--border-line-color);
}
.merchant-container .border-b {
  border-bottom: 1px solid var(--border-line-color);
}
.merchant-container .border-t {
  border-top: 1px solid var(--border-line-color);
}
.merchant-container .components-filter .components-filter__item label {
  display: block;
  margin-bottom: 10px;
}
.merchant-container .components-filter .components-filter__item input {
  border-radius: 35px;
  width: 100%;
}
.merchant-modal {
  background: var(--white-color) !important;
}
.futures-select {
  background: transparent;
  border: none;
  min-width: 200px;
  outline: none;
  padding-right: 10px;
  text-align: right;
}
.futures-select:focus,
.futures-select:hover {
  border: none;
  box-shadow: none !important;
  outline: none;
}
.futures-select option {
  padding: 5px;
}
.staking-inner__calculator button {
  background: #eceded;
  border: 1px solid #eceded;
  color: var(--dark-body-color);
}
.staking-inner__calculator button:hover,
body .bg-active {
  color: var(--white-color);
}
body .bg-active {
  background: var(--purple-color) !important;
}
.mobile-body .item-language__active div {
  color: var(--yellow-color);
}
.chart-flex-row {
  flex-direction: column !important;
}
.no-borders tr {
  border-bottom: none !important;
}
div.mobile-body .markets-tabs .tabs-nav__active {
  background-color: var(--yellow-color) !important;
  color: #131722 !important;
}
div.mobile-body .markets-tabs .tabs-nav h4 {
  font-size: 14px;
  width: -moz-max-content;
  width: max-content;
}
div.mobile-body .markets-tabs .tabs-search {
  background: #eceded;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  padding: 0 15px;
  width: 100%;
}
body.dark div.mobile-body .markets-tabs .tabs-search {
  background: #1d2234;
}
div.mobile-body .markets-tabs .tabs-search input {
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  color: var(--first-text-color);
  display: block;
  font-size: 12px;
  outline: none;
  padding: 0.2rem 0.5rem;
  width: 100%;
}
div.mobile-body .markets-tabs .tabs-search .tabs-search__icon {
  display: inline-block;
  height: 17px;
  margin-right: 0;
  position: relative;
  top: 9px;
  width: 17px;
}
div.mobile-body .markets-tabs-list {
  background: transparent;
  display: block;
  margin-bottom: 1rem;
  margin-top: 0;
  padding: 0;
}
div.mobile-body .markets-tabs-list .mob-table-markets .table-sort {
  display: table-header-group;
}
div.mobile-body .markets-tabs-list .table-list td {
  font-size: 12px;
}
div.mobile-body
  .markets-tabs-list
  .table-list
  td:nth-child(3)
  .table-list__value
  div {
  background: rgba(91, 91, 91, 0.1);
  border-radius: 3px;
  -moz-border-radius: 3px;
  color: #bdbebf;
  display: block;
  font-size: 11px;
  padding: 7px 3px;
  text-align: center;
  width: 70px;
  word-break: keep-all;
}
div.mobile-body
  .markets-tabs-list
  .table-list
  td:nth-child(3)
  .table-list__value
  .color-sell {
  background: #3d2934;
  color: #de7b90;
}
div.mobile-body
  .markets-tabs-list
  .table-list
  td:nth-child(3)
  .table-list__value
  .color-buy {
  background: #1b373a;
  color: #4ec3a8;
}
div.mobile-body .markets-tabs-list .table-list__subtitle {
  display: none;
}
div.mobile-body .markets-tabs-list td:first-child .table-list__value {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
div.mobile-body .markets-tabs-list .table-list__image {
  align-items: center;
  display: flex;
  height: 25px;
  margin-left: 0;
  margin-right: 10px;
  width: 25px;
}
.markets-tabs-list .table-list .quote-symbol {
  color: #898988;
  display: block;
  font-size: 12px;
}
.w-full-force {
  width: 100% !important;
}
.w-flex-force button {
  display: flex !important;
}
div.mobile-body
  .markets-tabs-list
  .table-sort
  th:nth-child(2)
  .table-sort__value,
div.mobile-body
  .markets-tabs-list
  .table-sort
  th:nth-child(3)
  .table-sort__value {
  justify-content: flex-end;
}
div.mobile-body .markets-tabs-list .table-list td:first-child {
  padding: 2px 0;
}
div.mobile-body .markets-tabs-list .table-list td {
  background-color: transparent;
  display: table-cell;
  margin: 0;
  padding: 0;
}
div.mobile-body .markets-tabs-list .title-icon__name,
div.mobile-body .markets-tabs-list .title-icon__name .quote-symbol {
  font-size: 12px;
}
div.mobile-body .small-market-title {
  font-size: 22px;
  margin: 2rem 0 3rem;
}
div.mobile-body .table-result__notfound-icon img {
  margin: 0 auto;
}
div.mobile-body .markets-tabs-list .table-sort__title {
  font-size: 11px;
}
div.mobile-body .markets-tabs-list .table-result__notfound-text {
  font-size: 12px;
}
div.mobile-body
  .markets-tabs-list
  .table-list
  td:nth-child(2)
  .table-list__value,
div.mobile-body
  .markets-tabs-list
  .table-list
  td:nth-child(3)
  .table-list__value {
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 1001px) {
  .gxhead-link:hover {
    background: hsla(0, 0%, 100%, 0.1);
  }
}
@media screen and (max-width: 1000px) {
  div.mobile-body .markets-tabs-list .mob-table-markets .mob-hide-alt {
    display: none !important;
  }
  .on-ramp-swap {
    right: 0 !important;
    width: 100% !important;
  }
  .mob-table-markets {
    margin-bottom: 70px;
  }
  .mobile-merchant-dashboard-top {
    display: block;
  }
  .mobile-merchant-dashboard-top .row-2 {
    margin-top: 10px;
  }
}
.no-bordered-select select,
.no-bordered-select select:active,
.no-bordered-select select:focus,
.no-bordered-select select:hover {
  border: none !important;
}
.launchpad-detail,
.launchpad-page,
.staking-detail,
.staking-page {
  margin-top: 70px;
}
.launchpad-detail .launchpad-detail__input,
.staking-detail .staking-detail__input {
  box-shadow: none !important;
}
@media screen and (max-width: 1000px) {
  .theme-switcher {
    margin-bottom: 60px;
  }
  .launchpad-detail,
  .launchpad-page,
  .staking-detail,
  .staking-page {
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .table-list .table-list__value {
    padding: 0.2rem 0 0.2rem 0.2rem !important;
  }
  .text-balance {
    text-align: left;
  }
  .module-orderbook__list .__panel {
    margin-right: 0 !important;
  }
  .module-orderbook__list .__rail-is-vertical {
    display: none !important;
  }
  .trade .module-container__block {
    width: 100% !important;
  }
  .trade .module-container__row {
    display: block !important;
  }
}
.chart-source {
  margin-bottom: 10px !important;
}
.chart-source span {
  cursor: pointer;
}
.chart-source span.active {
  color: var(--yellow-color);
}
.full-block-fields {
  margin-bottom: 0;
}
.full-block-fields .components-filter__item {
  width: 100%;
}
.full-block-fields .network-select {
  padding: 16px 18px;
}
.full-block-fields ul {
  list-style-type: none !important;
}
.full-block-fields .qr-container img {
  border: 2px solid var(--white-color);
  border-radius: 10px;
  padding: 5px;
}
.gsi-material-button {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid #747775;
  border-radius: 4px;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: Roboto, arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  max-width: 400px;
  min-width: -moz-min-content;
  min-width: min-content;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  transition:
    background-color 0.218s,
    border-color 0.218s,
    box-shadow 0.218s;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
}
.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}
.gsi-material-button .gsi-material-button-content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}
.gsi-material-button .gsi-material-button-contents {
  flex-grow: 0;
  font-family: Roboto, arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.gsi-material-button .gsi-material-button-state {
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.218s;
}
.gsi-material-button:disabled {
  background-color: hsla(0, 0%, 100%, 0.38);
  border-color: rgba(31, 31, 31, 0.122);
  cursor: default;
}
.gsi-material-button:disabled .gsi-material-button-contents,
.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}
.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}
.gsi-material-button:not(:disabled):hover {
  box-shadow:
    0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}
.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}
.widget-market-trades__list-item__time-larger,
.widget-market-trades__title-time-larger {
  width: 42%;
}
.custom-auth-block {
  display: flex;
}
.custom-auth-block .block-button {
  margin-top: 1rem;
  position: relative;
  width: calc(50% - 10px);
}
.custom-auth-block .block-button a {
  border: 1px solid var(--tr-hover-color);
  border-radius: 9999px;
  display: inline-block;
  outline: none;
  padding: 1rem !important;
  text-align: center;
  width: 100%;
}
body.dark .modal-container .bg-white {
  background-color: var(--purple-third-color) !important;
  color: var(--white-color);
}
body.dark .custom-auth-block .block-button a {
  background-color: var(--purple-fourth-color);
  border: 1px solid var(--purple-fourth-color);
  color: var(--white-color);
}
body.dark .custom-auth-block .twitter-auth-btn svg path {
  fill: #fff;
}
body.dark .block-button-v3 {
  border: 1px solid #262a40;
}
.block-button-v3 {
  background-color: transparent;
  border: 1px solid var(--border-line-color);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  min-width: 100px;
  outline: none;
  padding: 0.5rem 1rem;
  text-align: center;
  width: 100%;
}
.block-button-v3:hover {
  border: 1px solid var(--yellow-color) !important;
}
.block-button-v3:hover svg path {
  stroke: var(--yellow-color);
}
.block-button-v3 svg {
  margin-right: 5px;
  width: 16px;
}
.block-button-v3 svg path {
  stroke: var(--dark-text-color);
}
@media screen and (max-width: 350px) {
  .block-button-v3 {
    min-width: 80px !important;
  }
  .block-button-v3 svg {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .custom-auth-block {
    display: block;
  }
  .custom-auth-block .block-button {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .option-w-full-container {
    display: block !important;
  }
  .option-no-padding {
    padding-top: 20px;
  }
  .option-no-padding .module-orderopen {
    padding: 0 !important;
  }
}
.module-orderopen__navigation_v2 {
  padding-left: 30px;
}
.module-orderopen__navigation_v2 .module-orderopen__navigation-title:hover {
  color: inherit;
}
.module-orderopen__navigation_v2 .module-orderopen__navigation-active {
  border-bottom-color: var(--yellow-color);
}
.table-list__value-v2 {
  display: block;
}
.table-list__value-v2 .table-list__text-smaller {
  color: var(--second-fourth-color);
  font-size: 13px;
  margin-top: 5px;
}
.slogan-text-bottom {
  font-size: 14px;
  margin-top: 15px;
}
.btn-add {
  background: var(--yellow-color);
  border-radius: 9999px;
  color: #1c1c1c;
  cursor: pointer;
  display: block;
  margin-right: 10px;
  min-width: 100px;
  padding: 6px 14px;
  text-align: center;
}
.btn-add svg {
  height: 15px;
  width: 15px;
}
.btn-add span,
.btn-add svg {
  display: inline-block;
}
.btn-add:hover {
  opacity: 0.8;
}
.btn-add-label {
  background: var(--btn-secondary-color);
  color: var(--btn-secondary-text-color);
  padding: 6px 8px 6px 15px;
}
.btn-add-label svg {
  margin-left: 15px;
}
.components-filter__item-v2 {
  width: 100% !important;
}
.btn-delete {
  transform: rotate(35deg);
}
.payment-method-wrapper-modal {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 15px;
}
.checkbox-select-group {
  border: 1px solid var(--border-select-color);
  border-radius: 5px;
  margin: 15px 0;
  padding: 10px;
}
.dark .payment-method-title {
  color: var(--white-color);
}
.payment-method-label {
  border-radius: 2px;
  box-sizing: border-box;
  flex-shrink: 0;
  height: 14px;
  margin-right: 8px;
  margin-top: 3px;
  min-width: 0;
  width: 3px;
}
.payment-method-label.blue {
  background: #0c3299;
}
input[type="checkbox"],
input[type="radio"] {
  --tw-shadow: none !important;
  box-shadow: none !important;
}
input[type="checkbox"] {
  background: var(--checkbox-bg);
  border: 1px solid var(--checkbox-border);
}
input[type="checkbox"][disabled] {
  background: var(--disabled-checkbox);
}
.filter-textarea {
  height: 100px !important;
  min-height: 100px;
  padding: 1rem !important;
}
.user-status__item a {
  display: block;
  margin: 30px auto;
  max-width: 150px;
  text-align: center;
}
.btn-wrapper {
  margin-right: 15px;
  min-width: 150px;
}
.components-filter__button:hover {
  background: var(--purple-second-color);
  opacity: 0.7;
}
.components-filter__button-v2,
.components-filter__button-v2:hover {
  background-color: var(--purple-color);
}
.components-filter__button-v2:hover {
  opacity: 0.7;
}
.user-sub-menu {
  margin: 5.2rem 0 0;
}
.user-sub-menu .user-sub-menu-item {
  cursor: pointer;
  display: flex;
  font-size: 16px;
  margin-left: 0;
  margin-right: 20px;
  padding: 10px 0;
  position: relative;
}
.user-sub-menu .user-sub-menu-item:hover {
  color: var(--yellow-color);
}
.user-sub-menu .user-sub-menu-item:hover .user-sub-menu-icon circle:hover,
.user-sub-menu .user-sub-menu-item:hover .user-sub-menu-icon path:hover,
.user-sub-menu .user-sub-menu-item:hover .user-sub-menu-icon rect:hover {
  stroke: var(--yellow-color);
}
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon {
  margin-right: 5px;
}
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon cirlce,
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon path,
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon rect {
  stroke: var(--first-text-color);
}
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon-thin {
  margin-right: 5px;
  margin-top: 2px;
}
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon-thin .fill-must {
  fill: var(--first-text-color);
}
.user-sub-menu .user-sub-menu-item .header-dropdown__list {
  background-color: #f5f5f5;
  top: 44px;
}
.user-sub-menu .user-sub-menu-item .header-dropdown__list a:hover {
  background-color: #ebebeb;
}
.user-sub-menu
  .user-sub-menu-item
  .header-dropdown__list
  .header-dropdown__list-color {
  stroke: var(--blue-dark-color);
}
.user-sub-menu
  .user-sub-menu-item
  .header-dropdown__list
  .header-dropdown__list-title {
  color: var(--blue-dark-color);
}
body.dark .user-sub-menu-item .header-dropdown__list {
  background-color: var(--blue-dark-second-color);
}
body.dark .user-sub-menu-item .header-dropdown__list a:hover {
  background-color: var(--dark-body-color);
}
body.dark
  .user-sub-menu-item
  .header-dropdown__list
  .header-dropdown__list-color {
  stroke: var(--dark-text-color);
}
body.dark
  .user-sub-menu-item
  .header-dropdown__list
  .header-dropdown__list-title {
  color: var(--dark-text-color);
}
.filter-group {
  margin-bottom: 30px;
}
.filter-top-group {
  display: flex;
}
.mobile-body .filter-group {
  margin-bottom: 10px;
}
.mobile-body .filter-group .filter-top-group {
  flex-direction: column;
}
.mobile-body .filter-group .filter-top-group .filter-top-right {
  margin-left: 0 !important;
  margin-top: 15px;
}
.filter-dropdown-group .filter-select__option {
  background-color: var(--select-option);
  border: 1px solid var(--border-line-color);
  color: var(--second-text-color);
  min-width: 300px;
  padding: 0.8rem;
}
.filter-dropdown-group .filter-select__option input {
  background: transparent;
  border: 1px solid var(--yellow-color) !important;
  border-radius: 4px;
}
.filter-dropdown-group {
  border: 1px solid var(--border-line-color);
  border-radius: 9999px;
  display: flex;
  margin-right: 15px;
  padding: 0.2rem 0.7rem;
}
.filter-dropdown-group .filter-select {
  background: transparent !important;
  border: none !important;
  margin-top: 0;
  min-width: 120px;
}
.filter-dropdown-group .filter-select:focus,
.filter-dropdown-group .filter-select:hover {
  box-shadow: none;
}
.filter-dropdown-group .filter-select img {
  height: 25px;
  width: 25px;
}
.filter-top-right {
  align-items: center;
  display: flex;
  margin-left: 50px;
}
.filter-top-right .filter-top-item-list {
  cursor: pointer;
  display: flex;
  font-weight: 500;
  margin-right: 20px;
  opacity: 0.8;
  white-space: nowrap;
}
.filter-top-right .filter-top-item-list.active {
  color: var(--yellow-color);
  opacity: 1;
}
.filter-button-group {
  border: 1px solid var(--tr-hover-color);
  border-radius: 9999px;
  display: flex;
  max-width: 200px;
  min-width: 200px;
  padding: 0;
  width: 100%;
}
.filter-button-group .filter-button-items {
  border-radius: 9999px;
  cursor: pointer;
  margin: 5px;
  padding: 10px;
  text-align: center;
  width: 50%;
}
.filter-button-group .filter-button-left-group.active {
  background: var(--green-color);
  color: var(--white-color);
}
.filter-button-group .filter-button-right-group.active {
  background: var(--red-color);
  color: var(--white-color);
}
.btn-action {
  border-radius: 9999px;
  min-width: 150px;
  padding: 10px 20px;
  text-align: center;
}
.btn-action:after {
  display: none !important;
}
.btn-action:hover {
  opacity: 0.9;
}
.p2pmodal {
  display: flex;
}
.p2pmodal .modal-col-1 {
  width: 50%;
}
.p2pmodal .modal-user {
  display: flex;
  margin-bottom: 30px;
}
.p2pmodal .modal-user-info {
  margin-left: 15px;
}
.p2pmodal .modal-user-info-top {
  display: flex;
  margin-bottom: 3px;
  padding-top: 2px;
}
.p2pmodal .modal-user-info-bottom {
  display: flex;
}
.p2pmodal .modal-user-info-bottom-text span {
  font-weight: 700;
}
.p2pmodal .modal-ad-timeline {
  display: flex;
  justify-content: space-between;
}
.p2pmodal .modal-ad-timeline .modal-text {
  margin-right: 30px;
}
.p2pmodal .modal-ad-timeline .modal-text:last-child {
  margin-right: 0;
}
.p2pmodal .modal-text-footer {
  font-size: 12px;
}
.p2pmodal .modal-ad-comment {
  margin-top: 30px;
}
.p2pmodal .modal-ad-comment .modal-text-header {
  font-weight: 700;
}
.p2pmodal .modal-ad-comment .modal-text-footer {
  margin-top: 10px;
}
.p2pmodal .modal-right-top {
  margin-bottom: 15px;
}
.p2pmodal .modal-input-group-v2 {
  border: 1px solid var(--border-line-color-v2);
  border-radius: 15px;
  margin-bottom: 25px;
  padding: 0 20px;
}
.p2pmodal .modal-input-group-v2 .components-filter__item {
  width: 100%;
}
.p2pmodal .modal-input-group-v2 .components-filter__item button {
  border: 0;
  margin-top: 0;
}
.p2pmodal .modal-input-group-v2 .components-filter__item .filter-select {
  padding: 0.9rem 0;
}
.p2pmodal .modal-input-group-v2 .components-filter__item .filter-select:focus {
  border: 0;
}
.p2pmodal .p2p-form-error {
  border: 1px solid var(--red-color) !important;
}
.p2pmodal .modal-input-error {
  color: var(--red-color);
  font-size: 13px;
  margin-bottom: 10px;
}
.p2pmodal .modal-input-group {
  border: 1px solid var(--border-line-color-v2);
  border-radius: 15px;
  margin-bottom: 25px;
  padding: 10px 20px;
}
.p2pmodal .modal-input-group .modal-input-group-label {
  margin-bottom: 5px;
  margin-top: 10px;
}
.p2pmodal .modal-input-group .modal-input-group-btn {
  display: flex;
}
.p2pmodal .modal-input-group .modal-input-group-field-placeholder {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
  margin-top: 10px;
  min-width: 120px;
}
.p2pmodal .modal-input-group .modal-input-group-field-asset {
  display: flex;
}
.p2pmodal .modal-input-group .modal-input-group-field {
  width: 100%;
}
.p2pmodal .modal-input-group .modal-input-group-field input {
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0;
}
.p2pmodal .modal-input-group .modal-input-group-field input:active,
.p2pmodal .modal-input-group .modal-input-group-field input:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.p2pmodal .modal-input-group .modal-input-group-field-asset-img,
.p2pmodal .modal-input-group .modal-input-group-field-text {
  margin-right: 5px;
}
.p2pmodal .modal-input-group .modal-input-group-field-asset-img img {
  border-radius: 50%;
  height: 22px;
  margin-right: 5px;
  width: 22px;
}
.modal-user-photo {
  background: var(--blue-dark-fourth-color);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  height: 50px;
  padding-top: 9px;
  text-align: center;
  width: 50px;
}
.chat-component {
  border: 1px solid var(--border-line-color);
  border-radius: 15px;
}
.chat-component .chat-header {
  border-bottom: 1px solid var(--border-line-color);
}
.chat-component .chat-footer {
  border-top: 1px solid var(--border-line-color);
}
.chat-component .chat-dialog {
  height: 50vh;
}
.chat-component .chat-message-input {
  background: transparent;
  border: 2px;
  height: 40px;
  overflow: hidden;
}
.chat-component .chat-message-input:focus,
.chat-component .chat-message-input:hover {
  box-shadow: none;
  outline: none;
}
.chat-component .chat-message-input:focus,
.chat-component .chat-message-search,
.chat-component .chat-message-search:focus {
  border-width: 2px;
}
.chat-component .chat-conversation-history,
.chat-component .chat-conversation-list {
  height: 75vh;
}
.chat-component .chat-text-truncate {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-component .chat-message-text-system {
  display: block;
  font-size: 0.6rem;
  margin-top: 10px;
  opacity: 0.6;
  text-align: right;
  white-space: normal;
}
.chat-component .chat-message-text {
  white-space: pre-line;
}
.chat-component .chat-message-text a {
  font-weight: 700;
  text-decoration: underline;
}
.chat-component .btn-icon {
  cursor: pointer;
}
.chat-component .btn-icon path {
  stroke: var(--btn-stroke-color);
}
.chat-component .btn-icon:hover {
  opacity: 0.8;
}
.chat-component .file-input-wrapper {
  border: none !important;
}
.offline-badge {
  bottom: 0;
  left: 8px;
}
.offline-badge:before {
  background: #919090;
  border-radius: 50%;
  content: " ";
  display: block;
  height: 10px;
  width: 10px;
}
.online-badge {
  bottom: 0;
  left: 8px;
}
.online-badge:before {
  background: var(--green-color);
  border-radius: 50%;
  content: " ";
  display: block;
  height: 10px;
  width: 10px;
}
@keyframes blink {
  50% {
    fill: transparent;
  }
}
.dot {
  fill: var(--indigo-color);
  animation: blink 1s infinite;
}
.dot:nth-child(2) {
  animation-delay: 0.25s;
}
.dot:nth-child(3) {
  animation-delay: 0.5s;
}
.loader {
  color: var(--indigo-color);
}
.p2p-user-profile {
  margin-top: 0;
}
.p2p-profile-top {
  color: var(--dark-text-color);
  padding-bottom: 3rem;
}
.p2p-step-pointer {
  background: var(--yellow-color);
  color: #000;
}
.p2p-step-divider {
  background-color: var(--border-line-color);
  margin-top: 80px;
}
body.dark .p2p-user-profile-stats-item {
  border: 1px solid var(--strict-border-color);
}
body.dark .p2p-user-profile-text-headline svg {
  fill: var(--dark-text-color);
}
.p2p-user-profile-stats-item {
  border: 1px solid var(--gray-color);
  border-radius: 8px;
  flex-direction: column;
  justify-content: start;
  min-height: 132px;
  padding: 24px;
}
.p2p-user-profile-stats-item .p2p-user-profile-stats-item-title {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
  min-width: 0;
}
.p2p-user-profile-stats-item .p2p-user-profile-stats-item-text {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-width: 0;
}
.p2p-user-profile-stats-item
  .p2p-user-profile-stats-item-text
  .p2p-user-profile-stats-item-text-bottom {
  font-size: 12px;
  margin-top: 5px;
}
.p2p-user-profile-info {
  display: flex;
}
.p2p-user-profile-avatar {
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0 16px 0 0;
  min-width: 0;
}
.p2p-user-profile-avatar div {
  align-items: center;
  background-color: #4653c8;
  border-radius: 50%;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex: 0 0 auto;
  font-size: 20px;
  height: 52px;
  justify-content: center;
  line-height: 52px;
  margin: 0;
  min-width: 0;
  position: relative;
  text-align: center;
  width: 52px;
}
.p2p-user-profile-text-stats {
  -webkit-box-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 10px 0 0;
  min-width: 0;
}
.p2p-user-profile-text-stats-item {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  font-size: 14px;
  margin: 0;
  min-width: 0;
}
.p2p-user-profile-text-stats-item .p2p-user-profile-text-stats-item-label {
  box-sizing: border-box;
  display: inline-block;
  font-size: 14px;
  margin: 0 4px 0 0;
  min-width: 0;
}
.p2p-user-profile-text-stats-item svg {
  fill: #0ecb81;
  box-sizing: border-box;
  color: #0ecb81;
  font-size: 14px;
  height: 1em;
  margin: 0;
  min-width: 0;
  width: 1em;
}
.p2p-user-profile-text-headline {
  font-size: 16px;
  font-weight: 700;
}
.p2p-user-profile-text-headline svg {
  fill: var(--dark-body-color);
  cursor: pointer;
}
.p2p-user-profile-text-headline svg:hover {
  fill: var(--yellow-color);
}
.p2p-user-center {
  margin-top: 5rem;
}
.profile-tab {
  margin-bottom: 40px;
  width: 100%;
}
.profile-tab .profile-tab-inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  margin: 0 0 32px;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
}
.profile-tab .profile-tab-inner .profile-tab-item {
  box-sizing: border-box;
  cursor: pointer;
  margin: 0;
  min-width: auto;
}
.profile-tab .profile-tab-inner .profile-tab-item .profile-tab-item-label {
  border-radius: 9999px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin: 0 16px 0 0;
  min-width: 0;
  padding: 8px 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.profile-tab .profile-tab-inner .profile-tab-item .active {
  background-color: var(--purple-second-color);
  color: var(--white-color);
}
.peer-payment-method h2 {
  font-size: 18px;
}
.peer-payment-method-headline .peer-payment-method-headline-left {
  font-size: 12px;
  max-width: 700px;
}
.box-tip {
  background: rgba(216, 159, 0, 0.08);
  border-radius: 4px;
  color: #f0b90b;
  font-size: 14px;
  margin: 0 0 35px;
  padding: 12px 16px;
  width: 100%;
}
.box-tip,
.box-tip .box-tip-wrapper {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  min-width: 0;
}
.box-tip .box-tip-wrapper {
  flex: 1 1 0%;
  margin: 0;
}
.box-tip .box-tip-wrapper .box-tip-icon {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  height: 16px;
  justify-content: center;
  margin: 0 5px 0 0;
  min-width: 0;
  width: 16px;
}
.box-tip .box-tip-wrapper .box-tip-icon svg {
  fill: currentcolor;
  box-sizing: border-box;
  color: currentcolor;
  font-size: 20px;
  height: 1em;
  margin: 0;
  min-width: 0;
  width: 1em;
}
.box-tip .box-tip-wrapper .box-tip-text {
  box-sizing: border-box;
  color: #1e2329;
  flex-shrink: 1;
  height: auto;
  line-height: 24px;
  margin: 0;
  min-width: 0;
  width: 100%;
  word-break: break-word;
}
.box-tip .box-tip-wrapper .box-tip-text div {
  box-sizing: border-box;
  color: #d89f00;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  min-width: 0;
}
.form-search__result-p2p .components-filter__item {
  margin-right: 0 !important;
  width: 100% !important;
}
.p2p-tab-two-rows {
  box-sizing: border-box;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin: 16px 0;
  min-width: 0;
  width: 100%;
}
.p2p-tab-two-rows button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p2p-tab-two-rows .components-filter__button-gray {
  background-color: var(--gray-color-secondary);
  color: #000;
}
.dark .vue-simple-progress-text {
  color: #fff !important;
}
.dark .peer-payment-method-content-item-head {
  background-color: var(--blue-dark-color);
}
.peer-payment-method-content {
  margin-top: 50px;
}
.peer-payment-method-content .peer-card-title {
  box-sizing: border-box;
  flex-grow: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
  min-width: 0;
}
.peer-payment-method-content .peer-card-label {
  color: var(--second-text-color);
}
.peer-payment-method-content .peer-card-action-button {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--yellow-secondary-color);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  line-height: 20px;
  margin: 0;
  min-height: 24px;
  min-width: 52px;
  outline: none;
  overflow: hidden;
  padding: 6px 0;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  word-break: keep-all;
}
.peer-payment-method-content .peer-card-action-button:hover {
  opacity: 0.7;
}
.peer-payment-method-content .peer-payment-method-content-item {
  border: 1px solid var(--border-line-color);
  border-radius: 4px;
  box-sizing: border-box;
  margin: 0 0 30px;
  min-width: 0;
  transition: boxShadow 0.3s ease 0s;
}
.peer-payment-method-content
  .peer-payment-method-content-item
  .peer-payment-method-content-item-head {
  align-items: center;
  background-color: var(--rows-color);
  box-sizing: border-box;
  display: flex;
  height: 44px;
  margin: 0;
  min-width: 0;
  padding-left: 16px;
  padding-right: 16px;
}
.peer-payment-method-content
  .peer-payment-method-content-item
  .peer-payment-method-content-item-body
  .peer-payment-method-content-item-body-container {
  padding: 20px 24px;
}
.peer-payment-method-content
  .peer-payment-method-content-item
  .peer-payment-method-content-item-body
  .peer-payment-method-content-item-body-item-grid {
  box-sizing: border-box;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  min-width: 0;
}
.feedback-stats {
  align-items: center;
  display: flex;
}
.feedback-stats,
.feedback-stats .feedback-stats-left,
.feedback-stats .feedback-stats-left-top {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
}
.feedback-stats .feedback-stats-left-top {
  display: inline-block;
  position: relative;
}
.feedback-stats
  .feedback-stats-left-top
  .feedback-stats-left-top-content
  .feedback-stats-left-top-content-label {
  box-sizing: border-box;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
  min-width: 0;
}
.feedback-stats
  .feedback-stats-left-top
  .feedback-stats-left-top-content
  .feedback-stats-left-bottom {
  box-sizing: border-box;
  margin: 4px 0 0;
  min-width: 0;
}
.feedback-stats .feedback-stats-right {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0 0 0 32px;
  min-width: 0;
}
.feedback-stats .feedback-stats-right .feedback-stats-right-top {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  margin: 0;
  min-width: 0;
}
.feedback-stats
  .feedback-stats-right
  .feedback-stats-right-top
  .feedback-stats-right-top-left {
  align-items: center;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  height: 16px;
  justify-content: center;
  margin: 0;
  min-width: 0;
  width: 16px;
}
.feedback-stats
  .feedback-stats-right
  .feedback-stats-right-top
  .feedback-stats-right-top-left
  svg
  path {
  fill: var(--green-color);
}
.feedback-stats
  .feedback-stats-right
  .feedback-stats-right-top
  .feedback-stats-right-top-middle {
  background-color: var(--border-line-color);
  border-radius: 4px;
  box-sizing: border-box;
  height: 8px;
  margin: 0 6px;
  min-width: 0;
  overflow: hidden;
  width: 136px;
}
.feedback-stats
  .feedback-stats-right
  .feedback-stats-right-top
  .feedback-stats-right-top-middle
  .feedback-progressbar {
  background: var(--green-color);
  border-radius: 4px;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  min-width: 0;
  width: 99.7586%;
}
.feedback-stats
  .feedback-stats-right
  .feedback-stats-right-top
  .feedback-stats-right-top-right {
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  min-width: 0;
}
.feedback-stats .feedback-stats-right .feedback-stats-right-bottom {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  margin: 6px 0 0;
  min-width: 0;
}
.feedback-stats
  .feedback-stats-right
  .feedback-stats-right-bottom
  .feedback-stats-right-top-middle
  .feedback-progressbar {
  background: var(--red-color) !important;
  border-radius: 4px;
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  min-width: 0;
  width: 99.7586%;
}
.feedback-stats
  .feedback-stats-right
  .feedback-stats-right-bottom
  .feedback-stats-right-bottom-left
  svg
  path {
  fill: var(--red-color) !important;
}
.feedback-tabs {
  margin-bottom: 30px;
  margin-top: 30px;
}
.feedback-list .feedback-list-item {
  border-bottom: 1px solid var(--border-line-color);
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  padding-bottom: 20px;
  padding-top: 20px;
}
.feedback-list .feedback-list-item .feedback-list-item-top {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 8px;
  margin: 0;
  min-width: 0;
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-top
  .feedback-list-item-top-left {
  align-items: center;
  background: var(--purple-second-color);
  border-radius: 50%;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  height: 24px;
  justify-content: center;
  line-height: 24px;
  margin: 0;
  min-width: 0;
  position: relative;
  text-align: center;
  width: 24px;
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-top
  .feedback-list-item-top-middle {
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  min-width: 0;
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-top
  .feedback-list-item-top-middle-2 {
  box-sizing: border-box;
  font-size: 14px;
  margin: 0;
  min-width: 0;
  opacity: 0.7;
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-top
  .feedback-list-item-top-right {
  align-items: center;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  height: 24px;
  margin: 0;
  max-width: 190px;
  min-width: 0;
  padding-left: 8px;
  padding-right: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-top
  .feedback-list-item-top-right
  .feedback-list-item-top-right-inner {
  background: var(--label-bubble-color);
  border-radius: 10px;
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  min-width: 0;
  padding: 5px 10px;
  position: relative;
  width: 100%;
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-top
  .feedback-list-item-top-right
  .feedback-list-item-top-right-inner
  .feedback-list-item-top-right-innner-content {
  box-sizing: border-box;
  font-size: 12px;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.feedback-list .feedback-list-item .feedback-list-item-bottom {
  box-sizing: border-box;
  display: flex;
  margin: 16px 0 0;
  min-width: 0;
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-bottom
  .feedback-list-item-bottom-top {
  align-items: center;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  height: 24px;
  justify-content: center;
  margin: 0 8px 0 0;
  min-width: 0;
  width: 24px;
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-bottom
  .feedback-list-item-bottom-top
  svg {
  box-sizing: border-box;
  font-size: 14px;
  height: 1em;
  margin: 0;
  min-width: 0;
  width: 1em;
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-bottom
  .feedback-list-item-bottom-top
  .good
  path {
  fill: var(--green-color);
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-bottom
  .feedback-list-item-bottom-top
  .bad
  path {
  fill: var(--red-color);
}
.feedback-list
  .feedback-list-item
  .feedback-list-item-bottom
  .feedback-list-item-bottom-bottom {
  box-sizing: border-box;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  min-width: 0;
}
.p2p-ads-table .table-list tr:hover {
  background-color: transparent;
}
.p2p-ads-table thead tr {
  border-bottom: 1px solid var(--border-line-color);
}
.p2p-ads-table thead th {
  background: inherit;
  color: var(--color-TertiaryText);
  font-size: var(--default-font__size);
  font-weight: 400;
  line-height: 18px;
  padding: 12px 16px;
  position: relative;
  text-align: start;
  white-space: normal;
  word-break: break-word;
}
.p2p-ads-table thead .text-right {
  text-align: right !important;
}
.p2p-ads-table thead .pl-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.p2p-ads-table thead .pr-0 {
  padding-right: 0 !important;
}
.p2p-ads-table .p2p-flex {
  grid-gap: 0.5rem;
  display: flex;
  gap: 0.5rem;
}
.p2p-ads-table .flex-col {
  flex-direction: column;
}
.p2p-ads-table .p2p-avatar {
  align-items: center;
  background-color: var(--purple-second-color);
  border-radius: 8px;
  color: var(--white-color);
  flex: none;
  height: 24px;
  justify-content: center;
  line-height: 24px;
  position: relative;
  width: 24px;
}
.p2p-ads-table .p2p-avatar .user-status-badge {
  background-color: var(--gray-color);
  border-color: var(--gray-color);
  border-radius: 50%;
  border-width: 1px;
  bottom: 0;
  height: 7px;
  max-height: 10px;
  max-width: 10px;
  position: absolute;
  right: 0;
  width: 7px;
}
.p2p-ads-table .p2p-avatar .online {
  background-color: var(--green-color);
  border-color: var(--green-color);
}
.p2p-ads-table .p2p-avatar-lg {
  height: 40px;
  width: 40px;
}
.p2p-ads-table tbody td {
  background: inherit;
  font-size: var(--h3-font__size);
  font-weight: 400;
  line-height: 22px;
  padding: 18px 16px;
  position: relative;
  white-space: normal;
  word-break: break-word;
}
.p2p-ads-table tbody td hr {
  background-color: var(--border-line-color);
  border-style: none;
  height: 10px;
  width: 1px;
}
.p2p-ads-table tbody td .w-15 {
  width: 15px;
}
.p2p-ads-table tbody td .h-15 {
  height: 15px;
}
.p2p-ads-table tbody .table-list__value-text {
  align-items: baseline;
  display: flex;
  flex-direction: row;
}
.p2p-ads-table tbody .table-list__value-text .table-list__value-text-headline {
  font-size: 1rem;
  font-weight: 500;
  line-height: 28px;
  margin-right: 4px;
  opacity: 0.8;
}
.p2p-ads-table tbody .table-list__value-text .table-list__value-text-subline {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 22px;
  opacity: 0.8;
}
.p2p-ads-table tbody .table-list__value-text .table-list__value-text-normal {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.p2p-ads-table tbody .table-list__value-text .mx-4xs {
  margin-left: 4px;
  margin-right: 4px;
}
.p2p-ads-table tbody .table-list__value-text-v2 {
  align-items: baseline;
  display: flex;
  flex-direction: column;
}
.p2p-ads-table tbody .table-list__value-text-v2 .table-list__value-text-normal {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.p2p-payment-item {
  align-items: center;
  display: flex;
  margin-bottom: 2px;
}
.p2p-payment-badge {
  background-color: #d89f00;
  border-radius: 4px;
  box-sizing: border-box;
  flex: 0 0 auto;
  height: 10px;
  margin: 0 4px 0 0;
  min-width: 0;
  width: 3px;
}
.table-list__value-end {
  justify-content: flex-end;
}
.plr-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.p2p-text-small {
  font-size: var(--default-font__size);
}
.max-500 {
  max-width: 500px;
}
.p2p-payment-method-card {
  border: 1px solid var(--border-line-color);
  border-radius: 15px;
  padding: 20px;
}
.p2p-payment-method-card .p2p-payment-method-card-element {
  margin-bottom: 20px;
}
.p2p-payment-method-card .p2p-payment-method-card-element:last-child {
  margin-bottom: 0;
}
.p2p-payment-method-card
  .p2p-payment-method-card-element
  .p2p-payment-method-card-right {
  display: flex;
}
.p2p-payment-method-card-mini {
  padding: 9px;
}
.p2p-payment-method-card-mini .p2p-payment-method-card-element {
  margin-bottom: 10px;
}
.p2p-payment-method-card-mini-head {
  margin-bottom: 5px;
}
.p2p-payment-method-card-no-border {
  border: 0;
}
.max-width-200 {
  max-width: 100px;
}
.headline-text {
  color: var(--second-fourth-color);
}
.copy-icon {
  cursor: pointer;
  display: block;
  height: 20px;
  margin-left: 10px;
  position: relative;
  width: 20px;
}
.copy-icon svg path,
.copy-icon svg rect {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.copy-icon svg:hover path,
.copy-icon svg:hover rect {
  stroke: var(--hover-v1-color);
}
.action-link {
  align-items: center;
  color: var(--yellow-secondary-color);
  cursor: pointer;
}
.action-link:hover {
  opacity: 0.7;
}
.action-link svg {
  fill: var(--yellow-secondary-color);
}
.components-filter__button-cancel,
.components-filter__button-cancel:hover {
  background-color: var(--yellow-darker-color);
}
.components-filter__button-cancel:hover {
  opacity: 0.7;
}
.btn-action-mini {
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  min-width: 250px;
  padding: 10px 20px;
  text-align: center;
}
.btn-action-mini:after {
  display: none !important;
}
.btn-action-mini:hover {
  opacity: 0.9;
}
.btn-action-mini svg {
  height: 15px;
  margin-left: 12px;
  margin-right: 8px;
  margin-top: 2px;
  width: 15px;
}
.btn-action-xs {
  display: block;
  min-width: 150px;
}
.btn-action-green {
  background: var(--green-color);
  color: var(--white-color) !important;
}
.btn-action-yellow {
  background: var(--yellow-color);
  color: var(--dark-body-color) !important;
}
.btn-action-red {
  background: var(--red-color);
  color: var(--white-color) !important;
}
.card-bordered {
  border: 1px solid var(--border-line-color);
  border-radius: 15px;
  padding: 10px;
}
.text-important {
  color: var(--yellow-color);
  text-transform: uppercase;
}
.table-div {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.table-div,
.table-div .table-div-head {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
}
.table-div .table-div-head {
  align-items: center;
  background-color: var(--table-head-color);
  color: #848e9c;
  display: inherit;
  flex-direction: row;
  font-size: 12px;
  padding-bottom: 12px;
  padding-top: 12px;
  width: 100%;
}
.table-div .table-div-head .table-div-head-column {
  box-sizing: border-box;
  display: block;
  margin: 0;
  min-width: 0;
  padding-right: 4px;
  text-align: left;
  width: 0;
}
.table-div .table-div-head .table-div-head-column:first-child {
  padding-left: 25px;
}
.table-div .table-div-body,
.table-div .table-div-body .table-div-body-rows {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
  width: 100%;
}
.table-div .table-div-body .table-div-body-rows {
  border-bottom: 1px solid var(--border-line-color);
  height: auto;
  position: relative;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner {
  box-sizing: border-box;
  display: flex;
  font-size: 14px;
  margin: 0;
  min-height: 115px;
  min-width: 0;
  position: relative;
  width: 100%;
}
.table-div
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner
  .table-div-body-column {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  margin: 0;
  min-width: 0;
  width: 0;
}
.table-div
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner
  .table-div-body-column:first-child {
  padding-left: 25px;
}
.table-div
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner
  .table-div-body-column
  .div-items-center {
  grid-gap: 6px;
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 6px;
  min-width: 0;
  text-align: left;
}
.table-div
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner
  .table-div-body-column
  .table-div-body-column-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
}
.table-div
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner
  .table-div-body-column
  .table-div-body-column-container
  .table-div-body-column-container-action {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  min-width: 0;
  position: relative;
}
.table-div
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner-tiny {
  min-height: 90px;
}
.font-500 {
  font-weight: 500;
}
.fill-red {
  fill: var(--red-color);
}
.stroke-red {
  stroke: var(--red-color);
}
.stroke-gray,
.stroke-gray path {
  stroke: var(--dark-gray);
}
.fill-gray,
.fill-gray path {
  fill: var(--dark-gray);
}
@media screen and (max-width: 1100px) {
  .table-div-body-column {
    font-size: 13px !important;
  }
}
.table-div-mobile {
  display: none;
}
@media screen and (max-width: 1100px) {
  .table-div-desktop {
    display: none;
  }
  .table-div-mobile {
    display: flex;
  }
}
.grayed-text {
  color: var(--gray-color);
  font-size: 12px;
}
.mobile-body {
  padding-left: 15px;
  padding-right: 15px;
}
.bigger-text {
  font-size: 16px;
}
.table-div-mobile
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner {
  min-height: auto;
}
.table-div-mobile
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner
  .table-div-body-column {
  display: block;
  padding-bottom: 15px;
  padding-left: 0;
  padding-top: 15px;
  width: 100%;
}
.table-div-mobile
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner
  .table-div-body-column:first-child {
  padding-left: 0;
}
.table-div-mobile
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner
  .table-div-body-column
  .table-div-body-column-container {
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 4px;
  padding-top: 4px;
}
.table-div-mobile
  .table-div-body
  .table-div-body-rows
  .table-div-body-rows-inner
  .table-div-body-column
  .table-div-body-column-container
  .left
  .opacity-80 {
  color: var(--gray-color-third);
}
.p2p-order-feedback {
  margin-top: 20px;
}
.p2p-order-feedback .p2p-order-feedback-headline {
  font-size: var(--big-font__size);
  font-weight: 500;
}
.p2p-order-feedback .p2p-order-feedback-body {
  margin-bottom: 20px;
  margin-top: 20px;
}
.p2p-order-feedback .p2p-order-feedback-date {
  display: flex;
}
.p2p-order-feedback .p2p-order-feedback-date div {
  margin-right: 10px;
}
.p2p-order-feedback .p2p-order-feedback-date div:last-child {
  margin-right: 0;
}
.p2p-order-feedback .p2p-order-feedback-actions {
  grid-gap: 16px;
  display: flex;
  gap: 16px;
  margin-top: 25px;
}
.p2p-order-feedback .btn-large {
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--border-line-color);
  border-radius: 10px;
  display: flex;
  flex: 1 1;
  font-size: 16px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  min-height: 48px;
  min-width: 80px;
  padding-left: 16px;
  padding-right: 16px;
}
.p2p-order-feedback .btn-large svg {
  height: 20px;
  width: 20px;
}
.p2p-order-feedback .btn-large:hover {
  opacity: 0.7;
}
.p2p-order-feedback-modal {
  margin-bottom: 30px;
  margin-top: 30px;
}
.p2p-order-feedback-modal .p2p-order-feedback-actions {
  display: flex;
  margin-top: 15px;
}
.p2p-order-feedback-modal .p2p-order-feedback-actions .btn-large {
  align-items: center;
  background-color: transparent;
  border: 2px solid var(--modal-border-line-color);
  border-radius: 10px;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  min-height: 48px;
  min-width: 80px;
  padding-left: 16px;
  padding-right: 16px;
}
.p2p-order-feedback-modal .p2p-order-feedback-actions .btn-large svg {
  height: 20px;
  width: 20px;
}
.p2p-order-feedback-modal .p2p-order-feedback-actions .btn-large:hover {
  opacity: 0.7;
}
.p2p-order-feedback-modal .p2p-order-feedback-body {
  margin-top: 30px;
}
.p2p-order-feedback-modal .p2p-order-feedback-body textarea {
  background: transparent;
  border: 1px solid var(--modal-border-line-color);
  border-radius: 10px;
  height: 200px;
  max-height: 200px;
  width: 100%;
}
.p2p-order-feedback-modal .p2p-order-feedback-body textarea:focus {
  border: 2px solid var(--modal-border-line-color);
  box-shadow: none;
}
.p2p-order-feedback-modal .p2p-order-feedback-body .block-checkbox__group {
  justify-content: normal;
  margin-top: 20px;
}
.p2p-order-feedback-modal
  .p2p-order-feedback-body
  .block-checkbox__group
  label {
  margin-left: 5px;
}
.main-section .btn-large-green {
  border: 2px solid var(--green-color) !important;
  color: var(--green-color);
}
.main-section .btn-large-green:hover {
  opacity: 1;
}
.main-section .btn-large-red {
  border: 2px solid var(--red-color) !important;
  color: var(--red-color);
}
.main-section .btn-large-red:hover {
  opacity: 1;
}
.p2p-form-modal .components-filter__item {
  width: 70%;
}
.bottom-border {
  border-bottom: 1px solid var(--border-line-color);
}
.components-filter__item .rounded {
  border-radius: 9999px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.relative-left {
  align-self: center;
  display: flex;
  justify-content: center;
}
body [multiple],
body [type="date"],
body [type="email"],
body [type="month"],
body [type="number"],
body [type="password"],
body [type="search"],
body [type="text"],
body [type="time"],
body [type="url"],
body [type="week"],
body select,
body textarea {
  font-size: var(--default-font__size);
}
.components-filter__item-multiple .filter-select button svg {
  display: none;
}
.components-filter__item-multiple .filter-select div:first-child {
  overflow: hidden;
  white-space: nowrap;
}
.components-filter__item-multiple
  .filter-select
  div:first-child
  button
  span:first-child:after {
  content: ",";
}
.components-filter__item-multiple
  .filter-select
  div:first-child
  button:last-child
  span:first-child:after {
  content: "";
}
.components-filter__item-multiple .filter-select button {
  margin-right: 5px;
}
.components-filter__item-multiple .filter-select button:active,
.components-filter__item-multiple .filter-select button:focus {
  border: none;
  outline: none;
}
.modal-right-top {
  display: flex;
}
.refresh-icon {
  margin-left: 10px;
  margin-top: 2px;
}
.refresh-icon svg {
  height: 15px;
  width: 15px;
}
.margin-left-custom {
  margin-left: 56px;
}
.margin-top-custom {
  margin-top: 52px;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.rotate-element {
  animation: spin 1s linear infinite;
}
.text-yellow {
  color: var(--yellow-color);
}
.opacity-60 {
  opacity: 0.6;
}
.textarea-counter {
  bottom: 3px;
  font-size: 12px;
  position: absolute;
  right: 7px;
}
.prev-button,
.prev-button:hover {
  background-color: var(--blue-dark-color);
  border: 1px solid var(--blue-dark-color);
}
.prev-button:hover {
  opacity: 0.7;
}
.column-badge.default {
  background: #0c8a60;
}
.column-badge.l-green {
  background: #32cd32;
}
.column-badge.d-green,
.column-badge.green {
  background: #3cb371;
}
.column-badge.red {
  background: #dc143c;
}
.column-badge.l-red {
  background: #cd5c5c;
}
.column-badge.d-red {
  background: #8b0000;
}
.column-badge.yellow {
  background: gold;
}
.column-badge.l-yellow {
  background: #ffe4b5;
}
.column-badge.d-yellow {
  background: #bdb76b;
}
.column-badge.gray {
  background: #a9a9a9;
}
.column-badge.l-gray {
  background: #dcdcdc;
}
.column-badge.d-gray {
  background: #708090;
}
.column-badge.orange {
  background: tomato;
}
.column-badge.l-orange {
  background: #ffa07a;
}
.column-badge.d-orange {
  background: #ff8c00;
}
.column-badge.brown {
  background: #ffebcd;
}
.column-badge.l-brown {
  background: #deb887;
}
.column-badge.d-brown {
  background: #8b4513;
}
.column-badge.purple {
  background: orchid;
}
.column-badge.l-purple {
  background: #d8bfd8;
}
.column-badge.d-purple {
  background: #9370db;
}
.column-badge.pink {
  background: #ff69b4;
}
.column-badge.l-pink {
  background: pink;
}
.column-badge.d-pink {
  background: #c71585;
}
.max-width-80 {
  max-width: 80%;
}
.block-message-bubble-author {
  text-align: left;
}
.text-cover .block-message-bubble-author {
  color: #fff;
}
.chat-component .block-type-media-message {
  background: none !important;
  color: #2f2f2f;
  margin-bottom: 0.8rem;
  margin-top: 0.8rem;
  padding: 0 !important;
}
.chat-component .block-type-media-message svg path {
  fill: #2f2f2f;
}
body.dark .chat-component .text-cover .block-message-bubble-counterparty {
  background: #212833;
  color: var(--dark-text-color);
}
body.dark
  .chat-component
  .text-cover
  .block-message-bubble-counterparty
  svg
  path {
  fill: #2f2f2f;
}
body.dark .chat-component .block-type-media-message {
  color: var(--dark-text-color) !important;
}
body.dark .chat-component .block-type-media-message svg path {
  fill: var(--dark-text-color) !important;
}
body .text-cover .block-message-bubble-counterparty svg path {
  fill: #2f2f2f;
}
.system-message {
  justify-content: center;
}
.system-message .place-bubble {
  width: 100%;
}
.system-message .block-message-bubble {
  background: transparent;
  border: 1px solid var(--border-line-color);
  border-radius: 15px;
  color: var(--first-text-color);
  font-size: 12px;
  padding-top: 15px;
  text-align: center;
}
.order-info-container {
  border-bottom: 1px solid var(--border-line-color);
  margin-bottom: 30px;
  padding-bottom: 25px;
  width: 100%;
}
.order-info-container .order-info-container-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.order-info-container .order-info-container-subtitle span {
  opacity: 0.7;
}
.no-mt {
  margin-top: 0 !important;
}
.textarea-modal {
  background: transparent;
  border: 1px solid var(--modal-border-line-color);
  border-radius: 10px;
  height: 150px;
  max-height: 200px;
  width: 100%;
}
.textarea-modal:focus {
  border: 2px solid var(--modal-border-line-color);
  box-shadow: none;
}
.button-disabled,
.button-disabled:hover {
  opacity: 0.2;
}
.p2pmodal-information {
  background: var(--modal-information-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
}
.p2pmodal-information .p2pmodal-information-item {
  display: flex;
  margin-bottom: 15px;
}
.p2pmodal-information .p2pmodal-information-item:first-child {
  margin-top: 15px;
}
.p2pmodal-information
  .p2pmodal-information-item
  .p2pmodal-information-item-icon {
  margin-right: 6px;
}
.p2pmodal-information
  .p2pmodal-information-item
  .p2pmodal-information-item-icon
  svg {
  fill: var(--green-color);
}
.p2pmodal-information-checkbox {
  margin-bottom: 15px;
  margin-top: 25px;
}
.width64 {
  height: 64px;
  width: 64px;
}
body.dark .p2pmodal-information-warning {
  background: var(--modal-information-warning-color);
}
body.dark
  .p2pmodal-information-warning
  .p2pmodal-information-item
  .p2pmodal-information-item-icon {
  background: var(--modal-information-warning-color-label);
}
.p2pmodal-information-warning
  .p2pmodal-information-item
  .p2pmodal-information-item-icon {
  border-radius: 50%;
  height: 24px;
  min-width: 24px;
  padding-right: 1px;
  padding-top: 2px;
  text-align: center;
  width: 24px;
}
.p2pmodal-information-warning
  .p2pmodal-information-item
  .p2pmodal-information-item-text {
  margin-top: 2px;
}
.text-small {
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.text-small ul li {
  display: flex;
  margin-bottom: 5px;
}
.text-small ul li svg {
  stroke: var(--green-color);
  height: 18px;
  margin-right: 5px;
  width: 18px;
}
.text-small ul li .close-fill {
  stroke: none;
  height: 20px;
  width: 20px;
}
.text-small ul li .close-fill path {
  fill: var(--red-color);
}
#file-uploader-form.file-uploader-form-modal .vue-file-agent {
  text-align: left;
  width: 100%;
}
#file-uploader-form.file-uploader-form-modal .file-preview-wrapper {
  width: 50px;
}
.chat-component .file-preview-wrapper {
  border: 0 !important;
  min-width: auto !important;
  width: auto !important;
}
.chat-component .file-preview-wrapper:before {
  content: "" !important;
  display: none !important;
}
.chat-component .file-uploading {
  background: #e1ffda;
  opacity: 0.8;
  padding: 1px 0;
  text-align: center;
}
body.dark .chat-component .file-uploading {
  background: #45593f;
  color: #fff;
}
.order-link a {
  color: var(--yellow-color);
}
.appeal-container .p2p-create-steps {
  margin-bottom: 40px;
}
.appeal-container .appeal-container-item {
  border: 1px solid var(--border-line-color);
  border-radius: 15px;
  margin-bottom: 50px;
  padding: 20px;
}
.appeal-container .appeal-container-item .appeal-container-item-date {
  margin-bottom: 15px;
  opacity: 0.7;
}
.appeal-container .appeal-container-item .appeal-container-item-user {
  margin-bottom: 35px;
}
.appeal-container
  .appeal-container-item
  .appeal-container-item-details
  .appeal-label {
  margin-bottom: 10px;
  opacity: 0.7;
}
.attachments-container {
  display: flex;
  margin-bottom: 10px;
}
.attachments-container div svg {
  height: 32px;
  margin-right: 15px;
}
.attachments-container div svg path {
  fill: var(--purple-color);
}
.attachments-container .attachment-link {
  align-items: center;
  align-self: center;
  cursor: pointer;
  text-decoration: underline;
}
.components-filter__button-w-200 {
  width: 200px;
}
.block-title-app {
  font-size: 1rem;
  font-weight: 500;
}
.color-yellow-text {
  color: var(--yellow-color);
  font-weight: 500;
}
.appeal-textarea {
  background: transparent;
  border: 2px solid var(--border-line-color);
  border-radius: 8px;
  height: 300px;
  width: 100%;
}
.appeal-textarea:focus {
  box-shadow: none;
  outline: none;
  text-shadow: none;
}
.review-active-logo svg {
  height: 42px;
  width: 42px;
}
.review-active-logo svg path {
  stroke: var(--yellow-color);
  fill: var(--yellow-color);
}
.system-active-logo svg {
  height: 42px;
  margin-right: 5px;
  width: 42px;
}
.system-active-logo svg #Core {
  fill: var(--yellow-color);
}
.profile-ads-header {
  font-size: 1.2rem;
}
.w-18 {
  width: 18px;
}
.h-18 {
  height: 18px;
}
.link-action {
  color: var(--yellow-color);
  cursor: pointer;
  font-weight: 400;
}
.fluid-width {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.fluid-width-colored {
  background-color: var(--dark-profile-body-color);
}
.line-separator {
  background-color: var(--strict-border-color);
  border: none;
  box-sizing: border-box;
  display: flex;
  height: 16px;
  margin: 4px 12px 0;
  min-width: 0;
  width: 1px;
}
.feedback-list-item-reply {
  margin-left: 32px;
  margin-top: 15px;
}
.feedback-list-item-reply .feedback-list-item-reply-title {
  margin-bottom: 10px;
  margin-right: 10px;
  opacity: 0.7;
}
#body .main-section .img-strict img,
#body .main-section .img-strict2 img {
  border-radius: 50%;
  height: 25px !important;
  min-height: auto !important;
  width: 25px !important;
}
#body .components-filter__item3 .filter-select {
  padding: 0.8rem 1rem;
}
#body .components-filter__item4 {
  width: -moz-fit-content;
  width: fit-content;
}
#body .svg-icon-label svg {
  fill: var(--dark-text-color2);
  height: 18px;
  width: 18px;
}
#body .svg-icon-container {
  position: relative;
}
#body .svg-icon-container .svg-icon-label {
  left: 20px;
  position: absolute;
  top: 23px;
}
#body .svg-icon-text .inline-block .block {
  padding-left: 35px;
}
#body .components-filter__item8 .relative {
  width: 100%;
}
#body .component-filter {
  margin-top: 0.5rem;
  position: relative;
}
#body .component-filter .component-filter-content {
  border: 1px solid var(--border-line-color);
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  min-width: 80px;
  padding: 0.9rem 1rem;
}
#body .component-filter .component-filter-content svg {
  margin: 0 auto;
}
#body .component-filter .svg-filter-icon {
  fill: var(--dark-text-color2);
}
#body .component-filter .component-popover {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow:
    -2px 0 5px rgba(0, 0, 0, 0.08),
    0 0 6px rgba(0, 0, 0, 0.08);
  display: none;
  left: 0;
  max-height: -moz-fit-content;
  max-height: fit-content;
  min-width: 300px;
  padding: 15px;
  position: absolute;
  top: 70px;
  width: -moz-max-content;
  width: max-content;
  z-index: 999;
}
#body .component-filter .component-popover.active {
  display: block;
}
#body .component-filter .component-popover .component-popover-label {
  font-size: 0.7rem;
}
#body .component-filter .component-popover .component-popover-content input {
  padding: 0.5rem;
}
#body
  .component-filter
  .component-popover
  .component-popover-content
  input:not(:checked) {
  background-color: var(--second-text-color);
}
.dark .component-popover {
  background-color: var(--blue-dark-thir-color) !important;
}
.mb-0-fixed {
  margin-bottom: 0 !important;
}
#body .main__container .svg-ml-1 {
  margin-left: 4px;
}
.flex-icon-orange {
  background: #d18709;
  border-radius: 50%;
  color: var(--white-color);
  font-size: 0.7rem;
  height: 20px;
  line-height: 21px;
  margin-left: 5px;
  text-align: center;
  width: 20px;
}
.max-width-300 {
  width: 200px;
}
.chat-image-frame {
  border: 1px solid var(--border-line-color);
  border-radius: 5px;
  cursor: pointer;
  padding: 5px;
}
.chat-icon {
  cursor: pointer;
}
.chat-icon path {
  fill: var(--dark-body-color);
}
body.dark .chat-icon path {
  fill: var(--dark-text-color);
}
.tooltip {
  display: block !important;
  z-index: 10000;
}
.tooltip .tooltip-inner {
  background: #000;
  border-radius: 5px;
  color: #fff;
  padding: 8px 15px 7px;
}
.tooltip .tooltip-arrow {
  border-color: #000;
  border-style: solid;
  height: 0;
  margin: 5px;
  position: absolute;
  width: 0;
  z-index: 1;
}
.tooltip[x-placement^="top"] {
  margin-bottom: 5px;
}
.tooltip[x-placement^="top"] .tooltip-arrow {
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-width: 5px 5px 0;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-bottom: 0;
  margin-top: 0;
}
.tooltip[x-placement^="bottom"] {
  margin-top: 5px;
}
.tooltip[x-placement^="bottom"] .tooltip-arrow {
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  border-width: 0 5px 5px;
  left: calc(50% - 5px);
  margin-bottom: 0;
  margin-top: 0;
  top: -5px;
}
.tooltip[x-placement^="right"] {
  margin-left: 5px;
}
.tooltip[x-placement^="right"] .tooltip-arrow {
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-width: 5px 5px 5px 0;
  left: -5px;
  margin-left: 0;
  margin-right: 0;
  top: calc(50% - 5px);
}
.tooltip[x-placement^="left"] {
  margin-right: 5px;
}
.tooltip[x-placement^="left"] .tooltip-arrow {
  border-bottom-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  border-width: 5px 0 5px 5px;
  margin-left: 0;
  margin-right: 0;
  right: -5px;
  top: calc(50% - 5px);
}
.tooltip.popover .popover-inner {
  background: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  color: #000;
  padding: 24px;
}
.tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}
.tooltip[aria-hidden="true"] {
  opacity: 0;
  transition:
    opacity 0.15s,
    visibility 0.15s;
  visibility: hidden;
}
.tooltip[aria-hidden="false"] {
  opacity: 1;
  transition: opacity 0.15s;
  visibility: visible;
}
.more-arrow svg {
  height: 20px;
}
.more-arrow svg path {
  fill: var(--blue-dark-color);
}
body.dark .more-arrow svg path {
  fill: var(--dark-text-color);
}
body.dark .chat-connecting {
  background-color: var(--blue-dark-color);
  color: var(--dark-text-color);
}
.chat-connecting {
  background: #e1e1e1;
  opacity: 0.9;
  padding: 10px;
  text-align: center;
}
#body .p2p-component-title {
  margin-bottom: 5rem;
}
#body .p2p-component-title .h2-headline {
  margin: 5rem 0 0;
}
.btn-icon-attach path {
  fill: var(--btn-stroke-color);
}
.btn-icon-attach:hover {
  cursor: pointer;
  opacity: 0.8;
}
.btn-icon-attach-message path {
  fill: #f9f9f9;
}
.conditional-sub-menu {
  display: none;
}
.header-btn span:first-child {
  margin-top: 0;
}
.closeChat,
.components-filter-mobile,
.mobile-visible {
  display: none;
}
body.dark .mobile-body .chat-component-mob .chat-active {
  background-color: var(--dark-body-color);
}
body.dark .mobile-body .conditional-sub-menu .header-dropdown__list {
  background-color: var(--blue-dark-second-color);
}
.desktop-visible {
  display: block;
}
.mobile-body .p2p-user-profile-info {
  display: flex;
  flex-direction: column;
}
.mobile-body .p2p-user-profile-info .p2p-user-profile-text {
  margin-top: 10px;
}
.mobile-body .tabs-right-mob {
  align-items: normal;
  display: flex;
  flex-direction: column;
}
.mobile-body .tabs-right-mob .peer-profile-merchant {
  margin-top: 15px;
}
.mobile-body .p2p-step-pointer {
  z-index: 0;
}
.mobile-body .components-filter__item-mob .btn-add-label {
  margin-bottom: 5px;
}
.mobile-body .desktop-visible {
  display: none;
}
.mobile-body .btn-action-max {
  max-width: 250px;
}
.mobile-body
  .peer-payment-method-items-mob
  .peer-payment-method-content-item-body-item-grid {
  display: flex !important;
  flex-direction: column;
}
.mobile-body .peer-payment-method-items-mob .peer-payment-method-headline {
  flex-direction: column;
}
.mobile-body
  .peer-payment-method-items-mob
  .peer-payment-method-headline
  .peer-payment-method-headline-left {
  margin-bottom: 15px;
}
.mobile-body .table-ads-mob .table-div-head {
  display: none;
}
.mobile-body .table-ads-mob .table-div-body .table-div-body-column {
  margin-bottom: 5px !important;
  padding-left: 0 !important;
  width: 100% !important;
}
.mobile-body .table-ads-mob .table-div-body .table-div-body-rows-inner {
  flex-direction: column;
  padding-top: 15px !important;
}
.mobile-body .profile-mob .p2p-user-profile {
  flex-direction: column;
}
.mobile-body .profile-mob .p2p-user-profile .p2p-user-profile-left {
  margin-bottom: 25px;
}
.mobile-body .profile-mob .p2p-user-profile-stats {
  display: flex;
  flex-direction: column;
}
.mobile-body .profile-mob .p2p-user-profile-stats .p2p-user-profile-stats-item {
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: auto;
  padding: 0;
}
.mobile-body
  .profile-mob
  .p2p-user-profile-stats
  .p2p-user-profile-stats-item
  .p2p-user-profile-stats-item-title {
  margin-bottom: 5px;
}
.mobile-body
  .profile-mob
  .p2p-user-profile-stats
  .p2p-user-profile-stats-item
  .p2p-user-profile-stats-item-text-top {
  align-self: end;
}
.mobile-body .p2p-create-steps-mob {
  flex-direction: column;
}
.mobile-body .p2p-create-steps-mob .p2p-steps-step {
  padding: 8px !important;
}
.mobile-body .p2p-create-steps-mob .p2p-steps-step-inner {
  flex-direction: row;
}
.mobile-body
  .p2p-create-steps-mob
  .p2p-steps-step-inner
  .p2p-steps-step-marker-text {
  margin-left: 10px;
  order: 2;
}
.mobile-body
  .p2p-create-steps-mob
  .p2p-steps-step-inner
  .p2p-steps-step-marker {
  margin-top: 0;
  order: 1;
}
.mobile-body
  .p2p-create-steps-mob
  .p2p-steps-step-inner
  .p2p-steps-step-marker
  span:after {
  content: none;
}
.mobile-body .chat-component-mob {
  border: none;
}
.mobile-body .chat-component-mob .chat-dialog-container {
  display: none;
}
.mobile-body .chat-component-mob .closeChat {
  cursor: pointer;
  display: block;
}
.mobile-body .chat-component-mob .closeChat svg path {
  fill: var(--dark-text-color);
}
.mobile-body .chat-component-mob .chat-active {
  background-color: var(--white-color);
  display: block;
  height: 100vh;
  margin-left: -15px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.mobile-body .chat-component-mob .chat-dialog {
  height: 80vh;
}
.mobile-body .chat-component-mob .chat-bottom-wrapper {
  bottom: 30px;
  position: absolute;
  width: 100%;
}
.mobile-body .p2p-order-mob {
  flex-direction: column;
}
.mobile-body .p2p-order-mob .p2p-step-pointer {
  margin-top: 0;
}
.mobile-body .p2p-order-mob .w-full-mob {
  width: 100%;
}
.mobile-body .flex-col-mob {
  flex-direction: column;
}
.mobile-body .flex-col-mob .w-full {
  margin-bottom: 5px;
}
.mobile-body .btn-add-mob {
  border-radius: 9999px;
  margin-top: 10px;
}
.mobile-body .components-filter-mob {
  margin-bottom: 0;
}
.mobile-body .mt-mob-no {
  margin-top: 0;
}
.mobile-body .mb-mob-no {
  margin-bottom: 0;
}
.mobile-body .margin-left-custom-mob {
  margin-left: 0;
}
.mobile-body .p2pmodal-mob {
  flex-wrap: wrap;
}
.mobile-body .p2pmodal-mob .modal-ad-timeline {
  flex-direction: column;
}
.mobile-body .p2pmodal-mob .modal-ad-timeline .modal-text {
  margin-bottom: 10px;
  margin-right: 0;
}
.mobile-body .p2pmodal-mob .modal-ad-timeline .modal-text:last-child {
  margin-bottom: 0;
}
.mobile-body .p2pmodal-mob .modal-input-group {
  padding: 5px 12px;
}
.mobile-body .p2pmodal-mob .modal-input-group .modal-input-group-field {
  width: 100%;
}
.mobile-body
  .p2pmodal-mob
  .modal-input-group
  .modal-input-group-field-placeholder {
  justify-content: flex-start;
  padding-right: 10px;
}
.mobile-body .p2pmodal-mob .modal-col-1 {
  order: 2;
  width: 100%;
}
.mobile-body .p2pmodal-mob .modal-col-2 {
  order: 1;
}
.mobile-body .table-result__notfound-mob {
  padding: 1rem 0;
}
.mobile-body .table-components-mob {
  margin: 3rem 0;
}
.mobile-body .p2p-component-title-mob {
  margin-bottom: 3rem !important;
}
.mobile-body .btn-action-mobile {
  font-size: 0.9rem;
  min-width: 120px;
  padding: 5px;
  text-align: center;
}
.mobile-body .p2p-flex-row-mobile,
.mobile-body .p2p-flex-row-mobile .table-list__value {
  padding: 0;
}
.mobile-body .mobile-visible {
  display: block;
}
.mobile-body .table-list__value-text-normal-mobile {
  margin-top: 0.5rem;
}
.mobile-body .components-filter-mobile {
  display: block;
  margin-bottom: 3rem;
}
.mobile-body .p2p-flex-column-mobile {
  margin-left: 0;
}
.mobile-body .relative-left-mobile {
  width: 100%;
}
.mobile-body .components-filter-desktop {
  display: none;
}
.mobile-body .filter-group .filter-top-right {
  margin-left: 30px;
  overflow-x: auto;
}
.mobile-body .filter-button-group {
  max-width: 150px;
  min-width: 150px;
}
.mobile-body .filter-button-group .filter-button-items {
  padding: 5px;
}
.mobile-body .head {
  margin-left: -15px;
  margin-right: -15px;
}
.mobile-body .conditional-user-menu {
  display: none;
}
.mobile-body .conditional-headline {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.mobile-body .conditional-sub-menu {
  display: block;
}
.mobile-body .conditional-sub-menu .header-dropdown__list-color3 {
  fill: var(--dark-text-color);
}
.mobile-body .conditional-sub-menu .header-dropdown__list-icon2 {
  margin-left: 4px;
  margin-right: 6px;
  padding-top: 3px;
}
.mobile-body .conditional-sub-menu .header-dropdown {
  margin-top: 10px;
}
.mobile-body .conditional-sub-menu .user-sub-menu-icon circle,
.mobile-body .conditional-sub-menu .user-sub-menu-icon g,
.mobile-body .conditional-sub-menu .user-sub-menu-icon path,
.mobile-body .conditional-sub-menu .user-sub-menu-icon rect {
  stroke: var(--first-text-color);
}
.mobile-body
  .conditional-sub-menu
  .user-sub-menu-icon
  .header-dropdown__list-color3
  g {
  fill: var(--first-text-color);
}
.mobile-body .conditional-sub-menu .header-dropdown__list {
  background-color: #f1f1f1;
  font-size: 1rem;
  left: 0;
  top: 3rem;
  width: 100%;
}
.mobile-body .p2p-component-title {
  flex-direction: column;
}
.mobile-body .p2p-component-title .h2-headline,
.mobile-body .p2p-component-title .user-sub-menu {
  margin: 2rem 0 0 !important;
}
.flex-col-list .input-radio {
  margin-bottom: 5px;
}
body.dark .form-merchant-container .form-disabled input {
  background: #0f1218;
}
.form-merchant-container .form-disabled input {
  background: #eaebed;
  cursor: not-allowed;
  opacity: 1;
}
body#body .admin-layout .vue-portal-target .modal-container .bg-white {
  background-color: var(--white-color) !important;
  color: var(--dark-body-color) !important;
}
.capitalize {
  text-transform: capitalize;
}
.user-badge svg,
.user-badge:active svg,
.user-badge:focus svg {
  outline: none;
}
.file-uploader-form-kyc .vue-file-agent {
  float: none !important;
}
.options-module .m-form-no button {
  margin-top: 5px !important;
}
.options-module .module-orderform__sell-forms__button {
  background-color: var(--red-color);
  border: 1px solid var(--red-color);
}
.options-module .filter-select {
  color: var(--blue-dark-color);
}
.form-text-group {
  font-size: 0.9rem;
}
.form-text-parent {
  padding: 10px;
}
.text-green {
  color: var(--green-color);
}
.form-group-highlight {
  background-color: #f4f6f9;
  border: 1px solid #f4f6f9;
  border-radius: 9999px;
  font-size: 1rem;
  margin-top: 10px;
  padding: 10px 17px;
}
body.dark .options-module .form-group-highlight {
  background-color: #0b0c16;
  border: 1px solid #0b0c16;
}
body.dark .options-module .filter-select {
  color: var(--dark-text-color);
}
body.dark .components-filter__picker .datepicker-dropdown {
  background-color: var(--table-head-color);
}
.components-filter__picker .datepicker-dropdown .picker-today {
  border-color: var(--purple-color);
}
.components-filter__picker .bg-purple,
.components-filter__picker .bg-purple-hover:hover,
.components-filter__picker .datepicker-dropdown .picker-hover:hover,
.components-filter__picker .datepicker-dropdown .picker-range,
.components-filter__picker .datepicker-dropdown .picker-range-wrapper,
.components-filter__picker .datepicker-dropdown .picker-today:hover {
  background-color: var(--purple-color);
  color: var(--white-color);
}
.components-filter__picker .bg-purple-hover-white:hover {
  color: var(--white-color);
}
.components-filter__picker .bg-purple-hover-white:hover svg {
  fill: var(--white-color);
}
.text-transition {
  transition: 0.5s;
}
.flex-col-desktop .components-filter__item {
  width: 50%;
}
.markets-tabs {
  margin: 0 0 2rem;
}
.sub-tabs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 15px;
  white-space: nowrap;
  width: 100%;
}
.sub-tabs .sub-tabs-nav__item {
  cursor: pointer;
  padding: 5px 10px;
}
.sub-tabs .sub-tabs-nav__item.sub-tabs-nav__active {
  background: var(--yellow-color);
  border-radius: 9999px;
  color: var(--dark-body-color);
  min-width: 100px;
  text-align: center;
}
.components-title-v2 .h2-headline {
  font-size: 1.5rem;
}
.mobile-body .header-nav .header-dropdown__list {
  background-color: var(--blue-dark-color);
  border-radius: 5px;
  display: block;
  left: 0;
  position: relative;
  top: 0;
}
header.mobile-body {
  padding-left: 0;
  padding-right: 0;
}
::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--lightestgrey);
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
  opacity: 0.8;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
  opacity: 0.7;
}
.mt-0-5 {
  margin-top: 0.1rem;
}
.pre-wrap {
  white-space: pre-wrap;
}
.svg-absolute {
  display: none;
  position: absolute;
  right: -15px;
  top: 0;
}
.relative-p .svg-absolute {
  right: -20px;
  top: -2px;
}
.color-buy svg {
  display: block;
}
.color-buy svg path {
  stroke: var(--green-color);
}
.color-sell svg {
  display: block;
  transform: rotateX(180deg);
}
.color-sell svg path {
  stroke: var(--red-color);
}
.market-trends {
  margin-bottom: 50px;
}
.market-trends .market-trends-item {
  border: 1px solid var(--tr-hover-color);
  border-radius: 15px;
  padding: 20px;
}
.market-trends .market-trends-item .mt-body {
  margin-top: 20px;
}
.market-trends .market-trends-item .mt-body .mt-body-img img {
  height: 20px;
  margin-right: 10px;
  width: 20px;
}
.market-trends .market-trends-item .mt-body .mt-body-item {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
}
.market-trends .market-trends-item .mt-body .mt-body-item:hover {
  opacity: 0.8;
}
.market-trends .market-trends-item .mt-body .mt-body-item:last-child {
  margin-bottom: 0;
}
.market-trends .market-trends-item .mt-body .mt-body-item .mt-body-item-column {
  align-items: center !important;
}
.market-trends
  .market-trends-item
  .mt-body
  .mt-body-item
  .mt-body-content-price {
  flex: 85 1 0%;
  width: 85px;
}
.market-trends
  .market-trends-item
  .mt-body
  .mt-body-item
  .mt-body-content-name {
  flex: 90 1 0%;
  width: 95px;
}
.market-trends
  .market-trends-item
  .mt-body
  .mt-body-item
  .mt-body-content-change {
  display: flex;
  flex: 52 1 0%;
  justify-content: flex-end;
}
.market-trends .market-trends-item .mt-body .mt-body-headline {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 15px;
  min-height: 20px;
  opacity: 0.7;
}
.mobile-body .market-trends {
  display: none;
}
@media (min-width: 400px) and (max-width: 1260px) {
  .mt-body-content-price {
    display: none;
  }
}
#marquee-slider {
  background-color: var(--white-color);
  border-top: 1px solid var(--tr-hover-color);
  bottom: 0;
  display: flex !important;
  padding: 5px 0;
  position: fixed;
  width: 100% !important;
}
#marquee-slider .text-slider-item {
  min-width: 240px;
}
#marquee-slider > div {
  margin-right: 0 !important;
}
.mobile-body #marquee-slider {
  display: none !important;
}
body.dark #marquee-slider {
  background-color: var(--dark-body-color);
}
.mbr {
  animation-iteration-count: infinite;
  animation-name: animation;
  animation-timing-function: linear;
  display: flex;
  width: 100%;
}
@keyframes animation {
  0% { transform: translateX(100%); }
  50% {
    transform: translateX(-100%);
  }
}
/***new ***/
.marquee-container {
  overflow: hidden; /* Hide the duplicate content sitting outside */
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex; /* Keep items in a single line */
  animation: scroll-marquee 10s linear infinite;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Translate -50% because the total width is now 200% (original + duplicate) */
    transform: translateX(-50%);
  }
}
/***new***/
.text-slider-item-m {
  display: flex;
  white-space: nowrap;
}
.text-slider-item-m img {
  border-radius: 50%;
  height: 15px;
  margin-right: 10px;
  margin-top: 2px;
  width: 15px;
}
.module-orderbook__buy-sell-stats {
  padding: 5px;
}
.module-orderbook__buy-sell-stats,
.module-orderbook__buy-sell-stats .orderbook-compare {
  align-items: center;
  display: flex;
  font-size: 12px;
  height: 16px;
  justify-content: space-between;
  line-height: 16px;
  margin-top: 15px;
  width: 100%;
}
.module-orderbook__buy-sell-stats .orderbook-compare .compare-direction {
  align-items: center;
  display: flex;
  line-height: 18px;
}
.module-orderbook__buy-sell-stats
  .orderbook-compare
  .compare-direction
  .compare-percent-buy {
  color: var(--green-color);
  margin-left: 2px;
}
.module-orderbook__buy-sell-stats
  .orderbook-compare
  .compare-direction
  .compare-percent-sell {
  color: var(--red-color);
  margin-left: 2px;
}
.module-orderbook__buy-sell-stats .orderbook-compare .compare-bar {
  align-items: center;
  display: flex;
  flex: 1 1;
  padding: 0 8px;
}
.module-orderbook__buy-sell-stats .orderbook-compare .compare-bids-bar {
  align-items: center;
  background-color: var(--green-color);
  border-radius: 2px 0 0 2px;
  height: 4px;
  margin-right: 2px;
  width: 50%;
}
.module-orderbook__buy-sell-stats .orderbook-compare .compare-asks-bar {
  align-items: center;
  background-color: var(--red-color);
  border-radius: 0 2px 2px 0;
  height: 4px;
  width: 50%;
}
.mobile-body .copyright {
  padding: 5px;
}
sup {
  color: var(--green-color);
  font-weight: 700;
}
.admin-layout .period-block .block {
  margin-top: 0 !important;
}
.admin-layout .period-block .bg-purple-hover {
  top: 2px !important;
}
.flex-qr img {
  background: #fff;
  border: 1px solid var(--tr-hover-color-second);
  border-radius: 15px;
  margin: 0 auto 0 20px;
  padding: 8px;
}
.flex-qr .img-screen img {
  background: transparent;
  height: 168px;
  margin-left: 0;
}
.svg-qr-code {
  background: var(--purple-color);
  border-radius: 8px;
  margin-top: 7px;
  padding: 5px;
}
.svg-qr-code svg {
  cursor: pointer;
}
.svg-qr-code svg path {
  fill: var(--white-color);
}
.svg-qr-code svg:hover {
  opacity: 0.8;
}
body.dark .svg-qr-code svg path {
  fill: var(--white-color);
}
.qrApproved {
  background: rgba(167, 255, 167, 0.93);
  border-radius: 8px;
  color: #373333;
  left: 52px;
  padding: 8px;
  position: absolute;
  top: 40%;
}
.qrApproved svg path {
  fill: var(--green-color);
}
.mobile-body button,
.mobile-body input,
.mobile-body optgroup,
.mobile-body select,
.mobile-body textarea {
  font-size: small;
}
.components-filter__row .rounded,
.modal-container button {
  border-radius: 9999px;
}
.filter-select .swap-label .pt-1 {
  padding-top: 0 !important;
}
.filter-select .swap-label img {
  height: 22px !important;
  width: 22px !important;
}
.components-filter-desktop .swap-label {
  padding-top: 4px;
}
.chartDisabled {
  height: 120px;
  opacity: 0;
}
.chartActive {
  height: 438px;
  opacity: 1;
}
.chart-height {
  min-height: 438px;
}
.loader-img {
  margin: 150px auto 0;
}
.mobile-body .loader-img {
  margin-top: 50px;
}
.mobile-body .chartActive {
  height: 250px;
}
.mobile-body .chart-height {
  min-height: 250px;
}
.mobile-body .module-orderform {
  width: 100%;
}
.mobile-body .module-orderopen__table-list .table-list__item-value {
  padding: 0.2rem 0;
}
.mobile-body .trade-head__right iframe {
  padding-right: 0 !important;
}
.width-180 {
  min-width: 180px;
}
.form-components__block-button-v2 {
  margin: 0 auto;
  max-width: 200px;
}
.widget-stats__block-3 {
  align-self: center;
  margin-bottom: 5px;
  margin-right: 0 !important;
}
.widget-stats__block-3 .widget-stats__list-item {
  margin-right: 15px !important;
}
.widget-stats__block-3 .widget-stats__list-item .social-icon {
  display: block;
  height: 20px;
  position: relative;
  width: 20px;
}
.widget-stats__block-3
  .widget-stats__list-item
  .social-icon
  .social-icon__color {
  fill: #515152;
}
.widget-stats__block-3 .widget-stats__list-item .social-icon2 {
  height: 20px;
  margin-top: -2px;
  width: 22px;
}
.widget-stats__block-3 .widget-stats__list-item .social-icon3 {
  height: 20px;
  margin-top: -3px;
  width: 24px;
}
.dark .widget-stats__list-item .social-icon__color {
  fill: var(--white-color) !important;
}
.btn-full-width {
  margin-top: 0 !important;
  width: 100% !important;
}
.btn-full-width .gsi-material-button {
  display: block;
  min-width: 100%;
}
.btn-full-width .gsi-material-button svg {
  margin-top: 4px;
}
.btn-full-width .loader-svg-icon svg {
  margin-left: 7px;
  margin-top: -1px;
}
.opacity-80 {
  opacity: 0.6;
}
#buy-container {
  bottom: 10px;
  display: none;
  position: fixed;
  right: 10px;
  z-index: 1;
}
.buy-container-show {
  display: block !important;
}
.tabs-main {
  margin-bottom: 25px !important;
}
.tiny-slider .vue-slider {
  margin: 0.7rem 0 !important;
}
.module-orderform__title-item {
  padding: 1.5rem 0 0.5rem !important;
}
.wallets-action-buttons {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}
.wallets-action-buttons .form-components__block-item {
  margin: 0;
  width: auto;
}
.wallets-action-buttons .form-components__block-button {
  width: auto;
}
@media screen and (min-width: 1000px) {
  .min-w-md {
    width: 250px;
  }
}
@media screen and (max-width: 1000px) {
  .not-home-page {
    display: none !important;
  }
  .mobbar {
    background: var(--blue-dark-color);
    border-top: 1px solid hsla(0, 0%, 100%, 0.08);
    bottom: 0;
    display: block;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 60;
  }
  .mobbar__row {
    justify-content: space-around;
    padding: 8px 6px 18px;
  }
  .mobbar__link,
  .mobbar__row {
    align-items: center;
    display: flex;
  }
  .mobbar__link {
    color: hsla(0, 0%, 100%, 0.7);
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    text-decoration: none;
  }
  .mobbar__link h4 {
    color: inherit;
    font-size: 11px;
    line-height: 1;
    margin: 0;
  }
  .mobbar__icon svg {
    display: block;
  }
  .mobbar__link.active,
  .mobbar__link:hover {
    color: #fff;
  }
  .main-section {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0));
  }
}
.bordered-dark {
  border: 1px solid var(--border-line-color);
}
.gxhead-topbar {
  background: var(--blue-dark-color);
  color: var(--white-color);
  position: relative;
  width: 100%;
  z-index: 11;
}
.gxhead-nav {
  margin: 0 auto;
  max-width: 1280px;
  padding: 6px 16px;
}
.gxhead-navlist {
  align-items: center;
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gxhead-item {
  margin-top: 8px;
  padding-bottom: 8px;
  position: relative;
}
.gxhead-item .active {
  color: var(--yellow-color);
}
.gxhead-link {
  align-items: center;
  border-radius: 6px;
  color: var(--white-color);
  display: inline-flex;
  font-size: 14px;
  gap: 6px;
  line-height: 1;
  padding: 6px 8px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.gxhead-has-children > .gxhead-link:after {
  background-color: currentColor;
  content: "";
  display: inline-block;
  height: 6px;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.9;
  transition: transform 0.2s ease;
  width: 10px;
}
.gxhead-submenu {
  background: #0e1623;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  display: none;
  left: 0;
  min-width: 180px;
  padding: 8px 6px;
  position: absolute;
  top: 100%;
  z-index: 1000;
}
.gxhead-item:focus-within > .gxhead-submenu,
.gxhead-item:hover > .gxhead-submenu,
.gxhead-submenu:hover {
  display: block;
}
.gxhead-subitem {
  list-style: none;
}
.gxhead-sublink {
  align-items: center;
  border-radius: 6px;
  color: #e6edf7;
  display: flex;
  font-size: 13px;
  gap: 10px;
  padding: 8px 10px;
  text-decoration: none;
}
.gxhead-sublink-icon {
  flex-shrink: 0;
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  width: 18px;
}
.gxhead-sublink:hover .gxhead-sublink-icon {
  opacity: 1;
}
.gxhead-sublink:hover {
  background: hsla(0, 0%, 100%, 0.08);
  color: #fff;
}
@media (max-width: 1024px) {
  .gxhead-navlist {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .gxhead-nav {
    padding: 6px 0;
  }
  .gxhead-navlist {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }
  .gxhead-item {
    flex: 0 0 auto;
    padding-bottom: 0;
    width: 100%;
  }
  .gxhead-link {
    padding: 10px 0;
    width: 100%;
  }
  .gxhead-submenu {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: none;
    padding: 4px 0 4px 10px;
    position: static;
  }
  .gxhead-item:focus-within > .gxhead-submenu {
    display: block;
  }
  .gxhead-sublink-icon {
    display: none;
  }
}
.link-card {
  position: relative;
}
.link-card:after {
  background-color: currentColor;
  content: "";
  height: 14px;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M5 3L9 7L5 11' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M5 3L9 7L5 11' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.6;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  width: 14px;
}
.link-card:hover:after {
  opacity: 0.9;
  transform: translateY(-50%) translateX(2px);
}
.lending-container .components-filter__item {
  width: 100% !important;
}
.lending-container .block-info {
  display: flex;
  justify-content: space-between;
}
.lending-container .swap-container-elements > div.relative-right input {
  background-color: none !important;
  background: transparent !important;
}
.tabs-root {
  margin-bottom: 10px !important;
}
.nomargin {
  margin: 0 !important;
}
.less-pad {
  padding: 0.4rem 0 0.4rem 0.2rem;
}
.less-pad-v2 {
  padding: 0.4rem 1.7rem 0.4rem 0.2rem;
}
.no-mr {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.align-end {
  justify-content: flex-end !important;
}
.nopaddings {
  padding: 0 !important;
}
.options-module-bordered {
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  padding: 20px;
}
.options-module-bordered .vue-slider {
  margin-right: 8px !important;
}
.wallet-arrow-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  height: 28px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}
.wallet-arrow-btn:before {
  background-color: currentColor;
  content: "";
  display: block;
  height: 14px;
  margin: 7px auto;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M5 3L9 7L5 11' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M5 3L9 7L5 11' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.7;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  width: 14px;
}
.wallet-arrow-btn:hover:before {
  opacity: 1;
  transform: translateX(2px);
}
.walletsheet-overlay {
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.45);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.walletsheet {
  background: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  max-width: 640px;
  padding: 14px 16px 18px;
  width: 100%;
}
.dark .walletsheet {
  background: var(--blue-dark-color);
}
.walletsheet-header {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  padding-bottom: 6px;
}
.walletsheet-title {
  font-size: 16px;
  font-weight: 600;
}
.walletsheet-close {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.walletsheet-body {
  padding-top: 10px;
}
.walletsheet-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px 2px;
}
.walletsheet-label {
  font-size: 14px;
  opacity: 0.8;
}
.walletsheet-value {
  font-weight: 600;
}
.tables.mob-table-wallets tbody tr td.nopaddings:after {
  content: none !important;
  display: none !important;
}
@media (min-width: 768px) {
  .walletsheet {
    border-radius: 14px;
    margin-bottom: 10vh;
  }
}
.dark .dark-text-field {
  background-color: var(--blue-dark-color);
  color: var(--white-color);
}
.dark-text-field {
  padding: 14px 10px;
}
.bordered-t {
  border-top: 1px solid var(--border-line-color);
  padding-top: 20px;
}
.module-container__separator {
  display: none;
}
.marker-lite-inner {
  margin-top: 15px !important;
}
.marker-lite-inner .trade-head {
  display: flex !important;
}
.marker-lite-inner .trade-head .trade-head__left {
  padding-left: 0 !important;
  padding-top: 0 !important;
}
.marker-lite-inner .trade-head .trade-head__row-left {
  border: none !important;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  width: 50% !important;
}
.marker-lite-inner
  .trade-head
  .trade-head__row-left
  .module-orderbook__list-item__total,
.marker-lite-inner
  .trade-head
  .trade-head__row-left
  .module-orderbook__title-total {
  display: none !important;
}
.marker-lite-inner
  .trade-head
  .trade-head__row-left
  .module-orderbook__list-item__price,
.marker-lite-inner
  .trade-head
  .trade-head__row-left
  .module-orderbook__sell
  .module-orderbook__title {
  padding-left: 0 !important;
}
.marker-lite-inner .trade-head .trade-head__row-right {
  width: 50% !important;
}
.marker-lite-inner .trade-head .trade-head__row-right .vue-slider {
  margin: 1.6rem 0;
}
.marker-lite-inner .trade-head .trade-head__row-right .options-module-bordered {
  border: none !important;
  padding: 0 !important;
}
.marker-lite-inner .trade-head .trade-head__block-middle {
  padding-left: 0 !important;
  padding-top: 0 !important;
}
.marker-lite-inner .trade-head .module-orderform .button-tab {
  padding: 0.2rem 0;
}
.marker-lite-inner .trade-head .module-orderform__title-item {
  padding: 0.8rem 0 0.2rem !important;
}
.marker-lite-inner .trade-head .module-orderform__buy-title,
.marker-lite-inner .trade-head .module-orderform__sell-title {
  margin: 0.5rem 0;
}
.marker-lite-inner .trade-head .module-orderform__buy-forms__item,
.marker-lite-inner .trade-head .module-orderform__sell-forms__item {
  padding: 0 1rem;
}
.marker-lite-inner .trade-head .module-orderform__buy-forms__item input,
.marker-lite-inner .trade-head .module-orderform__sell-forms__item input {
  font-weight: 400;
}
.marker-lite-inner .trade-head .module-orderform__buy-forms button,
.marker-lite-inner .trade-head .module-orderform__sell-forms button {
  padding: 0.4rem 0;
}
.marker-lite-inner .trade-head .module-orderform__buy-icon,
.marker-lite-inner .trade-head .module-orderform__sell-icon {
  display: none;
}
.marker-lite-inner .module-orderopen__navigation-title {
  padding: 0.5rem 0;
}
.marker-lite-inner .module-orderopen__navigation-title:hover {
  color: inherit;
}
.marker-lite-inner .module-orderopen .module-head {
  display: none !important;
}
.marker-lite-inner .module-orderopen {
  padding: 0;
}
.marker-lite-inner .module-orderopen .table-list__item {
  margin-bottom: 15px;
  padding: 0 0 15px;
}
.marker-lite-inner .module-orderopen__navigation-active {
  border-bottom: 2px solid var(--yellow-color);
}
.marker-lite-inner .module-container__separator {
  display: flex;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 10px;
}
.marker-lite-inner .module-orderbook__buy .module-orderbook__title {
  display: none;
}
.marker-lite-inner .trade-intro {
  display: flex;
  justify-content: space-between;
}
.marker-lite-inner .trade-intro h2 {
  font-size: 1rem;
  margin-bottom: 15px;
}
.marker-lite-inner .trade-intro .pair-icon .navigation-icon__color {
  fill: var(--dark-text-color);
}
.marker-lite-inner .trade-intro .pair-icon__active .navigation-icon__color {
  fill: var(--yellow-color);
}
.marker-lite-inner .trade-head__block-top {
  padding: 0 !important;
}
.marker-lite-inner
  .trade-head__block-top
  .widget-stats__row
  widget-stats__block-1 {
  display: none;
}
.marker-lite-inner .trade-head__block-top .widget-container {
  display: flex !important;
  justify-content: space-between;
}
.marker-lite-inner
  .trade-head__block-top
  .widget-container
  .widget-stats__block-3,
.marker-lite-inner
  .trade-head__block-top
  .widget-container
  .widget-stats__title {
  display: none !important;
}
.marker-lite-inner
  .trade-head__block-top
  .widget-container
  .widget-stats__price-number {
  font-size: 1.2rem;
  font-weight: 500;
}
.marker-lite-inner .trade-head__block-top .widget-stats__row {
  display: flex !important;
}
.marker-lite-inner
  .trade-head__block-top
  .widget-stats__row
  .widget-stats__list {
  display: block !important;
}
.marker-lite-inner
  .trade-head__block-top
  .widget-stats__row
  .widget-stats__list
  .widget-stats__list-item {
  display: flex !important;
  justify-content: space-between !important;
  margin-bottom: 0 !important;
  width: 100% !important;
}
.marker-lite-inner .chart-height {
  margin-bottom: 15px;
}
#app .header-main {
  padding: 0 !important;
}
#body .on-ramp-swap-hidden {
  display: none !important;
}
#body .on-ramp-swap {
  background: #fff;
  border: 2px solid #efeded;
  border-bottom: none;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  bottom: 0;
  box-shadow: -2px -7px 36px -2px rgba(41, 41, 41, 0.65);
  -webkit-box-shadow: -2px -7px 36px -2px rgba(41, 41, 41, 0.65);
  -moz-box-shadow: -2px -7px 36px -2px rgba(41, 41, 41, 0.65);
  margin-bottom: 0;
  /* position: fixed; */
  right: 19px;
  z-index: 999;
}
#body .on-ramp-swap-header h4 {
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 0;
}
#body .on-ramp-swap-header svg {
  cursor: pointer;
  height: 20px;
  width: 20px;
}
#body .on-ramp-swap-header svg path {
  fill: var(--blue-dark-color);
}
.dark .on-ramp-swap {
  background: #161627 !important;
  border: 1px solid #22202a !important;
  box-shadow: -2px -7px 36px -2px rgba(0, 0, 0, 0.65) !important;
  -webkit-box-shadow: -2px -7px 36px -2px rgba(0, 0, 0, 0.65) !important;
  -moz-box-shadow: -2px -7px 36px -2px rgba(0, 0, 0, 0.65) !important;
}
.dark .on-ramp-swap .on-ramp-swap-header svg path {
  fill: var(--dark-text-color) !important;
}
.half-rounded input {
  border-radius: 10px !important;
}
.padding-zero {
  padding: 0 !important;
}
.support-component textarea {
  background: transparent;
  border: 1px solid var(--border-line-color) !important;
}
.support-component textarea:focus {
  border: 1px solid var(--yellow-color) !important;
  box-shadow: none !important;
  outline: none !important;
}
.dark .modal-popup {
  background-color: var(--blue-dark-thir-color);
}
.modal-popup {
  background: #fff;
}
#buy-tp-sl:checked,
#sell-tp-sl:checked {
  color: var(--yellow-color) !important;
}
.module-orderbook__list .__vuescroll .__rail-is-horizontal {
  display: none !important;
}
.phone-input-wrapper .phone-input {
  margin-left: 0 !important;
}
.auth-nav {
  flex-direction: row !important;
}
@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
.border-t-blue-600 {
  border-top: 4px solid #1d4ed8;
}
@media (min-width: 1001px) {
  .cex-home {
    padding-left: 15px;
    padding-right: 15px;
  }
  footer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
