@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap);
@charset "UTF-8";
/** LIST COMPONENTS */
/** components title start */
.components-title h2 {
  margin: 1rem 0 1rem;
  font-size: var(--h2-font__size);
}

/** components title end */
/** components tabs start */
.tabs {
  display: flex;
  justify-content: space-between;
  margin: 0 0 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-line-color);
  /** left start */
  /** left end */
  /** right */
  /** right end */
}
.tabs-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tabs-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/** components tabs end */
/** nav start */
.tabs-nav {
  display: flex;
  justify-content: flex-start;
  color: var(--second-text-color);
  cursor: pointer;
}
.tabs-nav__item {
  position: relative;
  margin-right: 1.5rem;
  padding: 0.5rem 0;
}
.tabs-nav__item:hover {
  color: var(--hover-v1-color);
}
.tabs-nav__item:hover:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.12rem;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--hover-v1-color);
}
.tabs-nav__active {
  color: var(--hover-v1-color);
}
.tabs-nav__active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.12rem;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--hover-v1-color);
}

@media screen and (max-width: 1000px) {
  .tabs-nav {
    flex-direction: column;
  }
  .tabs-nav__item:hover:after {
    height: 0px;
  }
  .tabs-nav__active:after {
    height: 0px;
  }
}
/** search start */
.tabs-search {
  display: flex;
  justify-content: flex-start;
  /** icon */
  /** color */
}
.tabs-search input {
  display: block;
  width: 100%;
  padding: 0.4rem 0.5rem 0.4rem 0.5rem;
  font-size: var(--default-font__size);
  background-color: transparent;
  outline: none;
  border: none;
  color: var(--first-text-color);
}
.tabs-search input:focus {
  outline: none;
  box-shadow: none;
}
.tabs-search input::-moz-placeholder {
  color: var(--second-text-color);
}
.tabs-search input::placeholder {
  color: var(--second-text-color);
}
.tabs-search__icon {
  position: relative;
  top: 8px;
  display: inline-block;
  width: 22px;
  height: 24px;
  margin-right: 4px;
}
.tabs-search__color {
  stroke: var(--first-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/** search end */
/** components label start */
.components-label {
  display: inline-block;
  padding: 0.2rem;
  width: 70px;
  text-align: center;
  font-size: 10px;
  border-radius: 6px;
  background-color: var(--border-line-color);
  color: var(--second-text-color);
}

.label-red {
  background-color: rgba(238, 40, 68, 0.16);
  color: var(--red-color);
}
.label-red span {
  cursor: pointer;
  color: var(--red-color) !important;
}

.label-green {
  background-color: rgb(1, 188, 141);
  color: #fff;
}

.label-orange {
  background-color: rgba(225, 167, 54, 0.2);
  color: var(--yellow-color);
}

/** components label end */
/** components card start */
.card-warning {
  background: #019acc;
}
.card-warning.active {
  background: #785f29;
}
.card-warning:hover {
  background: #ffffff;
}

body.dark .card-warning {
  background: #785f29;
}
body.dark .card-warning.active {
  background: #785f29;
}
body.dark .card-warning:hover {
  background: #353945;
}
body.dark .site-layout .table-form-container-item {
  border-color: var(--fourth-text-color);
}
body.dark .site-layout #card-element {
  border-color: var(--border-line-color);
}

/** components card end */
/** table components start */
.table-components {
  margin: 3rem auto;
}
.table-components table {
  width: 100%;
}
.table-components table thead, .table-components table tbody {
  padding: 0;
  text-align: left;
}
.table-components table tr {
  padding: 0;
  text-align: left;
}
.table-components table th {
  padding-bottom: 1rem;
}
.table-components .table-filter .filter-btn {
  padding-top: 10px;
  padding-bottom: 10px;
}
.table-components .table-list__cursor {
  cursor: pointer;
}
.table-components .no-cursor .table-sort__value {
  cursor: default !important;
}

/** table components end */
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);
}

/** table filter components start */
.form-border {
  border: 0px solid var(--border-line-color) !important;
}

.components-filter__form {
  margin: 1rem 0;
  padding: 1rem;
  max-width: 724px;
  width: 100%;
  /** item filter-block */
  /* button */
}
.components-filter__form .form-row .components-filter__item {
  width: 100% !important;
}
.components-filter__form .components-filter__row {
  justify-content: space-between !important;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.components-filter__form .components-filter__item {
  width: 49%;
  margin-right: 0;
}
.components-filter__form .components-filter__item .strip {
  width: 100%;
}
.components-filter__form .components-filter__item input,
.components-filter__form .components-filter__item select {
  border: 1px solid var(--border-line-color);
  background-color: transparent;
  padding: 0.5rem;
  font-size: var(--small-font__size);
}
.components-filter__form .components-filter__item input:focus,
.components-filter__form .components-filter__item select:focus {
  border: 1px solid var(--yellow-color);
  outline: none;
  box-shadow: none;
}
.components-filter__form .components-filter__item input option,
.components-filter__form .components-filter__item select option {
  outline: none;
  background-color: var(--select-option);
  border: var(--border-line-color);
}
.components-filter__form .components-filter__item label {
  font-size: var(--default-font__size);
  margin-left: 25px;
}
.components-filter__form .components-filter__item .filter-select {
  padding: 0.6rem 1rem;
  font-size: var(--default-font__size);
  border: 1px solid var(--border-line-color);
  background-color: transparent !important;
}
.components-filter__form .components-filter__item .filter-select:focus {
  border: 1px solid var(--yellow-color);
  outline: none;
  box-shadow: none;
}
.components-filter__form .components-filter__item .filter-select__option {
  padding: 0.5rem;
  color: var(--second-text-color);
  background-color: var(--select-option);
  border: 1px solid var(--border-line-color);
}
.components-filter__form .components-filter__item .filter-hover {
  color: #FCFCFD;
  background-color: var(--purple-second-color);
}
.components-filter__form .components-filter__item .filter-active {
  background-color: var(--purple-second-color);
}
.components-filter__form .components-filter__item .bth-clear {
  top: 6px;
}
.components-filter__form .components-filter__button {
  outline: 0px solid #F00;
  display: block;
  width: 100%;
  position: relative;
  background-color: #019acc;
}
.components-filter__form .components-filter__button:hover {
  background-color: #785f29;
}

.components-filter {
  margin-bottom: 1rem;
  /** item filter-block */
  /* button */
}
.components-filter__row {
  display: flex;
  justify-content: space-between;
}
.components-filter__items {
  width: 70%;
  margin-right: 1rem;
}
.components-filter__item {
  width: 24%;
  margin-right: 1rem;
}
.components-filter__item input,
.components-filter__item select {
  border: 1px solid var(--border-line-color);
  background-color: transparent;
  padding: 0.25rem;
  font-size: var(--small-font__size);
}
.components-filter__item input:focus,
.components-filter__item select:focus {
  border: 1px solid var(--yellow-color);
  outline: none;
  box-shadow: none;
}
.components-filter__item input option,
.components-filter__item select option {
  outline: none;
  background-color: var(--select-option);
  border: var(--border-line-color);
}
.components-filter__item label {
  font-size: var(--default-font__size);
}
.components-filter__item .filter-select {
  padding: 0.5rem 1rem;
  font-size: var(--default-font__size);
  border: 1px solid var(--border-line-color);
  background-color: transparent !important;
}
.components-filter__item .filter-select:focus {
  border: 1px solid var(--yellow-color);
  outline: none;
  box-shadow: none;
}
.components-filter__item .filter-select__option {
  padding: 0.5rem;
  background-color: var(--select-option);
  border: 1px solid var(--border-line-color);
  color: #000;
}
.components-filter__item .filter-hover {
  color: #019acc;
  background-color: var(--purple-second-color);
}
.components-filter__item .filter-active {
  background-color: var(--purple-second-color);
}
.components-filter__item .bth-clear {
  top: 6px;
}
.components-filter__item .bth-clear:hover {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__button {
  outline: none;
  display: block;
  width: 100%;
  position: relative;
  background-color: var(--purple-second-color);
}
.components-filter__button:hover {
  background-color: var(--purple-color);
}

/** table filter components start */
/** table filter media screen start */
@media screen and (max-width: 1000px) {
  /** version 1 start */
  .components-filter__form {
    max-width: 100%;
    width: 100%;
  }
  /** version 1 end */
}
/** table filter media screen end */
/** table filter media screen start */
@media screen and (max-width: 770px) {
  /** version 2 start */
  .components-filter__row {
    display: block;
  }
  .components-filter__item {
    width: 100%;
    margin-bottom: 1rem;
  }
  .components-filter__items {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0px;
  }
  /** version 2 end */
}
/** table filter media screen end */
/** table filter media screen start */
@media screen and (max-width: 670px) {
  /** version 1 start */
  .components-filter__form .components-filter__row {
    display: block;
  }
  .components-filter__form .components-filter__item {
    width: 100%;
    margin-bottom: 1rem;
  }
  /** version 1 end */
}
/** table filter media screen end */
.dir-rtl .components-filter__item .bth-clear {
  left: 1px;
  right: auto;
}

@media screen and (max-width: 770px) {
  .dir-rtl .components-filter__item {
    margin-right: 0;
    margin-left: 1rem;
  }
}
/** thead start */
.table-sort {
  /** value */
  /** title */
  /** icon */
}
.table-sort__value {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.table-sort__title {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--second-text-color);
}
.table-sort__icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 1rem;
}
.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);
}

/** thead end */
/** tbody media screen start */
@media screen and (max-width: 1000px) {
  .table-sort {
    display: none;
  }
}
/** tbody media screen end */
/** tbody start */
.table-list {
  /** subtitle */
  /** value */
  /** text */
  /** link */
  /** version 1 (title+icon)*/
  /** version 2 (title+image) */
  /** title version 3 (text+two icon) */
  /** title version 4 (noname) */
}
.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 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.3rem 0 0.3rem 0.2rem;
}
.table-list__text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.table-list__link {
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
}
.table-list__link a {
  display: block;
  margin-right: 1.5rem;
  color: var(--yellow-color);
}
.table-list__link a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--yellow-color);
  transition: all 0.5s ease-out;
}
.table-list__link a:hover:after {
  width: 100%;
}
.table-list .title-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /** icon */
  /** name */
}
.table-list .title-icon__icon {
  position: relative;
  top: 1px;
  z-index: 9;
  width: 18px;
  height: 18px;
  margin: 0 8px;
  display: inline-block;
}
.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 {
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 0 1rem 0 0.6rem;
}
.table-list__title {
  text-align: left;
}
.table-list__title-big {
  display: block;
  width: 100%;
}
.table-list__title-small {
  display: block;
  font-size: var(--small-font__size);
  color: var(--second-text-color);
}
.table-list .list-text__name {
  color: var(--second-text-color);
  display: block;
  margin-right: 10px;
}
.table-list .list-text__icon {
  position: relative;
  display: block;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.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 {
  outline: 1px solid #F00;
  position: relative;
  top: 1px;
  z-index: 9;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 8px;
}
.table-list__icon-color {
  fill: var(--second-text-color);
}

/** tbody end */
/** tbody media screen start */
@media screen and (max-width: 1000px) {
  .table-list {
    /** link */
  }
  .table-list tr:hover {
    background-color: none;
  }
  .table-list td {
    clear: both;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .table-list td:first-child {
    padding-top: 1rem;
    width: 100% !important;
  }
  .table-list td:nth-last-child(1) {
    padding-bottom: 1rem;
  }
  .table-list .rs {
    width: 30% !important;
    display: revert;
  }
  .table-list .rd {
    width: 70% !important;
  }
  .table-list__subtitle {
    display: block;
    color: var(--second-text-color);
  }
  .table-list__link a {
    display: block;
    margin-right: 0;
    margin-left: 1rem;
    color: var(--yellow-color);
  }
  .table-list__link a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--yellow-color);
    transition: all 0.5s ease-out;
  }
  .table-list__link a:hover:after {
    width: 100%;
  }
}
/** tbody media screen end */
.dir-rtl .table-list .list-text__icon {
  margin-left: 0;
  margin-right: 10px;
}

/** tfood start */
.table-result__notfound {
  width: 100%;
  font-size: 0.9rem;
  text-align: center;
  margin: 0 auto;
  padding: 6rem 0;
}
.table-result__notfound-icon {
  display: inline-block;
  margin-bottom: 0.3rem;
  width: 60px;
  height: 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 {
  display: flex;
  justify-content: center;
  color: var(--second-text-color);
}
.table-result__notfound-text a {
  display: block;
  margin: 0 0.4rem;
  color: var(--yellow-color);
}
.table-result__notfound-text a:hover {
  text-decoration: underline;
}

/** tfood end */
/** base start */
.base-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /** left start */
  /** left end */
  /** right start */
  /** right end */
}
.base-container__left {
  width: 50%;
  min-height: 100vh;
  /**	display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
  background-image: url("/images/bg-home.png");
  background-size: cover;
  background-color: var(--blue-dark-color);
}
.base-container__left-content {
  position: relative;
  max-width: 600px;
  width: 100%;
  padding-left: 1rem;
  color: var(--white-color);
  font-weight: 400;
}
.base-container__left-title h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
}
.base-container__left-title h1 .typer-text {
  color: var(--yellow-color) !important;
}
.base-container__left-title h1 .typer-cursor {
  color: var(--yellow-color) !important;
}
.base-container__left-title p {
  font-size: 1.5rem;
}
.base-container__right {
  /* width: 50%; */
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.base-container__right-logo {
  width: 200px;
  margin-bottom: 6rem;
}
.base-container__right-logo img {
  width: 100%;
}
.base-container__right-content {
  max-width: 470px;
  width: 100%;
}

/** base end */
/** base media screen start */
@media screen and (max-width: 1100px) {
  /** base start */
  .base-container {
    /** left start */
    /** left end */
    /** right start */
    /** right end */
  }
  .base-container__left {
    display: none;
  }
  .base-container__right {
    width: 100%;
    padding: 2rem;
  }
  .base-container__right-content {
    max-width: 90%;
  }
  /** base end */
}
/** base media screen end */
/** form components start */
.form-components {
  /** title */
  /** input text (row) */
  /** table */
  /** icon */
}
.form-components__title {
  max-width: 470px;
  width: 100%;
  margin-bottom: 2rem;
  font-size: var(--h2-font__size);
}
.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:nth-last-child(1) {
  text-align: left;
}
.form-components__table-list span {
  display: inline-block;
  width: 16rem;
  padding: 1rem 0;
}
.form-components__item {
  margin: 2rem 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-components .block-status {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.form-components .block-status__icon {
  display: block;
  width: 34px;
  height: 34px;
  margin: 1rem;
}
.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 end */
/** form components block start */
.form-components__block {
  /** item start */
  /** item end */
  /** icon */
  /** label */
  /** link */
}
.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 {
  position: absolute;
  top: 15px;
  display: block;
  width: 22px;
  height: 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 {
  font-size: 0.9rem;
  display: block;
  color: var(--second-text-color);
}
.form-components__block-label a {
  display: inline-block;
  margin: 0 0.5rem;
  text-decoration: none;
  color: var(--purple-color);
}
.form-components__block-link {
  width: 100%;
  display: block;
  font-size: 0.9rem;
  text-align: left;
  color: var(--purple-color);
}
.form-components__block-link-first {
  text-align: left;
}

/** form components block end */
/** status valid start */
.form-error input {
  border-bottom: 2px solid var(--red-color) !important;
  background-color: transparent !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 {
  display: block;
  margin: 8px 0 10px;
  font-size: 0.9rem;
  color: var(--red-color);
}

.form-success input {
  border-bottom: 2px solid var(--green-color) !important;
  background-color: transparent !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 {
  display: block;
  margin: 8px 0 10px;
  font-size: 0.9rem;
  color: var(--green-color);
}

/** status valid end */
/** title / text start */
.block-title {
  margin: 1.5rem 0 1rem;
  font-size: 1.2rem;
}

.block-text p {
  font-size: 0.9rem;
}

/** title / text end */
/** button start */
.block-button button {
  width: 100%;
  display: block;
  padding: 1rem 0;
  text-align: center;
  color: var(--white-color);
  background-color: var(--purple-color);
  border: 1px solid var(--purple-color);
  border-radius: 6px;
  outline: none;
}
.block-button button:hover {
  background-color: var(--purple-second-color);
}
.block-button button:focus {
  background-color: var(--purple-second-color);
}
.block-button button:active, .block-button button.nice-select.open {
  background-color: var(--purple-color);
}

/** button end */
/** input text start */
.block-input-text input {
  width: 100%;
  text-align: left;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.8rem 0.8rem 0.8rem 2rem;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  background-color: transparent !important;
  color: var(--first-text-color);
}
.block-input-text input:hover {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  background-color: transparent !important;
}
.block-input-text input:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  box-shadow: none;
  background-color: transparent !important;
  color: var(--first-text-color);
}
.block-input-text input:active, .block-input-text input.nice-select.open, .block-input-text input:visited, .block-input-text input:target, .block-input-text input:focus-visible {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  background-color: transparent !important;
  color: var(--first-text-color);
}

/** input text end */
/** checkbox / radio start */
.block-checkbox__group {
  display: flex;
  justify-content: space-between;
}

.block-checkbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.block-checkbox input {
  width: 20px;
  height: 20px;
  display: block;
  margin-left: 10px;
  border: 1px solid var(--border-line-color);
  background-color: transparent;
}
.block-checkbox input:focus {
  outline: none;
  box-shadow: none;
}
.block-checkbox input:active, .block-checkbox input.nice-select.open {
  outline: none;
}

.input-radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.input-radio input {
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 10px;
}

.dir-rtl .input-radio input {
  margin-left: 5px;
  margin-right: 10px;
}

/** checkbox / radio end */
.block-list {
  margin-top: 3rem;
}
.block-list__item {
  padding: 2rem 0;
  border-top: 1px solid var(--border-line-color);
  border-bottom: 1px solid var(--border-line-color);
}
.block-list__item-title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.block-list__item ul {
  list-style-type: circle;
  list-style-position: inside;
}
.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 {
  margin: 1rem 0;
  padding: 20px;
}

.block-keys ul {
  padding: 1rem;
  font-size: 0.9rem;
}
.block-keys ul li {
  margin-bottom: 0.2rem;
}

/** base media screen start */
@media screen and (max-width: 670px) {
  .form-components {
    /** table */
  }
  .form-components__table-list span {
    width: 10rem;
    font-size: 11px;
  }
  .form-components {
    /** table */
  }
  .form-components__table table {
    margin: 2rem 0;
    width: 100%;
  }
  .form-components__table table td {
    display: block;
  }
  .form-components__table table td:nth-last-child(1) {
    text-align: left;
    padding: 1rem 0;
  }
}
/** base media screen end */
/** base media screen start */
@media screen and (max-width: 500px) {
  .form-components {
    /** input  text(row) */
  }
  .form-components__input-text .flex {
    display: block;
  }
  .form-components__input-text .flex a {
    display: block;
    padding: 0.2rem 0;
    text-align: left;
  }
}
/** base media screen end */
.btn {
  position: relative;
  display: inline-block;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  color: var(--white-color);
  background-color: var(--purple-color);
  border: 1px solid var(--purple-color);
  border-radius: 4px;
  outline: none;
}
.btn:hover {
  background-color: var(--purple-second-color);
}
.btn:focus {
  outline: none;
  background-color: var(--purple-second-color);
}
.btn:active, .btn.nice-select.open {
  outline: none;
  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 {
  margin: 0.5rem 0;
  display: block;
  width: 100%;
}

.btn-white {
  color: var(--second-text-color);
  background-color: var(--white-color);
  border: 1px solid var(--border-line-color);
}
.btn-white:hover {
  background-color: var(--rows-color);
}
.btn-white:focus {
  outline: none;
  background-color: var(--rows-color);
}
.btn-white:active, .btn-white.nice-select.open {
  outline: none;
  background-color: var(--body-color);
}

.btn-red {
  color: var(--white-color);
  background-color: var(--red-color);
  border: 1px solid var(--red-color);
}
.btn-red:hover {
  background-color: var(--red-second-color);
}
.btn-red:focus {
  outline: none;
  background-color: var(--red-second-color);
}
.btn-red:active, .btn-red.nice-select.open {
  outline: none;
  background-color: var(--red-color);
}

.btn-loading {
  padding: 0.7rem 2rem;
}
.btn-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0.5rem;
  bottom: 0;
  margin: auto 0;
  border: 2px solid transparent;
  border-top-color: var(--white-color);
  border-radius: 50%;
  animation: btn-loading-spinner 1s ease infinite;
}

.btn-warning {
  display: block;
  width: 100px;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  color: var(--yellow-color);
  border: 1px solid var(--yellow-color);
  border-radius: 4px;
  outline: none;
  transition: all 0.5s ease-out;
}
.btn-warning:hover {
  background-color: var(--yellow-color);
  color: var(--white-color);
}

.btn-green {
  margin: 0 auto;
  font-size: 12px;
  margin-top: 32px;
  line-height: 15.2px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--green-color);
  border: 1px solid var(--green-color);
}
.btn-green:hover {
  background-color: var(--green-second-color);
}
.btn-green:focus {
  outline: none;
  background-color: var(--green-second-color);
}
.btn-green:active, .btn-green.nice-select.open {
  outline: none;
  background-color: var(--green-color);
}

.btn-red-security {
  margin: 0 auto;
  font-size: 12px;
  margin-top: 32px;
  line-height: 15.2px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--red-color);
  border: 1px solid var(--red-color);
}
.btn-red-security:hover {
  background-color: var(--red-second-color);
}
.btn-red-security:focus {
  outline: none;
  background-color: var(--red-second-color);
}
.btn-red-security:active, .btn-red-security.nice-select.open {
  outline: none;
  background-color: var(--red-color);
}

@keyframes btn-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
/** input field start */
.input-field {
  margin-bottom: 2rem;
}
.input-field label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--second-text-color);
}
.input-field select {
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 0.9rem;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  border-radius: 0 !important;
  background-color: transparent;
  transition: all 0.5s ease-out;
  color: var(--first-text-color);
}
.input-field select:hover {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}
.input-field select:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  box-shadow: none;
}
.input-field select:active, .input-field select.nice-select.open {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}
.input-field input {
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 0.9rem;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  background-color: transparent;
  transition: all 0.5s ease-out;
  color: var(--first-text-color);
}
.input-field input:hover {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}
.input-field input:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  box-shadow: none;
}
.input-field input:active, .input-field input.nice-select.open {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}
.input-field textarea {
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 0.9rem;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  background-color: transparent;
  transition: all 0.5s ease-out;
}
.input-field textarea:hover {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}
.input-field textarea:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  box-shadow: none;
}
.input-field textarea:active, .input-field textarea.nice-select.open {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}

.valid .helper-text {
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--green-color);
}
.valid input {
  border-bottom: 2px solid var(--green-color);
}

.invalid .helper-text {
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--red-color);
}
.invalid input {
  border-bottom: 2px solid var(--red-color);
}

/** input field end */
/** form group start */
.form-group {
  margin-bottom: 2rem;
}
.form-group_field {
  position: relative;
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--second-text-color);
}
.form-group_field:focus .form-group_color, .form-group_field:hover .form-group_color {
  stroke: var(--purple-color);
}
.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--second-text-color);
}
.form-group_icon {
  position: absolute;
  top: 12px;
  display: block;
  width: 22px;
  height: 22px;
}
.form-group_color {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-group input {
  width: 100%;
  margin: 0;
  padding: 0.6rem 0 0.6rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--second-text-color);
  outline: none;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  background-color: transparent !important;
  transition: all 0.5s ease-out;
}
.form-group input:hover {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}
.form-group input:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  box-shadow: none;
}
.form-group input:active, .form-group input.nice-select.open {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}

/** form group end */
.valid .helper-text, .invalid .helper-text {
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.valid input {
  border-bottom: 2px solid var(--green-color);
}
.valid .helper-text {
  color: var(--green-color);
}
.valid .form-group_color {
  stroke: var(--green-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 {
  stroke: var(--red-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 start */
.form-search {
  margin-top: 2rem;
}
.form-search__container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 3rem;
}
.form-search__block {
  width: 30%;
  padding: 0 1rem 0 0;
  align-items: stretch;
}
.form-search__block-title {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.form-search__block button {
  margin-top: 1.4rem;
}
.form-search__info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 60%;
  padding: 2rem;
  border-radius: 4px;
  background-color: var(--rows-color);
}
.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 {
  width: 50px;
  height: 50px;
  margin-right: 2rem;
}
.form-search__result {
  width: 100%;
}
.form-search__result-block {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.form-search__result-block ul {
  list-style-type: circle;
  list-style-position: inside;
}
.form-search__result .result-block {
  display: flex;
  justify-content: space-between;
}
.form-search__result-title {
  color: var(--second-text-color);
}
.form-search__result-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.form-search__result-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 0.5rem;
  cursor: pointer;
}
.form-search__result-color {
  stroke: var(--blue-dark-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-search__result-color2 {
  fill: var(--blue-dark-color);
}
.form-search__result-item {
  display: flex;
  width: 50%;
  padding-right: 1rem;
}
.form-search__result-item.w-full {
  width: 100% !important;
}
.form-search__result-item span {
  color: var(--second-text-color);
}

/** form search end */
/** table filter media screen start */
@media screen and (max-width: 1000px) {
  .form-search__info {
    width: 100%;
  }
}
/** table filter media screen end */
/** table filter media screen start */
@media screen and (max-width: 670px) {
  .form-search__info {
    display: block;
  }
  .form-search__info-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .form-search__result-item {
    padding-right: 0;
  }
}
/** table filter media screen end */
.form-container {
  max-width: 700px;
  width: 100%;
  margin: 6rem auto;
  padding: 2rem;
  border: 1px solid var(--border-line-color);
  border-radius: 4px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: none;
  -webkit-text-fill-color: unset;
  background: none;
  background-color: transparent;
}

textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--white-input) inset;
  -webkit-text-fill-color: var(--first-text-color);
}

input:-internal-autofill-selected {
  -webkit-appearance: menulist-button;
     -moz-appearance: menulist-button;
          appearance: menulist-button;
  background: none;
  background-image: none;
  background-color: unset;
}

/** pagenav start */
.pagenav {
  margin-top: 3rem;
}
.pagenav a {
  outline: none;
  border-color: var(--border-line-color);
  border-radius: 2px;
  background-color: transparent;
  color: #000;
}
.pagenav a:hover {
  background-color: var(--border-line-color);
}
.pagenav a:focus {
  color: var(--yellow-color);
  border-color: var(--yellow-color);
}
.pagenav div {
  outline: none;
  border-color: var(--border-line-color);
  background-color: transparent;
}
.pagenav .bg-white {
  background-color: var(--border-line-color);
}

body.dark .pagenav {
  margin-top: 3rem;
}
body.dark .pagenav a {
  outline: none;
  border-color: var(--border-line-color);
  border-radius: 2px;
  background-color: transparent;
}
body.dark .pagenav a:hover {
  background-color: var(--border-line-color);
}
body.dark .pagenav a:focus {
  color: var(--yellow-color);
  border-color: var(--yellow-color);
}
body.dark .pagenav div {
  outline: none;
  border-color: var(--border-line-color);
  background-color: transparent;
}
body.dark .pagenav .bg-white {
  background-color: var(--border-line-color);
  color: #000;
}

/** pagenav end */
body.dark .vue-portal-target {
  word-break: break-word;
}
body.dark .vue-portal-target .transition-all .absolute {
  background-color: var(--first-text-color);
}
body.dark .vue-portal-target .modal-container {
  background-color: var(--blue-dark-thir-color);
}
body.dark .vue-portal-target .modal-container .text-lg {
  color: var(--first-text-color);
}
body.dark .vue-portal-target .modal-container div.bg-gray-100 {
  background-color: var(--purple-third-color);
}
body.dark .vue-portal-target .modal-container div.bg-gray-100 .modal-secondary-button {
  text-transform: capitalize;
  background: var(--purple-second-color);
  border: 0;
  color: var(--white-color);
}
body.dark .modal-change-password {
  background: var(--blue-dark-thir-color);
  border-color: var(--third-text-color);
  --tw-ring-opacity: 0;
}
body.dark .modal-change-password-confirm {
  background: var(--fourth-text-color);
  --tw-border-opacity: 0;
}
body.dark .modal .stake_modal_container {
  background: var(--blue-dark-thir-color);
  border-color: var(--third-text-color);
}

body .vm--modal {
  background: none !important;
  box-shadow: none !important;
}
body .modal .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: unset;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  z-index: 9998; /* Lower z-index than the modal content */
}
body .modal .stake_modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1110px;
  transform: translate(-50%, -50%);
  background: var(--white-color);
  border-radius: 6px;
  z-index: 9999; /* Higher z-index than the modal overlay */
}

@media screen and (max-width: 1022px) {
  body .vm--modal {
    background: none !important;
    box-shadow: none !important;
  }
  body .modal .stake_modal_container {
    width: 85%;
    height: 100%;
    padding: 15px 0 0;
    overflow: scroll;
  }
}
body .dir-rtl .stake_modal_container {
  padding: 0;
}
body .dir-rtl .article__wrapper {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

body .modal {
  z-index: 10002;
}
body .modal .welcome_modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #cdaa6a 22%, #fcfcfd 100%);
  padding: 12px 12px 0;
  border-radius: 6px;
  border: 2px solid #424242;
  z-index: 10002; /* Higher z-index than the modal overlay */
}
body .modal .close_welcome {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  padding: 20px;
  cursor: pointer;
  position: fixed;
  top: -2px;
  right: 0%;
}
body .modal .welcome_img {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .modal .welcome_img img {
  width: 303px;
  height: 303px;
}
body .modal .welcome_text {
  font-size: 25px;
  text-align: center;
  margin: 18px auto 13px;
}
body .modal .welcome_text_ref {
  font-size: 16px;
  font-weight: 600;
  color: #1a2e35;
  text-align: center;
  margin-bottom: 10px;
  line-height: normal;
}

body.dark .modal .welcome_modal_container {
  background: radial-gradient(circle, #cdaa6a 22%, rgb(24, 22, 23) 100%);
  color: #fcfcfd;
  border: 2px solid #c4c4c4;
}
body.dark .modal .welcome_text {
  color: #fcfcfd;
}
body.dark .modal .close_svg {
  fill: #c4c4c4;
}
body.dark .modal .welcome_text_ref {
  color: #c4c4c4;
}

@media screen and (max-width: 770px) {
  body .vm--modal {
    background: none !important;
    box-shadow: none !important;
  }
  body .modal .welcome_modal_container {
    width: 333px;
  }
  body .modal .welcome_img img {
    width: 222px;
    height: 222px;
  }
}
body .modal {
  z-index: 10002;
}
body .modal .hamster_modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 464px;
  transform: translate(-50%, -45%);
  padding: 15px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgb(14, 14, 14) 0%, rgb(116, 116, 116) 100%);
  box-shadow: 0px 0px 17.2px 0px rgba(209, 209, 209, 0.08);
  z-index: 10002;
}
body .modal .close_hamster {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  cursor: pointer;
  position: fixed;
  bottom: 12px;
  right: 21px;
}
body .modal .hamster_coin {
  position: fixed;
  top: -60px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
body .modal .hamster_coin img {
  width: 125px;
  height: 125px;
}
body .modal .hamster_body {
  margin: 75px 0 25px;
}
body .modal .hamster_form {
  margin: 0 45px;
}
body .modal .hamster_title {
  font-size: 18px;
  font-weight: 800;
  line-height: 23.44px;
  text-align: center;
  margin-bottom: 15px;
  color: rgb(148, 148, 148);
}
body .modal .hamster_label {
  font-size: 12px;
  font-weight: 400;
  line-height: 12.5px;
  text-align: left;
  color: rgb(148, 148, 148);
  margin-top: 15px;
}
body .modal .hamster_input {
  display: block;
  width: 100%;
  padding: 9px 20px;
  border-radius: 25px;
  background: rgb(23, 21, 22);
  color: #c4c4c4;
  margin: 0 0 5px;
}
body .modal .hamster_input_accout {
  display: block;
  width: 145px;
  padding: 9px 20px;
  border-radius: 25px;
  background: rgb(23, 21, 22);
  color: #c4c4c4;
  margin: 0 auto 5px;
}
body .modal .icon {
  width: 35px;
  height: 35px;
}
body .modal .sell_now {
  display: block;
  border-radius: 25px;
  width: 100%;
  margin: 25px auto;
  background: rgb(255, 0, 0);
}
body .modal .hamster_text {
  font-size: 12px;
  font-weight: 300;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 10px;
  line-height: normal;
}
body .modal .hamster_note {
  font-size: 16px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-align: center;
}

body.dark .modal .hamster_modal_container {
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.85) 0%, rgba(116, 116, 116, 0.75) 100%);
  box-shadow: 0px 0px 17.2px 0px rgba(209, 209, 209, 0.08);
}

@media screen and (max-width: 770px) {
  body .vm--modal {
    background: none !important;
    box-shadow: none !important;
  }
  body .modal .hamster_modal_container {
    width: 333px;
  }
  body .modal .hamster_body {
    margin: 48px 0 25px;
  }
  body .modal .hamster_form {
    margin: 0;
  }
  body .modal .hamster_title {
    font-size: 15px;
  }
  body .modal .hamster_coin {
    top: -30px;
  }
  body .modal .hamster_coin img {
    width: 85px;
    height: 85px;
  }
  body .modal .hamster_label {
    margin-left: 0;
    margin-top: 9px;
  }
  body .modal .hamster_text {
    font-size: 11px;
    margin-bottom: 5px;
  }
}
body .modal {
  z-index: 10002;
}
body .modal .transfer_modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 600px;
  overflow-y: auto;
  transform: translate(-50%, -45%);
  border-radius: 6px;
  background: #fcfcfd;
  box-shadow: 0px 64px 64px -48px rgba(31, 47, 70, 0.12);
  z-index: 10002;
}
body .modal ::-webkit-scrollbar {
  width: 5px;
}
body .modal ::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 10px;
}
body .modal ::-webkit-scrollbar-track {
  background: transparent;
}

body.dark .modal .transfer_modal_container {
  background: #23262f;
}

body .modal {
  z-index: 10002;
}
body .modal .notificationHMSTR_modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 595px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #eaca91 22%, #bbb2a0 100%);
  padding: 12px 22px 0;
  border-radius: 6px;
  border: 2px solid #424242;
  z-index: 10002;
}
body .modal .close_notification {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  padding: 20px;
  cursor: pointer;
  position: fixed;
  top: -2px;
  right: 0%;
}
body .modal .notification_img {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .modal .notification_img img {
  width: 170px;
  height: 170px;
}
body .modal .notification_text {
  font-size: 25px;
  text-align: center;
  margin: 13px auto;
  color: #fcfcfd;
}
body .modal .notification_text_ref {
  font-size: 16px;
  font-weight: 600;
  color: #ff7b00;
  text-align: center;
  margin-bottom: 10px;
  line-height: normal;
}
body .modal .close_svg {
  fill: #cc9901;
}

body.dark .modal .notificationHMSTR_modal_container {
  border: 2px solid #c4c4c4;
}
body.dark .modal .close_svg {
  fill: #cc9901;
}

@media screen and (max-width: 767px) {
  body .vm--modal {
    background: none !important;
    box-shadow: none !important;
  }
  body .modal .notificationHMSTR_modal_container {
    width: 318px;
    padding: 12px 15px 0;
  }
  body .modal .notification_img img {
    width: 160px;
    height: 160px;
  }
  body .modal .notification_text {
    font-size: 18px;
    margin: 5px auto 10px;
  }
  body .modal .notification_text_ref {
    font-size: 12px;
  }
}
body .modal {
  z-index: 10002;
}
body .modal .reject_modal_container {
  position: fixed;
  top: 55%;
  left: 50%;
  width: 504px;
  height: 426px;
  transform: translate(-50%, -45%);
  padding: 24px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0px 64px 64px -48px rgba(31, 47, 70, 0.12);
  z-index: 10002;
}
body .modal .reject_title {
  place-self: center;
  color: red;
  font-size: 16px;
  padding-bottom: 12px;
}

body.dark .modal {
  z-index: 10002;
}
body.dark .modal .reject_modal_container {
  position: fixed;
  top: 55%;
  left: 50%;
  width: 504px;
  height: 426px;
  transform: translate(-50%, -45%);
  padding: 24px;
  border-radius: 6px;
  background: rgb(18, 19, 20);
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0px 64px 64px -48px rgba(31, 47, 70, 0.12);
  z-index: 10002;
}
body.dark .modal .reject_title {
  place-self: center;
  color: red;
  font-size: 16px;
  padding-bottom: 12px;
}

body .modal {
  z-index: 10002;
}
body .modal .email_modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 424px;
  height: 535px;
  transform: translate(-50%, -45%);
  padding: 24px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0px 64px 64px -48px rgba(31, 47, 70, 0.12);
  z-index: 10002;
}
body .modal .back {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #00ED7B;
  margin-bottom: 16px;
  cursor: pointer;
}
body .modal .back .icon {
  width: 12px;
  height: 12px;
  margin-right: 12px;
}
body .modal .title {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  margin-bottom: 36px;
}
body .modal .content {
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
  margin-bottom: 36px;
}
body .modal .email {
  margin-bottom: 24px;
}
body .modal .email_input {
  width: 100%;
  height: 60px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20.8px;
  padding: 13px 10px;
  background: transparent;
  transition: all 0.1s;
  border: 1px solid #000000;
  border-radius: 6px;
}
body .modal .code {
  margin-bottom: 24px;
}
body .modal .code_input {
  width: 100%;
  height: 60px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20.8px;
  padding: 13px 10px;
  background: transparent;
  transition: all 0.1s;
  border: 1px solid #000000;
  border-radius: 6px;
}
body .modal .confirm_button {
  width: 100%;
  height: 60px;
}
body .modal .note {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin: 12px auto 0;
}

body .dir-rtl .modal .back .icon {
  transform: rotateY(180deg);
  margin-right: 0px;
  margin-left: 12px;
}

body.dark .modal .email_modal_container {
  background: #010101;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
}
body.dark .modal .content {
  opacity: 80%;
}
body.dark .modal .email_input {
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark .modal .code_input {
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark .modal .note {
  color: rgba(255, 255, 255, 0.6);
}
body.dark .modal .back {
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 767px) {
  body .vm--modal {
    background: none !important;
    box-shadow: none !important;
  }
  body .modal .email_modal_container {
    width: 333px;
    height: 545px;
  }
  body .modal .note {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  body .modal .title {
    font-size: 18px;
    margin-bottom: 18px;
  }
  body .modal .content {
    font-size: 12px;
    margin-bottom: 18px;
  }
}
body .modal {
  z-index: 10002;
}
body .modal .name_modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 424px;
  height: 454px;
  transform: translate(-50%, -45%);
  padding: 24px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0px 64px 64px -48px rgba(31, 47, 70, 0.12);
  z-index: 10002;
}
body .modal .name {
  margin-bottom: 24px;
}
body .modal .name_input {
  width: 100%;
  height: 60px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20.8px;
  padding: 13px 10px;
  background: transparent;
  transition: all 0.1s;
  border: 1px solid #000000;
  border-radius: 6px;
}

body.dark .modal .name_modal_container {
  background: #010101;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
}
body.dark .modal .name_input {
  border-color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 767px) {
  body .vm--modal {
    background: none !important;
    box-shadow: none !important;
  }
  body .modal .name_modal_container {
    width: 333px;
    height: 545px;
  }
}
body .modal {
  z-index: 10002;
}
body .modal .avatar_modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 366px;
  transform: translate(-50%, -45%);
  padding: 24px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0px 64px 64px -48px rgba(31, 47, 70, 0.12);
  z-index: 10002;
}
body .modal .avatar__container {
  display: flex;
  align-items: center;
  background: rgba(1, 188, 141, 0.1);
  border-radius: 6px;
  padding: 16px;
}
body .modal .avatar__left {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .modal .avatar__left .account__avatar {
  width: 52px;
  height: 52px;
  margin-right: 0;
}
body .modal .avatar__left .upload_button {
  margin: 16px 0;
}
body .modal .avatar__left .content {
  margin-bottom: 0;
  text-align: center;
}
body .modal .avatar__right {
  width: 70%;
  padding: 24px;
  background: rgb(255, 255, 255);
  border-radius: 6px;
}
body .modal .avatar__right .avatar__filter {
  display: flex;
  align-items: center;
  justify-content: start;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  margin-bottom: 16px;
  background: rgba(1, 188, 141, 0.1);
  border-radius: 24px;
}
body .modal .avatar__right .filter {
  padding: 8px;
  background-color: rgb(255, 255, 255);
  color: #00ED7B;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
}
body .modal .avatar__right .filter.active {
  background-color: #00ED7B;
  color: rgb(255, 255, 255);
}
body .modal .avatar__right .avatar__example {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body .modal .avatar__right .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-right: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}
body .modal .avatar__right .avatar img {
  width: 100%;
  height: 100%;
}

body.dark .modal .avatar_modal_container {
  background: #010101;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
}
body.dark .modal .avatar__container {
  background: rgba(233, 242, 255, 0.1019607843);
}
body.dark .modal .avatar__right {
  background: rgba(0, 0, 0, 0.1019607843);
}
body.dark .modal .avatar__right .filter {
  background: #2E2F30;
}

@media screen and (max-width: 767px) {
  body .vm--modal {
    background: none !important;
    box-shadow: none !important;
  }
  body .modal .avatar_modal_container {
    width: 333px;
    height: 545px;
  }
  body .modal .avatar__container {
    display: flex;
    flex-direction: column;
  }
  body .modal .avatar__left {
    width: 100%;
  }
  body .modal .avatar__right {
    width: 100%;
    padding: 16px;
  }
  body .modal .avatar__right .avatar__example {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}
body .modal {
  z-index: 10002;
}
body .modal .api_modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  padding: 24px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0px 64px 64px -48px rgba(31, 47, 70, 0.12);
  z-index: 10002;
}
body .modal .close {
  padding: 8px 16px;
  width: 50%;
  border-radius: 6px;
  background-color: #37ffbc;
  cursor: pointer;
  text-align: center;
  margin: 22px 0px 0px 0px;
  justify-self: center;
}
body .modal .reset-access {
  display: block;
  padding: 16px 0 0 156px;
}
body .modal .access-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
body .modal .save {
  padding: 8px 16px;
  width: 50%;
  border-radius: 6px;
  background-color: #37ffbc;
  cursor: pointer;
}
body .modal .nevermind {
  padding: 8px 16px;
  width: 50%;
  border-radius: 6px;
  background-color: #FF6838;
  cursor: pointer;
  text-align: center;
  margin: 21px 5px 0px 5px;
}

body.dark .modal {
  z-index: 10002;
}
body.dark .modal .api_modal_container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  padding: 24px;
  border-radius: 6px;
  background: #010101;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0px 64px 64px -48px rgba(31, 47, 70, 0.12);
  z-index: 10002;
}
body.dark .modal .close {
  padding: 8px 16px;
  width: 50%;
  border-radius: 6px;
  background-color: #37ffbc;
  cursor: pointer;
  text-align: center;
  margin: 22px 0px 0px 0px;
  justify-self: center;
}
body.dark .modal .reset-access {
  display: block;
  padding: 16px 0 0 156px;
}
body.dark .modal .access-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
body.dark .modal .save {
  padding: 8px 16px;
  width: 50%;
  border-radius: 6px;
  background-color: #37ffbc;
  cursor: pointer;
}
body.dark .modal .nevermind {
  padding: 8px 16px;
  width: 50%;
  border-radius: 6px;
  background-color: #FF6838;
  cursor: pointer;
  text-align: center;
  margin: 21px 5px 0px 5px;
}

/** user status start */
.user-status__item {
  text-align: center;
  padding: 2rem 0;
}
.user-status__title {
  margin-bottom: 1rem;
  font-size: var(--h2-font__size);
  color: var(--first-text-color);
}
.user-status p {
  font-size: var(--default-font__size);
}

/** user status end */
/** LIST BLOCKS */
/** header start */
.header {
  padding: 0.5rem 0;
  background-color: var(--body-color);
}
.header-home {
  position: sticky;
  top: 0%;
  padding: 0 1.5rem;
  border-bottom: 1px solid var(--blue-dark-fourth-color);
}

/** header end */
/** header row start */
.header__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1536px;
  width: 100%;
  margin: auto;
  padding: 0 1rem;
  font-size: var(--default-font__size);
  /** left start */
  /** left end */
  /** right start */
  /** right end */
}
.header__row-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__row-right {
  display: flex;
  justify-content: space-between;
}

/** header row end */
/** logo start */
.header-logo {
  margin-right: 3.5rem;
}
.header-logo a {
  font-weight: var(--extra-font);
  font-size: var(--big-font__size);
}

/** logo end */
/** logo media screen start */
@media screen and (max-width: 900px) {
  .header-logo {
    margin-right: 0;
    display: inline-block;
  }
}
/** logo media screen end */
/** header btn start */
.header-btn {
  display: none;
  position: relative;
  top: 4px;
  right: 0rem;
  z-index: 6;
  cursor: pointer;
}
.header-btn:hover span {
  background-color: var(--black-color);
}
.header-btn span {
  display: block;
  width: 30px;
  height: 1px;
  margin: 0.5rem 0;
  background-color: var(--menu-btn-color);
}

/** header btn end */
/** header btn media screen start */
@media screen and (max-width: 1000px) {
  .header-btn {
    display: block;
  }
}
/** header btn media screen end */
/** nav start */
.header-nav__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-nav__list a {
  display: block;
  margin-right: 1.5rem;
  padding: 1.25rem 0;
  text-decoration: none;
  outline: none;
  transition: all 0.5s ease-out;
  color: #777E90;
}
.header-nav__list a:hover, .header-nav__list a.active {
  color: #23262F;
}

/** nav end */
.header-nav__active {
  display: block;
}

/** nav media screen start */
@media screen and (max-width: 1000px) {
  .header-nav {
    outline: none;
    --tw-scale-y: 0;
    position: absolute;
    top: 2.4rem;
    left: 0;
    width: 100%;
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--blue-dark-second-color);
  }
  .header-nav__list {
    display: block;
  }
  .header-nav__list a {
    border-bottom: 1px solid #242539;
    padding: 1rem 0;
  }
  .header-nav__list a:last-child {
    border-bottom: none;
  }
}
/** nav media screen end */
body.dark .header-nav__list a {
  color: #777E90;
}
body.dark .header-nav__list a:hover, body.dark .header-nav__list a.active {
  color: #FCFCFD;
}

/** link start */
.header-button {
  display: flex;
  align-items: center;
}
.header-button__signin {
  margin: auto 0 auto 0.5rem;
  transition: all 0.5s ease-out;
}
.header-button__signin:hover {
  color: var(--black-color);
}
.header-button__signup {
  margin: auto 0 auto 0.5rem;
  transition: all 0.5s ease-out;
  border-radius: 33px;
  background: #3772FF;
  padding: 0.5rem 0.75rem;
  color: #FCFCFD;
}
.header-button__signup:hover {
  background: #0045ea;
}

/** link end */
body.dark .header-button__signin:hover {
  color: var(--black-color);
}
body.dark .header-button__signup:hover {
  background: #0045ea;
}

/** dropdown start */
.header-dropdown {
  margin-left: 1.5rem;
  /** button */
  /** icon */
  /** active */
  /** list */
}
.header-dropdown__row {
  position: relative;
}
.header-dropdown__button {
  padding: 1.65rem 0 1.65rem 2.65rem;
  cursor: pointer;
}
.header-dropdown__button:hover .header-dropdown__icon-color {
  stroke: var(--yellow-color);
}
.header-dropdown__icon {
  width: 26px;
  height: 26px;
  display: block;
  filter: invert(100%);
}
.header-dropdown__icon-color {
  stroke: var(--black-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.5s ease-out;
}
.header-dropdown .active {
  display: block !important;
}
.header-dropdown .logout-icon {
  position: relative;
  left: 2px;
}
.header-dropdown__list {
  display: none;
  position: absolute;
  top: 4.9rem;
  right: -1.6rem;
  z-index: 8;
  min-width: 280px;
  padding: 0.5rem 0;
  background-color: var(--blue-dark-second-color);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  /** info block */
  /** link */
  /** icon */
  /** icon color */
}
.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 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.6rem 0.5rem;
  transition: all 0.5s ease-out;
}
.header-dropdown__list a:hover, .header-dropdown__list button:hover {
  color: var(--yellow-color);
  background-color: var(--dark-body-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 {
  width: 28px;
  height: 28px;
  display: block;
  margin-right: 10px;
}
.header-dropdown__list-color {
  stroke: var(--white-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.5s ease-out;
}

/** dropdown end */
body.dark .header-dropdown__icon {
  filter: invert(0%);
}
body.dark .header-dropdown__icon-color {
  stroke: var(--white-color);
}

/** dropdown media screen start */
@media screen and (max-width: 1000px) {
  .header-dropdown {
    margin-left: 0rem;
  }
  .header-dropdown__button {
    padding: 1.65rem 0 1.65rem 0.5rem;
    cursor: pointer;
  }
  .header-dropdown__list {
    top: 3.9rem;
  }
}
/** dropdown media screen end */
@media screen and (max-width: 500px) {
  .header-dropdown__list {
    right: -3.6rem !important;
  }
}
/** language dropdown start */
.language-dropdown {
  margin-left: 0.5rem;
}
.language-dropdown .header-dropdown__button {
  padding: 1.25rem 0.25rem !important;
  cursor: pointer;
}
.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 1rem;
}
.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 {
  /** button */
  /** icon */
  /** active */
  /** list */
}
.header-dropdown__row {
  position: relative;
}
.header-dropdown__icon {
  width: 26px;
  height: 26px;
  display: block;
}
.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 {
  display: none;
  position: absolute;
  top: 4.9rem;
  right: -1.6rem;
  z-index: 8;
  min-width: 280px;
  padding: 0.5rem 0;
  background-color: var(--blue-dark-second-color);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  /** info block */
  /** link */
  /** icon */
  /** icon color */
}
.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 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.6rem 0.5rem;
  transition: all 0.5s ease-out;
}
.header-dropdown__list a:hover, .header-dropdown__list button:hover {
  color: var(--yellow-color);
  background-color: var(--dark-body-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 {
  width: 28px;
  height: 28px;
  display: block;
  margin-right: 10px;
}
.header-dropdown__list-color {
  stroke: var(--white-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.5s ease-out;
}

/** language dropdown end */
/** language dropdown media screen start */
@media screen and (max-width: 1000px) {
  .header-dropdown__list {
    top: 4.9rem;
  }
  .language-dropdown .header-dropdown__button {
    padding: 1.12rem 0 1.12rem 1rem;
    cursor: pointer;
  }
  .language-dropdown .header-dropdown__button:hover .header-dropdown__icon-color {
    stroke: var(--yellow-color);
  }
}
/** language dropdown media screen end */
/** mode start */
.header-mode {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mode {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 15px;
  margin-right: 20px;
  outline: 0;
  flex-shrink: 0;
  border-radius: 30px;
}
.mode:focus {
  outline: none !important;
}
.mode:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 100%;
  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.72l1.42 1.42M1 12h2m18 0h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42'/%3E%3C/svg%3E");
  background-size: cover;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  transition: 0.3s;
  background-position: 50%;
  filter: invert(100%);
}

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 1111.21 3 7 7 0 0021 12.79z'/%3E%3C/svg%3E");
  filter: invert(0%);
}

/** mode end */
/** header media screen start */
@media screen and (max-width: 1000px) {
  .header__row {
    display: block;
    padding: 1rem 1rem;
  }
  .header__row-left {
    justify-content: space-between;
  }
  .header__row-right {
    position: absolute;
    top: 0;
    left: 1rem;
    padding: 0;
  }
}
/** header media screen end */
body.dark .header {
  color: var(--dark-text-color);
  background-color: var(--dark-body-color);
}

/** head start */
.head {
  /** title */
}
.head .img-cart {
  background-image: url("/images/home-cart.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.head-row {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@keyframes arrowsDown {
  80% {
    transform: translateY(23px);
  }
  100% {
    transform: translateY(23px);
  }
}
.head-row .scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: none;
  overflow: hidden;
  border: 2px solid #e6e8ec;
  transition: border-color 0.2s;
}
.head-row .scroll .icon {
  width: 24px;
  height: 24px;
  fill: #b1b5c3;
  transition: fill 0.2s;
}
.head-row .scroll .icon:hover {
  fill: #23262f;
}
.head-row .scroll .icon:not(:last-child) {
  margin-bottom: 24px;
}
.head-row .scroll__line {
  display: flex;
  flex-direction: column;
  animation: arrowsDown ease-out 1.4s infinite;
  transform: translateY(-23px);
  -webkit-animation: arrowsDown ease-out 1.4s infinite;
}
.head-row .scroll .icon:last-child {
  margin-bottom: 0;
}
.head-row .scroll:hover {
  border: 2px solid #0e0d0d;
}
.head-row .market-carts {
  background: var(--light-gray-color);
  border-radius: 13px;
  padding: 1rem 2rem;
  margin: 4rem 0 0;
}
.head-row .market-carts .cart {
  border-radius: 13px;
  padding: 1rem 1.5rem;
}
.head-row .market-carts .cart:hover {
  background: var(--body-color);
}
.head-title {
  color: var(--black-color);
}
.head-title h1 {
  width: 100%;
  margin: 7rem auto 0;
  font-weight: 400;
  font-size: 4rem;
  text-align: left;
  line-height: 4.5rem;
}
.head-title p {
  color: var(--body-text-color);
  margin-top: 1rem;
  font-size: 1rem;
}
.head-title button {
  color: inherit;
  background-color: var(--button-background);
  padding: 0.75rem 1rem;
  border-radius: 33px;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 700;
}
.head-title button:hover {
  background-color: rgb(0, 177, 105);
}

/** head end */
body.dark .head-title {
  color: var(--white-color);
}
body.dark .head-row .scroll {
  border-color: #353945;
}
body.dark .head-row .scroll:hover {
  border: 2px solid #cfd1d5;
}
body.dark .head-row .market-carts {
  background: var(--dark-gray-color);
}
body.dark .head-row .market-carts .cart:hover {
  background: var(--hover-gray-color);
}

/** head media screen start */
@media screen and (max-width: 1000px) {
  .head {
    /** carousel */
  }
  .head .img-cart {
    max-height: 500px;
    height: 500px;
    margin: 0 auto;
    background-position: center;
  }
  .head-row {
    width: 96%;
  }
  .head-row .scroll {
    display: none;
  }
  .head-row .market-carts img {
    width: 40px;
  }
  .head-title h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.1666666667;
  }
  .head-title p {
    width: 80%;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.5;
    color: #777e90;
  }
  .head-title a {
    margin: 2rem auto 2rem;
    font-size: var(--default-font__size);
  }
  .head-carousel {
    position: relative;
    margin: 6rem 0 0;
    padding: 0 1rem;
  }
  .head-carousel__inner {
    padding: 2rem 0 1.8rem;
  }
  .head-carousel__item {
    width: 30%;
    font-size: 0.9rem;
  }
  .head-carousel__value {
    font-size: 1.8rem;
  }
}
/** head media screen end */
/** head media screen start */
@media screen and (max-width: 670px) {
  .head .img-cart {
    max-height: 400px;
    height: 400px;
  }
  .head-row {
    width: 96%;
  }
  .head-title {
    margin: 0 0 0.5rem;
  }
  .head-title h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.1666666667;
  }
  .head-title p {
    font-size: var(--default-font__size);
  }
  .head-title a {
    padding: 0.6rem 0;
    width: 150px;
    font-size: var(--default-font__size);
  }
  .head-carousel {
    position: relative;
    margin: 6rem 0 0;
    padding: 0 1rem;
  }
  .head-carousel__inner {
    padding: 2rem 0 0;
  }
  .head-carousel__item {
    width: 48%;
    font-size: 0.9rem;
  }
  .head-carousel__value {
    font-size: 1.5rem;
  }
}
/** head media screen end */
/** table home start */
.table-home__row {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto 3rem;
  padding: 1rem;
}
.table-home .mb {
  margin-bottom: 3rem;
}
.table-home__title h2 {
  color: var(--black-color);
  font-size: 2.5rem;
  font-weight: 600;
}
.table-home .view button {
  box-shadow: 0 0 0 2px #E6E8EC inset;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 33px;
  font-weight: 600;
}
.table-home .view button:hover {
  background: var(--hover-gray-color);
  color: #FFF;
}
.table-home__link {
  margin-top: 3rem;
  text-align: center;
}
.table-home__link a {
  outline: none;
  display: inline-block;
  font-size: 0.9rem;
  color: var(--second-text-color);
  transition: all 0.5s ease-out;
}
.table-home__link a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--yellow-color);
  transition: all 0.5s ease-out;
}
.table-home__link a:hover {
  color: var(--yellow-color);
}
.table-home__link a:hover::after {
  width: 100%;
}
.table-home table thead, .table-home table tbody {
  padding: 0;
  text-align: left;
}
.table-home table tr {
  padding: 0;
  text-align: left;
}
.table-home table th {
  padding-bottom: 5px;
}
.table-home table td:nth-last-child(1) .list-body__value {
  justify-content: flex-end;
  padding-right: 0.6rem;
}

.list-table {
  width: 100%;
}

.list-head {
  border-bottom: 2px solid #353945;
}
.list-head__value {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 0;
}
.list-head__title {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--second-text-color);
}

.list-body tr:hover {
  background-color: var(--rows-color);
  border-radius: 13px;
}
.list-body__subtitle {
  display: none;
}
.list-body__value {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.9rem 0;
  font-size: 0.9rem;
}
.list-body__img {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 0.5rem 0 0.6rem;
}
.list-body__name-big {
  display: block;
  font-size: 0.9rem;
  width: 100%;
}
.list-body__name-small {
  display: block;
  font-size: 0.8rem;
  color: var(--second-text-color);
}
.list-body__button {
  box-shadow: 0 0 0 2px #E6E8EC inset;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 33px;
  font-weight: 600;
}
.list-body__button:hover {
  background: var(--hover-gray-color);
  color: #FFF;
}

/** table home end */
.home-example-image {
  max-width: 700px;
}

/** table home media screen start */
@media screen and (max-width: 1000px) {
  .home-example-image {
    max-width: 70%;
  }
  .table-home__title {
    margin: 8rem 0 3rem;
  }
  .table-home__row {
    padding: 3rem;
  }
  .list-body tr:hover {
    background-color: none !important;
  }
  .list-body td:nth-last-child(1) {
    padding-bottom: 1rem;
  }
  .list-body td:nth-last-child(1) .list-body__value {
    padding-right: 0 !important;
  }
  .list-body__subtitle {
    display: none;
  }
}
/** table home media screen end */
/** table home media screen start */
@media screen and (max-width: 670px) {
  .home-example-image {
    max-width: 80%;
  }
  .table-home__title {
    margin: 8rem 0 3rem;
    margin-top: 2rem;
  }
  .table-home__title h2 {
    font-size: 2rem;
  }
}
/** table home media screen end */
body.dark .table-home__title h2 {
  color: var(--body-color);
}
body.dark .table-home button {
  box-shadow: 0 0 0 2px #353945 inset;
  color: #FCFCFD;
}
body.dark .table-home button:hover {
  background: var(--hover-gray-color);
}

/** screen start */
.bg2 {
  background-color: var(--bg-home-gray);
}

.screen {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
}
.screen-row {
  max-width: 1536px;
  width: 100%;
  margin: 0 auto;
}
.screen-title {
  margin: 4rem 0;
  text-align: center;
}
.screen-title h2 {
  color: var(--black-color);
  font-size: 3rem;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.96px;
}
.screen-title p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 700px;
  width: 100%;
  margin: 1.5rem auto 0;
}
.screen-cards {
  /* max-width: 1000px; */
  width: 100%;
  margin: 2rem 0;
}
.screen-cards .card {
  justify-content: center;
  align-items: center;
  background-color: #FCFCFD;
  border-radius: 6px;
  padding: 3rem 1rem;
  border: 3px solid transparent;
}
.screen-cards .card:hover {
  background-color: transparent !important;
  border: 3px solid #FCFCFD;
}
.screen-cards img {
  max-width: 100%;
  width: 100%;
}
.screen-cards h6 {
  color: var(--black-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 1rem 0;
}
.screen-cards p {
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin: 1rem 0;
}
.screen-cards a {
  margin: 2rem auto 0;
}
.screen-cards button {
  box-shadow: 0 0 0 2px #E6E8EC inset;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 33px;
  font-weight: 600;
}
.screen-cards button:hover {
  background: var(--hover-gray-color);
  color: #FFF;
}
.screen-contact {
  margin: 4rem auto;
  text-align: center;
}
.screen-contact button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  background: #3772FF;
  border-radius: 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #FCFCFD;
  transition: all 0.2s;
}
.screen-contact button:hover {
  background: #0045ea;
}

/** screen end */
/** screen media screen start */
@media screen and (max-width: 1000px) {
  .screen-items {
    overflow-x: auto;
    display: block ruby;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .screen-item {
    margin: 0 1rem;
  }
  .screen-title {
    margin: 6rem 0 3rem;
  }
  .screen-title p {
    width: 90%;
    margin: 1rem auto 0;
    font-size: 0.9rem;
  }
}
/** screen media screen end */
/** screen media screen start */
@media screen and (max-width: 670px) {
  .screen-title {
    margin: 4rem 0 3rem;
  }
  .screen-title h2 {
    font-size: 2rem;
  }
}
/** screen media screen end */
body.dark .bg2 {
  background-color: var(--bg-home-dark-gray);
}

body.dark .screen-title h2 {
  color: var(--white-color);
}
body.dark .screen-cards .card {
  background-color: #23262F;
}
body.dark .screen-cards .card:hover {
  background-color: transparent !important;
  border: 3px solid #23262F;
}
body.dark .screen-cards .card h6 {
  color: var(--white-color);
}
body.dark .screen-cards .card button {
  box-shadow: 0 0 0 2px #353945 inset;
  color: #FCFCFD;
}
body.dark .screen-cards .card button:hover {
  background: var(--hover-gray-color);
}

/** step components start */
.step-components__container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 6rem;
  border-radius: 4px;
  border: 1px solid var(--border-line-color);
}
.step-components__block {
  position: relative;
  width: 30%;
  padding: 3rem 2rem;
}
.step-components__block::after {
  position: absolute;
  content: "";
  border-bottom: 5px solid var(--yellow-color);
  width: 100%;
  top: 4.5rem;
  right: 3.5rem;
  z-index: 2;
  margin: auto;
}
.step-components__block:last-child::after {
  content: none;
}
.step-components__block-number {
  position: relative;
  z-index: 4;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--yellow-color);
  color: var(--white-color);
  border: 4px solid var(--rows-color);
  border-radius: 50%;
}
.step-components__block-title {
  margin: 0.5rem 0 0.3rem 0;
  font-size: 1.1rem;
}
.step-components__block-text {
  font-size: 0.9rem;
  color: var(--second-text-color);
}

/** step components end */
/** table filter media screen start */
@media screen and (max-width: 900px) {
  .step-components__container {
    display: block;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 6rem;
    border-radius: 4px;
    border: 1px solid var(--border-line-color);
  }
  .step-components__block {
    border-bottom: 1px solid var(--border-line-color);
    width: 100%;
    padding: 3rem 2rem;
  }
  .step-components__block::after {
    display: none;
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--yellow-color);
    width: 100%;
    top: 4.5rem;
    right: 3.5rem;
    z-index: 2;
    margin: auto;
  }
  .step-components__block:last-child::after {
    content: none;
  }
  .step-components__block-number {
    position: relative;
    z-index: 4;
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow-color);
    color: var(--white-color);
    border: 4px solid var(--rows-color);
    border-radius: 50%;
  }
  .step-components__block-title {
    margin: 0.5rem 0 0.3rem 0;
    font-size: 1.1rem;
  }
  .step-components__block-text {
    font-size: 0.9rem;
    color: var(--second-text-color);
  }
}
/** table filter media screen end */
/** features start */
.features {
  margin: 2rem 0;
  padding: 1px 0;
}
.features-row {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.features-title {
  margin: 6rem 0 0.5rem;
}
.features-title h2 {
  font-weight: 400;
  font-size: 3rem;
  color: var(--black-color);
}
.features .list {
  margin: 5rem 0 2rem;
}
.features .list .item {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #353945;
}
.features .list .item:last-child {
  border-bottom: none;
}
.features .list .icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-right: 24px;
  border-radius: 50%;
  background: #23262F;
}
.features .list .icon:hover {
  background: var(--button-background);
}
.features .list .icon:hover .default-icon {
  display: none;
}
.features .list .icon:hover .hover-icon {
  display: inline-block;
}
.features .list p {
  padding-right: 8rem;
}
.features .list h6 {
  font-size: 24px;
  line-height: 2rem;
  letter-spacing: -0.01em;
  color: #23262F;
}

body.dark .features-title h2 {
  color: var(--white-color);
}
body.dark .features .list h6 {
  color: #FCFCFD;
}
body.dark .features .features-item__icon-color {
  fill: var(--white-color);
}

/** features end */
/** features media screen start */
@media screen and (max-width: 1000px) {
  .features {
    padding: 0 2rem;
  }
  .features-title {
    margin: 1rem 0 0;
  }
  .features-title h2 {
    font-weight: 700;
  }
  .features-block {
    display: block;
  }
  .features-item {
    width: 100%;
  }
}
/** features media screen end */
/** features media screen start */
@media screen and (max-width: 670px) {
  .features {
    margin: 2rem 0 2rem;
  }
  .features-title {
    margin: 1rem 0 0;
  }
  .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;
  }
}
/** features media screen end */
/** section footer start */
.section-footer {
  margin-top: 1rem;
  padding: 2rem 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--black-color);
  /** banner */
  /** footer */
  /** copyright */
}
.section-footer__row {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
}
.section-footer .banner {
  margin-top: 6rem;
}
.section-footer .banner h2 {
  max-width: 600px;
  font-weight: 400;
  font-size: 2rem;
  text-align: left;
}
.section-footer .banner-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 1rem 0;
}
.section-footer .banner-text p {
  max-width: 500px;
  font-size: 0.9rem;
}
.section-footer .banner-text a {
  display: block;
  padding: 1rem 0;
  width: 200px;
  font-size: 1rem;
  text-align: center;
  border: 2px solid var(--black-color);
  border-radius: 4px;
  transition: all 0.5s ease-out;
}
.section-footer .banner-text a:hover {
  background-color: var(--black-color);
  color: var(--blue-dark-color);
}
.section-footer .footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 4rem 0 2rem;
  padding: 4rem 0;
  border-top: 1px solid #27283C;
  border-bottom: 1px solid #27283C;
  /** social */
}
.section-footer .footer-left {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: var(--black-color);
  line-height: 20px;
}
.section-footer .footer-right {
  width: 60%;
}
.section-footer .footer-right__navigation {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-footer .footer-right__item {
  width: 30%;
}
.section-footer .footer-right__item h4 {
  margin-bottom: 1.8rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.section-footer .footer-right__item li {
  margin-bottom: 0.4rem;
}
.section-footer .footer-right__item a {
  outline: none;
  text-decoration: none;
  display: block;
  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: center;
}
.section-footer .footer .social a {
  outline: none;
  text-decoration: none;
  display: block;
  margin-right: 0.3rem;
  margin-bottom: 10px;
  padding: 0.4rem;
  transition: all 0.5s ease-out;
  border: 2px solid var(--black-color);
  border-radius: 50%;
  opacity: 0.7;
}
.section-footer .footer .social a:hover {
  opacity: 1;
}
.section-footer .footer .social-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}
.section-footer .footer .social-icon__color {
  fill: var(--black-color);
}
.section-footer .copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}
.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;
}

/** section footer end */
/** footer media screen start */
@media screen and (max-width: 1000px) {
  .section-footer {
    /** footer */
  }
  .section-footer .footer {
    /** social */
  }
  .section-footer .footer .footer-left {
    text-align: center;
  }
  .section-footer .footer .logonoM {
    margin: 0px;
  }
  .section-footer .footer .midlogo {
    align-items: center;
    justify-content: center;
  }
  .section-footer .footer .social nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .section-footer .footer .social a {
    word-break: break-word;
    margin: 0 auto;
  }
}
/** footer media screen end */
/** footer media screen start */
@media screen and (max-width: 770px) {
  .section-footer {
    /** banner */
    /** footer */
  }
  .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 {
    width: 100%;
    font-size: 0.9rem;
  }
  .section-footer .banner-text a {
    margin-top: 2rem;
    padding: 1rem 0;
    width: 180px;
    font-size: 0.9rem;
  }
  .section-footer .footer {
    display: block;
  }
  .section-footer .footer-left {
    margin-bottom: 2rem;
  }
  .section-footer .footer-right {
    width: 100%;
  }
  .section-footer .footer-right__navigation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row wrap;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .section-footer .footer-right__item {
    width: 40%;
  }
  .section-footer .footer-right__item h4 {
    margin-bottom: 1.8rem;
    font-size: 0.9rem;
  }
  .section-footer .footer-right__item li {
    margin-bottom: 0.4rem;
  }
  .section-footer .footer-right__item a {
    outline: none;
    text-decoration: none;
    display: block;
    transition: all 0.5s ease-out;
  }
  .section-footer .footer-right__item a:hover {
    color: var(--yellow-color);
  }
}
/** footer media screen end */
/** footer media screen start */
@media screen and (max-width: 550px) {
  .section-footer {
    /** footer */
    /** copyright */
  }
  .section-footer .footer {
    margin: 4rem 0 2rem;
    padding: 2rem 0;
  }
  .section-footer .footer-right {
    width: 100%;
  }
  .section-footer .footer-right__navigation {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row wrap;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .section-footer .footer-right__item {
    margin: 2rem auto;
    width: 40%;
    text-align: center;
  }
  .section-footer .footer-right__item h4 {
    margin-bottom: 1rem;
  }
  .section-footer .copyright {
    display: block;
    justify-content: space-between;
    align-items: left;
    font-weight: 400;
  }
  .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;
  }
}
/** footer media screen end */
body.dark .section-footer {
  color: var(--white-color);
}
body.dark .section-footer .footer-left {
  color: var(--white-color);
}
body.dark .section-footer .footer .social a {
  border: 2px solid var(--white-color);
}
body.dark .section-footer .footer .social-icon__color {
  fill: var(--white-color);
}

.learn {
  max-width: 1280px;
  width: 100%;
  margin: 6rem auto 3rem;
  padding: 0 1rem;
}
.learn__head .title {
  color: var(--black-color);
  font-size: 2.5rem;
  font-weight: 600;
}
.learn__head button {
  box-shadow: 0 0 0 2px #E6E8EC inset;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 33px;
  font-weight: 600;
}
.learn__head button:hover {
  background: var(--hover-gray-color);
  color: #FFF;
}
.learn__wrapper {
  margin-top: 0.5rem;
}
.learn__wrapper .preview {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.learn__wrapper .preview img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  transition: transform 0.2s ease-in-out;
}
.learn__wrapper .preview img:hover {
  transform: scale(1.1);
}
.learn__wrapper .line h4 {
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black-color);
}
.learn__wrapper .line p {
  font-size: 16px;
  color: #777E90;
}
.learn__wrapper .bt {
  text-align: right;
}
.learn__wrapper .bt button {
  box-shadow: 0 0 0 2px #E6E8EC inset;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 33px;
  font-weight: 600;
}
.learn__wrapper .bt button:hover {
  background: var(--hover-gray-color);
  color: #FFF;
}
.learn__wrapper .tcart .grid-cols-2 {
  margin: 0 18px 32px;
}
.learn__wrapper .tcart .grid-cols-2 .imgBG {
  height: 230px;
  width: 200px;
  justify-self: end;
}
.learn__wrapper .tcart .grid-cols-2 .imgBG img {
  height: 100%;
  width: 100%;
  border-radius: 18px;
  transition: transform 0.2s ease-in-out;
}
.learn__wrapper .tcart .grid-cols-2 .imgBG img:hover {
  transform: scale(1.1);
}
.learn__wrapper .details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-right: 16px;
}
.learn__wrapper .details h3 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #000;
}
.learn__wrapper .details p {
  margin-bottom: auto;
  color: #777E90;
}
.learn__wrapper .details .date {
  margin-top: 24px;
  color: #777E90;
}

body.dark .learn__head .title {
  color: var(--body-color);
}
body.dark .learn__head button {
  box-shadow: 0 0 0 2px #353945 inset;
  color: #FCFCFD;
}
body.dark .learn__head button:hover {
  background: var(--hover-gray-color);
}
body.dark .learn__wrapper .bt button {
  box-shadow: 0 0 0 2px #353945 inset;
  color: #FCFCFD;
}
body.dark .learn__wrapper .bt button:hover {
  background: var(--hover-gray-color);
  color: #FFF;
}
body.dark .learn__wrapper .line h4 {
  color: var(--body-color);
}
body.dark .learn__wrapper .line p {
  font-size: 16px;
  color: #777E90;
}
body.dark .learn__wrapper .details h3 {
  color: #FFF;
}
body.dark .learn__wrapper .details p {
  color: #777E90;
}
body.dark .learn__wrapper .details .date {
  color: #777E90;
}

/** slider start */
.bg2 {
  background-color: var(--bg-home-gray);
  padding: 1.5rem 0;
}

.slider {
  margin: 2rem 0;
  padding: 1px 0;
}
.slider-row {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.slider-title {
  margin: 3rem 0 0.5rem;
  text-align: center;
}
.slider-title h2 {
  color: var(--black-color);
  font-size: 3rem;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.96px;
  margin-bottom: 1rem;
}
.slider-hooper {
  margin: 3rem 11rem;
  background: var(--body-color);
  border-radius: 24px;
}
.slider-hooper .slick-prev {
  left: -96px;
}
.slider-hooper .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0;
  transition: all 0.2s;
}
.slider-hooper .hooper {
  height: -moz-fit-content;
  height: fit-content;
  overflow: visible;
  transform: translate3d(0, 0, 0);
}
.slider-hooper .slide {
  padding: 4rem 2rem;
  justify-items: center;
}
.slider-hooper .slide p {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  margin-bottom: 2rem;
}
.slider-hooper .slide p .first {
  text-transform: uppercase;
}
.slider-hooper .slide h6 {
  color: var(--black-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.24px;
  margin-bottom: 2rem;
}
.slider-hooper .slide .whj {
  width: 100%;
  height: 100%;
  justify-items: center;
  align-items: center;
}
.slider-hooper .slide a button {
  box-shadow: 0 0 0 2px #E6E8EC inset;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 33px;
  font-weight: 600;
  margin: 2rem 0 0;
}
.slider-hooper .slide a button:hover {
  background: var(--hover-gray-color);
  color: #FFF;
}

body.dark .slider-title h2 {
  color: var(--white-color);
}
body.dark .slider-hooper {
  background: var(--dark-gray-color);
}
body.dark .slider-hooper .slide h6 {
  color: var(--white-color);
}
body.dark .slider-hooper .slide a button {
  box-shadow: 0 0 0 2px #353945 inset;
  color: #FCFCFD;
}
body.dark .slider-hooper .slide a button:hover {
  background: var(--hover-gray-color);
}

/** slider end */
/** slider media screen start */
@media screen and (max-width: 1000px) {
  .slider-title {
    margin: 8rem 0 3rem;
  }
  .slider-block {
    display: block;
  }
  .slider-item {
    width: 100%;
  }
}
/** slider media screen end */
/** slider media screen start */
@media screen and (max-width: 670px) {
  .slider {
    margin: 2rem 0 2rem;
  }
  .slider-title {
    margin: 8rem 0 4rem;
  }
  .slider-title h2 {
    font-size: 2rem;
  }
  .slider-item {
    display: block;
    text-align: center;
  }
  .slider-item__icon {
    margin: 1rem auto;
  }
  .slider-item__title h4 {
    font-size: 1.2rem;
  }
}
/** slider media screen end */
/** howWork start */
.howWork {
  margin: 2rem 0 4rem;
  padding: 1px 0;
}
.howWork-row {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.howWork-title {
  margin: 3rem 0 6rem;
  text-align: center;
}
.howWork-title h2 {
  font-weight: 400;
  font-size: 3rem;
  color: var(--black-color);
}
.howWork .steps__list {
  display: flex;
  margin: 0 -16px;
}
.howWork .steps__item {
  position: relative;
  flex: 0 0 calc(25% - 32px);
  width: calc(25% - 32px);
  margin: 0 16px;
  text-align: center;
}
.howWork .steps__item:first-child .steps__preview:before {
  display: none;
}
.howWork .steps__item:last-child .steps__preview:after {
  display: none;
}
.howWork .steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 47px;
  right: -84px;
  width: 130px;
  height: 2px;
  background-image: linear-gradient(90deg, #B1B5C3 0, #B1B5C3 6px, transparent 6px, transparent 14px);
  background-repeat: repeat-x;
  background-size: 12px auto;
}
.howWork .steps__preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 60px;
  border-radius: 24px;
}
.howWork .steps__preview img {
  width: 100%;
}
.howWork .steps__number {
  margin-bottom: 32px;
  font-size: 12px;
  line-height: 1.66667;
  font-weight: 600;
  color: #777E90;
}
.howWork .steps__subtitle {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.howWork .steps__content {
  color: var(--black-color);
}
.howWork .steps .steps__preview:before,
.howWork .steps .steps__preview:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid #B1B5C3;
}
.howWork .steps .steps__preview:before {
  left: -24px;
}
.howWork .steps .steps__preview:after {
  right: -24px;
}

body.dark .howWork-title h2 {
  color: var(--white-color);
}
body.dark .howWork .steps__content {
  color: #FCFCFD;
}

/** howWork end */
/** howWork media screen start */
@media screen and (max-width: 1000px) {
  .howWork .steps__list {
    margin: 0 -40px;
    overflow-x: scroll;
    margin: 0 10px;
  }
  .howWork .steps__item {
    flex: 0 0 calc(100% - 32px);
    padding-bottom: 20px;
  }
  .howWork-title {
    margin: 8rem 0 3rem;
  }
  .howWork-block {
    display: block;
  }
  .howWork-item {
    width: 100%;
  }
}
/** howWork media screen end */
/** howWork media screen start */
@media screen and (max-width: 670px) {
  .howWork {
    margin: 2rem 0 2rem;
  }
  .howWork-title {
    margin: 8rem 0 4rem;
  }
  .howWork-title h2 {
    font-size: 2rem;
  }
  .howWork-item {
    display: block;
    text-align: center;
  }
  .howWork-item__icon {
    margin: 1rem auto;
  }
  .howWork-item__title h4 {
    font-size: 1.2rem;
  }
}
/** howWork media screen end */
/** main container start */
.max-w-screen-2xl {
  padding: 0 1rem;
  max-width: 100%;
}

/** main container end */
.form-search__container,
.table-components {
  word-break: break-word;
}

/** trade start */
.trade {
  margin: 1rem 0;
}
.trade-head {
  display: flex;
  justify-content: space-between;
  /* row start */
  /* row end */
  /* block start */
  /* block end */
  /* head left/right start */
  /* head left/right end */
}
.trade-head__row-left {
  border: 1px solid var(--border-line-color);
  border-radius: 4px;
  width: 83%;
}
.trade-head__row-right {
  width: 20%;
  padding: 1rem;
}
.trade-head__block-top {
  padding: 1rem;
}
.trade-head__block-middle {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 0 1rem 1rem;
}
.trade-head__left {
  width: 75%;
  padding-right: 0.4rem;
}
.trade-head__right {
  width: 25%;
  padding-left: 1rem;
}
/** trade end */
@media screen and (max-width: 1200px) {
  /** trade start */
  .trade-head {
    /* block start */
    /* block end */
  }
  .trade-head__block-top {
    padding: 1rem;
  }
  .trade-head__block-middle {
    padding: 0 1rem 1rem;
  }
  /** trade end */
}
@media screen and (max-width: 1130px) {
  /** trade start */
  .trade {
    margin: 3rem 0;
  }
  .trade-head {
    display: block;
    /* row start */
    /* row end */
  }
  .trade-head__row-left {
    width: 100%;
    margin-bottom: 1rem;
  }
  .trade-head__row-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .trade-head__row-right .widget {
    width: 49%;
  }
  /** trade end */
}
@media screen and (max-width: 770px) {
  /** trade start */
  .trade-head {
    display: block;
    justify-content: space-between;
    /* row start */
    /* row end */
    /* block start */
    /* block end */
    /* head left/right start */
    /* head left/right end */
  }
  .trade-head__row-left {
    width: 100%;
  }
  .trade-head__row-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .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 {
    width: 100%;
    margin-top: 2rem;
    padding: 0.4rem;
  }
  .trade-head__right {
    width: 100%;
    padding: 0.4rem;
  }
  .trade .module-container__row {
    display: flex;
    justify-content: space-between;
  }
  .trade .module-container__block {
    width: 49%;
  }
  /** trade end */
}
@media screen and (max-width: 570px) {
  /** trade start */
  .trade-head {
    /* row start */
    /* row end */
    /* block start */
    /* block end */
    /* head left/right start */
    /* head left/right end */
  }
  .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 {
    width: 100%;
    margin-top: 2rem;
    padding: 0.4rem;
  }
  .trade-head__right {
    width: 100%;
    padding: 0.4rem;
  }
  .trade .module-container__row {
    display: block;
  }
  .trade .module-container__block {
    width: 100%;
  }
  /** trade end */
}
.vue-slider {
  margin: 1.8rem 0;
  padding: 7px 4px !important;
}
.vue-slider-rail {
  height: 2px !important;
  background-color: #F1F2F4 !important;
  border-radius: 4px;
}
.vue-slider-process {
  background-color: #019acc;
  border-radius: 4px;
}
.vue-slider-mark {
  width: 10px !important;
  height: 10px !important;
  background-color: var(--border-line-color);
  border-radius: 10px;
  cursor: pointer;
}
.vue-slider-mark-active {
  background-color: #019acc;
}
.vue-slider-dot-handle {
  position: relative;
  top: -3px;
  right: -3px !important;
  width: 10px;
  height: 10px;
  background-color: var(--progress-color);
  border: 4px solid #019acc;
  border-radius: 50%;
  cursor: pointer;
}
.vue-slider-dot-handle-disabled {
  cursor: not-allowed;
  background-color: var(--progress-color);
}
.vue-slider-dot-tooltip-text {
  font-size: 0.8rem;
  margin-left: 10px;
  margin-bottom: 3px;
  color: var(--first-text-color);
}
.vue-slider-dot-tooltip-top {
  top: 0px !important;
}

.dir-rtl .vue-slider-dot-handle {
  right: -5px;
}

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 {
  top: -1px;
  right: -2px;
  width: 15px;
  height: 15px;
  background-color: var(--progress-color);
  border: 1px solid var(--yellow-color);
}

.widget {
  /*
  &-container {

  }

  &-head {

  }

  &-body {

  }
  */
}
.widget-empty {
  color: var(--second-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 346px;
}
.widget-empty span {
  font-size: 0.9rem;
}

.widget-market-stats .widget-stats {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1px 1px 20px 1px;
  border-bottom: 1px solid var(--border-line-color);
  /** title start */
  /** title end */
  /** price start */
  /** price end */
  /** list start */
  /** list end */
}
.widget-market-stats .widget-stats__title {
  cursor: pointer;
  font-size: var(--default-font__size);
}
.widget-market-stats .widget-stats__title__market-name {
  margin-bottom: 4px;
}
.widget-market-stats .widget-stats__title__currency-name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.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 {
  margin-bottom: 6px;
  color: var(--second-text-color);
}
.widget-market-stats .widget-stats__list {
  display: flex;
  justify-content: flex-start;
  font-size: var(--small-font__size);
}
.widget-market-stats .widget-stats__list-item {
  margin-right: 22px;
}
.widget-market-stats .widget-stats__list__lable-title {
  margin-bottom: 6px;
  color: var(--second-text-color);
}

.marketswidgetcaretdown {
  transition: transform 400ms ease-in-out;
}

.marketswidgetcaretdown.active {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.widget-stats__inner {
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-line-color);
  justify-content: space-between;
}
.widget-stats__inner .widget-stats__row {
  display: flex;
  margin-right: 0rem;
}

@media screen and (max-width: 1360px) {
  .widget-stats__inner {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-line-color);
    display: flex;
  }
  .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 start */
    /** list end */
  }
  .widget-market-stats .widget-stats__list-item {
    margin-right: 10px;
  }
}
@media screen and (max-width: 680px) {
  .widget-stats__inner {
    display: block;
    padding-bottom: 0px;
  }
  .widget-stats__inner .widget-stats__row {
    display: flex;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .widget-stats__inner .widget-stats__row {
    display: flex;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .widget-stats__inner .widget-stats__row:nth-last-child(1) {
    display: block;
  }
  .widget-market-stats .widget-stats {
    /** list start */
    /** list end */
  }
  .widget-market-stats .widget-stats__list {
    display: block;
  }
  .widget-market-stats .widget-stats__list-item {
    display: inline-block;
    width: 42%;
    margin-bottom: 0.5rem;
  }
}
.widget-markets {
  background-color: var(--widget-markets-background-color);
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border-line-color);
  border-radius: 4px;
  /** navigation start */
  /** navigation start */
  /** search start */
  /** search start */
  /** sort start */
  /** sort end */
  /** list end */
  /** list end */
}
.widget-markets__navigation {
  display: flex;
  justify-content: flex-start;
  font-size: var(--default-font__size);
}
.widget-markets__navigation h3 {
  padding-top: 2px;
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
}
.widget-markets__navigation h3:hover .navigation-icon__color {
  fill: var(--yellow-color);
}
.widget-markets__navigation nav {
  padding: 0;
}
.widget-markets__navigation a {
  margin-left: 5px;
  padding: 0.2rem 0.5rem;
  outline: none;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
}
.widget-markets__navigation a:hover {
  padding: 0.2rem 0.5rem;
  color: var(--white-color);
  background-color: var(--purple-color);
  border-radius: 4px;
}
.widget-markets__navigation .navigation-active {
  padding: 0.2rem 0.5rem;
  color: var(--white-color);
  background-color: var(--purple-color);
  border-radius: 4px;
}
.widget-markets__navigation .navigation-icon {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.widget-markets__navigation .navigation-icon__color {
  fill: var(--second-text-color);
}
.widget-markets__navigation .navigation-icon__active {
  fill: var(--yellow-color);
}
.widget-markets__search {
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: flex-start;
}
.widget-markets__search:hover {
  border-bottom: 1px solid var(--yellow-color);
}
.widget-markets__search input {
  width: 100%;
  display: block;
  font-weight: 500;
  font-size: var(--default-font__size);
  padding: 0.6rem 0.4rem 0.6rem 0;
  outline: none;
  border: none;
  color: var(--first-text-color);
  background-color: transparent;
}
.widget-markets__search input:focus {
  outline: none;
  box-shadow: 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 {
  outline: none;
  border: none;
}
.widget-markets__search-icon {
  position: relative;
  top: 14px;
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 4px;
}
.widget-markets__search-color {
  stroke: var(--first-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.widget-markets__sort {
  display: flex;
  justify-content: space-between;
  font-size: var(--small-font__size);
  color: var(--second-text-color);
  margin: 1.2rem 0;
  opacity: 80%;
}
.widget-markets__sort-pair {
  width: 38%;
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
}
.widget-markets__sort-price {
  width: 38%;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
}
.widget-markets__sort-change {
  width: 24%;
  text-align: right;
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
  margin-right: 0.5rem;
}
.widget-markets__sort-icon {
  position: relative;
  top: -2px;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.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: 350px;
}
.widget-markets__list-item {
  padding: 0;
}
.widget-markets__list-item a {
  position: relative;
  z-index: 5;
  padding: 0.22rem 0;
  display: flex;
  justify-content: space-between;
  font-size: var(--small-font__size);
}
.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 {
  outline: none;
  width: 38%;
  display: flex;
  justify-content: flex-start;
}
.widget-markets__list-item .pair-icon {
  position: relative;
  top: 1px;
  z-index: 9;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  fill: var(--second-text-color);
}
.widget-markets__list-item .pair-icon__active {
  fill: var(--yellow-color);
}
.widget-markets__list-item__price {
  outline: none;
  width: 38%;
  text-align: left;
}
.widget-markets__list-item__change {
  outline: none;
  width: 24%;
  text-align: left;
  margin-right: 0.8rem;
}
.widget-markets .__rail-is-vertical {
  right: 0px !important;
}

@media screen and (max-width: 1200px) {
  .widget-markets {
    padding-top: 0rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
  }
}
.widget-market-trades {
  direction: ltr !important;
  min-height: 300px;
  margin-bottom: var(--mp-3);
  padding: 2rem 0rem 2rem 0rem;
  /** border: 1px solid var(--border-line-color); */
  border-radius: 4px;
  /** navigation start */
  /** navigation end */
  /** title start */
  /** title end */
  /** list start */
  /** list end */
}
.widget-market-trades__navigation nav {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid var(--border-line-color);
}
.widget-market-trades__navigation a {
  outline: 1px solid #F00;
  display: block;
  font-size: var(--default-font__size);
  color: var(--white-color);
  margin-right: 0.7rem;
  padding-bottom: 0.8rem;
  outline: none;
  color: var(--second-text-color);
  cursor: pointer;
}
.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 {
  display: flex;
  justify-content: space-between;
  font-size: var(--small-font__size);
  color: var(--second-text-color);
  margin: 1.2rem 0;
  opacity: 80%;
}
.widget-market-trades__title-price {
  width: 36%;
}
.widget-market-trades__title-amount {
  width: 40%;
  text-align: left;
}
.widget-market-trades__title-time {
  width: 24%;
  text-align: right;
  padding-right: 0.8rem;
}
.widget-market-trades__list {
  height: 250px;
}
.widget-market-trades__list-item {
  padding: 0.2rem 0.8rem 0.2rem 0;
}
.widget-market-trades__list-item a {
  display: flex;
  justify-content: space-between;
  font-size: var(--small-font__size);
}
.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;
  width: 40%;
  text-align: left;
  padding-left: 5px;
}
.widget-market-trades__list-item__time {
  outline: none;
  width: 24%;
  text-align: right;
}
.widget-market-trades .__rail-is-vertical {
  right: 0px !important;
}

/** module orderbook sell start */
.module-orderbook__sell .module-orderbook {
  margin-bottom: var(--mp-3);
  direction: ltr !important;
  /** title start */
  /** title end */
  /** list start */
  /** list end */
  /** empty start */
  /** empty end */
}
.module-orderbook__sell .module-orderbook__title {
  display: flex;
  justify-content: space-between;
  font-size: var(--small-font__size);
  color: var(--first-color);
  margin: 1.2rem 0;
  color: #8B8D98;
}
.module-orderbook__sell .module-orderbook__title-price {
  width: 20%;
  text-align: left;
}
.module-orderbook__sell .module-orderbook__title-amount {
  width: 28%;
  text-align: center;
}
.module-orderbook__sell .module-orderbook__title-total {
  width: 32%;
  text-align: right;
  padding-right: 16px;
}
.module-orderbook__sell .module-orderbook__list {
  font-size: var(--small-font__size);
  height: auto;
  overflow: hidden;
}
.module-orderbook__sell .module-orderbook__list-item {
  padding: 0.2rem 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.module-orderbook__sell .module-orderbook__list-item__price {
  width: 20%;
  text-align: left;
}
.module-orderbook__sell .module-orderbook__list-item__amount {
  width: 28%;
  text-align: center;
}
.module-orderbook__sell .module-orderbook__list-item__total {
  width: 32%;
  text-align: right;
  padding-right: 16px;
}
.module-orderbook__sell .module-orderbook__list-item__progressbar {
  position: absolute;
  top: 2px;
  right: 10px;
  height: 80%;
  background: rgba(238, 40, 68, 0.16);
}
.module-orderbook__sell .module-orderbook__list-item:hover {
  background: var(--rows-color);
  cursor: pointer;
}
.module-orderbook__sell .module-orderbook__empty {
  font-size: 0.9rem;
  min-height: 353px;
  color: var(--second-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/** module orderbook sell end */
/** module orderbook buy start */
.module-orderbook__buy .module-orderbook {
  margin-bottom: var(--mp-3);
  direction: ltr !important;
  /** title start */
  /** title end */
  /** list start */
  /** list end */
  /** empty start */
  /** empty end */
}
.module-orderbook__buy .module-orderbook__title {
  display: flex;
  justify-content: space-between;
  font-size: var(--small-font__size);
  margin: 2rem 0 1rem;
  padding: var(--mp-1) 0;
  color: var(--second-text-color);
  border-bottom: 1px solid var(--border-line-color);
}
.module-orderbook__buy .module-orderbook__title-price {
  width: 20%;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  padding: 0.5rem 0;
}
.module-orderbook__buy .module-orderbook__title-total {
  width: 32%;
  text-align: left;
  display: flex;
  justify-content: flex-start;
}
.module-orderbook__buy .module-orderbook__title-icon {
  position: relative;
  top: 0;
  left: 8px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.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: auto;
  overflow: hidden;
}
.module-orderbook__buy .module-orderbook__list-item {
  padding: 0.2rem 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.module-orderbook__buy .module-orderbook__list-item__price {
  width: 20%;
  text-align: left;
}
.module-orderbook__buy .module-orderbook__list-item__amount {
  width: 28%;
  text-align: center;
}
.module-orderbook__buy .module-orderbook__list-item__total {
  width: 32%;
  text-align: right;
  padding-right: 16px;
}
.module-orderbook__buy .module-orderbook__list-item__progressbar {
  position: absolute;
  top: 2px;
  right: 10px;
  height: 80%;
  background: rgba(34, 158, 107, 0.16);
}
.module-orderbook__buy .module-orderbook__list-item:hover {
  background: var(--rows-color);
  cursor: pointer;
}
.module-orderbook__buy .module-orderbook__empty-buy {
  font-size: 0.9rem;
  min-height: 280px;
  color: var(--second-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/** module orderbook buy end */
.__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-thir-color) !important;
}

/** .module orderform start */
.module-orderform {
  direction: ltr;
  /** .module orderform title start */
  /** .module orderform title end */
  /** buy start */
  /** buy end */
  /** sell start */
  /** sell end */
}
.module-orderform__title {
  display: flex;
  justify-content: flex-start;
  margin-top: 0rem;
  font-size: var(--default-font__size);
  color: var(--second-text-color);
  border-bottom: 1px solid var(--border-line-color);
}
.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 .button-tab {
  float: left;
  display: inline-block;
  width: 50%;
  padding: 0.8rem 0;
  text-align: center;
  outline: none;
  color: var(--white-color);
  background-color: var(--rows-color);
}
.module-orderform .button-tab-buy {
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.module-orderform .button-tab-sell {
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.module-orderform .button-tab-buy-active {
  color: var(--white-color);
  background-color: var(--green-color) !important;
}
.module-orderform .button-tab-sell-active {
  color: var(--white-color);
  background-color: var(--red-color) !important;
}
.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;
  font-size: var(--small-font__size);
}
.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 {
  display: flex;
  justify-content: flex-start;
  color: var(--second-text-color);
}
.module-orderform__buy-icon {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--rows-color);
  background-color: var(--rows-color);
  border-radius: 4px;
}
.module-orderform__buy-forms__item:hover {
  border: 1px solid var(--yellow-color);
  box-shadow: var(--yellow-color);
}
.module-orderform__buy-forms__item input {
  outline: none;
  border: none;
  width: 60%;
  background: transparent;
  text-align: right;
  font-weight: 500;
  color: var(--first-text-color);
}
.module-orderform__buy-forms__item input:focus {
  box-shadow: none;
}
.module-orderform__buy-forms__item-left {
  display: block;
  width: 20%;
  text-align: left;
  opacity: 50%;
}
.module-orderform__buy-forms__item-right {
  display: block;
  width: 20%;
  text-align: right;
  opacity: 50%;
}
.module-orderform__buy-forms button {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem 0;
  text-align: center;
  outline: none;
  border: 1px solid var(--green-color);
  border-radius: 4px;
  color: var(--white-color);
  background-color: var(--green-color);
}
.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 {
  display: flex;
  justify-content: flex-start;
  color: var(--second-text-color);
}
.module-orderform__sell-icon {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--rows-color);
  background-color: var(--rows-color);
  border-radius: 4px;
}
.module-orderform__sell-forms__item:hover {
  border: 1px solid var(--yellow-color);
  box-shadow: var(--yellow-color);
}
.module-orderform__sell-forms__item input {
  outline: none;
  border: none;
  width: 60%;
  background: transparent;
  text-align: right;
  font-weight: 500;
  color: var(--first-text-color);
}
.module-orderform__sell-forms__item input:focus {
  box-shadow: none;
}
.module-orderform__sell-forms__item-left {
  display: block;
  width: 20%;
  text-align: left;
  opacity: 50%;
}
.module-orderform__sell-forms__item-right {
  display: block;
  width: 20%;
  text-align: right;
  opacity: 50%;
}
.module-orderform__sell-forms button {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem 0;
  text-align: center;
  outline: none;
  border: 1px solid var(--red-color);
  border-radius: 4px;
  color: var(--white-color);
  background-color: var(--red-color);
}
.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_tab {
  width: 50%;
  background-color: #2b3139;
  justify-content: center;
  display: flex;
  height: 50px;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  font-weight: 500;
  height: 32px;
  text-transform: uppercase;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  text-align: center;
  color: rgb(132, 142, 156);
}
.module-orderform .sell_tab {
  width: 50%;
  background-color: #2b3139;
  justify-content: center;
  display: flex;
  height: 50px;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  font-weight: 500;
  height: 32px;
  text-transform: uppercase;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  text-align: center;
  color: rgb(132, 142, 156);
}
.module-orderform .buy_tab.active {
  background-color: rgb(14, 203, 129);
  color: white;
}
.module-orderform .sell_tab.active {
  background-color: rgb(246, 70, 93);
  color: white;
}

/** .module orderform end */
@media screen and (max-width: 570px) {
  .module-orderform {
    /** buy start */
    /** buy end */
    /** sell start */
    /** sell end */
  }
  .module-orderform__container {
    display: block;
  }
  .module-orderform__buy {
    width: 100%;
  }
  .module-orderform__sell {
    width: 100%;
  }
}
/** .module orderopen start */
.module-orderopen {
  margin: 1rem 0;
  /** navigation start */
  /** navigation end */
  /** navlist start */
  /** navlist end */
  /** table start */
  /** table end */
  /** login start */
  /** login end */
  /** notfont start */
  /** notfont end */
}
.module-orderopen__navigation {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 1rem;
  font-size: var(--default-font__size);
  color: var(--second-text-color);
  border-bottom: 1px solid var(--border-line-color);
}
.module-orderopen__navigation-title {
  margin-right: 1.875rem;
  padding: 1rem 0;
  cursor: pointer;
}
.module-orderopen__navigation-title:hover {
  color: var(--blue-dark-color);
}
.module-orderopen__navigation-active {
  color: var(--blue-dark-color);
  border-bottom: 2px solid var(--blue-dark-color);
}
.module-orderopen__navlist {
  display: flex;
  justify-content: flex-start;
  font-size: var(--default-font__size);
  color: #8B8D98;
  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;
  justify-content: space-between;
  font-size: var(--small-font__size);
}
.module-orderopen__table .table-title__name {
  width: 20%;
  padding: 1rem 0;
  color: var(--second-text-color);
}
.module-orderopen__table .table-list {
  font-size: var(--default-font__size);
}
.module-orderopen__table .table-list__subtitle {
  display: none;
}
.module-orderopen__table .table-list__item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-line-color);
}
.module-orderopen__table .table-list__item-date {
  color: var(--second-text-color);
}
.module-orderopen__table .table-list__item-value {
  width: 20%;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
}
.module-orderopen__login {
  font-size: 0.9rem;
}
.module-orderopen__login-text {
  display: flex;
  justify-content: center;
  color: var(--second-text-color);
  padding: 7rem 0;
}
.module-orderopen__login-text a {
  display: block;
  margin: 0 0.4rem;
  color: var(--yellow-color);
}
.module-orderopen__login-text a:hover {
  text-decoration: underline;
}
.module-orderopen__notfont {
  font-size: 0.9rem;
  text-align: center;
  padding: 7rem 0;
}
.module-orderopen__notfont-icon {
  display: inline-block;
  margin-bottom: 0.3rem;
  width: 60px;
  height: 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 {
  display: flex;
  justify-content: center;
  color: var(--second-text-color);
}
.module-orderopen__notfont-text a {
  display: block;
  margin: 0 0.4rem;
  color: var(--yellow-color);
}
.module-orderopen__notfont-text a:hover {
  text-decoration: underline;
}

body.dark .site-layout .module-orderopen__navigation-active h4 {
  color: var(--dark-text-color);
}

/** .module orderopen end */
@media screen and (max-width: 900px) {
  .module-orderopen {
    /** table start */
    /** table end */
  }
  .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 {
    display: block;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-line-color);
  }
  .module-orderopen__table .table-list__item-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.page-section .components-title h1 {
  margin: 1rem 0 1rem;
  font-size: var(--h2-font__size);
}
.page-section-content img {
  max-width: 100%;
}
.page-section-content p, .page-section-content li, .page-section-content h2, .page-section-content h3, .page-section-content h4 {
  line-height: 2.2rem;
  color: var(--first-text-color);
}
.page-section-content h2 {
  margin: 2rem 0;
  font-size: 1.3rem;
  color: var(--first-text-color);
}
.page-section-content ul {
  list-style: circle;
  padding: 0px 1rem;
}
.page-section-content a {
  color: var(--purple-second-color) !important;
}
.page-section-content a:visited {
  color: var(--purple-second-color) !important;
}
.page-section-content a:hover {
  color: var(--purple-second-color) !important;
}

.profile-inner-page .form-components__title h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.launchpad-inner {
  font-size: 0.8rem;
  max-width: 700px;
  width: 100%;
  /** launchpad-options */
}
.launchpad-inner div.flex {
  display: block !important;
}
.launchpad-inner div.flex span {
  font-size: 1rem !important;
}
.launchpad-inner div.flex button {
  position: relative;
  display: inline-block;
  font-size: 0.9rem;
  width: 100%;
  display: block;
  margin-top: 2rem;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  color: var(--white-color);
  background-color: #1d2234;
  border: 1px solid var(--purple-color);
  border-radius: 4px;
  outline: none;
}
.launchpad-inner div.flex button:hover {
  border: 1px solid var(--purple-color);
  background-color: var(--purple-color);
}
.launchpad-inner div.flex button:focus {
  outline: none;
  border: 1px solid var(--purple-color);
  background-color: var(--purple-color);
}
.launchpad-inner div.flex button:active, .launchpad-inner div.flex button.nice-select.open {
  outline: none;
  border: 1px solid var(--purple-color);
  background-color: var(--purple-color);
}
.launchpad-inner div.flex button-text {
  font-size: 0.9rem;
}
.launchpad-inner .launchpad-options__item {
  padding: 1rem 0 0.5rem;
  border-bottom: 1px solid rgba(40, 40, 75, 0.6);
}
.launchpad-inner .launchpad-options__item:nth-last-child(1) {
  border-bottom: 1px solid rgba(40, 40, 75, 0.6);
}
.launchpad-inner .components-filter__item button {
  position: relative;
  display: inline-block;
  font-size: 0.9rem;
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  color: var(--white-color);
  background-color: var(--purple-color);
  border: 1px solid var(--purple-color);
  border-radius: 4px;
  outline: none;
}
.launchpad-inner .components-filter__item button:hover {
  border: 1px solid var(--purple-color);
}
.launchpad-inner .components-filter__item button:focus {
  outline: none;
  border: 1px solid var(--purple-color);
  background-color: var(--purple-color);
}
.launchpad-inner .components-filter__item button:active, .launchpad-inner .components-filter__item button.nice-select.open {
  outline: none;
  border: 1px solid var(--purple-color);
  background-color: var(--purple-color);
}
.launchpad-inner .components-filter__item button-text {
  font-size: 0.9rem;
}
.launchpad-inner__progressbar {
  padding-top: 2rem;
}
.launchpad-inner .progressbar-value {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.launchpad-inner .progressbar-title {
  margin-top: 2rem;
  color: var(--second-text-color);
}
.launchpad-inner .progressbar-text {
  margin: 1rem 0;
}
.launchpad-inner .progressbar-text img {
  display: block;
  width: 100%;
  margin-top: 1rem;
  border-radius: 6px;
}
.launchpad-inner .launchpad-options {
  margin: 2rem 0;
  padding-bottom: 2rem;
}
.launchpad-inner .launchpad-options__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.launchpad-inner .launchpad-options__title {
  color: var(--second-text-color);
}
.launchpad-inner .launchpad-options__value {
  color: var(--white-color);
  text-align: right;
}

@media screen and (max-width: 1000px) {
  .launchpad-inner {
    max-width: 600px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .launchpad-inner {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
.staking-inner {
  max-width: 700px;
  width: 100%;
  font-size: 0.8rem;
}
.staking-inner__image {
  margin-bottom: 2rem;
}
.staking-inner__image img {
  display: block;
  width: 100%;
  border-radius: 6px;
}
.staking-inner__options {
  margin-bottom: 2rem;
  padding: 0 0 2rem;
}
.staking-inner .options-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  padding: 1rem 0 0.5rem;
  border-bottom: 1px solid rgba(40, 40, 75, 0.6);
}
.staking-inner .options-item:nth-last-child(1) {
  border-bottom: 1px solid rgba(40, 40, 75, 0.6) !important;
}
.staking-inner .options-item__title {
  color: var(--second-text-color);
}
.staking-inner .options-item__value {
  color: var(--white-color);
  text-align: right;
}
.staking-inner .options-item__value span {
  color: var(--green-color);
}
.staking-inner__calculator .components-filter__row {
  margin-bottom: 2rem;
}
.staking-inner__calculator button {
  position: relative;
  display: inline-block;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  color: var(--white-color);
  background-color: #1d2234;
  border: 1px solid var(--purple-color);
  border-radius: 4px;
  outline: none;
}
.staking-inner__calculator button:hover {
  border: 1px solid var(--purple-color);
  background-color: var(--purple-color);
}
.staking-inner__calculator button:focus {
  outline: none;
  border: 1px solid var(--purple-color);
  background-color: var(--purple-color);
}
.staking-inner__calculator button:active, .staking-inner__calculator button.nice-select.open {
  outline: none;
  border: 1px solid var(--purple-color);
  background-color: var(--purple-color);
}
.staking-inner__calculator button-text {
  font-size: 0.9rem;
}
.staking-inner .calculator-info {
  margin-bottom: 2rem;
  padding: 0 0 2rem;
}
.staking-inner .calculator-info__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  text-align: right;
}
.staking-inner .calculator-info__title {
  color: var(--second-text-color);
  text-align: left;
}
.staking-inner .calculator-form {
  outline: none;
}
.staking-inner .calculator-form .components-filter__item {
  max-width: 360px !important;
  width: 100%;
}
.staking-inner .calculator-form .components-filter__item button {
  position: relative;
  display: inline-block;
  font-size: 0.9rem;
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  color: var(--white-color);
  background-color: var(--purple-color);
  border: 1px solid var(--purple-color);
  border-radius: 4px;
  outline: none;
}
.staking-inner .calculator-form .components-filter__item button:hover {
  background-color: var(--purple-second-color);
}
.staking-inner .calculator-form .components-filter__item button:focus {
  outline: none;
  background-color: var(--purple-second-color);
}
.staking-inner .calculator-form .components-filter__item button:active, .staking-inner .calculator-form .components-filter__item button.nice-select.open {
  outline: none;
  background-color: var(--purple-color);
}
.staking-inner .calculator-form .components-filter__item button-text {
  font-size: 0.9rem;
}

@media screen and (max-width: 1000px) {
  .staking-inner {
    max-width: 600px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .staking-inner {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
/** FONTS SETTINGS */
/* poppins-regular */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/poppins-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("/fonts/poppins-regular.eot?#iefix") format("embedded-opentype"), url("/fonts/poppins-regular.woff2") format("woff2"), url("/fonts/poppins-regular.woff") format("woff"), url("/fonts/poppins-regular.ttf") format("truetype"), url("/fonts/poppins-regular.svg#Poppins") format("svg"); /* Legacy iOS */
  font-display: swap;
}
/* poppins-500 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/poppins-500.eot"); /* IE9 Compat Modes */
  src: local(""), url("/fonts/poppins-500.eot?#iefix") format("embedded-opentype"), url("/fonts/poppins-500.woff2") format("woff2"), url("/fonts/poppins-500.woff") format("woff"), url("/fonts/poppins-500.ttf") format("truetype"), url("/fonts/poppins-500.svg#Poppins") format("svg"); /* Legacy iOS */
  font-display: swap;
}
/* poppins-600 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/poppins-600.eot"); /* IE9 Compat Modes */
  src: local(""), url("/fonts/poppins-600.eot?#iefix") format("embedded-opentype"), url("/fonts/poppins-600.woff2") format("woff2"), url("/fonts/poppins-600.woff") format("woff"), url("/fonts/poppins-600.ttf") format("truetype"), url("/fonts/poppins-600.svg#Poppins") format("svg"); /* Legacy iOS */
  font-display: swap;
}
/* poppins-700 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/poppins-700.eot"); /* IE9 Compat Modes */
  src: local(""), url("/fonts/poppins-700.eot?#iefix") format("embedded-opentype"), url("/fonts/poppins-700.woff2") format("woff2"), url("/fonts/poppins-700.woff") format("woff"), url("/fonts/poppins-700.ttf") format("truetype"), url("/fonts/poppins-700.svg#Poppins") format("svg"); /* Legacy iOS */
  font-display: swap;
}
/* poppins-800 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/poppins-800.eot"); /* IE9 Compat Modes */
  src: local(""), url("/fonts/poppins-800.eot?#iefix") format("embedded-opentype"), url("/fonts/poppins-800.woff2") format("woff2"), url("/fonts/poppins-800.woff") format("woff"), url("/fonts/poppins-800.ttf") format("truetype"), url("/fonts/poppins-800.svg#Poppins") format("svg"); /* Legacy iOS */
  font-display: swap;
}
/* poppins-900 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: url("/fonts/poppins-900.eot"); /* IE9 Compat Modes */
  src: local(""), url("/fonts/poppins-900.eot?#iefix") format("embedded-opentype"), url("/fonts/poppins-900.woff2") format("woff2"), url("/fonts/poppins-900.woff") format("woff"), url("/fonts/poppins-900.ttf") format("truetype"), url("/fonts/poppins-900.svg#Poppins") format("svg"); /* Legacy iOS */
  font-display: swap;
}
/* DM Sans 18pt Regular */
/* latin-ext */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/dm-sans/dm-sans.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}
/* latin */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/dm-sans/dm-sans2.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  font-display: swap;
}
/* Generated by script */
@font-face {
  font-family: "Vazirmatn";
  font-weight: 100;
  font-style: normal;
  src: url("/fonts/vazir/Vazirmatn-Thin.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  font-weight: 200;
  font-style: normal;
  src: url("/fonts/vazir/Vazirmatn-ExtraLight.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  font-weight: 300;
  font-style: normal;
  src: url("/fonts/vazir/Vazirmatn-Light.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  font-weight: 400;
  font-style: normal;
  src: url("/fonts/vazir/Vazirmatn-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  font-weight: 500;
  font-style: normal;
  src: url("/fonts/vazir/Vazirmatn-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  font-weight: 600;
  font-style: normal;
  src: url("/fonts/vazir/Vazirmatn-SemiBold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/vazir/Vazirmatn-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  font-weight: 800;
  font-style: normal;
  src: url("/fonts/vazir/Vazirmatn-ExtraBold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn";
  font-weight: 900;
  font-style: normal;
  src: url("/fonts/vazir/Vazirmatn-Black.woff2") format("woff2");
  font-display: swap;
}
/** TYPOGRAPHIA SETTINGS */
:root {
  /* TITLE SIZE */
  --h1-font__size: 2.2rem;
  --h2-font__size: 1.2rem;
  --h3-font__size: 0.6rem;
  /* TEXT SIZE */
  --default-font__size: 0.80rem;
  --small-font__size: 0.75rem;
  --big-font__size: 1.00rem;
  /* TEXT WEIGHT */
  --regular-font: 400;
  --medium-font: 500;
  --semi-font: 600;
  --bold-font: 700;
  --extra-font: 800;
  --black-font: 900;
}

/** COLOR SETTINGS */
:root {
  /* COLOR THEMES LIGHT */
  --body-color: #FCFCFD;
  --first-text-color: #8B8D98;
  --second-text-color: #8B8D98;
  --third-text-color: #262744;
  --fourth-text-color: #252542;
  --border-line-color: #E5E7EB;
  --tr-hover-color: #E5E7EB;
  --rows-color: #F4F6F9;
  --hover-v1-color: #131722;
  --white-input: #ffffff;
  --progress-color: #8B8D98;
  --select-option: #ffffff;
  --menu-btn-color: #ffffff;
  --blue-dark-color: #353945;
  --blue-dark-second-color: #353945;
  --blue-dark-thir-color: #353945;
  --blue-dark-fourth-color: #777E90;
  --red-color: #EE2844;
  --red-second-color: #d12f44;
  --green-color: #229E6B;
  --green-second-color: #25b176;
  --yellow-color: #FFC107;
  --gray-color: #BABABA;
  --purple-color: #23262F;
  --purple-second-color: #353945;
  --purple-third-color: #23262F;
  --white-color: #ffffff;
  --black-color: #000;
  --body-text-color: #777E90;
  /* COLOR THEMES DARK */
  --dark-body-color: #141416;
  --dark-text-color: #B9BAC0;
  --widget-markets-background-color:#ffffff;
  --button-background: #3772FF;
  --dark-gray-color: #23262F;
  --light-gray-color: #F4F5F6;
  --hover-gray-color: #353945;
  --bg-home-gray: #F4F5F6;
  --bg-home-dark-gray: #18191D;
}

body {
  font-weight: var(--medium-font);
  font-size: var(--default-font__size);
  margin: 0;
  padding: 0;
  color: var(--first-text-color);
  background-color: var(--body-color);
}

.dir-rtl {
  direction: rtl;
}

.dir-ltr {
  direction: ltr;
}

body.dark .site-layout {
  --tr-hover-color: #1B1C31;
  --border-line-color: #242539;
  --rows-color: #1F2035;
  --hover-v1-color: #FFC107;
  --first-text-color: #B9BAC0;
  --white-input: #18192E;
  --progress-color: #c19a23;
  --select-option: #18191D;
  --widget-markets-background-color: #131722;
  color: var(--dark-text-color);
  background-color: var(--dark-body-color);
}

.supText {
  top: -1.5em;
  left: -8.5em;
}

.borderSign {
  border: 1px solid var(--yellow-color);
  background-color: var(--yellow-color);
  padding: 6px 7px;
  border-radius: 8px;
  color: var(--blue-dark-color);
}
.borderSign:hover {
  color: var(--blue-dark-color);
}

.image-home {
  position: absolute;
  right: 10%;
  margin-top: -4%;
  max-width: 300px;
}

.invert {
  filter: invert(100%);
}

body.dark .invert {
  filter: invert(0%);
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5,
h6, p, blockquote, pre, a, abbr, acronym, address, big,
cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt,
dd, ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img, fieldset, a img {
  border: none;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea {
  -webkit-appearance: none;
  box-shadow: none;
}

textarea:focus {
  -webkit-appearance: none !important;
  box-shadow: none !important;
}

input[type=submit],
button {
  cursor: pointer;
}
input[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button {
  background: none;
}

textarea {
  overflow: auto;
}

input, button {
  margin: 0;
  padding: 0;
  border: 0;
}

div, input, textarea, select, button,
h1, h2, h3, h4, h5, h6, a, span, a:focus {
  outline: none;
}

ul, ol {
  list-style-type: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

html {
  box-sizing: border-box;
}

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: rgb(219.25, 219.25, 219.25);
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: rgb(237.1, 237.1, 237.1);
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*! nouislider - 11.0.3 - 2018-01-21 14:04:07 */
.noUi-target, .noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base, .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect, .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform-origin: 0 0;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}

.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  position: absolute;
}

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -17px;
  left: auto;
}

.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

.noUi-handle:after, .noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after, .noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled] .noUi-handle, [disabled].noUi-handle, [disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips, .noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-large, .noUi-marker-sub {
  background: #AAA;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translate(0, -50%, 0);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active, .mfp-close.nice-select.open {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active, .mfp-arrow.nice-select.open {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.date-picker {
  width: 170px;
  height: 25px;
  padding: 0;
  border: 0;
  line-height: 25px;
  padding-left: 10px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  color: #303030;
  position: relative;
  z-index: 2;
}

.date-picker-wrapper {
  position: absolute;
  z-index: 1;
  border: 1px solid #bfbfbf;
  background-color: #efefef;
  padding: 5px 12px;
  font-size: 12px;
  line-height: 20px;
  color: #aaa;
  font-family: Arial, sans-serif;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  box-sizing: initial;
}

.dp-clearfix {
  clear: both;
  height: 0;
  font-size: 0;
}

.date-picker-wrapper.inline-wrapper {
  position: relative;
  box-shadow: none;
  display: inline-block;
}

.date-picker-wrapper.single-date {
  width: auto;
}

.date-picker-wrapper.no-shortcuts {
  padding-bottom: 12px;
}

.date-picker-wrapper.no-topbar {
  padding-top: 12px;
}

.date-picker-wrapper .footer {
  font-size: 11px;
  padding-top: 3px;
}

.date-picker-wrapper b {
  color: #666;
  font-weight: 700;
}

.date-picker-wrapper a {
  color: #6bb4d6;
  text-decoration: underline;
}

.date-picker-wrapper .month-name {
  text-transform: uppercase;
}

.date-picker-wrapper .select-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}

.date-picker-wrapper .select-wrapper:hover {
  text-decoration: underline;
}

.date-picker-wrapper .month-element {
  display: inline-block;
  vertical-align: middle;
}

.date-picker-wrapper .select-wrapper select {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 0;
  top: -1px;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  text-transform: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=1);
  opacity: 0.01;
}

.date-picker-wrapper .month-wrapper {
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  background-color: #fff;
  padding: 5px;
  cursor: default;
  position: relative;
  _overflow: hidden;
}

.date-picker-wrapper .month-wrapper table {
  width: 190px;
  float: left;
}

.date-picker-wrapper .month-wrapper table.month2 {
  width: 190px;
  float: left;
}

.date-picker-wrapper .month-wrapper table th, .date-picker-wrapper .month-wrapper table td {
  vertical-align: middle;
  text-align: center;
  line-height: 14px;
  margin: 0px;
  padding: 0px;
}

.date-picker-wrapper .month-wrapper table .day {
  padding: 5px 0;
  line-height: 1;
  font-size: 12px;
  margin-bottom: 1px;
  color: #ccc;
  cursor: default;
}

.date-picker-wrapper .month-wrapper table div.day.lastMonth, .date-picker-wrapper .month-wrapper table div.day.nextMonth {
  color: #999;
  cursor: default;
}

.date-picker-wrapper .month-wrapper table .day.checked {
  background-color: #9cdbf7;
}

.date-picker-wrapper .month-wrapper table .week-name {
  height: 20px;
  line-height: 20px;
  font-weight: 100;
  text-transform: uppercase;
}

.date-picker-wrapper .month-wrapper table .day.has-tooltip {
  cursor: help !important;
}

.date-picker-wrapper .month-wrapper table .day.has-tooltip .tooltip {
  white-space: nowrap;
}

.date-picker-wrapper .time label {
  white-space: nowrap;
}

.date-picker-wrapper .month-wrapper table .day.toMonth.valid {
  color: #333;
  cursor: pointer;
}

.date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
  background-color: #cdecfa;
}

.date-picker-wrapper .month-wrapper table .day.nextMonth, .date-picker-wrapper .month-wrapper table .day.lastMonth {
  display: none;
}

.date-picker-wrapper .month-wrapper table .day.real-today {
  background-color: #ffe684;
}

.date-picker-wrapper .month-wrapper table .day.real-today.checked, .date-picker-wrapper .month-wrapper table .day.real-today.hovering {
  background-color: #70ccd5;
}

.date-picker-wrapper table .caption {
  height: 40px;
}

.date-picker-wrapper table .caption > th:first-of-type, .date-picker-wrapper table .caption > th:last-of-type {
  width: 27px;
}

.date-picker-wrapper table .caption .next, .date-picker-wrapper table .caption .prev {
  padding: 0 5px;
  cursor: pointer;
}

.date-picker-wrapper table .caption .next:hover, .date-picker-wrapper table .caption .prev:hover {
  background-color: #ccc;
  color: white;
}

.date-picker-wrapper .gap {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 100%;
  background-color: red;
  font-size: 0;
  line-height: 0;
  float: left;
  top: -5px;
  margin: 0 10px -10px;
  visibility: hidden;
  height: 0;
}

.date-picker-wrapper .gap .gap-lines {
  height: 100%;
  overflow: hidden;
}

.date-picker-wrapper .gap .gap-line {
  height: 15px;
  width: 15px;
  position: relative;
}

.date-picker-wrapper .gap .gap-line .gap-1 {
  z-index: 1;
  height: 0;
  border-left: 8px solid white;
  border-top: 8px solid #eee;
  border-bottom: 8px solid #eee;
}

.date-picker-wrapper .gap .gap-line .gap-2 {
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 2;
  height: 0;
  border-left: 8px solid transparent;
  border-top: 8px solid white;
}

.date-picker-wrapper .gap .gap-line .gap-3 {
  position: absolute;
  right: 0;
  top: 8px;
  z-index: 2;
  height: 0;
  border-left: 8px solid transparent;
  border-bottom: 8px solid white;
}

.date-picker-wrapper .gap .gap-top-mask {
  width: 6px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 1px;
  background-color: #eee;
  z-index: 3;
}

.date-picker-wrapper .gap .gap-bottom-mask {
  width: 6px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 7px;
  background-color: #eee;
  z-index: 3;
}

.date-picker-wrapper .selected-days {
  display: none;
}

.date-picker-wrapper .drp_top-bar {
  line-height: 1.4;
  position: relative;
  padding: 10px 40px 10px 0;
}

.date-picker-wrapper .drp_top-bar .error-top, .date-picker-wrapper .drp_top-bar .normal-top {
  display: none;
}

.date-picker-wrapper .drp_top-bar .default-top {
  display: block;
}

.date-picker-wrapper .drp_top-bar.error .default-top {
  display: none;
}

.date-picker-wrapper .drp_top-bar.error .error-top {
  display: block;
  color: red;
}

.date-picker-wrapper .drp_top-bar.normal .default-top {
  display: none;
}

.date-picker-wrapper .drp_top-bar.normal .normal-top {
  display: block;
}

.date-picker-wrapper .drp_top-bar.normal .normal-top .selection-top {
  color: #333;
}

.date-picker-wrapper .drp_top-bar .apply-btn {
  position: absolute;
  right: 0px;
  top: 6px;
  padding: 3px 5px;
  margin: 0;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  color: #d9eef7;
  border: solid 1px #0076a3;
  background: #0095cd;
  background: -moz-linear-gradient(top, #00adee, #0078a5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00adee", endColorstr="#0078a5");
  color: white;
  line-height: initial;
}

.date-picker-wrapper .drp_top-bar .apply-btn.disabled {
  cursor: pointer;
  color: #606060;
  border: solid 1px #b7b7b7;
  background: #fff;
  background: -moz-linear-gradient(top, #fff, #ededed);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ededed");
}

.date-picker-wrapper .time {
  position: relative;
}

.date-picker-wrapper.single-month .time {
  display: block;
}

.date-picker-wrapper .time input[type=range] {
  vertical-align: middle;
  width: 129px;
  padding: 0;
  margin: 0;
  height: 20px;
}

.date-picker-wrapper .time1 {
  width: 180px;
  padding: 0 5px;
  text-align: center;
}

/*time styling*/
.time2 {
  width: 180px;
  padding: 0 5px;
  text-align: center;
}

.date-picker-wrapper .time1 {
  float: left;
}

.date-picker-wrapper .time2 {
  float: right;
}

.date-picker-wrapper .hour {
  text-align: right;
}

.minute {
  text-align: right;
}

.date-picker-wrapper .hide {
  display: none;
}

.date-picker-wrapper .first-date-selected, .date-picker-wrapper .last-date-selected {
  background-color: #49e !important;
  color: white !important;
}

.date-picker-wrapper .date-range-length-tip {
  position: absolute;
  margin-top: -4px;
  margin-left: -8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  display: none;
  background-color: yellow;
  padding: 0 6px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 16px;
  -moz-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -ms-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -o-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}

.date-picker-wrapper .date-range-length-tip:after {
  content: "";
  position: absolute;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid yellow;
  left: 50%;
  margin-left: -4px;
  bottom: -4px;
}

.date-picker-wrapper.two-months.no-gap .month1 .next, .date-picker-wrapper.two-months.no-gap .month2 .prev {
  display: none;
}

.date-picker-wrapper .week-number {
  padding: 5px 0;
  line-height: 1;
  font-size: 12px;
  margin-bottom: 1px;
  color: #999;
  cursor: pointer;
}

.date-picker-wrapper .week-number.week-number-selected {
  color: #49e;
  font-weight: bold;
}

body {
  min-width: 375px;
  background: #fbfbfb;
  font-size: 14px;
  line-height: 1.7142857143;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #23262F;
}
body.dark {
  background: #121314;
  color: #FCFCFD;
}

a {
  text-decoration: none;
}

svg,
img {
  vertical-align: middle;
}

.outer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.outer__inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #fbfbfb;
}
body.dark .outer__inner {
  background: #121314;
}

.anchor {
  position: absolute;
  left: 0;
  right: 0;
}

.center {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
@media only screen and (max-width: 1023px) {
  .center {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .center {
    padding: 0 32px;
  }
}

.icenter {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 1023px) {
  .icenter {
    padding: 0 32px;
  }
}
@media only screen and (max-width: 767px) {
  .icenter {
    padding: 0 24px;
  }
}
@media only screen and (max-width: 321px) {
  .icenter {
    padding: 0 14px;
  }
}

body.dark .some-icon {
  display: none;
}

.some-icon-dark {
  display: none;
}
body.dark .some-icon-dark {
  display: inline-block;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  box-shadow: 0px 8px 16px -8px rgba(15, 15, 15, 0.1);
  border-radius: 50%;
  background: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  .play {
    width: 48px;
    height: 48px;
  }
}
.play .icon {
  width: 24px;
  height: 24px;
  fill: #777E90;
  transition: all 0.2s;
}
@media only screen and (max-width: 767px) {
  .play .icon {
    width: 12px;
    height: 12px;
  }
}
.play:hover .icon {
  transform: scale(1.2);
  fill: #37ffbc;
}
.play_small {
  width: 48px;
  height: 48px;
}
.play_small .icon {
  width: 12px;
  height: 12px;
}

.select {
  float: none;
  width: 100%;
  height: 48px;
  padding: 0 48px 0 16px;
  box-shadow: inset 0 0 0 2px #E6E8EC;
  background: #FCFCFD;
  border-radius: 6px;
  border: none;
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 48px;
}
.select:after {
  display: none;
}
.select:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill-rule='evenodd' d='M9.207.793a1 1 0 0 0-1.414 0L5 3.586 2.207.793A1 1 0 1 0 .793 2.207l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0 0-1.414z' fill='%23777e91'/%3E%3C/svg%3E") no-repeat 50% 50%/10px auto;
  transition: transform 0.2s;
}
body.dark .select {
  background: #181617;
  box-shadow: inset 0 0 0 2px #353945;
  -webkit-appearance: none;
}
body.dark .select:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill-rule='evenodd' d='M9.207.793a1 1 0 0 0-1.414 0L5 3.586 2.207.793A1 1 0 1 0 .793 2.207l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0 0-1.414z' fill='%23FCFCFD'/%3E%3C/svg%3E");
}
.select.open {
  box-shadow: inset 0 0 0 2px #777E90;
}
body.dark .select.open {
  box-shadow: inset 0 0 0 2px #777E90;
}
.select.open:before {
  transform: translateY(-50%) rotate(180deg);
}
.select .current {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select .list {
  right: 0;
  margin-top: 2px;
  border-radius: 12px;
  background: #FCFCFD;
  border: 2px solid #E6E8EC;
  box-shadow: 0 4px 12px rgba(35, 38, 47, 0.1);
}
body.dark .select .list {
  background: #181617;
  border-color: #353945;
  box-shadow: 0 4px 12px rgba(24, 22, 23, 0.1);
}
.select .option {
  min-height: auto;
  padding: 10px 14px;
  font-weight: 500;
  line-height: 1.4;
}
.select .option:hover, .select .option.focus, .select .option.selected.focus {
  background: #F4F5F6;
}
body.dark .select .option:hover, body.dark .select .option.focus, body.dark .select .option.selected.focus {
  background: #23262F;
}
.select .option.selected {
  font-weight: 500;
  color: #37ffbc;
}

.slick-arrow {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0;
  transition: all 0.2s;
}
.slick-arrow path {
  position: relative;
  z-index: 2;
  fill: #777E90;
  transition: fill 0.2s;
}
body.dark .slick-arrow:hover {
  box-shadow: inset 0 0 0 2px #353945;
}
body.dark .slick-arrow:hover path {
  fill: #E6E8EC;
}

.date-picker-wrapper {
  padding: 0;
  border: none;
  border-radius: 24px;
  box-shadow: 0px 40px 32px -24px rgba(15, 15, 15, 0.12);
  background: none;
  z-index: 20;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .date-picker-wrapper {
    width: 262px !important;
    padding: 0 19px;
  }
}
body.dark .date-picker-wrapper {
  background: none;
}
.date-picker-wrapper.single-month .month-wrapper {
  width: 252px !important;
  padding: 0 19px;
}
@media only screen and (max-width: 767px) {
  .date-picker-wrapper.single-month .month-wrapper {
    margin: 0 5px;
    padding: 0;
  }
}
.date-picker-wrapper.single-month .month-wrapper table {
  width: 100% !important;
}
@media only screen and (min-width: 768px) {
  .date-picker-wrapper.two-months .month-wrapper {
    display: flex;
    width: 600px !important;
  }
  .date-picker-wrapper.two-months .month-wrapper table {
    flex: 0 0 calc(50% - 48px);
    width: calc(50% - 48px);
    margin: 0 24px;
  }
}
.date-picker-wrapper.single-date .day {
  border-radius: 50% !important;
}
.date-picker-wrapper.single-date .day.first-date-selected:before,
.date-picker-wrapper.single-date .day.last-date-selected:before {
  display: none;
}
.date-picker-wrapper .month-wrapper {
  background: none;
  border: none;
  box-shadow: none;
}
.date-picker-wrapper .month-wrapper table {
  display: block;
}
@media only screen and (max-width: 767px) {
  .date-picker-wrapper .month-wrapper table {
    width: 100%;
  }
}
.date-picker-wrapper .month-wrapper table thead,
.date-picker-wrapper .month-wrapper table tbody {
  display: block;
  width: 100%;
}
.date-picker-wrapper .month-wrapper table tr {
  display: flex;
  align-items: center;
  height: 36px;
}
.date-picker-wrapper .month-wrapper table th,
.date-picker-wrapper .month-wrapper table td {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 1;
  font-weight: 500;
}
.date-picker-wrapper .month-wrapper table thead tr:first-child {
  height: 36px;
}
.date-picker-wrapper .month-wrapper table thead tr:first-child th:first-child, .date-picker-wrapper .month-wrapper table thead tr:first-child th:nth-child(3) {
  flex: 0 0 24px;
}
.date-picker-wrapper .month-wrapper table .week-name,
.date-picker-wrapper .month-wrapper table .caption {
  height: auto;
}
.date-picker-wrapper .month-wrapper table .week-name {
  height: 40px;
}
.date-picker-wrapper .month-wrapper table .week-name th {
  height: auto;
}
.date-picker-wrapper .month-wrapper table .day {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 0;
  transition: background 0.2s, color 0.2s;
}
.date-picker-wrapper .month-wrapper table .day.valid.toMonth {
  color: #23262F;
}
body.dark .date-picker-wrapper .month-wrapper table .day.valid.toMonth {
  color: #FCFCFD;
}
.date-picker-wrapper .month-wrapper table .day:hover {
  background: #E6E8EC;
  color: #23262F !important;
}
body.dark .date-picker-wrapper .month-wrapper table .day:hover {
  background: #181617;
  color: #FCFCFD !important;
}
.date-picker-wrapper .month-wrapper table .day.checked {
  background: #E6E8EC;
  border-radius: 0;
}
body.dark .date-picker-wrapper .month-wrapper table .day.checked {
  background: #181617;
  color: #FCFCFD !important;
}
.date-picker-wrapper .month-wrapper table .day.hovering {
  border-radius: 0;
  background: #E6E8EC !important;
}
body.dark .date-picker-wrapper .month-wrapper table .day.hovering {
  background: #181617 !important;
  color: #FCFCFD !important;
}
.date-picker-wrapper .month-wrapper table .day.real-today {
  background: #37ffbc !important;
  color: #FCFCFD !important;
}
body.dark .date-picker-wrapper .month-wrapper table .day.real-today {
  background: #37ffbc !important;
  color: #FCFCFD !important;
}
.date-picker-wrapper .month-wrapper table .day.day.real-today.checked, .date-picker-wrapper .month-wrapper table .day.day.real-today.hovering {
  background: #37ffbc;
}
.date-picker-wrapper .month-wrapper table .day.first-date-selected, .date-picker-wrapper .month-wrapper table .day.last-date-selected {
  position: relative;
  border-radius: 50% !important;
  background: #23262F !important;
  color: #FCFCFD !important;
}
body.dark .date-picker-wrapper .month-wrapper table .day.first-date-selected, body.dark .date-picker-wrapper .month-wrapper table .day.last-date-selected {
  background: #FCFCFD !important;
  color: #23262F !important;
}
.date-picker-wrapper .month-wrapper table .day.first-date-selected:before, .date-picker-wrapper .month-wrapper table .day.last-date-selected:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 50%;
  background: #E6E8EC;
}
body.dark .date-picker-wrapper .month-wrapper table .day.first-date-selected:before, body.dark .date-picker-wrapper .month-wrapper table .day.last-date-selected:before {
  background: #181617;
}
.date-picker-wrapper .month-wrapper table .day.first-date-selected:before {
  right: 0;
}
.date-picker-wrapper .month-wrapper table .day.last-date-selected:before {
  left: 0;
}
.date-picker-wrapper .month-name {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  color: #23262F;
}
body.dark .date-picker-wrapper .month-name {
  color: #FCFCFD;
}
.date-picker-wrapper .month-element:not(:last-child) {
  margin-right: 5px;
}
.date-picker-wrapper .week-name {
  font-size: 14px;
  color: #777E90;
}
.date-picker-wrapper .week-name th {
  font-weight: 500;
  text-transform: capitalize;
}
.date-picker-wrapper .gap {
  display: none;
}
.date-picker-wrapper table .caption .next:hover, .date-picker-wrapper table .caption .prev:hover {
  background: none;
}
.date-picker-wrapper table .caption .next:hover path, .date-picker-wrapper table .caption .prev:hover path {
  fill: #37ffbc;
}
.date-picker-wrapper .footer {
  display: none;
}

.dir-rtl {
  font-family: "Vazirmatn", sans-serif;
}

.divider {
  flex-grow: 1;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
}

.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}

.m-auto {
  margin: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.align-baseline {
  align-items: baseline;
}

@media only screen and (max-width: 1179px) {
  .desktop-hide {
    display: none !important;
  }
}
.desktop-show {
  display: none !important;
}
@media only screen and (max-width: 1179px) {
  .desktop-show {
    display: block !important;
  }
}
@media only screen and (max-width: 1179px) {
  .desktop-text-right {
    text-align: right !important;
  }
}

@media only screen and (max-width: 1023px) {
  .tablet-hide {
    display: none !important;
  }
}
.tablet-show {
  display: none !important;
}
@media only screen and (max-width: 1023px) {
  .tablet-show {
    display: block !important;
  }
}
@media only screen and (max-width: 1023px) {
  .tablet-text-right {
    text-align: right !important;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
}
.mobile-show {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .mobile-show {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-text-right {
    text-align: right !important;
  }
}

[class^=section] {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1179px) {
  [class^=section] {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  [class^=section] {
    margin-bottom: 30px;
  }
}

.section-bg {
  padding: 50px 0;
  background: #F4F5F6;
}
@media only screen and (max-width: 1179px) {
  .section-bg {
    padding: 112px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-bg {
    padding: 64px 0;
  }
}
body.dark .section-bg {
  background: #18191D;
}

.section-mb0 {
  margin-bottom: 0;
}
@media only screen and (max-width: 1179px) {
  .section-mb0 {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-mb0 {
    margin-bottom: 0;
  }
}

.section-padding {
  padding: 136px 0;
}
@media only screen and (max-width: 1179px) {
  .section-padding {
    padding: 112px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-padding {
    padding: 64px 0;
  }
}

.hero,
.h1,
.h2,
.h3,
.h4 {
  font-weight: 700;
}

.hero {
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 1339px) {
  .hero {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1179px) {
  .hero {
    font-size: 64px;
  }
}

.h1 {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 767px) {
  .h1 {
    font-size: 48px;
    line-height: 1.1666666667;
  }
}

.h2 {
  font-size: 48px;
  line-height: 1.1666666667;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 767px) {
  .h2 {
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
}

.h3 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 767px) {
  .h3 {
    font-size: 32px;
    line-height: 1.25;
  }
}

.h4 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

[class^=category] {
  display: inline-block;
  padding: 8px;
  background: #23262F;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #FCFCFD;
}

.category-blue {
  background: #37ffbc;
}

.category-purple {
  background: #9757D7;
}

.category-green {
  background: #00ED7B;
}

.category-red {
  background: #FF6838;
}

.category-gray {
  background: #B1B5C3;
}
body.dark .category-gray {
  background: #353945;
  color: #FCFCFD;
}

.category-stroke-green {
  background: none;
  box-shadow: inset 0 0 0 2px #00ED7B;
  color: #00ED7B;
}

[class^=button] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  background: #00ED7B;
  border-radius: 6px;
  text-align: center;
  color: #FCFCFD;
  transition: all 0.2s;
  font-size: 14px;
  line-height: 1.1428571429;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}
body .dir-rtl [class^=button] {
  font-family: "Vazirmatn", sans-serif;
}
[class^=button]:hover {
  background: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
}
[class^=button]:disabled, [class^=button].disabled {
  opacity: 0.5;
  pointer-events: none;
}
[class^=button] .icon {
  width: 16px;
  height: 16px;
  fill: #FCFCFD;
  transition: all 0.2s;
}
[class^=button]:not([class^=button-circle]) .icon:first-child {
  margin-right: 12px;
}
body .dir-rtl [class^=button]:not([class^=button-circle]) .icon:first-child {
  margin-left: 12px;
  margin-right: 0;
}
[class^=button]:not([class^=button-circle]) .icon:last-child {
  margin-left: 12px;
}
body .dir-rtl [class^=button]:not([class^=button-circle]) .icon:last-child {
  margin-left: 0;
  margin-right: 12px;
}

.button-stroke {
  background: none;
  color: #23262F;
}
.button-stroke.cancel {
  float: left;
}
.button-stroke .icon {
  fill: #777E90;
}
body.dark .button-stroke {
  color: #FCFCFD;
}
body.dark .button-stroke .icon {
  fill: #FCFCFD;
}
.button-stroke.future {
  float: right;
}
.button-stroke:hover, .button-stroke.active {
  background: rgba(0, 237, 123, 0.1);
  color: #FCFCFD;
}
.button-stroke:hover .icon, .button-stroke.active .icon {
  fill: #FCFCFD;
}
body.dark .button-stroke:hover, body.dark .button-stroke.active {
  background: rgba(0, 237, 123, 0.1);
}

.button-black {
  background: #181617;
}
.button-black:hover, .button-black.active {
  background: #353945;
}
body.dark .button-black {
  background: #F4F5F6;
  color: #23262F;
}
body.dark .button-black .icon {
  fill: #23262F;
}
body.dark .button-black:hover, body.dark .button-black.active {
  background: #E6E8EC;
}

.button-red {
  background: #FF6838;
}
.button-red:hover, .button-red.active {
  background: rgb(255, 76.9110552764, 20.3);
  color: #fbfbfb;
}

.button-green {
  background: rgb(0, 177, 105);
}
.button-green:hover, .button-green.active {
  background: rgba(0.7841269841, 147.4158730159, 110.5619047619, 0.4);
  color: #fbfbfb;
}

.button-white {
  background: #FCFCFD;
  color: #23262F;
}
.button-white .icon {
  fill: #23262F;
}
.button-white:hover {
  background: #F4F5F6;
}

.button-small {
  height: 36px;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 13px;
}
.button-small.swap {
  width: 100%;
}

.button-search {
  height: 60px;
  margin-bottom: 16px;
  width: 100%;
  padding-bottom: 16px;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 13px;
}

.button-circle {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

.button-circle-stroke {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #E6E8EC inset;
  background: transparent;
  transition: all 0.2s;
}
.button-circle-stroke .icon {
  fill: #777E90;
}
.button-circle-stroke:hover {
  background: #23262F;
  box-shadow: 0 0 0 2px #23262F inset;
}
.button-circle-stroke:hover .icon {
  fill: #FCFCFD;
}
body.dark .button-circle-stroke {
  box-shadow: 0 0 0 2px #353945 inset;
}
body.dark .button-circle-stroke:hover {
  background: #353945;
}

.button-circle-stroke.button-small {
  flex: 0 0 40px;
  width: 44px;
  height: 44px;
}

.button-secondary {
  background: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
}
.button-secondary:hover {
  background: #00ed7b;
  color: #FCFCFD;
}

[class^=stage] {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #777E90;
}

.stage-small {
  font-size: 12px;
}

.favorite {
  position: relative;
  width: 16px;
  height: 16px;
}
.favorite .icon {
  width: 16px;
  height: 16px;
  fill: #777E90;
  transition: all 0.2s;
}
.favorite:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M7.388 2.085a.67.67 0 0 1 1.224 0l1.453 3.368c.098.227.314.381.561.401l3.727.288a.67.67 0 0 1 .373 1.179l-2.803 2.314c-.198.163-.284.425-.223.674l.863 3.486a.67.67 0 0 1-.985.735l-3.24-1.907c-.209-.123-.468-.123-.676 0l-3.24 1.907a.67.67 0 0 1-.985-.735l.863-3.486c.062-.249-.025-.511-.223-.674L1.273 7.32a.67.67 0 0 1 .373-1.179l3.727-.288c.247-.019.463-.173.561-.401l1.453-3.368z' fill='%23ffd166'/%3E%3C/svg%3E") no-repeat 50% 50%/100% auto;
  opacity: 0;
  transition: opacity 0.2s;
}
.favorite:hover .icon {
  fill: #FFD166;
}
.favorite.active .icon {
  opacity: 0;
}
.favorite.active:after {
  opacity: 1;
}

.sorting {
  position: relative;
  display: inline-block;
  padding-right: 16px;
  cursor: pointer;
}
.sorting:before, .sorting:after {
  content: "";
  position: absolute;
  right: 0;
  width: 7px;
  height: 4px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
}
.sorting:before {
  top: calc(50% - 5px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' fill='none' viewBox='0 0 7 4'%3E%3Cpath fill-rule='evenodd' d='M1.148 3.804c.26.26.682.26.943 0l1.862-1.862 1.862 1.862c.26.26.682.26.943 0s.26-.682 0-.943L4.425.528c-.26-.26-.682-.26-.943 0L1.148 2.862c-.26.26-.26.682 0 .943z' fill='%23777e91'/%3E%3C/svg%3E");
}
.sorting:after {
  top: calc(50% + 1px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' fill='none' viewBox='0 0 7 4'%3E%3Cpath fill-rule='evenodd' d='M1.148.195c.26-.26.682-.26.943 0l1.862 1.862L5.815.195c.26-.26.682-.26.943 0s.26.682 0 .943L4.425 3.471c-.26.26-.682.26-.943 0L1.148 1.137c-.26-.26-.26-.682 0-.943z' fill='%23777e91'/%3E%3C/svg%3E");
}
.sorting.up:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' fill='none' viewBox='0 0 7 4'%3E%3Cpath fill-rule='evenodd' d='M1.148 3.804c.26.26.682.26.943 0l1.862-1.862 1.862 1.862c.26.26.682.26.943 0s.26-.682 0-.943L4.425.528c-.26-.26-.682-.26-.943 0L1.148 2.862c-.26.26-.26.682 0 .943z' fill='%2323262F'/%3E%3C/svg%3E");
}
.sorting.up:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' fill='none' viewBox='0 0 7 4'%3E%3Cpath fill-rule='evenodd' d='M1.148.195c.26-.26.682-.26.943 0l1.862 1.862L5.815.195c.26-.26.682-.26.943 0s.26.682 0 .943L4.425 3.471c-.26.26-.682.26-.943 0L1.148 1.137c-.26-.26-.26-.682 0-.943z' fill='%23B1B5C3'/%3E%3C/svg%3E");
}
.sorting.down:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' fill='none' viewBox='0 0 7 4'%3E%3Cpath fill-rule='evenodd' d='M1.148 3.804c.26.26.682.26.943 0l1.862-1.862 1.862 1.862c.26.26.682.26.943 0s.26-.682 0-.943L4.425.528c-.26-.26-.682-.26-.943 0L1.148 2.862c-.26.26-.26.682 0 .943z' fill='%23B1B5C3'/%3E%3C/svg%3E");
}
.sorting.down:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' fill='none' viewBox='0 0 7 4'%3E%3Cpath fill-rule='evenodd' d='M1.148.195c.26-.26.682-.26.943 0l1.862 1.862L5.815.195c.26-.26.682-.26.943 0s.26.682 0 .943L4.425 3.471c-.26.26-.682.26-.943 0L1.148 1.137c-.26-.26-.26-.682 0-.943z' fill='%2323262F'/%3E%3C/svg%3E");
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 8px 0;
  background: #ffffff;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.03);
}
body.dark .header {
  background: #121413;
  box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.03);
}
@media only screen and (max-width: 1023px) {
  body.dark .header {
    box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.0509803922);
  }
}
@media only screen and (max-width: 1023px) {
  .header {
    padding: 8px 0;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0705882353);
  }
}
.header .wide {
  max-width: unset;
  padding: 0 20px 4px;
}
.header .wide .header__item_assets.active .header__body {
  transform: translate(-118%, -16px);
}
.header .wide .header__item_orders.active .header__body {
  transform: translate(-85%, -16px);
}
@media only screen and (max-width: 1023px) {
  .header .wide {
    padding: 0 12px;
  }
}
body .dir-rtl .header .wide .header__item_assets.active .header__body {
  transform: translate(113%, -16px);
}
body .dir-rtl .header .wide .header__item_orders.active .header__body {
  transform: translate(85%, -16px);
}
body .dir-rtl .header .wide .header__item_notifications.active .header__body {
  transform: translate(62%, -16px);
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
body.dark .header__top {
  border-color: rgba(255, 255, 255, 0.15);
}
@media only screen and (max-width: 1023px) {
  .header__top {
    display: none;
  }
}
.header__top.none {
  display: none;
}
.header__markets {
  width: 66%;
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .header__markets {
    display: none;
  }
}
.header__market {
  display: inline-flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}
@media only screen and (max-width: 1179px) {
  .header__market {
    padding: 24px 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__market {
    padding: 16px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .header__market {
    margin-left: 10px;
  }
}
body.dark .header__market {
  color: #FCFCFD;
}
body .dir-rtl .header__market {
  direction: ltr;
}
.header__market_subtitle {
  color: #181617;
}
body.dark .header__market_subtitle {
  color: #FCFCFD;
}
.header__market_positive {
  color: rgb(0, 177, 105);
}
body .dir-rtl .header__market_positive {
  direction: ltr;
}
.header__market_negative {
  color: #FF6838;
}
body .dir-rtl .header__market_negative {
  direction: ltr;
}
.header__market_price {
  color: #00ed7b;
  margin: 0 6px;
}
.header__customize {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 34%;
  margin: 0;
}
.header__customize .icon-theme {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .header__customize {
    width: 100%;
  }
}
.header__form {
  position: relative;
}
.header__input {
  width: 113px;
  padding: 3px 22px 3px 8px;
  background: none;
  color: #23262F;
  border-radius: 6px;
  border-left: 1px solid rgba(0, 0, 0, 0.13);
  border-right: 1px solid rgba(0, 0, 0, 0.13);
  font-size: 14px;
  line-height: 1.7142857143;
}
body .dir-rtl .header__input {
  font-family: "Vazirmatn", sans-serif;
  padding: 3px 8px 3px 22px;
}
body.dark .header__input {
  color: #FCFCFD;
  border-left-color: rgba(255, 255, 255, 0.13);
  border-right-color: rgba(255, 255, 255, 0.13);
}
.header__input::-moz-placeholder {
  color: #777E90;
}
.header__input::placeholder {
  color: #777E90;
}
.header__input:focus {
  border-color: #00ED7B;
  --tw-ring-color: $p4;
}
.header__search {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 0;
  width: 20px;
  height: 20px;
}
body .dir-rtl .header__search {
  left: 5px;
  right: auto;
}
.header__search .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  fill: none;
}
.header__search .icon:hover {
  fill: none;
}
body.dark .header__search svg path {
  stroke: white;
}
.header__center {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1179px) {
  .header__center {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__center {
    padding: 0 20px;
  }
}
.header__logo {
  margin-right: 32px;
}
@media only screen and (max-width: 1023px) {
  .header__logo {
    position: relative;
    z-index: 15;
    margin-right: auto;
  }
}
body .dir-rtl .header__logo {
  margin-right: 0;
  margin-left: 32px;
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .header__logo {
    margin-right: 0;
    margin-left: auto;
  }
}
.header__pic {
  width: 113px;
}
@media only screen and (max-width: 1023px) {
  .header__pic_desktop {
    display: none !important;
  }
}
.header__pic_mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header__pic_mobile {
    display: inline-block;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-left: 32px;
  border-left: 1px solid #E6E8EC;
}
body .dir-rtl .header__wrapper {
  border-left: none;
  border-right: 1px solid #E6E8EC;
  padding-left: 0;
  padding-right: 32px;
}
@media only screen and (max-width: 1339px) {
  .header__wrapper {
    padding-left: 0;
    padding-right: 0;
    border: none;
  }
}
@media only screen and (max-width: 1023px) {
  .header__wrapper {
    flex-grow: 0;
  }
}
body.dark .header__wrapper {
  border-color: #353945;
}
.header__wrap {
  margin-right: auto;
}
body .dir-rtl .header__wrap {
  margin-right: 0;
  margin-left: auto;
}
@media only screen and (max-width: 1023px) {
  .header__wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 368px;
    margin: 55px 0 0;
    background: #FCFCFD;
    box-shadow: 0px 16px 48px rgba(31, 70, 61, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
    overflow-y: scroll;
  }
  body.dark .header__wrap {
    background: #181617;
    box-shadow: 0px 16px 48px rgba(104, 152, 222, 0.1);
  }
  .header__wrap.visible {
    visibility: visible;
    opacity: 1;
  }
}
.header__nav {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .header__nav {
    flex-direction: column;
  }
}
.header__nav .header__item:not(:last-child) {
  margin-right: 18px;
}
@media only screen and (max-width: 1179px) {
  .header__nav .header__item:not(:last-child) {
    margin-right: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__nav .header__item:not(:last-child) {
    margin: 0;
  }
}
body .dir-rtl .header__nav .header__item:not(:last-child) {
  margin-left: 25px;
  margin-right: 0;
}
@media only screen and (max-width: 1179px) {
  body .dir-rtl .header__nav .header__item:not(:last-child) {
    margin-left: 16px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .header__nav .header__item:not(:last-child) {
    margin: 0;
  }
}
.header__item[href] {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 36px;
  font-weight: 500;
  color: #181617;
  transition: all 0.2s;
}
body.dark .header__item[href] {
  color: #FCFCFD;
}
body .dir-rtl .header__item[href] {
  font-family: "Vazirmatn", sans-serif;
}
@media only screen and (max-width: 1023px) {
  .header__item[href] {
    padding: 0 22px;
  }
}
.header__item[href]:hover, .header__item[href].active {
  color: #00ed7b !important;
}
@media only screen and (max-width: 1023px) {
  .header__item[href]:hover, .header__item[href].active {
    border-color: #37ffbc;
  }
}
.header__item_dropdown {
  position: relative;
}
.header__item_settings {
  margin-right: 16px;
}
@media only screen and (max-width: 1179px) {
  .header__item_settings {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__item_settings {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 639px) {
  .header__item_settings {
    margin-right: 5px;
  }
}
body .dir-rtl .header__item_settings {
  margin-right: 0px;
  margin-left: 13px;
}
@media only screen and (max-width: 1179px) {
  body .dir-rtl .header__item_settings {
    margin-right: 0px;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .header__item_settings {
    margin-right: 0px;
    margin-left: 8px;
  }
}
@media only screen and (max-width: 639px) {
  body .dir-rtl .header__item_settings {
    margin-right: 0px;
    margin-lef: 5px;
  }
}
.header__item_settings:last-child {
  margin: 0;
}
.header__item_settings, .header__item_notifications, .header__item_user {
  position: relative;
}
.header__item_user {
  height: 36px;
}
.header__item_dropdown .header__head {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 36px;
  font-weight: 500;
  transition: color 0.2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #181617;
}
body .dir-rtl .header__item_dropdown .header__head {
  font-family: "Vazirmatn", sans-serif;
}
body.dark .header__item_dropdown .header__head {
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .header__item_dropdown .header__head {
    width: 100%;
    padding: 0 22px;
    line-height: 36px;
  }
}
.header__item_dropdown .header__head .icon {
  width: 18px;
  height: 18px;
  fill: #181617;
  transition: all 0.2s;
}
body.dark .header__item_dropdown .header__head .icon {
  fill: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .header__item_dropdown .header__head .icon {
    width: 22px;
    height: 22px;
    margin-left: auto;
  }
}
.header__item_dropdown .header__head:hover, .header__item_dropdown .header__head.active {
  color: #00ed7b;
}
.header__item_dropdown .header__head:hover .icon, .header__item_dropdown .header__head.active .icon {
  fill: #00ed7b;
}
body.dark .header__item_dropdown .header__head:hover, body.dark .header__item_dropdown .header__head.active {
  color: #00ed7b;
}
body.dark .header__item_dropdown .header__head:hover .icon, body.dark .header__item_dropdown .header__head.active .icon {
  fill: #00ed7b;
}
.header__item_settings .header__head {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 36px;
  font-weight: 500;
  transition: color 0.2s;
  color: #181617;
}
body.dark .header__item_settings .header__head {
  color: #FCFCFD;
}
.header__item_settings .header__head:hover {
  color: #00ed7b;
}
.header__item_settings .header__head:hover .icon {
  fill: #00ed7b;
}
body.dark .header__item_settings .header__head:hover {
  color: #00ed7b;
}
body.dark .header__item_settings .header__head:hover .icon {
  fill: #00ed7b;
}
.header__item_settings .header__head .icon {
  width: 20px;
  height: 20px;
  fill: #181617;
  transition: all 0.2s;
}
body.dark .header__item_settings .header__head .icon {
  fill: #FCFCFD;
}
body.dark .header__item_settings .header__head .icon.icon-download-app-darkMode {
  display: flex;
  align-items: center;
  fill: none;
}
body.dark .header__item_settings .header__head .icon.icon-download-app-lightMode {
  display: none;
}
.header__item_settings .header__head .icon.icon-download-app-lightMode {
  display: flex;
  align-items: center;
  fill: none;
}
.header__item_settings .header__head .icon.icon-download-app-lightMode:hover {
  fill: none;
}
.header__item_settings .header__head .icon.icon-download-app-darkMode {
  display: none;
}
.header__item_notifications .header__head, .header__item_user .header__head {
  position: relative;
  width: 35px;
  height: 35px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 767px) {
  .header__item_notifications .header__head, .header__item_user .header__head {
    width: 35px;
    height: 35px;
  }
}
.header__item_notifications {
  background: #00ed7b;
  color: #FCFCFD;
  height: 35px;
  font-size: 13px;
  border-radius: 6px;
  padding: 0 8px;
  margin-left: 12px;
}
body .dir-rtl .header__item_notifications {
  margin-right: 12px;
  margin-left: 0px;
}
@media only screen and (max-width: 1023px) {
  .header__item_notifications {
    display: none;
  }
}
.header__item_notifications .header__head {
  margin: 0;
  width: 100%;
  height: 100%;
}
.header__item_notifications .header__head .icon {
  width: 20px;
  height: 18px;
  fill: none;
  transition: fill 0.2s;
}
body .dir-rtl .header__item_notifications .header__head .icon {
  margin-top: 6px;
}
.header__item_notifications .header__head.active:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
}
body .dir-rtl .header__item_notifications .header__head.active:before {
  right: 20px;
}
.header__item_user .header__head .avatar-image {
  width: 100%;
  height: 100%;
}
.header__item_user .header__head img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.header__item_user .header__head .avatar-initials {
  background: #00ed7b;
  border-radius: 50%;
  color: #FCFCFD;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__item_dropdown.active .header__head, .header__item_settings.active .header__head {
  color: #00ed7b;
}
.header__item_dropdown.active .header__head .icon, .header__item_settings.active .header__head .icon {
  transform: rotate(180deg);
  fill: #00ed7b;
}
body.dark .header__item_dropdown.active .header__head .icon, body.dark .header__item_settings.active .header__head .icon {
  fill: #00ed7b;
}
body .dir-rtl .header__item_dropdown.active .header__head .icon, body .dir-rtl .header__item_settings.active .header__head .icon {
  transform: none;
}
.header__item_assets.active .icon, .header__item_orders.active .icon {
  transform: rotate(180deg);
}
.header__head.color_active {
  color: #00ed7b;
}
body.dark .header__head.color_active {
  color: #00ed7b;
}
.header__item_notifications.active .header__head .icon {
  fill: none;
}
.header__body {
  position: absolute;
  box-shadow: 0px 16px 48px rgba(31, 70, 61, 0.1);
  border-radius: 6px;
  background: #FCFCFD;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  padding: 16px;
}
body.dark .header__body {
  background: rgb(0, 0, 0);
}
@media only screen and (max-width: 767px) {
  .header__body {
    top: 100%;
  }
}
.header__body:before {
  content: "";
  position: absolute;
  bottom: 100%;
  width: 24px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='9' fill='none' viewBox='0 0 24 9'%3E%3Cpath d='M6.343 2.657L0 9h24l-6.343-6.343a8 8 0 0 0-11.314 0z' fill='%23fcfcfd'/%3E%3C/svg%3E") no-repeat 50% 100%/100% auto;
}
body.dark .header__body:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='9' fill='none' viewBox='0 0 24 9'%3E%3Cpath d='M6.343 2.657L0 9h24l-6.343-6.343a8 8 0 0 0-11.314 0z' fill='%2323262F'/%3E%3C/svg%3E");
}
.header__item_dropdown .header__body {
  left: 50%;
  width: 420px;
  transform: translate(-50%, 15px);
  padding: 15px 15px 5px;
}
@media only screen and (max-width: 767px) {
  body.dark .header__item_dropdown .header__body {
    background: none;
  }
}
.header__item_dropdown .header__body:before {
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .header__item_dropdown .header__body:before {
    display: none;
  }
}
.header__item_dropdown .header__body.more {
  width: 888px;
}
@media only screen and (max-width: 1023px) {
  .header__item_dropdown .header__body.more {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .header__item_dropdown .header__body {
    display: none;
    position: static;
    width: 100%;
    padding: 0 24px;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: translate(0);
  }
}
.header__item_settings .header__body {
  left: 50%;
  z-index: 2;
}
@media only screen and (max-width: 1179px) {
  .header__item_settings .header__body {
    transform: translate(-50%, 0);
    width: 144px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__item_settings .header__body {
    transform: translate(-50%, 0);
    width: 133px;
  }
  body .dir-rtl .header__item_settings .header__body {
    transform: translate(-50%, 0);
    width: 133px;
  }
}
.header__item.active .header__body {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 1023px) {
  .header__item.active .header__body {
    display: flex;
  }
}
.header__item_settings .header__qr_body {
  top: calc(100% + 20px);
  left: calc(100% - 80px);
  width: 166px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .header__item_settings .header__qr_body {
    top: 100%;
  }
}
body .dir-rtl .header__item_settings .header__qr_body {
  left: -100px;
}
.header__item_settings .header__qr_body:before {
  left: 50%;
  transform: translateX(231%);
}
body .dir-rtl .header__item_settings .header__qr_body:before {
  right: 80%;
  transform: translateX(30%);
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .header__item_settings .header__qr_body:before {
    right: 100%;
  }
}
.header__item_settings.active .header__qr_body {
  transform: translate(-50%, 0px);
}
@media only screen and (max-width: 1023px) {
  .header__item_settings.active .header__qr_body {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .header__item_settings.active .header__qr_body {
    transform: translate(-50%, 25px);
  }
  body .dir-rtl .header__item_settings.active .header__qr_body {
    transform: translate(-50%, 0);
  }
}
body .dir-rtl .header__item_settings.active .header__qr_body {
  transform: translate(50%, 0px);
}
.header__item_settings .header__currency_body {
  top: calc(100% + 12px);
  left: calc(100% - 72px);
  width: 150px;
  padding: 16px;
}
.header__item_settings .header__currency_body:before {
  left: 100%;
  transform: translateX(-124%);
}
.header__item_settings.active .header__currency_body {
  transform: translate(-50%, 0px);
}
@media only screen and (max-width: 767px) {
  .header__item_settings.active .header__currency_body {
    transform: translate(-40%, 10px);
  }
  body .dir-rtl .header__item_settings.active .header__currency_body {
    transform: translate(-50%, 0);
  }
}
.header__item_settings .header__language_body {
  top: calc(100% + 12px);
  left: calc(100% - 85px);
  width: 177px;
  padding: 16px;
}
.header__item_settings .header__language_body:before {
  left: 100%;
  transform: translateX(-113%);
}
body .dir-rtl .header__item_settings .header__language_body:before {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}
@media only screen and (max-width: 1023px) {
  .header__item_settings .header__language_body {
    display: none;
  }
}
body .dir-rtl .header__item_settings .header__language_body {
  left: -130px;
}
.header__item_settings.active .header__language_body {
  transform: translate(-50%, 0px);
}
@media only screen and (max-width: 1023px) {
  .header__item_settings.active .header__language_body {
    display: none;
  }
}
body .dir-rtl .header__item_settings.active .header__language_body {
  transform: translate(50%, 0px);
}
.header__item_settings .header__search_body {
  top: calc(100% + 12px);
  left: calc(0% - 952px);
  width: 1065px;
  padding: 16px;
}
body .dir-rtl .header__item_settings .header__search_body {
  left: calc(0% - 9px);
}
@media only screen and (max-width: 767px) {
  .header__item_settings .header__search_body {
    top: 100%;
  }
}
.header__item_settings .header__search_body:before {
  left: 100%;
  transform: translateX(-113%);
}
body .dir-rtl .header__item_settings .header__search_body:before {
  left: 0;
  transform: translateX(155%);
}
.header__item_notifications .header__body {
  top: calc(100% + 18px);
  left: calc(50% - 150px);
  width: 412px;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0px 16px 64px -24px rgba(31, 70, 66, 0.15);
}
body .dir-rtl .header__item_notifications .header__body {
  left: calc(10% - 260px);
}
.header__item_notifications .header__body:before {
  right: 8px;
  transform: translateX(-10%);
}
@media only screen and (max-width: 767px) {
  .header__item_notifications .header__body:before {
    right: 97px;
  }
}
body .dir-rtl .header__item_notifications .header__body:before {
  transform: translateX(-1500%);
}
@media only screen and (max-width: 767px) {
  .header__item_notifications .header__body {
    right: -90px;
    width: 232px;
    top: calc(100% + 20px);
  }
}
.header__item_notifications .header__body .new_notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #23262F;
}
body.dark .header__item_notifications .header__body .new_notification {
  color: #FCFCFD;
}
.header__item_notifications .header__body .new_notification .left {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
}
.header__item_notifications .header__body .new_notification .read_link {
  font-weight: 600;
  color: #00ed7b;
  margin-left: 8px;
  cursor: pointer;
}
.header__item_notifications .header__body .new_notification .view_link {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 100;
  line-height: 21px;
  color: #00ed7b;
}
body .dir-rtl .header__item_notifications .header__body .new_notification .view_link svg {
  transform: rotateY(180deg);
  margin-right: 0.25rem;
}
body.dark .header__item_notifications .header__body .new_notification {
  border-color: rgba(255, 255, 255, 0.5);
}
.header__item_notifications .header__body .notif_nav {
  display: flex;
  align-items: center;
}
.header__item_notifications .header__body .notif_nav .nav__link {
  background: rgba(0, 0, 0, 0.02);
  font-size: 13px !important;
  font-weight: 300;
  line-height: 18.2px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.6);
}
body.dark .header__item_notifications .header__body .notif_nav .nav__link {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
}
.header__item_notifications .header__body .notif_nav .nav__link:active, .header__item_notifications .header__body .notif_nav .nav__link.nice-select.open, .header__item_notifications .header__body .notif_nav .nav__link:hover, .header__item_notifications .header__body .notif_nav .nav__link.active {
  background: rgba(0, 0, 0, 0.1);
  color: #23262F;
}
body.dark .header__item_notifications .header__body .notif_nav .nav__link:active, body.dark .header__item_notifications .header__body .notif_nav .nav__link.nice-select.open, body.dark .header__item_notifications .header__body .notif_nav .nav__link:hover, body.dark .header__item_notifications .header__body .notif_nav .nav__link.active {
  background: rgba(255, 255, 255, 0.15);
  color: #FCFCFD;
}
.header__item_notifications.active .header__body {
  transform: translate(-59%, -8px);
}
body .dir-rtl .header__item_notifications.active .header__body {
  transform: translate(59%, -8px);
}
.header__assets {
  background: rgba(0, 237, 123, 0.1);
  height: 35px;
  border-radius: 6px;
  padding: 0 10px;
  margin-right: 12px;
}
.header__assets .header__head {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  color: #00ed7b;
}
.header__assets .header__head .icon {
  width: 18px;
  height: 18px;
  fill: #00ed7b;
  transition: all 0.2s;
}
.header__item_assets .header__body {
  top: calc(100% + 18px);
  left: calc(100% - 150px);
  width: 300px;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0px 16px 64px -24px rgba(31, 47, 70, 0.15);
}
@media only screen and (max-width: 767px) {
  .header__item_assets .header__body {
    right: -90px;
    width: 232px;
    top: calc(100% + 20px);
  }
}
body .dir-rtl .header__item_assets .header__body {
  left: calc(-10% + 20px);
}
.header__item_assets .header__body:before {
  right: 8px;
}
body .dir-rtl .header__item_assets .header__body:before {
  transform: translateX(-1100%);
}
@media only screen and (max-width: 767px) {
  .header__item_assets .header__body:before {
    right: 97px;
  }
}
.header__item_assets .header__body .assets_balance {
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: rgb(234, 236, 239);
  border-radius: 10px;
}
body.dark .header__item_assets .header__body .assets_balance {
  background: rgba(255, 255, 255, 0.07);
}
.header__item_assets .header__body .assets_balance_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.header__item_assets .header__body .assets_balance_top .show {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 17.07px;
}
.header__item_assets .header__body .assets_balance_top .link {
  width: 22px;
  height: 22px;
}
.header__item_assets .header__body .assets_balance_top .link svg {
  width: 100%;
  height: 100%;
  fill: #23262F;
}
body.dark .header__item_assets .header__body .assets_balance_top .link svg {
  fill: #FCFCFD;
}
body .dir-rtl .header__item_assets .header__body .assets_balance_top .link svg {
  transform: rotateY(180deg);
}
.header__item_assets .header__body .assets_balance_top .link:hover svg {
  fill: #00ed7b;
}
.header__item_assets .header__body .assets_balance_top .view__asset {
  width: 18px;
  height: 18px;
  margin: 0 6px;
  cursor: pointer;
}
.header__item_assets .header__body .assets_balance_top .view__asset svg {
  width: 100%;
  height: 100%;
  fill: #23262F;
}
body.dark .header__item_assets .header__body .assets_balance_top .view__asset svg {
  fill: #FCFCFD;
}
.header__item_assets .header__body .assets_balance_top .view__asset:hover svg {
  fill: #00ed7b;
}
.header__item_assets .header__body .assets_balance_bottom {
  display: flex;
  flex-direction: column;
}
.header__item_assets .header__body .assets_balance_bottom .usdt {
  font-size: 18px;
  font-weight: 600;
  line-height: 17.07px;
  margin-bottom: 6px;
}
.header__item_assets .header__body .assets_balance_bottom .usd {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
}
.header__item_assets .header__body .assets_balance_bottom .hidden_total {
  height: 20px;
  font-size: 18px;
  font-weight: 600;
}
body.dark .header__item_assets .header__body .assets_balance_bottom .hidden_total {
  color: #FCFCFD;
}
.header__item_assets .header__body .assets__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}
.header__item_assets .header__body .assets__btns .deposite {
  margin-right: 0;
  width: 48%;
}
.header__item_assets .header__body .assets__btns .deposite svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
body .dir-rtl .header__item_assets .header__body .assets__btns .deposite svg {
  transform: rotateY(180deg);
  margin-right: 0px;
  margin-left: 6px;
}
.header__item_assets .header__body .assets__btns .deposite:hover {
  background: rgba(0, 237, 123, 0.1);
}
.header__item_assets .header__body .assets__btns .deposite:hover svg path {
  stroke: #00ed7b;
}
.header__item_assets .header__body .assets__btns .withdraw {
  margin-right: 0;
  width: 48%;
  background: none;
  box-shadow: 0 0 0 2px #00ed7b inset;
  color: #00ed7b;
  align-items: center;
}
.header__item_assets .header__body .assets__btns .withdraw:hover {
  background: rgba(0, 237, 123, 0.1);
  border: none;
}
.header__item_assets .header__body .assets__btns .withdraw svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
body .dir-rtl .header__item_assets .header__body .assets__btns .withdraw svg {
  transform: rotateY(180deg);
  margin-right: 0px;
  margin-left: 6px;
}
.header__item_assets .header__body .assets__body_links {
  display: flex;
  flex-direction: column;
}
.header__item_assets .header__body .assets__body_links .asset_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 6px;
  color: #23262F;
  font-size: 14px;
}
.header__item_assets .header__body .assets__body_links .asset_link svg {
  width: 22px;
  height: 22px;
  fill: #23262F;
}
body.dark .header__item_assets .header__body .assets__body_links .asset_link svg {
  fill: #FCFCFD;
}
body .dir-rtl .header__item_assets .header__body .assets__body_links .asset_link svg {
  transform: rotateY(180deg);
}
body.dark .header__item_assets .header__body .assets__body_links .asset_link {
  background: rgba(255, 255, 255, 0.07);
  color: #FCFCFD;
}
.header__item_assets .header__body .assets__body_links .asset_link:hover {
  color: #00ed7b;
}
.header__item_assets.active .header__body {
  transform: translate(-154%, -16px);
}
body .dir-rtl .header__item_assets.active .header__body {
  transform: translate(157%, -16px);
}
.header__orders {
  background: #00ed7b;
  height: 36px;
  border-radius: 6px;
  padding: 0 10px;
  margin-right: 12px;
}
body .dir-rtl .header__orders {
  margin-left: 12px;
}
.header__orders .header__head {
  display: flex;
  align-items: center;
  line-height: 35px;
  color: #FCFCFD;
}
.header__orders .header__head .icon {
  width: 18px;
  height: 18px;
  fill: #FCFCFD;
  transition: all 0.2s;
}
.header__item_orders .header__body {
  top: calc(100% + 18px);
  left: calc(100% - 150px);
  width: 300px;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0px 16px 64px -24px rgba(31, 47, 70, 0.15);
}
body .dir-rtl .header__item_orders .header__body {
  left: -145px;
}
@media only screen and (max-width: 767px) {
  .header__item_orders .header__body {
    right: -90px;
    width: 232px;
    top: calc(100% + 20px);
  }
}
.header__item_orders .header__body:before {
  right: 8px;
}
body .dir-rtl .header__item_orders .header__body:before {
  right: 270px;
}
@media only screen and (max-width: 767px) {
  .header__item_orders .header__body:before {
    right: 97px;
  }
}
.header__item_orders .header__body .orders__links {
  display: flex;
  flex-direction: column;
}
.header__item_orders .header__body .orders__links .order_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 6px;
  color: #23262F;
  font-size: 14px;
}
.header__item_orders .header__body .orders__links .order_link svg {
  width: 22px;
  height: 22px;
}
body .dir-rtl .header__item_orders .header__body .orders__links .order_link svg {
  transform: rotateY(180deg);
}
.header__item_orders .header__body .orders__links .order_link:not(:first-child) {
  margin-top: 10px;
}
body.dark .header__item_orders .header__body .orders__links .order_link {
  background: rgba(255, 255, 255, 0.05);
  color: #FCFCFD;
}
body.dark .header__item_orders .header__body .orders__links .order_link svg {
  fill: #FCFCFD;
}
.header__item_orders .header__body .orders__links .order_link:hover {
  color: #00ed7b;
}
.header__item_orders.active .header__body {
  transform: translate(-123%, -16px);
}
body .dir-rtl .header__item_orders.active .header__body {
  transform: translate(123%, -16px);
}
.header__item_user .header__body {
  top: calc(100% + 18px);
  left: 0;
  width: 300px;
  padding: 16px;
}
body .dir-rtl .header__item_user .header__body {
  right: 10%;
}
body .dir-rtl .header__item_user .header__body:before {
  transform: translateX(-1010%);
}
.header__item_user .header__body .user__top {
  display: flex;
  align-items: flex-start;
  padding: 24px 14px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 10px;
  margin-bottom: 10px;
}
.header__item_user .header__body .user__top .email {
  margin-bottom: 10px;
  margin-left: 6px;
}
.header__item_user .header__body .user__top .verify-status .kyc__verified {
  background: none;
  color: #0BA366;
}
.header__item_user .header__body .user__top .verify-status .kyc__reject {
  background: none;
  color: #bd2828;
}
.header__item_user .header__body .user__vip {
  display: flex;
  align-items: center;
  background: #00ed7b;
  color: #FCFCFD;
  padding: 14px;
  border-radius: 10px;
}
.header__item_user .header__body .user__vip svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
body .dir-rtl .header__item_user .header__body .user__vip svg {
  transform: rotateY(180deg);
  margin-right: 0;
  margin-left: 6px;
}
.header__item_user .header__body .user__vip .apply_vip {
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .header__item_user .header__body {
    right: 16px;
    left: 16px;
    width: auto;
    top: calc(100% + 10px);
  }
}
.header__item_user .header__body:before {
  right: 14px;
}
@media only screen and (max-width: 1023px) {
  .header__item_user .header__body:before {
    right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .header__item_user .header__body:before {
    right: 106px;
  }
}
.header__el {
  position: relative;
  display: flex;
  width: 100%;
  padding: 14px;
  background: rgba(0, 0, 0, 0.02);
  color: #23262F;
  transition: color 0.2s;
  border-radius: 6px;
  margin-top: 10px;
}
body.dark .header__el {
  background: rgba(255, 255, 255, 0.05);
  color: #FCFCFD;
}
.header__el:hover {
  color: #00ED7B;
}
.header__item_user.active .header__body {
  transform: translate(-85%, -8px);
}
body .dir-rtl .header__item_user.active .header__body {
  transform: translate(85%, -8px);
}
.header__link {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-size: 14px;
  line-height: 1.1428571429;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: #353945;
  transition: color 0.2s;
}
body .dir-rtl .header__link {
  font-family: "Vazirmatn", sans-serif;
}
@media only screen and (max-width: 767px) {
  .header__link {
    height: 56px;
    padding: 0 16px;
    border-radius: 6px;
  }
  body .dir-rtl .header__link {
    font-family: "Vazirmatn", sans-serif;
    font-size: 16px;
    font-weight: 500;
  }
}
body.dark .header__link {
  color: #777E90;
}
@media only screen and (max-width: 767px) {
  body.dark .header__link {
    color: #FCFCFD;
  }
}
.header__link .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: #777E90;
  transition: fill 0.2s;
}
@media only screen and (max-width: 767px) {
  .header__link .icon {
    margin-right: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .header__link:hover, .header__link.active {
    background: #F4F5F6;
  }
}
.header__link:hover .icon, .header__link.active .icon {
  fill: #353945;
}
@media only screen and (max-width: 767px) {
  .header__link:hover .icon, .header__link.active .icon {
    fill: #777E90;
  }
}
body.dark .header__link:hover, body.dark .header__link.active {
  color: #FCFCFD;
}
body.dark .header__link:hover .icon, body.dark .header__link.active .icon {
  fill: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  body.dark .header__link:hover, body.dark .header__link.active {
    background: #353945;
  }
  body.dark .header__link:hover .icon, body.dark .header__link.active .icon {
    fill: #FCFCFD;
  }
}
.header__link:not(:last-child) {
  border-bottom: 1px solid #E6E8EC;
}
@media only screen and (max-width: 767px) {
  .header__link:not(:last-child) {
    border: none;
  }
}
body.dark .header__link:not(:last-child) {
  border-color: #353945;
}
.header__row {
  display: flex;
  margin: 0 -24px;
}
.header__col {
  flex: 0 0 50%;
  padding: 0 24px;
}
.header__col:first-child {
  border-right: 1px solid #E6E8EC;
}
body.dark .header__col:first-child {
  border-color: #353945;
}
.header__category {
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 500;
  color: #777E90;
}
body .dir-rtl .header__category {
  text-align: right;
}
.header__menu {
  display: flex;
  flex-direction: column;
}
body .dir-rtl .header__menu {
  font-family: "Vazirmatn", sans-serif;
}
@media only screen and (max-width: 1023px) {
  .header__menu {
    width: 100%;
  }
}
.header__menu_item {
  display: flex;
  align-items: center;
  background: rgb(250, 250, 250);
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 16px 12px;
  margin-bottom: 12px;
}
body .dir-rtl .header__menu_item {
  font-family: "Vazirmatn", sans-serif;
}
body.dark .header__menu_item {
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .header__menu_item {
    width: 100%;
    padding: 8px;
  }
}
.header__menu_item .icon {
  width: 100%;
  height: 100%;
  fill: #777E90;
  transition: all 0.2s;
}
@media only screen and (max-width: 1023px) {
  .header__menu_item .icon {
    width: 22px;
    height: 22px;
    margin-left: auto;
  }
}
body .dir-rtl .header__menu_item .icon {
  transform: rotateY(180deg);
}
.header__menu_item:hover, .header__menu_item.active {
  background: transparent;
  color: #00ed7b;
}
.header__menu_item:hover .icon, .header__menu_item.active .icon {
  fill: #00ed7b;
}
body.dark .header__menu_item:hover, body.dark .header__menu_item.active {
  background: rgba(0, 237, 123, 0.1);
  color: #FCFCFD;
}
body.dark .header__menu_item:hover .icon, body.dark .header__menu_item.active .icon {
  fill: #FCFCFD;
}
.header__menu_item.disabled {
  background: #dbe7e2;
}
.header__menu_item.disabled:hover {
  background: #dbe7e2;
  color: #121314;
}
body.dark .header__menu_item.disabled:hover {
  color: #fbfbfb;
}
.header__more {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header__more .left {
  width: 30%;
}
.header__more .right {
  width: 68%;
}
.header__more .right_in {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.header__more .right_in .left-menu {
  width: 50%;
  margin-right: 8px;
}
@media only screen and (max-width: 1023px) {
  .header__more .right_in .left-menu {
    width: 100%;
  }
}
body .dir-rtl .header__more .right_in .left-menu {
  margin-left: 8px;
  margin-right: 0px;
}
.header__more .right_in .right-menu {
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .header__more .right_in .right-menu {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .header__more .right_in {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .header__more {
    display: block;
    width: 100%;
  }
  .header__more .header__menu {
    width: auto;
    padding-bottom: 0px;
  }
}
.header__language, .header__currency {
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 36px;
  color: #181617;
  cursor: pointer;
  transition: color 0.2s;
}
body.dark .header__language, body.dark .header__currency {
  color: #FCFCFD;
}
body .dir-rtl .header__language, body .dir-rtl .header__currency {
  font-family: "Vazirmatn", sans-serif;
}
.header__language {
  display: flex;
  align-items: center;
  justify-content: start;
  border-radius: 6px;
}
.header__language .language_name {
  margin: 0 8px;
}
.header__language:not(:last-child) {
  margin-bottom: 8px;
}
.header__language:hover, .header__language.active {
  background: rgb(234, 236, 239);
}
body.dark .header__language:hover, body.dark .header__language.active {
  background: rgba(255, 255, 255, 0.15);
}
.header__currency {
  position: relative;
  padding-left: 22px;
}
.header__currency:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #E6E8EC;
  transition: background 0.2s;
}
body.dark .header__currency:before {
  background: #353945;
}
body .dir-rtl .header__currency {
  padding-left: 0px;
  padding-right: 28px;
}
body .dir-rtl .header__currency:before {
  left: 0px;
  right: 6px;
}
.header__currency:hover, .header__currency.active {
  background: rgb(234, 236, 239);
  border-radius: 6px;
}
body.dark .header__currency:hover, body.dark .header__currency.active {
  background: rgba(255, 255, 255, 0.15);
}
.header__currency:hover:before, .header__currency.active:before {
  background: #23262F;
}
body.dark .header__currency:hover:before, body.dark .header__currency.active:before {
  background: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .header__currency {
    margin-bottom: 8px;
  }
}
.header__flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 4px;
}
.header__flag img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.header__item_notifications .header__title, .header__item_settings .header__title {
  margin-bottom: 4px;
  font-size: 16px !important;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
body .dir-rtl .header__item_notifications .header__title, body .dir-rtl .header__item_settings .header__title {
  font-size: 16px !important;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .header__item_notifications .header__title, .header__item_settings .header__title {
    font-size: 12px !important;
  }
}
.header__notification {
  position: relative;
  display: block;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.02);
  color: rgba(35, 38, 47, 0.5803921569);
  transition: color 0.2s;
  cursor: pointer;
}
body.dark .header__notification {
  background: rgba(255, 255, 255, 0.05);
  color: #FCFCFD;
}
.header__notification:hover {
  color: #00ed7b;
}
body.dark .header__notification:hover {
  color: #00ed7b;
}
.header__notification_new {
  background: rgba(0, 0, 0, 0.1);
  color: #23262F;
}
body.dark .header__notification_new {
  background: rgba(255, 255, 255, 0.15);
}
.header__subtitle {
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
}
.header__date {
  font-size: 10px;
  line-height: 1.6;
  font-weight: 500;
  color: #777E90;
}
.header__item_notifications .header__btns {
  display: flex !important;
  margin: 24px 0 0;
  justify-content: space-around;
}
.header__item_notifications .header__btns .header__button {
  flex: 0 0 calc(50% - 8px);
  width: calc(50% - 8px);
  margin: 0 !important;
}
.header__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
body .dir-rtl .header__icon {
  margin-right: 0;
  margin-left: 8px;
}
.header__icon .icon {
  width: 20px;
  height: 20px;
  fill: #777E90;
}
.header__svg_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin: 8px 4px;
}
@media only screen and (max-width: 1023px) {
  .header__svg_icon {
    margin: 0 4px;
  }
}
body .dir-rtl .header__svg_icon {
  margin-right: 0px;
  margin-left: 8px;
}
.header__details {
  flex-grow: 1;
  margin-left: 10px;
}
.header__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -4px;
}
.header__item_user .header__title {
  font-size: 14px;
  line-height: 1.1428571429;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}
body .dir-rtl .header__item_user .header__title {
  font-family: "Vazirmatn", sans-serif;
}
.header__item_dropdown .header__title {
  font-size: 14px;
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .header__item_dropdown .header__title {
    font-size: 12px;
  }
}
.header__content {
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 18px;
}
body.dark .header__content {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1023px) {
  .header__content {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .header__content.qrCode {
    display: block;
  }
}
.header__control {
  display: none;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .header__control .header__button {
    display: none;
  }
}
.header__control_mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header__control_mobile {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
  }
}
.header__control_mobile .seprator {
  border-top: 0.5px solid #00ED7B;
  margin: 0 18px;
}
.header__control_mobile .control {
  padding: 8px 0;
}
.header__control_mobile .customize {
  padding: 8px 0;
}
.header__control_mobile .customize__item {
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-size: 13px;
  line-height: 36px;
  font-weight: 500;
  color: #181617;
  transition: all 0.2s;
}
body.dark .header__control_mobile .customize__item {
  color: #FCFCFD;
}
body .dir-rtl .header__control_mobile .customize__item {
  font-family: "Vazirmatn", sans-serif;
}
.header__control_mobile .customize__item:hover {
  color: #00ed7b !important;
}
.header__control_mobile .customize__lang {
  position: relative;
}
.header__control_mobile .customize__lang .header__language_body {
  display: none;
}
.header__control_mobile .customize__lang.active .header__language_body {
  display: flex;
  margin: 6px 24px;
}
.header__control_mobile .customize .icon {
  width: 22px;
  height: 22px;
  transition: all 0.2s;
  margin-left: auto;
}
.header__control_mobile .customize .icon:hover, .header__control_mobile .customize .icon.active {
  color: #00ed7b !important;
  fill: #00ed7b;
}
body.dark .header__control_mobile .customize .icon {
  fill: #FCFCFD;
}
.header__activity, .header__control .header__button, .header__control > .theme {
  margin-right: 16px;
}
@media only screen and (max-width: 1179px) {
  .header__activity, .header__control .header__button, .header__control > .theme {
    margin-right: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__activity, .header__control .header__button, .header__control > .theme {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .header__activity, .header__control .header__button, .header__control > .theme {
    margin-right: 6px;
  }
}
body .dir-rtl .header__activity, body .dir-rtl .header__control .header__button, body .dir-rtl .header__control > .theme {
  margin-left: 20px;
  margin-right: 0;
}
@media only screen and (max-width: 1179px) {
  body .dir-rtl .header__activity, body .dir-rtl .header__control .header__button, body .dir-rtl .header__control > .theme {
    margin-left: 16px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .header__activity, body .dir-rtl .header__control .header__button, body .dir-rtl .header__control > .theme {
    margin-left: 8px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .header__activity, body .dir-rtl .header__control .header__button, body .dir-rtl .header__control > .theme {
    margin-left: 12px;
    margin-right: 0;
  }
}
.header__activity {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .header__activity {
    margin-right: 4px;
  }
}
.header__activity .icon {
  width: 24px;
  height: 24px;
  fill: #777E90;
  transition: fill 0.2s;
}
.header__activity:hover .icon, .header__activity.active .icon {
  fill: #23262F;
}
body.dark .header__activity:hover .icon, body.dark .header__activity.active .icon {
  fill: #FCFCFD;
}
.header__btns {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .header__btns {
    display: none;
  }
}
.header__btns .sign-up {
  margin-left: 12px;
}
body .dir-rtl .header__btns .sign-up {
  margin-left: 0;
  margin-right: 12px;
}
.header__burger {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header__burger {
    display: block;
    position: relative;
    z-index: 15;
    width: 32px;
    height: 32px;
    background: rgba(0, 237, 123, 0.1);
    border-radius: 50%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .header__burger:before, .header__burger:after {
    content: "";
    position: absolute;
    top: 16px;
    left: 6px;
    width: 20px;
    height: 2px;
    background: #777E90;
    border-radius: 2px;
    transition: transform 0.2s;
  }
  .header__burger:before {
    transform: translateY(-4px);
  }
  .header__burger:after {
    transform: translateY(3px);
  }
  .header__burger.active:before {
    transform: translateY(0) rotate(-45deg);
  }
  .header__burger.active:after {
    transform: translateY(0) rotate(45deg);
  }
}
.header_wide {
  box-shadow: none;
}
.header_wide .header__center {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .header_wide .header__center {
    padding: 0 12px;
  }
}
.header.registered .header__btns {
  display: none;
}
.header.registered .header__item_notifications .header__btns .header__button {
  display: flex !important;
}
@media only screen and (max-width: 1023px) {
  .header.registered .header__item_notifications .header__btns .header__button {
    display: flex;
  }
}
.header.registered .header__control {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .header.registered .header__wrap > .header__button {
    display: flex;
  }
}
.header__list {
  height: 333px;
  margin-top: 10px;
  overflow-y: scroll;
}
.header__list::-webkit-scrollbar {
  width: 5px;
}
.header__list::-webkit-scrollbar-thumb {
  background: rgb(94, 115, 104);
  border-radius: 10px;
}
.header__list::-webkit-scrollbar-track {
  background: transparent;
  padding-right: 2px;
}
.header__arrow {
  width: 22px;
  height: 22px;
}
.header__qrcode {
  margin: 0 auto 10px;
}
.header__qrcode img {
  margin: 0 auto;
}
.header__button .link {
  width: 100%;
  margin-top: 10px;
}
.header__mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header__mobile {
    display: flex;
    align-items: center;
  }
}
.header__mobile__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 50%;
  margin: 0 12px;
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .header__mobile__item svg {
    margin-right: 6px;
  }
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .header__mobile__item svg {
    margin-right: 6px;
  }
}

.theme {
  width: 100%;
}
.theme__desktop {
  display: flex;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 1023px) {
  .theme__desktop {
    display: none;
  }
}
.theme__mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .theme__mobile {
    display: flex;
    margin: 12px 0;
    padding: 12px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.02);
    border: 0.5px solid rgba(0, 0, 0, 0.2);
  }
  body.dark .theme__mobile {
    background: rgba(255, 255, 255, 0.02);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
  }
}
.theme__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.theme__input:checked + .theme__inner .theme__box {
  background: #37ffbc;
}
.theme__input:checked + .theme__inner .theme__box:before {
  transform: translate(20px, -50%);
  background: #FCFCFD;
}
.theme__inner {
  position: relative;
  display: inline-block;
  transition: all 0.2s;
}
.theme__box {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  background: #E6E8EC;
  border-radius: 12px;
  transition: all 0.2s;
}
body.dark .theme__box {
  background: #353945;
}
.theme__box:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #37ffbc;
  transition: all 0.2s;
}
.theme__icon {
  width: 20px;
  height: 20px;
}
.theme__icon .icon {
  width: 20px;
  height: 20px;
}
body.dark .theme__icon .icon {
  display: none;
}
.theme__icon .icon:nth-child(2) {
  display: none;
}
body.dark .theme__icon .icon:nth-child(2) {
  display: flex;
  fill: #fff;
}
@media only screen and (max-width: 1023px) {
  .theme__icon .icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
  }
}
.theme__icon:hover .icon {
  fill: #23262F;
}
body.dark .theme__icon:hover .icon {
  fill: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .theme__icon {
    width: 100%;
  }
}

.main {
  position: relative;
  padding-top: 75px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .main {
    padding-top: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .main {
    padding-top: 33px;
  }
}
.main__wrap {
  position: relative;
  z-index: 3;
  max-width: 585px;
}
@media only screen and (max-width: 1179px) {
  .main__wrap {
    max-width: 525px;
  }
}
@media only screen and (max-width: 1023px) {
  .main__wrap {
    max-width: 343px;
  }
}
@media only screen and (max-width: 767px) {
  .main__wrap {
    position: static;
    margin-top: 252px;
    max-width: 464px;
    text-align: center;
  }
}
@media only screen and (max-width: 321px) {
  .main__wrap {
    max-width: 292px;
  }
}
.main__title {
  margin: 20px 0;
  font-size: 40px;
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .main__title {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
  }
}
@media only screen and (max-width: 767px) {
  .main__title {
    font-size: 20px;
    margin: 40px 0 10px;
  }
}
.main__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 28.8px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}
body .dir-rtl .main__text {
  font-family: "Vazirmatn", sans-serif;
}
@media only screen and (max-width: 1023px) {
  .main__text {
    font-size: 13px;
    line-height: unset;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .main__text {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
body.dark .main__text {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 767px) {
  .main__button {
    padding: 0 22px;
  }
}
@media only screen and (max-width: 1179px) {
  .main__button {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 474px) {
  .main__button {
    font-size: 12px;
  }
}
.main__flash {
  transform: rotateY(180deg);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-left: 5px;
}
body .dir-rtl .main__flash {
  transform: rotateY(0deg);
  margin-right: 5px;
  margin-left: 0px;
}
@media only screen and (max-width: 1179px) {
  .main__scroll.scroll {
    display: none;
  }
}
.main__bg {
  position: absolute;
  top: 55px;
  left: calc(50% + 0px);
  width: 700px;
  height: 350px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .main__bg {
    height: 300px;
    width: 400px;
    margin-right: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .main__bg {
    left: 0;
    height: 250px;
    top: 10px;
  }
}
body .dir-rtl .main__bg {
  left: 0;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .main__bg {
    height: 250px;
    margin-top: 20px;
  }
}
.main__logo {
  position: absolute;
  top: 53px;
  left: 32%;
  width: 222px;
  height: 69px;
  z-index: 99;
}
@media only screen and (max-width: 1023px) {
  .main__logo {
    top: 4px;
    left: 24%;
    width: 200px;
    height: 60px;
  }
}
.main__cards {
  display: flex;
  padding: 18px 10px;
  border-radius: 24px;
}
@media only screen and (max-width: 1023px) {
  .main__cards {
    margin: 0 -20px;
  }
}
@media only screen and (max-width: 767px) {
  .main__cards {
    display: block;
    margin: -32px -16px 0;
    padding: 24px;
  }
}
.main__card {
  display: flex;
  justify-content: space-around;
  background: rgba(0, 237, 123, 0.1);
  width: 272px;
  margin: 0 16px;
  padding: 14px 10px;
  border-radius: 6px;
  color: #FCFCFD;
}
@media only screen and (max-width: 1179px) {
  .main__card {
    padding: 24px 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .main__card {
    padding: 16px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .main__card {
    margin-left: 10px;
  }
}
body.dark .main__card {
  color: #FCFCFD;
}
.main__card:hover {
  box-shadow: 0px 64px 64px -48px rgba(15, 15, 15, 0.1);
  background: #353945;
}
body.dark .main__card:hover {
  background: #353945;
}
.main__icon {
  display: flex;
  align-items: center;
  height: 50px;
  width: 50px;
  margin-right: 10px;
}
body .dir-rtl .main__icon {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .main__icon {
    flex-shrink: 0;
  }
}
.main__icon img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.main__line {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4px;
  width: 100%;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
}
.main__line .price {
  margin-bottom: 0;
}
.main__subtitle {
  margin-right: auto;
}
body .dir-rtl .main__subtitle {
  margin-right: 0;
  margin-left: auto;
}
.main__positive, .main__negative {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #FCFCFD;
}
.main__positive {
  background: rgb(0, 177, 105);
}
.main__negative {
  background: #FF6838;
}
.main__price {
  font-size: 20px !important;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.main__money {
  font-size: 11px;
  line-height: 1.6666666667;
}
.main__login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  margin-bottom: 30px;
}
.main__login input {
  width: 333px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20.8px;
  color: rgba(0, 0, 0, 0.5);
  padding: 13px 10px;
  background: transparent;
  transition: all 0.2s;
}
body.dark .main__login input {
  color: #FCFCFD;
}
.main__login input::-moz-placeholder {
  font-size: 14px;
  font-weight: 100;
}
.main__login input::placeholder {
  font-size: 14px;
  font-weight: 100;
}
body.dark .main__login input::-moz-placeholder {
  color: #FCFCFD;
}
body.dark .main__login input::placeholder {
  color: #FCFCFD;
}
.main__login input:focus {
  border: none;
  border-color: unset;
  --tw-ring-color: unset;
  box-shadow: unset;
}
@media only screen and (max-width: 1023px) {
  .main__login input {
    width: auto;
  }
}
body.dark .main__login {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
@media only screen and (max-width: 1023px) {
  .main__login {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .main__login {
    width: 100%;
    margin-bottom: 12px;
  }
}
.main__download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .main__download {
    display: flex;
    flex-direction: row;
    align-items: left;
    padding-bottom: 40px;
    width: 100%;
  }
}
.main__download .app {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main__download .orConnect {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main__download_text {
  font-size: 13px;
  font-weight: 300;
  line-height: 28.8px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 4px;
}
body.dark .main__download_text {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1023px) {
  .main__download_text {
    width: 150px;
    justify-content: unset;
  }
}
@media only screen and (max-width: 767px) {
  .main__download_text {
    font-size: 11px;
    width: unset;
  }
}
.main__download_button {
  width: 46px;
  height: 46px;
  margin-right: 12px;
  background: rgb(234, 236, 239);
  border-radius: 6px;
  padding: 10px;
}
.main__download_button svg {
  fill: #23262F;
}
body.dark .main__download_button {
  background: rgba(234, 236, 239, 0.1);
}
body.dark .main__download_button svg {
  fill: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 1023px) {
  .main__download_button {
    margin-right: 12px;
  }
}
body .dir-rtl .main__download_button {
  margin: 10px;
}
.main__list {
  display: flex;
  margin: 20px 0;
  overflow: auto;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.main__list::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .main__list {
    margin: 0px -40px;
  }
  .main__list:before, .main__list:after {
    content: "";
    flex-shrink: 0;
    width: 40px;
    height: 1px;
  }
}
.main__item {
  position: relative;
  flex: 0 0 calc(44% - 25px);
  width: calc(44% - 25px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 10px;
  padding: 0;
  border-radius: 6px;
}
.main__image {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .main__image {
    height: 8rem;
  }
}
.main__slider {
  padding: 0px 8px;
}
.main__slide {
  padding: 0px 8px;
}
.main__slide .slick-next:before {
  color: rgba(172, 172, 172, 0.7411764706) !important;
}
.main__slide .slick-prev:before {
  color: rgba(172, 172, 172, 0.7411764706) !important;
}
@media only screen and (max-width: 767px) {
  .main__slide {
    margin-top: -70px;
  }
}
.main__details {
  display: flex;
  flex-direction: column;
  margin: 0 24px;
}
.main__details_title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  color: #FCFCFD;
}
.main__details_subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #23262F;
}

.scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: none;
  overflow: hidden;
  border: 2px solid #E6E8EC;
  transition: border-color 0.2s;
}
.scroll .icon {
  width: 24px;
  height: 24px;
  fill: #B1B5C3;
  transition: fill 0.2s;
}
.scroll:hover {
  border-color: #23262F;
}
.scroll:hover .icon {
  fill: #23262F;
}
body.dark .scroll {
  border-color: #353945;
}
body.dark .scroll:hover {
  border-color: #FCFCFD;
}
body.dark .scroll:hover .icon {
  fill: #FCFCFD;
}
.scroll__line {
  display: flex;
  flex-direction: column;
  transform: translateY(-23px);
  animation: arrowsDown ease-out 1.4s infinite;
}
.scroll__line .icon:not(:last-child) {
  margin-bottom: 24px;
}

@keyframes arrowsDown {
  80% {
    transform: translateY(23px);
  }
  100% {
    transform: translateY(23px);
  }
}
.learn {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .learn {
    padding-bottom: 80px;
  }
}
.learn__anchor {
  top: -30px;
}
.learn__head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1179px) {
  .learn__head {
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .learn__head {
    display: block;
  }
}
.learn__head .learn__button {
  flex-shrink: 0;
  margin-left: 40px;
}
@media only screen and (max-width: 767px) {
  .learn__head .learn__button {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;
    width: calc(100% - 64px);
    margin: 0;
  }
}
.learn__wrap {
  flex-grow: 1;
}
.learn__title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .learn__title {
    margin-bottom: 24px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .learn .nav {
    margin: 0 -32px;
    overflow: auto;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .learn .nav::-webkit-scrollbar {
    display: none;
  }
  .learn .nav:before, .learn .nav:after {
    content: "";
    flex-shrink: 0;
    width: 32px;
    height: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .learn .nav__link {
    flex-shrink: 0;
  }
}
.learn .nav__link:not(:last-child) {
  margin-right: 24px;
}
@media only screen and (max-width: 767px) {
  .learn .nav__link:not(:last-child) {
    margin-right: 20px;
  }
}
.learn__wrapper {
  margin: -32px -18px 0;
}
@media only screen and (max-width: 1179px) {
  .learn__wrapper {
    margin: 0 -16px;
  }
}
.learn__wrapper:after {
  content: " ";
  display: table;
  clear: both;
}
@media only screen and (max-width: 1179px) {
  .learn__wrapper:after {
    display: none;
  }
}
.learn__item {
  display: block;
  width: calc(50% - 36px);
  margin: 32px 18px 0;
  float: right;
  color: #23262F;
}
@media only screen and (max-width: 1179px) {
  .learn__item {
    float: left;
    width: 100%;
    margin: 0;
  }
}
body.dark .learn__item {
  color: #FCFCFD;
}
.learn__item:hover .learn__preview img {
  transform: scale(1.1);
}
.learn__item:hover .learn__subtitle {
  color: #37ffbc;
}
.learn__item:first-child {
  float: left;
}
@media only screen and (max-width: 1179px) {
  .learn__item:first-child {
    float: left;
  }
}
.learn__item:first-child .learn__preview {
  margin-bottom: 40px;
  border-radius: 20px;
}
@media only screen and (max-width: 1179px) {
  .learn__item:first-child .learn__preview {
    margin-bottom: 24px;
    border-radius: 16px;
  }
}
.learn__item:first-child .learn__subtitle {
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
body .dir-rtl .learn__item:first-child .learn__subtitle {
  font-family: "Vazirmatn", sans-serif;
}
@media only screen and (max-width: 1179px) {
  .learn__item:first-child .learn__subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) {
  .learn__item:first-child .learn__subtitle {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
.learn__item:first-child .learn__content {
  font-size: 16px;
  line-height: 1.5;
}
@media only screen and (max-width: 1179px) {
  .learn__item:first-child .learn__content {
    font-size: 14px;
  }
}
.learn__item:not(:first-child) {
  display: flex;
  flex-direction: row-reverse;
  padding-left: 60px;
}
@media only screen and (max-width: 1179px) {
  .learn__item:not(:first-child) {
    display: block;
    padding: 0;
  }
}
.learn__item:not(:first-child) .learn__preview {
  flex: 0 0 45.65%;
  border-radius: 16px;
}
.learn__item:not(:first-child) .learn__subtitle {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (max-width: 1179px) {
  .learn__item:not(:first-child) .learn__subtitle {
    font-size: 24px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .learn__item:not(:first-child) .learn__subtitle {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
.learn__item:not(:first-child) .learn__content {
  margin-bottom: auto;
}
.learn__preview {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1179px) {
  .learn__preview {
    margin-bottom: 24px;
    border-radius: 16px;
  }
  .learn__preview:before {
    content: "";
    display: block;
    padding-bottom: 77%;
  }
}
.learn__preview img {
  width: 100%;
  transition: transform 1s;
}
@media only screen and (max-width: 1179px) {
  .learn__preview img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.learn__line {
  display: flex;
}
.learn__line .learn__button {
  flex-shrink: 0;
  margin-left: 32px;
}
@media only screen and (max-width: 1179px) {
  .learn__line .learn__button {
    display: none;
  }
}
.learn__subtitle {
  transition: color 0.2s;
}
@media only screen and (max-width: 1179px) {
  .learn__subtitle {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .learn__subtitle {
    margin-bottom: 8px;
  }
}
.learn__content {
  color: #777E90;
}
.learn__details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-right: 16px;
}
@media only screen and (max-width: 1179px) {
  .learn__details {
    display: block;
    padding: 0;
  }
}
.learn__date {
  margin-top: 24px;
  color: #777E90;
}
@media only screen and (max-width: 1179px) {
  .learn__date {
    display: none;
  }
}
@media only screen and (max-width: 1179px) {
  .learn__slider {
    padding-bottom: 72px;
    visibility: hidden;
  }
  .learn__slider.slick-initialized {
    visibility: visible;
  }
}
.learn .slick-list {
  overflow: visible;
}
.learn .slick-slide {
  padding: 0 16px;
  opacity: 0;
  transition: opacity 0.4s;
}
.learn .slick-slide.slick-active {
  opacity: 1;
}
.learn .slick-arrow {
  bottom: 0;
}
.learn .slick-prev {
  left: 16px;
}
@media only screen and (max-width: 767px) {
  .learn .slick-prev {
    left: calc(50% - 48px);
  }
}
.learn .slick-next {
  left: 64px;
}
@media only screen and (max-width: 767px) {
  .learn .slick-next {
    left: auto;
    right: calc(50% - 48px);
  }
}

.nav {
  display: flex;
}
.nav__link {
  display: flex;
  width: -moz-fit-content !important;
  width: fit-content !important;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.0509803922);
  font-size: 14px;
  line-height: 1.1428571429;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  color: black;
  transition: all 0.2s;
  align-items: end;
}
body .dir-rtl .nav__link {
  font-family: "Vazirmatn", sans-serif;
}
body.dark .nav__link {
  background: rgba(255, 255, 255, 0.0509803922);
  color: white;
}
.nav__link .icon {
  width: 16px;
  height: 16px;
  fill: #777E90;
  transition: fill 0.2s;
}
.nav__link:hover {
  color: #353945;
}
.nav__link:hover .icon {
  fill: #353945;
}
body.dark .nav__link:hover {
  color: #E6E8EC;
}
body.dark .nav__link:hover .icon {
  fill: #E6E8EC;
}
.nav__link.active {
  background: #E6E8EC;
  color: #00ed7b;
}
.nav__link.active .icon {
  fill: #FCFCFD;
}
body.dark .nav__link.active {
  background: #353945;
  color: #00ed7b;
}
body.dark .nav__link.active .icon {
  fill: #FCFCFD;
}
.nav__link:not(:last-child) {
  margin-right: 8px;
}
body .dir-rtl .nav__link:not(:last-child) {
  margin-right: 0;
  margin-left: 8px;
}

@media only screen and (max-width: 767px) {
  .trend {
    position: relative;
    padding-bottom: 85px;
    margin-bottom: 0;
  }
}
.trend__border {
  box-shadow: 0 0 0 2px rgba(1, 188, 141, 0.4) inset;
  border-radius: 6px;
  margin-top: 14px;
}
body.dark .trend__border {
  box-shadow: 0 0 0 2px rgba(1, 188, 141, 0.4) inset;
}
.trend__line {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .trend__line {
    flex-direction: column;
    margin-bottom: 22px;
  }
}
.trend__line .trend__button {
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(1, 188, 141, 0.4) inset;
}
@media only screen and (max-width: 767px) {
  .trend__line .trend__button {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;
    width: calc(100% - 64px);
    margin: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 321px) {
  .trend__line .trend__button {
    left: 16px;
    width: calc(100% - 88px);
  }
}
.trend__line_left {
  display: flex;
  flex-direction: column;
}
.trend__line_right {
  width: 20%;
}
@media only screen and (max-width: 1023px) {
  .trend__line_right {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .trend__line_right {
    width: 100%;
    margin-top: 12px;
  }
}
.trend__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 31.2px;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1023px) {
  .trend__title {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .trend__title {
    line-height: 24px;
  }
}
.trend__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 28.8px;
}
body.dark .trend__text {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1023px) {
  .trend__text {
    font-size: 12px;
    line-height: unset;
  }
}
@media only screen and (max-width: 767px) {
  .trend__text {
    font-size: 11px;
  }
}
.trend .nav {
  margin: 15px 10px 0;
}
.trend .nav__link {
  width: 133px;
  justify-content: center;
  padding: 10px 20px;
  align-items: center;
  font-size: 14px !important;
}
.trend .nav__link.active {
  border-bottom: 1px solid rgb(0, 0, 0);
  background: rgb(234, 236, 239);
  border-radius: 0;
  color: #23262F;
}
body.dark .trend .nav__link.active {
  color: #FCFCFD;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid #ffffff;
}
@media only screen and (max-width: 1023px) {
  .trend .nav__link {
    width: 113px;
    padding: 10px 15px;
    font-size: 12px !important;
  }
}
.trend .select {
  display: none;
}
@media only screen and (max-width: 767px) {
  .trend .select {
    display: block;
    margin-bottom: 32px;
  }
}
.trend__link {
  color: #00ed7b;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: #00ed7b;
}
.trend__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .trend__container {
    overflow-x: scroll;
  }
  .trend__container::-webkit-scrollbar {
    width: 5px;
    height: 3px;
  }
  .trend__container::-webkit-scrollbar-thumb {
    background: rgb(94, 102, 115);
    border-radius: 10px;
  }
  .trend__container::-webkit-scrollbar-track {
    background: transparent;
  }
}
.trend__left {
  width: 61%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
body.dark .trend__left {
  background: rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .trend__left {
    width: 100%;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .trend__left {
    margin-right: 0;
    margin-left: 30px;
  }
}
.trend__right {
  width: 37%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
body.dark .trend__right {
  background: rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .trend__right {
    width: 100%;
  }
}
.trend__table {
  display: table;
  width: 100%;
  padding: 0 3px;
}
@media only screen and (max-width: 767px) {
  .trend__table {
    padding: 0 12px 12px;
  }
}
@media only screen and (max-width: 321px) {
  .trend__table {
    width: 85%;
    padding: 0 6px;
  }
}
.trend__row {
  display: table-row;
  color: #23262F;
}
.trend__row:first-child .trend__col {
  padding: 20px 16px;
  vertical-align: middle;
  font-size: 13px;
  line-height: 24px;
  font-weight: 500;
  border-bottom: 1px solid #E6E8EC;
}
@media only screen and (max-width: 1023px) {
  .trend__row:first-child .trend__col {
    padding: 16px 2px 10px;
    font-size: 11px;
  }
  .trend__row:first-child .trend__col:first-child {
    padding-left: 10px;
  }
  .trend__row:first-child .trend__col:last-child {
    padding-right: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .trend__row:first-child .trend__col {
    padding: 8px;
  }
}
@media only screen and (max-width: 639px) {
  .trend__row:first-child .trend__col {
    font-size: 12px;
  }
}
body.dark .trend__row:first-child .trend__col {
  border-color: #353945;
}
.trend__row:not(:first-child) {
  border-radius: 6px;
  transition: background 0.2s;
}
.trend__row:not(:first-child) .trend__col {
  vertical-align: middle;
  font-size: 13px;
  line-height: 24px;
  font-weight: 500;
}
body .dir-rtl .trend__row:not(:first-child) .trend__col {
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  .trend__row:not(:first-child) .trend__col {
    font-size: 11px;
  }
}
.trend__row:not(:first-child) .trend__col:first-child {
  border-radius: 6px 0 0 6px;
  color: #777E90;
}
@media only screen and (max-width: 1023px) {
  .trend__row:not(:first-child) .trend__col:first-child {
    border-radius: 0;
  }
}
body .dir-rtl .trend__row:not(:first-child) .trend__col:first-child {
  border-radius: 0 6px 6px 0;
}
.trend__row:not(:first-child) .trend__col:last-child {
  border-radius: 0 6px 6px 0;
}
@media only screen and (max-width: 1023px) {
  .trend__row:not(:first-child) .trend__col:last-child {
    border-radius: 0;
  }
}
body .dir-rtl .trend__row:not(:first-child) .trend__col:last-child {
  border-radius: 6px 0 0 6px;
  text-align: left;
}
.trend__row:not(:first-child):hover {
  background: rgb(234, 236, 239);
}
@media only screen and (max-width: 1023px) {
  .trend__row:not(:first-child):hover {
    background: none;
  }
}
body.dark .trend__row:not(:first-child):hover {
  background: #23262F;
}
.trend__row .trend__col:last-child {
  text-align: end;
}
@media only screen and (max-width: 767px) {
  .trend__row .trend__col:last-child {
    display: none;
  }
}
.trend__box {
  display: table-row;
  color: #23262F;
  border-radius: 6px;
  transition: background 0.2s;
}
.trend__box .trend__search-col {
  vertical-align: middle;
  font-size: 13px;
  line-height: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .trend__box .trend__search-col {
    font-size: 11px;
  }
}
.trend__box .trend__search-col:first-child {
  border-radius: 6px 0 0 6px;
  color: #777E90;
}
@media only screen and (max-width: 1023px) {
  .trend__box .trend__search-col:first-child {
    border-radius: 0;
  }
}
body .dir-rtl .trend__box .trend__search-col:first-child {
  border-radius: 0 6px 6px 0;
}
.trend__box .trend__search-col:last-child {
  border-radius: 0 6px 6px 0;
}
@media only screen and (max-width: 1023px) {
  .trend__box .trend__search-col:last-child {
    border-radius: 0;
  }
}
body .dir-rtl .trend__box .trend__search-col:last-child {
  border-radius: 6px 0 0 6px;
}
.trend__box .trend__search-col:last-child {
  text-align: end;
}
.trend__box:hover {
  background: rgb(234, 236, 239);
}
@media only screen and (max-width: 1023px) {
  .trend__box:hover {
    background: none;
  }
}
body.dark .trend__box:hover {
  background: #23262F;
}
.trend__col {
  display: table-cell;
  padding: 20px 16px;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 1023px) {
  .trend__col {
    font-size: 11px;
    padding: 16px 12px;
  }
}
@media only screen and (max-width: 767px) {
  .trend__col {
    padding: 8px 8px 6px;
    font-size: 12px;
  }
}
body.dark .trend__col {
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .trend__col.vol {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .trend__col.change {
    text-align: end;
  }
}
.trend__search-col {
  display: table-cell;
  padding: 12px 4px;
  align-content: center;
}
.trend__item {
  display: flex;
  align-items: center;
}
.trend__percent {
  text-align: right;
}
.trend__icon {
  flex-shrink: 0;
  width: 33px;
  margin-right: 22px;
}
@media only screen and (max-width: 1023px) {
  .trend__icon {
    width: 25px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .trend__icon {
    width: 30px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 321px) {
  .trend__icon {
    width: 22px;
    margin-right: 4px;
  }
}
body .dir-rtl .trend__icon {
  margin-right: 0;
  margin-left: 32px;
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .trend__icon {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .trend__icon {
    width: 30px;
    margin-right: 0;
    margin-left: 16px;
  }
}
@media only screen and (max-width: 474px) {
  body .dir-rtl .trend__icon {
    width: 24px;
    margin-right: 10px;
  }
}
.trend__icon img {
  width: 100%;
}
.trend__currency {
  font-size: 13px;
  font-weight: 500;
  margin-left: 6px;
  color: #777E90;
}
body.dark .trend__currency {
  color: #777E90;
}
@media only screen and (max-width: 1023px) {
  .trend__currency {
    display: none;
  }
}
body .dir-rtl .trend__currency {
  float: left;
  margin-left: 0;
  margin-right: 6px;
}
.trend__positive {
  color: rgb(0, 177, 105);
}
body .dir-rtl .trend__positive {
  direction: ltr;
}
.trend__negative {
  color: #FF6838;
}
body .dir-rtl .trend__negative {
  direction: ltr;
}
.trend__chart {
  width: 98px;
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .trend__chart {
    width: 85px;
    margin: 0 auto;
  }
}
.trend__subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #181617;
}
body.dark .trend__subtitle {
  color: #ffffff;
}
body .dir-rtl .trend__subtitle {
  float: right;
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .trend__subtitle {
    margin-right: 6px;
  }
}
.trend__form {
  position: relative;
}
.trend__input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #23262F;
  transition: border-color 0.2s;
  font-size: 13px;
  line-height: 1.6666666667;
}
body.dark .trend__input {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(234, 236, 239, 0.1);
  color: #FCFCFD;
}
.trend__input::-moz-placeholder {
  color: #777E90;
}
.trend__input::placeholder {
  color: #777E90;
}
body.dark .trend__input::-moz-placeholder {
  color: #FCFCFD;
}
body.dark .trend__input::placeholder {
  color: #FCFCFD;
}
.trend__input:focus {
  border-color: #00ED7B;
  --tw-ring-color: $p4;
}
.trend__search {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
}
body .dir-rtl .trend__search {
  left: 0;
  right: auto;
}
.trend__search .icon {
  width: 20px;
  height: 20px;
  transition: fill 0.2s;
}
.trend__search_body {
  max-height: 300px;
  width: 205px;
  min-width: 256px;
  padding: 16px;
  position: absolute;
  box-shadow: 0px 16px 48px rgba(31, 47, 70, 0.1);
  border-radius: 6px;
  background: #FBFBFB;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  padding: 8px;
  opacity: 1;
  visibility: visible;
  overflow-y: scroll;
}
body.dark .trend__search_body {
  background: rgba(23, 23, 23, 0.9490196078);
}
@media only screen and (max-width: 1023px) {
  .trend__search_body {
    min-width: 212px;
    width: 212px;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .trend__search_body {
    width: 86%;
    right: 26px;
  }
}
.trend__search_body:before {
  left: 100%;
  transform: translateX(-113%);
}
.trend__btns {
  display: none;
}
@media only screen and (max-width: 767px) {
  .trend__btns {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    bottom: 28px;
    left: 0;
    margin: 0 auto;
  }
}
.trend__btns .flash-button {
  margin: 0 10px;
}

.popular {
  padding: 0;
}
@media only screen and (max-width: 1179px) {
  .popular__center {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .popular__center {
    padding: 0 32px;
  }
}
.popular__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .popular__head {
    margin-bottom: 48px;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .popular__title {
    text-align: right;
  }
}
.popular__butt {
  flex-shrink: 0;
  margin-right: 10px;
  border-radius: 6px;
  height: 40px;
  box-shadow: 0 0 0 2px rgba(1, 188, 141, 0.4) inset;
}
@media only screen and (max-width: 767px) {
  .popular__butt {
    display: none;
  }
}
.popular__info {
  font-size: 16px;
  line-height: 1.5;
  color: #777E90;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .popular__info {
    text-align: right;
  }
}
.popular__wrapper {
  margin: 0 -12px;
}
@media only screen and (max-width: 767px) {
  .popular__wrapper {
    margin: 0 -4px;
  }
}
.popular__item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  height: 515px;
  padding: 32px;
  border-radius: 6px;
  background: transparent;
  text-align: center;
  transition: all 0.2s;
  box-shadow: 0 0 0 2px rgba(1, 188, 141, 0.4) inset;
}
body.dark .popular__item {
  background: transparent;
  box-shadow: 0 0 0 2px rgba(1, 188, 141, 0.4) inset;
}
.popular__item .popular__button {
  margin-top: auto;
  padding: 10px 15px !important;
}
.popular__preview {
  display: flex;
  justify-content: center;
  height: 160px;
  margin: 0 auto 28px;
}
.popular__preview img {
  border-radius: 12px;
  max-width: 100%;
  max-height: 100%;
}
.popular__subtitle {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.popular__content {
  height: 200px;
  overflow-y: auto;
  margin-bottom: 16px;
  padding-right: 5px;
}
.popular__content::-webkit-scrollbar {
  width: 5px;
}
.popular__content::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 10px;
}
.popular__content::-webkit-scrollbar-track {
  background: transparent;
}
body.dark .popular__content {
  color: rgb(234, 236, 239);
}
body .dir-rtl .popular__content {
  padding-left: 5px;
}
.popular__btns {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .popular__btns {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .popular__btns {
    display: block;
    margin-top: 4px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .popular__btns .popular__button {
    width: 100%;
  }
}
.popular__slider {
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .popular__slider {
    padding-bottom: 55px;
  }
}
.popular__slider.slick-initialized {
  visibility: visible;
}
.popular .slick-list {
  overflow: visible;
}
.popular .slick-track {
  display: flex;
}
.popular .slick-slide {
  height: auto;
  margin: 0 12px;
  opacity: 0.8;
  transition: opacity 0.4s;
}
@media only screen and (max-width: 767px) {
  .popular .slick-slide {
    margin: 0 4px;
    opacity: 1;
  }
}
.popular .slick-slide.slick-active {
  opacity: 1;
}
.popular .slick-arrow {
  bottom: 0;
}
.popular .slick-prev {
  left: calc(50% - 50px);
}
.popular .slick-next {
  right: calc(50% - 50px);
}

@media only screen and (max-width: 767px) {
  .download {
    position: relative;
  }
}
.download__center {
  padding: 25px 0;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .download__center {
    padding: 25px 27px;
  }
}
.download__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 60px;
}
@media only screen and (max-width: 1023px) {
  .download__body {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .download__body {
    padding-bottom: 300px;
  }
}
.download__bg {
  position: relative;
  width: 50%;
}
.download__bg img {
  position: relative;
  display: block;
  top: 0;
  left: calc(50% - 155px);
  width: 250px;
}
@media only screen and (max-width: 1023px) {
  .download__bg img {
    width: 222px;
    left: calc(50% - 118px);
  }
}
@media only screen and (max-width: 767px) {
  .download__bg img {
    width: 140px;
    left: calc(50% - 76px);
  }
}
@media only screen and (max-width: 1023px) {
  .download__bg {
    width: 40%;
  }
  .download__bg::before {
    width: 266px;
    height: 266px;
    top: 100px;
    left: calc(50% - 140px);
  }
}
@media only screen and (max-width: 767px) {
  .download__bg {
    position: absolute;
    top: 455px;
    left: 17%;
    width: 70%;
  }
  .download__bg::before {
    width: 222px;
    height: 222px;
    top: 33px;
    left: calc(50% - 115px);
  }
}
.download__wrap {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .download__wrap {
    width: 57%;
  }
}
@media only screen and (max-width: 767px) {
  .download__wrap {
    width: 100%;
  }
}
.download__head {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .download__head {
    display: none;
  }
}
.download__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
}
.download__title .highlight {
  position: relative;
  display: inline-block;
  font-weight: 600;
  margin: 0 5px;
  z-index: 0;
}
.download__title .highlight::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 0;
  bottom: -2px;
  height: 18px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .download__title {
    flex-direction: column;
    font-size: 18px;
    line-height: 22.2px;
  }
}
body .dir-rtl .download__title {
  direction: ltr;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .download__title {
    flex-direction: column-reverse;
  }
}
.download__mobile_head {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .download__mobile_head {
    display: block;
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .download__mobile_head {
    margin-bottom: 33px;
  }
}
.download__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 0.03em;
  text-align: left;
  margin-bottom: 40px;
  color: #777E90;
}
body.dark .download__subtitle {
  color: rgba(255, 255, 255, 0.5);
}
body .dir-rtl .download__subtitle {
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  .download__subtitle.desk {
    display: none;
  }
}
.download__subtitle.tablet {
  margin: 15px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .download__subtitle {
    margin-bottom: 0px;
    font-size: 12px;
  }
}
.download__scan {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 40px;
}
.download__scan .qr-code {
  align-items: center;
  animation: animation-f032ca 2.2s linear 0s infinite normal none running;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: hsla(0, 0%, 60.63%, 0.26);
  border: 1px solid #000;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 16px;
  width: 155px;
}
body.dark .download__scan .qr-code {
  background: hsla(0, 0%, 100%, 0.4);
  border: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  .download__scan .qr-code {
    width: 133px;
    padding: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .download__scan {
    margin-bottom: 20px;
    flex-direction: column;
  }
}
.download__content {
  display: flex;
  flex-direction: column;
  margin-left: 22px;
}
@media only screen and (max-width: 767px) {
  .download__content {
    text-align: center;
    margin-left: 0px;
  }
}
body .dir-rtl .download__content {
  margin-left: auto;
  margin-right: 22px;
}
.download__qr {
  font-size: 16px;
  font-weight: 600;
  line-height: 39px;
}
@media only screen and (max-width: 767px) {
  .download__qr {
    font-size: 13px;
  }
}
.download__links {
  display: flex;
  align-items: center;
}
.download__links_left {
  display: flex;
  flex-direction: column;
  margin-right: 33px;
}
@media only screen and (max-width: 767px) {
  .download__links_left {
    margin-right: 10px;
  }
}
body .dir-rtl .download__links_left {
  margin-left: 33px;
  margin-right: 0;
}
.download__links_right {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .download__links {
    margin-left: 11px;
    margin: auto;
  }
}
.download__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: rgb(234, 236, 239);
  border-radius: 6px;
}
@media only screen and (max-width: 767px) {
  .download__link {
    padding: 13px;
  }
}
.download__icon {
  margin-right: 13px;
}
body .dir-rtl .download__icon {
  margin-left: 13px;
  margin-right: auto;
}
.download__details {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.download__details .android {
  font-weight: 700;
  margin-top: 4px;
}
.download__details .app-store {
  font-weight: 700;
  margin-top: 4px;
}
body.dark .download__details {
  color: #23262F;
}
.download__verrion {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin: 6px;
}

@keyframes animation-f032ca {
  0%, 100% {
    transform: translateZ(0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
}
.news__center {
  max-width: 1132px;
}
.news__head {
  max-width: 545px;
  margin: 0 auto 80px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .news__head {
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .news__head {
    margin-bottom: 24px;
  }
}
.news__logo {
  margin-bottom: 16px;
}
.news__title {
  margin-bottom: 20px;
}
.news__info {
  font-size: 16px;
  line-height: 1.5;
  color: #777E90;
}
.news__item {
  position: relative;
  display: flex !important;
  width: 100%;
  min-height: 544px;
  padding: 80px 96px;
  border-radius: 24px;
  background: #FCFCFD;
  box-shadow: 0px 64px 64px -48px rgba(15, 15, 15, 0.1);
}
@media only screen and (max-width: 1179px) {
  .news__item {
    padding: 80px;
  }
}
@media only screen and (max-width: 1023px) {
  .news__item {
    display: block !important;
    padding: 0;
    min-height: auto;
    box-shadow: none;
    background: none;
  }
}
body.dark .news__item {
  background: #23262F;
}
@media only screen and (max-width: 1023px) {
  body.dark .news__item {
    background: none;
  }
}
.news__preview {
  position: absolute;
  top: -30px;
  right: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 563px;
  height: 563px;
}
@media only screen and (max-width: 1179px) {
  .news__preview {
    top: 20px;
    width: 500px;
    height: 500px;
  }
}
@media only screen and (max-width: 1023px) {
  .news__preview {
    position: static;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 639px) {
  .news__preview {
    width: 100%;
    height: 320px;
  }
}
.news__preview img {
  max-width: 100%;
  max-height: 100%;
}
.news__wrap {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 352px;
}
@media only screen and (max-width: 1023px) {
  .news__wrap {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }
}
.news__stage {
  margin-top: auto;
}
.news__subtitle {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.3333333333;
  letter-spacing: -0.01em;
}
.news__content {
  margin-bottom: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #777E90;
}
.news__button {
  margin-top: 48px;
}
.news__slider {
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .news__slider {
    padding-bottom: 72px;
  }
}
.news__slider.slick-initialized {
  visibility: visible;
}
.news .slick-list {
  overflow: visible;
}
.news .slick-slide {
  opacity: 0;
  transition: opacity 0.4s;
}
.news .slick-slide.slick-active {
  opacity: 1;
}
.news .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .news .slick-arrow {
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }
}
.news .slick-prev {
  left: -96px;
}
@media only screen and (max-width: 1419px) {
  .news .slick-prev {
    left: -64px;
  }
}
@media only screen and (max-width: 1179px) {
  .news .slick-prev {
    left: -48px;
  }
}
@media only screen and (max-width: 1023px) {
  .news .slick-prev {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .news .slick-prev {
    left: calc(50% - 48px);
  }
}
.news .slick-next {
  right: -96px;
}
@media only screen and (max-width: 1419px) {
  .news .slick-next {
    right: -64px;
  }
}
@media only screen and (max-width: 1179px) {
  .news .slick-next {
    right: -48px;
  }
}
@media only screen and (max-width: 1023px) {
  .news .slick-next {
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .news .slick-next {
    right: calc(50% - 48px);
  }
}

.why__center {
  padding: 25px 0 0;
  margin: 0 auto;
  background: radial-gradient(101.06% 101.06% at 50% 2.33%, rgba(1, 188, 141, 0.3) 30%, rgba(1, 188, 141, 0) 73.51%);
  border-radius: 6px;
}
.why__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 30px 0 40px;
}
.why__title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
}
.why__title .highlight {
  position: relative;
  display: inline-block;
  font-weight: 600;
  margin: 0 5px;
  z-index: 0;
}
.why__title .highlight::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 0;
  bottom: -2px;
  height: 18px;
  background: #00ED7B;
  z-index: -1;
}
.why__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 60px;
  padding-bottom: 30px;
  overflow: auto;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.why__list::-webkit-scrollbar {
  width: 5px;
}
@media only screen and (max-width: 1023px) {
  .why__list {
    margin: 0;
    padding: 5px 15px;
  }
}
.why__item {
  position: relative;
  flex: 0 0 calc(33% - 28px);
  width: calc(33% - 28px);
  padding: 24px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: -4px 4px 10px 0px rgba(0, 237, 123, 0.1);
}
body.dark .why__item {
  background: rgb(0, 0, 0);
  box-shadow: -4px 4px 10px 0px rgba(255, 255, 255, 0.15);
}
@media only screen and (max-width: 1023px) {
  .why__item {
    flex: 0 0 280px;
    width: 280px;
    margin: 0 12px;
  }
}
@media only screen and (max-width: 767px) {
  .why__item {
    flex: 0 0 310px;
    width: 310px;
    padding: 16px;
  }
}
.why__border {
  border: 0.8px solid rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 20px;
}
body.dark .why__border {
  border: 0.8px solid rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 1023px) {
  .why__border {
    padding: 16px;
  }
}
.why__preview {
  position: relative;
  display: flex;
  align-items: center;
  width: 106px;
  height: 130px;
  margin: 0 0 18px;
}
.why__preview img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .why__preview {
    width: 80px;
    height: 100px;
  }
}
.why__subtitle {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 8px;
}
body .dir-rtl .why__subtitle {
  text-align: right;
  text-align: auto;
}
.why__content {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}
body.dark .why__content {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1023px) {
  .why__content {
    font-size: 12px;
  }
}
body .dir-rtl .why__content {
  text-align: right;
  text-align: auto;
}

.fAQ__center {
  padding: 0;
}
.fAQ__head {
  display: inline-block;
  width: 100%;
  margin: 50px 0 25px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .fAQ__head {
    margin: 50px 0 0;
  }
}
.fAQ__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 31.2px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.fAQ__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.fAQ__body {
  margin: 0 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1023px) {
  .fAQ__body {
    margin: 0 27px 0;
  }
}
@media only screen and (max-width: 767px) {
  .fAQ__body {
    margin: 27px;
  }
}
.fAQ__info {
  color: #353945;
}
body.dark .fAQ__info {
  color: #E6E8EC;
}
.fAQ__item {
  padding: 20px;
}
.fAQ__question {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .fAQ__question {
    font-size: 14px;
  }
}
@media only screen and (max-width: 321px) {
  .fAQ__question {
    font-size: 12px;
  }
}
.fAQ__question .icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
  fill: #777E90;
  transition: transform 0.2s;
}
body .dir-rtl .fAQ__question .icon {
  margin-left: 0;
  margin-right: auto;
}
.fAQ__question.active .icon {
  transform: rotate(180deg);
}
.fAQ__answer {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  padding-top: 20px;
  color: rgba(9, 9, 9, 0.7);
}
body.dark .fAQ__answer {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1023px) {
  .fAQ__answer {
    font-size: 12px;
  }
}
@media only screen and (max-width: 321px) {
  .fAQ__answer {
    font-size: 10px;
  }
}
body .dir-rtl .fAQ__answer {
  text-align: auto;
  text-align: right;
}
.fAQ__num {
  margin-right: 10px;
}
body .dir-rtl .fAQ__num {
  margin-left: 10px;
  margin-right: 0px;
}
.fAQ__item--active {
  background: linear-gradient(90deg, rgba(131, 131, 131, 0.17) 60%, rgba(204, 225, 255, 0.15) 97%, #FFFFFF 200%);
  border-radius: 6px;
}
body.dark .fAQ__item--active {
  background: linear-gradient(90deg, rgba(131, 131, 131, 0.1) 60%, rgba(204, 225, 255, 0.1) 97%, #FFFFFF 200%);
}
.fAQ__item--active .icon-bg {
  position: absolute;
  height: 112px;
  right: 50px;
  opacity: 1;
  top: -20px;
}
body .dir-rtl .fAQ__item--active .icon-bg {
  left: 20px;
  transform: rotateY(180deg);
  right: unset;
}
.fAQ__line {
  border-bottom: 2px dashed #00ed7b;
  margin: 20px 0;
}

.footer {
  background: #ffffff;
}
body.dark .footer {
  background: #121413;
}
.footer .wide {
  max-width: unset;
  padding: 20px !important;
}
@media only screen and (max-width: 1023px) {
  .footer {
    padding-bottom: 90px;
  }
}
.footer__start {
  display: flex;
  background: #00ed7b;
  background-position: center;
  background-size: cover;
  padding: 66px 0;
}
body.dark .footer__start {
  background: url(/images/start-footer-bg-dark.svg);
}
@media only screen and (max-width: 767px) {
  .footer__start {
    padding: 46px 6px;
  }
}
.footer__banner {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer__banner {
    width: 100%;
  }
}
.footer__signup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  height: 50px;
  background: #f5fffb;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  margin: 33px 44px 0;
}
.footer__signup input {
  width: 333px;
  font-size: 14px;
  font-weight: 100;
  line-height: 20.8px;
  padding: 13px 10px;
  background: transparent;
  background-color: unset;
  color: #23262F;
  transition: all 0.2s;
}
body.dark .footer__signup input {
  color: #121314;
}
.footer__signup input::-moz-placeholder {
  font-size: 14px;
  font-weight: 100;
}
.footer__signup input::placeholder {
  font-size: 14px;
  font-weight: 100;
}
body.dark .footer__signup input::-moz-placeholder {
  color: #121314;
}
body.dark .footer__signup input::placeholder {
  color: #121314;
}
.footer__signup input:focus {
  border: none;
  border-color: unset;
  --tw-ring-color: unset;
  box-shadow: unset;
  background-color: unset;
}
@media only screen and (max-width: 1023px) {
  .footer__signup input {
    width: auto;
    padding: 0;
  }
}
.footer__signup button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  padding: 0 24px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #FCFCFD;
}
body.dark .footer__signup button {
  background: #000;
}
@media only screen and (max-width: 767px) {
  .footer__signup button {
    font-size: 14px;
    padding: 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__signup {
    margin: 33px 33px 0;
  }
}
.footer__center.exchangePage {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0;
  background-color: var(--body-color);
}
body.dark .footer__center.exchangePage {
  background-color: var(--dark-body-color);
}
@media only screen and (max-width: 1023px) {
  .footer__center:last-child {
    margin-bottom: 85px;
  }
}
.footer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 40px;
}
@media only screen and (max-width: 1023px) {
  .footer__head {
    justify-content: center;
    margin: 20px 0;
  }
}
.footer__logo {
  display: inline-block;
  margin: 0;
  width: auto;
  overflow: hidden;
}
.footer__logo img {
  width: 140px;
}
.footer__line {
  border: 1px solid #00ed7b;
  width: 60%;
}
@media only screen and (max-width: 1023px) {
  .footer__line {
    display: none;
  }
}
.footer__socials {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .footer__socials {
    display: none;
  }
}
.footer__mobile_socials {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .footer__mobile_socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__mobile_socials {
    flex-direction: column;
    padding: 0 24px;
  }
}
.footer__mobile_socials .join_us {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .footer__mobile_socials .join_us {
    width: 100%;
  }
}
.footer__mobile_socials .socials {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer__mobile_socials .socials {
    margin-bottom: 10px;
  }
}
.footer__mobile_socials .download {
  display: flex;
  align-items: center;
}
.footer__social {
  margin-right: 12px;
  width: 44px;
  height: 44px;
}
.footer__social svg {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .footer__social {
    margin-right: 6px;
  }
}
.footer__body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .footer__body {
    margin: 0 36px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__body {
    flex-wrap: wrap;
    margin: 0;
    text-align: left;
  }
}
.footer__col {
  flex: 0 0 16%;
  padding: 12px 0px 24px;
}
.footer__col:first-child .footer__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  color: #181617;
  padding-left: 8px;
  border-left: 2px solid #00ed7b;
}
body .dir-rtl .footer__col:first-child .footer__link {
  border-right: 2px solid #00ed7b;
  border-left: none;
  padding-right: 8px;
  padding-left: auto;
}
body.dark .footer__col:first-child .footer__link {
  color: rgba(255, 255, 255, 0.5);
}
.footer__col:first-child .footer__link:hover, .footer__col:first-child .footer__link.active {
  color: #23262F;
}
body.dark .footer__col:first-child .footer__link:hover, body.dark .footer__col:first-child .footer__link.active {
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .footer__col:first-child {
    display: none;
  }
}
.footer__col:last-child {
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .footer__col:last-child {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .footer__col {
    flex: 0 0 25%;
  }
}
@media only screen and (max-width: 767px) {
  .footer__col {
    flex: 0 0 50%;
  }
  body .dir-rtl .footer__col {
    text-align: right;
  }
}
.footer__category {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1023px) {
  .footer__category {
    font-size: 14px;
  }
}
.footer__category.join {
  margin-bottom: 0;
}
.footer__link {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #121314;
}
.footer__link:hover, .footer__link.active {
  color: #00ed7b;
}
.footer__link:not(:last-child) {
  margin-bottom: 20px;
}
body.dark .footer__link {
  color: rgba(255, 255, 255, 0.5);
}
body.dark .footer__link:hover, body.dark .footer__link.active {
  color: #fbfbfb;
}
.footer__link.scan {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  color: #00ed7b;
}
.footer__item .footer__category {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .footer__item .footer__category {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}
.footer__item .footer__category .icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
  fill: #777E90;
  transition: transform 0.2s;
}
.footer__item .footer__category.active .icon {
  transform: rotate(180deg);
}
.footer__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (min-width: 769px) {
  .footer__menu {
    display: flex !important;
  }
}
@media only screen and (max-width: 1023px) {
  .footer__menu {
    display: none;
    padding-top: 25px;
  }
}
.footer__info {
  font-size: 14px;
  line-height: 1.7142857143;
}
.footer__info p:not(:last-child) {
  margin-bottom: 8px;
}
.footer__info:not(:last-child) {
  margin-bottom: 50px;
}
.footer__download {
  display: flex;
  flex-direction: column;
}
.footer__download img {
  margin: 0 auto 12px;
}
@media only screen and (max-width: 1023px) {
  .footer__download {
    display: none;
    margin-top: 0;
    flex-direction: row;
    align-items: center;
  }
  .footer__download img {
    margin: 0;
  }
}
.footer__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__foot .footer__center {
  border-top: 1px solid #00ed7b;
  display: flex;
  padding: 24px 0;
}
.footer__copyright {
  font-size: 14px;
  font-weight: 400;
  margin-right: auto;
  color: #181617;
}
body.dark .footer__copyright {
  color: rgba(255, 255, 255, 0.5);
}
body .dir-rtl .footer__copyright {
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .footer__copyright {
    margin: 0 0 24px;
  }
}
.footer__time {
  font-size: 14px;
  font-weight: 400;
  margin-left: auto;
  color: #181617;
}
body.dark .footer__time {
  color: rgba(255, 255, 255, 0.5);
}
.footer__mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 0;
  background: rgba(246, 246, 246, 0.8);
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0px -4px 4px 0px rgb(234, 236, 239);
}
body.dark .footer__mobile {
  background: #121314;
  box-shadow: 0px -4px 4px 0px rgba(233, 242, 255, 0.1);
}
.footer__mobile__item {
  display: inline-block;
  width: 19%;
  margin: 0 auto;
  font-weight: 700;
  color: #6d6d6d;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
}
body .dir-rtl .footer__mobile__item {
  font-family: "Vazirmatn", sans-serif;
}
.footer__mobile__item:hover, .footer__mobile__item.active {
  color: #121314;
}
.footer__mobile__item:hover svg path, .footer__mobile__item.active svg path {
  fill: #121314;
}
body.dark .footer__mobile__item:hover, body.dark .footer__mobile__item.active {
  color: #fbfbfb;
}
body.dark .footer__mobile__item:hover svg path, body.dark .footer__mobile__item.active svg path {
  fill: #fbfbfb !important;
}
.footer__mobile__item .icon {
  width: 100%;
  margin-bottom: 5px;
}
body.dark .footer__mobile__item {
  color: #6d6d6d;
}
.footer__mobile__item.trade {
  position: relative;
}
.footer__mobile__item.trade .circle {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translate(-50%, 16%);
  width: 45px;
  height: 45px;
  background-color: #00ed7b;
  border-radius: 20%;
  rotate: 45deg;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__mobile__item.trade .circle .icon-circle {
  width: 24px;
  height: 45px;
  width: 100%;
  transform: rotate(45deg);
}
body.dark .footer__mobile__item.trade .circle svg path {
  fill: #121314;
}
body.dark .footer__mobile__item.trade .circle.active svg path {
  fill: #fbfbfb;
}
.footer__card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: auto;
  margin: 0 6px;
  padding: 6px;
  color: #FCFCFD;
}
body.dark .footer__card {
  color: #FCFCFD;
}
.footer__card__icon {
  display: flex;
  align-items: center;
  height: 28px;
  width: 28px;
  margin-right: 6px;
}
.footer__card__icon img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.footer__card__details {
  width: auto;
}
.footer__card__line {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
}
.footer__card__subtitle {
  margin: 0 6px;
  color: #181617;
}
body.dark .footer__card__subtitle {
  color: #FCFCFD;
}
.footer__card__positive, .footer__card__negative {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: unset !important;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #FCFCFD;
}
body .dir-rtl .footer__card__positive, body .dir-rtl .footer__card__negative {
  direction: ltr;
}
.footer__card__positive {
  background: rgb(0, 177, 105);
}
.footer__card__negative {
  background: #FF6838;
}
.footer__card__price {
  font-size: 11px !important;
  color: #777E90;
  margin-left: 6px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
body .dir-rtl .footer__card__price {
  margin-left: 0px;
  margin-right: 6px;
}
.footer__card__money {
  font-size: 11px;
  line-height: 1.6666666667;
}
.footer__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 49.4px;
  letter-spacing: 0.02em;
  color: #000;
}
.footer__title span {
  color: #eeeeee;
}
body.dark .footer__title {
  color: #eeeeee;
}
@media only screen and (max-width: 767px) {
  .footer__title {
    font-size: 26px;
    line-height: 40.4px;
    text-align: center;
  }
}
.footer__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
  margin: 0 12px;
}
@keyframes come-in {
  0% {
    transform: translatey(100px);
    opacity: 0;
  }
  30% {
    transform: translateX(-50px) scale(0.4);
  }
  70% {
    transform: translateX(0px) scale(1.2);
  }
  100% {
    transform: translatey(0px) scale(1);
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
}

html, body {
  background: #eaedf2;
}

.float-container {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  margin: 35px 25px;
}
@media only screen and (max-width: 767px) {
  .float-container {
    bottom: 45px;
    right: -25px;
  }
}
.float-container:hover {
  height: 300px;
}
@media only screen and (max-width: 767px) {
  .float-container:hover {
    height: 250px;
  }
}
.float-container:hover .float-button {
  box-shadow: 0 10px 25px rgb(105, 246, 220);
  background: #00dba2;
  transform: translatey(5px);
  transition: all 0.3s;
}
.float-container:hover .element-container .float-element {
  animation: come-in 0.4s forwards;
}

.float-button {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #00ed7b;
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  line-height: 65px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  z-index: 100;
  box-shadow: 0 10px 25px -5px rgba(126, 44, 240, 0.6);
  cursor: pointer;
  transition: all 0.3s;
}
.float-button svg {
  width: 32px;
  height: 32px;
  margin-left: 6px;
  fill: #ffffff;
}
@media only screen and (max-width: 767px) {
  .float-button {
    width: 50px;
    height: 50px;
  }
}

.float-element {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 15px auto;
  color: white;
  font-weight: 500;
  text-align: center;
  z-index: 0;
  opacity: 0;
  transform: translateY(100px);
}
@media only screen and (max-width: 767px) {
  .float-element {
    width: 40px;
    height: 40px;
  }
}
.float-element .material-icons,
.float-element svg {
  width: 34px;
  height: 24px;
  display: block;
}

#phone-icon {
  background: #834cfa;
  box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
}

#email-icon {
  background: #2CB742;
  box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}

#chat-icon {
  background: #40B3E0;
  box-shadow: 0 20px 20px -10px rgba(0, 140, 255, 0.5);
}

.svg-icon {
  width: 24px;
  height: 24px;
}

.subscription {
  position: relative;
}
.subscription__input {
  width: 100%;
  height: 48px;
  padding: 0 18px 0;
  border-radius: 6px;
  background: none;
  border: 2px solid #E6E8EC;
  font-size: 14px;
  line-height: 1.7142857143;
  color: #23262F;
  transition: border-color 0.2s;
}
body .dir-rtl .subscription__input {
  text-align: right;
}
body.dark .subscription__input {
  border-color: #353945;
  color: #FCFCFD;
}
.subscription__input:focus {
  border-color: #777E90;
}
body.dark .subscription__input:focus {
  border-color: #777E90;
}
.subscription__input::-moz-placeholder {
  color: #777E90;
}
.subscription__input::placeholder {
  color: #777E90;
}
.subscription__btn {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00ed7b;
  transition: background 0.2s;
}
body .dir-rtl .subscription__btn {
  right: auto;
  left: 8px;
}
.subscription__btn .icon {
  width: 14px;
  height: 14px;
  fill: #FCFCFD;
}
.subscription__btn:hover {
  background: rgb(4, 255, 170.915);
}
.subscription_big .subscription__input {
  height: 72px;
  padding: 0 72px 0 22px;
  border-radius: 36px;
  border: 2px solid #F4F5F6;
  font-size: 16px;
}
.subscription_big .subscription__input::-moz-placeholder {
  color: #B1B5C3;
}
.subscription_big .subscription__input::placeholder {
  color: #B1B5C3;
}
.subscription_big .subscription__input:focus {
  border-color: #B1B5C3;
}
body.dark .subscription_big .subscription__input {
  border-color: #353945;
}
body.dark .subscription_big .subscription__input:focus {
  border-color: #B1B5C3;
}
.subscription_big .subscription__btn {
  top: 16px;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
}
.subscription_big .subscription__btn .icon {
  width: 20px;
  height: 20px;
}

.home {
  position: relative;
  padding: 32px 130px;
  min-height: 550px;
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .home {
    padding: 32px 27px;
  }
}
@media only screen and (max-width: 767px) {
  .home {
    min-height: auto;
    padding: 25px 0;
  }
}
.home.fees {
  background: transparent;
  padding-top: 77px;
  min-height: auto;
}
@media only screen and (max-width: 767px) {
  .home.fees {
    padding-top: 50px;
  }
  .home.fees .home__title {
    font-size: 36px;
  }
}
.home.fees .home__center {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .home.fees .home__center {
    display: block;
  }
}
.home__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .home__top {
    display: block;
  }
}
.home__wrap {
  position: relative;
  z-index: 3;
  margin: 13px 0;
}
@media only screen and (max-width: 1179px) {
  .home__wrap {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .home__wrap {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.home__title {
  margin: 20px 0;
}
@media only screen and (max-width: 767px) {
  .home__title {
    font-size: 29px;
    line-height: 44px;
  }
}
.home__title.markets {
  color: #FCFCFD;
}
.home__link {
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
  color: #777E90;
  transition: fill 0.2s;
}
.home__link:hover, .home__link.active {
  color: #23262F;
}
body.dark .home__link:hover, body.dark .home__link.active {
  color: #FCFCFD;
}
.home__arrow {
  width: 18px;
  height: 18px;
  margin: 0 4px;
}
.home__arrow svg {
  width: 100%;
  height: 100%;
  fill: #777E90;
  transition: fill 0.2s;
}
.home__arrow svg:hover, .home__arrow svg.active {
  fill: #23262F;
}
body.dark .home__arrow svg:hover, body.dark .home__arrow svg.active {
  fill: #FCFCFD;
}
.home__text {
  font-size: 24px;
  line-height: 1.3333333333;
  letter-spacing: -0.01em;
  color: #353945;
}
@media only screen and (max-width: 1023px) {
  .home__text {
    max-width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .home__text {
    font-size: 16px;
  }
}
body.dark .home__text {
  color: #B1B5C3;
}
.home__text strong {
  font-weight: 600;
}
.home__bg {
  position: absolute;
  top: 15px;
  right: calc(57% - 727px);
  width: 666px;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .home__bg {
    position: static;
    width: auto;
  }
}
body .dir-rtl .home__bg {
  right: auto;
  left: calc(57% - 653px);
}
@media only screen and (max-width: 1179px) {
  body .dir-rtl .home__bg {
    top: 50px;
    left: calc(72% - 653px);
    width: 455px;
  }
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .home__bg {
    left: calc(89% - 653px);
    width: 393px;
  }
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .home__bg {
    position: static;
    width: auto;
    margin: 0 -38px 30px -5px;
  }
}
.home__bg img {
  width: 100%;
}

.panel {
  position: relative;
  margin: 0 0 30px;
}
.panel__list {
  display: flex;
  margin: 0 -18px;
}
@media only screen and (max-width: 1023px) {
  .panel__list {
    margin: 0 -16px;
    overflow: auto;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .panel__list::-webkit-scrollbar {
    display: none;
  }
}
.panel__item {
  display: flex;
  flex: 0 0 calc(33% - 36px);
  width: calc(33% - 36px);
  margin: 0 16px;
  padding: 16px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #23262F;
}
@media only screen and (max-width: 1023px) {
  .panel__item {
    flex: 0 0 332px;
    width: 332px;
  }
}
@media only screen and (max-width: 767px) {
  .panel__item {
    flex: 0 0 292px;
    width: 292px;
  }
}
body.dark .panel__item {
  background: rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.panel__item:hover .panel__price {
  color: #37ffbc;
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.panel__head .left {
  display: flex;
  align-items: center;
  justify-content: start;
}
.panel__head .right {
  display: flex;
  align-items: center;
  justify-content: end;
  cursor: pointer;
}
.panel__head .icon {
  margin: 0 6px;
}
.panel__head_title {
  font-size: 14px;
  font-weight: 600;
  line-height: 23.4px;
}
body.dark .panel__head_title {
  color: #fbfbfb;
}
.panel__head_more {
  font-size: 12px;
  font-weight: 500;
  color: #00ed7b;
}
.panel__icon {
  flex-shrink: 0;
  width: 40px;
  margin-right: 16px;
}
.panel__line {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.panel__title {
  margin-right: 12px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
}
body .dir-rtl .panel__title {
  margin-left: 12px;
  margin-right: 0;
}
.panel__positive, .panel__negative {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #FCFCFD;
}
.panel__positive {
  background: rgb(0, 177, 105);
}
.panel__negative {
  background: #FF6838;
}
.panel__price {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.panel__money {
  font-size: 11px;
  line-height: 1.6666666667;
}
.panel__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .panel__body {
    overflow: auto;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .panel__body::-webkit-scrollbar {
    display: none;
  }
}
.panel__foot {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .panel__foot {
    display: block;
  }
}
.panel .nav {
  margin-right: auto;
}
.panel .nav__link {
  font-size: 12px;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  background: rgba(0, 237, 123, 0.1);
}
.panel .nav__link.active {
  background: #00ed7b;
  color: #fbfbfb;
}
body.dark .panel .nav__link.active {
  background: #00ed7b;
  color: #fbfbfb;
}
.panel__button {
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.03em;
  align-items: center;
  background: none;
  padding: 0;
  margin-right: 24px;
  cursor: pointer;
  color: #777E90;
}
.panel__button.active {
  font-weight: 700;
  background: none;
  color: rgb(0, 0, 0);
}
body.dark .panel__button.active {
  color: #fbfbfb;
}
.panel__button:hover {
  color: rgb(0, 0, 0);
}
body.dark .panel__button:hover {
  color: #fbfbfb;
}
@media only screen and (max-width: 767px) {
  .panel__button {
    font-size: 12px;
    margin-right: 14px;
  }
}
.panel__link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  align-items: center;
  cursor: pointer;
  color: #00ed7b;
}
.panel__link .icon {
  margin-left: 6px;
}
body .dir-rtl .panel__link .icon {
  transform: rotateY(180deg);
  margin-left: 0px;
  margin-right: 6px;
}
@media only screen and (max-width: 767px) {
  .panel__link {
    font-size: 12px;
  }
}
.panel .select {
  display: none;
}
.panel__chart {
  width: 100px;
  margin: -16px 0 0 6px;
}
@media only screen and (max-width: 1339px) {
  .panel__chart {
    flex-grow: 1;
  }
}
@media only screen and (max-width: 1179px) {
  .panel__chart {
    display: none;
  }
}

.market__center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.market__head {
  background: #00ed7b;
  padding: 36px 0;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .market__head {
    padding: 30px 0;
    margin-bottom: 30px;
  }
}
.market__wrap {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .market__wrap {
    width: 100%;
    margin: 33px 0;
  }
}
.market__bg {
  width: 40%;
}
.market__bg img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .market__bg {
    display: none;
  }
}
.market__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
  letter-spacing: 0.03em;
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .market__title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .market__title {
    font-size: 33px;
  }
}
.market__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin: 15px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 767px) {
  .market__text {
    font-size: 14px;
    line-height: 24.4px;
  }
}
.market__data {
  padding: 60px 0 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid #00ed7b;
}
.market__data_link {
  display: flex;
  align-items: center;
  color: #00ed7b;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.03em;
}
.market__data_link .icon {
  margin-left: 6px;
}
body .dir-rtl .market__data_link .icon {
  transform: rotateY(180deg);
  margin-right: 6px;
  margin-left: 0px;
}
@media only screen and (max-width: 767px) {
  .market__data_link {
    font-size: 12px;
  }
}
.market__data_items {
  margin: 24px 0 0;
}
@media only screen and (max-width: 1023px) {
  .market__data {
    padding: 60px 27px 22px;
    border-bottom: none;
    overflow-x: scroll;
  }
  .market__data::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .market__data::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
  }
  .market__data::-webkit-scrollbar-track {
    background: transparent;
  }
}
.market__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.market__tabs {
  display: flex;
  align-items: center;
}
.market__tabs .tab {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.03em;
  margin-right: 18px;
  cursor: pointer;
}
body.dark .market__tabs .tab {
  color: #777E90;
}
@media only screen and (max-width: 767px) {
  .market__tabs .tab {
    font-size: 14px;
  }
}
.market__tabs .tab.active {
  font-weight: 700;
}
body.dark .market__tabs .tab.active {
  color: #fbfbfb;
}
.market__search {
  position: relative;
}
.market__search_icon {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 0;
}
body .dir-rtl .market__search_icon {
  right: auto;
  left: 8px;
}
.market__search_icon svg {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 767px) {
  .market__search {
    display: none;
  }
}
.market__input {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #23262F;
  transition: border-color 0.2s;
  font-size: 13px;
  line-height: 1.6666666667;
}
body.dark .market__input {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(234, 236, 239, 0.1);
  color: #FCFCFD;
}
.market__input::-moz-placeholder {
  color: #777E90;
}
.market__input::placeholder {
  color: #777E90;
}
body.dark .market__input::-moz-placeholder {
  color: #FCFCFD;
}
body.dark .market__input::placeholder {
  color: #FCFCFD;
}
.market__input:focus {
  border-color: #00ED7B;
  --tw-ring-color: $p4;
}
.market__body {
  padding-bottom: 60px;
}
@media only screen and (max-width: 1023px) {
  .market__body {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .market__body::-webkit-scrollbar {
    width: 5px;
  }
  .market__body::-webkit-scrollbar-thumb {
    background: rgb(94, 115, 107);
    border-radius: 10px;
  }
  .market__body::-webkit-scrollbar-track {
    background: transparent;
  }
}
.market__table {
  display: table;
  width: 100%;
}
.market__row {
  display: table-row;
}
.market__row:first-child .market__col {
  padding: 0 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #777E90;
}
body.dark .market__row:first-child .market__col {
  border-color: #23262F;
}
.market__row:first-child .market__col .icon {
  width: 20px;
  height: 20px;
  margin-left: 4px;
  fill: #777E90;
}
@media only screen and (max-width: 767px) {
  .market__row:first-child .market__col {
    padding: 0 12px 16px;
    width: 600px;
  }
}
.market__row:not(:first-child) {
  transition: background 0.2s;
}
.market__row:not(:first-child) .market__col:first-child {
  border-radius: 6px 0 0 6px;
  color: #777E90;
}
@media only screen and (max-width: 1023px) {
  .market__row:not(:first-child) .market__col:first-child {
    border-radius: 0;
  }
}
body .dir-rtl .market__row:not(:first-child) .market__col:first-child {
  border-radius: 0 6px 6px 0;
}
.market__row:not(:first-child) .market__col:last-child {
  border-radius: 0 6px 6px 0;
}
@media only screen and (max-width: 1023px) {
  .market__row:not(:first-child) .market__col:last-child {
    border-radius: 0;
  }
}
body .dir-rtl .market__row:not(:first-child) .market__col:last-child {
  border-radius: 6px 0 0 6px;
}
.market__row:not(:first-child) .market__col:nth-child(2) {
  cursor: pointer;
}
.market__row:not(:first-child):hover {
  background: #F4F5F6;
}
body.dark .market__row:not(:first-child):hover {
  background: #23262F;
}
.market__row:not(:first-child):hover .market__button {
  display: inline-flex;
  cursor: pointer;
}
.market__row:not(:first-child):hover .market__chart {
  display: none;
}
@media only screen and (max-width: 767px) {
  .market__row:not(:first-child):hover {
    background: none;
  }
}
.market__row.no-hover:hover {
  background: none;
}
body.dark .market__row.no-hover:hover {
  background: none;
}
.market__col {
  display: table-cell;
  color: #121314;
  padding: 16px;
  text-align: left;
  font-weight: 500;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.market__col:first-child, .market__col:nth-child(2) {
  text-align: left;
}
.market__col:first-child {
  font-size: 12px;
}
.market__col:last-child {
  text-align: right;
}
body .dir-rtl .market__col:last-child {
  text-align: left;
}
body.dark .market__col {
  color: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  .market__col {
    font-size: 12px;
    padding: 12px;
  }
}
body .dir-rtl .market__col {
  text-align: right;
}
.market__col.swap {
  text-align: left;
}
body .dir-rtl .market__col.swap {
  text-align: right;
}
.market .favorite {
  position: relative;
  top: 3px;
}
.market__item {
  display: flex;
  align-items: center;
}
.market__item.vip {
  display: inline-flex;
  align-items: center;
  padding: 12px 0px;
}
.market__icon {
  width: 32px;
  margin-right: 12px;
}
body .dir-rtl .market__icon {
  margin-left: 12px;
  margin-right: 0px;
}
.market__icon img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .market__icon {
    width: 28px;
    margin-right: 8px;
  }
}
.market__subtitle {
  margin-right: 4px;
}
body .dir-rtl .market__subtitle {
  float: right;
  margin-left: 6px;
  margin-right: 0px;
}
.market__currency {
  font-weight: 400;
  color: rgb(129, 129, 129);
}
.market__positive {
  color: rgb(0, 177, 105);
}
body .dir-rtl .market__positive {
  direction: ltr;
}
.market__negative {
  color: #FF6838;
}
body .dir-rtl .market__negative {
  direction: ltr;
}
.market__constant {
  color: rgba(0, 237, 123, 0.1);
}
.market__button {
  display: inline-flex;
  width: 96px;
  background: none;
  color: #00ed7b;
  padding: 0;
  justify-content: end;
}
.market__button:hover {
  background: none;
}
@media only screen and (max-width: 767px) {
  .market__button {
    position: relative;
  }
}
.market__button.coin_info {
  display: inline-flex;
  background: none;
  color: #00ed7b;
  justify-content: end;
  padding: 0;
  cursor: pointer;
}
.market__chart {
  width: 96px;
  margin: -15px 0 -15px auto;
}
@media only screen and (max-width: 1179px) {
  .market__chart {
    display: none;
  }
}
.market__label {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .market__label {
    display: block;
    margin-right: auto;
    font-size: 11px;
    line-height: 1.6666666667;
    font-weight: 600;
    color: #777E90;
  }
  body .dir-rtl .market__label {
    margin-left: auto;
    margin-right: 0;
  }
}
.market__details {
  color: #181617;
}
body.dark .market__details {
  color: #F4F5F6;
}
.market__notFound {
  display: flex;
  flex-direction: column;
  width: 1280px;
  padding: 44px 0;
  margin: 0 auto;
}
.market__notFound svg {
  margin: 0 auto;
}
body.dark .market__notFound svg.light {
  display: none;
}
.market__notFound svg.dark {
  display: none;
}
body.dark .market__notFound svg.dark {
  display: block;
}
.market__notFound_text {
  font-size: 20px;
  font-weight: 600;
  line-height: 29.26px;
  margin: 16px 0;
}
body.dark .market__notFound_text {
  color: #fbfbfb;
}

.loader {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  font-size: 4px;
  animation: loader 1.1s infinite ease;
  text-indent: -9999em;
  transform: translateZ(0);
}
body.dark .loader {
  animation-name: loader-white;
}
.loader_white {
  animation-name: loader-white;
}

@keyframes loader {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #777e90, 1.8em -1.8em 0 0em rgba(119, 126, 144, 0.2), 2.5em 0em 0 0em rgba(119, 126, 144, 0.2), 1.75em 1.75em 0 0em rgba(119, 126, 144, 0.2), 0em 2.5em 0 0em rgba(119, 126, 144, 0.2), -1.8em 1.8em 0 0em rgba(119, 126, 144, 0.2), -2.6em 0em 0 0em rgba(119, 126, 144, 0.5), -1.8em -1.8em 0 0em rgba(119, 126, 144, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(119, 126, 144, 0.7), 1.8em -1.8em 0 0em #777e90, 2.5em 0em 0 0em rgba(119, 126, 144, 0.2), 1.75em 1.75em 0 0em rgba(119, 126, 144, 0.2), 0em 2.5em 0 0em rgba(119, 126, 144, 0.2), -1.8em 1.8em 0 0em rgba(119, 126, 144, 0.2), -2.6em 0em 0 0em rgba(119, 126, 144, 0.2), -1.8em -1.8em 0 0em rgba(119, 126, 144, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(119, 126, 144, 0.5), 1.8em -1.8em 0 0em rgba(119, 126, 144, 0.7), 2.5em 0em 0 0em #777e90, 1.75em 1.75em 0 0em rgba(119, 126, 144, 0.2), 0em 2.5em 0 0em rgba(119, 126, 144, 0.2), -1.8em 1.8em 0 0em rgba(119, 126, 144, 0.2), -2.6em 0em 0 0em rgba(119, 126, 144, 0.2), -1.8em -1.8em 0 0em rgba(119, 126, 144, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(119, 126, 144, 0.2), 1.8em -1.8em 0 0em rgba(119, 126, 144, 0.5), 2.5em 0em 0 0em rgba(119, 126, 144, 0.7), 1.75em 1.75em 0 0em #777e90, 0em 2.5em 0 0em rgba(119, 126, 144, 0.2), -1.8em 1.8em 0 0em rgba(119, 126, 144, 0.2), -2.6em 0em 0 0em rgba(119, 126, 144, 0.2), -1.8em -1.8em 0 0em rgba(119, 126, 144, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(119, 126, 144, 0.2), 1.8em -1.8em 0 0em rgba(119, 126, 144, 0.2), 2.5em 0em 0 0em rgba(119, 126, 144, 0.5), 1.75em 1.75em 0 0em rgba(119, 126, 144, 0.7), 0em 2.5em 0 0em #777e90, -1.8em 1.8em 0 0em rgba(119, 126, 144, 0.2), -2.6em 0em 0 0em rgba(119, 126, 144, 0.2), -1.8em -1.8em 0 0em rgba(119, 126, 144, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(119, 126, 144, 0.2), 1.8em -1.8em 0 0em rgba(119, 126, 144, 0.2), 2.5em 0em 0 0em rgba(119, 126, 144, 0.2), 1.75em 1.75em 0 0em rgba(119, 126, 144, 0.5), 0em 2.5em 0 0em rgba(119, 126, 144, 0.7), -1.8em 1.8em 0 0em #777e90, -2.6em 0em 0 0em rgba(119, 126, 144, 0.2), -1.8em -1.8em 0 0em rgba(119, 126, 144, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(119, 126, 144, 0.2), 1.8em -1.8em 0 0em rgba(119, 126, 144, 0.2), 2.5em 0em 0 0em rgba(119, 126, 144, 0.2), 1.75em 1.75em 0 0em rgba(119, 126, 144, 0.2), 0em 2.5em 0 0em rgba(119, 126, 144, 0.5), -1.8em 1.8em 0 0em rgba(119, 126, 144, 0.7), -2.6em 0em 0 0em #777e90, -1.8em -1.8em 0 0em rgba(119, 126, 144, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(119, 126, 144, 0.2), 1.8em -1.8em 0 0em rgba(119, 126, 144, 0.2), 2.5em 0em 0 0em rgba(119, 126, 144, 0.2), 1.75em 1.75em 0 0em rgba(119, 126, 144, 0.2), 0em 2.5em 0 0em rgba(119, 126, 144, 0.2), -1.8em 1.8em 0 0em rgba(119, 126, 144, 0.5), -2.6em 0em 0 0em rgba(119, 126, 144, 0.7), -1.8em -1.8em 0 0em #777e90;
  }
}
@keyframes loader-white {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
.lessons__head {
  max-width: 455px;
  margin: 0 auto 64px;
  text-align: center;
}
@media only screen and (max-width: 1179px) {
  .lessons__head {
    margin-bottom: 48px;
  }
}
.lessons__title {
  margin-bottom: 20px;
}
.lessons__info {
  font-size: 16px;
  line-height: 1.5;
  color: #353945;
}
body.dark .lessons__info {
  color: #B1B5C3;
}
.lessons__list {
  display: flex;
  flex-wrap: wrap;
  margin: -48px -16px 0;
}
@media only screen and (max-width: 767px) {
  .lessons__list {
    display: block;
    margin: 0;
  }
}
.lessons__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 calc(33.333% - 32px);
  width: calc(33.333% - 32px);
  margin: 48px 16px 0;
  padding-bottom: 48px;
  border-bottom: 2px solid #E6E8EC;
  color: #23262F;
  transition: color 0.2s;
}
@media only screen and (max-width: 1023px) {
  .lessons__item {
    flex: 0 0 calc(50% - 32px);
    width: calc(50% - 32px);
  }
}
@media only screen and (max-width: 767px) {
  .lessons__item {
    width: 100%;
    margin: 32px 0 0;
    padding-bottom: 0;
    border: none;
  }
}
body.dark .lessons__item {
  border-color: #353945;
  color: #FCFCFD;
}
.lessons__item:hover {
  color: #37ffbc;
}
.lessons__item:hover .lessons__preview img {
  transform: scale(1.1);
}
.lessons__item:nth-child(n+4) {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .lessons__item:nth-child(n+4) {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .lessons__item:nth-child(n+4) {
    display: none;
  }
}
.lessons__preview {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 48px;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  .lessons__preview {
    margin-bottom: 32px;
  }
}
.lessons__preview:before {
  content: "";
  display: block;
  padding-bottom: 57%;
}
@media only screen and (max-width: 1179px) {
  .lessons__preview:before {
    padding-bottom: 75%;
  }
}
.lessons__preview img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s;
}
.lessons__category {
  margin-bottom: 16px;
}
.lessons__subtitle {
  margin-bottom: 48px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 767px) {
  .lessons__subtitle {
    margin-bottom: 32px;
  }
}
.lessons__line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  font-weight: 500;
  color: #777E90;
}
.lessons__author {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.lessons__avatar {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 50%;
  overflow: hidden;
  background: #00ED7B;
}
.lessons__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lessons__btns {
  margin-top: 64px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .lessons__btns {
    margin-top: 48px;
  }
}
.lessons__button .loader {
  margin: 0 16px 0 5px;
  transform: scale(0.8);
}
body .dir-rtl .lessons__button .loader {
  margin: 0 5px 0 16px;
}

.discover {
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  .discover {
    padding-top: 64px;
  }
}
.discover__head {
  max-width: 730px;
  margin: 0 auto 80px;
  text-align: center;
}
.discover__title {
  margin-bottom: 16px;
}
.discover__info {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 1.3333333333;
  letter-spacing: -0.01em;
  color: #777E90;
}
@media only screen and (max-width: 767px) {
  .discover__info {
    font-size: 16px;
  }
}
.discover__btns {
  display: flex;
  justify-content: center;
}
.discover__button:not(:last-child) {
  margin-right: 16px;
}
.discover__video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .discover__video:before {
    content: "";
    display: block;
    padding-bottom: 122%;
  }
}
.discover__video img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .discover__video img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.releases {
  position: relative;
}
.releases__anchor {
  top: 48px;
}
.releases__head {
  display: flex;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1023px) {
  .releases__head {
    display: block;
    margin-bottom: 48px;
  }
}
.releases__stage {
  width: 352px;
}
@media only screen and (max-width: 1023px) {
  .releases__stage {
    width: 100%;
    margin-bottom: 20px;
  }
}
.releases__wrap {
  flex-shrink: 0;
  width: 640px;
  margin-left: auto;
}
@media only screen and (max-width: 1179px) {
  .releases__wrap {
    width: 500px;
  }
}
@media only screen and (max-width: 1023px) {
  .releases__wrap {
    width: 100%;
  }
}
.releases__title {
  margin-bottom: 20px;
}
.releases__info {
  max-width: 450px;
  margin-bottom: 64px;
  font-size: 16px;
  line-height: 1.5;
  color: #353945;
}
@media only screen and (max-width: 1023px) {
  .releases__info {
    margin-bottom: 48px;
  }
}
body.dark .releases__info {
  color: #F4F5F6;
}
@media only screen and (max-width: 767px) {
  .releases .nav {
    display: none;
  }
}
.releases .nav__link:not(:last-child) {
  margin-right: 12px;
}
.releases .select {
  display: none;
  background: transparent;
}
@media only screen and (max-width: 767px) {
  .releases .select {
    display: block;
  }
}
body.dark .releases .select {
  background: none;
}
.releases__item {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  color: #23262F;
  transition: color 0.2s;
}
@media only screen and (max-width: 1023px) {
  .releases__item {
    display: block;
  }
}
body.dark .releases__item {
  color: #FCFCFD;
}
.releases__item:hover {
  color: #37ffbc;
}
.releases__item:hover .releases__arrow {
  transform: translateX(10px);
}
.releases__item:hover .releases__arrow .icon {
  fill: #37ffbc;
}
.releases__item:not(:last-child) {
  margin-bottom: 80px;
}
.releases__preview {
  flex-shrink: 0;
  width: 640px;
  margin-left: auto;
}
@media only screen and (max-width: 1179px) {
  .releases__preview {
    width: 500px;
  }
}
@media only screen and (max-width: 1023px) {
  .releases__preview {
    width: 100%;
    margin-bottom: 32px;
  }
}
.releases__preview img {
  width: 100%;
  border-radius: 16px;
}
@media only screen and (max-width: 1023px) {
  .releases__preview img {
    min-height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.releases__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 352px;
}
@media only screen and (max-width: 1179px) {
  .releases__details {
    width: auto;
    padding-right: 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .releases__details {
    padding-right: 0;
  }
}
.releases__category {
  margin-bottom: auto;
}
.releases__subtitle {
  margin: 24px 0 8px;
}
@media only screen and (max-width: 1023px) {
  .releases__subtitle {
    margin-top: 16px;
  }
}
.releases__currency {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #353945;
}
body.dark .releases__currency {
  color: #B1B5C3;
}
.releases__content {
  margin-bottom: auto;
  color: #777E90;
}
.releases__arrow {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}
@media only screen and (max-width: 1023px) {
  .releases__arrow {
    position: static;
    margin-top: 16px;
  }
}
.releases__arrow .icon {
  width: 14px;
  height: 14px;
  fill: #777E90;
  transition: fill 0.2s;
}

.catalog {
  position: relative;
}
.catalog__anchor {
  top: 48px;
}
.catalog__form {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E6E8EC;
}
@media only screen and (max-width: 767px) {
  .catalog__form {
    margin-bottom: 24px;
  }
}
body.dark .catalog__form {
  border-color: #353945;
}
.catalog__input {
  width: 100%;
  height: 48px;
  padding-right: 64px;
  border-radius: 0;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #23262F;
}
@media only screen and (max-width: 767px) {
  .catalog__input {
    font-size: 16px;
    font-weight: 500;
  }
}
.catalog__input::-moz-placeholder {
  color: #23262F;
}
.catalog__input::placeholder {
  color: #23262F;
}
body.dark .catalog__input {
  color: #FCFCFD;
}
body.dark .catalog__input::-moz-placeholder {
  color: #E6E8EC;
}
body.dark .catalog__input::placeholder {
  color: #E6E8EC;
}
.catalog__result {
  position: absolute;
  top: 0;
  right: 0;
}
.catalog__result .icon {
  width: 24px;
  height: 24px;
  margin: 0;
}
.catalog__sorting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .catalog__sorting {
    display: block;
  }
}
.catalog .select {
  width: 256px;
}
@media only screen and (max-width: 767px) {
  .catalog .select {
    width: 100%;
  }
  .catalog .select:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .catalog .nav {
    display: none;
  }
}
.catalog .nav__link:not(:last-child) {
  margin-right: 12px;
}
.catalog__list, .catalog__group {
  display: flex;
  flex-wrap: wrap;
  margin: -32px -16px 0;
}
@media only screen and (max-width: 767px) {
  .catalog__list, .catalog__group {
    display: block;
    margin: 0;
  }
}
.catalog .card {
  flex: 0 0 calc(33.333% - 32px);
  width: calc(33.333% - 32px);
  margin: 32px 16px 0;
}
@media only screen and (max-width: 1179px) {
  .catalog .card {
    flex: 0 0 calc(50% - 32px);
    width: calc(50% - 32px);
  }
}
@media only screen and (max-width: 767px) {
  .catalog .card {
    width: 100%;
    margin: 0;
  }
  .catalog .card:not(:last-child) {
    margin-bottom: 32px;
  }
}
.catalog__group .card:nth-child(n+4) {
  display: none;
}
@media only screen and (max-width: 1179px) {
  .catalog__group .card:nth-child(n+4) {
    display: block;
  }
}
@media only screen and (max-width: 1179px) {
  .catalog__group .card:nth-child(n+5) {
    display: none;
  }
}
.catalog__btns {
  margin-top: 32px;
  text-align: center;
}

.card {
  display: block;
  color: #23262F;
  transition: color 0.2s;
}
body.dark .card {
  color: #FCFCFD;
}
.card:hover {
  color: #37ffbc;
}
.card:hover .card__preview img {
  transform: scale(1.1);
}
.card__preview {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.card__preview img {
  width: 100%;
  transition: transform 1s;
}
.card__category {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}
.card__body {
  display: flex;
  padding: 20px 0;
}
.card__avatar {
  position: relative;
  top: 2px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #E4D7CF;
}
body.dark .card__avatar {
  background: #353945;
}
.card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__details {
  flex-grow: 1;
  padding: 0 16px;
}
.card__title {
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.card__author {
  font-size: 11px;
  line-height: 1.6666666667;
  color: #777E90;
}
.card__status {
  align-self: flex-start;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  font-size: 14px;
  line-height: 1.1428571429;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: #23262F;
}
body .dir-rtl .breadcrumbs__item {
  font-family: "Vazirmatn", sans-serif;
}
body.dark .breadcrumbs__item {
  color: #FCFCFD;
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 16px;
}
body .dir-rtl .breadcrumbs__item:not(:last-child) {
  margin-left: 16px;
  margin-right: 0;
}
.breadcrumbs__item:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 9px;
  margin-left: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none' viewBox='0 0 6 10'%3E%3Cpath fill-rule='evenodd' d='M.793.793a1 1 0 0 0 0 1.414L3.586 5 .793 7.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5a1 1 0 0 0-1.414 0z' fill='%23777E90'/%3E%3C/svg%3E") no-repeat 50% 50%/100% auto;
}
body .dir-rtl .breadcrumbs__item:not(:last-child):after {
  margin-right: 16px;
  margin-left: 0;
  transform: scaleX(-1);
}
@media only screen and (max-width: 767px) {
  .breadcrumbs__item:not(:last-child):not(:nth-last-child(2)) {
    display: none;
  }
}
.breadcrumbs__link {
  color: #777E90;
  transition: color 0.2s;
}
.breadcrumbs__link:hover {
  color: #37ffbc;
}

.article {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .article {
    padding-top: 40px;
  }
}
.article.staking {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
}
@media only screen and (max-width: 1023px) {
  .article.staking {
    display: block;
    overflow-y: scroll;
    height: 100%;
    margin-bottom: 0;
  }
}
.article__head {
  max-width: 730px;
  margin: 0 auto 35px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .article__head {
    margin-bottom: 32px;
  }
}
.article__head.stake {
  margin: 35px auto;
}
@media only screen and (max-width: 1023px) {
  .article__head.stake {
    margin: 10px auto;
  }
}
@media only screen and (max-width: 1023px) {
  .article__head.stake h4 {
    font-size: 28px;
  }
}
.article .breadcrumbs {
  justify-content: center;
}
@media only screen and (max-width: 1179px) {
  .article__body {
    margin-bottom: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .article__body {
    margin-bottom: 32px;
  }
}
.article__body.stake {
  width: 50%;
  padding-right: 25px;
}
@media only screen and (max-width: 1023px) {
  .article__body.stake {
    width: 100%;
    padding: 0px 13px;
  }
}
body .dir-rtl .article__body.stake {
  padding-left: 25px;
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .article__body.stake {
    padding-left: 13px;
  }
}
.article__bg {
  width: 100%;
  pointer-events: none;
  margin: 0 0 40px !important;
}
body .dir-rtl .article__bg {
  left: calc(50% - 650px);
  right: auto;
}
@media only screen and (max-width: 1179px) {
  .article__bg {
    margin: 0 auto 40px !important;
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .article__bg {
    margin: 0 auto 40px !important;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .article__bg {
    margin: 0 auto 40px !important;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 474px) {
  .article__bg {
    margin: 0 -18px 50px;
  }
}
.article__bg img {
  width: 100%;
}
.article__item {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.article__item:not(:last-child) {
  margin-bottom: 24px;
}
.article__item button {
  margin-top: 5px;
  margin-right: 6px;
}
body .dir-rtl .article__item button {
  margin-right: 0;
  margin-left: 6px;
}
.article__title {
  margin-right: auto;
}
body .dir-rtl .article__title {
  margin-left: auto;
  margin-right: 0;
}
.article__title h2 {
  font-size: 45px;
}
.article__content {
  margin-left: 16px;
  text-align: right;
  color: #777E90;
}
.article__content.stake {
  margin: 0px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .article__content.stake {
    display: none;
  }
}
.article__content.launch {
  margin: 0px;
  text-align: center;
}
body .dir-rtl .article__content {
  margin-left: 0;
  margin-right: 16px;
  text-align: left;
}
.article__content .green {
  color: #00ED7B;
}
.article__content.address {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .article__content.address {
    display: block;
    font-size: 10px;
    margin: 0 5px;
  }
}
.article__wrap.stake {
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .article__wrap.stake {
    width: 100%;
  }
}
.article__wrap .article__center {
  max-width: 888px;
}
.article__wrap .article__part {
  width: 736px;
  margin: 32px auto;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .article__wrap .article__part {
    width: auto;
  }
}
.article .actions {
  margin-top: 80px;
}
@media only screen and (max-width: 1179px) {
  .article .actions {
    margin-top: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .article .actions {
    margin-top: 32px;
  }
}
.article__wrapper {
  width: 100%;
  padding: 25px;
  box-shadow: 0px 64px 64px -48px rgba(15, 15, 15, 0.1);
  border-radius: 6px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  background: #F1F2F4;
  margin: 0 auto;
}
@media only screen and (max-width: 1179px) {
  .article__wrapper {
    flex-grow: 1;
    width: auto;
    margin-left: 64px;
    padding: 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .article__wrapper {
    margin-left: 0;
    padding: 8px 13px;
    box-shadow: none;
    background: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 6px;
  }
}
body.dark .article__wrapper {
  background: #18191D;
}

.player {
  position: relative;
}
.player:before {
  content: "";
  display: block;
  padding-bottom: 53.6%;
}
@media only screen and (max-width: 1179px) {
  .player:before {
    padding-bottom: 69%;
  }
}
@media only screen and (max-width: 767px) {
  .player:before {
    padding-bottom: 150%;
  }
}
.player img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.player__control {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  background: #FCFCFD;
}
body.dark .player__control {
  background: #181617;
}
.player__button .icon {
  width: 24px;
  height: 24px;
  fill: #777E90;
  transition: fill 0.2s;
}
.player__button:hover .icon {
  fill: #23262F;
}
body.dark .player__button:hover .icon {
  fill: #FCFCFD;
}
.player__button:not(:last-child) {
  margin-right: 24px;
}
@media only screen and (max-width: 767px) {
  .player__button:not(:last-child) {
    margin-right: 16px;
  }
}
.player__line {
  position: relative;
  flex-grow: 1;
  height: 8px;
  margin-right: 24px;
  background: #E6E8EC;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  .player__line {
    margin-right: 16px;
  }
}
body.dark .player__line {
  background: #353945;
}
.player__progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 4px;
  background: #37ffbc;
}
.player__time {
  margin-right: 24px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .player__time {
    margin-right: 16px;
  }
}

.content {
  margin-bottom: 32px;
}
.content h1 {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 767px) {
  .content h1 {
    font-size: 48px;
    line-height: 1.1666666667;
  }
}
.content h2 {
  font-size: 48px;
  line-height: 1.1666666667;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 767px) {
  .content h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
}
.content h3 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 767px) {
  .content h3 {
    font-size: 32px;
    line-height: 1.25;
  }
}
.content h4 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.content h1,
.content h2,
.content h3,
.content h4 {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 32px;
  font-weight: 700;
}
.content h1 .kyc::after,
.content h2 .kyc::after,
.content h3 .kyc::after,
.content h4 .kyc::after {
  display: none;
}
.content h1:not(:first-child),
.content h2:not(:first-child),
.content h3:not(:first-child),
.content h4:not(:first-child) {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .content h1:not(:first-child),
  .content h2:not(:first-child),
  .content h3:not(:first-child),
  .content h4:not(:first-child) {
    margin-top: 40px;
  }
}
.content p {
  font-size: 16px;
  line-height: 1.5;
  color: #777E90;
}
.content p:not(:last-child) {
  margin-bottom: 32px;
}
.content figure {
  margin: 0 -76px;
}
@media only screen and (max-width: 1023px) {
  .content figure {
    margin-left: 0;
    margin-right: 0;
  }
}
.content figure img {
  width: 100%;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .content figure img {
    min-height: 360px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.content figure:not(:first-child) {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .content figure:not(:first-child) {
    margin-top: 40px;
  }
}

.actions {
  position: relative;
}
.actions__list {
  display: flex;
}
.actions__item_share {
  position: relative;
}
.actions__item:not(:last-child) {
  margin-right: 16px;
}
.actions__button .icon {
  width: 24px;
  height: 24px;
}
.actions__item.active .actions__button {
  background: #23262F;
  box-shadow: 0 0 0 2px #23262F inset;
  color: #FCFCFD;
}
.actions__item.active .actions__button .icon {
  fill: #FCFCFD;
}
body.dark .actions__item.active .actions__button {
  background: #353945;
  box-shadow: 0 0 0 2px #353945 inset;
}
.actions__body {
  position: absolute;
  z-index: 5;
  border: 1px solid #E6E8EC;
  background: #FCFCFD;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.actions__item.active .actions__body {
  visibility: visible;
  opacity: 1;
}
.actions__item_share .actions__body {
  left: 50%;
  top: calc(100% + 8px);
  width: 220px;
  transform: translateX(-50%);
  padding: 32px 16px;
  box-shadow: 0px 32px 32px -8px rgba(31, 47, 70, 0.12);
  border-radius: 16px;
  text-align: center;
}
body.dark .actions__item_share .actions__body {
  background: #23262F;
  border-color: #353945;
}
.actions__item_share .actions__body_up {
  top: auto;
  bottom: calc(100% + 8px);
}
.actions__title {
  margin-bottom: 24px;
  font-weight: 500;
}
.actions__list {
  display: flex;
  justify-content: center;
}
.actions__link span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E6E8EC;
  cursor: pointer;
  transition: all 0.2s;
}
.actions__link span .icon {
  width: 20px;
  height: 20px;
  transition: fill 0.2s;
}
.actions__link span:hover {
  background: #00ed7b;
}
.actions__link span:hover .icon {
  fill: #FCFCFD;
}
body.dark .actions__link span {
  background: #353945;
}
body.dark .actions__link span .icon {
  fill: #FCFCFD;
}
body.dark .actions__link span:hover {
  background: #00ed7b;
}
body.dark .actions__link span:hover .icon {
  fill: #FCFCFD;
}
.actions__link:not(:last-child) {
  margin-right: 24px;
}
.actions__favorite {
  position: relative;
}
.actions__favorite .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.actions__favorite .icon:nth-child(2) {
  z-index: 2;
  opacity: 0;
}
.actions__favorite:hover {
  box-shadow: inset 0 0 0 2px #23262F;
  background: #23262F;
}
body.dark .actions__favorite:hover {
  box-shadow: 0 0 0 2px #353945 inset;
}
.actions__favorite:hover .icon {
  fill: #FCFCFD;
}
.actions__favorite.active {
  box-shadow: inset 0 0 0 2px #23262F;
  background: #23262F;
  color: #23262F;
}
.actions__favorite.active .icon {
  fill: #FCFCFD;
}
.actions__favorite.active .icon:first-child {
  opacity: 0;
}
.actions__favorite.active .icon:nth-child(2) {
  opacity: 1;
}
body.dark .actions__favorite.active {
  background: #353945;
  box-shadow: 0 0 0 2px #353945 inset;
}

.contact {
  position: relative;
}
.contact__body .contact__center {
  display: flex;
  align-items: center;
  min-height: 740px;
  padding-top: 112px;
  padding-bottom: 112px;
}
@media only screen and (max-width: 1179px) {
  .contact__body .contact__center {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .contact__body .contact__center {
    display: block;
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 16px;
  }
}
.contact__wrap {
  position: relative;
  z-index: 3;
  max-width: 545px;
}
@media only screen and (max-width: 1023px) {
  .contact__wrap {
    max-width: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .contact__wrap {
    max-width: 100%;
    margin-bottom: 16px;
  }
}
.contact__stage {
  margin-bottom: 12px;
}
.contact__title {
  margin-bottom: 20px;
}
.contact__text {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #777E90;
}
.contact .subscription {
  max-width: 300px;
}
@media only screen and (max-width: 767px) {
  .contact .subscription {
    max-width: 100%;
  }
}
.contact__bg {
  position: absolute;
  top: 12px;
  right: calc(50% - 730px);
  width: 785px;
  pointer-events: none;
}
@media only screen and (max-width: 1179px) {
  .contact__bg {
    right: calc(50% - 670px);
    width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .contact__bg {
    position: static;
    width: 100%;
    padding-left: 16px;
  }
}
.contact__bg img {
  width: 100%;
}
.contact__foot .contact__center {
  max-width: 1440px;
  padding: 0;
}
.contact__info {
  max-width: 350px;
  margin: 0 auto 40px;
  text-align: center;
  font-weight: 500;
  color: #777E90;
}
.contact__item {
  display: block;
  color: #23262F;
  transition: color 0.2s;
}
body.dark .contact__item {
  color: #FCFCFD;
}
.contact__item:hover {
  color: #37ffbc;
}
.contact__item:hover .contact__preview img {
  transform: scale(1.1);
}
.contact__preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 296px;
  overflow: hidden;
}
.contact__preview img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 1s;
}
.contact__category {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.contact__box {
  padding: 40px 40px 0;
}
.contact__subtitle {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.contact__content {
  color: #777E90;
}
.contact__slider {
  padding-bottom: 88px;
  visibility: hidden;
}
.contact__slider.slick-initialized {
  visibility: visible;
}
.contact .slick-list {
  overflow: visible;
}
.contact .slick-slide {
  opacity: 0;
  transition: opacity 0.4s;
}
.contact .slick-slide.slick-active {
  opacity: 1;
}
.contact .slick-slide:nth-child(2n+1) .contact__preview {
  background: #F4F5F6;
}
body.dark .contact .slick-slide:nth-child(2n+1) .contact__preview {
  background: #323642;
}
.contact .slick-slide:nth-child(2n) .contact__preview {
  background: #E6E8EC;
}
body.dark .contact .slick-slide:nth-child(2n) .contact__preview {
  background: #23262F;
}
.contact .slick-arrow {
  bottom: 0;
}
.contact .slick-prev {
  left: calc(50% - 48px);
}
.contact .slick-next {
  right: calc(50% - 48px);
}

.faq__title {
  margin-bottom: 48px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .faq__title {
    margin-bottom: 40px;
  }
}
.faq .nav {
  justify-content: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .faq .nav {
    display: none;
  }
}
.faq .nav__link:not(:last-child) {
  margin-right: 12px;
}
.faq .select {
  display: none;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .faq .select {
    display: block;
    margin-bottom: 24px;
  }
}
.faq__list {
  max-width: 546px;
  margin: 0 auto;
}
.faq__item:hover .faq__head {
  color: #37ffbc;
}
.faq__item:hover .faq__number {
  color: #37ffbc;
}
.faq__item.active .faq__number {
  color: #37ffbc;
}
.faq__item.active .faq__arrow .icon {
  transform: rotate(180deg);
}
.faq__item:not(:last-child) .faq__head {
  border-bottom: 1px solid #E6E8EC;
}
body.dark .faq__item:not(:last-child) .faq__head {
  border-color: #353945;
}
.faq__head {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.faq__number {
  flex-shrink: 0;
  width: 40px;
  color: #777E90;
  transition: color 0.2s;
}
.faq__subtitle {
  flex-grow: 1;
}
.faq__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 24px;
  margin-left: 16px;
}
.faq__arrow .icon {
  width: 24px;
  height: 24px;
  fill: #777E90;
  transition: transform 0.2s;
}
.faq__body {
  display: none;
  padding: 24px 0 0 40px;
  color: #777E90;
}

.field__label {
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #B1B5C3;
}
.field__label.confirm {
  color: #121314;
}
body.dark .field__label.confirm {
  color: #fbfbfb;
}
.field__wrap {
  position: relative;
  margin-bottom: 16px;
}
.field__input {
  width: 100%;
  height: 60px;
  padding: 0 16px;
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #121314;
}
.field__input::-moz-placeholder {
  opacity: 40%;
}
.field__input::placeholder {
  opacity: 40%;
}
body.dark .field__input::-moz-placeholder {
  color: #FCFCFD;
}
body.dark .field__input::placeholder {
  color: #FCFCFD;
}
.field__input:focus {
  box-shadow: none;
  border-color: #00ed7b;
}
.field__input:active, .field__input.nice-select.open {
  border: 1px solid rgba(0, 237, 123, 0.1);
}
body.dark .field__input:active, body.dark .field__input.nice-select.open {
  background: rgba(233, 242, 255, 0.2509803922);
}
body.dark .field__input {
  background: rgba(233, 242, 255, 0.1019607843);
  color: #fbfbfb;
}
@media only screen and (max-width: 1023px) {
  .field__input::-moz-placeholder {
    color: #121314;
    opacity: 80%;
  }
  .field__input::placeholder {
    color: #121314;
    opacity: 80%;
  }
  body.dark .field__input {
    background: rgba(233, 242, 255, 0.1019607843);
    color: #fbfbfb;
  }
  body.dark .field__input::-moz-placeholder {
    color: #fbfbfb;
    opacity: 60%;
  }
  body.dark .field__input::placeholder {
    color: #fbfbfb;
    opacity: 60%;
  }
}
.field__input.error {
  background: #F9E8E9;
  border: 1px solid #C5161E;
  color: #C5161E;
}
.field__textarea {
  width: 100%;
  border-radius: 6px;
  border: 2px solid #E6E8EC;
  box-shadow: none;
  background: none;
  font-size: 13px;
  height: 156px;
  padding: 10px 14px;
  resize: none;
  font-size: 14px;
  line-height: 1.7142857143;
  font-weight: 500;
  color: #23262F;
  transition: border-color 0.2s;
}
body.dark .field__textarea {
  border-color: #353945;
  color: #FCFCFD;
}
.field__textarea::-moz-placeholder {
  color: #777E90;
}
.field__textarea::placeholder {
  color: #777E90;
}
.field__textarea:focus {
  box-shadow: none;
  border-color: #777E90;
}
body.dark .field__textarea:focus {
  border-color: #777E90;
}
.field__button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  height: 24px;
  padding: 0 16px;
  font-size: 14px;
}
body.dark .field__button {
  box-shadow: inset 0 0 0 2px #353945;
}
.field__view {
  position: absolute;
  top: 18px;
  right: 16px;
  bottom: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.field__view__error {
  width: 100%;
  color: #C5161E;
  text-align: right;
}
.field__view:hover svg path {
  stroke: #00ed7b;
}
body.dark .field__view svg path {
  stroke: white;
}
body.dark .field__view:hover svg path {
  stroke: #00ed7b;
}
body .dir-rtl .field__view {
  left: 16px;
  right: unset;
}
.field__icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  pointer-events: none;
}
.field__icon .icon {
  width: 24px;
  height: 24px;
  fill: #777E90;
}
.field__note {
  margin-top: 12px;
  font-size: 10px;
  line-height: 1.6;
  font-weight: 500;
  color: #777E90;
}
.field_button {
  padding-right: 136px;
}
.field_textarea {
  font-size: 0;
}
.field_empty .field__input {
  border: none;
  height: 26px;
}
.field_empty:focus {
  border-color: #00ED7B;
  background: transparent;
}
.field_empty .select {
  height: 26px;
  padding: 0 36px 0 14px;
  box-shadow: none;
  background: none;
  line-height: 26px;
}
body.dark .field_empty .select {
  box-shadow: none;
  background: none;
}
.field_empty .select:before {
  right: 12px;
  width: 24px;
  height: 24px;
  box-shadow: none;
}
body.dark .field_empty .select:before {
  box-shadow: none;
}
.field_empty .option {
  padding: 8px 14px;
}
.field_view .field__input, .field_icon .field__input {
  padding-right: 48px;
}

.question__form {
  max-width: 546px;
  margin: 0 auto;
}
.question__fieldset {
  margin-bottom: 40px;
}
.question__field:not(:last-child),
.question .field:not(:last-child) {
  margin-bottom: 32px;
}
.question__label {
  margin-bottom: 24px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #B1B5C3;
}
.question__variants {
  display: flex;
  margin: 0 -10px;
}
.question__radio {
  position: relative;
  flex: 0 0 calc(50% - 20px);
  width: calc(50% - 20px);
  margin: 0 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.question__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.question__input:checked + .question__inner {
  box-shadow: inset 0 0 0 2px #37ffbc;
}
body.dark .question__input:checked + .question__inner {
  box-shadow: inset 0 0 0 2px #37ffbc;
}
.question__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 12px;
  border-radius: 8px;
  background: #FCFCFD;
  transition: box-shadow 0.2s;
}
@media only screen and (max-width: 767px) {
  .question__inner {
    height: 48px;
  }
}
.question__inner:hover {
  box-shadow: inset 0 0 0 2px #E6E8EC;
}
body.dark .question__inner {
  background: #23262F;
}
body.dark .question__inner:hover {
  box-shadow: inset 0 0 0 2px #353945;
}
.question__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-right: 14px;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .question__icon {
    display: none;
  }
}
.question__icon .icon {
  width: 20px;
  height: 20px;
  fill: #FCFCFD;
}
.question .field__input,
.question .field__textarea {
  background: #FCFCFD;
}
body.dark .question .field__input,
body.dark .question .field__textarea {
  background: #23262F;
}
body.dark .question .select {
  background: #23262F;
}
.question__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: "DM Sans", sans-serif;
  color: #23262F;
}
body .dir-rtl .question__text {
  font-family: "Vazirmatn", sans-serif;
}
body.dark .question__text {
  color: #FCFCFD;
}
.question__btns {
  text-align: right;
}

.checkbox {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.checkbox__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.checkbox__input:checked + .checkbox__inner .checkbox__tick {
  background: #00ed7b;
  border-color: #00ed7b;
}
.checkbox__input:checked + .checkbox__inner .checkbox__tick:before {
  opacity: 1;
}
.checkbox__inner {
  display: flex;
  align-items: center;
}
.checkbox__inner:hover .checkbox__tick {
  border-color: #00ed7b;
}
.checkbox__tick {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 6px;
  border: 1px solid #00ed7b;
  transition: all 0.2s;
}
body .dir-rtl .checkbox__tick {
  margin-right: 0px;
  margin-left: 12px;
}
body.dark .checkbox__tick {
  border-color: #353945;
  background-color: transparent;
}
.checkbox__tick:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' fill='none' viewBox='0 0 14 10'%3E%3Cpath fill-rule='evenodd' d='M13.707.293a1 1 0 0 1 0 1.414l-8 8a1 1 0 0 1-1.414 0l-4-4a1 1 0 1 1 1.414-1.414L5 7.586 12.293.293a1 1 0 0 1 1.414 0z' fill='%23fcfcfd'/%3E%3C/svg%3E") no-repeat 50% 50%/100% auto;
  opacity: 0;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 1023px) {
  .checkbox__tick {
    width: 18px;
    height: 18px;
  }
}
.checkbox__text {
  line-height: 1.7142857143;
  font-weight: 500;
  color: #23262F;
}
body.dark .checkbox__text {
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  body.dark .checkbox__text.remember {
    color: #fbfbfb;
  }
}
.checkbox__link {
  color: #00ed7b;
  transition: color 0.1s;
}
.checkbox__link:hover {
  color: #121314;
}

.notifications {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1023px) {
  .notifications {
    padding-bottom: 64px;
  }
}
body.dark .notifications {
  background: none;
}
.notifications__right {
  width: 16%;
  border-right: 1px solid rgba(0, 0, 0, 0.1490196078);
}
@media only screen and (max-width: 1023px) {
  .notifications__right {
    display: none !important;
  }
}
.notifications__left {
  width: 84%;
  padding: 24px 0;
}
@media only screen and (max-width: 1023px) {
  .notifications__left {
    width: 100%;
  }
}
.notifications__top {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  border-bottom: 1px solid #E6E8EC;
}
@media only screen and (max-width: 767px) {
  .notifications__top {
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 0;
    border: none;
  }
}
body.dark .notifications__top {
  border-color: #353945;
}
.notifications__filters {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 24px;
  width: 100%;
}
.notifications__filters .filter {
  padding: 8px 16px;
  flex-shrink: 0;
  background: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
  border-radius: 6px;
  margin-right: 12px;
  cursor: pointer;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .notifications__filters .filter:first-child {
    width: 170px;
  }
}
.notifications__filters .filter:hover {
  background: #00ed7b;
  color: #fbfbfb;
}
.notifications__filters .filter.active {
  background: #00ed7b;
  color: #fbfbfb;
}
@media only screen and (max-width: 1023px) {
  .notifications__filters .filter {
    margin-right: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .notifications__filters {
    overflow-x: scroll;
    padding: 0 12px;
  }
  .notifications__filters::-webkit-scrollbar {
    display: none;
  }
}
.notifications__notif {
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.notifications__notif .notifications__button {
  display: flex;
  align-items: center;
  color: rgb(99, 102, 241);
  cursor: pointer;
}
.notifications__notif .notifications__button:hover {
  color: #00ed7b;
}
.notifications__notif .notifications__button:hover .box {
  border-color: #00ed7b;
}
.notifications__notif .notifications__button.marg {
  margin-right: 16px;
}
body .dir-rtl .notifications__notif .notifications__button.marg {
  margin-right: 0px;
  margin-left: 16px;
}
.notifications__notif .notifications__button .box {
  width: 16px;
  height: 16px;
  border: 1px solid rgb(99, 102, 241);
  border-radius: 4px;
  margin-right: 6px;
}
body .dir-rtl .notifications__notif .notifications__button .box {
  margin-left: 6px;
  margin-right: 0px;
}
.notifications__title {
  margin-right: auto;
  font-size: 28px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .notifications__title {
    margin: 0px 16px 0px 0px;
    font-size: 16px;
  }
}
body .dir-rtl .notifications__title {
  margin-right: 0;
  margin-left: auto;
}
.notifications__row {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .notifications__row {
    display: block;
  }
}
.notifications__wrapper {
  width: 100%;
}
@media only screen and (max-width: 1179px) {
  .notifications__wrapper {
    padding-right: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .notifications__wrapper {
    padding: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .notifications__list {
    margin: 0 -32px;
  }
}
.notifications__btns {
  margin-top: 56px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media only screen and (max-width: 1023px) {
  .notifications__btns {
    margin-top: 32px;
  }
}
.notifications__btns button {
  background-color: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}
.notifications__btns button:hover {
  background-color: #00ed7b;
  color: #fbfbfb;
}
.notifications__btns button.disabled-button {
  background-color: #e74c3c;
  color: white;
  cursor: not-allowed;
}
.notifications__btns .page-number {
  font-size: 14px;
  padding: 8px 0;
  color: #00ed7b;
}
.notifications__item {
  display: flex;
  background: transparent;
}
.notifications__item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body.dark .notifications__item:not(:last-child) {
  border-color: #353945;
}
.notifications__item.active {
  background: rgba(0, 0, 0, 0.02);
}
.notifications__item.active .notifications__status {
  display: block;
}
@media only screen and (max-width: 767px) {
  .notifications__item {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.notifications__border {
  width: 100%;
  background: rgba(0, 0, 0, 0.01);
  border-radius: 6px;
  padding: 16px;
  margin: 20px;
}
.notifications__border.content {
  width: auto;
}
body.dark .notifications__border {
  background: rgba(255, 255, 255, 0.012);
}
.notifications__type {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 12px;
}
.notifications__icon {
  margin-right: 12px;
  width: 18px;
  height: 18px;
}
.notifications__icon svg {
  width: 100%;
  height: 100%;
}
body .dir-rtl .notifications__icon {
  margin-right: 0px;
  margin-left: 12px;
}
.notifications__subtitle {
  padding: 4px 12px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  color: #00ed7b;
  font-size: 14px;
  font-weight: 500;
}
.notifications__details {
  display: flex;
  flex-direction: column;
}
.notifications__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}
.notifications__date {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.4);
}
body.dark .notifications__date {
  color: rgba(255, 255, 255, 0.4);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.pagination button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background-color: #f0f0f0;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}
.pagination button:hover {
  background-color: #00ED7B;
  color: white;
}
.pagination button.active-page {
  background-color: #00ED7B;
  color: white;
}
.pagination button.disabled-button {
  background-color: #e74c3c;
  color: white;
  cursor: not-allowed;
}
body.dark .pagination button {
  color: #121314;
}
@media only screen and (max-width: 767px) {
  .pagination button {
    padding: 8px 10px;
    font-weight: 400;
  }
}
.pagination span {
  padding: 8px 16px;
  color: #999 s;
}
@media only screen and (max-width: 767px) {
  .pagination {
    gap: 6px;
  }
}

.post {
  margin-top: 16px;
  padding: 32px;
  border-radius: 8px;
  background: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .post {
    margin-top: 56px;
    padding: 0;
    background: none;
  }
}
body.dark .post {
  background: #18191D;
}
@media only screen and (max-width: 1023px) {
  body.dark .post {
    background: none;
  }
}
.post__list {
  display: flex;
  flex-wrap: wrap;
  margin: -32px -16px 0;
}
@media only screen and (max-width: 767px) {
  .post__list {
    flex-wrap: nowrap;
    margin: 0 -32px;
    overflow: auto;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .post__list::-webkit-scrollbar {
    display: none;
  }
  .post__list:before, .post__list:after {
    content: "";
    flex-shrink: 0;
    width: 32px;
    height: 1px;
  }
}
.post__item {
  display: flex;
  flex: 0 0 calc(50% - 32px);
  width: calc(50% - 32px);
  margin: 32px 16px 0;
  color: #23262F;
}
@media only screen and (max-width: 1023px) {
  .post__item {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .post__item {
    flex: 0 0 222px;
    width: 222px;
    margin: 0;
  }
  .post__item:not(:last-child) {
    margin-right: 16px;
  }
}
body.dark .post__item {
  color: #FCFCFD;
}
.post__preview {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 128px;
  height: 144px;
  margin-right: 32px;
  padding: 12px;
  border-radius: 16px;
}
@media only screen and (max-width: 1023px) {
  .post__preview {
    width: 100%;
    margin: 0 0 24px;
  }
}
.post__preview img {
  max-width: 100%;
  max-height: 100%;
}
.post__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}
.post__title {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 767px) {
  .post__title {
    font-size: 16px;
  }
}
.post__content {
  margin-bottom: 16px;
  color: #777E90;
}
.post__button {
  margin-top: auto;
}

.activity {
  padding: 32px 0;
  background: #F4F5F6;
}
@media only screen and (max-width: 767px) {
  .activity {
    background: #FCFCFD;
  }
}
body.dark .activity {
  background: none;
}
@media only screen and (max-width: 1179px) {
  .activity__center {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .activity__center {
    padding: 0 32px;
  }
}
.activity__wrapper {
  padding: 40px;
  border-radius: 8px;
  background: #FCFCFD;
}
@media only screen and (max-width: 1179px) {
  .activity__wrapper {
    padding: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .activity__wrapper {
    padding: 0;
    background: none;
  }
}
body.dark .activity__wrapper {
  background: #18191D;
}
@media only screen and (max-width: 1023px) {
  body.dark .activity__wrapper {
    background: none;
  }
}
.activity__top {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E6E8EC;
}
@media only screen and (max-width: 767px) {
  .activity__top {
    display: block;
    padding: 0;
    border: none;
  }
}
body.dark .activity__top {
  border-color: #353945;
}
.activity .select {
  display: none;
  background: none;
}
@media only screen and (max-width: 1023px) {
  .activity .select {
    display: block;
    width: 256px;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .activity .select {
    width: 100%;
    margin: 0 0 16px;
  }
}
.activity .nav {
  margin-right: auto;
}
@media only screen and (max-width: 1023px) {
  .activity .nav {
    display: none;
  }
}
.activity .nav__link:not(:last-child) {
  margin-right: 16px;
}
@media only screen and (max-width: 1179px) {
  .activity .nav__link:not(:last-child) {
    margin-right: 8px;
  }
}
.activity__form {
  position: relative;
  flex-shrink: 0;
  width: 276px;
  margin-right: 16px;
}
@media only screen and (max-width: 1179px) {
  .activity__form {
    width: 230px;
  }
}
@media only screen and (max-width: 767px) {
  .activity__form {
    width: 100%;
    margin: 0 0 16px;
  }
}
.activity__input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 14px;
  border-radius: 8px;
  background: none;
  border: 2px solid #E6E8EC;
  font-size: 11px;
  line-height: 1.6666666667;
  color: #23262F;
  transition: border-color 0.2s;
}
@media only screen and (max-width: 1023px) {
  .activity__input {
    height: 48px;
  }
}
body.dark .activity__input {
  border-color: #353945;
  color: #FCFCFD;
}
.activity__input::-moz-placeholder {
  color: #777E90;
}
.activity__input::placeholder {
  color: #777E90;
}
.activity__input:focus {
  border-color: #777E90;
}
.activity__result {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
}
.activity__result .icon {
  width: 20px;
  height: 20px;
  fill: #777E90;
  transition: fill 0.2s;
}
.activity__result:hover .icon {
  fill: #37ffbc;
}
.activity__line {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}
.activity__title {
  margin-right: auto;
}
.activity__table {
  display: table;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .activity__table {
    display: block;
  }
}
.activity__row {
  display: table-row;
  color: #23262F;
}
@media only screen and (max-width: 1023px) {
  .activity__row {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1023px) {
  .activity__row:first-child {
    display: none;
  }
}
.activity__row:first-child .activity__col {
  padding: 0 16px 24px;
  border-bottom: 1px solid #E6E8EC;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
}
body.dark .activity__row:first-child .activity__col {
  border-color: #353945;
}
@media only screen and (max-width: 1179px) {
  .activity__row:first-child .activity__col:first-child {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1179px) {
  .activity__row:first-child .activity__col:last-child {
    padding-right: 0;
  }
}
.activity__row:not(:first-child) {
  transition: background 0.2s;
}
.activity__row:not(:first-child) .activity__col {
  vertical-align: middle;
  font-weight: 500;
}
.activity__row:not(:first-child) .activity__col:first-child {
  border-radius: 12px 0 0 12px;
  color: #777E90;
}
@media only screen and (max-width: 1023px) {
  .activity__row:not(:first-child) .activity__col:first-child {
    border-radius: 0;
  }
}
.activity__row:not(:first-child) .activity__col:last-child {
  border-radius: 0 12px 12px 0;
}
@media only screen and (max-width: 1023px) {
  .activity__row:not(:first-child) .activity__col:last-child {
    border-radius: 0;
  }
}
.activity__row:not(:first-child):hover {
  background: #F4F5F6;
}
@media only screen and (max-width: 1023px) {
  .activity__row:not(:first-child):hover {
    background: none;
  }
}
body.dark .activity__row:not(:first-child):hover {
  background: #23262F;
}
@media only screen and (max-width: 1023px) {
  body.dark .activity__row:not(:first-child):hover {
    background: none;
  }
}
@media only screen and (max-width: 1023px) {
  .activity__row:not(:last-child) {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E6E8EC;
  }
  body.dark .activity__row:not(:last-child) {
    border-color: #353945;
  }
}
.activity__col {
  display: table-cell;
  padding: 20px 16px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 1023px) {
  .activity__col {
    padding: 0;
    display: flex;
    align-items: center;
  }
}
body.dark .activity__col {
  color: #FCFCFD;
}
@media only screen and (max-width: 1179px) {
  .activity__col:first-child {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .activity__col:nth-child(2) {
    margin-left: auto;
  }
}
.activity__col:nth-child(5), .activity__col:nth-child(6) {
  color: #777E90;
}
.activity__col:last-child {
  text-align: right;
}
@media only screen and (max-width: 1179px) {
  .activity__col:last-child {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .activity__col:not(:first-child):not(:nth-child(2)) {
    flex: 0 0 100%;
    margin-top: 8px;
  }
}
.activity__coin {
  display: flex;
  align-items: center;
}
.activity__icon {
  flex-shrink: 0;
  width: 32px;
  margin-right: 12px;
}
.activity__icon img {
  max-width: 100%;
}
.activity__label {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .activity__label {
    display: block;
    margin-right: auto;
    font-size: 11px;
    line-height: 1.6666666667;
    font-weight: 600;
    color: #777E90;
  }
}
.activity__item {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .activity__item_calendar .activity__button {
    width: 100%;
  }
}
.activity__item_calendar.active > .activity__button {
  background: #23262F;
  box-shadow: 0 0 0 2px #23262F inset;
  color: #FCFCFD;
}
.activity__item_calendar.active > .activity__button .icon {
  fill: #FCFCFD;
}
body.dark .activity__item_calendar.active > .activity__button {
  background: #353945;
  box-shadow: 0 0 0 2px #353945 inset;
}
.activity__body {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 2;
  background: #FCFCFD;
  border: 1px solid #E6E8EC;
  box-shadow: 0px 40px 32px -24px rgba(15, 15, 15, 0.12);
  border-radius: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}
body.dark .activity__body {
  background: #23262F;
  border-color: #353945;
}
.activity__item_calendar .activity__body {
  width: 660px;
  padding: 16px 16px 32px;
}
@media only screen and (max-width: 767px) {
  .activity__item_calendar .activity__body {
    display: none;
    position: static;
    width: auto;
    padding: 16px 0 0;
    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
    visibility: visible;
    opacity: 1;
  }
  body.dark .activity__item_calendar .activity__body {
    background: none;
  }
}
@media only screen and (max-width: 767px) {
  .activity__item_calendar .activity__datepicker {
    display: none;
  }
}
.activity__item_export .activity__body {
  width: 364px;
  padding: 32px;
}
@media only screen and (max-width: 767px) {
  .activity__item_export .activity__body {
    width: 311px;
    padding: 16px 0 24px;
  }
}
.activity__item.active .activity__body {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .activity__item.active .activity__body {
    display: block;
  }
}
.activity__variants {
  display: flex;
  flex-wrap: wrap;
  margin: -8px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .activity__variants {
    margin-left: -16px;
  }
}
.activity__variants .activity__button {
  margin: 8px 0 0 16px;
}
.activity__range {
  display: none;
  width: 100%;
  margin: 8px 0 16px;
  text-align: center;
  background: none;
  pointer-events: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #23262F;
}
body.dark .activity__range {
  color: #FCFCFD;
}
.activity__body .activity__button {
  margin-top: 16px;
}

@media only screen and (max-width: 1023px) {
  .profile {
    padding: 60px 0;
  }
}
.profile__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .profile__body {
    flex-direction: column;
  }
}
.profile__left {
  width: 70%;
  padding-right: 16px;
}
@media only screen and (max-width: 1023px) {
  .profile__left {
    width: 100%;
    padding-right: 0;
  }
}
body .dir-rtl .profile__left {
  padding-left: 16px;
  padding-right: 0px;
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .profile__left {
    padding: 0;
  }
}
.profile__right {
  width: 30%;
}
@media only screen and (max-width: 1023px) {
  .profile__right {
    width: 100%;
  }
}
.profile__login {
  margin-top: 16px;
}
.profile__login .account__box {
  background: #FAFCFF;
}
@media only screen and (max-width: 1023px) {
  .profile__login {
    margin-bottom: 16px;
  }
}
.profile__edit {
  margin-bottom: 16px;
}
.profile__edit .account__box {
  background: #FAFCFF;
}
.profile__edit_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.profile__edit .title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.profile__edit .back {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #00ed7b;
}
.profile__edit .link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  cursor: pointer;
  color: #00ed7b;
}
.profile__edit .link svg path {
  fill: #00ed7b;
}
.profile__edit .icon {
  width: 9px;
  height: 9px;
  margin-left: 6px;
}
body .dir-rtl .profile__edit .icon {
  margin-right: 6px;
  margin-left: 0px;
  transform: rotateY(180deg);
}
.profile__edit_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-top: 16px;
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid rgba(0, 237, 123, 0.1);
  border-radius: 6px;
}
.profile__edit_item:not(.profile__edit_item:last-child) {
  margin-bottom: 16px;
}
.profile__edit_item_left {
  display: flex;
  align-items: center;
  width: 70%;
}
@media only screen and (max-width: 1023px) {
  .profile__edit_item_left {
    width: 100%;
  }
  .profile__edit_item_left svg {
    width: 20%;
    height: 32px;
  }
}
.profile__edit_item_left .account__avatar {
  margin: 0;
}
.profile__edit_item_detail {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}
body .dir-rtl .profile__edit_item_detail {
  margin-right: 12px;
  margin-left: 0;
}
@media only screen and (max-width: 1023px) {
  .profile__edit_item_detail {
    width: 80%;
  }
}
.profile__edit_item_right {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 30%;
}
@media only screen and (max-width: 1023px) {
  .profile__edit_item_right {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .profile__edit_item_right {
    padding-top: 6px;
  }
}
.profile__edit_item_title {
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  color: #00ed7b;
}
body.dark .profile__edit_item_title {
  color: #fbfbfb;
}
.profile__edit_item_content {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.6980392157);
}
body.dark .profile__edit_item_content {
  color: rgba(255, 255, 255, 0.6980392157);
}
.profile__edit_item_status {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 70%;
  font-size: 12px;
  font-weight: 500;
  line-height: 35px;
}
.profile__edit_item_status.set {
  color: #0F9563;
}
body.dark .profile__edit_item_status.set svg path {
  fill: #0F9563;
}
.profile__edit_item_status svg {
  margin-right: 6px;
}
body.dark .profile__edit_item_status svg path {
  fill: white;
}
.profile__edit_item_button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
}
.profile__edit_item_button button {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #00ed7b;
  cursor: pointer;
}
.profile__edit_item_button .icon {
  margin: 0 6px;
}
.profile__edit_item_button svg path {
  fill: #00ed7b;
}
body.dark .profile__edit_item {
  background: rgba(0, 237, 123, 0.1);
}
@media only screen and (max-width: 1023px) {
  .profile__edit_item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.profile__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile__item:not(.profile__item:last-child) {
  margin-bottom: 16px;
}
.profile__detail {
  display: flex;
  flex-direction: column;
}
.profile__detail_title {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.6980392157);
}
body.dark .profile__detail_title {
  color: rgba(255, 255, 255, 0.6980392157);
}
.profile__detail_content {
  font-size: 14px;
  font-weight: 600;
  line-height: 35px;
  color: #00ed7b;
}
.profile__verify {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 35px;
  color: #0F9563;
}
.profile__verify .icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
body .dir-rtl .profile__verify .icon {
  margin-left: 6px;
  margin-right: 0px;
}
.profile__security .account__box {
  background: #FAFCFF;
}

.switch {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 0;
}
.switch__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.switch__input:checked + .switch__inner .switch__box {
  background: #37ffbc;
}
.switch__input:checked + .switch__inner .switch__box:before {
  transform: translate(20px, -50%);
  background: #FCFCFD;
}
.switch__inner {
  position: relative;
  display: inline-block;
  transition: all 0.2s;
}
.switch__box {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  background: #E6E8EC;
  border-radius: 12px;
  transition: all 0.2s;
}
body.dark .switch__box {
  background: #353945;
}
.switch__box:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #37ffbc;
  transition: all 0.2s;
}

.account__body {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1023px) {
  .account__body {
    flex-direction: column;
    padding: 60px 0 0;
  }
}
.account__left {
  width: 70%;
  padding-right: 16px;
}
@media only screen and (max-width: 1023px) {
  .account__left {
    width: 100%;
    padding-right: 0;
  }
}
body .dir-rtl .account__left {
  padding-left: 16px;
  padding-right: 0px;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .account__left {
    padding-left: 0px;
  }
}
.account__right {
  width: 30%;
}
@media only screen and (max-width: 1023px) {
  .account__right {
    width: 100%;
  }
}
.account__info {
  margin-bottom: 16px;
}
.account__box {
  padding: 24px;
  background: rgb(234, 236, 239);
  border: 1px solid rgba(0, 237, 123, 0.1);
  border-radius: 6px;
}
body.dark .account__box {
  background: rgba(233, 242, 255, 0.1);
}
@media only screen and (max-width: 1023px) {
  .account__box.info {
    background: transparent;
    padding: 0;
    border: none;
  }
  body.dark .account__box.info {
    background: transparent;
  }
}
.account__details {
  display: flex;
  align-items: center;
  justify-content: start;
}
.account__details:first-child {
  margin-bottom: 16px;
}
.account__details_item {
  display: flex;
  flex-direction: column;
  margin-right: 36px;
}
.account__details_item .title {
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.6980392157);
}
body.dark .account__details_item .title {
  color: rgba(255, 255, 255, 0.6980392157);
}
body.dark .account__details_item .title svg path {
  fill: rgba(255, 255, 255, 0.6980392157);
}
.account__details_item .content {
  font-size: 14px;
  font-weight: 600;
  line-height: 35px;
  margin: 0;
}
.account__details_item .content .verify {
  display: flex;
  align-items: center;
  color: #0F9563;
}
.account__details_item .content .unverify {
  display: flex;
  align-items: center;
  color: #BD9028;
}
.account__details_item .content_icon {
  margin-right: 6px;
}
body .dir-rtl .account__details_item .content_icon {
  margin-right: 0px;
  margin-left: 6px;
}
.account__details_item .icon {
  margin: 0 6px;
}
body .dir-rtl .account__details_item .icon {
  transform: rotateY(180deg);
}
@media only screen and (max-width: 1023px) {
  .account__details_item {
    flex-direction: row;
    margin-right: 0;
    width: 100%;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1023px) {
  .account__details.respons {
    flex-direction: column;
  }
}
.account__avatar {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
body .dir-rtl .account__avatar {
  margin-right: 0px;
  margin-left: 12px;
}
.account__avatar .avatar-image {
  width: 100%;
  height: 100%;
}
.account__avatar .avatar-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.account__avatar .avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #00ed7b;
  color: #FCFCFD;
  border-radius: 50%;
}
.account__email {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.account__wallet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.account__wallet .link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  cursor: pointer;
  color: #00ed7b;
}
.account__wallet .link svg path {
  fill: #00ED7B;
}
.account__wallet .icon {
  margin-left: 6px;
  color: #00ed7b;
}
body .dir-rtl .account__wallet .icon {
  transform: rotateY(180deg);
  margin-right: 6px;
  margin-left: 0;
}
.account__wallet_btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.account__wallet_button {
  width: 48%;
}
.account__wallet_button:first-child:hover svg path {
  stroke: #00ed7b;
}
.account__wallet_button:last-child {
  background: transparent;
  color: #00ed7b;
  border: 1px solid #00ed7b;
}
.account__wallet_button:last-child:hover {
  background: #00ed7b;
  color: #fbfbfb;
}
.account__wallet_button:last-child:hover svg path {
  stroke: #fbfbfb;
}
.account__wallet_button svg {
  margin-right: 6px;
}
body .dir-rtl .account__wallet_button svg {
  margin-right: 0px;
  margin-left: 6px;
  transform: rotateY(180deg);
}
.account__wallet_links {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #00ed7b;
}
.account__wallet_item {
  padding: 16px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: #121314;
}
.account__wallet_item:not(.account__wallet_item:last-child) {
  margin-bottom: 16px;
}
.account__wallet_item:hover {
  color: #00ed7b;
}
body.dark .account__wallet_item {
  color: rgba(255, 255, 255, 0.6980392157);
}
.account__balance {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.account__balance .show {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 17.07px;
  color: #121314;
  margin-bottom: 16px;
  opacity: 50%;
}
body.dark .account__balance .show {
  color: rgba(255, 255, 255, 0.6980392157);
}
.account__balance .view__asset {
  width: 18px;
  height: 18px;
  margin: 0 6px;
  cursor: pointer;
}
.account__balance .view__asset svg {
  width: 100%;
  height: 100%;
  fill: #23262F;
}
body.dark .account__balance .view__asset svg {
  fill: #FCFCFD;
}
.account__balance .balance-usdt {
  font-size: 24px;
  font-weight: 600;
  line-height: 27.07px;
}
.account__balance .balance-usdt .usdt {
  display: flex;
  align-items: baseline;
  direction: ltr;
}
.account__balance .balance-usdt .weight {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-left: 6px;
}
.account__shortcuts {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.account__shortcuts .verify {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 16px;
  background: rgb(99, 102, 241);
  border-radius: 6px;
  margin-right: 12px;
}
body .dir-rtl .account__shortcuts .verify {
  margin-right: 0px;
  margin-left: 12px;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .account__shortcuts .verify {
    margin-left: 0px;
  }
}
.account__shortcuts .verify_content {
  display: flex;
  flex-direction: column;
  width: 75%;
}
.account__shortcuts .verify_content .title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #fbfbfb;
  margin-bottom: 18px;
}
.account__shortcuts .verify_content .text {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: #fbfbfb;
  margin-bottom: 18px;
}
.account__shortcuts .verify_button {
  background: #fbfbfb;
  color: #00ed7b;
  width: 36%;
}
.account__shortcuts .verify_button:hover {
  color: rgb(99, 102, 241);
}
.account__shortcuts .verify_bg {
  width: 25%;
}
.account__shortcuts .verify_bg svg {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .account__shortcuts .verify {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.account__shortcuts .trade-cart {
  display: flex;
  flex-direction: column;
  width: 24%;
  padding: 16px;
  background: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
body.dark .account__shortcuts .trade-cart {
  color: #00ED7B;
}
.account__shortcuts .trade-cart .pending {
  display: flex;
  align-items: center;
  color: #BD9028;
  margin-top: auto;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.6px;
}
.account__shortcuts .trade-cart .pending svg path {
  stroke: #BD9028;
}
.account__shortcuts .trade-cart .pending .icon {
  margin-right: 6px;
}
body .dir-rtl .account__shortcuts .trade-cart .pending .icon {
  margin-right: 0px;
  margin-left: 6px;
}
body.dark .account__shortcuts .trade-cart .pending {
  color: #BD9028;
}
body.dark .account__shortcuts .trade-cart .pending svg path {
  stroke: #BD9028;
}
@media only screen and (max-width: 1023px) {
  .account__shortcuts .trade-cart .pending {
    margin-top: 58px;
  }
}
.account__shortcuts .trade-cart.mar-fix {
  margin-right: 12px;
}
body .dir-rtl .account__shortcuts .trade-cart.mar-fix {
  margin-left: 12px;
  margin-right: 0px;
}
@media only screen and (max-width: 1023px) {
  .account__shortcuts .trade-cart {
    width: 48%;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1023px) {
  .account__shortcuts {
    flex-wrap: wrap;
  }
}
.account__tickets {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.account__tickets_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.account__tickets_btns {
  display: flex;
  align-items: center;
  justify-content: end;
}
.account__tickets_button {
  line-height: 18.2px;
}
.account__tickets_bottom {
  display: flex;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #00ed7b;
}
.account__tickets_bottom .item {
  display: flex;
  flex-direction: column;
  width: 25%;
  text-align: left;
}
.account__tickets_bottom .item .title {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.6980392157);
  margin-bottom: 6px;
}
body.dark .account__tickets_bottom .item .title {
  color: rgba(255, 255, 255, 0.6980392157);
}
.account__tickets_bottom .item .number {
  font-size: 18px;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1023px) {
  .account__tickets_bottom .item {
    width: 50%;
  }
}
@media only screen and (max-width: 1023px) {
  .account__tickets_bottom {
    flex-wrap: wrap;
  }
}
.account__security {
  margin-top: 16px;
}
.account__security_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.account__security_head .title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.account__security_head .link {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #00ed7b;
}
.account__security_head .link svg path {
  fill: #00ED7B;
}
body .dir-rtl .account__security_head .link svg {
  transform: rotateY(180deg);
}
.account__security_level {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
.account__security_level .title-level {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.account__security_level .levels {
  display: flex;
  align-items: center;
  margin-left: 12px;
}
body .dir-rtl .account__security_level .levels {
  margin-left: 12px;
  margin-right: 12px;
}
.account__security_level_default {
  width: 36px;
  margin-right: 4px;
  border: 3px solid rgba(0, 237, 123, 0.1);
}
.account__security_level_one {
  width: 36px;
  margin-right: 4px;
  border: 3px solid #bd2828;
}
.account__security_level_tow {
  width: 36px;
  margin-right: 4px;
  border: 3px solid #BD9028;
}
.account__security_level_three {
  width: 36px;
  border: 3px solid #28bd55;
}
.account__security_boxes {
  display: flex;
  flex-wrap: wrap;
}
.account__security_boxes .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  padding: 16px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.account__security_boxes .box:first-child {
  width: 100%;
  margin-bottom: 21px;
}
.account__security_boxes .box:last-child {
  margin-left: auto;
}
body .dir-rtl .account__security_boxes .box:last-child {
  margin-right: auto;
  margin-left: 0;
}
body.dark .account__security_boxes .box {
  border-color: rgba(186, 215, 255, 0.2);
}
.account__security_boxes .box_button {
  margin: 0 auto;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.2px;
  margin-top: 32px;
}
.account__security_boxes .box_button.set {
  background: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
  margin: 0;
}
body.dark .account__security_boxes .box_button.set {
  background: rgba(0, 237, 123, 0.1);
}
.account__security_boxes .pass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.account__security_boxes .set-pass {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ed7b;
}
.account__notif {
  width: 100%;
}
.account__notif_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.account__notif_link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #00ed7b;
}
.account__notif_link svg path {
  fill: #00ed7b;
}
.account__notif_link .icon {
  width: 9px;
  height: 9px;
  margin-left: 6px;
}
body .dir-rtl .account__notif_link .icon {
  transform: rotateY(180deg);
  margin-left: 0px;
  margin-right: 6px;
}
.account__notif_container {
  width: 100%;
  height: 284px;
  overflow-y: auto;
  padding-right: 3px;
}
.account__notif_container::-webkit-scrollbar {
  width: 3px;
}
.account__notif_container::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 10px;
}
.account__notif_container::-webkit-scrollbar-track {
  background: transparent;
}
.account__notif_container.fix-height {
  height: 444px;
}
.account__notif_table {
  display: table;
  width: 100%;
  padding-top: 12px;
}
.account__notif_table .table__row {
  display: table-row;
}
@media only screen and (max-width: 1023px) {
  .account__notif_table .table__row {
    display: table-row !important;
  }
}
.account__notif_table .table_notif_col {
  display: table-cell;
  padding: 16px 8px;
  width: 50%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.account__notif_table .table_notif_col:last-child {
  text-align: right;
}
body.dark .account__notif_table .table_notif_col {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.account__notif_table .notif-content {
  display: flex;
  flex-direction: column;
}
.account__notif_table .devise {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #00ed7b;
}
.account__notif_table .country {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.6980392157);
}
body.dark .account__notif_table .country {
  color: rgba(255, 255, 255, 0.6980392157);
}
.account__notif_table .time {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}
.account__notif_table .ip {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.6980392157);
}
body.dark .account__notif_table .ip {
  color: rgba(255, 255, 255, 0.6980392157);
}
@media only screen and (max-width: 1023px) {
  .account__notif {
    margin-bottom: 16px;
  }
}
.account__markets {
  width: 100%;
  margin: 32px 0;
}
.account__level {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px #E6E8EC;
  font-size: 14px;
  line-height: 1.1428571429;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: #00ED7B;
}
body .dir-rtl .account__level {
  font-family: "Vazirmatn", sans-serif;
}
@media only screen and (max-width: 1023px) {
  .account__level {
    margin-right: 6px;
  }
}
body.dark .account__level {
  box-shadow: inset 0 0 0 2px #353945;
}
.account .select {
  flex-shrink: 0;
  width: 200px;
  margin: 12px 0 0 36px;
  background: #F4F5F6;
  box-shadow: inset 0 0 0 2px #F4F5F6;
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  .account .select {
    width: 100%;
    margin: 40px 0 0;
  }
}
body.dark .account .select {
  background: #23262F;
  box-shadow: inset 0 0 0 2px #23262F;
}
.account__settings:not(:first-child) {
  margin-top: 38px;
}
@media only screen and (max-width: 767px) {
  .account__settings:not(:first-child) {
    margin-top: 24px;
  }
}
.account__title {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.account__subtitle {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E6E8EC;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #B1B5C3;
}
body.dark .account__subtitle {
  border-color: #353945;
}
.account__item {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.account__item:not(:last-child) {
  margin-bottom: 24px;
}
.account__category {
  margin-right: auto;
}
.account__btns {
  margin-top: 30px;
}
@media only screen and (max-width: 1023px) {
  .account__btns {
    margin-top: 24px;
  }
}

.referrals__head {
  padding: 24px 16px;
  background: linear-gradient(90deg, rgba(0, 237, 123, 0.06), rgba(0, 237, 123, 0.03), rgba(0, 237, 123, 0.2));
  border: 1px solid #00ed7b;
  border-radius: 6px;
  margin-bottom: 24px;
}
body.dark .referrals__head {
  background: linear-gradient(90deg, rgba(0, 237, 123, 0.06), rgba(0, 237, 123, 0.03), rgba(0, 237, 123, 0.2));
}
body .dir-rtl body.dark .referrals__head {
  background: linear-gradient(90deg, rgba(0, 237, 123, 0.06), rgba(0, 237, 123, 0.03), rgba(0, 237, 123, 0.2));
}
@media only screen and (max-width: 1023px) {
  .referrals__head {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__head {
    flex-direction: column;
    margin-top: 32px;
  }
}
body .dir-rtl .referrals__head {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #00ED7B 100%);
}
.referrals__code {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .referrals__code {
    flex-direction: column;
    align-items: right;
  }
}
.referrals__text {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .referrals__text {
    text-align: center;
  }
}
.referrals__friend {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .referrals__friend {
    font-size: 13px;
  }
}
.referrals__info {
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
}
@media only screen and (max-width: 1023px) {
  .referrals__info {
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__info {
    font-size: 12px;
    margin-bottom: 32px;
  }
}
.referrals__box {
  display: flex;
  align-items: center;
  width: 70%;
}
@media only screen and (max-width: 1023px) {
  .referrals__box {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__box {
    width: 100%;
    display: flex;
  }
}
.referrals__box_left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  width: 100%;
  background: #fbfbfb;
  border: 1px solid #00ed7b;
  border-radius: 6px 0px 0px 6px;
  color: rgba(0, 0, 0, 0.5);
}
.referrals__box_left .code {
  color: #121314;
}
@media only screen and (max-width: 767px) {
  .referrals__box_left {
    padding: 16px 6px;
    text-align: center;
    width: 100%;
  }
}
body .dir-rtl .referrals__box_left {
  border-radius: 0px 6px 6px 0px;
}
.referrals__box_right1 {
  padding: 24px;
  background: rgb(99, 102, 241);
  border-radius: 0px 6px 6px 0px;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .referrals__box_right1 {
    padding: 18px 14px;
  }
}
body .dir-rtl .referrals__box_right1 {
  border-radius: 6px 0px 0px 6px;
}
.referrals__box_right2 {
  padding: 24px;
  background: rgb(99, 102, 241);
  border-radius: 0px 6px 6px 0px;
  color: #FFF;
}
@media only screen and (max-width: 1023px) {
  .referrals__box_right2 {
    padding: 35px 24px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__box_right2 {
    padding: 30px 10px;
  }
}
body .dir-rtl .referrals__box_right2 {
  border-radius: 6px 0px 0px 6px;
}
.referrals__link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .referrals__link {
    flex-direction: column-reverse;
    align-items: right;
    align-items: unset;
  }
}
.referrals__button {
  padding: 8px 16px 8px 24px;
  gap: 10px;
  margin-right: 12px;
}
@media only screen and (max-width: 1023px) {
  .referrals__button {
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__button {
    margin-top: 0px;
    height: auto;
  }
}
.referrals__button_table {
  padding: 0px 12px;
  font-size: 11px;
}
.referrals__Back {
  padding: 12px 12px 12px 6px;
  gap: 6px;
}
@media only screen and (max-width: 767px) {
  .referrals__Back {
    margin-top: 32px;
  }
}
.referrals__Back svg {
  transform: rotateY(360deg);
}
body .dir-rtl .referrals__Back svg {
  transform: rotateY(180deg);
}
body .dir-rtl .referrals__Back {
  padding: 12px 6px 12px 12px;
}
.referrals__body {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1023px) {
  .referrals__body {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__body {
    flex-direction: column;
  }
}
.referrals__left {
  width: 70%;
}
.referrals__left_top {
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px;
  background-color: rgb(234, 236, 239);
  height: 185px;
}
body.dark .referrals__left_top {
  background: rgba(233, 242, 255, 0.1);
}
@media only screen and (max-width: 767px) {
  .referrals__left_top {
    height: auto;
    padding: 16px;
  }
}
.referrals__left_down {
  margin-top: 24px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px 16px;
  background-color: rgba(0, 237, 123, 0.1);
  height: 260px;
}
@media only screen and (max-width: 767px) {
  .referrals__left_down {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__left {
    width: 100%;
  }
}
.referrals__overview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .referrals__overview {
    font-size: 12px;
  }
}
.referrals__history {
  display: flex;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  color: #00ed7b;
}
.referrals__history svg {
  margin-left: 6px;
  color: #00ed7b;
}
@media only screen and (max-width: 767px) {
  .referrals__history {
    font-size: 12px;
  }
}
.referrals__stats {
  display: flex;
  justify-content: space-between;
  color: rgb(20, 70, 58);
}
body.dark .referrals__stats {
  color: #b9b9b9;
}
@media only screen and (max-width: 1023px) {
  .referrals__stats {
    margin-top: 0px;
  }
}
.referrals__stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  width: 33%;
  border-right: 1px solid #00ed7b;
}
body .dir-rtl .referrals__stat {
  border-left: 1px solid #00ed7b;
  text-align: right;
  border-right: none;
}
.referrals__stat:last-child {
  border-right: none;
}
body .dir-rtl .referrals__stat:last-child {
  border-left: none;
}
.referrals__stat span:first-child {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1023px) {
  .referrals__stat span:first-child {
    line-height: 24px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__stat span:first-child {
    font-size: 11px;
  }
}
.referrals__stat span:last-child {
  font-size: 14px;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .referrals__stat span:last-child {
    font-size: 12px;
  }
}
.referrals__rules {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.referrals__lorem {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-top: 20px;
  line-height: 24px;
  text-align: left;
  color: #353945;
}
body.dark .referrals__lorem {
  color: #b9b9b9;
}
@media only screen and (max-width: 1023px) {
  .referrals__lorem {
    margin-top: 6px;
  }
}
body .dir-rtl .referrals__lorem {
  text-align: right;
}
.referrals__right {
  width: 30%;
  padding: 24px;
  background: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  overflow-y: auto;
}
body.dark .referrals__right {
  background: rgba(233, 242, 255, 0.1);
}
@media only screen and (max-width: 1023px) {
  .referrals__right {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__right {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
.referrals__faq {
  font-size: 14px;
  margin: 0px;
}
@media only screen and (max-width: 767px) {
  .referrals__faq {
    text-align: center;
  }
}
.referrals__view {
  display: flex;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  color: #00ed7b;
}
.referrals__view svg {
  margin-left: 6px;
  color: #00ed7b;
}
.referrals__line {
  border-bottom: 2px dashed #00ed7b;
}
.referrals__num {
  margin-right: 10px;
  color: rgba(1, 188, 141, 0.7);
  font-weight: 400;
}
.referrals__faqitem {
  padding: 16px 0px;
}
@media only screen and (max-width: 1023px) {
  .referrals__faqitem {
    padding: 0px;
  }
}
.referrals__faqitem--active {
  border-radius: 6px;
}
.referrals__question {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #121314;
  cursor: pointer;
}
body.dark .referrals__question {
  color: #fbfbfb;
}
@media only screen and (max-width: 1023px) {
  .referrals__question {
    font-size: 14px;
    padding: 12px 0px;
  }
}
@media only screen and (max-width: 321px) {
  .referrals__question {
    font-size: 12px;
  }
}
.referrals__question .icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
  fill: #777E90;
  transition: transform 0.2s;
}
body .dir-rtl .referrals__question .icon {
  margin-left: 0;
  margin-right: auto;
}
.referrals__answer {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  padding-top: 8px;
}
body.dark .referrals__answer {
  color: #b9b9b9;
}
@media only screen and (max-width: 1023px) {
  .referrals__answer {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__answer {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 321px) {
  .referrals__answer {
    font-size: 10px;
  }
}
body .dir-rtl .referrals__answer {
  text-align: auto;
  text-align: right;
}
.referrals__activity {
  overflow: hidden;
}
.referrals__activity_top {
  margin-top: 24px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px 16px;
  background-color: #FAFCFF;
  height: 333px;
  width: 100%;
  overflow-y: auto;
}
body.dark .referrals__activity_top {
  background: rgba(233, 242, 255, 0.1);
}
@media only screen and (max-width: 767px) {
  .referrals__activity_top {
    margin-top: 0px;
  }
}
.referrals__activity_down {
  overflow-y: auto;
  margin-top: 24px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px 16px;
  background-color: #FAFCFF;
  height: 333px;
  width: 100%;
}
body.dark .referrals__activity_down {
  background: rgba(233, 242, 255, 0.1);
}
.referrals__referral {
  display: flex;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
  margin-bottom: 20px;
}
body .dir-rtl .referrals__referral {
  text-align: right;
}
.referrals__rewards {
  margin-bottom: 20px;
}
.referrals__table {
  width: 100%;
}
.referrals__table__inner {
  display: table;
  width: 100%;
  overflow-y: scroll;
}
.referrals__table__row {
  display: table-row;
  background-color: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  padding: 0px 24px;
}
.referrals__table__row:first-child .referrals__table__col:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
body .dir-rtl .referrals__table__row:first-child .referrals__table__col:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.referrals__table__row:first-child .referrals__table__col:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
body .dir-rtl .referrals__table__row:first-child .referrals__table__col:last-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.referrals__table__rows {
  display: table-row;
  padding: 0px 24px;
}
.referrals__table__rows:last-child .referrals__table__col {
  border-bottom: none;
}
.referrals__table__rows:first-child .referrals__table__col {
  border-bottom: none;
}
.referrals__table__col {
  display: table-cell;
  padding: 6px 24px;
  text-align: left;
  font-weight: 500;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.referrals__table__col:first-child {
  width: 256px;
}
@media only screen and (max-width: 767px) {
  .referrals__table__col:first-child {
    width: 24px;
  }
}
.referrals__table__col:nth-child(2) {
  width: 284px;
}
.referrals__table__col:nth-child(3) {
  width: 240px;
}
.referrals__table__col:last-child {
  padding-right: 24px;
  text-align: right;
}
body .dir-rtl .referrals__table__col:last-child {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .referrals__table__col:last-child {
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__table__col:last-child {
    padding-right: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__table__col {
    padding: 4px 4px;
    font-size: 11px;
    font-weight: 400;
  }
}
body .dir-rtl .referrals__table__col {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .referrals__table__col {
    text-align: center;
  }
}
.referrals__camera {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.referrals_back {
  display: flex;
  margin-bottom: 16px;
  cursor: pointer;
}
body .dir-rtl .referrals_back {
  transform: rotateY(180deg);
}
.referrals__create {
  width: 100%;
  height: 118px;
  padding: 32px 24px;
  border: 1px solid #00ed7b;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.4) 0%, rgba(64, 149, 135, 0.4) 100%);
  border-radius: 6px;
}
body.dark .referrals__create {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.2) 0%, rgba(64, 149, 135, 0.2) 100%);
}
@media only screen and (max-width: 1023px) {
  .referrals__create {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__create {
    flex-direction: column;
    padding: 16px 12px;
    height: auto;
    display: block;
  }
}
body .dir-rtl .referrals__create {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(64, 149, 135, 0.2) 100%);
}
.referrals__create_description {
  display: flex;
  flex-direction: column;
}
body .dir-rtl .referrals__create_description {
  margin-bottom: 12px;
}
.referrals__create_title {
  font-size: 14px;
  font-weight: bold;
}
.referrals__create_subtitle {
  font-size: 14px;
  color: #00ed7b;
  margin-top: 8px;
  font-weight: 400;
  line-height: 25.2px;
  text-align: left;
}
body.dark .referrals__create_subtitle {
  color: rgb(234, 236, 239);
}
body .dir-rtl .referrals__create_subtitle {
  text-align: right;
}
.referrals__codehistory {
  padding: 24px;
  background-color: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  margin-top: 24px;
}
body.dark .referrals__codehistory {
  background: rgba(233, 242, 255, 0.1);
}
.referrals__card {
  margin-top: 24px;
  padding: 28px 24px;
  border: 1px solid #00ed7b;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  .referrals__card {
    overflow-y: auto;
  }
}
.referrals__card_header {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 24px;
}
.referrals__card_body {
  display: flex;
  flex-direction: column;
}
.referrals__details-row {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .referrals__details-row {
    flex-direction: column;
  }
}
.referrals__separator {
  border-top: 1px solid #00ed7b;
  margin: 20px 0;
}
.referrals__details-item {
  display: flex;
  flex-direction: column;
}
.referrals__details-item1 {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 1023px) {
  .referrals__details-item1 {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__details-item1 {
    padding-bottom: 16px;
  }
}
.referrals__label {
  font-size: 14px;
  margin-right: 6px;
}
.referrals__value {
  font-size: 14px;
  font-weight: bold;
  color: #00ed7b;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.referrals__value svg {
  cursor: pointer;
}
body.dark .referrals__value {
  color: rgb(234, 236, 239);
}
.referrals__commission {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.referrals_container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 570px;
  height: 470px;
  transform: translate(-50%, -45%);
  padding: 32px;
  border-radius: 6px;
  background: #fbfbfb;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0px 64px 64px -48px rgba(31, 47, 70, 0.12);
  z-index: 10002;
}
body.dark .referrals_container {
  background: #121314;
}
@media only screen and (max-width: 767px) {
  .referrals_container {
    width: 90%;
    height: auto;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.referrals__createpopup {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .referrals__createpopup {
    flex-direction: row;
  }
}
.referrals__codepopup {
  font-size: 18px;
  font-weight: 600;
  line-height: 23.4px;
  text-align: left;
}
.referrals__inviteespopup {
  color: #777E90;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  text-align: left;
  margin-top: 20px;
}
body .dir-rtl .referrals__inviteespopup {
  text-align: right;
}
.referrals__options {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.referrals__options_rate {
  border: 1px solid #00ed7b;
  color: #00ed7b;
  border-radius: 112px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.referrals__options_rate.active {
  background-color: #00ed7b;
  color: white;
}
@media only screen and (max-width: 767px) {
  .referrals__options {
    flex-direction: row;
  }
}
.referrals__availablepopup {
  margin-top: 20px;
}
.referrals__allocationpopup {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.referrals__labelpopup {
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  text-align: left;
}
.referrals__labelitem {
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  position: relative;
  padding-left: 20px;
}
body .dir-rtl .referrals__labelitem {
  padding-right: 20px;
  position: unset;
}
.referrals__labelitem::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #777E90;
  font-size: 18px;
}
body .dir-rtl .referrals__labelitem::before {
  position: unset;
}
.referrals__valueitem {
  color: #00ed7b;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
}
.referrals__valueitem_value2 {
  color: #FFD166;
}
.referrals__valuepopup {
  color: #00ed7b;
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  text-align: left;
}
.referrals__rate {
  display: flex;
  flex-direction: column;
}
.referrals__rate_item {
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  color: #777E90;
  display: flex;
  gap: 6px;
}
.referrals__remarks {
  color: #00ed7b;
  flex-direction: column;
  margin-top: 16px;
  margin-bottom: 10px;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}
body .dir-rtl .referrals__remarks {
  text-align: right;
}
.referrals__remarks_box {
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 12px;
  width: 100%;
}
.referrals__remarks_box:focus {
  border-color: #00ED7B;
  --tw-ring-color: $p4;
}
@media only screen and (max-width: 767px) {
  .referrals__remarks {
    padding: 6px;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .referrals__allbutton {
    margin-top: 24px;
  }
}
.referrals__buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
body .dir-rtl .referrals__buttons {
  direction: ltr;
}
.referrals__button_create {
  padding: 25px 100px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .referrals__button_create {
    padding: 25px 50px;
  }
}
.referrals__button_cancel {
  padding: 25px 100px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  color: #00ed7b;
  border-color: #00ed7b;
  background: rgba(0, 237, 123, 0.1);
}
@media only screen and (max-width: 767px) {
  .referrals__button_cancel {
    padding: 25px 50px;
  }
}

.keys__stage {
  font-size: 11px;
  line-height: 1.6666666667;
  color: #353945;
}
@media only screen and (max-width: 767px) {
  .keys__stage {
    margin-bottom: 12px;
  }
}
body.dark .keys__stage {
  color: #E6E8EC;
}
.keys__title {
  margin-bottom: 12px;
}
.keys__disabled .keys__title span {
  color: #FF6838;
}
.keys__enabled .keys__title span {
  color: #00ED7B;
}
.keys__email {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .keys__email {
    margin-bottom: 32px;
  }
}
.keys__email .icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  fill: #23262F;
}
body.dark .keys__email .icon {
  fill: #FCFCFD;
}
.keys__subtitle {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.keys__info {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #353945;
}
body.dark .keys__info {
  color: #E6E8EC;
}
.keys__row {
  display: flex;
  margin: 0 -8px;
}
@media only screen and (max-width: 767px) {
  .keys__row {
    display: block;
    margin: 0;
  }
}
.keys__row .field {
  position: relative;
  flex: 0 0 calc(50% - 16px);
  width: calc(50% - 16px);
  margin: 0 8px;
}
@media only screen and (max-width: 767px) {
  .keys__row .field {
    width: 100%;
    margin: 0;
  }
  .keys__row .field:not(:last-child) {
    margin-bottom: 16px;
  }
}
.keys__form .keys__button {
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .keys__form .keys__button {
    width: 100%;
  }
}
.keys__preview {
  margin-bottom: 48px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .keys__preview {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .keys__preview img {
    max-width: 300px;
  }
}
.keys__text {
  margin-bottom: 16px;
  text-align: center;
  font-weight: 500;
  color: #777E90;
}
.keys__confirm .keys__email {
  justify-content: center;
}
.keys__btns {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .keys__btns {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .keys__btns .keys__button {
    width: 100%;
  }
}
.keys__btns .keys__button:not(:last-child) {
  margin-right: 16px;
}
@media only screen and (max-width: 767px) {
  .keys__btns .keys__button:not(:last-child) {
    margin: 0 0 12px;
  }
}
.keys__item {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #E6E8EC;
}
@media only screen and (max-width: 767px) {
  .keys__item {
    margin-top: 24px;
    padding-top: 24px;
  }
}
body.dark .keys__item {
  border-color: #353945;
}
@media only screen and (max-width: 767px) {
  .keys__item:last-child .keys__button {
    width: 100%;
  }
}
.keys__group {
  margin-bottom: 24px;
}
.keys__box {
  position: relative;
}
.keys__box .field {
  position: relative;
  padding-right: 36px;
}
.keys__box .field__label {
  color: #23262F;
}
body.dark .keys__box .field__label {
  color: #777E90;
}
.keys__box .field__input {
  padding-right: 82px;
  border-color: #F4F5F6;
  background: #F4F5F6;
}
body.dark .keys__box .field__input {
  background: #23262F;
  border-color: #23262F;
}
.keys__box .field__input:focus {
  border-color: #00ED7B;
  background: transparent;
}
.keys__box:not(:last-child) {
  margin-bottom: 24px;
}
.keys__remove {
  position: absolute;
  right: 0;
  bottom: 12px;
}
.keys__remove .icon {
  width: 24px;
  height: 24px;
  fill: #777E90;
  transition: fill 0.2s;
}
.keys__remove:hover .icon {
  fill: #23262F;
}
.keys__category {
  position: absolute;
  right: 48px;
  bottom: 11px;
}
.keys__confirm, .keys__enabled {
  display: none;
}

.sessions__section:not(:last-child) {
  margin-bottom: 48px;
}
.sessions__title {
  margin-top: 60px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 1023px) {
  .sessions__title {
    margin-top: 50px;
    margin-bottom: 10px;
  }
}
.sessions__table {
  display: table;
  width: 100%;
}
.sessions__row {
  display: table-row;
}
.sessions__row:first-child .sessions__col {
  border-bottom: 1px solid #F4F5F6;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #353945;
}
body.dark .sessions__row:first-child .sessions__col {
  border-color: #23262F;
  color: #B1B5C3;
}
.sessions__row:not(:first-child):not(:last-child) .sessions__col {
  border-bottom: 1px solid #E6E8EC;
}
body.dark .sessions__row:not(:first-child):not(:last-child) .sessions__col {
  border-color: #353945;
}
.sessions__col {
  display: table-cell;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sessions__col:nth-child(2) {
  padding-left: 32px;
  padding-right: 32px;
}
@media only screen and (max-width: 1023px) {
  .sessions__col:nth-child(2) {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.sessions__col:last-child {
  text-align: right;
}
.sessions__content {
  font-weight: 500;
}
.sessions__content.referral {
  direction: ltr;
  float: right;
}
.sessions__note {
  color: #777E90;
}
.sessions__location, .sessions__status {
  min-width: 64px;
  text-align: center;
}
body.dark .sessions__location {
  background: #FCFCFD;
  color: #23262F;
}
.sessions__btns {
  margin-top: 36px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .sessions__btns {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .sessions__button {
    width: 100%;
  }
}

@media only screen and (max-width: 1023px) {
  .security {
    padding: 60px 0;
  }
}
.security__head {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.security__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 8px;
}
.security__level {
  display: flex;
  align-items: flex-end;
}
.security__level .title {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.security__level .levels {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.security__level_default {
  width: 36px;
  margin-right: 4px;
  border: 3px solid #DEECFF;
}
.security__level_one {
  width: 36px;
  margin-right: 4px;
  border: 3px solid #bd2828;
}
.security__level_tow {
  width: 36px;
  margin-right: 4px;
  border: 3px solid #BD9028;
}
.security__level_three {
  width: 36px;
  border: 3px solid #28bd55;
}
.security__box {
  padding: 24px 16px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  margin-bottom: 16px;
}
body.dark .security__box {
  background: rgba(233, 242, 255, 0.1);
}
.security__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid rgba(0, 237, 123, 0.1);
  border-radius: 6px;
}
.security__item:not(.security__item:last-child) {
  margin-bottom: 16px;
}
.security__item_left {
  display: flex;
  flex-direction: column;
  width: 70%;
}
@media only screen and (max-width: 1023px) {
  .security__item_left {
    width: 100%;
  }
}
.security__item_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
}
@media only screen and (max-width: 1023px) {
  .security__item_right {
    width: 100%;
  }
}
.security__item_title {
  font-size: 14px;
  font-weight: 600;
  line-height: 35px;
}
.security__item_content {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
}
body.dark .security__item {
  background: rgba(0, 237, 123, 0.1);
}
@media only screen and (max-width: 1023px) {
  .security__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.security__status {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 70%;
  font-size: 12px;
  font-weight: 500;
  line-height: 35px;
}
.security__status .set {
  display: flex;
  align-items: center;
  color: #0F9563;
}
body.dark .security__status .set svg path {
  fill: #0F9563;
}
.security__status .Unset {
  display: flex;
  align-items: center;
  color: #BD9028;
}
.security__status .icon {
  margin-right: 6px;
}
body .dir-rtl .security__status .icon {
  margin-right: 0px;
  margin-left: 6px;
}
body.dark .security__status svg path {
  fill: white;
}
.security__button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
}
.security__button button {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #00ed7b;
  cursor: pointer;
}
.security__button .icon {
  margin: 0 6px;
}
body .dir-rtl .security__button .icon {
  transform: rotateY(180deg);
}
.security__button svg path {
  fill: #00ed7b;
}
.security__2fa {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1023px) {
  .security__2fa {
    padding: 60px 0;
  }
}
.security__2fa_left {
  width: 70%;
  padding-right: 16px;
}
@media only screen and (max-width: 1023px) {
  .security__2fa_left {
    width: 100%;
    padding-right: 0;
  }
}
body .dir-rtl .security__2fa_left {
  padding-right: 0px;
  padding-left: 16px;
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .security__2fa_left {
    padding-left: 0;
  }
}
.security__2fa_right {
  width: 30%;
}
@media only screen and (max-width: 1023px) {
  .security__2fa_right {
    width: 100%;
    margin-top: 24px;
  }
}
.security__2fa_box {
  padding: 24px;
  background: rgba(86, 235, 190, 0.05);
  border: 1px solid rgba(0, 237, 123, 0.1);
  border-radius: 6px;
}
body.dark .security__2fa_box {
  background: rgba(244, 249, 255, 0.1019607843);
}
@media only screen and (max-width: 1023px) {
  .security__2fa_box {
    padding: 16px;
  }
}
.security__2fa_stage {
  margin-bottom: 24px;
}
.security__2fa_stage .download {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.security__2fa_stage .download__link {
  margin-right: 16px;
}
.security__2fa_content {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}
.security__2fa_note {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #BD9028;
}
.security__2fa_code {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  margin: 16px 0;
}
.security__2fa_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  margin: 16px 0 8px;
}
@media only screen and (max-width: 1023px) {
  .security__2fa {
    flex-direction: column;
  }
}
.security__2fa_mobile_back {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .security__2fa_mobile_back {
    margin: 12px 0;
    display: flex;
    align-items: center;
    color: #00ed7b;
  }
  .security__2fa_mobile_back svg {
    width: 12px;
    height: 12px;
    margin-left: 8px;
  }
}
.security__code {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.security__code input {
  width: 333px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1725490196);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20.8px;
  color: rgba(0, 0, 0, 0.5);
  padding: 13px 10px;
  background: transparent;
  transition: all 0.2s;
}
.security__code input:hover {
  border: 1px solid rgb(0, 177, 105);
}
body.dark .security__code input {
  color: #FCFCFD;
  border: 1px solid #FFFFFF;
}
.security__code input::-moz-placeholder {
  font-size: 14px;
  font-weight: 100;
  color: rgba(0, 0, 0, 0.168627451);
}
.security__code input::placeholder {
  font-size: 14px;
  font-weight: 100;
  color: rgba(0, 0, 0, 0.168627451);
}
body.dark .security__code input::-moz-placeholder {
  color: #FCFCFD;
}
body.dark .security__code input::placeholder {
  color: #FCFCFD;
}
.security__code input:focus {
  border: none;
  border-color: unset;
  --tw-ring-color: unset;
  box-shadow: unset;
}
@media only screen and (max-width: 1023px) {
  .security__code input {
    width: auto;
  }
}
.security__code_button {
  height: 44px;
  margin-left: 6px;
}
body .dir-rtl .security__code_button {
  margin-left: 0px;
  margin-right: 6px;
}
.security__password {
  padding: 24px;
  background: #F4F9FF;
  border: 1px solid rgba(0, 237, 123, 0.1);
  border-radius: 6px;
}
body.dark .security__password {
  background: rgba(12, 89, 66, 0.6);
}
@media only screen and (max-width: 1023px) {
  .security__password {
    margin: 60px 0;
  }
}
.security__password_note {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #BD9028;
  margin: 16px 0;
}
.security__password_label {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 12px;
}
.security__password_input {
  margin-bottom: 24px;
}
.security__password_input input {
  width: 420px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1725490196);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20.8px;
  color: rgba(0, 0, 0, 0.5);
  padding: 13px 10px;
  background: transparent;
  transition: all 0.2s;
}
body.dark .security__password_input input {
  color: #FCFCFD;
  border-color: #FFFFFF;
}
.security__password_input input::-moz-placeholder {
  font-size: 14px;
  font-weight: 100;
  color: rgba(0, 0, 0, 0.168627451);
}
.security__password_input input::placeholder {
  font-size: 14px;
  font-weight: 100;
  color: rgba(0, 0, 0, 0.168627451);
}
body.dark .security__password_input input::-moz-placeholder {
  color: #FCFCFD;
  opacity: 50%;
}
body.dark .security__password_input input::placeholder {
  color: #FCFCFD;
  opacity: 50%;
}
.security__password_input input:focus {
  border: none;
  border-color: unset;
  --tw-ring-color: unset;
  box-shadow: unset;
}
@media only screen and (max-width: 1023px) {
  .security__password_input input {
    width: auto;
  }
}
.security__password_button {
  height: 44px;
}
.security__password_mobile_back {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .security__password_mobile_back {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    color: #00ed7b;
  }
  .security__password_mobile_back svg {
    width: 12px;
    height: 12px;
    margin-left: 8px;
  }
}
.security__logs {
  padding: 24px;
  background: transparent;
}
.security__logs_container {
  width: 100%;
  height: 420px;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .security__logs {
    overflow-x: auto;
  }
}
.security__logs_table {
  display: table;
  width: 100%;
}
.security__logs_row {
  display: table-row;
}
.security__logs_row:first-child {
  background: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
  border: 1px solid rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
.security__logs_row:not(.security__logs_row:first-child) .security__logs_col {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.security__logs_col {
  display: table-cell;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.6980392157);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body.dark .security__logs_col {
  color: rgba(255, 255, 255, 0.6980392157);
}
.security__logs_mobile_back {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .security__logs_mobile_back {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #00ed7b;
  }
  .security__logs_mobile_back svg {
    width: 12px;
    height: 12px;
    margin-left: 8px;
  }
}
@media only screen and (max-width: 1023px) {
  .security__logs {
    padding: 0;
  }
}
.security__disabled .security__title span {
  color: #FF6838;
}
.security__enabled .security__title span {
  color: #00ED7B;
}
.security__text {
  margin-bottom: 40px;
  font-size: 11px;
  line-height: 1.6666666667;
  color: #777E90;
}
.security__text span {
  font-weight: 600;
  color: #23262F;
}
body.dark .security__text span {
  color: #FCFCFD;
}
.security__email {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.security__email .icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  fill: #23262F;
}
body.dark .security__email .icon {
  fill: #FCFCFD;
}
.security__subtitle {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.security__info {
  margin-bottom: 24px;
  color: #353945;
}
body.dark .security__info {
  color: #B1B5C3;
}
.security__row {
  display: flex;
  margin: 0 -8px;
}
@media only screen and (max-width: 767px) {
  .security__row {
    display: block;
    margin: 0;
  }
}
.security__row .field {
  position: relative;
  flex: 0 0 calc(50% - 16px);
  width: calc(50% - 16px);
  margin: 0 8px;
}
@media only screen and (max-width: 767px) {
  .security__row .field {
    width: 100%;
    margin: 0;
  }
  .security__row .field:not(:last-child) {
    margin-bottom: 16px;
  }
}
.security__details {
  max-width: 256px;
  margin: 64px auto 0;
  padding: 32px 48px;
  border-radius: 32px 32px 0 0;
  background: #FCFCFD;
}
body.dark .security__details {
  background: #353945;
}
.security__details .security__button {
  width: 100%;
  margin-top: 48px;
}
.security__btns {
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .security__btns {
    margin-top: 24px;
  }
  .security__btns .security__button {
    width: 100%;
  }
}
.security__enabled .security__button {
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .security__enabled .security__button {
    width: 100%;
  }
}
.security__disabled {
  display: none;
}

.password__form {
  max-width: 380px;
  margin: 0 auto;
}
.password__title {
  text-align: center;
}
.password__form .password__title {
  margin-bottom: 32px;
}
.password .field:not(:last-child) {
  margin-bottom: 32px;
}
.password__form .password__button {
  width: 100%;
}
.password__wrap {
  display: none;
  text-align: center;
}
.password__wrap .password__title {
  margin-bottom: 8px;
}
.password__info {
  margin-bottom: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.login {
  display: flex;
  padding: 32px;
}
@media only screen and (max-width: 1023px) {
  .login {
    background-image: url("/images/login-bg2.png");
    background-color: #cbcbcb;
    background-repeat: no-repeat;
    background-position: 90% 50%;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: soft-light;
    padding: 32px 16px;
  }
  body.dark .login {
    background-color: #23262F;
  }
}
.login__col {
  position: relative;
}
.login__col:first-child {
  flex-shrink: 0;
  width: 50%;
  min-height: 100vh;
  background-image: url("/images/login-bg2.png");
  border-radius: 12px;
  background-color: #23262F;
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: cover;
}
@media only screen and (max-width: 1023px) {
  .login__col:first-child {
    display: none;
  }
}
.login__col:nth-child(2) {
  position: relative;
  display: block;
  padding: 77px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .login__col:nth-child(2) {
    min-height: calc(var(--vh, 1vh) * 100);
    padding: 0;
  }
}
.login__home {
  display: flex;
  align-items: center;
  z-index: 999;
  position: absolute;
  top: 30px;
  left: 26px;
  padding: 12px;
  border-radius: 82px;
  background: rgba(0, 237, 123, 0.7);
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}
body .dir-rtl .login__home {
  left: auto;
  right: 26px;
}
.login__home .icon {
  margin-right: 8px;
}
body .dir-rtl .login__home .icon {
  margin-right: 0px;
  margin-left: 8px;
  transform: rotate(180deg);
}
.login__home.mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .login__home.mobile {
    display: flex;
    top: 24px;
    left: 0;
  }
}
.login__head {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 32px;
  font-size: 14px;
  line-height: 1.1428571429;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}
body .dir-rtl .login__head {
  font-family: "Vazirmatn", sans-serif;
}
@media only screen and (max-width: 1419px) {
  .login__head {
    margin: 0 auto 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .login__head {
    margin: 50px auto 25px;
  }
}
@media only screen and (max-width: 767px) {
  .login__head {
    position: static;
    margin: 33px auto;
    text-align: center;
  }
}
.login__head__left {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .login__head__left {
    margin-bottom: 10px;
  }
}
.login__head__right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .login__head__right {
    margin-bottom: 10px;
  }
}
.login__head .login__link {
  margin-left: 5px;
  color: #00ed7b;
  transition: color 0.2s;
}
body .dir-rtl .login__head .login__link {
  margin-right: 5px;
  margin-left: 0;
}
.login__head .login__link:hover {
  color: rgba(0, 237, 123, 0.1);
}
.login__logo {
  width: 138px;
  height: 38px;
  margin-bottom: 36px;
}
.login__logo img {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .login__logo {
    display: none;
  }
}
.login__wrap {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .login__wrap {
    padding-top: 100px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1023px) {
  .login__wrap.fa {
    padding-top: 10px;
  }
}
.login__title {
  margin-bottom: 32px;
  text-align: center;
}
.login__form .login__info {
  text-align: center;
  font-size: 11px;
  line-height: 1.6666666667;
  color: #777E90;
}
.login__form .login__button, .login__new .login__button {
  width: 100%;
}
.login__form .login__button {
  margin-top: 32px;
}
.login__foot {
  margin-top: 24px;
  text-align: center;
}
.login__form .login__link {
  font-size: 14px;
  line-height: 1.1428571429;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: #23262F;
  transition: color 0.2s;
}
body .dir-rtl .login__form .login__link {
  font-family: "Vazirmatn", sans-serif;
}
body.dark .login__form .login__link {
  color: #FCFCFD;
}
.login__form .login__link:hover {
  color: #37ffbc;
}
.login__verification .login__title {
  margin: 0 -5px 32px;
  text-align: center;
}
.login__note {
  margin-bottom: 4px;
  text-align: center;
  font-size: 11px;
  line-height: 1.6666666667;
  color: #353945;
}
body.dark .login__note {
  color: #777E90;
}
.login__text {
  margin-bottom: 24px;
  text-align: center;
  color: #777E90;
}
.login__text span {
  font-weight: 500;
  color: #23262F;
}
body.dark .login__text span {
  color: #FCFCFD;
}
.login__numbers {
  display: flex;
  margin: 0 -8px 32px;
}
.login__number {
  flex: 0 0 calc(25% - 16px);
  width: calc(25% - 16px);
  margin: 0 8px;
}
.login__number input {
  width: 100%;
  height: 96px;
  border-radius: 8px;
  border: 1px solid #F4F5F6;
  background: #F4F5F6;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #23262F;
  transition: all 0.2s;
}
.login__number input:focus {
  border-color: #E6E8EC;
  background: #FCFCFD;
}
body.dark .login__number input {
  background: #23262F;
  border-color: #23262F;
  color: #FCFCFD;
}
body.dark .login__number input:focus {
  background: none;
  border-color: #353945;
}
.login__btns {
  display: flex;
  justify-content: space-between;
}
.login__new .field:not(:last-child) {
  margin-bottom: 32px;
}
.login__verification, .login__new {
  display: none;
}
.login__options {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.login__options .option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22%;
  margin-right: 16px;
  padding: 12px;
  background: rgba(233, 242, 255, 0.4);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.52px;
}
body.dark .login__options .option {
  background: rgba(233, 242, 255, 0.1019607843);
}
@media only screen and (max-width: 1023px) {
  body.dark .login__options .option {
    color: #fbfbfb;
  }
}
.login__options .option:hover {
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .login__options .option {
    width: 48%;
    background: rgba(0, 0, 0, 0.1019607843);
  }
}
.login__options .icon {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}
body .dir-rtl .login__options .icon {
  margin-right: 0px;
  margin-left: 6px;
}
.login__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.login__links .link {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
}
.login__links .link:hover {
  color: #00ed7b;
}
body.dark .login__links .link {
  color: rgba(255, 255, 255, 0.6);
}
body.dark .login__links .link:hover {
  color: #00ed7b;
}

.entry__top {
  margin-bottom: 32px;
  text-align: left;
}
body .dir-rtl .entry__top {
  text-align: right;
}
.entry__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}
@media only screen and (max-width: 1023px) {
  body.dark .entry__title {
    color: #fbfbfb;
  }
}
.entry__info {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #121314;
  opacity: 40%;
}
.entry__info.reset {
  margin-bottom: 32px;
}
body.dark .entry__info {
  color: #fbfbfb;
}
@media only screen and (max-width: 1023px) {
  .entry__info {
    opacity: 70%;
  }
}
.entry__correct {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 24px;
  background: #F4F5F6;
  border-radius: 6px;
  font-weight: 500;
  color: #00ED7B;
}
body.dark .entry__correct {
  background: #353945;
}
.entry__correct .icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  fill: #00ED7B;
}
.entry__correct span {
  color: #23262F;
}
body.dark .entry__correct span {
  color: #FCFCFD;
}
.entry .nav {
  justify-content: center;
  margin-bottom: 32px;
}
.entry .nav__link:not(:last-child) {
  margin-right: 24px;
}
.entry__container {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1023px) {
  .entry__container {
    margin-bottom: 40px;
  }
}
.entry__item {
  margin-bottom: 16px;
}
.entry__line {
  display: flex;
  align-items: flex-end;
}
.entry__line .field:first-child {
  flex-shrink: 0;
  width: 128px;
  margin-right: 8px;
}
.entry__line .field:nth-child(2) {
  flex-grow: 1;
}
.entry__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.entry__foot .entry__link {
  color: #00ed7b;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: right;
  transition: color 0.1s;
  cursor: pointer;
  text-decoration: underline;
}
.entry__foot .entry__link:hover {
  color: #121314;
}
body.dark .entry__foot .entry__link:hover {
  color: #fbfbfb;
}
.entry__remember {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
}
@media only screen and (max-width: 1023px) {
  .entry__remember .checkbox__tick {
    border-color: #00ed7b;
  }
  body.dark .entry__remember .checkbox__tick {
    border-color: #00ed7b;
  }
}
.entry__form {
  width: 100%;
  margin-top: 32px;
}
.entry__button {
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  color: #fbfbfb;
}
.entry__button:hover {
  color: #00ed7b;
}
.entry__register {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 40px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.52px;
}
.entry__register .link {
  font-size: 14px;
  font-weight: 600;
  color: #00ed7b;
  margin-left: 6px;
}
body .dir-rtl .entry__register .link {
  margin-left: 0px;
  margin-right: 6px;
}
@media only screen and (max-width: 1023px) {
  body.dark .entry__register {
    color: #fbfbfb;
  }
}
.entry__continue {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
}
.entry__continue::after, .entry__continue::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
body.dark .entry__continue::after, body.dark .entry__continue::before {
  border-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 1023px) {
  .entry__continue::after, .entry__continue::before {
    width: 30%;
  }
}
.entry__continue::before {
  left: 0;
}
.entry__continue::after {
  right: 0;
}
@media only screen and (max-width: 1023px) {
  body.dark .entry__continue {
    color: #fbfbfb;
  }
}
.entry__box {
  display: flex;
  margin-top: 32px;
  background: #F4F5F6;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .entry__box {
    margin-bottom: -32px;
    background: none;
  }
}
body.dark .entry__box {
  background: #23262F;
}
@media only screen and (max-width: 767px) {
  body.dark .entry__box {
    background: none;
  }
}
.entry__details {
  max-width: 256px;
  margin: 64px auto 0;
  padding: 32px 48px;
  border-radius: 32px 32px 0 0;
  background: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  .entry__details {
    margin-top: 0;
    background: #F4F5F6;
  }
}
body.dark .entry__details {
  background: #353945;
}
.entry__code {
  padding: 16px;
  border-radius: 8px;
  border: 2px dashed #37ffbc;
}
.entry__code img {
  width: 100%;
  border-radius: 8px;
}
.entry__wrap {
  display: none;
}
.entry__wrap .entry__button {
  width: 100%;
  margin-top: 48px;
}
body.dark .entry__wrap .entry__button {
  box-shadow: inset 0 0 0 2px #777E90;
}
body.dark .entry__wrap .entry__button:hover {
  box-shadow: inset 0 0 0 2px #B1B5C3;
}

.registration__top {
  margin-bottom: 32px;
  text-align: left;
  text-align: right;
}
.registration__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}
@media only screen and (max-width: 1023px) {
  body.dark .registration__title {
    color: #fbfbfb;
  }
}
.registration__info {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #121314;
  opacity: 40%;
}
body.dark .registration__info {
  color: #fbfbfb;
}
@media only screen and (max-width: 1023px) {
  .registration__info {
    font-size: 12px;
    opacity: 70%;
  }
}
.registration .field:not(:last-child) {
  margin-bottom: 32px;
}
.registration .checkbox__text {
  font-weight: 400;
  color: #121314;
}
body.dark .registration .checkbox__text {
  color: #777E90;
}
@media only screen and (max-width: 1023px) {
  body.dark .registration .checkbox__text {
    color: #fbfbfb;
  }
}
@media only screen and (max-width: 1023px) {
  .registration .checkbox__tick {
    border-color: #777E90;
  }
}
@media only screen and (max-width: 1023px) {
  body.dark .registration .checkbox__tick {
    border-color: #fbfbfb;
  }
}
.registration .checkbox__link {
  font-weight: 500;
}
.registration__form > .registration__button, .registration__confirm .registration__button {
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  color: #fbfbfb;
  margin-top: 32px;
}
.registration__form > .registration__button:hover, .registration__confirm .registration__button:hover {
  color: #00ed7b;
}
.registration__form > .registration__info, .registration__confirm .registration__info {
  margin-bottom: 32px;
}
.registration__code .registration__info {
  margin-bottom: 12px;
}
.registration__variants {
  display: flex;
  flex-direction: column;
}
.registration .radio:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E6E8EC;
}
body.dark .registration .radio:not(:last-child) {
  border-color: #353945;
}
.registration__numbers {
  display: flex;
  margin: 0 -8px;
}
.registration__number {
  flex: 0 0 calc(25% - 16px);
  width: calc(25% - 16px);
  margin: 0 8px;
}
.registration__number input {
  width: 100%;
  height: 96px;
  border-radius: 8px;
  border: 1px solid #F4F5F6;
  background: #F4F5F6;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #23262F;
  transition: all 0.2s;
}
body .dir-rtl .registration__number input {
  font-family: "Vazirmatn", sans-serif;
}
.registration__number input:focus {
  border-color: #E6E8EC;
  background: #FCFCFD;
}
body.dark .registration__number input {
  background: #23262F;
  border-color: #23262F;
  color: #FCFCFD;
}
body.dark .registration__number input:focus {
  background: none;
  border-color: #353945;
}
.registration__confirm, .registration__code {
  display: none;
}
.registration__validation {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.registration__validation_error {
  color: #454545;
  font-size: 12px;
}
@media only screen and (max-width: 1023px) {
  .registration__validation_error {
    color: #777E90;
  }
}
.registration__validation_valid {
  color: green;
}

.radio {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.radio__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.radio__input:checked + .radio__inner .radio__tick:before {
  transform: translate(-50%, -50%) scale(1);
}
.radio__inner {
  display: flex;
}
.radio__inner:hover .radio__tick {
  border-color: #37ffbc;
}
.radio__tick {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 50%;
  border: 2px solid #E6E8EC;
  transition: all 0.2s;
}
body.dark .radio__tick {
  background: #181617;
  border-color: #353945;
}
.radio__tick:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #37ffbc;
  transition: transform 0.2s;
}
.radio__text {
  line-height: 1.7142857143;
  color: #23262F;
}
body.dark .radio__text {
  color: #FCFCFD;
}
.radio__phone {
  display: block;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
}
.radio__email {
  font-weight: 500;
}

.popup {
  width: 100%;
  max-width: 448px;
  margin: auto;
  padding: 32px;
  background: #FCFCFD;
  border-radius: 20px;
  box-shadow: 0px 64px 64px -48px rgba(31, 47, 70, 0.12);
  z-index: 2;
}
body.dark .popup {
  background: #23262F;
}
@media only screen and (max-width: 767px) {
  .popup {
    padding: 32px 16px;
  }
}
.popup__title {
  margin-bottom: 32px;
  padding-right: 56px;
}
@media only screen and (max-width: 767px) {
  .popup__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }
}
.popup__title .icon {
  position: relative;
  top: -2px;
  width: 32px;
  height: 32px;
  margin-right: 16px;
}
@media only screen and (max-width: 767px) {
  .popup__title .icon {
    top: 0;
    margin-right: 8px;
  }
}
body.dark .popup__title .icon {
  fill: #FCFCFD;
}
.popup .field:not(:last-child),
.popup .checkbox:not(:last-child), .popup__wrap:not(:last-child), .popup__sign:not(:last-child), .popup__list:not(:last-child), .popup__percent:not(:last-child) {
  margin-bottom: 32px;
}
body.dark .popup .select {
  background: none;
}
.popup__wrap {
  display: flex;
  padding: 20px 24px;
  border-radius: 4px;
  background: #F4F5F6;
}
body.dark .popup__wrap {
  background: #353945;
}
.popup__wrap .popup__category {
  margin-right: auto;
  font-weight: 500;
  color: #353945;
}
body.dark .popup__wrap .popup__category {
  color: #E6E8EC;
}
.popup__wrap .popup__details {
  text-align: right;
}
.popup__currency {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.popup__wrap .popup__price {
  color: #777E90;
}
.popup__sign {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E6E8EC;
}
.popup__sign.swap {
  margin: 3rem auto;
}
.popup__sign .icon {
  width: 16px;
  height: 16px;
  fill: #353945;
}
body.dark .popup__sign {
  background: #353945;
}
body.dark .popup__sign .icon {
  fill: #E6E8EC;
}
.popup__line {
  display: flex;
  justify-content: space-between;
}
.popup__line:not(:last-child) {
  margin-bottom: 16px;
}
.popup__line .popup__category {
  font-weight: 500;
  color: #353945;
}
body.dark .popup__line .popup__category {
  color: #E6E8EC;
}
.popup__line .popup__details {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .popup__line .popup__details {
    position: relative;
    top: 2px;
  }
}
.popup__line .popup__price {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .popup__line .popup__price {
    font-size: 14px;
  }
}
.popup__line .popup__note {
  color: #777E90;
}
.popup__percent {
  display: flex;
  justify-content: space-between;
}
.popup__percent .popup__button {
  height: 24px;
  padding: 0 16px;
  border-radius: 12px;
}
.popup > .popup__button {
  width: 100%;
}
.popup .mfp-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: normal;
  opacity: 1;
  border: 1px solid #E6E8EC;
  background: #FCFCFD url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='15' fill='none' viewBox='0 0 14 15'%3E%3Cpath fill-rule='evenodd' d='M.293 1.289a1 1 0 0 1 1.414 0L7 6.582l5.293-5.293a1 1 0 0 1 1.414 1.414L8.414 7.996l5.293 5.293a1 1 0 0 1-1.414 1.414L7 9.41l-5.293 5.293a1 1 0 0 1-1.414 0 1 1 0 0 1 0-1.414l5.293-5.293L.293 2.703a1 1 0 0 1 0-1.414z' fill='%2323262F'/%3E%3C/svg%3E") no-repeat 50% 50%/14px auto;
  font-size: 0;
  transition: all 0.2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 767px) {
  .popup .mfp-close {
    top: 28px;
    right: 16px;
  }
}
body.dark .popup .mfp-close {
  border-color: #353945;
  background-color: #23262F;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23FCFCFD' d='M1.613.2l.094.083L5 3.585 8.293.293a1 1 0 0 1 1.414 0 1 1 0 0 1 .083 1.32l-.083.094L6.415 5l3.292 3.293a1 1 0 0 1-1.32 1.497l-.094-.083L5 6.415 1.707 9.707A1 1 0 0 1 .21 8.387l.083-.094L3.585 5 .293 1.707a1 1 0 0 1 0-1.414A1 1 0 0 1 1.613.21z'/%3E%3C/svg%3E");
}
.popup .mfp-close:hover {
  border-color: #E6E8EC;
}
body.dark .popup .mfp-close:hover {
  border-color: #FCFCFD;
}

.mfp-container {
  padding: 48px;
}
@media only screen and (max-width: 767px) {
  .mfp-container {
    padding: 16px 8px;
  }
}

@media (max-width: 900px) {
  .mfp-container {
    padding: 16px 8px;
  }
}
.mfp-bg {
  background: rgba(24, 22, 23, 0.5);
}
body.dark .mfp-bg {
  background: rgba(24, 22, 23, 0.75);
}

.mfp-zoom-in .popup {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.2s ease-out;
}
.mfp-zoom-in.mfp-ready .popup {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}
.mfp-zoom-in.mfp-removing .popup {
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.wallet {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1023px) {
  .wallet.desktop {
    display: none;
  }
}
.wallet.mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .wallet.mobile {
    display: block;
    padding: 32px 16px;
  }
}
body.dark .wallet {
  background: #010101;
}
.wallet__sidebar {
  width: 16%;
  border-right: 1px solid rgba(0, 0, 0, 0.1490196078);
}
body.dark .wallet__sidebar {
  border-color: rgba(233, 242, 255, 0.2);
}
@media only screen and (max-width: 1023px) {
  .wallet__sidebar {
    display: none;
  }
}
body .dir-rtl .wallet__sidebar {
  border-left: 1px solid rgba(0, 0, 0, 0.1490196078);
}
.wallet__sidebar_mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .wallet__sidebar_mobile {
    position: relative;
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 64px 0 0;
    border-radius: 12px;
    background: #FCFCFD;
    box-shadow: inset 0 0 0 2px #E6E8EC;
    font-weight: 500;
    transition: all 0.2s;
  }
  body.dark .wallet__sidebar_mobile {
    background: #18191D;
    box-shadow: inset 0 0 0 2px #353945;
  }
  .wallet__sidebar_mobile:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M16.207 9.793a1 1 0 0 0-1.414 0L12 12.586 9.207 9.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0 0-1.414z' fill='%23777e91'/%3E%3C/svg%3E") no-repeat 50% 50%/100% auto;
    transition: transform 0.2s;
  }
}
.wallet__wrapper {
  width: 84%;
  padding: 24px;
}
@media only screen and (max-width: 1023px) {
  .wallet__wrapper {
    width: 100%;
    padding: 0;
  }
}
.wallet__link {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #00ed7b;
  transition: color 0.1s;
  cursor: pointer;
}
.wallet__link:not(.wallet__link:last-child) {
  border-bottom: 1px solid #E9F2FF;
}
body.dark .wallet__link:not(.wallet__link:last-child) {
  border-color: rgba(233, 242, 255, 0.2);
}
.wallet__link svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
body .dir-rtl .wallet__link svg {
  margin-right: 0px;
  transform: rotateY(180deg);
  margin-left: 12px;
}
.wallet__link:hover, .wallet__link.active {
  background: #00ed7b;
  color: #fbfbfb;
  font-weight: 600;
}
.wallet__link:hover .soon, .wallet__link.active .soon {
  color: #fbfbfb;
}
.wallet__link:hover svg, .wallet__link.active svg {
  fill: #fbfbfb;
}
.wallet__link .soon {
  color: rgb(99, 102, 241);
}
.wallet__link .arrow {
  margin-left: auto;
  margin-right: 0;
  fill: #00ed7b;
}
.wallet__link.mob {
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  margin-bottom: 16px;
  border: none !important;
}
body.dark .wallet__link.mob {
  background: rgba(0, 237, 123, 0.1);
  color: #fbfbfb;
}
.wallet .items {
  padding-bottom: 8px;
  animation: rotateY 300ms ease-in-out forwards;
  transform-origin: top center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3019607843);
}
@media only screen and (max-width: 1023px) {
  .wallet .items {
    margin-left: 24px;
  }
}
.wallet .items .wallet__link {
  padding: 16px 52px;
}
@media only screen and (max-width: 1023px) {
  .wallet .items .wallet__link {
    padding: 16px;
  }
}
.wallet__overview {
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
  background-color: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
}
body.dark .wallet__overview {
  background: rgba(234, 236, 239, 0);
}
.wallet__overview_left {
  width: 63%;
  padding-right: 56px;
}
@media only screen and (max-width: 1023px) {
  .wallet__overview_left {
    width: 100%;
    padding-right: 0;
  }
}
body .dir-rtl .wallet__overview_left {
  padding-left: 16px;
  padding-right: 0px;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .wallet__overview_left {
    padding-left: 0px;
  }
}
.wallet__overview_right {
  width: 37%;
}
@media only screen and (max-width: 1023px) {
  .wallet__overview_right {
    width: 100%;
  }
}
.wallet__title {
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 32px;
}
.wallet__subtitle {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.wallet__show {
  display: flex;
  color: #6b6b6b;
  align-items: center;
  margin: 24px 0 16px;
  font-size: 14px;
  font-weight: 300;
  line-height: 17.07px;
  cursor: pointer;
}
.wallet__show svg {
  margin-left: 8px;
}
body .dir-rtl .wallet__show svg {
  margin-right: 8px;
  margin-left: 0px;
}
.wallet__show .usd {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
}
.wallet__balance {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.wallet__balance .balance_num {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.26px;
  margin-right: 6px;
}
.wallet__balance .usdt {
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
}
.wallet .format {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
}
.wallet .balance_hidden {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.26px;
}
.wallet__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.wallet__item svg {
  margin-right: 12px;
}
body .dir-rtl .wallet__item svg {
  margin-right: 0px;
  margin-left: 12px;
}
.wallet__details {
  display: flex;
  flex-direction: column;
}
.wallet__description {
  font-size: 14px;
  font-weight: 300;
  line-height: 17.07px;
  margin-bottom: 16px;
}
.wallet__cart {
  display: flex;
  align-items: center;
  padding: 24px;
  background-color: rgba(0, 237, 123, 0.1);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  margin-bottom: 24px;
}
.wallet__cart .icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
body .dir-rtl .wallet__cart .icon {
  margin-right: 0px;
  margin-left: 12px;
}
.wallet__cart .flash {
  width: 28px;
  height: 28px;
  margin-left: auto;
}
.wallet__cart .flash svg {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .wallet__cart .flash svg {
    width: 16px;
  }
}
body .dir-rtl .wallet__cart .flash {
  transform: rotateY(180deg);
}
body.dark .wallet__cart .flash:hover svg path {
  fill: #fbfbfb;
}
body .dir-rtl .wallet__cart .flash {
  margin-left: unset;
  margin-right: auto;
}
.wallet__cart:hover {
  background: transparent;
}
.wallet__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 35px;
  color: #00ed7b;
}
body .dir-rtl .wallet__text {
  text-align: right;
}
.wallet .text_info {
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #777E90;
}
body .dir-rtl .wallet .text_info {
  text-align: right;
}
body.dark .wallet .text_info {
  color: #B1B5C3;
}
@media only screen and (max-width: 767px) {
  .wallet .text_info {
    width: 95%;
  }
}
.wallet__trading {
  padding: 24px;
  background-color: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
}
.wallet__trading_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 32px;
}
body.dark .wallet__trading_head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media only screen and (max-width: 767px) {
  .wallet__trading_head {
    flex-direction: column;
    align-items: unset;
    font-size: 16px;
  }
}
.wallet__trading_btns {
  display: flex;
  align-items: center;
}
.wallet__trading_btns .button_link:not(.wallet__trading_btns .button_link:last-child) {
  margin-right: 12px;
}
body .dir-rtl .wallet__trading_btns .button_link:not(.wallet__trading_btns .button_link:last-child) {
  margin-right: 0px;
  margin-left: 12px;
}
@media only screen and (max-width: 767px) {
  .wallet__trading_btns {
    margin-top: 16px;
  }
}
.wallet__trading_search {
  position: relative;
  margin-right: 12px;
}
.wallet__trading_search .search_icon {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 0;
}
.wallet__trading_search .search_icon svg {
  width: 20px;
  height: 20px;
}
body .dir-rtl .wallet__trading_search .search_icon {
  right: auto;
  left: 8px;
}
@media only screen and (max-width: 767px) {
  .wallet__trading_search {
    display: none;
  }
}
body .dir-rtl .wallet__trading_search {
  margin-right: 0px;
  margin-left: 12px;
}
.wallet__trading_input {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #23262F;
  transition: border-color 0.2s;
  font-size: 13px;
  line-height: 1.6666666667;
}
body.dark .wallet__trading_input {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(234, 236, 239, 0.1);
  color: #FCFCFD;
}
.wallet__trading_input::-moz-placeholder {
  color: #777E90;
}
.wallet__trading_input::placeholder {
  color: #777E90;
}
body.dark .wallet__trading_input::-moz-placeholder {
  color: #FCFCFD;
}
body.dark .wallet__trading_input::placeholder {
  color: #FCFCFD;
}
.wallet__trading_input:focus {
  border-color: #00ED7B;
}
.wallet__trading_note {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  padding: 12px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  margin: 32px 0;
}
.wallet__trading_container {
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .wallet__trading_container {
    scrollbar-width: none;
    overflow-x: scroll;
  }
}
.wallet__trading_table {
  display: table;
  width: 100%;
}
.wallet__trading_row {
  display: table-row;
}
.wallet__trading_row:first-child .wallet__trading_col {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  text-align: right;
}
body.dark .wallet__trading_row:first-child .wallet__trading_col {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.wallet__trading_col {
  display: table-cell;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wallet__trading_col:last-child {
  text-align: right;
  direction: ltr;
}
.wallet__trading_col .link {
  background: none;
  color: #00ed7b;
  padding-right: 0;
}
body.dark .wallet__trading {
  background: rgba(159, 216, 202, 0.1);
}
@media only screen and (max-width: 767px) {
  .wallet__trading {
    padding: 16px;
  }
}
.wallet__no_result {
  width: 100%;
  margin: 0 auto;
}
.wallet__no_result svg {
  width: 100%;
}
.wallet__back {
  margin-right: 12px;
}
.wallet__back .icon {
  width: 32px;
  height: 32px;
  fill: #777E90;
  transition: fill 0.2s;
}
.wallet__back:hover .icon {
  fill: #23262F;
}
.wallet__control {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .wallet__control {
    display: none;
  }
}
.wallet__control .wallet__button:not(:last-child) {
  margin-right: 12px;
}
.wallet__wrap {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .wallet__wrap {
    flex-wrap: wrap;
  }
}
.wallet .subscription {
  width: 256px;
  margin-right: 8px;
}
body .dir-rtl .wallet .subscription {
  margin-right: 0;
  margin-left: 8px;
}
@media only screen and (max-width: 1179px) {
  .wallet .subscription {
    width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .wallet .subscription {
    width: 100%;
    margin: 0 0 16px;
  }
}
.wallet .subscription__input {
  height: 40px;
  font-size: 12px;
}
.wallet .subscription__btn {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: none;
}
.wallet .subscription__btn .icon {
  width: 20px;
  height: 20px;
  fill: #777E90;
  transition: fill 0.2s;
}
.wallet .subscription__btn:hover .icon {
  fill: #23262F;
}
body.dark .wallet .subscription__btn:hover .icon {
  fill: #FCFCFD;
}
.wallet .select {
  width: 104px;
  height: 40px;
  margin-right: 8px;
  line-height: 40px;
  background: #E6E8EC;
  border-radius: 6px;
}
body.dark .wallet .select {
  background: #353945;
}
.wallet__info {
  margin-bottom: 4px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .wallet__info {
    font-size: 11px;
    margin-bottom: 10px;
  }
}
.wallet__currency {
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .wallet__currency {
    display: block;
  }
}
body .dir-rtl .wallet__currency {
  flex-direction: row-reverse;
  text-align: right;
}
.wallet__number {
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 767px) {
  .wallet__number {
    font-size: 14px !important;
    margin-bottom: 5px;
  }
}
body .dir-rtl .wallet__number {
  padding-right: 6px;
}
.wallet__category {
  margin-left: 8px;
}
body .dir-rtl .wallet__category {
  margin-left: 0;
  margin-right: 8px;
}
@media only screen and (max-width: 767px) {
  .wallet__category {
    margin-left: 0;
  }
}
.wallet__price {
  font-size: 16px;
  line-height: 1.5;
  color: #777E90;
}
.wallet__head {
  padding: 20px 32px 8px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 500;
  color: #777E90;
}
@media only screen and (max-width: 767px) {
  .wallet__head {
    padding: 20px 0 8px;
  }
}
@media only screen and (max-width: 1023px) {
  .wallet__dropdown {
    position: relative;
    z-index: 5;
  }
  .wallet__dropdown.active .wallet__top:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .wallet__dropdown.active .wallet__menu {
    visibility: visible;
    opacity: 1;
  }
}
.wallet__body {
  background: #FCFCFD;
  border-radius: 4px;
  overflow: hidden;
}
body.dark .wallet__body {
  background: #18191D;
}
@media only screen and (max-width: 1023px) {
  .wallet__body {
    margin-bottom: 66px;
  }
}
@media only screen and (max-width: 767px) {
  .wallet__details:last-child {
    text-align: right;
  }
  .wallet__details:nth-child(2) {
    text-align: left;
  }
}
.wallet__transaction {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1023px) {
  .wallet__transaction {
    display: block;
    padding: 32px 16px 16px;
  }
}
body.dark .wallet__transaction {
  background: #181617;
}
.wallet__transaction_body {
  width: 84%;
  padding: 24px;
}
@media only screen and (max-width: 1023px) {
  .wallet__transaction_body {
    width: 100%;
    padding: 0;
  }
}
.wallet__transaction_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.wallet__transaction_search {
  position: relative;
  width: 25%;
}
.wallet__transaction_input {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #23262F;
  transition: border-color 0.2s;
  font-size: 13px;
  line-height: 1.6666666667;
}
body.dark .wallet__transaction_input {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(234, 236, 239, 0.1);
  color: #FCFCFD;
}
.wallet__transaction_input::-moz-placeholder {
  color: #777E90;
}
.wallet__transaction_input::placeholder {
  color: #777E90;
}
body.dark .wallet__transaction_input::-moz-placeholder {
  color: #FCFCFD;
}
body.dark .wallet__transaction_input::placeholder {
  color: #FCFCFD;
}
.wallet__transaction_input:focus {
  border-color: #00ED7B;
}
.wallet__transaction .icon {
  position: absolute;
  top: 12px;
  right: 8px;
}
body .dir-rtl .wallet__transaction .icon {
  left: 8px;
  right: unset;
}
.wallet__transaction_container {
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  overflow: scroll;
}
.wallet__transaction_container .table_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}
.wallet__transaction_container .table_tabs {
  display: flex;
  align-items: center;
}
.wallet__transaction_container .table_tabs .tab {
  padding: 4px 16px;
  margin: 0 8px;
  color: #848E9C;
  cursor: pointer;
}
.wallet__transaction_container .table_tabs .tab.active {
  border-bottom: 1px solid #00ed7b;
  color: #121314;
}
.wallet__transaction_table {
  display: table;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .wallet__transaction_table {
    display: block;
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 1023px) {
  .wallet__transaction_table {
    display: block;
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 1023px) {
  .wallet__transaction .fix-w {
    width: 100%;
  }
}

@keyframes rotateY {
  0% {
    transform: rotateY(90deg);
  }
  80% {
    transform: rotateY(-10deg);
  }
  100% {
    transform: rotateY(0);
  }
}
.successfully {
  padding-top: 40px;
}
.successfully__title {
  margin-bottom: 32px;
  text-align: center;
}
.successfully__info {
  max-width: 280px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.successfully__info span {
  color: #00ED7B;
}
.successfully__list {
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #E6E8EC;
}
@media only screen and (max-width: 767px) {
  .successfully__list {
    padding: 24px 16px;
  }
}
body.dark .successfully__list {
  border-color: #353945;
}
.successfully__item:first-child {
  margin-right: auto;
}
.successfully__item:first-child .successfully__content {
  color: #00ED7B;
}
.successfully__item:nth-child(3) {
  flex: 0 0 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E6E8EC;
}
body.dark .successfully__item:nth-child(3) {
  border-color: #353945;
}
.successfully__category {
  margin-bottom: 10px;
  color: #777E90;
}
.successfully__content {
  font-weight: 500;
  color: #23262F;
}
body.dark .successfully__content {
  color: #FCFCFD;
}
.successfully > .successfully__button {
  width: 100%;
  margin-top: 32px;
}
.successfully__btns {
  display: flex;
  margin: 32px -8px 0;
}
.successfully__btns .successfully__button {
  flex: 0 0 calc(50% - 16px);
  width: calc(50% - 16px);
  margin: 0 8px;
}

.overview__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2px;
  background: #F4F5F6;
}
body.dark .overview__list {
  background: #181617;
}
.overview__item {
  flex: 0 0 calc(50% - 4px);
  width: calc(50% - 4px);
  margin: 2px;
  border-radius: 4px;
  background: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  .overview__item {
    flex: 0 0 calc(100% - 4px);
    width: calc(100% - 4px);
  }
}
body.dark .overview__item {
  background: #18191D;
}
.overview__head {
  display: flex;
  align-items: flex-start;
  min-height: 89px;
  padding: 20px 32px;
  border-bottom: 1px solid #F1F2F4;
}
body.dark .overview__head {
  border-color: #23262F;
}
.overview__title {
  display: flex;
  align-items: center;
  margin-right: auto;
  font-weight: 500;
  color: #353945;
}
body.dark .overview__title {
  color: #F4F5F6;
}
body .dir-rtl .overview__title {
  margin-right: 0px;
  margin-left: auto;
}
.overview__details {
  text-align: right;
}
.overview__currency {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.overview__price {
  color: #777E90;
}
body .dir-rtl .overview__price {
  text-align: left;
}
.overview__color {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 4px;
}
body .dir-rtl .overview__color {
  margin-right: 0px;
  margin-left: 8px;
}
.overview__body {
  padding: 20px 32px;
}
.overview__soon {
  display: inline-block;
  padding: 8px 16px;
  box-shadow: inset 0 0 0 2px #E6E8EC;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.1428571429;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: #00ED7B;
}
body .dir-rtl .overview__soon {
  font-family: "Vazirmatn", sans-serif;
}
body.dark .overview__soon {
  box-shadow: inset 0 0 0 2px #353945;
}
.overview__btns {
  display: flex;
}
.overview__button {
  height: 32px;
}
.overview__button:not(:last-child) {
  margin-right: 8px;
}
.overview__wrap {
  padding-bottom: 4px;
}
.overview__table {
  display: table;
  width: 100%;
}
.overview__row {
  display: table-row;
  color: #23262F;
  transition: background 0.2s;
}
.overview__row:first-child .overview__col {
  padding-top: 20px;
  border-bottom: 1px solid #F4F5F6;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #353945;
}
body.dark .overview__row:first-child .overview__col {
  border-color: #23262F;
  color: #FCFCFD;
}
.overview__row:not(:first-child):not(:last-child) .overview__col {
  border-bottom: 1px solid #E6E8EC;
}
body.dark .overview__row:not(:first-child):not(:last-child) .overview__col {
  border-color: #23262F;
}
.overview__row:not(:first-child):hover {
  background: #F4F5F6;
}
body.dark .overview__row:not(:first-child):hover {
  background: #23262F;
}
.overview__col {
  display: table-cell;
  padding: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .overview__col {
    padding: 16px 8px;
  }
}
body.dark .overview__col {
  color: #FCFCFD;
}
.overview__col:first-child {
  padding-left: 32px;
}
.overview__col:last-child {
  padding-right: 32px;
}
.overview__col:nth-child(3), .overview__col:nth-child(4), .overview__col:nth-child(2), .overview__col:last-child {
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  .overview__col:nth-child(2) {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .overview__col:not(:first-child):not(:last-child) {
    display: none;
  }
}
.overview__element {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .overview__element {
    position: relative;
    bottom: -3px;
  }
}
.overview__icon {
  flex-shrink: 0;
  width: 32px;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .overview__icon {
    margin-right: 12px;
  }
}
.overview__icon img {
  width: 100%;
}
.overview__info {
  font-weight: 500;
}
.overview__text {
  color: #777E90;
}

.integrations__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2px;
  background: #F4F5F6;
}
body.dark .integrations__list {
  background: #181617;
}
.integrations__item {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 4px);
  width: calc(50% - 4px);
  margin: 2px;
  border-radius: 4px;
  background: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  .integrations__item {
    flex: 0 0 calc(100% - 4px);
    width: calc(100% - 4px);
  }
}
body.dark .integrations__item {
  background: #18191D;
}
.integrations__head {
  display: flex;
  align-items: flex-start;
  flex-grow: 1;
  padding: 20px 32px;
  border-bottom: 1px solid #F1F2F4;
}
body.dark .integrations__head {
  border-color: #23262F;
}
.integrations__title {
  position: relative;
  margin-right: auto;
  padding-left: 20px;
  font-weight: 500;
  color: #353945;
}
body.dark .integrations__title {
  color: #F4F5F6;
}
.integrations__title:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  border: 2px solid #777E90;
}
.integrations__content {
  max-width: 336px;
  margin-left: 24px;
  text-align: right;
  font-size: 11px;
  line-height: 1.6666666667;
  color: #777E90;
}
.integrations__body {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 32px;
}
.integrations__radio {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.integrations__radio:not(:last-child) {
  margin-right: 24px;
}
.integrations__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.integrations__input:checked + .integrations__inner .integrations__line {
  color: #00ED7B;
}
.integrations__input:checked + .integrations__inner .integrations__line .icon {
  fill: #00ED7B;
}
.integrations__input:checked + .integrations__inner .integrations__text span:first-child {
  display: inline;
}
.integrations__input:checked + .integrations__inner .integrations__text span:nth-child(2) {
  display: none;
}
.integrations__line {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.1428571429;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: #777E90;
  transition: color 0.2s;
}
body .dir-rtl .integrations__line {
  font-family: "Vazirmatn", sans-serif;
}
.integrations__line .icon {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  fill: #777E90;
  transition: fill 0.2s;
}
body.dark .integrations__line .icon {
  fill: #777E90;
}
.integrations__line:hover {
  color: #23262F;
}
body.dark .integrations__line:hover {
  color: #FCFCFD;
}
body.dark .integrations__line:hover .icon {
  fill: #FCFCFD;
}
.integrations__text span:first-child {
  display: none;
}
.integrations__button {
  height: 32px;
}

.deposit {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1023px) {
  .deposit {
    display: block;
    padding: 48px 16px 16px;
  }
}
.deposit__sidebar {
  width: 16%;
  border-right: 1px solid rgba(0, 0, 0, 0.1490196078);
}
body.dark .deposit__sidebar {
  border-color: rgba(233, 242, 255, 0.2);
}
@media only screen and (max-width: 1023px) {
  .deposit__sidebar {
    display: none;
  }
}
body .dir-rtl .deposit__sidebar {
  border-left: 1px solid rgba(0, 0, 0, 0.1490196078);
}
.deposit__body {
  width: 84%;
  margin: 24px;
}
.deposit__body_top {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .deposit__body_top {
    display: block;
  }
}
@media only screen and (max-width: 1023px) {
  .deposit__body_top {
    display: block;
  }
}
.deposit__body_left {
  width: 68%;
  margin-right: 24px;
  padding: 24px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
}
body.dark .deposit__body_left {
  background-color: transparent;
}
@media only screen and (max-width: 1023px) {
  .deposit__body_left {
    width: 100%;
    padding: 16px;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
body .dir-rtl .deposit__body_left {
  margin-right: 0;
  margin-left: 24px;
}
.deposit__body_right {
  width: 30%;
  background-color: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px;
  overflow-y: auto;
}
body.dark .deposit__body_right {
  background-color: rgba(244, 249, 255, 0.0509803922);
}
@media only screen and (max-width: 1023px) {
  .deposit__body_right {
    width: 100%;
    padding: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .deposit__body {
    width: 100%;
    margin: 0;
  }
}
.deposit__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 24px;
}
body.dark .deposit__head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.deposit__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.deposit__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 24px;
}
body.dark .deposit__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.deposit__subtitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  margin-bottom: 24px;
}
.deposit__subtitle .step {
  background-color: #00ed7b;
  border-radius: 50%;
  color: #fbfbfb;
  margin-right: 8px;
  padding: 6px 12px;
}
body .dir-rtl .deposit__subtitle .step {
  margin-right: 0;
  margin-left: 8px;
}
.deposit__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  background-color: rgba(0, 237, 123, 0.1);
  font-size: 14px;
  font-weight: 500;
}
.deposit__select .icon {
  width: 24px;
  height: 24px;
  fill: #00ed7b;
}
.deposit .currency_logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 12px;
}
body .dir-rtl .deposit .currency_logo {
  margin-right: unset;
  margin-left: 12px;
}
.deposit .currency_symbol {
  margin-right: 6px;
}
body .dir-rtl .deposit .currency_symbol {
  margin-left: 6px;
  margin-right: 0;
}
.deposit .currency_name {
  color: #00ed7b;
}
.deposit__options {
  height: 240px;
  overflow-y: auto;
  padding: 16px;
  background: #F5F5F5;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  margin-top: 12px;
}
.deposit__options .option {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  cursor: pointer;
}
body.dark .deposit__options {
  background: rgba(245, 245, 245, 0.1019607843);
}
.deposit__fastSelect {
  display: flex;
  align-items: center;
  margin: 12px 0 0;
}
.deposit__fastSelect .option {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  margin-right: 12px;
  cursor: pointer;
}
body .dir-rtl .deposit__fastSelect .option {
  margin-left: 12px;
}
@media only screen and (max-width: 767px) {
  .deposit__fastSelect {
    overflow-x: auto;
  }
  .deposit__fastSelect::-webkit-scrollbar {
    height: 5px;
  }
  .deposit__fastSelect::-webkit-scrollbar-thumb {
    background: rgb(94, 115, 107);
    border-radius: 10px;
  }
  .deposit__fastSelect::-webkit-scrollbar-track {
    background: transparent;
  }
}
.deposit__networks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 12px 0;
}
.deposit__networks .network {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  background: rgba(133, 133, 133, 0.0784313725);
  border-radius: 6px;
  margin-right: 16px;
  padding: 16px;
}
@media only screen and (max-width: 1023px) {
  .deposit__networks .network {
    margin-right: 0;
    margin-bottom: 16px;
    width: 100%;
  }
}
.deposit__networks .right, .deposit__networks .left {
  display: flex;
  flex-direction: column;
  width: auto;
}
@media only screen and (max-width: 1023px) {
  .deposit__networks .right, .deposit__networks .left {
    width: 50%;
  }
}
.deposit__networks .right {
  text-align: right;
}
.deposit__networks .title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 12px;
}
.deposit__networks .content {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}
body.dark .deposit__networks .content {
  color: rgba(255, 255, 255, 0.6);
}
.deposit__deposit {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 1023px) {
  .deposit__deposit {
    display: block;
  }
}
.deposit__qr-code {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #FFFFFF;
  border: 0.72px solid #FFFFFF;
  box-shadow: 0px 0px 8.67px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 6px;
}
.deposit__qr-code img {
  width: 8rem;
  height: 7rem;
}
body.dark .deposit__qr-code {
  background: rgba(255, 255, 255, 0.0509803922);
  border: 0.72px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 1023px) {
  .deposit__qr-code {
    margin-bottom: 12px;
  }
}
.deposit__address {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.deposit__address .address {
  width: 100%;
  padding: 16px;
  background-color: #00ed7b;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.6px;
}
body.dark .deposit__address .address {
  background: rgba(255, 255, 255, 0.1019607843);
}
@media only screen and (max-width: 767px) {
  .deposit__address .address {
    font-size: 11px;
    padding: 16px 8px;
  }
}
body .dir-rtl .deposit__address .address {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.deposit__address .copy {
  padding: 16px;
  background-color: #00ed7b;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.deposit__address .copy svg {
  width: 16px;
  height: 15px;
  fill: #fff;
}
@media only screen and (max-width: 1023px) {
  .deposit__address .copy svg {
    height: 15.5px;
  }
}
@media only screen and (max-width: 767px) {
  .deposit__address .copy svg {
    height: 15.5px;
  }
}
@media only screen and (max-width: 767px) {
  .deposit__address .copy {
    padding: 16px 8px;
  }
}
body .dir-rtl .deposit__address .copy {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.deposit__address .min-fee {
  display: flex;
  flex-direction: column;
  margin: 12px 0 0;
}
.deposit__address .min-fee .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.deposit__address .min-fee .title {
  font-size: 12px;
  font-weight: 500;
  line-height: 15.6px;
}
@media only screen and (max-width: 1023px) {
  .deposit__address {
    margin-left: 0;
  }
}
.deposit__note {
  border: 1px solid #00ed7b;
  background-color: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  padding: 16px;
  width: 100%;
}
.deposit__confirm {
  width: 100%;
  height: 60px;
}
.deposit__transaction {
  width: 100%;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .deposit__transaction {
    margin-top: 36px;
  }
}
body.dark .deposit__transaction {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.deposit__container {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .deposit__container {
    overflow-x: auto;
  }
  .deposit__container::-webkit-scrollbar {
    height: 5px;
  }
  .deposit__container::-webkit-scrollbar-thumb {
    background: rgb(94, 115, 107);
    border-radius: 10px;
  }
  .deposit__container::-webkit-scrollbar-track {
    background: transparent;
  }
}
.deposit__currency {
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .deposit__currency {
    font-size: 12px;
  }
}
.deposit .items {
  padding-bottom: 8px;
  animation: rotateY 300ms ease-in-out forwards;
  transform-origin: top center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3019607843);
}
.deposit .items .wallet__link {
  padding: 16px 52px;
}

.details__row {
  display: flex;
  background: #F4F5F6;
}
@media only screen and (max-width: 767px) {
  .details__row {
    display: block;
  }
}
body.dark .details__row {
  background: #181617;
}
.details__col:first-child {
  flex-grow: 1;
  padding-right: 4px;
}
@media only screen and (max-width: 767px) {
  .details__col:first-child {
    padding-right: 0;
  }
}
.details__col:first-child .details__price {
  color: #777E90;
}
.details__col:nth-child(2) {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 285px;
  padding: 24px;
  background: #FCFCFD;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  .details__col:nth-child(2) {
    width: 100%;
    margin-top: 4px;
  }
}
body.dark .details__col:nth-child(2) {
  background: #17181B;
}
.details__col:nth-child(2) .details__price {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.details__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2px;
}
.details__item {
  display: flex;
  align-items: flex-start;
  flex: 0 0 calc(50% - 4px);
  width: calc(50% - 4px);
  margin: 2px;
  padding: 20px 32px;
  border-radius: 4px;
  background: #FCFCFD;
}
@media only screen and (max-width: 1339px) {
  .details__item {
    flex: 0 0 calc(100% - 4px);
    width: calc(100% - 4px);
  }
}
@media only screen and (max-width: 767px) {
  .details__item {
    padding: 20px 24px;
  }
}
body.dark .details__item {
  background: #17181B;
}
.details__item:last-child {
  flex: 0 0 calc(100% - 4px);
  width: calc(100% - 4px);
}
.details__title {
  display: flex;
  align-items: center;
  margin-right: auto;
  font-weight: 500;
  color: #353945;
}
body.dark .details__title {
  color: #F4F5F6;
}
.details__color {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 4px;
}
.details__wrap {
  text-align: right;
}
.details__currency {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.details__info {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.details__info .details__category {
  border-radius: 13px;
}
.details__money {
  margin-right: 12px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
}
.details__chart {
  margin: -8px 0 -16px;
  width: 100%;
}

.faq1 {
  padding: 32px;
}
@media only screen and (max-width: 767px) {
  .faq1 {
    padding: 24px;
  }
}
.faq1__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -32px;
}
@media only screen and (max-width: 767px) {
  .faq1__list {
    display: block;
    margin-top: -20px;
  }
}
.faq1__item {
  display: flex;
  align-items: center;
  width: 33.333%;
  flex: 0 0 33.333%;
  margin-top: 32px;
  padding-right: 20px;
  color: #23262F;
  transition: color 0.2s;
}
@media only screen and (max-width: 1339px) {
  .faq1__item {
    width: 50%;
    flex: 0 0 50%;
  }
}
@media only screen and (max-width: 767px) {
  .faq1__item {
    width: 100%;
    margin-top: 20px;
    padding-right: 0;
  }
}
body.dark .faq1__item {
  color: #FCFCFD;
}
.faq1__item:hover {
  color: #37ffbc;
}
.faq1__preview {
  flex-shrink: 0;
  width: 128px;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .faq1__preview {
    margin-right: 12px;
  }
}
.faq1__preview img {
  width: 100%;
  border-radius: 8px;
}
.faq1__details {
  flex-grow: 1;
}
.faq1__category {
  font-size: 11px;
  line-height: 1.6666666667;
  color: #777E90;
}
.faq1__title {
  font-weight: 500;
}
.faq1__button {
  margin-top: 32px;
}

.margin {
  padding: 32px 82px;
  background: #FCFCFD;
  border-radius: 4px;
}
body.dark .margin {
  background: #17181B;
}
@media only screen and (max-width: 767px) {
  .margin {
    padding: 24px 16px;
  }
}
.margin__title {
  margin-bottom: 20px;
}
.margin__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .margin__list {
    display: block;
  }
}
.margin__item_flex {
  display: flex;
  align-items: center;
}
.margin__item_flex .margin__number {
  color: #00ED7B;
}
@media only screen and (max-width: 767px) {
  .margin__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.margin__info {
  margin-bottom: 4px;
  font-weight: 500;
  color: #353945;
}
body.dark .margin__info {
  color: #777E90;
}
.margin__currency {
  display: flex;
  align-items: center;
}
.margin__number {
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 1023px) {
  .margin__number {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .margin__number {
    font-size: 24px;
  }
}
.margin__category {
  margin-left: 8px;
}
.margin__price, .margin__stage {
  font-size: 16px;
  line-height: 1.5;
  color: #777E90;
}
.margin__chart {
  margin-right: 24px;
}
.margin__group {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .margin__group {
    flex-wrap: wrap;
    margin-top: -24px;
  }
}
@media only screen and (max-width: 767px) {
  .margin__element {
    flex: 0 0 50%;
    width: 50%;
    margin-top: 24px;
  }
}
@media only screen and (max-width: 1179px) {
  .margin__element .margin__info {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1179px) {
  .margin__element .margin__number {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .margin__element .margin__number {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1179px) {
  .margin__element .margin__price {
    font-size: 12px;
  }
}

.balances {
  padding: 20px 0 0;
}
@media only screen and (max-width: 767px) {
  .balances {
    padding: 0;
  }
}
.balances__line {
  display: flex;
  align-items: center;
  padding: 0 32px;
}
@media only screen and (max-width: 767px) {
  .balances__line {
    display: none;
  }
}
.balances .subscription {
  margin-right: auto;
}
.balances__link {
  display: flex;
  align-items: center;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 500;
  color: #777E90;
  transition: color 0.2s;
}
.balances__link .icon {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  fill: #777E90;
  transition: fill 0.2s;
}
.balances__link:hover {
  color: #23262F;
}
.balances__link:hover .icon {
  fill: #23262F;
}
body.dark .balances__link:hover {
  color: #FCFCFD;
}
body.dark .balances__link:hover .icon {
  fill: #FCFCFD;
}
.balances__row {
  display: flex;
}
.balances__list > .balances__row {
  border-bottom: 1px solid #F4F5F6;
}
body.dark .balances__list > .balances__row {
  border-color: #23262F;
}
.balances__col {
  flex: 1;
  padding: 16px;
}
.balances__col:first-child {
  padding-left: 32px;
}
body .dir-rtl .balances__col:first-child {
  padding-left: 0;
  padding-tight: 32px;
}
@media only screen and (max-width: 767px) {
  .balances__col:first-child {
    padding-left: 16px;
  }
  body .dir-rtl .balances__col:first-child {
    padding-left: 0;
    padding-right: 16px;
  }
}
.balances__col:last-child {
  padding-right: 32px;
}
body .dir-rtl .balances__col:last-child {
  padding-right: 0;
  padding-left: 32px;
}
@media only screen and (max-width: 767px) {
  .balances__col:last-child {
    padding-right: 16px;
  }
  body .dir-rtl .balances__col:last-child {
    padding-left: 16px;
    padding-right: 0;
  }
}
.balances__col:not(:first-child) {
  text-align: right;
}
body .dir-rtl .balances__col:not(:first-child) {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .balances__col:not(:first-child):not(:nth-child(2)) {
    display: none;
  }
}
.balances__list > .balances__row .balances__col {
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #353945;
}
body.dark .balances__list > .balances__row .balances__col {
  color: #E6E8EC;
}
.balances__item {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: background 0.2s;
}
.balances__item:hover, .balances__item.active {
  background: #F8F8F9;
}
body.dark .balances__item:hover, body.dark .balances__item.active {
  background: #23262F;
}
.balances__item.active .balances__btns {
  display: flex;
}
.balances__item:not(:last-child) {
  border-bottom: 1px solid #E6E8EC;
}
body.dark .balances__item:not(:last-child) {
  border-color: #23262F;
}
@media only screen and (max-width: 1023px) {
  body.dark .balances__item:not(:last-child) {
    border-color: #353945;
  }
}
.balances__item .balances__row {
  display: flex;
  padding: 16px 0 20px;
  cursor: pointer;
}
.balances__item .balances__col {
  padding: 0 16px;
}
.balances__item .balances__col:first-child {
  padding-left: 32px;
}
@media only screen and (max-width: 767px) {
  .balances__item .balances__col:first-child {
    padding-left: 16px;
  }
}
.balances__item .balances__col:last-child {
  padding-right: 32px;
}
@media only screen and (max-width: 767px) {
  .balances__item .balances__col:last-child {
    padding-right: 16px;
  }
}
.balances__currency {
  display: flex;
  align-items: center;
}
.balances__details {
  display: flex;
  align-items: center;
}
.balances__icon {
  flex-shrink: 0;
  width: 32px;
  margin-right: 20px;
}
body .dir-rtl .balances__icon {
  margin-left: 20px;
  margin-right: 0;
}
.balances__icon img {
  width: 100%;
}
.balances__info {
  font-weight: 500;
}
.balances__text {
  font-weight: 500;
  color: #777E90;
  margin-left: 8px;
}
body .dir-rtl .balances__text {
  margin-left: 0;
  margin-right: 8px;
}
.balances__btns {
  display: none;
  margin-top: -10px;
  padding: 0 32px 20px;
}
@media only screen and (max-width: 767px) {
  .balances__btns {
    padding: 0 16px 20px;
  }
}
.balances__button {
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .balances__button {
    flex-grow: 1;
    padding: 0;
  }
}
.balances__button:not(:last-child) {
  margin-right: 8px;
}
body .dir-rtl .balances__button:not(:last-child) {
  margin-right: 0;
  margin-left: 8px;
}

.bidding__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.bidding__top {
  background: #00ed7b;
}
.bidding__features {
  display: flex;
  gap: 16px;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 1023px) {
  .bidding__features {
    flex-direction: column;
  }
}
.bidding__feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .bidding__feature-item {
    width: 350px;
  }
}
.bidding__feature-item .icon {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.bidding__feature-item span {
  font-size: 1rem;
}
.bidding__subtitles {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin: 15px 0 30px;
  width: 70%;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 767px) {
  .bidding__subtitles {
    font-size: 14px;
    line-height: 24.4px;
    width: 350px;
    padding: 0px 16px 0px 6px;
  }
}
@media only screen and (max-width: 1023px) {
  .bidding__subtitles {
    width: 700px;
  }
}
.bidding__head {
  padding: 40px 64px;
}
@media only screen and (max-width: 767px) {
  .bidding__head {
    padding: 16px 0 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .bidding__head.swap {
    width: 50%;
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .bidding__head.swap {
    width: 100%;
    padding: 40px 0;
  }
}
.bidding__head.stakings {
  background: #cc9a48;
  background: radial-gradient(circle, #cc9a48 -22%, #FCFCFD 83%);
}
body.dark .bidding__head.stakings {
  background: radial-gradient(circle, #cc9a48 -22%, rgb(24, 22, 23) 83%);
}
.bidding__head.stakings .stake_now {
  color: #00ed7b;
}
.bidding__head.stakings .stake_now:hover {
  color: #23262F;
}
body.dark .bidding__head.stakings .stake_now:hover {
  color: #FCFCFD;
}
.bidding__head.stakings .stake_now .icon {
  width: 22px;
  height: 22px;
  fill: #777E90;
  transition: all 0.2s;
}
body.dark .bidding__head.stakings .stake_now .icon {
  color: #FCFCFD;
}
.bidding__head.stakings .faq {
  background: transparent;
  margin: 0 25px;
  color: #777E90;
}
body.dark .bidding__head.stakings .faq {
  color: #FCFCFD;
}
.bidding__head.stakings .faq:hover {
  color: #00ed7b;
}
body.dark .bidding__head.stakings .faq:hover {
  color: #00ed7b;
}
.bidding__head.launchpads {
  background: #cc9a48;
  background: radial-gradient(circle, #cc9a48 -22%, #FCFCFD 83%);
}
body.dark .bidding__head.launchpads {
  background: radial-gradient(circle, #cc9a48 -22%, rgb(24, 22, 23) 83%);
}
.bidding__head .bidding__center {
  align-items: center;
}
.bidding__color {
  color: rgba(1, 188, 141, 0.4);
}
.bidding__center {
  display: flex;
  padding: 0px 70px;
  flex-direction: column;
}
@media only screen and (max-width: 1179px) {
  .bidding__center {
    padding: 0 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .bidding__center {
    display: block;
    padding: 0 32px !important;
  }
}
.bidding__center .nav {
  margin: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .bidding__center .select {
    margin: 16px 0;
  }
}
.bidding__title {
  text-align: center;
}
body .dir-rtl .bidding__title {
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (max-width: 1023px) {
  .bidding__title {
    font-size: 24px;
  }
}
.bidding__title.subtitle {
  text-align: center;
  width: 868px;
  margin: auto;
}
.bidding__title.swap {
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .bidding__title.launch {
    font-size: 28px !important;
  }
}
.bidding__title.fee_rate {
  font-size: 24px !important;
}
@media only screen and (max-width: 767px) {
  .bidding__title.fee_rate {
    display: none;
  }
}
.bidding__info {
  font-size: 11px;
  line-height: 1.6666666667;
  font-size: 14px !important;
  font-weight: 500;
  color: rgba(1, 188, 141, 0.4);
  flex-grow: 1;
}
body .dir-rtl .bidding__info {
  font-family: "Vazirmatn", sans-serif;
}
body.dark .bidding__info {
  color: rgba(1, 188, 141, 0.4);
}
.bidding__vip {
  width: 33%;
}
@media only screen and (max-width: 1023px) {
  .bidding__vip {
    width: 100%;
  }
}
.bidding__vipCards {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -120px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .bidding__vipCards {
    width: 120%;
  }
}
@media only screen and (max-width: 767px) {
  .bidding__vipCards {
    flex-direction: column;
    margin-top: 0px;
  }
}
.bidding__link {
  margin-left: 8px;
  color: #23262F;
  transition: color 0.2s;
}
.bidding__link .icon {
  width: 20px;
  height: 20px;
  fill: #23262F;
  transition: fill 0.2s;
}
body.dark .bidding__link {
  color: #E6E8EC;
}
body.dark .bidding__link .icon {
  fill: #E6E8EC;
}
.bidding__link:hover {
  color: #37ffbc;
}
.bidding__link:hover .icon {
  fill: #37ffbc;
}
.bidding__body {
  padding: 80px 0 136px;
  background: #F8F8F9;
}
@media only screen and (max-width: 1179px) {
  .bidding__body {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1023px) {
  .bidding__body {
    padding-top: 48px;
    margin-bottom: 66px;
  }
}
@media only screen and (max-width: 767px) {
  .bidding__body {
    padding: 32px 0;
    border-top: 1px solid #E6E8EC;
    background: none;
  }
}
body.dark .bidding__body {
  background: none;
  box-shadow: inset 0 1px 0 0 #23262F;
}
@media only screen and (max-width: 767px) {
  body.dark .bidding__body {
    border: none;
  }
}
@media only screen and (max-width: 1023px) {
  .bidding__body .bidding__center {
    display: block;
  }
}
.bidding__body.swap {
  padding: 80px 0;
  box-shadow: none !important;
  background: none;
}
@media only screen and (max-width: 1023px) {
  .bidding__body.swap {
    padding: 30px 0;
    border-radius: 6px;
    border: 2px solid #E6E8EC !important;
  }
  body.dark .bidding__body.swap {
    border: 2px solid #23262F !important;
  }
}
.bidding__number {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  border: 2px solid #E6E8EC;
  border-radius: 50%;
  transition: all 0.2s;
}
body.dark .bidding__number {
  border-color: #777E90;
}
.bidding__number:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00ED7B url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M4 8l2.667 2.667L12 5.333' stroke='%23fcfcfd' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat 50% 50%/16px auto;
  opacity: 0;
  transition: opacity 0.2s;
}
.bidding__wrapper {
  width: 736px;
  padding: 40px;
  box-shadow: 0px 64px 64px -48px rgba(15, 15, 15, 0.1);
  border-radius: 6px;
  background: #F1F2F4;
  margin: 0 auto;
}
@media only screen and (max-width: 1179px) {
  .bidding__wrapper {
    flex-grow: 1;
    width: auto;
    margin-left: 64px;
    padding: 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .bidding__wrapper {
    margin-left: 0;
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .bidding__wrapper {
    padding: 0;
    box-shadow: none;
    background: none;
    border-radius: 0;
  }
}
body.dark .bidding__wrapper {
  background: #18191D;
}
@media only screen and (max-width: 767px) {
  body.dark .bidding__wrapper {
    background: none;
  }
}
.bidding__item:not(:first-child) {
  display: none;
}
.bidding__items {
  display: flex;
  justify-content: space-between;
}
.bidding__items__title {
  margin-right: auto;
}
body .dir-rtl .bidding__items__title {
  margin-right: 0;
  margin-left: auto;
}
.bidding__items h2 {
  font-size: 45px;
}
.bidding__items__content {
  margin-left: 16px;
  text-align: right;
  color: #777E90;
}
body .dir-rtl .bidding__items__content {
  margin-right: 16px;
  margin-left: 0;
}
.bidding__items__content .green {
  color: #00ED7B;
}
.bidding__control {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .bidding__control {
    display: block;
    margin-bottom: 32px;
  }
}
.bidding__back {
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
body.dark .bidding__back {
  color: #FCFCFD;
}
.bidding__back .icon {
  width: 14px;
  height: 14px;
  margin-right: 16px;
  fill: #777E90;
  transition: transform 0.2s;
}
.bidding__back:hover .icon {
  transform: translateX(-2px);
}
.bidding__money {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .bidding__money {
    display: none;
  }
}
.bidding__money img {
  margin-left: 12px;
  width: 24px;
}
.bidding__content {
  align-self: center;
}
.bidding__wrap {
  position: relative;
  z-index: 3;
  max-width: 600px;
}
@media only screen and (max-width: 1179px) {
  .bidding__wrap {
    max-width: 466px;
  }
}
@media only screen and (max-width: 1023px) {
  .bidding__wrap {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media only screen and (max-width: 767px) {
  .bidding__wrap {
    max-width: 499px;
  }
}
.bidding__bg {
  width: 420px;
  transform: translateY(0%);
  pointer-events: none;
}
@media only screen and (max-width: 1179px) {
  .bidding__bg {
    margin-right: 25px;
  }
}
@media only screen and (max-width: 1023px) {
  .bidding__bg {
    position: static;
    transform: translateY(0);
    width: 100%;
    margin: 0 66px 32px 0;
  }
}
@media only screen and (max-width: 767px) {
  .bidding__bg {
    width: 100%;
  }
}
.bidding__bg img {
  width: 100%;
}
.bidding__steps {
  width: 600px;
  margin-top: 50px;
}
@media only screen and (max-width: 1179px) {
  .bidding__steps {
    width: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .bidding__steps {
    width: auto;
  }
}
.bidding__step {
  position: relative;
  display: flex;
  align-items: center;
  height: 85px;
  padding: 0;
  transition: all 0.2s;
}
.bidding__step.next {
  color: #23262F;
}
.bidding__step.next .bidding__number {
  border-color: #00ED7B;
}
.bidding__step.active {
  background: #FCFCFD;
  box-shadow: 0px 4px 16px -8px rgba(15, 15, 15, 0.1);
  color: #23262F;
}
.bidding__step.active .bidding__number {
  border-color: #00ED7B;
}
.bidding__step.active .bidding__number:after {
  opacity: 1;
}
.bidding__step:not(:last-child) {
  margin-bottom: 24px;
}
body.dark .bidding__step.next {
  color: #FCFCFD;
}
body.dark .bidding__step.active {
  background: #23262F;
  color: #FCFCFD;
}
body.dark .bidding__step.active:not(:last-child):after {
  border-color: #777E90;
}
@media only screen and (max-width: 1023px) {
  .bidding__step {
    height: auto;
  }
}
.bidding__step_subtitle {
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: #23262F;
}
body.dark .bidding__step_subtitle {
  color: #FCFCFD;
}
.bidding__step_content {
  font-size: 13px;
  color: #777E90;
}
.bidding__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 24px;
  border-radius: 50%;
  background: #F4F5F6;
}
body.dark .bidding__icon {
  background: #23262F;
}
body .dir-rtl .bidding__icon {
  margin-left: 24px;
}
.bidding__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00ed7b;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}
.bidding__cards {
  display: block;
  padding: 50px 105px;
  margin: 50px 0;
}
@media only screen and (max-width: 1023px) {
  .bidding__cards {
    padding: 50px 32px;
  }
}

.swap_card {
  flex: 0 0 46%;
  width: 46%;
  padding: 35px;
  border-radius: 6px;
  background: rgba(230, 232, 236, 0.5294117647);
  display: flex;
  align-items: center;
  margin-left: 24px;
  margin-top: 24px;
  transition: all 0.2s;
  box-shadow: inset 0 0 0 2px #FCFCFD;
}
.swap_card:hover {
  background: transparent;
  box-shadow: inset 0 0 0 2px #FCFCFD;
}
body.dark .swap_card {
  background: rgba(53, 57, 69, 0.4);
  box-shadow: inset 0 0 0 2px #23262F;
}
body.dark .swap_card:hover {
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .swap_card {
    min-width: auto;
    flex: 0 0 100%;
    width: 100%;
    padding: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .swap_card {
    margin-left: 0px;
  }
}
.swap_card_icon {
  width: 110px;
  margin-right: 24px;
}
.swap_card_icon img {
  width: 100%;
}
body .dir-rtl .swap_card_icon {
  margin-left: 24px;
}
.swap_card_title {
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: #23262F;
}
body.dark .swap_card_title {
  color: #FCFCFD;
}
.swap_card_text {
  font-size: 13px;
  color: #777E90;
}

.faq {
  background: transparent;
  margin: 0 25px;
  color: #777E90;
}
body.dark .faq {
  color: #FCFCFD;
}
.faq:hover {
  background: transparent;
  color: #00ed7b;
}
body.dark .faq:hover {
  background: transparent;
  color: #00ed7b;
}

.vip__wrap {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .vip__wrap {
    width: 100%;
    margin: 33px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .vip__wrap {
    width: 60%;
  }
}
.vip__wrap h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1023px) {
  .vip__wrap h1 {
    font-size: 24px;
  }
}
.vip__wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
@media only screen and (max-width: 1023px) {
  .vip__wrap h2 {
    font-size: 24px;
  }
}
.vip__bg {
  width: 20%;
  width: 220px;
  height: 300px;
}
.vip__bg img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .vip__bg {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .vip__bg {
    width: 170px;
    height: 450px;
  }
}
.vip__spot {
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.vip__card {
  background: rgb(201, 207, 211);
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 24px;
  border-radius: 16px;
  color: #121314;
}
@media only screen and (max-width: 767px) {
  .vip__card {
    width: 80%;
    margin-right: auto;
  }
  body .dir-rtl .vip__card {
    margin-right: unset;
    margin-left: auto;
  }
}
.vip__header {
  text-align: center;
  width: 100%;
}
.vip__header_sub {
  color: #969696;
  width: 800px;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media only screen and (max-width: 1023px) {
  .vip__header_sub {
    width: 100%;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .vip__header_sub {
    width: 100%;
    margin-right: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .vip__header {
    margin-top: -50px;
  }
}
.vip__scroll {
  overflow-x: auto;
  scrollbar-width: none;
}

.table__row {
  display: table-row;
}
@media only screen and (max-width: 1023px) {
  .table__row {
    display: block;
  }
}
.table__row:first-child {
  background-color: rgba(0, 237, 123, 0.1);
  color: #777E90;
}
.table__col:last-child {
  text-align: left;
}
.table__col:first-child {
  padding-left: 20px;
}

.currency__title {
  margin-bottom: 48px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 767px) {
  .currency__title {
    margin-bottom: 32px;
  }
}
.currency__row {
  display: flex;
  margin: 0 -12px;
}
@media only screen and (max-width: 767px) {
  .currency__row {
    display: block;
    margin: 0;
  }
}
.currency__row:not(:last-child) {
  margin-bottom: 48px;
}
.currency__col {
  flex: 0 0 calc(50% - 24px);
  width: calc(50% - 24px);
  margin: 0 12px;
}
@media only screen and (max-width: 767px) {
  .currency__col {
    width: 100%;
    margin: 0;
  }
  .currency__col:not(:last-child) {
    margin-bottom: 24px;
  }
}
.currency__label {
  margin-bottom: 12px;
  font-weight: 500;
  color: #23262F;
}
body.dark .currency__label {
  color: #FCFCFD;
}
.currency__payment {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.currency .select {
  background: none;
}
body.dark .currency .select {
  background: none;
}
.currency__field {
  position: relative;
}
.currency__value, .currency__input {
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #23262F;
}
body .dir-rtl .currency__value, body .dir-rtl .currency__input {
  font-family: "Vazirmatn", sans-serif;
}
@media only screen and (max-width: 767px) {
  .currency__value, .currency__input {
    font-size: 64px;
  }
}
.currency__value {
  min-width: 72px;
  max-width: 500px;
  min-height: 96px;
  padding-right: 5px;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .currency__value {
    min-height: 64px;
    max-width: 280px;
    padding-bottom: 10px;
  }
}
.currency__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  box-shadow: none;
  color: #23262F;
}
body.dark .currency__input {
  color: #FCFCFD;
}
.currency__sign {
  position: relative;
  top: 8px;
}
@media only screen and (max-width: 767px) {
  .currency__sign {
    font-size: 24px;
  }
}
.currency__sign:first-child {
  margin-right: 8px;
}
.currency__sign:last-child {
  margin-left: 4px;
}
.currency__price {
  margin-bottom: 12px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.currency__note {
  margin-left: 8px;
  color: #777E90;
}
.currency__note:not(:last-child) {
  margin-right: 8px;
}
.currency__variants {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -8px;
}
.currency__variants .currency__button {
  margin: 8px 8px 0;
  color: #777E90;
}
.currency__variants .currency__button:hover {
  color: #FCFCFD;
}
.currency__variants .currency__button.active {
  color: #FCFCFD;
}
.currency__btns, .currency__foot {
  margin-top: 48px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .currency__btns, .currency__foot {
    margin-top: 32px;
  }
}
.currency__btns .currency__button {
  min-width: 184px;
}
@media only screen and (max-width: 767px) {
  .currency__btns .currency__button {
    min-width: 100%;
  }
}

.notes__title {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.notes__text, .notes__info {
  margin-bottom: 12px;
}
.notes__text {
  color: #777E90;
}
.notes__info {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.notes__code {
  padding: 12px;
  background: #E6E8EC;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
body.dark .notes__code {
  background: #353945;
}
.notes__btns, .notes__foot {
  margin-top: 24px;
}
.notes__btns {
  text-align: right;
}
.notes__foot {
  text-align: center;
}
.notes__button {
  min-width: 184px;
}
.notes__list {
  margin-bottom: 32px;
}
.notes__line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.notes__line:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E6E8EC;
}
body.dark .notes__line:not(:last-child) {
  border-color: #353945;
}
.notes__subtitle {
  margin-right: auto;
  padding-right: 20px;
  color: #777E90;
}
.notes__details {
  display: flex;
  align-items: center;
}
.notes__content {
  margin-right: 12px;
  font-weight: 500;
}
.notes__copy .icon {
  width: 24px;
  height: 24px;
  fill: #777E90;
  transition: fill 0.2s;
}
.notes__copy:hover .icon {
  fill: #23262F;
}
body.dark .notes__copy:hover .icon {
  fill: #FCFCFD;
}

.crypto {
  width: 100%;
}
.crypto__title {
  font-size: 16px;
  font-weight: 600;
  padding: 0 7px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .crypto__title {
    font-size: 18px;
    margin-bottom: 13px;
  }
}
.crypto__form {
  position: relative;
  flex-shrink: 0;
  margin-bottom: 40px;
}
.crypto__input {
  width: 100%;
  height: 48px;
  padding: 0 48px 0 14px;
  border-radius: 8px;
  background: none;
  border: 2px solid #E6E8EC;
  font-size: 11px;
  line-height: 1.6666666667;
  color: #23262F;
  transition: border-color 0.2s;
}
body.dark .crypto__input {
  border-color: #353945;
  color: #FCFCFD;
}
.crypto__input::-moz-placeholder {
  color: #777E90;
}
.crypto__input::placeholder {
  color: #777E90;
}
.crypto__input:focus {
  border-color: #37ffbc;
}
.crypto__result {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
}
.crypto__result .icon {
  width: 20px;
  height: 20px;
  fill: #777E90;
  transition: fill 0.2s;
}
.crypto__result:hover .icon {
  fill: #37ffbc;
}
.crypto__container {
  width: 100%;
  height: auto;
}
.crypto__table {
  display: table;
  width: 100%;
}
.crypto__row {
  display: table-row;
  color: #23262F;
}
.crypto__row:first-child .crypto__col {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 12px;
  border-radius: 0;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
}
body.dark .crypto__row:first-child .crypto__col {
  border-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .crypto__row:first-child .crypto__col {
    text-align: center;
  }
}
.crypto__row:not(:first-child) {
  cursor: pointer;
}
.crypto__row:not(:first-child) .crypto__col {
  vertical-align: middle;
  font-weight: 500;
}
body.dark .crypto__row:not(:first-child) .crypto__col {
  border-color: #353945;
}
.crypto__row:not(:first-child):hover {
  background: #F4F5F6;
  border-radius: 6px;
}
body.dark .crypto__row:not(:first-child):hover {
  background: #23262F;
}
.crypto__row:not(:first-child):hover .crypto__subtitle {
  color: #37ffbc;
}
.crypto__col {
  display: table-cell;
  padding: 12px;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body .dir-rtl .crypto__col {
  text-align: right;
}
body.dark .crypto__col {
  color: #FCFCFD;
}
.crypto__col:first-child {
  font-size: 12px;
  border-radius: 6px 0 0 6px;
}
@media only screen and (max-width: 1023px) {
  .crypto__col:first-child {
    display: none;
  }
}
.crypto__col:last-child {
  border-radius: 0 6px 6px 0;
  text-align: right;
}
body .dir-rtl .crypto__col:last-child {
  text-align: left;
}
.crypto__col .sorting {
  padding-right: 0;
}
.crypto__col .sorting:before {
  display: none;
}
.crypto__col .sorting:after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .crypto__col {
    padding: 12px 6px;
  }
}
.crypto__market_col {
  display: table-cell;
  padding: 12px;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  align-content: center;
}
.crypto__market_col .sorting {
  padding-right: 0;
}
.crypto__market_col .sorting:before {
  display: none;
}
.crypto__market_col .sorting:after {
  display: none;
}
.crypto__market_col:last-child {
  text-align: end;
}
body.dark .crypto__market_col {
  color: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  .crypto__market_col {
    padding: 12px 6px;
  }
}
body .dir-rtl .crypto__market_col {
  text-align: right;
}
.crypto__line {
  display: flex;
  align-items: center;
}
.crypto .favorite {
  position: relative;
  top: -4px;
  margin-right: 10px;
}
.crypto__item {
  display: flex;
  align-items: center;
}
.crypto__icon {
  flex-shrink: 0;
  width: 28px;
  margin-right: 12px;
}
body .dir-rtl .crypto__icon {
  margin-right: 0;
  margin-left: 12px;
}
.crypto__icon img {
  max-width: 100%;
}
.crypto__subtitle {
  margin-right: 4px;
  transition: color 0.2s;
  font-size: 13px;
}
.crypto__currency {
  font-weight: 400;
  color: #777E90;
}
.crypto__positive {
  color: rgb(0, 177, 105);
}
body .dir-rtl .crypto__positive {
  direction: ltr;
}
.crypto__negative {
  color: #FF6838;
}
body .dir-rtl .crypto__negative {
  direction: ltr;
}
.crypto__chart {
  width: 78px;
}

.payment__options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  padding: 24px 36px;
  border-radius: 16px;
  background: #F4F5F6;
}
@media only screen and (max-width: 767px) {
  .payment__options {
    display: block;
    margin-bottom: 32px;
  }
}
body.dark .payment__options {
  background: #23262F;
}
.payment__option {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .payment__option:not(:last-child) {
    margin-bottom: 32px;
  }
}
.payment__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}
.payment__icon .icon {
  width: 20px;
  height: 20px;
  fill: #FCFCFD;
}
.payment__category {
  font-size: 11px;
  line-height: 1.6666666667;
  color: #777E90;
}
.payment__content {
  font-weight: 500;
}
.payment__line {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.payment__subtitle {
  margin-right: auto;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.payment__cards {
  display: flex;
  align-items: center;
}
.payment__fieldset > .field {
  margin-bottom: 32px;
}
.payment__row {
  display: flex;
  margin: 0 -8px;
}
.payment__row .field {
  flex: 0 0 calc(50% - 16px);
  width: calc(50% - 16px);
  margin: 0 8px;
}
.payment .checkbox {
  margin-top: 32px;
}
.payment__info {
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .payment__info {
    margin-bottom: 32px;
  }
}
.payment__flex {
  display: flex;
  justify-content: space-between;
}
.payment__flex:first-child {
  padding-bottom: 12px;
  border-bottom: 1px solid #E6E8EC;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
body.dark .payment__flex:first-child {
  border-color: #353945;
}
.payment__flex:not(:first-child) .payment__cell:first-child {
  color: #777E90;
}
.payment__flex:not(:last-child) {
  margin-bottom: 12px;
}
.payment__cell:nth-child(2) {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.payment__btns {
  margin-top: 48px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .payment__btns {
    margin-top: 32px;
  }
}
.payment__foot {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .payment__foot {
    display: block;
    margin-top: 32px;
  }
  .payment__foot .payment__button {
    width: 100%;
  }
  .payment__foot .payment__button:not(:last-child) {
    margin-bottom: 10px;
  }
}

.exchange {
  min-height: calc(100vh - 88px);
  padding: 7px;
  background: #F1F2F4;
}
body.dark .exchange {
  background: #302e2f;
}
@media only screen and (max-width: 1023px) {
  .exchange {
    min-height: unset;
    padding: 0 6px;
    background: none !important;
  }
}
@media only screen and (max-width: 1023px) {
  .exchange.desktop {
    display: none;
  }
}
.exchange.mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .exchange.mobile {
    display: block;
  }
}
.exchange__dropdown-button {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .exchange__dropdown-button {
    display: block;
    margin-left: 6px;
  }
}
.exchange__dropdown-button svg {
  width: 22px;
  height: 22px;
}
body .dir-rtl .exchange__dropdown-button {
  margin-right: 6px;
}
.exchange__main {
  display: flex;
  align-items: center;
  padding: 7px 14px;
  background: #FCFCFD;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 4px;
}
@media only screen and (max-width: 1023px) {
  .exchange__main {
    position: relative;
    flex-wrap: wrap;
    padding: 7px;
    margin: 10px 0;
  }
}
body.dark .exchange__main {
  background: #17181B;
}
body .dir-rtl .exchange__main {
  direction: rtl;
}
.exchange__details {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .exchange__details {
    float: left;
  }
}
.exchange__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto;
}
.exchange__icon img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .exchange__icon {
    margin: 0;
  }
}
.exchange__box {
  display: flex;
  align-items: center;
}
.exchange__box .exchange__content {
  font-size: 9px;
  line-height: 1.5;
  margin-top: 2px;
  color: #777E90;
}
.exchange__box:not(:last-child) {
  margin-right: 12px;
}
body .dir-rtl .exchange__box:not(:last-child) {
  margin-right: 0;
  margin-left: 22px;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .exchange__box:not(:last-child) {
    margin-left: 12px;
  }
}
.exchange__line {
  display: flex;
  align-items: center;
}
.exchange__info {
  font-size: 18px !important;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #181617;
}
body.dark .exchange__info {
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .exchange__info {
    line-height: normal;
    font-size: 18px !important;
  }
}
.exchange__category {
  margin-left: 4px;
  padding: 7px 8px 5px;
  border-radius: 12px;
}
.exchange__price {
  font-size: 16px !important;
  line-height: 2 !important;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #FF6838;
  border-left: 2px solid #777E90;
  margin-left: 10px;
  padding-left: 10px;
}
@media only screen and (max-width: 1023px) {
  .exchange__price {
    display: none;
  }
}
body .dir-rtl .exchange__price {
  margin-left: 0;
  margin-right: 10px;
}
.exchange__list {
  display: flex;
  margin-right: auto;
}
body .dir-rtl .exchange__list {
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (max-width: 1023px) {
  .exchange__list {
    display: none;
    position: absolute;
    top: 30%;
    left: 0;
    z-index: 10;
    width: 295px;
    border-radius: 6px;
  }
  .exchange__list.active {
    display: block;
  }
}
.exchange__item {
  flex: 0 0 125px;
  width: 125px;
  text-align: center;
}
@media only screen and (max-width: 1179px) {
  .exchange__item {
    flex: 0 0 auto;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .exchange__item {
    width: 100%;
    margin: 12px 0;
  }
}
.exchange__item .exchange__content {
  font-weight: 500;
  color: #181617;
}
body.dark .exchange__item .exchange__content {
  color: #FCFCFD;
}
.exchange__item:not(:last-child) {
  margin-right: 12px;
  border-right: 1px solid #E6E8EC;
}
body .dir-rtl .exchange__item:not(:last-child) {
  margin-right: 0;
  border-right: none;
  margin-left: 12px;
  border-left: 1px solid #E6E8EC;
}
body.dark .exchange__item:not(:last-child) {
  border-color: #23262F;
}
@media only screen and (max-width: 767px) {
  .exchange__item:not(:last-child) {
    margin-left: 0;
    margin-right: 0;
    margin: 12px 0;
    border-bottom: 1px solid #E6E8EC;
  }
  body.dark .exchange__item:not(:last-child) {
    border-color: #23262F;
  }
}
.exchange__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 4px;
  font-size: 11px;
  line-height: 1.6666666667;
  color: #777E90;
}
.exchange__subtitle .icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  fill: #777E90;
}
body .dir-rtl .exchange__subtitle .icon {
  margin-right: 0;
  margin-left: 4px;
}
.exchange > .nav {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .exchange > .nav {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    border-radius: 6px;
    background: #F1F2F4;
  }
  body.dark .exchange > .nav {
    background: #302e2f;
  }
}
@media only screen and (max-width: 767px) {
  .exchange > .nav .nav__link .blueActive:not(:last-child) {
    margin-right: 0;
  }
}
.exchange .nav__link.active {
  color: #23262F;
}
@media only screen and (max-width: 1023px) {
  .exchange .nav__link.active {
    background: #00ed7b !important;
    padding: 9px 19px !important;
    color: #FCFCFD !important;
  }
}
.exchange__row {
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 1023px) {
  .exchange__row {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
  }
}
.exchange__row_in {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .exchange__chart {
    width: 100%;
  }
}
.exchange__chart.show {
  display: block;
}
.exchange__col:first-child {
  flex: 0 0 calc(100% - 314px);
  width: calc(100% - 314px);
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 4px;
}
@media only screen and (max-width: 1023px) {
  .exchange__col:first-child {
    flex: auto;
    width: 56%;
    display: block;
    margin-bottom: 0;
  }
  .exchange__col:first-child.table {
    display: none;
  }
  .exchange__col:first-child.show {
    display: block;
  }
}
body .dir-rtl .exchange__col:first-child {
  margin-right: 0px;
  margin-left: 4px;
}
.exchange__col:nth-child(2) {
  flex-shrink: 0;
  width: 310px;
}
@media only screen and (max-width: 1023px) {
  .exchange__col:nth-child(2) {
    flex: auto;
    float: none;
    width: 44%;
    margin: 0;
  }
}
.exchange__col_order {
  flex-shrink: 0;
  width: 100%;
  overflow-y: auto;
}
@media only screen and (max-width: 1023px) {
  .exchange__col_order {
    float: none;
    width: 100%;
    height: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .exchange__col_order {
    height: auto !important;
  }
}
.exchange__col_in:first-child {
  flex-shrink: 0;
  width: 310px;
}
.exchange__col_in:nth-child(2) {
  flex: 0 0 calc(100% - 313px);
  width: calc(100% - 313px);
  height: -moz-fit-content;
  height: fit-content;
}
.exchange .table_order {
  height: 320px !important;
  width: 100% !important;
  overflow: auto;
}
.exchange__tab {
  display: flex;
  margin-top: 4px;
}
.exchange__tab_content {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .exchange__tab_content:first-child0 {
    width: 100%;
    display: block;
    margin-bottom: 0;
  }
  .exchange__tab_content:first-child0.table {
    display: none;
  }
  .exchange__tab_content:first-child0.show {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .exchange__tab_content {
    display: block !important;
  }
}
@media only screen and (max-width: 1023px) {
  .exchange__tab_content:nth-child(2) {
    float: none;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .exchange__tab_content:nth-child(3) {
    display: block;
    width: 100%;
  }
}
.exchange__tab_content_order {
  flex-shrink: 0;
  width: 100%;
  overflow-y: auto;
}
@media only screen and (max-width: 1023px) {
  .exchange__tab_content_order {
    float: none;
    width: 100%;
    height: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .exchange__tab_content_order {
    height: auto !important;
  }
}
.exchange__tour {
  display: flex;
  align-items: center;
}
body .dir-rtl .exchange__tour {
  direction: ltr;
}
@media only screen and (max-width: 1023px) {
  .exchange__tour {
    display: none;
  }
}
.exchange__tour_mob {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .exchange__tour_mob {
    display: block;
    margin-left: auto;
  }
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .exchange__tour_mob {
    margin-left: 0;
    margin-right: auto;
  }
}
.exchange__mobile_info {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .exchange__mobile_info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 16px;
  }
}
.exchange__mobile_info .price {
  width: 40%;
  font-size: 18px;
  line-height: 1.3333333333;
  font-weight: 600;
}
body .dir-rtl .exchange__mobile_info .price {
  direction: unset !important;
}
.exchange__mobile_info .info {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
}
.exchange__mobile_info .info .exchange__item {
  width: 50%;
  margin-bottom: 6px;
  margin-top: 0;
  border: none;
}
@media only screen and (max-width: 1023px) {
  .exchange__mobile_info .info .exchange__item {
    margin-right: 0;
  }
}
body .dir-rtl .exchange__mobile_info .info .exchange__item {
  margin: 0 0 6px;
  border-left: unset;
}
@media only screen and (max-width: 1023px) {
  .exchange__mobile_info .info .exchange__subtitle {
    justify-content: flex-start;
  }
}
.exchange__mobile_info .info .change {
  text-align: left;
}
body .dir-rtl .exchange__mobile_info .info .change {
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  .exchange__mobile_info .info .exchange__content {
    text-align: left;
  }
}
body .dir-rtl .exchange__mobile_info .info .exchange__content {
  text-align: right;
}

.balance {
  border-radius: 4px;
  background: #FCFCFD;
  height: 929px;
}
@media only screen and (max-width: 1023px) {
  .balance {
    height: 420px;
  }
}
body.dark .balance {
  background: #17181B;
}
.balance__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
}
@media only screen and (max-width: 1023px) {
  .balance__head {
    padding: 6px;
  }
}
.balance__sorting {
  display: flex;
  align-items: center;
  margin-right: auto;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 18px;
}
body .dir-rtl .balance__sorting {
  margin-left: auto;
  margin-right: 0;
}
.balance__direction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: all 0.2s;
}
.balance__direction span {
  width: 12px;
  height: 2px;
  border-radius: 1;
}
.balance__direction span:not(:last-child) {
  margin-bottom: 2px;
}
.balance__direction:hover, .balance__direction.active {
  background: #F1F2F4;
}
body.dark .balance__direction:hover, body.dark .balance__direction.active {
  background: #23262F;
}
.balance__direction:not(:last-child) {
  margin-right: 12px;
}
body .dir-rtl .balance__direction:not(:last-child) {
  margin-right: 0;
  margin-left: 12px;
}
.balance .select {
  width: 62px;
  height: 32px;
  padding: 0 36px 0 8px;
  background: #F1F2F4;
  border-radius: 4px;
  box-shadow: none;
  font-size: 12px;
  line-height: 32px;
}
body.dark .balance .select {
  background: #23262F;
  box-shadow: inset 0 0 0 2px #23262F;
}
.balance .select:before {
  right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath fill-rule='evenodd' d='M9.207.793a1 1 0 0 0-1.414 0L5 3.586 2.207.793A1 1 0 1 0 .793 2.207l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0 0-1.414z' fill='%23777E90'/%3E%3C/svg%3E");
}
.balance .select .list {
  border-radius: 4px;
}
.balance .select .option {
  padding: 4px 8px;
  font-size: 12px;
}
.balance__container {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .balance__container {
    display: inline;
  }
}
.balance__container__sell {
  width: 100%;
}
.balance__container__sell::-webkit-scrollbar {
  width: 5px;
}
.balance__container__sell::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 10px;
}
.balance__container__sell::-webkit-scrollbar-track {
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .balance__container__sell {
    width: 100%;
  }
}
.balance__container__buy {
  width: 100%;
}
.balance__container__buy::-webkit-scrollbar {
  width: 5px;
}
.balance__container__buy::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 10px;
}
.balance__container__buy::-webkit-scrollbar-track {
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .balance__container__buy {
    width: 100%;
  }
}
.balance__top {
  display: flex;
  margin-bottom: 4px;
  padding: 4px 12px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
}
@media only screen and (max-width: 1023px) {
  .balance__top {
    padding: 6px;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.balance__item {
  justify-content: space-between;
  position: relative;
  display: flex;
  padding: 4px 12px;
  line-height: 1.22 !important;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .balance__item {
    padding: 0 6px 2px;
  }
}
.balance__item.negative .balance__line {
  max-width: 94%;
  background: rgba(255, 104, 56, 0.15);
}
.balance__item.negative .balance__price {
  color: #FF6838;
}
.balance__item.positive .balance__line {
  max-width: 94%;
  background: rgba(0, 177, 105, 0.15);
}
.balance__item.positive .balance__price {
  color: rgb(0, 177, 105);
}
@media only screen and (max-width: 1179px) {
  .balance__item:nth-child(n+10) {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .balance__item:nth-child(n+10) {
    display: flex;
  }
}
.balance__price {
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .balance__price.title {
    font-size: 9px;
  }
}
.balance__price, .balance__amount {
  flex-shrink: 0;
  width: 90px;
}
@media only screen and (max-width: 1023px) {
  .balance__price, .balance__amount {
    width: 50%;
    font-size: 10px;
  }
}
.balance__amount {
  text-align: right;
}
body .dir-rtl .balance__amount {
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .balance__amount.title {
    font-size: 9px;
  }
}
.balance__total {
  flex-grow: 1;
  text-align: right;
}
body .dir-rtl .balance__total {
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .balance__total {
    display: none;
  }
}
.balance__line {
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .balance__line {
    right: 7px;
  }
}
.balance__statistics {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin: 8px 0 12px;
}
@media only screen and (max-width: 1179px) {
  .balance__statistics {
    margin: 4px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .balance__statistics {
    margin: 4px 0;
  }
}
.balance__statistics .icon {
  width: 16px;
  height: 16px;
  margin: 0 8px;
}
.balance__statistics svg {
  fill: #00ed7b;
}
.balance__statistics.positive .balance__currency {
  color: rgb(0, 177, 105);
}
@media only screen and (max-width: 1023px) {
  .balance__statistics.positive .balance__currency {
    padding-right: 8px;
  }
}
.balance__statistics.positive .balance__icon {
  fill: #00ED7B;
}
.balance__statistics.negative .balance__currency {
  color: #FF6838;
}
@media only screen and (max-width: 1023px) {
  .balance__statistics.negative .balance__currency {
    padding-right: 8px;
  }
}
.balance__statistics.negative .balance__icon {
  fill: #FF6838;
}
.balance__statistics.empty {
  font-size: 0.9rem;
  min-height: 280px;
  color: var(--second-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .balance__money {
    display: none;
  }
}
.balance__divider {
  border-left: 2px solid #777E90;
  margin-top: 40px;
}
@media only screen and (max-width: 1023px) {
  .balance__divider {
    display: none;
  }
}
.balance__currency {
  cursor: pointer;
}
.balance__currency.negative {
  color: #FF6838;
}
.balance__currency.positive {
  color: rgb(0, 177, 105);
}

.currencies {
  padding: 6px 12px;
  border-radius: 4px;
  background: #FCFCFD;
  height: 545px;
}
body.dark .currencies {
  background: #17181B;
}
@media only screen and (max-width: 1023px) {
  .currencies {
    height: 420px;
    background: #F1F2F4;
  }
  body.dark .currencies {
    background: #302e2f;
  }
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .currencies {
    right: 0;
    left: auto;
  }
}
.currencies .nav {
  margin-bottom: 6px;
  justify-content: space-between;
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: rgb(94, 102, 115) transparent;
}
.currencies .nav::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.currencies .nav::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 10px;
}
.currencies .nav::-webkit-scrollbar-track {
  background: transparent;
}
.currencies .nav__link {
  padding: 6px 12px;
  font-size: 11px !important;
  margin-bottom: 4px;
}
.currencies__form {
  position: relative;
  margin-bottom: 6px;
}
.currencies__input {
  width: 100%;
  height: 33px;
  padding: 0 12px;
  border-radius: 8px;
  background: none;
  border: 2px solid #E6E8EC;
  font-size: 11px;
  line-height: 1.6666666667;
  color: #23262F;
  transition: border-color 0.2s;
}
body.dark .currencies__input {
  border-color: #353945;
  color: #FCFCFD;
}
.currencies__input::-moz-placeholder {
  color: #777E90;
}
.currencies__input::placeholder {
  color: #777E90;
}
.currencies__input:focus {
  border-color: #00ED7B;
  --tw-ring-color: $p4;
}
.currencies__result {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
}
body .dir-rtl .currencies__result {
  left: 0;
  right: auto;
}
.currencies__result .icon {
  width: 20px;
  height: 20px;
  fill: #777E90;
  transition: fill 0.2s;
}
.currencies__result:hover .icon {
  fill: #37ffbc;
}
.currencies__container {
  height: 446px;
  overflow-y: auto;
  overflow-x: auto;
  padding-right: 5px;
}
@media only screen and (max-width: 1023px) {
  .currencies__container {
    height: 330px;
  }
}
body .dir-rtl .currencies__container {
  padding-left: 5px;
}
.currencies__container::-webkit-scrollbar {
  width: 5px;
}
.currencies__container::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 10px;
}
.currencies__container::-webkit-scrollbar-track {
  background: transparent;
}
.currencies__container__table {
  display: table;
  width: 100%;
}
.currencies__container__row {
  display: table-row;
}
.currencies__container__row:first-child .currencies__container__col {
  padding-bottom: 12px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
}
.currencies__container__row:not(:first-child) .currencies__container__col {
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 500;
}
.currencies__container__col {
  display: table-cell;
  padding: 4px;
  cursor: pointer;
  vertical-align: top;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.currencies__container__col:first-child {
  padding-left: 0;
}
.currencies__container__col:last-child {
  padding-right: 0;
  text-align: right;
}
body .dir-rtl .currencies__container__col:last-child {
  direction: ltr;
}
.currencies__container__col:last-child:last-child {
  padding-left: 0;
  text-align: left;
}
.currencies__container__line {
  display: inline-flex;
  align-items: center;
}
.currencies__container .favorite {
  position: relative;
  top: -2px;
  margin-right: 4px;
}
body .dir-rtl .currencies__container .favorite {
  margin-right: 0;
  margin-left: 4px;
}
.currencies__container__info span {
  color: #777E90;
}
body .dir-rtl .currencies__container__info span {
  float: left;
  padding-right: 6px;
}
.currencies__container__positive {
  color: rgb(0, 177, 105);
}
.currencies__container__negative {
  color: #FF6838;
}

.trades {
  margin-top: 4px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #FCFCFD;
  height: 444px;
}
body.dark .trades {
  background: #17181B;
}
@media only screen and (max-width: 1023px) {
  .trades {
    height: auto;
    padding: 0 4px;
    margin-top: 0;
    background: none !important;
  }
}
.trades .nav {
  margin-bottom: 6px;
}
@media only screen and (max-width: 1023px) {
  .trades .nav {
    display: none;
  }
}
.trades__container {
  height: 373px;
  overflow-y: auto;
  overflow-x: auto;
  padding-right: 5px;
}
.trades__container::-webkit-scrollbar {
  width: 5px;
}
.trades__container::-webkit-scrollbar-thumb {
  background: rgb(94, 115, 107);
  border-radius: 10px;
}
.trades__container::-webkit-scrollbar-track {
  background: transparent;
}
body .dir-rtl .trades__container {
  padding-left: 5px;
}
.trades__container__table {
  display: table;
  width: 100%;
}
.trades__container__row {
  display: table-row;
}
.trades__container__row:first-child .trades__col {
  padding-bottom: 12px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
}
.trades__container__row:not(:first-child) .trades__col {
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 500;
}
.trades__container__col {
  display: table-cell;
  padding: 2px 4px;
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.trades__container__col:first-child {
  padding-left: 0;
}
.trades__container__col:nth-child(2) {
  padding-right: 12px;
}
body .dir-rtl .trades__container__col:nth-child(2) {
  padding-left: 12px;
  padding-right: 0;
}
.trades__container__col:last-child {
  padding-right: 0;
  text-align: right;
}
body .dir-rtl .trades__container__col:last-child {
  padding-left: 0;
  text-align: left;
}
.trades__container__col.positive {
  color: rgb(0, 177, 105);
}
.trades__container__col.negative {
  color: #FF6838;
}
.trades__container__line {
  display: inline-flex;
  align-items: center;
}
.trades__container .favorite {
  position: relative;
  top: -2px;
  margin-right: 4px;
}
body .dir-rtl .trades__container .favorite {
  margin-left: 4px;
  margin-right: 0;
}
.trades__container__info span {
  color: #777E90;
}

.table {
  margin-top: 5px;
  padding: 12px;
  border-radius: 4px;
  background: none;
}
.table.fees {
  height: auto;
}
@media only screen and (max-width: 767px) {
  .table.fees {
    padding: 12px 0;
  }
}
.table.fees .nav__link {
  padding: 12px;
}
.table.vip {
  height: auto;
  padding-bottom: 12px;
}
.table.order_margin_bottom {
  margin-bottom: 40px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .table.order_margin_bottom {
    margin-bottom: 0px;
  }
}
.table.order_book {
  height: 333px;
  width: 100%;
}
@media only screen and (max-width: 1179px) {
  .table.trade-item {
    margin-top: 0;
    width: 256px;
  }
}
@media only screen and (min-width: 1024px) {
  .table {
    display: block !important;
  }
}
.table .select {
  display: none;
}
@media only screen and (max-width: 767px) {
  .table .select {
    display: block;
    width: 100%;
    margin-bottom: 16px;
  }
}
.table .nav {
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .table .nav {
    display: none;
  }
}
.table .nav__link:not(:last-child) {
  margin-right: 16px;
}
.table__transaction {
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .table__transaction {
    height: -moz-fit-content;
    height: fit-content;
    overflow-x: scroll;
    scrollbar-width: none;
  }
}
.table__inner {
  display: table;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .table__inner {
    display: block;
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 1023px) {
  .table__inner {
    display: block;
    overflow-x: scroll;
  }
}
.table__inner.launch {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .table__inner.launch {
    display: table;
    width: 100%;
    margin-bottom: 16px;
  }
}
.table__inner.vip {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .table__inner.vip {
    width: 120%;
  }
}
.table__inner.fix_first_col .table__col:first-child {
  width: 110px;
}
@media only screen and (max-width: 1023px) {
  .table__inner.fix_first_col .table__col:first-child {
    width: 100%;
  }
}
.table__inner.order {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.table__inner.ambassador {
  display: contents;
}
.table__row {
  display: table-row;
}
@media only screen and (max-width: 1023px) {
  .table__row {
    display: table-row;
  }
}
.table__row:first-child .table__col {
  padding-bottom: 10px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
}
@media only screen and (max-width: 1023px) {
  .table__row:first-child {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .table__row:first-child .ambass {
    display: block;
  }
}
.table__row:not(:first-child) .table__col {
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .table__row.vip:first-child {
    display: table-row;
  }
}
.table__row.launch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 45%;
  padding: 10px 15px;
  background: rgba(204, 153, 1, 0.0392156863);
  border-radius: 6px;
  transition: all 0.2s;
  box-shadow: inset 0 0 0 2px rgba(1, 188, 141, 0.4);
}
.table__row.launch:first-child .table__col {
  padding-bottom: 6px;
}
body.dark .table__row.launch .table__col:not(:first-child) {
  color: #FCFCFD;
}
.table__row.launch:hover {
  background: transparent;
}
body.dark .table__row.launch {
  background: rgba(204, 153, 1, 0.0392156863);
  box-shadow: inset 0 0 0 2px rgba(1, 188, 141, 0.4);
}
body.dark .table__row.launch:hover {
  background: transparent;
}
@media only screen and (max-width: 767px) {
  .table__row.launch {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .table__row.order .table__col {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 767px) {
  .table__row.order {
    position: relative;
    display: table-row;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E8EC;
  }
  .table__row.order .table__col {
    align-items: center;
    margin-bottom: 4px;
    padding: 0.5rem 0.5rem;
    white-space: nowrap;
  }
}
.table__row.order:first-child {
  background-color: rgba(0, 237, 123, 0.1);
}
@media only screen and (max-width: 1023px) {
  .table__row.order:first-child {
    display: table-row;
  }
}
.table__row.order:first-child .table__col:last-child {
  text-align: right;
  padding-right: 0;
}
body .dir-rtl .table__row.order .sorting {
  padding-left: 13px;
  padding-right: 0;
}
.table__row.order .sorting:before {
  top: calc(50% - 5px);
  background-image: none;
}
.table__row.order .sorting:after {
  top: calc(50% + 1px);
  background-image: none;
}
.table__row_left {
  width: 50%;
}
.table__row_left .table__col {
  display: flex;
  align-items: center;
  color: #FCFCFD !important;
}
.table__row_left .table-list__value {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .table__row_left {
    width: 100%;
  }
}
.table__row_right {
  width: 50%;
}
.table__row_right .table__col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table__row_right .table__col:first-child {
  padding-left: 6px;
}
.table__row_right .table-list__value {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .table__row_right {
    width: 100%;
  }
}
.table__row.trade_rules .sorting {
  cursor: default;
}
.table__row.trade_rules .sorting:before {
  display: none;
}
.table__row.trade_rules .sorting:after {
  display: none;
}
.table__col {
  display: table-cell;
  vertical-align: middle;
  padding: 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.table__col:first-child {
  padding-left: 12px;
  color: #777E90;
}
body .dir-rtl .table__col:first-child {
  padding-right: 12px;
  padding-left: 6px;
}
.table__col:last-child {
  padding-right: 0;
  text-align: right;
}
body .dir-rtl .table__col:last-child {
  padding-left: 0;
  padding-right: 6px;
  text-align: right;
}
.table__col.vip {
  font-size: 14px !important;
}
.table__col.vip:last-child {
  text-align: left;
}
body .dir-rtl .table__col.vip:last-child {
  text-align: right;
}
.table__col.vip:first-child {
  padding-left: 10px;
}
body .dir-rtl .table__col.vip:first-child {
  padding-right: 10px;
}
.table__col.positive {
  color: rgb(0, 177, 105);
}
.table__col.negative {
  color: #FF6838;
}
.table__col.widFee {
  text-align: left;
}
.table__col.transac {
  font-size: 14px !important;
}
.table__col.transac:last-child {
  color: #00ed7b;
}
body .dir-rtl .table__col.transac:last-child {
  text-align: left;
}
.table__col.transact {
  font-size: 14px !important;
  font-weight: 500 !important;
  width: 130px;
}
body .dir-rtl .table__col.transact:last-child {
  text-align: left !important;
}
@media only screen and (max-width: 767px) {
  .table__col.transact {
    width: 150px;
  }
}
.table__col.id:first-child {
  width: 250px;
}
.table__label {
  display: none;
}
.table__label.launch {
  display: block;
  color: #181617;
}
body.dark .table__label.launch {
  color: #F4F5F6;
}
@media only screen and (max-width: 767px) {
  .table__label.vip {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .table__label {
    display: block;
    margin-right: auto;
    font-size: 12px;
    line-height: 1.6666666667;
    font-weight: 600;
    color: #77908b;
  }
  body .dir-rtl .table__label {
    margin-left: auto;
    margin-right: 0;
  }
}
.table__label.order {
  display: none;
}
.table__container {
  height: 282px;
  overflow-y: auto;
  overflow-x: auto;
  padding-right: 5px;
}
.table__container::-webkit-scrollbar {
  width: 5px;
}
.table__container::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 10px;
}
.table__container::-webkit-scrollbar-track {
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .table__container.height0 {
    height: 110px;
  }
  .table__container.height1 {
    height: 64px;
  }
}
@media only screen and (max-width: 1023px) and (max-width: 1023px) {
  .table__container.height1 {
    height: 100px;
  }
}
@media only screen and (max-width: 1023px) and (max-width: 767px) {
  .table__container.height1 {
    height: 250px;
  }
}
@media only screen and (max-width: 1023px) {
  .table__container.height2 {
    height: 96px;
  }
  .table__container.height3 {
    height: 128px;
  }
  .table__container.height4 {
    height: 160px;
  }
  .table__container.height5 {
    height: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .table__container {
    overflow-y: none;
    overflow-x: none;
  }
}
body .dir-rtl .table__container {
  padding-left: 5px;
}
.table__container__inner {
  display: table;
  width: 100%;
}
.table__container__inner.order {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.table__container__inner.openorder {
  display: table;
  width: 100%;
  table-layout: fixed;
}
@media only screen and (max-width: 767px) {
  .table__container__inner.openorder {
    justify-content: space-between;
  }
}
.table__container__row {
  display: table-row;
}
@media only screen and (max-width: 1023px) {
  .table__container__row {
    display: table-row;
  }
}
.table__container__row:first-child .table__col {
  padding-bottom: 10px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
}
@media only screen and (max-width: 1023px) {
  .table__container__row:first-child {
    display: table-row;
  }
}
.table__container__row:not(:first-child) .table__col {
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .table__container__row.order {
    position: relative;
    display: table-row;
  }
  .table__container__row.order .table__col {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    padding: 0.5rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .table__container__row.order {
    display: flex;
    border-bottom: 1px solid rgba(233, 242, 255, 0.2);
  }
  .table__container__row.order:first-child {
    display: none;
  }
}
body .dir-rtl .table__container__row.order .sorting {
  padding-left: 16px;
  padding-right: 0;
}
.table__container__row.order .sorting:before {
  top: calc(50% - 5px);
  background-image: none;
}
.table__container__row.order .sorting:after {
  top: calc(50% + 1px);
  background-image: none;
}
.table__container__row.no-orders {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
}
@media only screen and (max-width: 767px) {
  .table__container__row.no-orders {
    display: table-row !important;
  }
}
@media only screen and (max-width: 1023px) {
  .table__container__row.myorder {
    position: relative;
    display: table-row;
  }
  .table__container__row.myorder .table__col {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    padding: 0.5rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .table__container__row.myorder {
    display: flex;
    border-bottom: 1px solid #B1B5C3;
  }
  .table__container__row.myorder:first-child {
    display: none;
  }
}
body .dir-rtl .table__container__row.myorder .sorting {
  padding-left: 16px;
  padding-right: 0;
}
.table__container__row.myorder .sorting:before {
  top: calc(50% - 5px);
  background-image: none;
}
.table__container__row.myorder .sorting:after {
  top: calc(50% + 1px);
  background-image: none;
}
@media only screen and (max-width: 767px) {
  .table__container__row {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-bottom: 1px solid #B1B5C3;
  }
}
.table__container__col {
  vertical-align: middle;
  display: table-cell;
  padding: 5px 12px;
  font-size: 12px;
}
.table__container__col:first-child {
  padding-left: 6px;
}
@media only screen and (max-width: 767px) {
  .table__container__col:first-child {
    padding-left: 0;
  }
}
body .dir-rtl .table__container__col:first-child {
  padding-right: 0;
  padding-left: 6px;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .table__container__col:first-child {
    padding-right: 0;
    padding-left: 0;
  }
}
.table__container__col:last-child {
  padding-right: 0;
  text-align: right;
}
body .dir-rtl .table__container__col:last-child {
  text-align: left;
  padding-left: 0px;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .table__container__col:last-child {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .table__container__col:last-child {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .table__container__col:last-child {
    text-align: left;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .table__container__col {
    display: flex;
    justify-content: space-between;
    border-bottom: none;
    padding: 0 0 8px;
  }
}
.table__container__col.col {
  text-align: left;
}
body .dir-rtl .table__container__col.col {
  text-align: right;
}
.table__container__col.col:last-child {
  text-align: right;
}
body .dir-rtl .table__container__col.col:last-child {
  text-align: left;
  padding-left: 0px;
}
.table__container__col.positive {
  color: rgb(0, 177, 105);
}
.table__container__col.negative {
  color: #FF6838;
}
.table__container__col.amount {
  text-align: left !important;
}
body .dir-rtl .table__container__col.amount {
  text-align: right !important;
}
.table__container__label {
  display: none;
}
@media only screen and (max-width: 767px) {
  .table__container__label {
    display: inline-block;
    margin-right: auto;
    font-size: 12px;
    line-height: 1.6666666667;
    font-weight: 600;
    color: #777E90;
  }
  body .dir-rtl .table__container__label {
    margin-left: auto;
    margin-right: 0;
  }
}
.table__container_link {
  text-align: center;
  padding-top: 100px;
}
.table__container_link.green-text {
  color: #00ed7b;
}
.table__cancel {
  padding: 0px 15px;
  font-size: 13px;
  height: 30px;
}
.table__no-orders-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  border-radius: 4px;
  margin: 20px 0;
}
.table__no-orders-icon {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .table__no-orders-icon {
    font-size: 12px;
    font-weight: 400;
  }
}

.tableWD {
  margin-top: 10px;
  padding: 16px;
  border-radius: 4px;
  background: #FCFCFD;
  height: 323px;
  overflow-y: auto;
  padding-left: 5px;
}
.tableWD::-webkit-scrollbar {
  width: 5px;
}
.tableWD::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 10px;
}
.tableWD::-webkit-scrollbar-track {
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .tableWD {
    padding: 16px 0;
    margin-bottom: 42px;
  }
}
body.dark .tableWD {
  background: #17181B;
}
@media only screen and (min-width: 1024px) {
  .tableWD {
    display: block !important;
  }
}
.tableWD__withDep {
  display: table;
  width: 100%;
}
.tableWD__withDep__row {
  display: table-row;
}
.tableWD__withDep__col {
  vertical-align: middle;
  display: table-cell;
  padding: 6px;
}
@media only screen and (max-width: 1023px) {
  .tableWD__withDep__col {
    font-size: 13px;
  }
}
.tableWD__withDep__col_amount {
  display: flex;
  align-items: center;
}
.tableWD__withDep__image {
  width: 28px;
  height: 28px;
  margin-left: 8px;
}
.tableWD__withDep__title {
  text-align: left;
}
body .dir-rtl .tableWD__withDep__title {
  text-align: right;
}

.fix_marg {
  margin-bottom: 96px;
}
@media only screen and (max-width: 1023px) {
  .fix_marg {
    margin-bottom: 70px;
  }
}

.select_search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
@media only screen and (max-width: 1023px) {
  .select_search {
    display: block;
  }
}
.select_search .currencies__input {
  width: 333px !important;
}
@media only screen and (max-width: 1023px) {
  .select_search .currencies__input {
    width: 100%;
  }
}

.bargaining {
  padding: 6px 12px;
  background: #FCFCFD;
  border-radius: 4px;
  height: 444px;
  margin-top: 2px;
}
body.dark .bargaining {
  background: #17181B;
}
@media only screen and (max-width: 1023px) {
  .bargaining {
    width: 100%;
    padding: 0;
    margin: 0;
    height: 420px;
    background: none !important;
  }
}
.bargaining__main {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
@media only screen and (max-width: 1023px) {
  .bargaining__main {
    margin-bottom: 3px;
  }
}
.bargaining__info {
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 500;
  color: #777E90;
}
@media only screen and (max-width: 1023px) {
  .bargaining__info {
    display: none;
  }
}
.bargaining__info a {
  margin-top: 8px;
  color: #00ed7b;
  transition: color 0.2s;
}
body.dark .bargaining__info a {
  color: #00ed7b;
}
.bargaining__info a:hover {
  color: #E6E8EC;
}
.bargaining__info .icon {
  width: 18px;
  height: 18px;
  transition: fill 0.2s;
}
.bargaining__info .icon:hover {
  color: #E6E8EC;
}
@media only screen and (max-width: 1023px) {
  .bargaining__info.leverage {
    display: block;
  }
}
.bargaining__info_body {
  position: absolute;
  box-shadow: 0px 16px 48px rgba(31, 47, 70, 0.1);
  border-radius: 12px;
  background: #FCFCFD;
  top: 660px;
  right: 357px;
  padding: 8px 12px;
  transition: all 0.3s;
  visibility: hidden;
}
body.dark .bargaining__info_body {
  background: #23262F;
}
body .dir-rtl .bargaining__info_body {
  right: 0px;
  left: 357px;
}
.bargaining__info_body.show {
  visibility: visible;
}
.bargaining .nav {
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}
body .dir-rtl .bargaining .nav {
  margin-right: 0;
  margin-left: 0;
}
@media only screen and (max-width: 1023px) {
  .bargaining .nav {
    display: none;
  }
}
.bargaining .select {
  display: none;
  padding: 0 22px !important;
}
@media only screen and (max-width: 1023px) {
  .bargaining .select {
    display: block;
    height: 35px;
    line-height: 35px;
  }
}
.bargaining .nav__link:not(:last-child) {
  margin-right: 16px;
}
.bargaining .nav__link.order.active {
  background: none;
  color: #00ed7b;
}
@media only screen and (max-width: 1023px) {
  .bargaining__wrapper {
    background: transparent;
    transition: all 0.3s;
  }
  body.dark .bargaining__wrapper {
    background: #181617;
  }
}
.bargaining__btns {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .bargaining__btns {
    display: flex;
    margin: 0 -6px;
  }
}
@media only screen and (max-width: 1023px) {
  .bargaining__btns .bargaining__button {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
    margin: 0 6px;
  }
}
.bargaining__button.sending {
  opacity: 0.75;
}
.bargaining__item {
  display: block;
}
.bargaining__top {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .bargaining__top {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
}
.bargaining__subtitle {
  margin-right: auto;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #777E90;
}
.bargaining__close .icon {
  width: 24px;
  height: 24px;
  fill: #777E90;
}
.bargaining__row {
  display: flex;
  margin: 0 -16px;
}
@media only screen and (max-width: 1023px) {
  .bargaining__row {
    display: block;
    margin: 0 0 6px;
  }
}
.bargaining__col {
  flex: 0 0 calc(50% - 32px);
  width: calc(50% - 32px);
  margin: 0 16px;
}
@media only screen and (min-width: 1024px) {
  .bargaining__col {
    display: block !important;
  }
}
@media only screen and (max-width: 1023px) {
  .bargaining__col {
    display: none;
    width: 100%;
    margin: 0;
  }
}
.bargaining__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.bargaining__head.mob {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .bargaining__head.mob {
    display: flex;
    background: rgba(0, 237, 123, 0.1);
    width: 45%;
    padding: 7px 0;
    border-radius: 6px;
  }
}
.bargaining__head.show:first-child {
  background: #58BD7D;
}
.bargaining__head.show:last-child {
  background: #FF6838;
}
.bargaining__title {
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 16px !important;
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .bargaining__title.desk {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .bargaining__title {
    width: 100%;
    font-size: 13px !important;
  }
}
.bargaining__counter {
  display: flex;
  margin: 0 5px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .bargaining__counter {
    margin: 0 5px 5px;
    width: 100%;
  }
}
.bargaining__counter.dash {
  margin: 0;
}
.bargaining__counter .icon {
  width: 16px;
  height: 16px;
  fill: #00ed7b;
  margin-right: 6px;
}
body .dir-rtl .bargaining__counter .icon {
  margin-left: 6px;
  margin-right: 0px;
}
.bargaining__field {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 16px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px #E6E8EC;
  cursor: pointer;
  direction: ltr;
}
body .dir-rtl .bargaining__field {
  direction: rtl;
}
body.dark .bargaining__field {
  box-shadow: inset 0 0 0 2px #23262F;
}
.bargaining__field.disabled {
  background-color: #E6E8EC;
}
body.dark .bargaining__field.disabled {
  background-color: #353945;
}
.bargaining__field.invalid {
  border: 1px solid var(--red-color) !important;
}
@media only screen and (max-width: 1023px) {
  .bargaining__field {
    margin-bottom: 6px;
    padding: 0 8px;
  }
}
.bargaining__input {
  width: 30px;
  flex-grow: 1;
  height: 38px;
  padding: 0 10px;
  background: none;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #23262F;
}
body .dir-rtl .bargaining__input {
  text-align: right;
}
body.dark .bargaining__input {
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .bargaining__input {
    width: 80px;
    height: 32px;
  }
}
.bargaining__input:focus {
  box-shadow: none;
}
.bargaining__label, .bargaining__currency {
  font-weight: 500;
  color: #777E90;
  pointer-events: none;
}
@media only screen and (max-width: 1023px) {
  .bargaining__label, .bargaining__currency {
    font-size: 11px;
  }
  .bargaining__label.stop, .bargaining__currency.stop {
    font-size: 13px;
  }
}
.bargaining__col > .bargaining__button {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .bargaining__col > .bargaining__button {
    width: 100%;
    height: 33px;
  }
}
.bargaining__new {
  display: block;
  margin-bottom: 2px;
}
.bargaining__new__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
}
.bargaining__new__text {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .bargaining__new__text {
    font-size: 9px;
  }
}
.bargaining__new__content {
  font-size: 12px;
  color: #00ed7b;
}
@media only screen and (max-width: 767px) {
  .bargaining__new__content {
    font-size: 9px;
  }
}
.bargaining .margLimit {
  margin-top: 55px;
}
@media only screen and (max-width: 1023px) {
  .bargaining .margLimit {
    margin-top: 35px;
  }
}
.bargaining .margStop {
  margin-top: 12px;
}
@media only screen and (max-width: 1023px) {
  .bargaining .margStop {
    margin-top: 6px;
  }
}
.bargaining .margMarket {
  margin-top: 102px;
}
@media only screen and (max-width: 1023px) {
  .bargaining .margMarket {
    margin-top: 75px;
  }
}
.bargaining__container {
  position: relative;
}

.range {
  position: relative;
  height: 36px;
}
.range__slider {
  position: absolute;
  left: 0;
  top: 12px;
  right: 0;
}
.range__indicators {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.range__indicators span {
  width: 2px;
  height: 6px;
  border-radius: 2px;
  background: #E6E8EC;
}
body.dark .range__indicators span {
  background: #353945;
}

.noUi-horizontal {
  height: 2px;
}
.noUi-target {
  border: none;
  background: #E6E8EC;
  box-shadow: none;
}
body.dark .noUi-target {
  background: #353945;
}
.noUi-connect {
  background: #37ffbc;
}
.noUi-handle {
  border: none;
  box-shadow: none;
  background: #37ffbc;
  border-radius: 50%;
  cursor: pointer;
}
.noUi-handle:before, .noUi-handle:after {
  display: none;
}
.noUi-horizontal .noUi-handle {
  right: -12px;
  top: -9px;
  width: 20px;
  height: 20px;
  border: 4px solid #777E90;
  background: #F4F5F6;
  box-shadow: 0px 8px 16px -8px rgba(15, 15, 15, 0.2);
}
.noUi-tooltip {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  padding: 3px 10px;
  background: #23262F;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #FCFCFD;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}
.noUi-tooltip:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #181617 transparent transparent transparent;
}
body.dark .noUi-tooltip {
  background: #353945;
}
body.dark .noUi-tooltip:before {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #353945 transparent transparent transparent;
}
.noUi-handle:hover .noUi-tooltip {
  visibility: visible;
  opacity: 1;
}
.noUi-horizontal .noUi-tooltip {
  bottom: 24px;
}

.range_time .noUi-horizontal {
  height: 2px;
}
.range_time .noUi-handle {
  top: -11px;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -12px;
}

.charts {
  position: relative;
  z-index: 2;
  border-radius: 4px;
}
@media only screen and (min-width: 1024px) {
  .charts {
    display: block !important;
  }
}
.charts__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 4px;
  background: #FCFCFD;
  border-bottom: 1px solid #E6E8EC;
}
body.dark .charts__head {
  background: #17181B;
  border-color: #23262F;
}
.charts .nav {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .charts__group .nav {
    display: none;
  }
}
.charts .select {
  display: none;
  height: 28px;
  line-height: 28px;
  background: #E6E8EC;
}
body.dark .charts .select {
  background: #353945;
}
@media only screen and (max-width: 767px) {
  .charts .select {
    display: block;
  }
}
.charts__item {
  display: none;
}
.charts__inner {
  overflow: hidden;
}
.charts__inner > div {
  height: 492px !important;
  margin: -1px;
}
@media only screen and (max-width: 1023px) {
  .charts__inner > div {
    position: relative;
    z-index: -1;
  }
}
body.dark .charts__inner:first-child {
  display: none;
}
.charts__inner:nth-child(2) {
  display: none;
}
body.dark .charts__inner:nth-child(2) {
  display: block;
}
.charts__element {
  width: 100%;
  height: 490px;
  background: #FCFCFD;
}
body.dark .charts__element {
  background: #17181B;
}
body.dark .charts__element .highcharts-grid-line,
body.dark .charts__element .highcharts-tick,
body.dark .charts__element .highcharts-axis-line {
  stroke: #353945 !important;
}

.trading__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.trading__head {
  padding: 60px 0;
}
.trading__top {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  margin-bottom: 16px;
}
.trading__back {
  margin: 0 6px;
}
.trading__back .icon {
  width: 28px;
  height: 28px;
  cursor: pointer;
}
body .dir-rtl .trading__back .icon {
  transform: rotateY(180deg);
}
.trading__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
}
.trading__box {
  padding: 16px;
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid #00ed7b;
  border-radius: 6px;
}
body.dark .trading__box {
  background: rgba(0, 237, 123, 0.1);
  border-color: rgba(0, 237, 123, 0.1);
}
@media only screen and (max-width: 767px) {
  .trading__box {
    padding: 6px 12px;
  }
}
.trading__chart {
  display: flex;
  flex-direction: column;
}
.trading__chart .chart {
  width: 100%;
  margin: 8px 0;
}
@media only screen and (max-width: 1023px) {
  .trading__chart .chart svg {
    width: 100%;
  }
}
.trading__up_dowm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .dir-rtl .trading__up_dowm {
  direction: ltr;
}
.trading__up_dowm .up_amount {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: rgb(135, 144, 159);
}
.trading__up_dowm .down_amount {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: rgb(135, 144, 159);
}
.trading__up_dowm .icon {
  margin: 0 6px;
}
.trading__popular {
  margin-top: 24px;
}
.trading__popular_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .trading__popular_title {
    font-size: 18px;
  }
}
.trading__events {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: 12px;
}
.trading__events .event {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 48%;
  padding: 12px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
}
body.dark .trading__events .event svg path {
  fill: #00ed7b;
}
.trading__events .event_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #00ed7b;
  margin: 0 6px;
}
body.dark .trading__events .event_text {
  color: #fbfbfb;
}
.trading__events .event .left {
  display: flex;
  align-items: center;
}
.trading__events .event .right {
  width: 24px;
  height: 24px;
  color: #fbfbfb;
  background: #00ed7b;
  border-radius: 50%;
  text-align: center;
}
body.dark .trading__events .event .right {
  background: #00ed7b;
}
@media only screen and (max-width: 767px) {
  .trading__events .event {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .trading__events {
    flex-direction: column;
  }
}
.trading__body {
  padding-bottom: 60px;
}
.trading__body_items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .trading__body_items {
    display: block;
  }
}
@media only screen and (max-width: 1023px) {
  .trading__body {
    padding: 0 32px 60px;
  }
}
@media only screen and (max-width: 767px) {
  .trading__body {
    padding: 0 24px 60px;
  }
}
.trading__hotZones_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.trading__hotZones_body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .trading__hotZones_body {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
  .trading__hotZones_body::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .trading__hotZones_body::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
  }
  .trading__hotZones_body::-webkit-scrollbar-track {
    background: transparent;
  }
}
.trading__hotZones_item {
  width: 32%;
  height: 216px;
  padding: 16px;
  border: 1px solid #0f7350;
  border-radius: 6px;
}
.trading__hotZones_item:not(:last-child) {
  margin-right: 24px;
}
.trading__hotZones_item .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trading__hotZones_item .title {
  font-size: 16px;
  font-weight: 600;
}
.trading__hotZones_item .link {
  font-size: 14px;
  font-weight: 400;
  color: #00ed7b;
}
body.dark .trading__hotZones_item {
  border-color: #0F3873;
}
@media only screen and (max-width: 767px) {
  .trading__hotZones_item {
    width: 100%;
  }
}
.trading__hotZones_container {
  width: 100%;
  height: auto;
  margin-top: 12px;
}
.trading__hotZones_table {
  display: table;
  width: 100%;
}
.trading__hotZones_row {
  display: table-row;
}
.trading__hotZones_col {
  display: table-cell;
  vertical-align: middle;
  padding: 6px;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.trading__hotZones_info {
  display: flex;
  align-items: center;
}
.trading__zones {
  font-size: 20px;
  font-weight: 600;
  line-height: 31.43px;
}
.trading__arrows {
  display: flex;
  align-items: center;
}
.trading__arrows .left {
  margin-right: 6px;
}
body.dark .trading__arrows .left svg rect {
  fill: #00ed7b;
}
.trading__wrapper {
  width: 32.5%;
  height: 550px;
  padding: 16px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 237, 123, 0.1);
  margin: 0 auto 13px;
}
body.dark .trading__wrapper {
  background: rgba(233, 255, 248, 0.05);
  border: 1px solid rgba(0, 237, 123, 0.1);
}
@media only screen and (max-width: 767px) {
  .trading__wrapper {
    padding: 16px 8px;
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .trading__wrapper {
    padding: 16px 6px;
    width: 100%;
  }
}

.hamster__center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hamster__head {
  background: #00ed7b;
}
.hamster__wrap {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .hamster__wrap {
    width: 100%;
    margin: 33px 0;
  }
}
.hamster__bg {
  width: 40%;
}
.hamster__bg img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .hamster__bg {
    display: none;
  }
}
.hamster__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
  letter-spacing: 0.03em;
  color: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  .hamster__title {
    font-size: 28px;
  }
}
.hamster__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin: 15px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 767px) {
  .hamster__subtitle {
    font-size: 14px;
    line-height: 24.4px;
  }
}
.hamster__btns {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .hamster__btns {
    flex-wrap: wrap;
  }
}
.hamster__button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.hamster__button.sell {
  background: #FCFCFD;
  color: #00ed7b;
  margin-right: 16px;
}
.hamster__button.sell:hover {
  background: rgba(255, 255, 255, 0.231372549);
  color: #FCFCFD;
}
.hamster__button.website {
  background: rgba(255, 255, 255, 0.231372549);
  color: #FCFCFD;
}
.hamster__button.website:hover {
  background: #00ed7b;
}
.hamster__button.share {
  margin-left: 16px;
  background: transparent;
}
@media only screen and (max-width: 767px) {
  .hamster__button.share {
    display: none;
  }
}
.hamster__arrow {
  margin-left: 12px;
}
.hamster__body {
  padding: 60px 0;
}
@media only screen and (max-width: 1023px) {
  .hamster__body {
    padding: 60px 32px;
  }
}
@media only screen and (max-width: 767px) {
  .hamster__body {
    padding: 60px 24px;
  }
}
.hamster__news {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hamster__news_bg {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .hamster__news_bg {
    width: 100%;
  }
}
.hamster__news_content {
  width: 50%;
  padding-right: 16px;
}
@media only screen and (max-width: 767px) {
  .hamster__news_content {
    width: 100%;
    padding-right: 0;
  }
}
.hamster__news_title {
  font-size: 28px;
  font-weight: 600;
  line-height: 39.01px;
  margin-bottom: 12px;
}
body.dark .hamster__news_title {
  color: rgba(0, 237, 123, 0.1);
}
.hamster__news_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .hamster__news {
    flex-direction: column;
  }
}
.hamster__timeline {
  margin: 80px 0 100px;
}
.hamster__timeline_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .hamster__timeline_head {
    text-align: center;
  }
}
.hamster__timeline_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 31.2px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.hamster__timeline_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(18, 18, 18, 0.6588235294);
}
body.dark .hamster__timeline_subtitle {
  color: rgba(255, 255, 255, 0.6588235294);
}
.hamster__timeline__container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hamster__timeline__container .timeline-left {
  padding: 0;
  display: flex;
  align-items: center;
  margin-right: 20px;
  width: 20%;
}
@media only screen and (max-width: 767px) {
  .hamster__timeline__container .timeline-left {
    width: 100%;
    margin: 0;
    justify-content: center;
    padding: 0 60px;
  }
}
.hamster__timeline__container .timeline-bar {
  padding: 106px 12px;
  background: #0C2C59;
}
@media only screen and (max-width: 767px) {
  .hamster__timeline__container .timeline-bar {
    display: none;
  }
}
.hamster__timeline__container .timeline-left h2 {
  font-size: 28px;
  color: #0c5947;
  padding: 30px;
  text-align: center;
}
body.dark .hamster__timeline__container .timeline-left h2 {
  color: rgba(0, 237, 123, 0.1);
}
.hamster__timeline__container .timeline-right {
  display: flex;
  justify-content: space-between;
  flex: 3;
}
@media only screen and (max-width: 767px) {
  .hamster__timeline__container .timeline-right {
    flex-direction: column;
    width: 100%;
  }
}
.hamster__timeline__container .timeline-item {
  width: 20%;
  flex: 1;
  color: white;
  padding: 24px;
  display: flex;
  text-align: right;
  flex-direction: column;
}
.hamster__timeline__container .timeline-item:nth-child(1) {
  background: #0C2C59;
  text-align: right;
  justify-content: flex-end;
}
.hamster__timeline__container .timeline-item:nth-child(1)::before {
  content: "";
  position: absolute;
  left: 21.5%;
  top: 0;
  bottom: 0;
  width: 30px;
  background-color: rgb(251, 251, 251);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
body.dark .hamster__timeline__container .timeline-item:nth-child(1)::before {
  background-color: rgb(18, 19, 20);
}
@media only screen and (max-width: 767px) {
  .hamster__timeline__container .timeline-item:nth-child(1) {
    justify-content: center;
    text-align: center;
  }
  .hamster__timeline__container .timeline-item:nth-child(1)::before {
    display: none;
  }
}
.hamster__timeline__container .timeline-item:nth-child(2) {
  background: #144B99;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .hamster__timeline__container .timeline-item:nth-child(2) {
    justify-content: center;
    text-align: center;
  }
}
.hamster__timeline__container .timeline-item:nth-child(3) {
  background: #00ED7B;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .hamster__timeline__container .timeline-item:nth-child(3) {
    justify-content: center;
    text-align: center;
  }
}
.hamster__timeline__container .timeline-item:nth-child(4) {
  background: rgba(0, 237, 123, 0.1);
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .hamster__timeline__container .timeline-item:nth-child(4) {
    justify-content: center;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .hamster__timeline__container .timeline-item {
    width: 50%;
    margin: 0 auto;
  }
}
.hamster__timeline__container h3 {
  font-size: 18px;
  font-weight: bold;
}
.hamster__timeline__container ul {
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
  margin: 12px 0;
}
.hamster__timeline__container ul li {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .hamster__timeline__container {
    flex-direction: column;
  }
}
.hamster_section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hamster_left {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  align-items: center;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .hamster_left {
    padding-right: 0;
  }
}
.hamster_image-container {
  text-align: left;
}
.hamster_large-image {
  width: 100%;
  height: auto;
  padding-bottom: 30px;
}
.hamster_description-container {
  margin-top: 10px;
}
.hamster_title {
  font-size: 21px;
  color: #333;
  margin-bottom: 16px;
}
body.dark .hamster_title {
  color: #FFFFFF;
}
.hamster_description {
  font-size: 13px;
  font-weight: 400;
  line-height: 25.2px;
  color: #000000;
  margin-bottom: 16px;
}
body.dark .hamster_description {
  color: #FFFFFF;
}
.hamster_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hamster_small-image-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}
.hamster_small-image {
  width: 50%;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}
.hamster_small-image-item div {
  display: flex;
  flex-direction: column;
}
.hamster_small-image-text {
  font-size: 14px;
  color: #555;
  line-height: 23px;
}
body.dark .hamster_small-image-text {
  color: #FFFFFF;
}
.hamster_small-image-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 16px;
}
.hamster_divider-horizontal {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 10px 0;
}

.coinInfo {
  padding: 78px 0 0;
}
@media only screen and (max-width: 767px) {
  .coinInfo {
    padding: 60px 0;
  }
}
.coinInfo__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .coinInfo__container {
    flex-direction: column-reverse;
    padding: 0 16px;
  }
}
.coinInfo__left {
  width: 70%;
  padding-right: 16px;
}
body .dir-rtl .coinInfo__left {
  padding-left: 16px;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .coinInfo__left {
    width: 100%;
    padding-left: 0;
  }
}
.coinInfo__left.fixed {
  position: fixed;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .coinInfo__left {
    width: 100%;
    padding-right: 0;
  }
}
.coinInfo__chart {
  width: 100%;
  height: 500px;
  margin-bottom: 60px;
}
.coinInfo__price {
  margin: 60px 0 30px;
}
.coinInfo__price_title {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 24px;
}
.coinInfo__price_content {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 28px;
}
.coinInfo__price_subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 16px;
}
body .dir-rtl .coinInfo__price_subtitle {
  direction: ltr;
  display: inline-flex;
}
.coinInfo__price_history {
  width: 100%;
  margin-bottom: 24px;
}
.coinInfo__price_history_table {
  display: table;
  width: 100%;
}
.coinInfo__price_history_table .row {
  display: table-row;
  width: 100%;
}
.coinInfo__price_history_table .row:first-child {
  background: #121314;
  color: #fbfbfb;
}
body.dark .coinInfo__price_history_table .row:first-child {
  background: rgba(255, 255, 255, 0.1019607843);
}
.coinInfo__price_history_table .row .col:nth-child(2) {
  text-align: center;
}
.coinInfo__price_history_table .row .col:last-child {
  text-align: right;
}
.coinInfo__price_history_table .col {
  display: table-cell;
  vertical-align: middle;
  padding: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
.coinInfo__price_info {
  width: 100%;
  margin-bottom: 32px;
}
.coinInfo__price_text {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5019607843);
  margin-bottom: 8px;
}
.coinInfo__price_text .icon {
  margin: 0 6px;
}
@media only screen and (max-width: 767px) {
  .coinInfo__price_text .icon {
    display: none;
  }
}
.coinInfo__price_text.cap::after {
  content: "Market Cap = Current Price x Circulating Supply, Refers to the total market value of a cryptocurrency’s circulating supply. It is similar to the stock market’s measurement of multiplying price per share by shares readily available in the market (not held & locked by insiders, governments)";
  position: absolute;
  top: 15%;
  left: 115%;
  width: 320px;
  font-size: 11px;
  transform: translateX(-50%);
  background-color: rgb(99, 102, 241);
  color: #fbfbfb;
  border-radius: 6px;
  padding: 5px 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
.coinInfo__price_text.volume::after {
  content: "A measure of a cryptocurrency trading volume across all tracked platforms in the last 24 hours. This is tracked on a rolling 24-hour basis with no open/closing times.";
  position: absolute;
  top: 15%;
  left: 132%;
  width: 320px;
  font-size: 11px;
  transform: translateX(-50%);
  background-color: rgb(99, 102, 241);
  color: #fbfbfb;
  border-radius: 6px;
  padding: 5px 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
.coinInfo__price_text.circulation::after {
  content: "The amount of coins that are circulating in the market and are tradeable by the public. It is comparable to looking at shares readily available in the market (not held & locked by insiders, governments).";
  position: absolute;
  top: 15%;
  left: 132%;
  width: 320px;
  font-size: 11px;
  transform: translateX(-50%);
  background-color: rgb(99, 102, 241);
  color: #fbfbfb;
  border-radius: 6px;
  padding: 5px 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
.coinInfo__price_text.total::after {
  content: "The amount of coins that have already been created, minus any coins that have been burned (removed from circulation). It is comparable to outstanding shares in the stock market.Total Supply = Onchain supply - burned tokens";
  position: absolute;
  top: 15%;
  left: 117%;
  width: 320px;
  font-size: 11px;
  transform: translateX(-50%);
  background-color: rgb(99, 102, 241);
  color: #fbfbfb;
  border-radius: 6px;
  padding: 5px 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
.coinInfo__price_text.fully::after {
  content: "Fully Diluted Valuation (FDV) = Current Price x Total Supply Fully Diluted Valuation (FDV) is the theoretical market capitalization of a coin if the entirety of its supply is in circulation, based on its current market price. The FDV value is theoretical as increasing the circulating supply of a coin may impact its market price. Also depending on the tokenomics, emission schedule or lock-up period of a coin's supply, it may take a significant time before its entire supply is released into circulation.";
  position: absolute;
  top: 15%;
  left: 152%;
  width: 320px;
  font-size: 11px;
  transform: translateX(-50%);
  background-color: rgb(99, 102, 241);
  color: #fbfbfb;
  border-radius: 6px;
  padding: 5px 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
.coinInfo__price_text:hover.cap::after, .coinInfo__price_text:hover.volume::after, .coinInfo__price_text:hover.circulation::after, .coinInfo__price_text:hover.total::after, .coinInfo__price_text:hover.fully::after {
  opacity: 1;
  visibility: visible;
}
body.dark .coinInfo__price_text {
  color: rgba(255, 255, 255, 0.5019607843);
}
body.dark .coinInfo__price_text svg path {
  fill: rgba(255, 255, 255, 0.5019607843);
}
.coinInfo__price_amount {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.coinInfo__price_change {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.5019607843);
  margin-bottom: 16px;
}
.coinInfo__price_change .chart {
  margin: 0 6px;
}
body.dark .coinInfo__price_change {
  color: rgba(255, 255, 255, 0.5019607843);
}
.coinInfo__price_items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.coinInfo__price_items .item {
  position: relative;
  width: 25%;
  padding-right: 12px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1023px) {
  .coinInfo__price_items .item {
    width: 33%;
  }
}
@media only screen and (max-width: 767px) {
  .coinInfo__price_items .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }
}
.coinInfo__banner {
  margin-bottom: 60px;
}
.coinInfo__banner img {
  width: 100%;
}
.coinInfo__about {
  margin-bottom: 60px;
}
.coinInfo__about_title {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 16px;
}
.coinInfo__about_content {
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 24px;
}
body.dark .coinInfo__about_content {
  color: rgba(255, 255, 255, 0.6);
}
.coinInfo__resources {
  margin-bottom: 88px;
}
.coinInfo__resources_title {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 16px;
}
.coinInfo__resources_links {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.coinInfo__resources_links .link {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #00ed7b;
  margin-bottom: 16px;
}
.coinInfo__resources_links .icon {
  margin-right: 8px;
}
body .dir-rtl .coinInfo__resources_links .icon {
  margin-right: 0px;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .coinInfo__resources {
    margin-bottom: 33px;
  }
}
.coinInfo__right {
  width: 30%;
  padding-left: 16px;
  position: sticky;
  top: 0;
}
body .dir-rtl .coinInfo__right {
  padding-right: 16px;
  padding-left: 0px;
}
@media only screen and (max-width: 1023px) {
  body .dir-rtl .coinInfo__right {
    padding: 0;
  }
}
.coinInfo__right.fixed {
  position: fixed;
  top: 0;
  right: 0;
}
.coinInfo__right_table {
  display: table;
  width: 100%;
}
.coinInfo__right_row {
  display: table-row;
  width: 100%;
}
.coinInfo__right_col {
  display: table-cell;
  vertical-align: middle;
  padding: 12px 12px 12px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.coinInfo__right_col:last-child {
  text-align: right;
}
.coinInfo__right_item {
  display: flex;
  align-items: center;
}
.coinInfo__right_details {
  display: flex;
  flex-direction: column;
}
.coinInfo__right_details .currency {
  margin-bottom: 0;
}
.coinInfo__right_details .symbol {
  font-size: 12px;
  color: #848E9C;
}
.coinInfo__right_icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 16px;
}
body .dir-rtl .coinInfo__right_icon {
  margin-right: 0px;
  margin-left: 16px;
}
@media only screen and (max-width: 767px) {
  .coinInfo__right .desktop {
    display: none;
  }
}
.coinInfo__right.mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .coinInfo__right.mobile {
    display: block;
    width: 100%;
    padding: 0 24px;
  }
}
@media only screen and (max-width: 767px) {
  .coinInfo__right {
    width: 100%;
    padding-left: 0;
  }
}
.coinInfo__buy {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
.coinInfo__buy_button {
  margin-bottom: 8px;
}
.coinInfo__buy_button .button {
  height: 60px;
  width: 100%;
}
.coinInfo__tabs {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 24px;
}
.coinInfo__tabs .tab {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  padding-bottom: 6px;
  color: rgba(0, 0, 0, 0.4);
  margin-right: 16px;
}
body.dark .coinInfo__tabs .tab {
  color: rgba(255, 255, 255, 0.4);
}
.coinInfo__tabs .tab.active {
  font-weight: 500;
  color: #121314;
  border-bottom: 4px solid rgba(0, 237, 123, 0.1);
}
body.dark .coinInfo__tabs .tab.active {
  color: #fbfbfb;
}
.coinInfo__tabs .tab:hover {
  color: #121314;
}
.coinInfo__box {
  padding: 16px;
  margin-bottom: 24px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
body.dark .coinInfo__box {
  background: rgba(0, 237, 123, 0.1);
}
.coinInfo__box_input {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coinInfo__box_input .input {
  width: 70%;
  font-size: 14px;
  font-weight: 300;
  line-height: 20.8px;
  color: rgba(0, 0, 0, 0.5);
  padding: 12px 0;
  background: transparent;
  transition: all 0.2s;
}
body.dark .coinInfo__box_input .input {
  color: #FCFCFD;
}
.coinInfo__box_input .input::-moz-placeholder {
  font-size: 14px;
  font-weight: 100;
}
.coinInfo__box_input .input::placeholder {
  font-size: 14px;
  font-weight: 100;
}
body.dark .coinInfo__box_input .input::-moz-placeholder {
  color: #FCFCFD;
}
body.dark .coinInfo__box_input .input::placeholder {
  color: #FCFCFD;
}
.coinInfo__box_input .input:focus {
  border: none;
  border-color: unset;
  --tw-ring-color: unset;
  box-shadow: unset;
}
@media only screen and (max-width: 1023px) {
  .coinInfo__box_input .input {
    width: 50%;
  }
}
.coinInfo__box_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  padding: 10px 5px;
  background: #000000;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #EAECEF;
}
.coinInfo__box_cart .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 50%;
}
body .dir-rtl .coinInfo__box_cart .icon {
  margin-right: 0px;
  margin-left: 8px;
}
@media only screen and (max-width: 1023px) {
  .coinInfo__box_cart {
    width: 50%;
  }
}
.coinInfo__range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 12px;
}
.coinInfo__range .amount {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 50%;
}
.coinInfo__range .price {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 50%;
}
.coinInfo__fee {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 24px;
}
.coinInfo__last_update {
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: #848E9C;
}
.coinInfo__trending {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 60px;
}
.coinInfo__trending_title {
  font-size: 22px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 16px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .coinInfo__trending_title {
    padding: 0 12px;
  }
}
.coinInfo__trending_body {
  width: 100%;
}
.coinInfo__gainers {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 60px;
}
.coinInfo__gainers_title {
  font-size: 22px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 16px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .coinInfo__gainers_title {
    padding: 0 12px;
  }
}
.coinInfo__gainers_body {
  width: 100%;
}
.coinInfo__losers {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 60px;
}
.coinInfo__losers_title {
  font-size: 22px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 16px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .coinInfo__losers_title {
    padding: 0 12px;
  }
}
.coinInfo__losers_body {
  width: 100%;
}
.coinInfo__newly {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 60px;
}
.coinInfo__newly_title {
  font-size: 22px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 16px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .coinInfo__newly_title {
    padding: 0 12px;
  }
}
.coinInfo__newly_body {
  width: 100%;
}

.ambassador__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  width: 100%;
  margin: 50px auto;
  padding: 0;
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .ambassador__top {
    padding: 32px;
  }
}
.ambassador__wrap {
  max-width: 600px;
}
@media only screen and (max-width: 1179px) {
  .ambassador__wrap {
    max-width: 520px;
  }
}
@media only screen and (max-width: 1023px) {
  .ambassador__wrap {
    max-width: 60%;
    margin: 0 auto;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .ambassador__wrap {
    max-width: 499px;
    margin: 0;
  }
}
@media only screen and (max-width: 321px) {
  .ambassador__wrap {
    max-width: 292px;
  }
}
.ambassador__title {
  margin: 20px 0;
}
@media only screen and (max-width: 1023px) {
  .ambassador__title {
    font-size: 33px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .ambassador__title {
    font-size: 23px;
  }
}
.ambassador__bg {
  width: 420px;
  margin-right: 66px;
}
@media only screen and (max-width: 1179px) {
  .ambassador__bg {
    width: 343px;
  }
}
@media only screen and (max-width: 1023px) {
  .ambassador__bg {
    width: 420px;
    margin: 0 auto 32px;
  }
}
@media only screen and (max-width: 767px) {
  .ambassador__bg {
    display: none;
  }
}
@media only screen and (max-width: 321px) {
  .ambassador__bg {
    width: 292px;
  }
}
.ambassador__bg img {
  width: 100%;
}
.ambassador__body {
  width: 100%;
  background: #FCFCFD;
  padding: 24px;
}
body.dark .ambassador__body {
  background: #18191D;
}
@media only screen and (max-width: 1023px) {
  .ambassador__body {
    padding: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .ambassador__body {
    overflow-x: scroll;
    scrollbar-width: none;
  }
}
.ambassador .nav {
  margin-bottom: 0 !important;
}
.ambassador .table {
  background: transparent !important;
}
.ambassador__link {
  font-size: 14px !important;
  font-weight: 600;
  margin-left: 6px;
  padding: 18px;
  color: #777E90;
  transition: fill 0.2s;
}
.ambassador__arrow {
  width: 18px;
  height: 18px;
  margin: 0 4px;
}
.ambassador__arrow svg {
  width: 100%;
  height: 100%;
  fill: #777E90;
  transition: fill 0.2s;
}
.ambassador__arrow svg:hover, .ambassador__arrow svg.active {
  fill: #23262F;
}
body.dark .ambassador__arrow svg:hover, body.dark .ambassador__arrow svg.active {
  fill: #FCFCFD;
}
.ambassador__text {
  font-size: 24px;
  line-height: 1.3333333333;
  letter-spacing: -0.01em;
  color: #353945;
}
@media only screen and (max-width: 1023px) {
  .ambassador__text {
    max-width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .ambassador__text {
    font-size: 16px;
  }
}
body.dark .ambassador__text {
  color: #B1B5C3;
}
.ambassador__text strong {
  font-weight: 600;
}

.trusted__center {
  padding: 25px 0;
  margin: 0 auto;
  background: radial-gradient(101.06% 101.06% at 50% 93.33%, rgba(0, 237, 123, 0.08) 30%, rgba(0, 237, 123, 0.3) 76.51%);
  border-radius: 6px;
}
@media only screen and (max-width: 1023px) {
  .trusted__center {
    padding: 35px 27px;
    border-radius: 0;
  }
}
.trusted__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 45px;
}
@media only screen and (max-width: 1023px) {
  .trusted__head {
    margin: 0 0 25px;
  }
}
.trusted__title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  letter-spacing: 0.03em;
}
.trusted__title .highlight {
  position: relative;
  display: inline-block;
  font-weight: 600;
  margin: 0 5px;
  z-index: 0;
}
.trusted__title .highlight::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 0;
  bottom: -2px;
  height: 18px;
  z-index: -1;
}
@media only screen and (max-width: 1023px) {
  .trusted__title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .trusted__title {
    flex-direction: column;
    line-height: 24.2px;
  }
}
body .dir-rtl .trusted__title {
  flex-direction: row-reverse;
}
body .dir-rtl .trusted__title .highlight {
  order: 2;
}
body .dir-rtl .trusted__title span {
  order: 1;
}
.trusted__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin: 0px 60px;
}
.trusted__body_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 33px;
}
@media only screen and (max-width: 767px) {
  .trusted__body_top {
    flex-direction: column;
    margin-bottom: 5px;
  }
}
.trusted__body_bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .trusted__body_bottom {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .trusted__body {
    margin: 0;
  }
}
.trusted__item {
  position: relative;
  width: 100%;
  padding: 10px;
}
.trusted__subtitle {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  .trusted__subtitle {
    font-size: 14px;
    line-height: unset;
  }
}
.trusted__icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
body .dir-rtl .trusted__icon {
  margin-left: 8px;
  margin-right: 0px;
}
.trusted__content {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
body.dark .trusted__content {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1023px) {
  .trusted__content {
    font-size: 12px;
    line-height: 20px;
  }
}

.calculator__body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .calculator__body {
    display: block;
  }
}
.calculator__left {
  width: 60%;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  padding: 16px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .calculator__left {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .calculator__left {
    padding: 16px 8px;
  }
}
.calculator__left .modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  z-index: 10;
}
.calculator__left .modal-content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 400px;
  max-height: 80%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}
.calculator__left .modal-content .close {
  color: #aaa;
  align-self: flex-end;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.calculator__left .modal-content .close:hover,
.calculator__left .modal-content .close:focus {
  color: black;
  text-decoration: none;
}
.calculator__left .modal-content .search-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
body.dark .calculator__left .modal-content .search-input {
  background: rgba(63, 63, 63, 0.95);
  border: unset;
}
.calculator__left .modal-content .currency-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.calculator__left .modal-content .currency-option:hover {
  background-color: #f1f1f1;
}
body.dark .calculator__left .modal-content .currency-option:hover {
  background-color: #3c3c3c;
}
.calculator__left .modal-content .currency-option img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
body.dark .calculator__left .modal-content {
  background: rgba(23, 23, 23, 0.9490196078);
  border: unset;
}
body.dark .calculator__left {
  background: rgba(233, 233, 233, 0.06);
}
.calculator__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.calculator__header-left {
  display: flex;
  align-items: center;
}
.calculator__header-left .bitcoin-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.calculator__header-left-info {
  display: flex;
  flex-direction: column;
}
.calculator__header-left-info-title {
  font-size: 20px;
  font-weight: 600;
  color: rgb(39, 39, 39);
  line-height: 25px;
}
body.dark .calculator__header-left-info-title {
  color: #FFFFFF;
}
.calculator__header-left-info-subtitle {
  font-size: 14px;
  color: rgba(45, 45, 45, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.04em;
  text-align: left;
}
body.dark .calculator__header-left-info-subtitle {
  color: rgba(255, 255, 255, 0.5019607843);
}
.calculator__header-left-info-bottom {
  display: flex;
  align-items: center;
}
.calculator__header-left .calculator__header-percentage {
  font-size: 15px;
  color: rgb(0, 191, 66);
  margin-right: 3px;
  margin-left: 10px;
  font-weight: 500;
}
.calculator__header-left .calculator__header-percentage.negative {
  color: rgb(255, 65, 65);
}
.calculator__header-left .icon {
  width: 15px;
  height: 15px;
}
.calculator__header-right .icon {
  width: 32px;
  height: 32px;
}
.calculator__nav {
  position: relative;
  display: flex;
  background-color: rgba(0, 237, 123, 0.1);
  padding: 10px;
  justify-content: space-between;
  padding: 16px;
  border-radius: 8px;
  border: 0.5px solid rgba(1, 188, 141, 0.3);
}
body.dark .calculator__nav {
  background: rgba(1, 188, 141, 0.112);
}
@media only screen and (max-width: 767px) {
  .calculator__nav {
    overflow-x: scroll;
    padding: 16px 8px;
  }
  .calculator__nav::-webkit-scrollbar {
    width: 5px;
    height: 3px;
  }
  .calculator__nav::-webkit-scrollbar-thumb {
    background: rgb(94, 102, 115);
    border-radius: 10px;
  }
  .calculator__nav::-webkit-scrollbar-track {
    background: transparent;
  }
}
.calculator__nav-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 6px;
}
.calculator__nav-btn.active {
  background: #00ed7b;
  color: #fff;
  padding: 10px 40px;
}
@media only screen and (max-width: 767px) {
  .calculator__nav-btn {
    padding: 10px;
  }
}
body.dark .calculator__nav-btn {
  color: rgba(255, 255, 255, 0.768627451);
}
.calculator__prices {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 16px;
  padding: 16px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .calculator__prices {
    overflow-x: scroll;
  }
  .calculator__prices::-webkit-scrollbar {
    width: 5px;
    height: 3px;
  }
  .calculator__prices::-webkit-scrollbar-thumb {
    background: rgb(94, 102, 115);
    border-radius: 10px;
  }
  .calculator__prices::-webkit-scrollbar-track {
    background: transparent;
  }
}
.calculator__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}
.calculator__price::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  border-right: 0.5px solid rgba(1, 188, 141, 0.7);
}
.calculator__price:last-child::after {
  content: none;
}
.calculator__price-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}
body.dark .calculator__price-label {
  color: #ffffff;
}
.calculator__price-value {
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
}
.calculator__price-value.high {
  color: rgb(0, 191, 66);
}
.calculator__price-value.low {
  color: rgb(255, 65, 65);
}
.calculator__price-value.current {
  color: rgb(111, 111, 111);
}
body.dark .calculator__price-value.current {
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .calculator__price {
    padding-right: 10px;
    margin-right: 10px;
  }
}
.calculator__chart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calculator__chart .chart {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .calculator__chart {
    margin-top: 10px;
  }
}
.calculator__right {
  width: 37%;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  padding: 16px;
  position: relative;
}
.calculator__right .modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  z-index: 10;
}
.calculator__right .modal-content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 400px;
  max-height: 80%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}
.calculator__right .modal-content .close {
  color: #aaa;
  align-self: flex-end;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.calculator__right .modal-content .close:hover,
.calculator__right .modal-content .close:focus {
  color: black;
  text-decoration: none;
}
.calculator__right .modal-content .search-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
body.dark .calculator__right .modal-content .search-input {
  background: rgba(63, 63, 63, 0.95);
  border: unset;
}
.calculator__right .modal-content .currency-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.calculator__right .modal-content .currency-option img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.calculator__right .modal-content .currency-option:hover {
  background-color: #f1f1f1;
}
body.dark .calculator__right .modal-content {
  background: rgba(23, 23, 23, 0.9490196078);
  border: unset;
}
body.dark .calculator__right {
  background: rgba(255, 255, 255, 0.1215686275);
}
.calculator__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 20px;
  text-align: center;
  color: #505050;
}
body.dark .calculator__title {
  color: #FFFFFF;
}
.calculator__divider {
  border: none;
  border-top: 0.5px solid rgba(1, 188, 141, 0.3);
  margin: 10px 0 10px 0;
}
.calculator__input-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 6px;
  padding: 6px 12px;
}
.calculator__input-group:nth-child(3) {
  background-color: rgba(1, 188, 141, 0.3);
}
body.dark .calculator__input-group:nth-child(3) {
  color: #fbfbfb;
}
.calculator__input-group:nth-child(4) {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(1, 188, 141, 0.3);
}
body.dark .calculator__input-group:nth-child(4) {
  color: #121314;
}
.calculator__input-group .calculator__input {
  flex: 1;
  width: 60%;
  padding: 10px;
  font-size: 16px;
  border: none;
  background: transparent;
  margin-right: 10px;
  text-align: left;
}
.calculator__input-group .calculator__currency {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 15, 15, 0.33);
  border-radius: 6px;
  padding: 10px;
}
.calculator__input-group .calculator__currency .calculator__currency-label {
  display: flex;
  align-items: center;
}
.calculator__input-group .calculator__currency .calculator__currency-label img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}
.calculator__input-group .calculator__currency .calculator__currency-label .calculator__currency-info {
  display: flex;
  flex-direction: column;
}
.calculator__input-group .calculator__currency .calculator__currency-label .calculator__currency-info .calculator__currency-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.calculator__input-group .calculator__currency .calculator__currency-label .calculator__currency-info .calculator__currency-code {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}
.calculator__input-group .calculator__currency .icon {
  width: 22px;
  height: 22px;
  transition: all 0.2s;
}
.calculator__rate {
  margin: 15px 0;
  color: rgb(1, 188, 141);
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: -0.01em;
  text-align: center;
}
.calculator__button {
  display: block;
  width: 100%;
  padding: 20px;
  background-color: #00ED7B;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  cursor: pointer;
  text-align: center;
  margin-bottom: 20px;
}
.calculator__note {
  color: #777777;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  margin-bottom: 6px;
}

.calculator__left,
.calculator__right {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1023px) {
  .calculator__left,
  .calculator__right {
    width: 100%;
  }
}

.services__center {
  padding: 25px 0;
  margin: 0 auto;
  background: radial-gradient(101.06% 101.06% at 50% 2.33%, rgba(138, 137, 137, 0.2) 30%, rgba(0, 255, 88, 0) 73.51%);
  border-radius: 6px;
}
@media only screen and (max-width: 767px) {
  .services__center {
    background: radial-gradient(circle at center, rgb(0, 255, 88) 0%, rgba(150, 235, 179, 0.5) 30%, rgba(255, 255, 255, 0) 60%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  }
}
body.dark .services__center {
  background: radial-gradient(101.06% 101.06% at 50% 2.33%, rgba(255, 255, 255, 0.2) 30%, rgba(0, 255, 88, 0) 73.51%);
}
.services__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 40px;
}
.services__title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  letter-spacing: 0.03em;
}
.services__title .highlight {
  position: relative;
  display: inline-block;
  font-weight: 600;
  margin: 0 5px;
  z-index: 0;
}
.services__title .highlight::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 0;
  bottom: -2px;
  height: 18px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .services__title {
    flex-direction: column;
  }
}
body .dir-rtl .services__title {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .services__title {
    flex-direction: column-reverse;
  }
}
.services__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 60px;
}
.services__body_left {
  width: 48%;
}
@media only screen and (max-width: 1023px) {
  .services__body_left {
    width: 100%;
  }
}
.services__body_right {
  width: 48%;
}
@media only screen and (max-width: 1023px) {
  .services__body_right {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .services__body {
    display: block;
    margin: 0px 27px;
  }
}
.services__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 25px;
  background: #ffffff;
  border-radius: 6px;
  margin-bottom: 12px;
}
body.dark .services__item {
  background: rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .services__item {
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #ffffff;
  }
}
.services__info {
  display: flex;
  flex-direction: column;
  width: 75%;
}
.services__bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 20%;
}
.services__subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .services__subtitle {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.services__content {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}
body.dark .services__content {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 767px) {
  .services__content {
    font-size: 12px;
    line-height: 22px;
  }
}
.services__icon svg {
  width: 100%;
}
body.dark .services__icon svg path {
  stroke: white;
}
body .dir-rtl .services__icon svg {
  transform: rotateY(180deg);
}
.services__image {
  width: 100%;
  height: 125px;
}

.interface {
  background: url(/images/powerful-interface.webp);
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .interface {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }
}
body .dir-rtl .interface {
  background: url(/images/mirror.webp);
  background-position: center;
  background-size: cover;
}
.interface__center {
  padding: 35px 0;
  margin: 0 auto;
}
.interface__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 60px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .interface__head {
    display: none;
  }
}
.interface__title {
  display: inline-block;
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  letter-spacing: 0.03em;
  color: #FCFCFD;
}
.interface__title_power {
  display: flex;
  align-items: center;
}
.interface__title_power .highlight {
  position: relative;
  display: inline-block;
  font-weight: 600;
  margin: 0 5px;
}
.interface__title_power .highlight::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 0;
  bottom: -2px;
  height: 18px;
  z-index: -1;
}
.interface__body {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 120px 60px 60px;
}
@media only screen and (max-width: 1023px) {
  .interface__body {
    margin: 85px 30px 60px;
  }
}
@media only screen and (max-width: 767px) {
  .interface__body {
    margin: 85px 27px;
    justify-content: center;
  }
}
.interface__wrap {
  position: relative;
  max-width: 585px;
  margin: 0 0 120px;
}
@media only screen and (max-width: 1023px) {
  .interface__wrap {
    max-width: 323px;
    margin: 0;
  }
}
.interface__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 25px;
  background: transparent;
  border-radius: 6px;
  margin-bottom: 25px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.interface__item:hover {
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .interface__item {
    padding: 15px;
    margin-bottom: 15px;
  }
}
.interface__info {
  display: flex;
  flex-direction: column;
  margin-right: 88px;
}
@media only screen and (max-width: 1023px) {
  .interface__info {
    margin-right: 33px;
  }
}
body .dir-rtl .interface__info {
  margin-right: 0px;
  margin-left: 88px;
}
.interface__subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 12px;
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .interface__subtitle {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.interface__content {
  font-size: 14px;
  font-weight: 400;
  color: #B1B5C3;
}
@media only screen and (max-width: 1023px) {
  .interface__content {
    font-size: 12px;
  }
}
.interface__icon svg {
  width: 100%;
}
body .dir-rtl .interface__icon svg {
  transform: rotateY(180deg);
}
.interface__icon.soon {
  border: 1px solid #B1B5C3;
  padding: 7px 14px;
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  .interface__icon.soon {
    width: 70px;
    text-align: center;
  }
}
@media only screen and (max-width: 1023px) {
  .interface__icon.soon {
    padding: 5px 10px;
    width: 80px;
    height: 37px;
    text-align: center;
  }
}
@media only screen and (max-width: 1023px) {
  .interface__icon {
    width: 35px;
    height: 35px;
  }
}

body .dir-rtl .search {
  font-family: "Vazirmatn", sans-serif;
}
.search__history {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}
.search__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.search__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
.search__noData {
  align-self: center;
}
.search__button {
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  text-align: right;
  color: #1e5246;
  background: transparent;
  cursor: pointer;
}
.search__button:hover {
  color: #00ed7b;
}
body.dark .search__button {
  color: #FCFCFD;
}
.search__body {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 20px 0px;
}
.search__body.earn {
  border-bottom: none;
  padding-bottom: 0;
}
body.dark .search__body {
  border-color: rgba(255, 255, 255, 0.1);
}
.search__body__row {
  display: flex;
  color: #23262F;
  border: 1px solid rgba(186, 215, 255, 0.7725490196);
  border-radius: 4px;
  margin: 0px 4px;
  align-items: center;
  cursor: pointer;
}
.search__body__row:hover {
  background: #f0f8ff;
}
body.dark .search__body__row:hover {
  background: #276a4f;
}
.search__body__col {
  padding: 10px 10px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
  align-self: enter;
}
.search__body__item {
  display: flex;
  align-items: center;
}
.search__body__icon {
  flex-shrink: 0;
  width: 32px;
  margin-right: 12px;
}
.search__body__details {
  color: #181617;
}
.search__body__subtitle {
  margin-right: 4px;
}
.search__body__currency {
  font-weight: 400;
  color: #777E90;
}
.search__body__label {
  display: none;
}
.search__body__negative {
  color: #FF6838;
}
.search__body__positive {
  color: #58BD7D;
}
.search__item {
  display: flex;
  flex-direction: column;
  padding: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 21.17px;
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
  border: 0.78px solid rgba(0, 0, 0, 0.2);
  color: #23262F;
  border-radius: 6px;
  margin-right: 6px;
}
body.dark .search__item {
  color: #FCFCFD;
  border-color: rgba(255, 255, 255, 0.2);
}
.search__price {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  margin-bottom: 10px;
  color: rgb(0, 0, 0);
}
body.dark .search__price {
  color: #ffffff;
}
.search__change {
  font-size: 10px;
  font-weight: 600;
  line-height: 19.96px;
  color: #00ed7b;
}
.search__change_positive {
  color: rgb(0, 177, 105);
}
.search__change_negative {
  color: #FF6838;
}
.search .earn__items {
  display: flex;
  align-items: center;
  overflow-x: scroll;
}
.search .earn__items::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.search .earn__items::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
}
.search .earn__items::-webkit-scrollbar-track {
  background: transparent;
}
.search .earn__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-right: 6px;
  border-radius: 6px;
  background: rgb(251, 251, 251);
  border: 0.5px solid rgba(0, 0, 0, 0.2);
}
body.dark .search .earn__item {
  background: rgb(23, 23, 23);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}
.search .earn__details {
  display: flex;
  flex-direction: column;
}
.search .earn__icon {
  width: 55px;
  height: 55px;
  margin-right: 12px;
}
.search .earn__info {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.search .earn__info .currency {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin-right: 8px;
}
.search .earn__info .name {
  font-size: 14px;
  font-weight: 300;
}
.search .earn__reward {
  display: flex;
  align-items: center;
}
.search .earn__reward .reward-box {
  margin: 0 6px;
}

.convert__center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.convert__head {
  background: #00ed7b;
}
.convert__wrap {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .convert__wrap {
    width: 100%;
    margin: 33px 0;
  }
}
.convert__bg {
  width: 40%;
}
.convert__bg img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .convert__bg {
    display: none;
  }
}
.convert__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
  letter-spacing: 0.03em;
  color: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  .convert__title {
    font-size: 24px;
    line-height: 48px;
  }
}
.convert__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin: 15px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 767px) {
  .convert__subtitle {
    font-size: 14px;
    line-height: 24.4px;
  }
}
.convert__btns {
  display: flex;
  align-items: center;
}
.convert__button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.convert__button.details {
  background: #FCFCFD;
  color: #00ed7b;
  margin-right: 16px;
}
.convert__button.details:hover {
  background: rgba(255, 255, 255, 0.231372549);
  color: #FCFCFD;
}
.convert__button.head__faq {
  background: rgba(255, 255, 255, 0.231372549);
  color: #FCFCFD;
}
.convert__button.head__faq:hover {
  background: #00ed7b;
}
.convert__arrow {
  margin-left: 12px;
}
body .dir-rtl .convert__arrow {
  transform: rotateY(180deg);
  margin-left: 0px;
  margin-right: 12px;
}
.convert__body {
  padding: 80px 0;
}
.convert__form {
  width: 585px;
  padding: 30px;
  margin: 0 auto;
  background: rgb(252, 252, 252);
  border: 2px solid #00ed7b;
  border-radius: 6px;
}
body.dark .convert__form {
  background: rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 767px) {
  .convert__form {
    width: auto;
    padding: 16px;
  }
}
.convert__item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 16px;
  border-radius: 6px;
  background: rgba(0, 237, 123, 0.08);
}
body.dark .convert__item {
  background: rgba(0, 237, 123, 0.08);
}
body .dir-rtl .convert__item {
  direction: ltr;
}
.convert__item:first-child {
  background: #00ed7b;
}
body.dark .convert__item:first-child {
  background: #00ed7b;
}
.convert__item_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.convert__item_row:first-child {
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .convert__item {
    padding: 12px;
  }
}
.convert__select {
  width: 70%;
}
.convert__select .select_coin {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}
.convert__select .select_coin img {
  width: 44px;
  height: 44px;
}
@media only screen and (max-width: 767px) {
  .convert__select .select_coin img {
    width: 33px;
    height: 33px;
  }
}
.convert__select .currency {
  font-size: 17px;
  font-weight: 600;
  color: #fbfbfb;
  margin: 0 16px;
}
.convert__select .currency.black {
  color: #121314;
}
body.dark .convert__select .currency.black {
  color: #fbfbfb;
}
.convert__select .name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fbfbfb;
  margin: 0 16px;
}
.convert__select .name.black {
  color: #121314;
}
body.dark .convert__select .name.black {
  color: #fbfbfb;
}
.convert__select .select_body {
  width: 100%;
  padding: 16px 10px;
  border-radius: 6px;
  background: #FCFCFD;
}
body.dark .convert__select .select_body {
  background: #121314;
}
.convert__select .modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 420px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.convert__select .modal.base__currency {
  top: 0;
  left: 0;
  right: 0;
}
.convert__select .modal.quote__currency {
  top: -153px;
  left: 0;
  right: 0;
}
.convert__select .modal-content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 16px;
  border: 1px solid #888;
  width: 100%;
  max-width: 444px;
  max-height: 80%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}
.convert__select .modal-content .close {
  color: #aaa;
  align-self: flex-end;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.convert__select .modal-content .close:hover,
.convert__select .modal-content .close:focus {
  color: black;
  text-decoration: none;
}
.convert__select .modal-content .search-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
body.dark .convert__select .modal-content .search-input {
  background: rgba(63, 63, 63, 0.95);
  border: unset;
}
.convert__select .modal-content .currency-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s;
}
.convert__select .modal-content .currency-option:hover {
  background-color: #f1f1f1;
}
body.dark .convert__select .modal-content .currency-option:hover {
  background-color: #3c3c3c;
}
.convert__select .modal-content .currency-option img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
body.dark .convert__select .modal-content {
  background: rgba(23, 23, 23, 0.9490196078);
  border: unset;
}
.convert__options {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0;
}
.convert__options .option {
  font-size: 14px;
  font-weight: 400;
  margin: 0 6px;
}
.convert__options .image {
  width: 32px;
  height: 32px;
}
.convert__balance {
  display: flex;
  flex-direction: column;
  width: 25%;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
body .dir-rtl .convert__balance {
  text-align: right;
  padding-right: 10px;
}
.convert__balance.color {
  color: #ffffff;
}
body .dir-rtl .convert__balance.color {
  text-align: right;
  padding-right: 10px;
}
@media only screen and (max-width: 767px) {
  .convert__balance {
    font-size: 11px;
  }
}
.convert__input {
  width: 70%;
  padding: 0;
}
.convert__input .input {
  width: 100%;
  font-size: 23px;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: 0.02em;
  background: none;
  color: #ffffff;
}
.convert__input .input::-moz-placeholder {
  color: #ffffff;
}
.convert__input .input::placeholder {
  color: #ffffff;
}
.convert__input .input.dark {
  color: #121314;
}
.convert__input .input.dark::-moz-placeholder {
  color: #121314;
}
.convert__input .input.dark::placeholder {
  color: #121314;
}
body.dark .convert__input .input.dark::-moz-placeholder {
  color: #fbfbfb;
}
body.dark .convert__input .input.dark::placeholder {
  color: #fbfbfb;
}
body.dark .convert__input .input.dark {
  color: #fbfbfb;
}
@media only screen and (max-width: 767px) {
  .convert__input .input {
    font-size: 18px;
  }
}
.convert__change {
  width: 25%;
  font-size: 23px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0.02em;
}
.convert__change.color {
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .convert__change {
    font-size: 18px;
  }
}
body .dir-rtl .convert__change {
  direction: ltr;
  text-align: right;
  padding: 10px;
}
.convert__swap {
  position: relative;
  width: 100%;
  margin: 12px auto;
  z-index: 1;
}
.convert__swap_sign {
  position: absolute;
  top: -32px;
  left: calc(50% - 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgb(233, 242, 255);
}
@media only screen and (max-width: 767px) {
  .convert__swap_sign {
    width: 40px;
    height: 40px;
    left: calc(50% - 21px);
    top: -30px;
  }
}
@media only screen and (max-width: 767px) {
  .convert__swap_sign svg {
    width: 20px;
    height: 20px;
  }
}
.convert__info {
  padding: 12px 0 24px;
}
.convert__info_top {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 0.5px solid #00ed7b;
  direction: ltr;
}
@media only screen and (max-width: 767px) {
  .convert__info_top {
    font-size: 13px;
  }
}
.convert__info_icon {
  width: 24px;
  height: 24px;
  margin-left: 6px;
}
@media only screen and (max-width: 767px) {
  .convert__info_icon {
    width: 20px;
    height: 20px;
  }
}
.convert__info_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.convert__info_title {
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: -0.01em;
}
@media only screen and (max-width: 767px) {
  .convert__info_title {
    font-size: 12px;
  }
}
.convert__info_content {
  font-size: 15px;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: 0.01em;
  color: #00ED7B;
}
@media only screen and (max-width: 767px) {
  .convert__info_content {
    font-size: 13px;
  }
}
.convert__btns_button {
  background: #00ed7b;
  padding: 10px;
  height: 60px;
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  color: #FCFCFD;
  border-radius: 6px;
}
.convert__btns_button:hover {
  background: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
}
@media only screen and (max-width: 767px) {
  .convert__btns_button {
    height: 55px;
    font-size: 15px;
  }
}
.convert__trendy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}
.convert__trendy_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 31.2px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .convert__trendy_title {
    font-size: 22px;
  }
}
.convert__trendy_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .convert__trendy_subtitle {
    font-size: 12px;
  }
}
.convert__trendy_list {
  display: flex;
  align-items: center;
  margin: 24px 0;
  overflow: auto;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.convert__trendy_list::-webkit-scrollbar {
  width: 5px;
}
@media only screen and (max-width: 1023px) {
  .convert__trendy_list {
    margin: 24px 24px;
  }
}
.convert__trendy_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  margin: 0 10px;
}
body.dark .convert__trendy_item {
  background: rgba(0, 237, 123, 0.1);
}
@media only screen and (max-width: 767px) {
  .convert__trendy_item {
    padding: 12px;
  }
}
.convert__trendy_coin {
  display: block;
}
.convert__trendy_coin .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .convert__trendy_coin .icon {
    width: 33px;
    height: 33px;
  }
}
.convert__trendy_coin .name {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  margin: 3px 0;
}
@media only screen and (max-width: 767px) {
  .convert__trendy_coin .name {
    font-size: 13px;
  }
}
.convert__trendy_flash {
  margin: 16px auto;
}
.convert__trendy_flash svg {
  fill: #00ed7b;
}
body.dark .convert__trendy_flash svg {
  fill: rgba(0, 237, 123, 0.1);
}
@media only screen and (max-width: 767px) {
  .convert__trendy {
    padding: 30px 24px;
  }
}
.convert__option_name {
  font-size: 10px;
  margin: 0px 8px;
  color: rgba(0, 237, 123, 0.1);
}
.convert__loader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background: rgba(255, 255, 255, 0.5882352941);
  z-index: 10;
}

.staking__center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.staking__head {
  background: #00ed7b;
}
@media only screen and (max-width: 1023px) {
  .staking__head {
    padding: 36px 0;
  }
}
.staking__wrap {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .staking__wrap {
    width: 100%;
    margin: 33px 0;
  }
}
.staking__bg {
  width: 40%;
}
.staking__bg img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .staking__bg {
    display: none;
  }
}
.staking__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
  letter-spacing: 0.03em;
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .staking__title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .staking__title {
    font-size: 33px;
  }
}
.staking__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin: 15px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 767px) {
  .staking__subtitle {
    font-size: 14px;
    line-height: 24.4px;
  }
}
.staking__btns {
  display: flex;
  align-items: center;
}
.staking__button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.staking__button.details {
  background: #FCFCFD;
  color: #00ed7b;
  margin-right: 16px;
}
.staking__button.details:hover {
  background: rgba(255, 255, 255, 0.231372549);
  color: #FCFCFD;
}
.staking__button.head__faq {
  background: rgba(255, 255, 255, 0.231372549);
  color: #FCFCFD;
}
.staking__button.head__faq:hover {
  background: #00ed7b;
}
.staking__arrow {
  margin-left: 12px;
}
.staking__body {
  background-position: center;
  background-size: cover;
  padding: 60px 0;
}
@media only screen and (max-width: 1023px) {
  .staking__body {
    padding: 60px 32px;
  }
}
@media only screen and (max-width: 767px) {
  .staking__body {
    padding: 60px 24px;
  }
}
.staking__table {
  width: 100%;
  padding: 0;
  margin: 0;
}
.staking__table_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .staking__table_head {
    flex-direction: column;
    align-items: center;
  }
}
.staking__table_head_left {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 66%;
}
@media only screen and (max-width: 767px) {
  .staking__table_head_left {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
.staking__table_head_right {
  display: flex;
  align-items: center;
  justify-content: end;
}
.staking__table_head_right .my_staking_filter {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 18.2px;
  color: #00ed7b;
  margin-right: 10px;
}
.staking__table_head_right .my_staking_filter .icon {
  margin-right: 5px;
}
body .dir-rtl .staking__table_head_right .my_staking_filter .icon {
  margin-left: 5px;
  margin-right: 0px;
}
.staking__table_head_right .my_staking_filter.active svg {
  fill: #00ed7b;
}
body .dir-rtl .staking__table_head_right .my_staking_filter {
  margin-left: 10px;
  margin-right: 0px;
}
@media only screen and (max-width: 767px) {
  .staking__table_head_right {
    width: 100%;
    justify-content: space-between;
  }
}
.staking__table_title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.03em;
  width: 100%;
  margin-bottom: 6px;
}
@media only screen and (max-width: 1023px) {
  .staking__table_title {
    font-size: 22px;
  }
}
.staking__table_content {
  font-size: 14px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .staking__table_content {
    font-size: 12px;
  }
}
.staking__table_body {
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.staking__table_body .stake__button {
  background: #00ed7b;
  color: #fbfbfb;
  cursor: pointer;
}
.staking__table_body .stake__button:hover {
  background: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
}
body.dark .staking__table_body {
  background: rgb(0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .staking__table_body {
    padding: 12px;
    overflow: scroll;
  }
}
@media only screen and (max-width: 1023px) {
  .staking__table_body {
    overflow: scroll;
  }
}
.staking__table__inner {
  display: table;
  width: 100%;
}
.staking__table__row {
  display: table-row;
}
.staking__table__row:first-child .staking__table__col {
  font-size: 13px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body.dark .staking__table__row:first-child .staking__table__col {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.staking__table__row:not(:first-child) .staking__table__col {
  font-size: 12px;
  line-height: 1.6666666667;
  padding-top: 16px;
}
.staking__table__col {
  display: table-cell;
  vertical-align: middle;
  padding: 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.staking__table__col:first-child {
  padding-left: 0;
  color: #777E90;
}
body .dir-rtl .staking__table__col:first-child {
  padding-right: 0;
  padding-left: 6px;
}
.staking__table__col:last-child {
  padding-right: 0;
  text-align: right;
}
.staking__table__col .status_label {
  border-radius: 6px;
  text-align: center;
  padding: 6px;
}
@media only screen and (max-width: 767px) {
  .staking__table__col.period {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .staking__table__col {
    font-size: 11px !important;
    padding: 3px;
  }
}
body .dir-rtl .staking__table__col {
  padding-left: 0;
  padding-right: 6px;
  text-align: right;
}
.staking__notFound {
  display: flex;
  flex-direction: column;
  width: 1280px;
  padding: 44px 0;
  margin: 0 auto;
}
.staking__notFound svg {
  margin: 0 auto;
}
body.dark .staking__notFound svg.light {
  display: none;
}
.staking__notFound svg.dark {
  display: none;
}
body.dark .staking__notFound svg.dark {
  display: block;
}
.staking__notFound_text {
  font-size: 20px;
  font-weight: 600;
  line-height: 29.26px;
  margin: 16px 0;
}
@media only screen and (max-width: 767px) {
  .staking__notFound {
    width: auto;
  }
}
.staking__item {
  display: flex;
  align-items: center;
}
.staking__icon {
  width: 32px;
  height: 32px;
  margin-right: 16px;
}
.staking__icon img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .staking__icon {
    width: 26px;
    height: 26px;
    margin-right: 6px;
  }
}
body .dir-rtl .staking__icon {
  margin-right: 0px;
  margin-left: 16px;
}
.staking__details {
  display: flex;
  align-items: center;
}
.staking__symbol {
  color: #121314;
  margin-right: 10px;
  margin-right: 6px;
}
body.dark .staking__symbol {
  color: #fff;
}
body .dir-rtl .staking__symbol {
  margin-left: 6px;
  margin-right: 0px;
}
.staking__currency {
  color: #00ed7b;
}
@media only screen and (max-width: 1023px) {
  .staking__currency {
    display: none;
  }
}
.staking__value {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.staking__value_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 4px;
  border-radius: 3px;
  margin: 0px 2px;
}
.staking__value_box_percentage {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 4px;
  border-radius: 3px;
  margin: 0px 2px;
  color: #328332;
}
.staking__modal {
  display: flex;
  justify-content: space-between;
  padding: 0px;
}
@media only screen and (max-width: 767px) {
  .staking__modal {
    display: block;
  }
}
@media only screen and (max-width: 1023px) {
  .staking__modal {
    display: block;
  }
}
.staking__modal_checkbox {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.staking__modal_checkbox_input {
  top: 0;
  left: 0;
  opacity: 0;
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 4px;
  border: 2px solid #E6E8EC;
  transition: all 0.2s;
}
.staking__modal_checkbox_input:checked + .staking__modal_checkbox_inner .staking__modal_checkbox_tick {
  background: rgb(0, 177, 105);
  border-color: rgb(0, 177, 105);
}
.staking__modal_checkbox_input:checked + .staking__modal_checkbox_inner .staking__modal_checkbox_tick::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 10px;
  transition: opacity 0.2s;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' fill='none' viewBox='0 0 14 10'%3E%3Cpath fill-rule='evenodd' d='M13.707.293a1 1 0 0 1 0 1.414l-8 8a1 1 0 0 1-1.414 0l-4-4a1 1 0 1 1 1.414-1.414L5 7.586 12.293.293a1 1 0 0 1 1.414 0z' fill='%23fcfcfd'/%3E%3C/svg%3E") no-repeat 50% 50%/100% auto;
}
.staking__modal_checkbox_inner {
  display: flex;
}
.staking__modal_checkbox_tick {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 4px;
  border: 2px solid #E6E8EC;
  transition: all 0.2s;
}
.staking__modal_checkbox_tick:hover {
  border-color: rgb(0, 177, 105);
}
body .dir-rtl .staking__modal_checkbox_tick {
  margin-right: 0px;
  margin-left: 12px;
}
.staking__modal_checkbox_text {
  line-height: 1.7142857143;
  font-weight: 500;
  color: #23262F;
}
body.dark .staking__modal_checkbox_text {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .staking__modal_checkbox_text {
    font-size: 10px;
  }
}
.staking__modal_left {
  width: 50%;
  padding-right: 25px;
  padding: 17px 20px;
}
@media only screen and (max-width: 767px) {
  .staking__modal_left {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .staking__modal_left {
    width: 100%;
  }
}
body.dark .staking__modal_left {
  background: rgb(0, 0, 0);
}
.staking__modal_left_submit {
  display: flex;
  height: 36px;
  border-radius: 6px;
  padding: 24px 44px;
  font-size: 16px;
  width: 100%;
  background: #00ED7B;
  color: rgb(251, 251, 251);
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.staking__modal_right {
  width: 50%;
  background: rgba(0, 0, 0, 0.05);
  padding: 17px 20px;
}
@media only screen and (max-width: 767px) {
  .staking__modal_right {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .staking__modal_right {
    width: 100%;
  }
}
body.dark .staking__modal_right {
  background: #222222;
}
.staking__modal_right_title {
  font: #000000;
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 12px 0px;
}
@media only screen and (max-width: 767px) {
  .staking__modal_right_title {
    font-size: 10px;
  }
}
.staking__modal_right_item {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: 18px;
}
.staking__modal_right_item_title {
  margin-right: auto;
  color: #777E90;
}
body .dir-rtl .staking__modal_right_item_title {
  margin-right: 0px;
  margin-left: auto;
}
.staking__modal_right_item_content {
  margin-left: 16px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .staking__modal_right_item_content {
    font-size: 12px;
  }
}
.staking__modal_right_chart {
  margin-top: 26px;
}
.staking__modal_right_chart_title {
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}
body.dark .staking__modal_right_chart_title {
  color: #fff;
}
.staking__modal_right_notice {
  margin-top: 40px;
}
.staking__modal_right_notice_title {
  font-size: 14px;
  font-weight: 500;
}
.staking__modal_right_notice_description {
  font-size: 12px;
  font-weight: 500;
  line-height: 21.6px;
  margin-top: 10px;
  color: #777E90;
}
.staking__modal_right_rull {
  max-height: 34rem !important;
  overflow-y: scroll;
  font-size: 12px;
  font-weight: 500;
  line-height: 21.6px;
  margin-top: 10px;
  color: #777E90;
}
.staking__modal_right_back {
  border-radius: 82px;
  background: rgba(1, 188, 141, 0.2);
  color: #D1D5DB;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}
.staking__modal_title {
  font-size: 18px;
  font-weight: 600;
}
.staking__modal_input {
  margin-bottom: 16px;
}
.staking__modal_input_title {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 500;
  margin: 14px 0px;
}
body.dark .staking__modal_input_title {
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .staking__modal_input_title {
    font-size: 12px;
  }
}
.staking__modal_input_group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  width: auto;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  margin: 10px 0 30px;
}
.staking__modal_input_group input {
  border: unset;
  margin: 0px;
}
.staking__modal_input_group input:focus {
  border-color: #00ED7B;
  --tw-ring-color: $p4;
}
.staking__modal_input_group_title {
  padding: 0px 8px;
}
@media only screen and (max-width: 767px) {
  .staking__modal_input_group_title {
    font-size: 12px;
  }
}
.staking__modal_input_group_currency {
  display: flex;
  padding-right: 16px;
  align-items: center;
}
.staking__modal_input_group_currency img {
  margin: 0px 6px;
}
@media only screen and (max-width: 767px) {
  .staking__modal_input_group_currency {
    font-size: 10px;
  }
}
body .dir-rtl .staking__modal_input_group_currency {
  padding-left: 16px;
  padding-right: 0px;
}
.staking__modal_item {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin: 16px 0px;
}
.staking__modal_button {
  border: 1px solid rgba(0, 237, 123, 0.1);
  background: rgba(1, 188, 141, 0.1);
  color: #00ED7B;
  height: 36px;
  border-radius: 2px;
  padding: 4px 8px;
  font-size: 14px;
}
.staking__modal_button:hover {
  background: #00ED7B;
  color: rgb(251, 251, 251);
}
.staking__modal_part {
  margin-bottom: 22px;
}
.staking__modal_part_item {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: 24px;
}
.staking__modal_part_item_title {
  margin-right: auto;
  color: #777E90;
}
@media only screen and (max-width: 767px) {
  .staking__modal_part_item_title {
    font-size: 12px;
  }
}
body .dir-rtl .staking__modal_part_item_title {
  margin-right: 0px;
  margin-left: auto;
}
.staking__modal_part_item_content {
  margin-left: 16px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .staking__modal_part_item_content {
    font-size: 10px;
  }
}
.staking__disabled {
  background: rgba(34, 255, 200, 0.3411764706);
  cursor: default;
  pointer-events: none;
}
body.dark .staking__disabled {
  color: rgba(186, 255, 235, 0.49);
}
.staking__active {
  background: #00ED7B;
  color: rgb(251, 251, 251);
}

.privacy__center {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .privacy__center {
    display: flex;
    flex-wrap: wrap;
  }
}
.privacy__head {
  background: #00ed7b;
}
@media only screen and (max-width: 767px) {
  .privacy__head {
    padding: 30px 0;
  }
}
.privacy__wrap {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .privacy__wrap {
    width: 100%;
  }
}
.privacy__bg {
  width: 40%;
}
.privacy__bg img {
  width: 95%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .privacy__bg {
    display: none;
  }
}
.privacy__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
  letter-spacing: 0.03em;
  color: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  .privacy__title {
    font-size: 33px;
  }
}
.privacy__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin: 15px 0;
}
@media only screen and (max-width: 767px) {
  .privacy__subtitle {
    font-size: 13px;
    line-height: unset;
  }
}
.privacy__updated {
  font-size: 12px;
  font-weight: 400;
}
.privacy__information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}
.privacy__information_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 31.2px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 12px;
}
.privacy__information_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}
.privacy__left {
  width: 60%;
  padding: 25px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .privacy__left {
    width: 100%;
    padding: 0px;
  }
}
.privacy__left_card {
  background-color: rgb(243, 242, 243);
  border-radius: 6px;
  margin: 18px 0px;
  padding: 18px 15px;
  color: rgb(0, 0, 0);
}
.privacy__left_card_question {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .privacy__left_card_question {
    font-size: 13px;
  }
}
.privacy__left_card_answer {
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .privacy__left_card_answer {
    font-size: 11px;
  }
}
.privacy__left_card--active {
  color: #ffffff;
  background: rgb(0, 177, 105);
}
.privacy__left_card--active .que {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.privacy__right {
  width: 37%;
  padding: 25px;
  position: relative;
}
.privacy__right img {
  border-radius: 7px;
}
@media only screen and (max-width: 767px) {
  .privacy__right {
    width: 100%;
    padding: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .privacy .inf-img {
    order: 1;
  }
}
@media only screen and (max-width: 767px) {
  .privacy .inf-collect {
    order: 2;
  }
}
.privacy__use {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  background-color: rgb(233, 242, 255);
}
body.dark .privacy__use {
  background-color: rgba(233, 242, 255, 0.1);
}
.privacy__use_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 31.2px;
  letter-spacing: 0.02em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .privacy__use_title {
    font-size: 16px;
    margin: 0px 41px;
    margin-bottom: 12px;
  }
}
.privacy__use_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .privacy__use_subtitle {
    font-size: 11px;
    color: rgba(1, 188, 141, 0.1);
  }
}
.privacy__use_inf {
  margin-top: 15px;
  padding: 0px 360px;
}
@media only screen and (max-width: 767px) {
  .privacy__use_inf {
    padding: 0px;
    margin: 0px 18px;
  }
}
@media only screen and (max-width: 1023px) {
  .privacy__use_inf {
    padding: 0px 100px;
  }
}
.privacy__use_inf_card {
  background: #ffffff;
  margin: 18px 0px;
  padding: 18px 15px;
  border: 1px solid rgb(1, 188, 141);
  border-radius: 8px;
}
.privacy__use_inf_card_question {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 8px;
}
.privacy__use_inf_card_answer {
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
}
.privacy__use_inf_card .que {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body.dark .privacy__use_inf_card {
  background-color: rgba(255, 255, 255, 0.15);
}
body.dark .privacy__use_inf_card .que {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.privacy__share {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
}
@media only screen and (max-width: 767px) {
  .privacy__share {
    padding: 60px 0px;
  }
}
.privacy__share_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 31.2px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .privacy__share_title {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
.privacy__share_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .privacy__share_subtitle {
    font-size: 11px;
    color: rgba(18, 18, 18, 0.66);
  }
}
.privacy__share_left_title {
  font-weight: 600;
  font-size: 20px;
  line-height: 29.26px;
  margin: 5px 0px;
}
body.dark .privacy__share_left_title {
  color: rgb(1, 188, 141);
}
@media only screen and (max-width: 767px) {
  .privacy__share_left_title {
    font-size: 16px;
  }
}
.privacy__share_left_answer {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  margin: 5px 0px;
}
@media only screen and (max-width: 767px) {
  .privacy__share_left_answer {
    font-size: 12px;
  }
}
.privacy__share_left_box {
  margin: 22px 0px;
}
.privacy__share2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: #e9f2ff;
  border-radius: 8px;
}
body.dark .privacy__share2 {
  background: rgba(1, 188, 141, 0.1);
}
@media only screen and (max-width: 767px) {
  .privacy__share2 {
    padding: 60px 28px;
  }
}
.privacy__share2_title {
  font-size: 16px;
  font-weight: 500;
  line-height: 31.2px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .privacy__share2_title {
    margin-bottom: 0px;
  }
}
.privacy__share2_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .privacy__share2_subtitle {
    font-size: 12px;
  }
}
.privacy__share2_box {
  background: rgba(255, 255, 255, 0.5019607843);
  padding: 20px;
  margin: 20px 10px;
  border-radius: 8px;
  width: 100%;
  height: 260px;
  width: 572px;
}
body.dark .privacy__share2_box {
  background: rgba(255, 255, 255, 0.15);
}
@media only screen and (max-width: 767px) {
  .privacy__share2_box {
    width: 100%;
    margin: 22px 0px;
  }
}
@media only screen and (max-width: 1023px) {
  .privacy__share2_box {
    width: 85%;
  }
}
.privacy__share2_box_title {
  font-size: 20px;
  font-weight: 600;
  margin: 5px 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .privacy__share2_box_title {
    font-size: 14px;
  }
}
.privacy__share2_box_answer {
  font-size: 14px;
  font-weight: 400;
  margin: 5px;
  text-align: left;
}
body.dark .privacy__share2_box_answer {
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 767px) {
  .privacy__share2_box_answer {
    font-size: 12px;
  }
}
.privacy__share2_center {
  margin-top: 15px;
  display: flex;
  align-items: center;
  place-content: center;
  text-align: -webkit-center;
  align-self: center;
}
@media only screen and (max-width: 767px) {
  .privacy__share2_center {
    display: block;
  }
}
.privacy__share2_row {
  width: 100%;
}
.privacy__share2_svg {
  text-align: left;
}
.privacy__button-container {
  display: flex;
  justify-content: center;
  margin: -32px 0px 0px 0px;
  overflow: auto;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media only screen and (max-width: 767px) {
  .privacy__button-container {
    justify-content: unset;
  }
}
.privacy__button-container button {
  background-color: rgba(233, 242, 255, 0.8);
  border: none;
  padding: 32px 0px;
  width: 220px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border-radius: 4px;
  border: 1px solid rgb(1, 188, 141);
  -webkit-backdrop-filter: blur(8px) 5;
          backdrop-filter: blur(8px) 5;
}
@media only screen and (max-width: 767px) {
  .privacy__button-container button {
    padding: 26px 0px;
    width: 140px;
  }
}
.privacy__button-container button:hover {
  background-color: rgba(0, 237, 123, 0.1);
  color: #fff;
}

.launchpad__center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.launchpad__head {
  background: #00ed7b;
}
@media only screen and (max-width: 1023px) {
  .launchpad__head {
    padding: 36px 0;
  }
}
.launchpad__wrap {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .launchpad__wrap {
    width: 100%;
    margin: 33px 0;
  }
}
.launchpad__bg {
  width: 40%;
  width: 600px;
  height: 500px;
  margin-right: 50px;
}
.launchpad__bg img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .launchpad__bg {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .launchpad__bg {
    width: 400px;
    height: 300px;
    margin-right: 0px;
  }
}
.launchpad__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
  letter-spacing: 0.03em;
  color: #FCFCFD;
}
@media only screen and (max-width: 1023px) {
  .launchpad__title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__title {
    font-size: 33px;
  }
}
.launchpad__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin: 15px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 767px) {
  .launchpad__subtitle {
    font-size: 14px;
    line-height: 24.4px;
  }
}
.launchpad__btns {
  display: flex;
  align-items: center;
}
.launchpad__button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.launchpad__button.details {
  background: #FCFCFD;
  color: #00ed7b;
  margin-right: 16px;
}
.launchpad__button.details:hover {
  background: rgba(255, 255, 255, 0.231372549);
  color: #FCFCFD;
}
.launchpad__button.head__faq {
  background: rgba(255, 255, 255, 0.231372549);
  color: #FCFCFD;
}
.launchpad__button.head__faq:hover {
  background: #00ed7b;
}
.launchpad__button.share {
  margin-left: 16px;
  background: transparent;
}
.launchpad__button.nav_option {
  background: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 300;
  border-radius: 6px;
}
.launchpad__button.nav_option.active {
  background: #00ed7b;
  color: #fbfbfb;
}
.launchpad__button.nav_option:not(:last-child) {
  margin-right: 12px;
}
body .dir-rtl .launchpad__button.nav_option {
  margin-right: 12px;
}
body.dark .launchpad__button.nav_option {
  background: #ffffff;
}
body.dark .launchpad__button.nav_option.active {
  background: #00ed7b;
  color: #fbfbfb;
}
@media only screen and (max-width: 1023px) {
  .launchpad__button.nav_option {
    padding: 6px 18px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__button.nav_option {
    padding: 6px 12px;
  }
}
.launchpad__arrow {
  margin-left: 12px;
}
body .dir-rtl .launchpad__arrow {
  transform: rotateY(180deg);
  margin-right: 12px;
}
.launchpad__body {
  background-position: center;
  background-size: cover;
  padding: 60px 0;
}
@media only screen and (max-width: 1023px) {
  .launchpad__body {
    padding: 60px 32px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__body {
    padding: 60px 24px;
  }
}
.launchpad__table {
  width: 100%;
  padding: 0;
  margin: 0;
}
.launchpad__table_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .launchpad__table_head {
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
}
.launchpad__table_head_right {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media only screen and (max-width: 767px) {
  .launchpad__table_head_right {
    width: 100%;
    justify-content: start;
    overflow: auto;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .launchpad__table_head_right::-webkit-scrollbar {
    display: none;
  }
}
.launchpad__table_title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 1023px) {
  .launchpad__table_title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__table_title {
    width: 100%;
    margin-bottom: 12px;
  }
}
.launchpad__table_body {
  width: 100%;
}
.launchpad__table__inner {
  display: table;
  width: 100%;
}
.launchpad__table__row {
  display: table-row;
}
.launchpad__nav {
  display: flex;
  align-items: center;
  margin: 0;
}
.launchpad__cart {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #f6f6f6;
  border-radius: 6px;
  margin-bottom: 16px;
}
body.dark .launchpad__cart {
  background: rgb(0, 0, 0);
}
.launchpad__cart_left {
  width: 30%;
  background: rgba(0, 0, 0, 0.0509803922);
  border-radius: 6px 0 0 6px;
}
body.dark .launchpad__cart_left {
  background: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 767px) {
  .launchpad__cart_left {
    width: 100%;
  }
}
.launchpad__cart_logo {
  width: 383px;
  height: 242px;
}
.launchpad__cart_logo img {
  width: 100%;
  height: 100%;
  border-radius: 6px 0 0 6px;
}
@media only screen and (max-width: 1023px) {
  .launchpad__cart_logo {
    width: 212px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__cart_logo {
    width: 100%;
  }
}
.launchpad__cart_title {
  font-size: 26px;
  font-weight: 600;
}
.launchpad__cart_right {
  display: flex;
  flex-direction: column;
  width: 70%;
  padding: 16px 24px;
}
@media only screen and (max-width: 1023px) {
  .launchpad__cart_right {
    padding: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__cart_right {
    width: 100%;
  }
}
.launchpad__cart_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 8px;
}
body.dark .launchpad__cart_head {
  border-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 767px) {
  .launchpad__cart_head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.launchpad__cart_status {
  display: flex;
  align-items: center;
}
.launchpad__cart_icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.0509803922);
}
body.dark .launchpad__cart_icon {
  border-color: rgba(255, 255, 255, 0.5);
}
.launchpad__cart_name {
  font-size: 14px;
  font-weight: 400;
  margin: 0 8px;
}
.launchpad__cart_label {
  padding: 6px 12px;
  text-align: center;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.6px;
}
.launchpad__cart_period {
  font-size: 13px;
  font-weight: 400;
}
.launchpad__cart_body {
  display: flex;
  flex-direction: column;
}
.launchpad__cart_note {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 24px;
}
.launchpad__cart_info {
  display: flex;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .launchpad__cart_info {
    flex-wrap: wrap;
  }
}
.launchpad__cart_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 24%;
}
.launchpad__cart_item:not(:last-child) {
  margin-right: 6px;
}
.launchpad__cart_item .label {
  font-size: 12px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: -0.04em;
}
@media only screen and (max-width: 767px) {
  .launchpad__cart_item .label {
    line-height: 28px;
  }
}
.launchpad__cart_item .value {
  font-size: 14px;
  font-weight: 600;
  line-height: 35px;
}
@media only screen and (max-width: 767px) {
  .launchpad__cart_item .value {
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__cart_item {
    width: 47%;
    align-items: flex-start;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__cart {
    flex-direction: column;
    align-items: flex-start;
  }
}
.launchpad__participate {
  cursor: pointer;
}
.launchpad__not_found {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
body.dark .launchpad__not_found svg.light {
  display: none;
}
.launchpad__not_found svg.dark {
  display: none;
}
body.dark .launchpad__not_found svg.dark {
  display: block;
}
.launchpad__option .launchpad__head {
  color: #fbfbfb;
}
.launchpad__option .launchpad__body {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .launchpad__option .launchpad__body {
    flex-direction: column;
  }
}
.launchpad__option_links {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  margin: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.launchpad__option_links .link {
  display: flex;
  align-items: center;
  margin-right: 24px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .launchpad__option_links .link {
    margin-right: 18px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__option_links .link {
    margin-bottom: 6px;
  }
}
.launchpad__option_links .link_icon {
  margin-right: 4px;
}
body .dir-rtl .launchpad__option_links .link_icon {
  margin-right: 0px;
  margin-left: 4px;
  transform: rotateY(180deg);
}
@media only screen and (max-width: 767px) {
  .launchpad__option_links {
    flex-wrap: wrap;
  }
}
.launchpad__option_prices {
  display: flex;
  align-items: center;
}
.launchpad__option_prices .price {
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  margin-right: 32px;
}
.launchpad__option_prices .value {
  font-size: 16px;
  font-weight: 600;
  line-height: 35px;
}
@media only screen and (max-width: 767px) {
  .launchpad__option_prices .value {
    font-size: 14px;
  }
}
.launchpad__option_left {
  width: 70%;
}
@media only screen and (max-width: 1023px) {
  .launchpad__option_left {
    padding-right: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__option_left {
    width: 100%;
    padding-right: 0;
  }
}
.launchpad__option_right {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .launchpad__option_right {
    width: 100%;
  }
}
.launchpad__box {
  padding: 32px 22px;
  border-radius: 6px;
  background: rgb(250, 250, 250);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
body.dark .launchpad__box {
  background: rgba(250, 250, 250, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.15);
}
.launchpad__box .earn {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}
body.dark .launchpad__box .earn {
  color: rgba(255, 255, 255, 0.7);
}
.launchpad__box .earn_amount {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: 33px;
}
.launchpad__box .distribution {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.7);
}
body.dark .launchpad__box .distribution {
  color: rgba(255, 255, 255, 0.7);
}
.launchpad__box .distribution_time {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 6px 0 24px;
}
.launchpad__timeLine {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.launchpad__timeLine__item {
  width: 24%;
  margin-right: 6px;
}
.launchpad__timeLine__item:first-child .launchpad__timeLine__icon::after {
  left: 66px;
}
@media only screen and (max-width: 1023px) {
  .launchpad__timeLine__item:first-child .launchpad__timeLine__icon::after {
    left: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__timeLine__item:first-child .launchpad__timeLine__icon::after {
    left: 38px;
  }
}
.launchpad__timeLine__item:nth-child(2) .launchpad__timeLine__icon::after {
  left: 32%;
}
@media only screen and (max-width: 1023px) {
  .launchpad__timeLine__item:nth-child(2) .launchpad__timeLine__icon::after {
    left: 34%;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__timeLine__item:nth-child(2) .launchpad__timeLine__icon::after {
    left: 37%;
  }
}
.launchpad__timeLine__item:nth-child(3) .launchpad__timeLine__icon::after {
  left: 57%;
}
@media only screen and (max-width: 1023px) {
  .launchpad__timeLine__item:nth-child(3) .launchpad__timeLine__icon::after {
    left: 59%;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__timeLine__item:nth-child(3) .launchpad__timeLine__icon::after {
    left: 62%;
  }
}
.launchpad__timeLine__item:last-child .launchpad__timeLine__icon::after {
  left: 81%;
}
@media only screen and (max-width: 1023px) {
  .launchpad__timeLine__item:last-child .launchpad__timeLine__icon::after {
    left: 84%;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__timeLine__item:last-child .launchpad__timeLine__icon::after {
    left: 87%;
  }
}
.launchpad__timeLine__icon {
  width: 50px;
  height: 50px;
}
.launchpad__timeLine__icon img {
  width: 100%;
}
.launchpad__timeLine__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  width: 140px;
  border: 0.5px solid rgba(1, 188, 141, 0.7);
}
@media only screen and (max-width: 1023px) {
  .launchpad__timeLine__icon::after {
    width: 66px;
    top: 18%;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__timeLine__icon::after {
    width: 36px;
    top: 12%;
  }
}
@media only screen and (max-width: 1023px) {
  .launchpad__timeLine__icon {
    width: 32px;
    height: 32px;
  }
}
.launchpad__timeLine__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 25.5px;
  margin: 10px 0 0;
}
@media only screen and (max-width: 1023px) {
  .launchpad__timeLine__title {
    font-size: 12px;
  }
}
.launchpad__timeLine__time {
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  margin: 0;
}
body.dark .launchpad__timeLine__time {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 1023px) {
  .launchpad__timeLine__time {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__timeLine {
    align-items: flex-start;
  }
}
.launchpad__details {
  margin-top: 66px;
}
.launchpad__details_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  padding-left: 10px;
  border-left: 2px solid rgba(1, 188, 141, 0.7);
}
body .dir-rtl .launchpad__details_title {
  border-right: 2px solid rgba(1, 188, 141, 0.7);
  padding-left: 0px;
  padding-right: 10px;
  border-left: none;
}
.launchpad__details_body {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0;
}
.launchpad__details_item {
  display: flex;
  flex-direction: column;
  width: 25%;
}
.launchpad__details_item .title {
  font-size: 12px;
  font-weight: 500;
  line-height: 22.5px;
}
body.dark .launchpad__details_item .title {
  color: rgba(255, 255, 255, 0.7);
}
.launchpad__details_item .content {
  font-size: 15px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .launchpad__details_item {
    width: 23%;
    margin-right: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .launchpad__details_item {
    width: 48%;
  }
}
.launchpad__participation {
  margin: 44px 0;
}
.launchpad__participation_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  padding-left: 10px;
  border-left: 2px solid rgba(1, 188, 141, 0.7);
}
body .dir-rtl .launchpad__participation_title {
  border-right: 2px solid rgba(1, 188, 141, 0.7);
  padding-left: 0px;
  padding-right: 10px;
  border-left: none;
}
.launchpad__participation_body {
  margin: 24px 0;
}
.launchpad__participation .subtitle {
  font-size: 12px;
  font-weight: 500;
  line-height: 22.5px;
}
body.dark .launchpad__participation .subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.launchpad__participation .content {
  font-size: 15px;
  font-weight: 600;
  line-height: 35px;
  margin: 8px 0 24px;
}
.launchpad__introduction {
  margin: 32px 0;
}
.launchpad__introduction_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  padding-left: 10px;
  border-left: 2px solid rgba(1, 188, 141, 0.7);
}
body .dir-rtl .launchpad__introduction_title {
  border-right: 2px solid rgba(1, 188, 141, 0.7);
  padding-left: 0px;
  padding-right: 10px;
  border-left: none;
}
.launchpad__introduction_body {
  margin: 24px 0;
}
.launchpad__introduction .content {
  font-size: 14px;
  font-weight: 500;
  line-height: 22.5px;
  margin: 8px 0 24px;
}
.launchpad__notFound {
  display: flex;
  flex-direction: column;
  width: 1280px;
  padding: 44px 0;
  margin: 0 auto;
}
.launchpad__notFound svg {
  margin: 0 auto;
}
body.dark .launchpad__notFound svg.light {
  display: none;
}
.launchpad__notFound svg.dark {
  display: none;
}
body.dark .launchpad__notFound svg.dark {
  display: block;
}
.launchpad__notFound_text {
  font-size: 20px;
  font-weight: 600;
  line-height: 29.26px;
  margin: 16px 0;
}

.fees__center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.fees__head {
  background: #00ed7b;
}
@media only screen and (max-width: 1023px) {
  .fees__head {
    padding: 36px 0;
  }
}
.fees__wrap {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .fees__wrap {
    width: 100%;
  }
}
.fees__title {
  font-size: 40px;
  font-weight: 700;
  color: #fbfbfb;
}
@media only screen and (max-width: 1023px) {
  .fees__title {
    font-size: 36px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .fees__title {
    font-size: 25px;
    line-height: 35px;
  }
}
.fees__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin: 15px 120px 15px 0px;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 767px) {
  .fees__subtitle {
    font-size: 14px;
    line-height: 24.4px;
    margin: 16px 0;
  }
}
.fees__bg {
  width: 40%;
}
.fees__bg img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .fees__bg {
    display: none;
  }
}
.fees__button {
  border-radius: 35px;
}
.fees__home {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .fees__home {
    padding-top: 36px;
  }
}
.fees__home_title {
  font-size: 27.02px;
  font-weight: 700;
  line-height: 36px;
}
.fees__filters {
  display: flex;
  align-items: center;
  padding: 24px 0;
}
.fees__filters .filter {
  padding: 8px 16px;
  flex-shrink: 0;
  background: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
  border-radius: 6px;
  margin-right: 12px;
  cursor: pointer;
  font-size: 14px;
}
.fees__filters .filter:hover {
  background: #00ed7b;
  color: #fbfbfb;
}
.fees__filters .filter.active {
  background: #00ed7b;
  color: #fbfbfb;
}
.fees__filters .filter:last-child {
  margin-right: 0;
}
body .dir-rtl .fees__filters .filter {
  margin-left: 12px;
  margin-right: 0px;
}
@media only screen and (max-width: 1023px) {
  .fees__filters {
    flex-direction: column;
    padding: 24px 32px;
    align-items: unset;
  }
}
@media only screen and (max-width: 767px) {
  .fees__filters {
    padding: 24px;
  }
}
.fees__program {
  text-align: left;
  margin: 50px auto;
}
.fees__program h2 {
  color: #00ed7b;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
.fees__vip-buttons {
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 1023px) {
  .fees__vip-buttons {
    align-items: center;
    flex-direction: column;
  }
}
.fees__vipbtn {
  width: 250px;
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid #00ed7b;
  height: 74px;
  padding: 25px;
  margin-top: 12px;
  border-radius: 12px;
  opacity: 0px;
}
.fees__text {
  display: flex;
  gap: 8px;
}
.fees__login {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fees__login_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 70px;
}
.fees__login_text {
  margin-top: 100px;
  text-align: center;
  font-size: 26.8px;
  font-weight: 700;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  .fees__login_text {
    font-size: 16px;
  }
}
.fees__login_button {
  padding: 20px 70px 20px 70px;
  margin-top: 16px;
}
.fees__tabs {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
  display: inline-flex;
  width: auto;
  margin-left: 125px;
}
@media only screen and (max-width: 767px) {
  .fees__tabs {
    flex-shrink: 0;
    overflow-x: scroll;
    padding: 0 10px;
  }
  .fees__tabs::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .fees__tabs {
    margin-left: 32px;
  }
}
.fees__tab {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  outline: none;
  font-weight: 400;
  position: relative;
  color: #777E90;
}
.fees__tab:hover {
  color: #00ed7b;
}
.fees__tab:hover:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #00ed7b;
}
@media only screen and (max-width: 767px) {
  .fees__table {
    overflow-x: scroll;
  }
  .fees__table::-webkit-scrollbar {
    display: none;
  }
}
.fees__table_inner {
  display: table;
  width: 100%;
  padding-bottom: 50px;
}
.fees__table_row {
  display: table-row;
}
.fees__table_row:first-child {
  background-color: rgba(0, 237, 123, 0.1);
  color: #777E90;
}
.fees__table_row:first-child .table_col {
  padding-bottom: 10px;
  padding: 21px 16px 21px 16px;
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 600;
  color: #777E90;
}
.fees__table_row:not(:first-child) .table_col {
  font-size: 11px;
  line-height: 1.6666666667;
  font-weight: 500;
}
.fees__table_row:not(:last-child) {
  border-bottom: 1px solid rgba(233, 242, 255, 0.2);
}
.fees__table_col {
  display: table-cell;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body .dir-rtl .fees__table_col:first-child {
  padding-left: 6px;
}
@media only screen and (max-width: 767px) {
  .fees__table_col:first-child {
    width: 130px;
  }
  body .dir-rtl .fees__table_col:first-child {
    width: 150px;
  }
}
@media only screen and (max-width: 1023px) {
  .fees__table_col:nth-child(2) {
    width: 170px;
  }
}
@media only screen and (max-width: 767px) {
  .fees__table_col:nth-child(2) {
    width: 170px;
  }
}
@media only screen and (max-width: 1023px) {
  .fees__table_col:nth-child(3) {
    width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .fees__table_col:nth-child(3) {
    width: 150px;
  }
}
@media only screen and (max-width: 1023px) {
  .fees__table_col:nth-child(4) {
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .fees__table_col:nth-child(4) {
    width: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .fees__table_col:nth-child(6) {
    width: 120px;
  }
}
.fees__table_col:last-child {
  text-align: left;
  width: 180px;
}
body .dir-rtl .fees__table_col:last-child {
  padding-left: 0;
  padding-right: 6px;
  text-align: right;
}
.fees__table_col.variable2 {
  color: #00ed7b;
  padding: 0;
}
.fees__table_col.positive {
  color: rgb(0, 177, 105);
}
.fees__table_col.negative {
  color: #FF6838;
}
.fees__table_col.widFee {
  text-align: left;
}
.fees__table_col.min {
  width: 180px;
}
.fees__table_col.last {
  text-align: right;
}
.fees__inline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.fees__label {
  display: none;
}
.fees__label.launch {
  display: block;
  color: #181617;
}
body.dark .fees__label.launch {
  color: #F4F5F6;
}
@media only screen and (max-width: 767px) {
  .fees__label.launch {
    display: block;
    margin-right: auto;
    font-size: 12px;
    line-height: 1.6666666667;
    font-weight: 600;
    color: #77908b;
  }
  body .dir-rtl .fees__label.launch {
    margin-left: auto;
    margin-right: 0;
  }
}
.fees__search_input {
  width: 200px;
  height: 45px;
  padding-right: 32px;
  border: none;
  border: 1px solid rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  outline: none;
  background-color: unset;
  font-size: 14px;
}
.fees__search_input:focus {
  border-color: #00ed7b;
  --tw-ring-color: $n9;
}
body.dark .fees__search_input:focus {
  border-color: #00ed7b;
  --tw-ring-color: $n9;
}
@media only screen and (max-width: 767px) {
  .fees__search_input {
    width: 100%;
  }
}
body .dir-rtl .fees__search_input {
  padding-right: 10px;
}
.fees__search_wrapper {
  position: relative;
  margin-left: auto;
}
@media only screen and (max-width: 1023px) {
  .fees__search_wrapper {
    margin-left: 0;
    margin-top: 8px;
  }
}
body .dir-rtl .fees__search_wrapper {
  margin-left: unset;
  margin-right: auto;
}
.fees__search_text {
  color: #848E9C;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  text-align: left;
  width: 900px;
}
@media only screen and (max-width: 1023px) {
  .fees__search_text {
    width: 470px;
  }
}
@media only screen and (max-width: 767px) {
  .fees__search_text {
    width: 300px;
    margin-bottom: 20px;
  }
}
.fees__magnifier {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
body .dir-rtl .fees__magnifier {
  left: 8px;
  right: -4px;
  top: 20%;
  transform: translateX(-700%);
  transform: translateY(none);
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .fees__magnifier {
    transform: translateX(-600%);
  }
}
@media only screen and (max-width: 1023px) {
  .fees__magnifier {
    top: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .fees__magnifier {
    top: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .fees__off {
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100px;
  }
}

.funding {
  background: rgba(0, 237, 123, 0.1);
  width: 100%;
  height: 100%;
  padding: 24px;
  border-radius: 6px;
}
.funding__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.funding__head_account {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-align: left;
}
.funding__subtitle {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
  margin-top: 32px;
}
.funding__show {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 24px 0 16px;
  color: #777E90;
  cursor: pointer;
}
.funding__show svg {
  margin-left: 8px;
  color: #777E90;
}
.funding__inputs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.funding__inputs:focus {
  border-color: #00ED7B;
  --tw-ring-color: $p4;
}
.funding__inputs .funding__input {
  width: 200px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.funding__inputs .funding__input:focus {
  border-color: #00ED7B;
  --tw-ring-color: $p4;
}
.funding__inputs .funding__checkbox {
  display: flex;
  gap: 16px;
}
.funding__inputs .funding__checkbox label {
  font-size: 14px;
  color: #777E90;
}
.funding__inputs .funding__checkbox label input {
  margin-right: 4px;
  border-radius: 8px;
}
.funding__inputs .funding__checkbox input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  box-shadow: none;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-color: white;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.funding__inputs .funding__checkbox input[type=checkbox]:checked {
  background-color: #28a745;
  border-color: #28a745;
}
.funding__inputs .funding__checkbox input[type=checkbox]:focus {
  outline: none;
  box-shadow: none;
}
.funding__message {
  font-size: 12px;
  background: rgba(0, 0, 0, 0.0509803922);
  margin-top: 16px;
  font-weight: 400;
  padding: 6px;
  border-radius: 6px;
  text-align: left;
}

.heatmap__center {
  padding: 60px 0;
}
@media only screen and (max-width: 1023px) {
  .heatmap__center {
    padding: 60px 32px;
  }
}
@media only screen and (max-width: 767px) {
  .heatmap__center {
    padding: 60px 24px;
  }
}
.heatmap__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.heatmap__link {
  display: flex;
  align-items: center;
  color: #00ed7b;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.03em;
}
.heatmap__link .icon {
  margin-left: 6px;
}
body .dir-rtl .heatmap__link .icon {
  margin-left: 0px;
  margin-right: 6px;
  transform: rotateY(180deg);
}
@media only screen and (max-width: 767px) {
  .heatmap__link {
    font-size: 14px;
  }
}
.heatmap__tabs {
  display: flex;
  align-items: center;
}
.heatmap__tabs .tab {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.03em;
  margin-right: 18px;
  cursor: pointer;
}
body.dark .heatmap__tabs .tab {
  color: #777E90;
}
.heatmap__tabs .tab.active {
  font-weight: 700;
}
body.dark .heatmap__tabs .tab.active {
  color: #fbfbfb;
}
@media only screen and (max-width: 767px) {
  .heatmap__tabs .tab {
    font-size: 16px;
  }
}
.heatmap__body {
  width: 100%;
}
.heatmap__container {
  height: 600px;
}
.heatmap__description {
  display: flex;
  flex-direction: column;
  margin: 36px 0;
}
.heatmap__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .heatmap__title {
    font-size: 26px;
  }
}
.heatmap__content {
  font-size: 14px;
  font-weight: 400;
  line-height: 28.8px;
}
body.dark .heatmap__content {
  color: rgba(255, 255, 255, 0.7019607843);
}
@media only screen and (max-width: 767px) {
  .heatmap__content {
    font-size: 13px;
  }
}

.about__center {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .about__center {
    display: block;
  }
}
.about__mission {
  padding: 15px 0px;
}
.about__head {
  background: #00ed7b;
}
@media only screen and (max-width: 767px) {
  .about__head {
    padding: 30px 0;
  }
}
.about__wrap {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .about__wrap {
    width: 100%;
  }
}
.about__logo {
  position: absolute;
  top: 53px;
  left: 32%;
  width: 222px;
  height: 69px;
  z-index: 99;
}
.about__bg {
  top: 55px;
  left: calc(50% + 0px);
  width: 646px;
  height: 350px;
  overflow: hidden;
}
.about__bg video {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .about__bg {
    display: none;
  }
}
.about__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 78px;
  letter-spacing: 0.03em;
  color: #FCFCFD;
}
@media only screen and (max-width: 767px) {
  .about__title {
    font-size: 20px;
  }
}
.about__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.7019607843);
}
@media only screen and (max-width: 767px) {
  .about__subtitle {
    font-size: 11px;
    line-height: unset;
    margin: 0px;
  }
}
.about__left {
  width: 50%;
  padding: 25px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about__left {
    width: 100%;
  }
}
.about__left_box {
  margin: 22px 0px;
}
.about__left_box_title {
  font-weight: 600;
  font-size: 30px;
  line-height: 29.26px;
  margin: 5px 0px 20px 0px;
}
body.dark .about__left_box_title {
  color: rgba(1, 188, 141, 0.7);
}
@media only screen and (max-width: 767px) {
  .about__left_box_title {
    font-size: 24px;
  }
}
.about__left_box_answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  margin: 5px 0px;
}
@media only screen and (max-width: 767px) {
  .about__left_box_answer {
    font-size: 11px;
    line-height: 22px;
  }
}
.about__right {
  width: 50%;
  padding: 25px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about__right {
    width: 100%;
  }
}
.about__right img {
  border-radius: 7px;
}
.about__cards_row {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .about__cards_row {
    display: block;
  }
}
.about__cards_row_box {
  background: rgb(234, 236, 239);
  padding: 20px;
  margin: 20px 10px;
  border-radius: 8px;
  width: 100%;
  height: 260px;
  width: 572px;
}
body.dark .about__cards_row_box {
  background: rgba(233, 242, 255, 0.1);
}
@media only screen and (max-width: 767px) {
  .about__cards_row_box {
    display: block;
    width: 100%;
    margin: 20px 0px;
  }
}
.about__cards_row_box img {
  width: 40px;
  margin: 10px 0px;
}
.about__cards_row_box_title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 20px 0px;
}
.about__cards_row_box_answer {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
body.dark .about__cards_row_box_answer {
  color: rgba(255, 255, 255, 0.6);
}
.about__founder {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0px;
  background: rgb(234, 236, 239);
}
body.dark .about__founder {
  background: rgba(233, 255, 248, 0.05);
}
.about__founder_title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .about__founder_title {
    font-size: 16px;
  }
}
.about__founder_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .about__founder_subtitle {
    font-size: 11px;
    color: rgba(18, 18, 18, 0.6588235294);
  }
}
body.dark .about__founder_subtitle {
  color: rgba(255, 255, 255, 0.6588235294);
}
.about__founder_center {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .about__founder_center {
    display: block;
  }
}
.about__founder_left {
  width: 50%;
  padding: 25px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about__founder_left {
    width: 100%;
    padding-top: 0px;
  }
}
.about__founder_left_box {
  margin: 22px 0px;
}
.about__founder_left_box_title {
  font-weight: 600;
  font-size: 30px;
  line-height: 29.26px;
  margin: 5px 0px 20px 0px;
}
.about__founder_left_box_answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  margin: 5px 0px;
}
@media only screen and (max-width: 767px) {
  .about__founder_left_box_answer {
    font-size: 12px;
    line-height: 24px;
    text-align: center;
  }
}
.about__founder_right {
  width: 50%;
  padding: 25px;
  position: relative;
  text-align: -webkit-center;
}
@media only screen and (max-width: 767px) {
  .about__founder_right {
    width: 100%;
  }
}
.about__founder_right_circle {
  border: 2px solid rgba(255, 255, 255, 0.5);
  z-index: 99999999999;
  border-radius: 100%;
  width: 250px;
  padding: 10px;
  background: rgba(254, 254, 254, 0.214);
}
.about__founder_right img {
  width: 250px;
  border-radius: 100%;
  height: 250px;
  -webkit-box-shadow: 0px 0px 17px rgba(1, 188, 141, 0.314);
}
.about__timeLine_title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.about__timeLine_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
}
.about__timeLine_container {
  display: flex;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.about__timeLine_left_side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 49%;
}
.about__timeLine_middle {
  width: 2%;
  padding: 50px 0px;
}
.about__timeLine_right_side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 49%;
}
.about__timeLine_timeline {
  width: 6px;
  background-color: rgb(1, 188, 141);
  height: 750px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1023px) {
  .about__timeLine_timeline {
    height: 750px;
  }
}
@media only screen and (max-width: 767px) {
  .about__timeLine_timeline {
    height: 650px;
  }
}
.about__timeLine_icon_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.about__timeLine_right-icon {
  align-items: flex-end;
}
.about__timeLine_right-icon .content {
  right: -25px;
}
.about__timeLine_right-icon .content::after {
  left: -50px;
}
.about__timeLine_left-icon {
  margin-top: 170px;
}
.about__timeLine_left-icon .content {
  left: -25px;
}
.about__timeLine_left-icon .content::after {
  right: -50px;
}
.about__timeLine_content_left {
  padding: 20px 30px;
  margin: 50px 0;
  position: relative;
  width: 100%;
  right: -25px;
}
.about__timeLine_content_left:after {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: rgb(224, 224, 224);
  border: 4px solid rgba(0, 237, 123, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1023px) {
  .about__timeLine_content_left:after {
    top: 20%;
    transform: translateX(-20%);
  }
}
@media only screen and (max-width: 767px) {
  .about__timeLine_content_left:after {
    top: 20%;
    transform: translateX(-85%);
  }
}
.about__timeLine_content_left h2 {
  margin: 0 0 10px;
  color: #000;
  text-align: right;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .about__timeLine_content_left h2 {
    font-size: 11px;
  }
}
body.dark .about__timeLine_content_left h2 {
  color: #FFFFFF;
}
.about__timeLine_content_left p {
  text-align: right;
  margin-top: 24px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 767px) {
  .about__timeLine_content_left p {
    font-size: 9px;
  }
}
body.dark .about__timeLine_content_left p {
  color: rgba(255, 255, 255, 0.6);
}
.about__timeLine_content_right {
  padding: 20px 30px;
  margin: 50px 0;
  position: relative;
  width: 100%;
  left: -25px;
}
.about__timeLine_content_right:before {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: rgb(224, 224, 224);
  border: 4px solid rgba(0, 237, 123, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 3;
}
.about__timeLine_content_right h2 {
  margin: 0 0 10px;
  color: #000;
  text-align: left;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .about__timeLine_content_right h2 {
    font-size: 11px;
  }
}
body.dark .about__timeLine_content_right h2 {
  color: #FFFFFF;
}
.about__timeLine_content_right p {
  text-align: left;
  margin-top: 24px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 767px) {
  .about__timeLine_content_right p {
    font-size: 9px;
  }
}
body.dark .about__timeLine_content_right p {
  color: rgba(255, 255, 255, 0.6);
}
.about__timeLine_dotted {
  width: 87%;
  height: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px dashed rgb(1, 188, 141);
}
.about__timeLine_triangle_right {
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-left: 50px solid #555;
  border-bottom: 25px solid transparent;
}

.dashboard {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1023px) {
  .dashboard.desktop {
    display: none;
  }
}
.dashboard.mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .dashboard.mobile {
    display: block;
  }
}
body.dark .dashboard {
  background: #010101;
}
.dashboard__sidebar {
  width: 16%;
  border-right: 1px solid rgba(0, 0, 0, 0.1490196078);
}
body.dark .dashboard__sidebar {
  border-color: rgba(233, 242, 255, 0.2);
}
body .dir-rtl .dashboard__sidebar {
  border-left: 1px solid rgba(0, 0, 0, 0.1490196078);
}
.dashboard__link {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #00ed7b;
  transition: color 0.1s;
  cursor: pointer;
}
.dashboard__link:not(.dashboard__link:last-child) {
  border-bottom: 1px solid #E9F2FF;
}
body.dark .dashboard__link:not(.dashboard__link:last-child) {
  border-color: rgba(233, 242, 255, 0.2);
}
.dashboard__link .icon {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  stroke: #00ed7b;
}
body .dir-rtl .dashboard__link .icon {
  margin-right: 0px;
  margin-left: 12px;
}
.dashboard__link:hover, .dashboard__link.active {
  background: #00ed7b;
  color: #fbfbfb;
  font-weight: 600;
}
.dashboard__link:hover svg path, .dashboard__link.active svg path {
  stroke: #fbfbfb;
}
.dashboard__wrapper {
  width: 84%;
  padding: 24px;
}
.dashboard__profile {
  width: 100px;
  height: 100px;
  margin: 32px auto;
}
.dashboard__profile .avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.dashboard__profile .avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 237, 123, 0.1);
  color: #FCFCFD;
  border-radius: 50%;
}
.dashboard__profile_info {
  padding: 26px 16px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  margin-bottom: 24px;
}
.dashboard__profile_info .email {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1023px) {
  .dashboard__profile_info .email {
    margin-bottom: 0;
  }
}
.dashboard__profile_info .uid {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 14.63px;
}
.dashboard__profile_info .icon {
  margin-left: 6px;
}
.dashboard__tabs {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.dashboard__tabs .tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.0196078431);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}
.dashboard__tabs .tab:hover {
  background: #00ed7b;
  color: #fbfbfb;
}
.dashboard__tabs .tab svg path {
  fill: #121314;
}
body .dir-rtl .dashboard__tabs .tab svg {
  transform: rotateY(180deg);
}
body.dark .dashboard__tabs .tab {
  background: rgba(0, 237, 123, 0.1);
}
body.dark .dashboard__tabs .tab svg path {
  fill: #fbfbfb;
}
body.dark .dashboard__tabs .tab:hover {
  background-color: #00ed7b;
  color: #fbfbfb;
}

.vouchers__body {
  display: flex;
  align-items: stretch;
  gap: 24px;
}
@media only screen and (max-width: 1023px) {
  .vouchers__body {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .vouchers__body {
    flex-direction: column;
  }
}
.vouchers__left {
  width: 70%;
}
@media only screen and (max-width: 1023px) {
  .vouchers__left {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .vouchers__left {
    width: 100%;
  }
}
.vouchers__left_top {
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px 16px;
  background-color: rgba(0, 237, 123, 0.1);
  height: 190px;
}
@media only screen and (max-width: 767px) {
  .vouchers__left_top {
    margin-top: 24px;
  }
}
.vouchers__left_down {
  margin-top: 24px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px 16px;
  background-color: rgba(0, 237, 123, 0.1);
  height: 260px;
  overflow-y: scroll;
}
@media only screen and (max-width: 767px) {
  .vouchers__left_down {
    padding: 24px 12px;
  }
}
.vouchers__right {
  width: 30%;
  background-color: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px 16px;
}
@media only screen and (max-width: 1023px) {
  .vouchers__right {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .vouchers__right {
    width: 100%;
  }
}
body.dark .vouchers__right {
  background-color: rgba(234, 236, 239, 0.21);
}
.vouchers__rule {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #353945;
}
body.dark .vouchers__rule {
  color: #b9b9b9;
}
@media only screen and (max-width: 1023px) {
  .vouchers__rule {
    margin-top: 6px;
  }
}
body .dir-rtl .vouchers__rule {
  text-align: right;
}
.vouchers__title {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 16px;
}
.vouchers__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}
.vouchers__input {
  dispaly: flex;
  justify-content: space-between;
}
.vouchers__input_code {
  border-radius: 6px;
  background-color: rgba(1, 188, 141, 0);
  width: 100%;
  height: 42px;
  border: 1px solid #B1B5C3;
  margin-right: 6px;
}
.vouchers__input_code:focus {
  border-color: #00ED7B;
  --tw-ring-color: $p4;
}
body.dark .vouchers__input_code {
  border-color: #5f5f5f;
}
body.dark .vouchers__input_code:focus {
  border-color: #00ED7B;
  --tw-ring-color: $p4;
}
@media only screen and (max-width: 1023px) {
  .vouchers__input_code {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .vouchers__input_code {
    width: 69%;
    height: 40px;
    margin-right: none;
    margin-left: 6px;
  }
}
.vouchers__code {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.vouchers__redeem {
  height: 42px;
}
body .dir-rtl .vouchers__redeem {
  margin-right: 6px;
}
.vouchers__transaction {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.vouchers__table {
  display: table;
  width: 100%;
  overflow-y: scroll;
}
.vouchers__table__row {
  display: table-row;
}
.vouchers__table__row:first-child {
  background-color: rgba(0, 237, 123, 0.1);
}
.vouchers__table__row:first-child .vouchers__table__col {
  border-bottom: none;
}
.vouchers__table__row:first-child .vouchers__table__col:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
body .dir-rtl .vouchers__table__row:first-child .vouchers__table__col:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.vouchers__table__row:first-child .vouchers__table__col:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
body .dir-rtl .vouchers__table__row:first-child .vouchers__table__col:last-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.vouchers__table__row:last-child .vouchers__table__col {
  border-bottom: none;
}
.vouchers__table__col {
  display: table-cell;
  padding: 12px;
  font-weight: 500;
  vertical-align: middle;
  color: rgb(20, 70, 58);
  border-bottom: 1px solid rgba(64, 149, 135, 0.4901960784);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.vouchers__table__col:last-child {
  text-align: right;
}
body .dir-rtl .vouchers__table__col:last-child {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .vouchers__table__col {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 400;
  }
}
body.dark .vouchers__table__col {
  color: #b9b9b9;
}
body .dir-rtl .vouchers__table__col {
  text-align: right;
}
.vouchers__nothing {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 90px;
}

.success-message {
  color: #FF6838;
}

.error-message {
  color: red;
}

.api {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1023px) {
  .api {
    padding-bottom: 64px;
  }
}
body.dark .api {
  background: none;
}
.api__right {
  width: 16%;
  border-right: 1px solid rgba(0, 0, 0, 0.1490196078);
}
@media only screen and (max-width: 1023px) {
  .api__right {
    display: none;
  }
}
.api__left {
  width: 84%;
  padding: 24px;
}
@media only screen and (max-width: 1023px) {
  .api__left {
    width: 100%;
  }
}
.api__create {
  background-color: rgba(0, 237, 123, 0.1);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 24px;
}
.api__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 24px;
}
.api__body {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.api__body_left {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .api__body_left {
    width: 100%;
  }
}
.api__body_right {
  width: 30%;
  background-color: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 16px;
  overflow-y: auto;
}
body.dark .api__body_right {
  background: rgba(233, 242, 255, 0.1);
}
@media only screen and (max-width: 767px) {
  .api__body_right {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .api__body {
    flex-direction: column;
  }
}
.api__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.api__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  margin-bottom: 6px;
}
.api__subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  margin-bottom: 16px;
}
.api__descrip {
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .api__descrip {
    font-size: 12px;
  }
}
.api__permissions {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.api__permissions .permission {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.api__permissions .label {
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
}
.api__button {
  width: 100%;
  height: 42px;
}
.api__rule {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}
.api__container {
  background-color: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 16px;
  height: 333px;
  overflow-y: auto;
}
body.dark .api__container {
  background: rgba(233, 242, 255, 0.1);
}
.api__table {
  display: table;
  width: 100%;
}
.api__row {
  display: table-row;
}
.api__row:first-child {
  background-color: rgba(0, 237, 123, 0.1);
  color: #00ed7b;
}
.api__row:first-child .api__col {
  border-bottom: none;
}
.api__row:first-child .api__col:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
body .dir-rtl .api__row:first-child .api__col:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.api__row:first-child .api__col:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
body .dir-rtl .api__row:first-child .api__col:last-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.api__row:last-child .api__col {
  border-bottom: none;
}
.api__col {
  display: table-cell;
  padding: 12px;
  font-weight: 500;
  vertical-align: middle;
  border-bottom: 1px solid rgba(64, 149, 135, 0.4901960784);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.api__col:last-child {
  text-align: right;
}
body .dir-rtl .api__col:last-child {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .api__col {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 400;
  }
}
body .dir-rtl .api__col {
  text-align: right;
}

@media only screen and (max-width: 1023px) {
  .ticketing {
    padding: 60px 0;
  }
}
.ticketing__firstpage {
  background: rgba(0, 237, 123, 0.1);
  padding: 24px;
  height: 100%;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  height: auto;
}
@media only screen and (max-width: 1023px) {
  .ticketing__firstpage {
    padding: 16px;
  }
}
.ticketing__header_basic {
  display: flex;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
  justify-content: space-between;
  padding-bottom: 20px;
  align-items: center;
}
.ticketing__header_search {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  justify-content: space-between;
}
.ticketing__search_input {
  width: 200px;
  padding-right: 32px;
  border: none;
  border-bottom: 1px solid #00ed7b;
  outline: none;
  background-color: unset;
  font-size: 14px;
}
.ticketing__search_input:focus {
  border-color: #37ffbc;
  --tw-ring-color: $p1;
}
body.dark .ticketing__search_input:focus {
  border-color: #37ffbc;
  --tw-ring-color: $p1;
}
@media only screen and (max-width: 767px) {
  .ticketing__search_input {
    width: 170px;
  }
}
body .dir-rtl .ticketing__search_input {
  padding-right: 0px;
}
.ticketing__search_wrapper {
  position: relative;
  display: inline-block;
}
.ticketing__magnifier {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
body .dir-rtl .ticketing__magnifier {
  left: 8px;
  right: 0px;
  top: 30%;
  transform: translateX(-700%);
  transform: translateY(none);
}
@media only screen and (max-width: 767px) {
  body .dir-rtl .ticketing__magnifier {
    transform: translateX(-600%);
  }
}
.ticketing__newticket {
  margin-left: 16px;
  padding: 8px 16px;
  color: #fbfbfb;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .ticketing__newticket {
    font-size: 12px;
    height: auto;
  }
}
body .dir-rtl .ticketing__newticket {
  margin-left: 0px;
}
.ticketing__table {
  display: table;
  width: 100%;
  overflow-y: scroll;
}
.ticketing__table__row {
  display: table-row;
  cursor: pointer;
  border-radius: 6px;
  padding: 0px 24px;
}
.ticketing__table__row:first-child {
  background-color: rgba(0, 237, 123, 0.1);
}
.ticketing__table__row:first-child .ticketing__table__col:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
body .dir-rtl .ticketing__table__row:first-child .ticketing__table__col:last-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ticketing__table__row:first-child .ticketing__table__col:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
body .dir-rtl .ticketing__table__row:first-child .ticketing__table__col:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.ticketing__table__row:last-child .ticketing__table__col {
  border-bottom: none;
}
.ticketing__table__rows {
  display: table-row;
  cursor: pointer;
  padding: 0px 24px;
  height: 50px;
}
.ticketing__table__rows:last-child .ticketing__table__col {
  border-bottom: none;
}
.ticketing__table__rows:first-child .ticketing__table__col {
  border-bottom: none;
}
.ticketing__table__col {
  display: table-cell;
  padding: 6px 24px;
  text-align: left;
  font-weight: 500;
  vertical-align: middle;
  color: rgb(20, 70, 58);
  border-bottom: 1px solid #B1B5C3;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ticketing__table__col:first-child {
  width: 256px;
}
@media only screen and (max-width: 1023px) {
  .ticketing__table__col:first-child {
    width: 50px;
  }
}
.ticketing__table__col:nth-child(2) {
  width: 284px;
}
.ticketing__table__col:nth-child(3) {
  width: 240px;
}
.ticketing__table__col:last-child {
  padding-right: 24px;
  text-align: right;
  width: 180px;
}
@media only screen and (max-width: 767px) {
  .ticketing__table__col:last-child {
    padding-right: 12px;
  }
}
@media only screen and (max-width: 1023px) {
  .ticketing__table__col:last-child {
    width: 225px;
  }
}
body .dir-rtl .ticketing__table__col:last-child {
  text-align: left;
}
body.dark .ticketing__table__col {
  color: #fbfbfb;
}
@media only screen and (max-width: 767px) {
  .ticketing__table__col {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 400;
  }
}
body .dir-rtl .ticketing__table__col {
  text-align: right;
}
.ticketing__not_found {
  width: 100%;
  text-align: center;
  padding: 16px 0px;
}
.ticketing__create_title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
  padding-bottom: 24px;
  color: #00ed7b;
  background-color: rgba(0, 237, 123, 0.1);
  padding: 24px 28px 24px 28px;
  margin: -24px;
}
@media only screen and (max-width: 1023px) {
  .ticketing__create_title {
    margin: -2px -32px;
  }
}
body .dir-rtl .ticketing__create_title {
  text-align: right;
}
.ticketing__form {
  border: 1px solid #00ed7b;
  padding: 24px 20px 32px 20px;
  border-radius: 8px;
  background-color: rgba(0, 237, 123, 0.1);
  width: 100%;
  margin-top: 50px;
  gap: 16px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ticketing__form_input {
  --tw-ring-color: $p4;
}
.ticketing__form_input:focus {
  border-color: #00ED7B;
}
.ticketing__form_subject label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
  color: #121314;
  margin-top: 16px;
}
body.dark .ticketing__form_subject label {
  color: #fbfbfb;
}
.ticketing__form_action {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .ticketing__form_action {
    flex-direction: column;
  }
}
.ticketing__form_message {
  margin-bottom: 24px;
}
.ticketing__form_message label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
  color: #121314;
  margin-top: 16px;
}
body.dark .ticketing__form_message label {
  color: #fbfbfb;
}
.ticketing__form input[type=text],
.ticketing__form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #B1B5C3;
  border-radius: 10px;
  font-size: 16px;
  background-color: rgba(1, 188, 141, 0.01);
}
body.dark .ticketing__form input[type=text],
body.dark .ticketing__form textarea {
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ticketing__form_box {
  height: 150px;
  resize: none;
  padding: 12px;
  border: 1px solid #B1B5C3;
  border-radius: 4px;
  font-size: 16px;
  background-color: #ffffff;
}
.ticketing__attachment {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.ticketing__attachment input[type=file] {
  margin-right: 10px;
}
.ticketing_action {
  display: flex;
  justify-content: space-between;
}
.ticketing__details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgba(0, 237, 123, 0.1);
  padding: 24px 28px 24px 22px;
  margin: -24px;
  margin-bottom: 16px;
}
body.dark .ticketing__details {
  background-color: rgba(233, 242, 255, 0.1);
}
@media only screen and (max-width: 1023px) {
  .ticketing__details {
    padding: 24px 32px 24px 32px;
    margin: -35px;
    margin-bottom: 30px;
    margin-top: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .ticketing__details {
    padding: 24px 28px 24px 22px;
    margin-bottom: 30px;
    margin-top: 60px;
  }
  .ticketing__details_info {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
  }
  body .dir-rtl .ticketing__details_info {
    text-align: right;
  }
  .ticketing__details_customer {
    color: #777E90;
  }
  .ticketing__details_title {
    color: #00ed7b;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-align: left;
  }
  body .dir-rtl .ticketing__details_title {
    text-align: right;
  }
  .ticketing__details_status {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  body .dir-rtl .ticketing__details_status {
    text-align: right;
  }
}
.ticketing__back {
  display: none;
}
@media only screen and (max-width: 767px) {
  .ticketing__back {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #00ed7b;
    color: #fbfbfb;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 55px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
  }
}
@media only screen and (max-width: 1023px) {
  .ticketing__back {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #00ed7b;
    color: #fbfbfb;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 55px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
  }
}
.ticketing__box--user {
  display: flex;
  position: relative;
  margin-bottom: 16px;
}
.ticketing__box--admin {
  direction: rtl;
  display: flex;
  position: relative;
  margin-bottom: 16px;
}
body .dir-rtl .ticketing__box--admin {
  direction: ltr;
}
.ticketing__box {
  overflow-y: auto;
}
.ticketing__box_body {
  flex-grow: 1;
  display: flex;
  overflow-x: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .ticketing__box_body {
    flex-direction: column;
  }
}
.ticketing__box_date--user {
  align-self: flex-end;
  padding-top: 8px;
  font-size: 12px;
  color: #B1B5C3;
  margin-left: 6px;
  width: 80px;
}
@media only screen and (max-width: 767px) {
  .ticketing__box_date--user {
    width: unset;
    margin-right: 30px;
  }
}
body .dir-rtl .ticketing__box_date--user {
  margin-right: 6px;
  margin-left: 0px;
}
.ticketing__box_date--admin {
  align-self: flex-end;
  padding-top: 8px;
  font-size: 12px;
  color: #B1B5C3;
  margin-right: 6px;
  width: 80px;
}
@media only screen and (max-width: 767px) {
  .ticketing__box_date--admin {
    width: unset;
    margin-left: 30px;
  }
  body .dir-rtl .ticketing__box_date--admin {
    align-self: unset;
  }
}
body .dir-rtl .ticketing__box_date--admin {
  margin-left: 6px;
  margin-right: 0px;
}
.ticketing__box_reply {
  display: flex;
  position: relative;
  margin-top: 100px;
}
.ticketing__square--user {
  background: #00ed7b;
  position: absolute;
  height: 35px;
  width: 35px;
  border-radius: 6px;
  margin-right: 12px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #121314;
  padding: 6px 10p;
}
body .dir-rtl .ticketing__square--user {
  margin-left: 0px;
  margin-right: 12px;
}
.ticketing__square--box {
  background: #00ed7b;
  height: 35px;
  width: 35px;
  border-radius: 6px;
  margin-right: 12px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #121314;
  padding: 6px 10p;
}
@media only screen and (max-width: 767px) {
  .ticketing__square--box {
    width: 10%;
  }
}
body .dir-rtl .ticketing__square--box {
  margin-right: 0px;
  margin-left: 12px;
}
.ticketing__square--admin {
  background: #00ed7b;
  padding: 6px 10p;
  height: 35px;
  width: 35px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-left: 12px;
  color: #121314;
}
body .dir-rtl .ticketing__square--admin {
  margin-left: 0px;
  margin-right: 12px;
}
.ticketing__description--user {
  padding: 16px;
  border: 1px solid #00ed7b;
  border-radius: 8px;
  font-size: 14px;
  width: 60%;
  word-wrap: break-word;
  margin-left: 50px;
  box-shadow: 0px 0px 10px 0px rgba(34, 255, 226, 0.2);
}
body.dark .ticketing__description--user {
  background-color: rgba(233, 242, 255, 0.1);
  border: 0.5px solid #00ed7b;
  box-shadow: 0px 0px 10px 0px rgba(34, 255, 226, 0.2);
}
@media only screen and (max-width: 767px) {
  .ticketing__description--user {
    width: 80%;
  }
  body .dir-rtl .ticketing__description--user {
    margin-right: 50px;
    margin-left: unset;
  }
}
body .dir-rtl .ticketing__description--user {
  margin-right: 60px;
  margin-left: 0px;
}
.ticketing__description--admin {
  background: rgba(0, 237, 123, 0.4901960784);
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  width: 60%;
  word-wrap: break-word;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .ticketing__description--admin {
    width: 90%;
  }
}
body .dir-rtl .ticketing__description--admin {
  text-align: right;
}
.ticketing__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
.ticketing__message {
  font-size: 14px;
  color: #353945;
  margin-bottom: 8px;
  white-space: normal;
  word-wrap: break-word;
  overflow-y: auto;
  display: flex;
  flex-direction: column-reverse;
}
body.dark .ticketing__message {
  color: #c3d5d4;
}
.ticketing__messages_container {
  max-height: 500px;
  overflow-y: auto;
  display: flex;
  flex-direction: column-reverse;
}
.ticketing__reply {
  padding: 16px;
  border: 1px solid #00ed7b;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  height: 229px;
  word-wrap: break-word;
  box-shadow: 0px 0px 10px 0px rgba(34, 255, 226, 0.2);
}
.ticketing__reply_icons {
  flex-direction: row;
  display: flex;
  bottom: 16px;
  left: 16px;
  position: absolute;
}
.ticketing__reply_input {
  background: none;
  border: none;
  width: 100%;
  height: 150px;
  margin-top: 50px;
}
.ticketing__reply_button {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
body .dir-rtl .ticketing__reply_button svg {
  transform: rotateY(180deg);
}
body .dir-rtl .ticketing__reply_button {
  left: 16px;
  right: unset;
}
@media only screen and (max-width: 1023px) {
  .ticketing__showticket {
    margin: 60px 0;
  }
}

.pagination-controls {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 24px 0px 0px;
}
.pagination-controls button {
  margin: 0 5px;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  border: 1px solid #B1B5C3;
  gap: 10px;
  cursor: pointer;
  background-color: white;
}
body.dark .pagination-controls button {
  color: #121314;
}
.pagination-controls button.active-page {
  background-color: #00ed7b;
  color: white;
}
.pagination-controls button:disabled {
  background-color: #F4F5F6;
  cursor: not-allowed;
}

.kyc {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1023px) {
  .kyc {
    padding-bottom: 64px;
  }
}
body.dark .kyc {
  background: none;
}
.kyc__sidebar {
  width: 16%;
  border-right: 1px solid rgba(0, 0, 0, 0.1490196078);
}
@media only screen and (max-width: 1023px) {
  .kyc__sidebar {
    display: none;
  }
}
.kyc__body {
  width: 84%;
  padding: 24px;
}
@media only screen and (max-width: 1023px) {
  .kyc__body {
    width: 100%;
  }
}
.kyc__description {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .kyc__description {
    flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  .kyc__description {
    flex-direction: column;
  }
}
.kyc__left {
  width: 70%;
  padding-right: 24px;
}
.kyc__left .flash_icon {
  margin-left: 12px;
}
body .dir-rtl .kyc__left .flash_icon {
  margin-left: 0px;
  margin-right: 12px;
  transform: rotateY(180deg);
}
@media only screen and (max-width: 1023px) {
  .kyc__left {
    width: 70%;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .kyc__left {
    width: 100%;
  }
}
body .dir-rtl .kyc__left {
  margin-right: 0px;
  margin-left: 24px;
}
.kyc__right {
  width: 30%;
  background-color: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px;
  overflow-y: auto;
}
.kyc__right .kyc__title {
  margin-bottom: 0;
}
body.dark .kyc__right {
  background: rgba(233, 242, 255, 0.1);
}
@media only screen and (max-width: 1023px) {
  .kyc__right {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .kyc__right {
    width: 100%;
  }
}
.kyc__box {
  padding: 24px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
}
@media only screen and (max-width: 1023px) {
  .kyc__box {
    margin-right: 24px;
  }
  body .dir-rtl .kyc__box {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .kyc__box {
    margin-right: 0px;
  }
}
.kyc__box.verify {
  background: linear-gradient(90deg, #FFFFFF 0%, #00ED7B 100%);
  margin-bottom: 24px;
}
body.dark .kyc__box.verify {
  background: linear-gradient(90deg, rgba(233, 242, 255, 0.1) 0%, rgba(64, 149, 135, 0.4) 100%);
}
body .dir-rtl .kyc__box.verify {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(64, 149, 135) 100%);
}
.kyc__box.features {
  background: rgb(234, 236, 239);
  margin: 0;
}
body.dark .kyc__box.features {
  background: rgba(233, 242, 255, 0.1);
}
@media only screen and (max-width: 1023px) {
  .kyc__box.features {
    margin-right: 24px;
  }
  body .dir-rtl .kyc__box.features {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .kyc__box.features {
    margin-right: 0px;
    margin-bottom: 24px;
  }
}
.kyc__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 16px;
}
.kyc__content {
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
  margin-bottom: 8px;
}
.kyc__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 25.2px;
  margin-bottom: 8px;
}
.kyc__table {
  display: table;
  width: 100%;
}
.kyc__row {
  display: table-row;
}
.kyc__row:first-child {
  background-color: rgba(0, 237, 123, 0.1);
}
.kyc__row:first-child .kyc__col {
  color: #00ed7b;
}
.kyc__row:first-child .kyc__col:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
body .dir-rtl .kyc__row:first-child .kyc__col:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.kyc__row:first-child .kyc__col:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
body .dir-rtl .kyc__row:first-child .kyc__col:last-child {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.kyc__row:not(:first-child) .kyc__col {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.kyc__row:not(:last-child) .kyc__col {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.kyc__col {
  display: table-cell;
  padding: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.kyc__col:last-child {
  text-align: right;
}
body.dark .kyc__col {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.kyc__faqitem {
  padding: 16px 0px;
}
@media only screen and (max-width: 1023px) {
  .kyc__faqitem {
    padding: 0px;
  }
}
.kyc__question {
  position: relative;
  display: flex;
  font-size: 14px;
  color: #121314;
  cursor: pointer;
}
body.dark .kyc__question {
  color: #fbfbfb;
}
@media only screen and (max-width: 1023px) {
  .kyc__question {
    font-size: 14px;
    padding: 12px 0px;
  }
}
@media only screen and (max-width: 321px) {
  .kyc__question {
    font-size: 12px;
  }
}
.kyc__question .icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
  fill: #777E90;
  transition: transform 0.2s;
}
body .dir-rtl .kyc__question .icon {
  margin-left: 0;
  margin-right: auto;
}
.kyc__answer {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  padding-top: 8px;
}
body.dark .kyc__answer {
  color: #b9b9b9;
}
@media only screen and (max-width: 1023px) {
  body.dark .kyc__answer {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  body.dark .kyc__answer {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 321px) {
  body.dark .kyc__answer {
    font-size: 10px;
  }
}
body .dir-rtl .kyc__answer {
  text-align: right;
}
.kyc__line {
  border-bottom: 2px dashed #00ed7b;
}
.kyc__step {
  padding: 24px;
  background: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
}
body.dark .kyc__step {
  background: rgba(233, 242, 255, 0.1);
}
.kyc__step_title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 23.4px;
  margin-bottom: 24px;
}
.kyc__step_title .back {
  margin-right: 12px;
}
body .dir-rtl .kyc__step_title .back {
  transform: rotateY(180deg);
  margin-right: 0px;
  margin-left: 12px;
}
.kyc__step_label {
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .kyc__step_label {
    font-size: 12px;
    font-weight: 600;
  }
}
.kyc__wrap {
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.6px;
}
.kyc__button {
  width: 100%;
  height: 60px;
}
.kyc__button.error {
  background-color: #FF6838;
}
.kyc__verified {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  background: #0BA366;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  letter-spacing: 1px;
  color: #fbfbfb;
}
.kyc__verified svg {
  margin-left: 6px;
}
.kyc__pending {
  display: flex;
  align-items: center;
  margin-left: 6px;
  width: -moz-fit-content;
  width: fit-content;
  background: #FFDE39;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  letter-spacing: 1px;
  color: #121314;
}
.kyc__pending svg {
  margin-left: 6px;
}
body .dir-rtl .kyc__pending {
  margin-left: unset;
  margin-right: 6px;
}
.kyc__reject {
  background: #bd2828;
  padding: 8px 16px;
  margin: 6px 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  letter-spacing: 1px;
  display: inline-flex;
  color: #fbfbfb;
}
.kyc__reject svg {
  margin-left: 6px;
}
.kyc .reason {
  color: #bd2828;
}
.kyc__idType {
  display: flex;
  flex-direction: column;
}
.kyc__idType .type {
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  cursor: pointer;
}
.kyc__idType .type_name {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
}
.kyc__idType .type_name svg {
  margin-right: 12px;
}
body .dir-rtl .kyc__idType .type_name svg {
  margin-right: 0px;
  margin-left: 12px;
}
.kyc__img {
  width: 60%;
}
.kyc__img img {
  width: 100%;
}
.kyc__upload {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}
.kyc__upload .kyc__wrap {
  width: 46%;
}
.kyc__upload_rule {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 24px;
}
.kyc__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}
.kyc__info {
  width: 46%;
}
.kyc__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.kyc__country {
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.24);
  opacity: 60%;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.transaction {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1023px) {
  .transaction {
    display: block;
    padding: 32px 16px 16px;
  }
}
body.dark .transaction {
  background: #181617;
}
.transaction__sidebar {
  width: 16%;
  border-right: 1px solid rgba(0, 0, 0, 0.1490196078);
}
body.dark .transaction__sidebar {
  border-color: rgba(233, 242, 255, 0.2);
}
@media only screen and (max-width: 1023px) {
  .transaction__sidebar {
    width: 100%;
    border: none;
  }
}
body .dir-rtl .transaction__sidebar {
  border-left: 1px solid rgba(0, 0, 0, 0.1490196078);
}
@media only screen and (max-width: 1023px) {
  .transaction__items {
    display: flex;
    align-items: center;
    overflow-x: scroll;
    scrollbar-width: none;
  }
}
.transaction__no {
  white-space: nowrap;
}
.transaction__wrapper {
  width: 84%;
  margin: 24px;
  padding: 24px;
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .transaction__wrapper {
    width: 100%;
    margin: 24px 0px 0px 0px;
    background: transparent;
  }
}
.transaction__link {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #00ed7b;
  transition: color 0.1s;
  cursor: pointer;
}
.transaction__link:not(.transaction__link:last-child) {
  border-bottom: 1px solid #E9F2FF;
}
body.dark .transaction__link:not(.transaction__link:last-child) {
  border-color: rgba(233, 242, 255, 0.2);
}
.transaction__link svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
body .dir-rtl .transaction__link svg {
  margin-right: 0px;
  margin-left: 12px;
}
.transaction__link:hover, .transaction__link.active {
  background: #00ed7b;
  color: #fbfbfb;
  font-weight: 600;
}
.transaction__link:hover .soon, .transaction__link.active .soon {
  color: #fbfbfb;
}
.transaction__link:hover svg path, .transaction__link.active svg path {
  stroke: #fbfbfb;
}
@media only screen and (max-width: 1023px) {
  .transaction__link {
    margin-right: 12px;
    border-radius: 6px;
    flex-shrink: 0;
  }
}
.transaction__title {
  width: 100%;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
}
body .dir-rtl .transaction__title {
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  .transaction__container {
    width: 100%;
    display: contents;
  }
}
.transaction__color {
  color: gray;
}
.transaction__tabs {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 16px;
}
.transaction__overal {
  margin-top: 6px;
}
.transaction__tabs {
  padding: 8px 16px;
  cursor: pointer;
  color: #7b7b7b;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.transaction__tabs:hover {
  color: #000;
}
.transaction__tabs.active {
  border-bottom: 2px solid #00ed7b;
  color: #00ed7b;
  font-weight: bold;
}

.items {
  padding-bottom: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3019607843);
}
.items .wallet__link {
  padding: 16px 52px;
}

.withdraw {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1023px) {
  .withdraw {
    display: block;
    padding: 48px 16px 16px;
  }
}
.withdraw__sidebar {
  width: 16%;
  border-right: 1px solid rgba(0, 0, 0, 0.1490196078);
}
body.dark .withdraw__sidebar {
  border-color: rgba(233, 242, 255, 0.2);
}
@media only screen and (max-width: 1023px) {
  .withdraw__sidebar {
    display: none;
  }
}
body .dir-rtl .withdraw__sidebar {
  border-left: 1px solid rgba(0, 0, 0, 0.1490196078);
}
.withdraw__body {
  width: 84%;
  margin: 24px;
}
.withdraw__body_top {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1023px) {
  .withdraw__body_top {
    flex-direction: column;
  }
}
.withdraw__body_left {
  width: 68%;
  margin-right: 24px;
  padding: 24px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
}
body.dark .withdraw__body_left {
  background-color: transparent;
}
@media only screen and (max-width: 1023px) {
  .withdraw__body_left {
    width: 100%;
    padding: 16px;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
body .dir-rtl .withdraw__body_left {
  margin-right: 0;
  margin-left: 24px;
}
.withdraw__body_right {
  width: 30%;
  background-color: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px;
  overflow-y: auto;
}
body.dark .withdraw__body_right {
  background-color: rgba(244, 249, 255, 0.0509803922);
}
@media only screen and (max-width: 1023px) {
  .withdraw__body_right {
    width: 100%;
    padding: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .withdraw__body {
    width: 100%;
    margin: 0;
  }
}
.withdraw__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 24px;
}
body.dark .withdraw__head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.withdraw__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.withdraw__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 24px;
}
body.dark .withdraw__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.withdraw__subtitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  margin-bottom: 24px;
}
.withdraw__subtitle .step {
  background-color: #00ed7b;
  border-radius: 50%;
  color: #fbfbfb;
  margin-right: 8px;
  padding: 6px 12px;
}
body .dir-rtl .withdraw__subtitle .step {
  margin-right: 0;
  margin-left: 8px;
}
.withdraw__subtitle .max {
  margin: 0 8px;
  color: #00ed7b;
  font-weight: 600;
  cursor: pointer;
}
.withdraw__subtitle.between {
  justify-content: space-between;
}
.withdraw__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  background-color: rgba(0, 237, 123, 0.1);
  font-size: 14px;
  font-weight: 500;
}
.withdraw__select .icon {
  width: 24px;
  height: 24px;
  fill: #00ed7b;
}
.withdraw .currency_logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 12px;
}
body .dir-rtl .withdraw .currency_logo {
  margin-left: 12px;
  margin-right: unset;
}
.withdraw .currency_symbol {
  margin-right: 6px;
}
body .dir-rtl .withdraw .currency_symbol {
  margin-right: 0;
  margin-left: 6px;
}
.withdraw .currency_name {
  color: #00ed7b;
}
.withdraw__options {
  height: 240px;
  overflow-y: auto;
  padding: 16px;
  background: #F5F5F5;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  margin-top: 12px;
}
.withdraw__options .option {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  cursor: pointer;
}
body.dark .withdraw__options {
  background: rgba(245, 245, 245, 0.1019607843);
}
.withdraw__fastSelect {
  display: flex;
  align-items: center;
  margin: 12px 0 0;
}
.withdraw__fastSelect .option {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  margin-right: 12px;
  cursor: pointer;
}
body .dir-rtl .withdraw__fastSelect .option {
  margin-right: 0;
  margin-left: 12px;
}
@media only screen and (max-width: 767px) {
  .withdraw__fastSelect {
    overflow-x: auto;
  }
  .withdraw__fastSelect::-webkit-scrollbar {
    height: 5px;
  }
  .withdraw__fastSelect::-webkit-scrollbar-thumb {
    background: rgb(94, 115, 107);
    border-radius: 10px;
  }
  .withdraw__fastSelect::-webkit-scrollbar-track {
    background: transparent;
  }
}
.withdraw__networks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 12px 0 0;
}
.withdraw__networks .network {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  background: rgba(133, 133, 133, 0.0784313725);
  border-radius: 6px;
  margin-right: 12px;
  padding: 16px;
}
@media only screen and (max-width: 1023px) {
  .withdraw__networks .network {
    margin-right: 0;
    margin-bottom: 16px;
    width: 100%;
  }
}
.withdraw__networks .right, .withdraw__networks .left {
  display: flex;
  flex-direction: column;
  width: auto;
}
@media only screen and (max-width: 1023px) {
  .withdraw__networks .right, .withdraw__networks .left {
    width: 50%;
  }
}
.withdraw__networks .right {
  text-align: right;
}
.withdraw__networks .title {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 12px;
}
.withdraw__networks .content {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}
body.dark .withdraw__networks .content {
  color: rgba(255, 255, 255, 0.6);
}
.withdraw__deposit {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 1023px) {
  .withdraw__deposit {
    display: block;
  }
}
.withdraw__qr-code {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #FFFFFF;
  border: 0.72px solid #FFFFFF;
  box-shadow: 0px 0px 8.67px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 6px;
}
.withdraw__qr-code img {
  width: 8rem;
  height: 7rem;
}
body.dark .withdraw__qr-code {
  background: rgba(255, 255, 255, 0.0509803922);
  border: 0.72px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 1023px) {
  .withdraw__qr-code {
    margin-bottom: 12px;
  }
}
.withdraw__address {
  display: flex;
  flex-direction: column;
  margin-left: 24px;
  width: 100%;
}
.withdraw__address .address {
  width: 100%;
  padding: 16px;
  background-color: #fbfbfb;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.6px;
}
body.dark .withdraw__address .address {
  background: rgba(255, 255, 255, 0.1019607843);
}
@media only screen and (max-width: 767px) {
  .withdraw__address .address {
    font-size: 11px;
    padding: 16px 8px;
  }
}
body .dir-rtl .withdraw__address .address {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.withdraw__address .copy {
  padding: 16px;
  background-color: #00ed7b;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.withdraw__address .copy svg {
  width: 16px;
  fill: #fff;
}
@media only screen and (max-width: 767px) {
  .withdraw__address .copy {
    padding: 16px 8px;
  }
}
body .dir-rtl .withdraw__address .copy {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.withdraw__address .min-fee {
  display: flex;
  flex-direction: column;
  margin: 12px 0 0;
}
.withdraw__address .min-fee .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.withdraw__address .min-fee .title {
  font-size: 12px;
  font-weight: 500;
  line-height: 15.6px;
}
@media only screen and (max-width: 1023px) {
  .withdraw__address {
    margin-left: 0;
  }
}
.withdraw__note {
  border: 1px solid #00ed7b;
  background-color: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  padding: 16px;
  width: 100%;
  margin-bottom: 24px;
}
.withdraw__note input {
  width: 100%;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
}
.withdraw__note input:focus {
  border: none;
}
.withdraw__confirm {
  width: 100%;
  height: 60px;
}
.withdraw__transaction {
  width: 100%;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .withdraw__transaction {
    margin-top: 36px;
  }
}
.withdraw__container {
  margin-top: 24px;
}
.withdraw__currency {
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .withdraw__currency {
    font-size: 12px;
  }
}
.withdraw__table {
  width: 100%;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .withdraw__table {
    overflow: scroll;
    scrollbar-width: none;
  }
}
.withdraw__table_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .withdraw__table_head {
    flex-direction: column;
    align-items: center;
  }
}
.withdraw__table_body {
  display: table;
  width: 100%;
}
.withdraw__table_row {
  display: table-row;
}
.withdraw__table_row.head {
  background-color: rgba(0, 237, 123, 0.1);
}
.withdraw__table_col {
  display: table-cell;
  padding: 6px 10px;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.withdraw__table_col:nth-child(5) {
  width: 100px;
  display: inline-flex;
}
.withdraw__table_col:last-child {
  text-align: right;
}
.withdraw__note {
  border: 1px solid #00ed7b;
  background-color: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  padding: 16px;
  width: 100%;
}
.withdraw__note .withdraw__subtitle:last-child {
  margin-bottom: 0;
}
.withdraw__note .content {
  font-weight: 600;
  margin: 0px 13px;
}
.withdraw .items {
  padding-bottom: 8px;
  animation: rotateY 300ms ease-in-out forwards;
  transform-origin: top center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3019607843);
}
.withdraw .items .wallet__link {
  padding: 16px 52px;
}

.search-bar {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #6b7280;
  font-size: 14px;
  color: #6b7280;
}
.search-bar.active {
  border: 1px solid #37ffbc;
}
.search-bar:hover {
  border: 1px solid #37ffbc;
}

.fiat {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 1023px) {
  .fiat {
    display: block;
    padding: 48px 16px 16px;
  }
}
.fiat__sidebar {
  width: 16%;
  border-right: 1px solid rgba(0, 0, 0, 0.1490196078);
}
body.dark .fiat__sidebar {
  border-color: rgba(233, 242, 255, 0.2);
}
@media only screen and (max-width: 1023px) {
  .fiat__sidebar {
    display: none;
  }
}
body .dir-rtl .fiat__sidebar {
  border-left: 1px solid rgba(0, 0, 0, 0.1490196078);
}
.fiat__body {
  width: 84%;
  margin: 24px;
}
.fiat__body_top {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1023px) {
  .fiat__body_top {
    flex-direction: column;
  }
}
.fiat__body_left {
  width: 68%;
  margin-right: 24px;
  padding: 24px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
}
body.dark .fiat__body_left {
  background-color: transparent;
}
@media only screen and (max-width: 1023px) {
  .fiat__body_left {
    width: 100%;
    padding: 16px;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
body .dir-rtl .fiat__body_left {
  margin-right: 0;
  margin-left: 24px;
}
.fiat__body_right {
  width: 30%;
  background-color: rgb(234, 236, 239);
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 24px;
  overflow-y: auto;
}
body.dark .fiat__body_right {
  background-color: rgba(244, 249, 255, 0.0509803922);
}
@media only screen and (max-width: 1023px) {
  .fiat__body_right {
    width: 100%;
    padding: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .fiat__body {
    width: 100%;
    margin: 0;
  }
}
.fiat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 24px;
}
body.dark .fiat__head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.fiat__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.fiat__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 24px;
}
body.dark .fiat__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.fiat__subtitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  line-height: 18.2px;
  margin-bottom: 24px;
}
.fiat__subtitle .step {
  background-color: #00ed7b;
  border-radius: 50%;
  color: #fbfbfb;
  margin-right: 8px;
  padding: 6px 12px;
}
body .dir-rtl .fiat__subtitle .step {
  margin-right: 0;
  margin-left: 8px;
}
.fiat__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  background-color: rgba(0, 237, 123, 0.1);
  font-size: 14px;
  font-weight: 500;
}
.fiat__select .icon {
  width: 24px;
  height: 24px;
  fill: #00ed7b;
}
.fiat__select .currency_logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 12px;
}
body .dir-rtl .fiat__select .currency_logo {
  margin-left: 12px;
  margin-right: unset;
}
.fiat__select .currency_symbol {
  margin-right: 6px;
}
body .dir-rtl .fiat__select .currency_symbol {
  margin-right: 6px;
}
.fiat__select .currency_name {
  color: #00ed7b;
}
.fiat__options {
  height: 120px;
  overflow-y: auto;
  padding: 16px;
  background: #F5F5F5;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  margin-top: 12px;
}
.fiat__options .option {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  cursor: pointer;
}
body.dark .fiat__options {
  background: rgba(245, 245, 245, 0.1019607843);
}
.fiat__wrapper {
  padding: 24px;
  box-shadow: 0px 64px 64px -48px rgba(15, 15, 15, 0.1);
  border-radius: 6px;
  background: #F1F2F4;
  margin: 0 24px;
}
body.dark .fiat__wrapper {
  background: #18191D;
}
.fiat__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.fiat__tabs .tab {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  padding-bottom: 6px;
  color: rgba(0, 0, 0, 0.4);
  margin-right: 16px;
  cursor: pointer;
}
body.dark .fiat__tabs .tab {
  color: rgba(255, 255, 255, 0.4);
}
.fiat__tabs .tab.active {
  font-weight: 500;
  color: #00ed7b;
  border-bottom: 2px solid #00ed7b;
}
.fiat__tabs .tab:hover {
  color: #00ed7b;
}
.fiat__note {
  border: 1px solid #00ed7b;
  background-color: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  padding: 16px;
  width: 100%;
}
.fiat__confirm {
  width: 100%;
  height: 60px;
}
.fiat__transaction {
  width: 100%;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .fiat__transaction {
    margin-top: 36px;
  }
}
body.dark .fiat__transaction {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.fiat__container {
  margin-top: 24px;
}
.fiat__currency {
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .fiat__currency {
    font-size: 12px;
  }
}
.fiat .items {
  padding-bottom: 8px;
  animation: rotateY 300ms ease-in-out forwards;
  transform-origin: top center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3019607843);
}
.fiat .items .wallet__link {
  padding: 16px 52px;
}
.fiat__add_cart {
  margin-left: auto;
}
body .dir-rtl .fiat__add_cart {
  margin-left: unset;
  margin-right: auto;
}

.p2p__filtergroup {
  border-color: #00ed7b;
}
.p2p__filterShow {
  display: flex;
  border: 1px solid #409587;
  border-radius: 6px;
  align-items: center;
  background: rgba(0, 237, 123, 0.1);
  height: 60px;
}
.p2p__filterShow svg path {
  fill: #121314;
}
body.dark .p2p__filterShow {
  background: rgba(233, 242, 255, 0.1019607843);
}
body.dark .p2p__filterShow svg path {
  fill: #fbfbfb;
}
body .dir-rtl .p2p__filterShow {
  margin-right: 12px;
}
.p2p__desktop-table {
  margin: auto 130px;
}
.p2p__amount {
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid #409587 !important;
  border-radius: 6px !important;
  flex-direction: row-reverse !important;
}
body.dark .p2p__amount {
  background: rgba(233, 242, 255, 0.1019607843);
}
.p2p__input-left {
  text-align: left;
}
body .dir-rtl .p2p__input-left {
  text-align: right;
}
.p2p__menucontainer:hover {
  color: #00ed7b;
}
.p2p__desktop {
  padding: 0px 90px;
}
@media only screen and (max-width: 1023px) {
  .p2p__desktop {
    padding: 0px 12px;
  }
}
.p2p__desktop-head {
  margin: 0px 130px !important;
}
@media only screen and (max-width: 1023px) {
  .p2p__desktop-head {
    margin: 0px 12px !important;
  }
}
.p2p__desktop-content {
  margin: 0px 130px !important;
  padding-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .p2p__desktop-content {
    margin: 0px 0px !important;
  }
}
.p2p__leftcontainer {
  border-radius: 6px !important;
  border: none !important;
  display: flex !important;
  margin-right: 0px !important;
  background: rgba(0, 237, 123, 0.1);
}
body.dark .p2p__leftcontainer {
  background: rgba(233, 242, 255, 0.1019607843);
}
.p2p__svg svg path {
  fill: #121314 !important;
}
body.dark .p2p__svg svg path {
  fill: #fbfbfb !important;
}
body .dir-rtl .p2p__svg {
  margin-left: 8px;
}
.p2p__myorder {
  margin: 50px 130px 50px !important;
  padding: 8px 21px 21px !important;
  background: rgba(159, 216, 202, 0.1) !important;
  border: 1px solid #777E90 !important;
  border-radius: 6px;
}
@media only screen and (max-width: 767px) {
  .p2p__myorder {
    margin: 12px !important;
  }
}
.p2p__myads-background {
  margin: 0px 130px 50px !important;
  padding: 8px 21px 21px !important;
  background: rgba(159, 216, 202, 0.1) !important;
  border: 1px solid #777E90 !important;
  border-radius: 6px;
}
@media only screen and (max-width: 1023px) {
  .p2p__myads-background {
    margin: 12px !important;
  }
}
.p2p__peer-box {
  background: rgba(0, 237, 123, 0.1) !important;
}
.p2p__payment {
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px !important;
  padding: 12px !important;
  border: 1px solid #777E90;
}
.p2p__edit-button {
  border-radius: 6px !important;
}
.p2p__edit-button.cancle {
  background: #00ed7b !important;
}
body .dir-rtl .p2p__svgs {
  margin-left: 8px;
}
.p2p__myorder-table {
  margin: 50px 130px 0px !important;
}
@media only screen and (max-width: 1023px) {
  .p2p__myorder-table {
    margin: 0px 12px !important;
  }
}
@media only screen and (max-width: 1023px) {
  .p2p__components {
    width: 100% !important;
  }
}
.p2p__inner-table {
  padding: 21px;
  background: rgba(0, 237, 123, 0.1);
  border: 1px solid #777E90;
  border-radius: 6px;
}
.p2p__avatar {
  margin: 0px 16px 0px 0px;
}
body .dir-rtl .p2p__avatar {
  margin: 0px 0px 0px 16px;
}
.p2p__text-status {
  margin: 0px 4px 0px 0px;
}
body .dir-rtl .p2p__text-status {
  margin: 0px 0px 0px 4px;
}
.p2p__myads {
  margin: 34px 130px 50px;
}
@media only screen and (max-width: 1023px) {
  .p2p__myads {
    margin: 12px;
  }
}
.p2p__myads-border {
  border-radius: 6px !important;
  border: 1px solid rgb(64, 149, 135);
}
.p2p__peer-border {
  border-radius: 6px !important;
}
.p2p__selectcoin {
  color: black;
}
body.dark .p2p__selectcoin {
  color: #fff;
}

.pagination__button {
  background-color: white !important;
  padding: 6px 12px !important;
  display: flex;
  border: 1px solid #B1B5C3 !important;
  border-radius: 8px !important;
  align-items: center !important;
}
.pagination__button_p2p {
  background-color: white !important;
  padding: 6px 12px !important;
  display: flex;
  border: 1px solid #B1B5C3 !important;
  border-radius: 8px !important;
  align-items: center !important;
}
.pagination__button_p2p.active {
  background-color: #409587 !important;
}

.p2p_order_show {
  background: #F4F9FF;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 16px;
  margin: 24px auto;
}
body.dark .p2p_order_show {
  background: rgba(34, 125, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .p2p_order_show {
    background: none;
    border: unset;
  }
}
.p2p_order_show__center {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 1179px) {
  .p2p_order_show__center {
    padding: 0 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .p2p_order_show__center {
    display: block;
    padding: 0 !important;
  }
}
.p2p_order_show__left {
  width: 58%;
  margin-right: 25px;
}
@media only screen and (max-width: 767px) {
  .p2p_order_show__left {
    width: 100%;
    margin-right: 0;
  }
}
.p2p_order_show__right {
  width: 40%;
  background: #fbfbfb;
  border: 1px solid #00ed7b;
  border-radius: 6px;
  padding: 16px;
}
body.dark .p2p_order_show__right {
  background: rgb(5, 25, 54);
}
@media only screen and (max-width: 767px) {
  .p2p_order_show__right {
    width: 100%;
  }
}
.p2p_order_show__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.p2p_order_show__head .status {
  text-align: right;
}
.p2p_order_show__head .status-success {
  color: #37ffbc;
  text-align: right;
}
.p2p_order_show__head .status-cancel {
  color: #FF6838;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .p2p_order_show__head {
    margin-bottom: 12px;
  }
}
.p2p_order_show__title {
  margin-right: auto;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
}
body .dir-rtl .p2p_order_show__title {
  margin-left: auto;
  margin-right: 0;
  font-family: "Vazirmatn", sans-serif;
}
.p2p_order_show__buyer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 47%;
  height: 166px;
  padding: 16px;
  background: #fbfbfb;
  border-radius: 6px;
  border: 1px solid #00ed7b;
}
.p2p_order_show__buyer:hover {
  background: transparent;
}
body.dark .p2p_order_show__buyer {
  background: rgba(204, 153, 1, 0.0392156863);
}
body.dark .p2p_order_show__buyer:hover {
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .p2p_order_show__buyer {
    width: 49%;
  }
}
@media only screen and (max-width: 767px) {
  .p2p_order_show__buyer {
    display: block;
    padding: 8px;
    height: auto;
  }
}
.p2p_order_show__seller {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 47%;
  height: 166px;
  padding: 16px;
  background: #fbfbfb;
  border-radius: 6px;
  border: 1px solid #00ed7b;
}
.p2p_order_show__seller:hover {
  background: transparent;
}
body.dark .p2p_order_show__seller {
  background: rgba(204, 153, 1, 0.0392156863);
}
body.dark .p2p_order_show__seller:hover {
  background: transparent;
}
@media only screen and (max-width: 1023px) {
  .p2p_order_show__seller {
    width: 49%;
  }
}
@media only screen and (max-width: 767px) {
  .p2p_order_show__seller {
    display: block;
    padding: 8px;
    height: auto;
  }
}
.p2p_order_show__icon {
  width: 55px;
  height: 50px;
  margin-right: 4px;
}
.p2p_order_show__icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.p2p_order_show__icon .avatar-initials, .p2p_order_show__icon .avatar-image {
  background: #155dc1;
  border-radius: 50%;
  color: #FCFCFD;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p2p_order_show__icon {
    width: 38px;
    height: 38px;
    margin-right: 0;
  }
}
.p2p_order_show__info {
  width: 100%;
}
.p2p_order_show__info .buyer-title {
  color: #37ffbc;
}
.p2p_order_show__info .seller-title {
  color: #FF6838;
}
.p2p_order_show__info .table__col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p2p_order_show__info .table__col:first-child {
  padding-left: 6px;
}
.p2p_order_show__info .table__col:last-child {
  padding-right: 6px;
}
.p2p_order_show__info .table-list__value {
  padding: 0;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p2p_order_show__info {
    margin-top: 6px;
  }
  .p2p_order_show__info .table__col {
    display: block;
  }
  .p2p_order_show__info .table__col:first-child {
    padding-left: 0;
  }
  .p2p_order_show__info .table__col:last-child {
    padding-right: 0;
    text-align: left;
  }
}
.p2p_order_show__chatDiv {
  margin-top: 20px;
  background: #fbfbfb;
  padding: 16px;
  border: 1px solid #00ed7b;
  border-radius: 6px;
}
body.dark .p2p_order_show__chatDiv {
  background: rgb(5, 25, 54);
}
.p2p_order_show__details {
  margin-top: 10px;
}
.p2p_order_show__details_title {
  padding: 10px;
  background: rgba(0, 237, 123, 0.1);
  border-radius: 6px;
  margin-bottom: 8px;
}
.p2p_order_show__details .detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 400;
}
.p2p_order_show__transaction {
  margin-top: 16px;
}
.p2p_order_show__transaction .currencies__result {
  right: 110px;
}
.p2p_order_show__nav_title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
}
.p2p_order_show__chat {
  padding: 10px;
  height: 444px;
  overflow-y: scroll;
}
.p2p_order_show__chat::-webkit-scrollbar {
  width: 5px;
}
.p2p_order_show__chat::-webkit-scrollbar-thumb {
  background: rgb(94, 102, 115);
  border-radius: 10px;
}
.p2p_order_show__chat::-webkit-scrollbar-track {
  background: transparent;
}
.p2p_order_show__chat .my-message {
  display: inline-block;
  background: #00ed7b;
  padding: 10px 15px;
  border-radius: 10px;
  border-bottom-right-radius: 0;
}
.p2p_order_show__chat .other-message {
  display: inline-block;
  background: #777E90;
  padding: 10px 15px;
  border-radius: 10px;
  border-bottom-left-radius: 0;
}
.p2p_order_show__chat .time {
  display: block;
  font-size: 11px;
  color: #777E90;
  margin-bottom: 7px;
}
.p2p_order_show__commands .button_cancel {
  background: #d11d10;
}
.p2p_order_show__link {
  margin-left: 8px;
  color: #23262F;
  transition: color 0.2s;
}
.p2p_order_show__link .icon {
  width: 20px;
  height: 20px;
  fill: #23262F;
  transition: fill 0.2s;
}
body.dark .p2p_order_show__link {
  color: #E6E8EC;
}
body.dark .p2p_order_show__link .icon {
  fill: #E6E8EC;
}
.p2p_order_show__link:hover {
  color: #37ffbc;
}
.p2p_order_show__link:hover .icon {
  fill: #37ffbc;
}

.p2p_seller_dash {
  padding: 16px;
  background: rgb(244, 249, 255);
  border: 1px solid #00ed7b;
  margin: 1rem auto;
  border-radius: 6px;
}
body.dark .p2p_seller_dash {
  background: rgba(34, 125, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .p2p_seller_dash {
    margin: 0px;
    padding: 0px;
    background-color: unset;
    border: unset;
  }
}
.p2p_seller_dash_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .p2p_seller_dash_header {
    color: #fff;
    padding: 16px 10px;
    background: rgb(26, 94, 191);
  }
}
@media only screen and (max-width: 767px) {
  .p2p_seller_dash_header_right {
    display: none;
  }
}
.p2p_seller_dash_header_create {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p2p_seller_dash_header_create {
    display: block;
  }
}
.p2p_seller_dash_user_profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  margin: 20px 0px;
}
@media only screen and (max-width: 767px) {
  .p2p_seller_dash_user_profile {
    margin: 1rem 1rem;
  }
}
.p2p_seller_dash_user_profile_pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p2p_seller_dash_user_profile_email {
  display: flex;
  align-items: center;
}
.p2p_seller_dash_stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 3;
}
@media only screen and (max-width: 767px) {
  .p2p_seller_dash_stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 1rem;
  }
}
.p2p_seller_dash_stats_box {
  background: rgb(255, 255, 255);
  border: 1px solid rgb(186, 215, 255);
  padding: 0.8rem;
  min-width: 140px;
  text-align: left;
  font-weight: 400;
  border-radius: 4px;
}
body.dark .p2p_seller_dash_stats_box {
  background: rgb(0, 0, 0);
  border: 1px solid rgb(186, 215, 255);
  border-radius: 2px;
}
.p2p_seller_dash_section {
  display: flex;
  align-items: center;
  background: rgb(233, 242, 255);
  margin: 20px 0;
  padding: 12px;
  border-radius: 100px;
  gap: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .p2p_seller_dash_section {
    width: -webkit-fill-available;
    white-space: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0px 7px;
  }
}
body.dark .p2p_seller_dash_section {
  background: rgb(5, 25, 54);
}
.p2p_seller_dash_section_tab-btn {
  border-radius: 94px;
  background: rgb(255, 255, 255);
  padding: 4px 16px;
  cursor: pointer;
  position: relative;
  color: rgb(34, 125, 255);
}
body.dark .p2p_seller_dash_section_tab-btn {
  background: rgb(0, 0, 0);
}
.p2p_seller_dash_offers {
  background-color: none;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .p2p_seller_dash_offers {
    margin: 0px 7px;
  }
}
.p2p_seller_dash_offers_header {
  display: flex;
  justify-content: space-between;
  padding: 0 0 16px;
}
@media only screen and (max-width: 767px) {
  .p2p_seller_dash_offers_header {
    display: none;
  }
}
.p2p_seller_dash_offers_table {
  width: 100%;
  border-collapse: collapse;
}
.p2p_seller_dash_offers_table_head {
  background: rgb(186, 215, 255);
}
.p2p_seller_dash_offers_table_th {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e9ecef;
}
.p2p_seller_dash_offers_table_td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e9ecef;
}
.p2p_seller_dash_btn {
  border: none;
  margin-right: 0.3rem;
}
.p2p_seller_dash_avatar-initials {
  background: #155dc1;
  border-radius: 50%;
  color: #FCFCFD;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p2p_seller_dash_active {
  background: rgb(34, 125, 255);
  color: rgb(255, 255, 255);
}
body.dark .p2p_seller_dash_active {
  background: rgb(34, 125, 255);
  color: rgb(0, 0, 0);
}
.p2p_seller_dash_full_table {
  background: rgb(244, 249, 255);
  border: 1px solid rgb(34, 125, 255);
  padding: 21px;
}
body.dark .p2p_seller_dash_full_table {
  background: rgba(34, 125, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .p2p_seller_dash_full_table {
    background: unset;
    border: unset;
    padding: 0 !important;
  }
}

body.dark .p2p_modal {
  background: rgb(0, 0, 0);
}
.p2p_modal_input_select {
  background: rgba(34, 125, 255, 0.1);
  border: none;
  border-radius: 4px;
  width: 100%;
}
body.dark .p2p_modal_input_select {
  background: rgba(34, 125, 255, 0.3);
  color: #fff;
}
.p2p_modal_input_border {
  border: solid 1px #000;
  border-radius: 7px;
  width: 100%;
  margin: 0;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.9rem;
  outline: none;
  background-color: transparent;
  transition: all 0.5sease-out;
  color: var(--first-text-color);
}
body.dark .p2p_modal_input_border {
  border: solid 1px #fff;
}
.p2p_modal_input_field {
  margin-bottom: 2rem;
}
.p2p_modal_input_lable {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--second-text-color);
}
body.dark .p2p_modal_input_lable {
  color: #fff;
}

.p2p_table_thead {
  color: rgb(34, 125, 255);
}
.p2p_table_header {
  background: rgb(186, 215, 255);
}
body.dark .p2p_table_header {
  background: rgb(186, 215, 255);
}
.p2p_table_value {
  color: #000;
}
body.dark .p2p_table_value {
  color: #fff;
}
.p2p_table_col {
  padding: 8px;
  text-align: left;
}
.p2p_table_col:last-child {
  padding-right: 8px;
}
.p2p_table_button {
  color: rgb(34, 125, 255);
}
.p2p_table_text {
  color: rgb(34, 125, 255);
}
.p2p_table_content .p2p_table_box:last-child .p2p_table_value {
  justify-content: flex-end;
  padding-right: 8px;
}
@media only screen and (max-width: 767px) {
  .p2p_table_content {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .p2p_table_content {
    display: flex !important;
    justify-content: space-between !important;
  }
}
.p2p_table_box .table-list__value.act {
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .p2p_table_box {
    display: flex;
  }
}

#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 {
  font-weight: bold;
  background: var(--purple-second-color);
}
#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 {
  max-width: 250px;
  margin-bottom: 20px;
}
#p2p-post-create .p2p-asset-arrow {
  margin-top: 30px;
  margin-right: 13px;
  margin-left: 13px;
}
#p2p-post-create .components-filter__item {
  width: 50%;
  margin-right: 0;
}
#p2p-post-create .components-filter__item .filter-select {
  padding: 0 1.5rem;
  height: 55px;
}
#p2p-post-create .components-filter__item .filter-select:focus {
  border: 1px solid var(--border-line-color);
}
@media screen and (max-width: 770px) {
  #p2p-post-create .components-filter__item {
    width: 100%;
  }
}
#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 {
  margin-top: 10px;
  font-size: 24px;
}

.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 {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  bottom: 20px;
  height: 0px;
  align-self: flex-end;
  flex: 1 1 0%;
  position: relative;
  background: var(--table-head-color);
}
.p2p-create-steps .p2p-steps-line:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 4px;
  background: radial-gradient(#409587, transparent);
  background-color: inherit;
}
.p2p-create-steps .p2p-steps-line-np {
  bottom: 12px;
}
.p2p-create-steps .p2p-steps-step {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  position: static;
  color: rgb(112, 122, 138);
  padding: 8px;
  flex-grow: 0;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.p2p-create-steps .p2p-steps-step-np {
  padding: 0;
}
.p2p-create-steps .p2p-steps-step-inner {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p2p-create-steps .p2p-steps-step-marker {
  position: relative;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 100%;
  margin-top: 20px;
  background: rgba(159, 216, 202, 0.1019607843);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.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;
  margin: 0px;
  min-width: 0px;
  font-size: 12px;
}
.p2p-create-steps .p2p-steps-step-marker .p2p-create-step-marker-label:after {
  content: "";
  position: absolute;
  height: 4px;
  top: 12px;
  width: 9999px;
  left: 100%;
  margin-left: 8px;
  background: var(--table-head-color);
}
.p2p-create-steps .p2p-steps-step-marker .p2p-create-step-marker-label-extra {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  font-size: 12px;
}
.p2p-create-steps .p2p-steps-step-marker .p2p-create-step-marker-label-extra:before {
  content: "";
  position: absolute;
  height: 4px;
  top: 12px;
  width: 9999px;
  right: 100%;
  margin-right: 8px;
  background: var(--table-head-color);
}

.p2p__menu {
  margin: 3rem !important;
}

.p2p__title {
  margin: 2rem;
}

.p2p__filters {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.p2p__filters .p2p__filter-item {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 150px;
}
.p2p__filters .p2p__filter-item.p2p__filter-item--amount-fiat {
  flex-grow: 2;
  min-width: 250px;
}
.p2p__filters .p2p__filter-item .filter-select {
  height: 40px;
  border: 1px solid var(--border-line-color);
  border-radius: 5px;
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}
.p2p__filters .p2p__filter-item .component-filter-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-line-color);
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--background-color);
  transition: background-color 0.3s ease;
}
.p2p__filters .p2p__filter-item .component-filter-content:hover {
  background-color: var(--hover-color);
}
.p2p__filters .p2p__filter-item .component-filter-content svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--icon-color);
}
.p2p__filters .p2p__filter-item .svg-icon-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.p2p__filters .p2p__filter-item .svg-icon-container .svg-icon-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-line-color);
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
  background-color: var(--background-color);
  transition: background-color 0.3s ease;
}
.p2p__filters .p2p__filter-item .svg-icon-container .svg-icon-label:hover {
  background-color: var(--hover-color);
}
.p2p__filters .p2p__filter-item .svg-icon-container .svg-icon-label svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--icon-color);
}
.p2p__filters .p2p__filter-item .svg-icon-container .svg-icon-text {
  flex-grow: 1;
}
.p2p__filters .p2p__filter-item .svg-icon-container .svg-icon-text .filter-select {
  width: 100%;
}

.main-section {
  padding-top: 101px;
  overflow-x: hidden;
}
.main-section.trade-padding {
  padding-top: 56px;
}

@media (max-width: 1023px) {
  .main-section {
    padding-top: 50px;
  }
}
.services-box {
  background: white;
  box-shadow: -4px 4px 10px 0 rgba(0, 0, 0, 0.1333333333);
}

.dark .services-box {
  background: #1b1b1b;
}

.dark .services-box div {
  border-color: rgba(207, 207, 187, 0.1411764706) !important;
}

@media screen and (max-width: 1024px) {
  .user-par {
    font-size: 16px;
  } /* استایل‌هایی که فقط تا عرض 1024px فعال می‌شن */
}
@media screen and (min-width: 1024px) {
  .user-par {
    font-size: 40px;
  } /* استایل‌هایی که فقط تا عرض 1024px فعال می‌شن */
}
@media screen and (max-width: 1024px) {
  .about-img {
    max-width: unset;
  } /* استایل‌هایی که فقط تا عرض 1024px فعال می‌شن */
}
@media screen and (min-width: 1024px) {
  .about-img {
    max-width: 745px;
  } /* استایل‌هایی که فقط تا عرض 1024px فعال می‌شن */
}
html {
  scroll-behavior: smooth;
}

html[lang=fa] .banner {
  transform: translateX(25%) !important;
}

.dir-rtl .right-image {
  left: 0;
  right: unset !important;
}

.active-tab {
  background: #00ED7B !important;
  color: white !important;
  border: 0;
}

/** Font global start */
body {
  font-weight: 400;
  color: var(--blue-dark-color);
  background-color: var(--sixth-color);
  font-family: "Montserrat", sans-serif;
  min-width: unset !important;
}
body::-webkit-scrollbar {
  width: 5px !important;
}
body::-webkit-scrollbar-thumb {
  background: rgb(94, 115, 106) !important;
  border-radius: 10px !important;
}
body::-webkit-scrollbar-track {
  background: transparent !important;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(255, 255, 255);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(1, 188, 141, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(1, 188, 141, 0.642);
}

/** Font global start */
* {
  -webkit-tap-highlight-color: transparent;
}

.main-logo {
  max-width: 160px;
}

.mobbar {
  display: none;
}

.forceBox {
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgb(234, 236, 239) !important;
}

.mobile-head-title,
.close-item {
  display: none;
}

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

.mob-hide {
  display: block !important;
}

.swap-inner {
  width: 450px;
  margin: 0 auto;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/** Color global start */
.color-sell {
  color: var(--red-color);
}

.color-buy {
  color: var(--green-color);
}

.color-default {
  color: var(--red-second-color);
}

/** Color global end */
#galleries li {
  width: 24%;
  display: inline-block;
}

#galleries2 li {
  width: 24%;
  display: inline-block;
  opacity: 80%;
  transition: all 0.5s ease-out;
}
#galleries2 li:hover {
  opacity: 100%;
}

@media (max-width: 960px) {
  .mode {
    margin-right: 0px;
  }
  #galleries li {
    width: 49%;
  }
  #galleries2 li {
    width: 49%;
  }
  .noneShow {
    display: none !important;
  }
  .main-logo {
    max-width: 170px;
    margin-left: 10%;
  }
  .fullWidth {
    width: 100% !important;
  }
}
@media (min-width: 960px) {
  .noneShowWin {
    display: none !important;
  }
}
#galleries li p {
  margin: 10px 0 20px 0;
}

.module-orderbook__sell {
  direction: ltr !important;
}

.module-orderbook__buy {
  direction: ltr !important;
}

.inline-block.relative.w-full {
  direction: ltr !important;
}

.widget.widget-markets {
  direction: ltr !important;
}

.admin-layout {
  direction: ltr !important;
}

@media (max-width: 960px) {
  .midd {
    margin: 0 auto;
  }
  .noneShowPhone {
    display: none !important;
  }
  .main-logo {
    max-width: 130px;
  }
  .mode {
    margin-left: 0px;
  }
}
.tooltip1 {
  position: relative;
  border-bottom: 1px dotted black;
}

.tooltip1 .tooltiptext {
  visibility: hidden;
  width: 360px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.tooltip1:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.header-dropdown__icon-color {
  stroke: var(--black-color) !important;
}

body.dark .header-dropdown__icon-color {
  stroke: var(--white-color) !important;
}

.header-dropdown__list {
  background: linear-gradient(41deg, #75bdf7, #badff2);
}

body.dark .header-dropdown__list {
  background: linear-gradient(41deg, #1d4671, #152130);
}

.totalTabel {
  background: #1d2234;
  padding: 6px 13px;
  text-align: center;
  font-size: 18px;
  border-radius: 15px 15px 0px 0px;
}

.availableTable {
  background: #1d2234;
  padding: 6px 13px;
  text-align: center;
  font-size: 18px;
  border-radius: 15px 15px 0px 0px;
}

.bitcoin {
  padding: 6px 13px;
  text-align: right;
  background: #1d2234;
}

.bitcoinValue {
  padding: 6px 13px;
  text-align: left;
  font-size: 18px;
  background: #1d2234;
}

.tether {
  padding: 6px 13px 13px;
  text-align: right;
  background: #1d2234;
  border-radius: 0px 0px 15px 0px;
}

.tetherValue {
  padding: 6px 13px 13px;
  text-align: left;
  background: #1d2234;
  border-radius: 0px 0px 0px 15px;
}

.searchTab {
  border-radius: 14px;
  background: #171b2a;
  padding: 0.5rem 1rem;
  margin: 0 2.75rem 2rem;
}

@media (max-width: 960px) {
  .searchTab {
    margin: 0.75rem 0;
    padding: 0.5rem;
  }
}
.mt0 {
  margin-top: 0px !important;
}

.tg {
  max-width: 313px;
  margin: 0 2rem;
}

@media (max-width: 960px) {
  .tg {
    max-width: 272px;
    margin: 0 2rem 1rem;
  }
}
@media (max-width: 960px) {
  .mbRes {
    margin: 0 2rem !important;
  }
}
@media (max-width: 960px) {
  .font-9 {
    font-size: 9px;
  }
}
.widget-stats__price .tradingview-widget-container {
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.widget-stats__price .tradingview-widget-container iframe {
  height: 4.85rem !important;
}

.widget-stats__row .widget-stats__list .widget-stats__list-item {
  border-radius: 8px;
  background: #1d2234;
  padding: 12px 21px;
  text-align: center;
}

.marketsSearch {
  width: 20rem;
  background: #171b2a;
  border-radius: 14px;
  padding: 0px 5px;
}

.marginBottom {
  margin-bottom: 15%;
}

.fontSize {
  font-size: 9px;
}

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

@media (max-width: 768px) {
  .vocher__button {
    margin-top: 13px;
  }
}
body.dark .filter-select__option {
  background-color: #163c49;
  color: #fcfcfd;
}

.modeSet {
  padding-top: 7px;
}

.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

.marquee:hover .marquee__content {
  animation-play-state: paused;
}

.marquee:hover .marquee__group {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}
.enable-animation .marquee__content {
  animation: scroll 50s linear infinite;
}

.enable-animation .marquee__content:hover {
  animation-play-state: paused;
}

.marquee--reverse .marquee__content {
  animation-direction: normal;
}

.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

.marquee--fit-content {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.marquee--pos-absolute .marquee__content:last-child {
  position: absolute;
  top: 0;
  left: 0;
}

.enable-animation .marquee--pos-absolute .marquee__content:last-child {
  animation-name: scroll-abs;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100% + var(--gap)));
  }
}
@keyframes scroll-abs {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100% + var(--gap)));
  }
}
.vue-slider {
  margin: 20px 0;
  padding: 6px;
}
.vue-slider-rail {
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}
.vue-slider-process {
  background-color: #019acc;
  border-radius: 4px;
}
.vue-slider-mark {
  width: 25%;
  height: 10px;
  background-color: var(--border-line-color);
  border-radius: 10px;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}
.vue-slider-mark-active {
  background-color: #019acc;
}
.vue-slider-mark-label {
  width: 44px;
  font-size: 11px;
  text-align: center;
}
.vue-slider-dot-handle {
  position: relative;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background-color: var(--progress-color);
  border: 4px solid #019acc;
  border-radius: 50%;
  cursor: pointer;
}
.vue-slider-dot-handle-disabled {
  cursor: not-allowed;
  background-color: var(--progress-color);
}
.vue-slider-dot-tooltip-text {
  display: none;
}
.vue-slider-dot-tooltip-top {
  top: 0;
}
.vue.dir-rtl .vue-slider-dot-handle {
  right: 0;
}
.vue.dir-rtl .vue-slider-mark-label {
  width: 44px;
}
.vue body.dark .site-layout .vue-slider-mark {
  background-color: var(--blue-dark-second-color);
  border: 4px solid var(--blue-dark-color);
}
.vue body.dark .site-layout .vue-slider-mark-active {
  background-color: var(--progress-color);
}
.vue body.dark .site-layout .vue-slider-dot-handle {
  top: -1px;
  right: -2px;
  width: 15px;
  height: 15px;
  background-color: var(--progress-color);
  border: 1px solid var(--yellow-color);
}
@media (max-width: 768px) {
  .vue-slider {
    margin: 10px 0;
  }
}

.content_dep h3 {
  padding-bottom: 0;
}
.content_dep h3::after {
  position: unset;
}

@media (max-width: 768px) {
  .fix-marg {
    margin-bottom: 70px;
  }
}
.font-10 {
  font-size: 10px;
}

.modal_text {
  color: aliceblue;
}

.nav_swap {
  width: 100%;
  justify-content: space-around;
}

.nav_but {
  cursor: pointer;
  font-weight: bolder;
  border-radius: unset;
}

.nav_but:hover {
  background: transparent;
}

.nav_but_active {
  border-bottom: 3px solid #00ed7b;
  color: #000;
}

body.dark .nav_but_active {
  color: #fff;
}

.swap_fix_test {
  width: 555px;
  padding: 30px;
}

@media (max-width: 1024px) {
  .swap_fix_test {
    width: 420px;
  }
}
@media (max-width: 768px) {
  .swap_fix_test {
    width: auto;
    padding: 0;
    background: none !important;
  }
}
.hidden-input {
  /* Add your styles for the hidden input */
  display: none;
  /* Hide the hidden input */
}

.floating-container {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  margin: 35px 25px;
  z-index: 9;
}

body .dir-rtl .floating-container {
  right: auto;
  left: 0;
}

@media (max-width: 960px) {
  .floating-container {
    width: 55px;
    margin: 35px 15px;
  }
}
.floating-container:hover {
  height: 250px;
}

.floating-container:hover .floating-button {
  transform: translatey(5px);
  transition: all 0.3s;
}

.floating-container:hover .element-container .float-element:nth-child(1) {
  animation: come-in 0.4s forwards 0.2s;
}

.floating-container:hover .element-container .float-element:nth-child(2) {
  animation: come-in 0.4s forwards 0.4s;
}

.floating-container:hover .element-container .float-element:nth-child(3) {
  animation: come-in 0.4s forwards 0.6s;
}

.floating-container .floating-button {
  position: absolute;
  width: 55px;
  height: 55px;
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  line-height: 55px;
  text-align: center;
  font-size: 28px;
  z-index: 9;
  background: #4caf50;
  box-shadow: 0 3px 20px 6px rgba(76, 175, 80, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.floating-container .floating-button .fix {
  position: absolute;
  top: 15px;
  left: 15px;
}

@media (max-width: 960px) {
  .floating-container .floating-button {
    margin-right: 0;
    bottom: 50px;
  }
  body .dir-rtl .floating-container .floating-button {
    margin-left: 0;
  }
}
@media (max-width: 960px) {
  .floating-container .element-container {
    width: 45px;
    margin-right: auto;
    margin-left: auto;
  }
  body .dir-rtl .floating-container .element-container {
    margin-left: auto;
    margin-right: auto;
  }
}
.floating-container .float-element {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin: 15px auto;
  color: white;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  z-index: 0;
  opacity: 0;
  transform: translateY(100px);
}

body .dir-rtl .floating-container .float-element {
  line-height: 45px;
}

@media (max-width: 960px) {
  .floating-container .float-element {
    margin: 15px 0;
  }
}
.floating-container .float-element .material-icons {
  display: block;
  width: 100%;
  height: 100%;
}
.floating-container .float-element .material-icons svg {
  position: relative;
  top: 11px;
  left: 10px;
}

body .dir-rtl .floating-container .float-element .material-icons {
  display: block;
  width: 100%;
  height: 100%;
}
body .dir-rtl .floating-container .float-element .material-icons svg {
  position: relative;
  top: 11px;
  right: 10px;
}

.floating-container .float-element:nth-child(1) {
  background: rgb(1, 188, 141);
  box-shadow: 0 20px 20px -10px rgba(1, 188, 141, 0.5);
}

.floating-container .float-element:nth-child(2) {
  background: #4caf50;
  box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}

.floating-container .float-element:nth-child(3) {
  background: #ff9800;
  box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
}

#stars {
  display: block;
  position: relative;
  width: 100%;
  height: 16rem;
  height: 100vh;
  z-index: 1;
}

:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}
.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}
body .dir-rtl {
  --scroll-end: calc(100% - var(--gap));
}
body .dir-rtl .marquee {
  -webkit-mask-image: linear-gradient(var(--mask-direction, to left), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 85%, hsla(0, 0%, 0%, 0));
          mask-image: linear-gradient(var(--mask-direction, to left), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 85%, hsla(0, 0%, 0%, 0));
}
body .dir-rtl .marquee__group {
  animation: scroll-x var(--duration) linear infinite; /* Remove 'reverse' */
}
body .dir-rtl .marquee--reverse .marquee__group {
  animation-direction: reverse; /* Change back to 'reverse' */
  animation-delay: -3s; /* Add a delay to the reverse marquee */
}

#body .popper-vue__reference {
  display: flex;
  align-items: center;
}

.modal .stake_modal {
  width: 900px;
}

#body .popper-vue {
  display: flex;
}

#body .popper-vue span {
  position: relative !important;
  transform: none !important;
}

.gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 76px;
  pointer-events: none;
  background: radial-gradient(at center center, #cc9a48 0, rgba(245, 223, 127, 0.1098039216) 100%);
  box-shadow: 0px 0px 20px #cc9a48;
  border-radius: 50%;
}

.stak-svg-fix {
  margin: 0;
}

body .dir-rtl .stak-svg-fix {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .icenter_swap {
    padding: 0 10px !important;
  }
}
.rate_fix {
  text-align: right;
}

body .dir-rtl .rate_fix {
  text-align: left;
}

.color {
  color: #cc9901;
}

.overflow_hidden {
  position: relative;
  overflow: hidden;
}

.vip_card {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 35px;
  border-radius: 16px;
  background: rgba(230, 232, 236, 0.5294117647);
  transition: all 0.2s;
  box-shadow: inset 0 0 0 2px #fcfcfd;
  margin: 0.5rem;
}

body.dark .vip_card {
  background: rgba(53, 57, 69, 0.4);
  box-shadow: inset 0 0 0 2px #23262f;
}
body.dark .vip_card:hover {
  background: transparent;
}

.vip_card:hover {
  background: transparent;
}

@media (max-width: 768px) {
  .vip_card {
    width: 100%;
    margin: 12px 0;
  }
}
.vip_info {
  width: 100%;
  padding: 35px;
  border-radius: 16px;
  background: rgba(230, 232, 236, 0.5294117647);
  transition: all 0.2s;
  box-shadow: inset 0 0 0 2px #fcfcfd;
}

body.dark .vip_info {
  background: rgba(53, 57, 69, 0.4);
  box-shadow: inset 0 0 0 2px #23262f;
}
body.dark .vip_info:hover {
  background: transparent;
}

.vip_info:hover {
  background: transparent;
}

@media (max-width: 768px) {
  .vip_info {
    width: 100%;
    padding: 20px;
  }
}
.vip_info_content {
  height: 220px;
  width: 100%;
  margin: 15px 8px;
  overflow-y: auto;
}
.vip_info_content::-webkit-scrollbar {
  width: 5px;
}
.vip_info_content::-webkit-scrollbar-thumb {
  background: rgb(94, 115, 111);
  border-radius: 10px;
}
.vip_info_content::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 768px) {
  .text-2xl_fix {
    font-size: 1rem;
  }
}
.vip_details {
  width: 50%;
}

@media (max-width: 768px) {
  .vip_details {
    width: 100%;
  }
}
.vip-fix {
  margin-left: 10px !important;
}

body .dir-rtl .vip-fix {
  margin-left: 0px !important;
  margin-right: 10px !important;
}

.vip_lastCol_fix {
  text-align: left !important;
}

body .dir-rtl .vip_lastCol_fix {
  text-align: right !important;
}

.message-container {
  max-height: 400px; /* Adjust the height as needed */
  overflow-y: auto;
}

/* Style for each individual message */
.message-blue {
  position: relative;
  margin-left: 20px;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #a1fbf7;
  width: 60%;
  min-height: 50px;
  text-align: left;
  border: 1px solid #97e3d2;
  border-radius: 10px;
}

.message-orange {
  position: relative;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #f8e896;
  width: 60%;
  min-height: 50px;
  text-align: left;
  border: 1px solid #dfd087;
  border-radius: 10px;
  margin-left: 36%;
}

.message-content {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
}
.message-content + rtl {
  text-align: right;
}

.message-timestamp-right {
  position: absolute;
  font-size: 0.85em;
  font-weight: 300;
  bottom: 5px;
  right: 5px;
}

.message-timestamp-left {
  position: absolute;
  font-size: 0.85em;
  font-weight: 300;
  bottom: 5px;
  left: 5px;
}

.message-blue:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 15px solid #a8ddfd;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  top: 0;
  left: -15px;
}

.message-blue:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 17px solid #97e3cf;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  top: -1px;
  left: -17px;
}

.message-orange:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 15px solid #f8e896;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  bottom: 0;
  right: -15px;
}

.message-orange:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 17px solid #dfd087;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  bottom: -1px;
  right: -17px;
}

.TAPNOW {
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
}

.TAPNOW::before {
  content: "";
  border-radius: 12px;
  min-width: 142px;
  min-height: 142px;
  border: 6px solid rgba(255, 204, 0, 0.3019607843);
  box-shadow: 0 0 60px rgba(255, 204, 0, 0.6509803922);
  position: relative;
  display: inline-flex;
  top: 52%;
  left: 113.2%;
  transform: translate(-85%, -54%);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}

.TAPNOW:hover,
.TAPNOW:focus {
  transform: translateY(-6px);
}

.TAPNOW:hover::before,
.TAPNOW:focus::before {
  opacity: 1;
}

.TAPNOW::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 6px solid rgba(255, 204, 0, 0.3019607843);
  position: absolute;
  z-index: -1;
  top: 54%;
  left: 87%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.TAPNOW:hover::after,
.TAPNOW:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .TAPNOW::after {
    z-index: 1;
    left: 85%;
    top: 50%;
  }
}
@media (max-width: 767px) {
  .TAPNOW::after {
    z-index: 1;
    left: 50%;
  }
}
div.mobile-body .markets-tabs {
  background: transparent;
  display: block;
  margin-bottom: 1rem;
  margin-top: 0;
  padding: 0;
  border-bottom: none;
}

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 {
  min-width: 80px;
  display: flex;
  text-align: center;
  background-color: #eceded;
  color: var(--dark-body-color);
  border-radius: 9999px;
  margin-right: 1rem;
  max-width: auto;
  padding: 0.5rem;
  position: relative;
}
div.mobile-body .markets-tabs .tabs-nav__item h4 {
  margin: 0 auto;
}

body.dark div.mobile-body .markets-tabs .tabs-nav__item {
  background-color: #1d2234;
  color: var(--dark-text-color);
}
body.dark .staking-inner__calculator button {
  border: 1px solid var(--blue-dark-color);
  background: var(--blue-dark-color);
  color: var(--white-color);
}
.staking-inner__calculator button {
  border: 1px solid #eceded;
  background: #eceded;
  color: var(--dark-body-color);
}
.staking-inner__calculator button:hover {
  color: var(--white-color);
}

body .bg-active {
  background: var(--purple-color) !important;
  color: var(--white-color);
}

.mobile-body .item-language__active div {
  color: var(--yellow-color);
}

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 {
  position: relative;
  top: 9px;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 0px;
}

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:first-child {
  padding: 2px 0;
}

div.mobile-body .markets-tabs-list .table-list td {
  background-color: transparent;
  display: table-cell;
  margin: 0;
  padding: 0;
  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 {
  margin-left: 0;
}

div.mobile-body .markets-tabs-list .table-list__image {
  height: 25px;
  margin-right: 10px;
  width: 25px;
}

div.mobile-body .markets-tabs-list .table-list__image {
  align-items: center;
  display: flex;
  height: 25px;
  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 {
  margin: 2rem 0 3rem;
  font-size: 22px;
}

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(3) .table-list__value {
  display: flex;
  justify-content: flex-end;
}

div.mobile-body .markets-tabs-list .table-list td:nth-child(2) .table-list__value {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 1000px) {
  div.mobile-body .markets-tabs-list .mob-table-markets .mob-hide-alt {
    display: none !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-radius: 10px;
  border: 2px solid var(--white-color);
  padding: 5px;
}

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  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;
  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;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: -moz-min-content;
  min-width: min-content;
}

.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 {
  transition: opacity 0.218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: rgba(255, 255, 255, 0.3803921569);
  border-color: rgba(31, 31, 31, 0.1215686275);
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state, .gsi-material-button.nice-select.open:not(:disabled) .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 {
  width: 42%;
}

.widget-market-trades__title-time-larger {
  width: 42%;
}

.custom-auth-block {
  display: flex;
}
.custom-auth-block .block-button {
  position: relative;
  width: calc(50% - 10px);
  margin-top: 1rem;
}
.custom-auth-block .block-button a {
  width: 100%;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--tr-hover-color);
  border-radius: 9999px;
  outline: none;
  padding: 1rem 1rem !important;
}

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 {
  color: var(--white-color);
  background-color: var(--purple-fourth-color);
  border: 1px solid var(--purple-fourth-color);
}
body.dark .custom-auth-block .twitter-auth-btn svg path {
  fill: #ffffff;
}

/** nav media screen start */
@media screen and (max-width: 600px) {
  .custom-auth-block {
    display: block;
  }
  .custom-auth-block .block-button {
    width: 100%;
    margin-left: 0;
  }
}
@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 {
  font-size: 13px;
  margin-top: 5px;
  color: var(--second-fourth-color);
}

.slogan-text-bottom {
  margin-top: 15px;
  font-size: 14px;
}

.btn-add {
  margin-right: 10px;
  padding: 6px 14px;
  display: block;
  min-width: 100px;
  text-align: center;
  background: var(--yellow-color);
  color: #1c1c1c;
  border-radius: 9999px;
  cursor: pointer;
}
.btn-add svg {
  display: inline-block;
  width: 15px;
  height: 15px;
}
.btn-add span {
  display: inline-block;
}
.btn-add:hover {
  opacity: 0.8;
}

.btn-add-label {
  padding: 6px 8px;
  background: var(--btn-secondary-color);
  color: var(--btn-secondary-text-color);
  padding-left: 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 {
  margin: 15px 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--border-select-color);
}

.dark .payment-method-title {
  color: var(--white-color);
}

.payment-method-label {
  box-sizing: border-box;
  min-width: 0;
  border-radius: 2px;
  flex-shrink: 0;
  width: 3px;
  height: 14px;
  margin-top: 3px;
  margin-right: 8px;
}
.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 {
  min-height: 100px;
  padding: 1rem !important;
  height: 100px !important;
}

.user-status__item a {
  max-width: 150px;
  text-align: center;
  margin: 30px auto;
  display: block;
}

.btn-wrapper {
  margin-right: 15px;
}

.btn-wrapper {
  min-width: 150px;
}

.components-filter__button:hover {
  background: var(--purple-second-color);
  opacity: 0.7;
}

.components-filter__button-v2 {
  background-color: var(--purple-color);
}
.components-filter__button-v2:hover {
  background-color: var(--purple-color);
  opacity: 0.7;
}

.user-sub-menu {
  margin: 5.2rem 0 0;
}
.user-sub-menu .user-sub-menu-item {
  padding: 10px 0;
  position: relative;
  display: flex;
  font-size: 16px;
  cursor: pointer;
  margin-right: 20px;
  margin-left: 0;
}
.user-sub-menu .user-sub-menu-item:hover {
  color: var(--yellow-color);
}
.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 circle: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 path, .user-sub-menu .user-sub-menu-item .user-sub-menu-icon rect, .user-sub-menu .user-sub-menu-item .user-sub-menu-icon cirlce {
  stroke: var(--first-text-color);
}
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon-thin {
  margin-top: 2px;
  margin-right: 5px;
}
.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 {
  min-width: 300px;
  padding: 0.8rem;
  color: var(--second-text-color);
  background-color: var(--select-option);
  border: 1px solid var(--border-line-color);
}
.filter-dropdown-group .filter-select__option input {
  background: transparent;
  border-radius: 4px;
  border: 1px solid var(--yellow-color) !important;
}

.filter-dropdown-group {
  margin-right: 15px;
  padding: 0.2rem 0.7rem;
  display: flex;
  border: 1px solid var(--border-line-color);
  border-radius: 9999px;
}
.filter-dropdown-group .filter-select {
  min-width: 120px;
  margin-top: 0;
  background: transparent !important;
  border: none !important;
}
.filter-dropdown-group .filter-select:focus, .filter-dropdown-group .filter-select:hover {
  box-shadow: none;
}
.filter-dropdown-group .filter-select img {
  width: 25px;
  height: 25px;
}

.filter-top-right {
  display: flex;
  margin-left: 50px;
  align-items: center;
}
.filter-top-right .filter-top-item-list {
  cursor: pointer;
  display: flex;
  margin-right: 20px;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0.8;
}
.filter-top-right .filter-top-item-list.active {
  color: var(--yellow-color);
  opacity: 1;
}

.filter-button-group {
  display: flex;
  border: 1px solid var(--tr-hover-color);
  border-radius: 7px;
  max-width: 200px;
  min-width: 200px;
  padding: 0;
  width: 100%;
}
.filter-button-group .filter-button-items {
  width: 50%;
  text-align: center;
  padding: 10px;
  margin: 5px;
  border-radius: 7px;
  cursor: pointer;
}
.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 {
  min-width: 150px;
  padding: 10px 20px;
  border-radius: 9999px;
  text-align: center;
}
.btn-action:after {
  display: none !important;
}
.btn-action:hover {
  opacity: 0.9;
}

.p2pmodal {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p2pmodal {
    flex-direction: column-reverse;
  }
}
.p2pmodal .modal-col-1 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p2pmodal .modal-col-1 {
    width: 100%;
  }
}
.p2pmodal .modal-user {
  margin-bottom: 30px;
  display: flex;
}
.p2pmodal .modal-user-info {
  margin-left: 15px;
}
.p2pmodal .modal-user-info-top {
  display: flex;
  padding-top: 2px;
  margin-bottom: 3px;
}
.p2pmodal .modal-user-info-bottom {
  display: flex;
}
.p2pmodal .modal-user-info-bottom-text span {
  font-weight: bold;
}
.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: bold;
}
.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);
  padding: 0 20px;
  border-radius: 15px;
  margin-bottom: 25px;
}
.p2pmodal .modal-input-group-v2 .components-filter__item {
  width: 100%;
}
.p2pmodal .modal-input-group-v2 .components-filter__item button {
  margin-top: 0;
  border: 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);
  padding: 10px 20px;
  border-radius: 15px;
  margin-bottom: 25px;
}
.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;
  margin-top: 10px;
  margin-bottom: 10px;
  min-width: 120px;
  justify-content: flex-end;
}
.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;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 10px;
}
.p2pmodal .modal-input-group .modal-input-group-field input:focus, .p2pmodal .modal-input-group .modal-input-group-field input:active, .p2pmodal .modal-input-group .modal-input-group-field input.nice-select.open {
  outline: none;
  border: none;
  box-shadow: none;
}
.p2pmodal .modal-input-group .modal-input-group-field-text {
  margin-right: 5px;
}
.p2pmodal .modal-input-group .modal-input-group-field-asset-img {
  margin-right: 5px;
}
.p2pmodal .modal-input-group .modal-input-group-field-asset-img img {
  margin-right: 5px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
}

.modal-user-photo {
  width: 50px;
  height: 50px;
  background: var(--blue-dark-fourth-color);
  text-align: center;
  font-size: 22px;
  border-radius: 50%;
  padding-top: 9px;
  font-weight: bold;
}

.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 {
  height: 40px;
  overflow: hidden;
  background: transparent;
  border: none;
  border-width: 2px;
}
.chat-component .chat-message-input:focus, .chat-component .chat-message-input:hover {
  outline: none;
  box-shadow: none;
}
.chat-component .chat-message-input:focus {
  border-width: 2px;
}
.chat-component .chat-message-search {
  border-width: 2px;
}
.chat-component .chat-message-search:focus {
  border-width: 2px;
}
.chat-component .chat-conversation-list {
  height: 75vh;
}
.chat-component .chat-conversation-history {
  height: 75vh;
}
.chat-component .chat-text-truncate {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 300px;
}
.chat-component .chat-message-text-system {
  display: block;
  margin-top: 10px;
  font-size: 0.6rem;
  text-align: right;
  white-space: initial;
  opacity: 0.6;
}
.chat-component .chat-message-text {
  white-space: pre-line;
}
.chat-component .chat-message-text a {
  text-decoration: underline;
  font-weight: bold;
}
.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 {
  left: 8px;
  bottom: 0;
}
.offline-badge:before {
  content: " ";
  width: 10px;
  height: 10px;
  background: #919090;
  display: block;
  border-radius: 50%;
}

.online-badge {
  left: 8px;
  bottom: 0;
}
.online-badge:before {
  content: " ";
  width: 10px;
  height: 10px;
  background: var(--green-color);
  display: block;
  border-radius: 50%;
}

@keyframes blink {
  50% {
    fill: transparent;
  }
}
.dot {
  animation: 1s blink infinite;
  fill: var(--indigo-color);
}

.dot:nth-child(2) {
  animation-delay: 250ms;
}

.dot:nth-child(3) {
  animation-delay: 500ms;
}

.loader {
  color: var(--indigo-color);
}

.p2p-user-profile {
  margin-top: 0;
}

.p2p-profile-top {
  padding-bottom: 3rem;
  color: var(--dark-text-color);
}

.p2p-step-pointer {
  background: #00ED7B;
  color: #000;
}

.p2p-step-divider {
  margin-top: 80px;
  background-color: var(--border-line-color);
}

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);
  padding: 24px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: start;
  min-height: 132px;
}
.p2p-user-profile-stats-item .p2p-user-profile-stats-item-title {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.p2p-user-profile-stats-item .p2p-user-profile-stats-item-text {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.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;
  margin: 0px 16px 0px 0px;
  min-width: 0px;
  flex-shrink: 0;
}
.p2p-user-profile-avatar div {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  position: relative;
  border-radius: 50%;
  background-color: rgb(70, 83, 200);
  font-size: 20px;
  text-align: center;
  color: white;
  width: 52px;
  height: 52px;
  line-height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.p2p-user-profile-text-stats {
  flex-direction: row;
  -webkit-box-align: center;
  box-sizing: border-box;
  margin: 10px 0px 0px;
  min-width: 0px;
  display: flex;
  gap: 16px;
}

.p2p-user-profile-text-stats-item {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.p2p-user-profile-text-stats-item .p2p-user-profile-text-stats-item-label {
  box-sizing: border-box;
  margin: 0px 4px 0px 0px;
  min-width: 0px;
  font-size: 14px;
  display: inline-block;
}
.p2p-user-profile-text-stats-item svg {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  color: rgb(14, 203, 129);
  font-size: 14px;
  fill: rgb(14, 203, 129);
  width: 1em;
  height: 1em;
}

.p2p-user-profile-text-headline {
  font-weight: 700;
  font-size: 16px;
}
.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 {
  width: 100%;
  margin-bottom: 40px;
}
.profile-tab .profile-tab-inner {
  box-sizing: border-box;
  margin: 0px 0px 24px;
  min-width: 0px;
  width: 100%;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  margin-bottom: 32px;
}
.profile-tab .profile-tab-inner .profile-tab-item {
  box-sizing: border-box;
  margin: 0px;
  cursor: pointer;
  min-width: auto;
}
.profile-tab .profile-tab-inner .profile-tab-item .profile-tab-item-label {
  box-sizing: border-box;
  margin: 0px 16px 0px 0px;
  min-width: 0px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 9999px;
}
.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 {
  max-width: 700px;
  font-size: 12px;
}

.box-tip {
  box-sizing: border-box;
  margin: 0px 0px 16px;
  min-width: 0px;
  display: flex;
  padding: 12px 16px;
  color: rgb(240, 185, 11);
  border-radius: 4px;
  font-size: 14px;
  background: rgba(216, 159, 0, 0.08);
  align-items: flex-start;
  width: 100%;
  margin-bottom: 35px;
}
.box-tip .box-tip-wrapper {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  flex: 1 1 0%;
  align-items: flex-start;
}
.box-tip .box-tip-wrapper .box-tip-icon {
  box-sizing: border-box;
  margin: 0px 8px 0px 0px;
  min-width: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.box-tip .box-tip-wrapper .box-tip-icon svg {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  color: currentcolor;
  font-size: 20px;
  fill: currentcolor;
  width: 1em;
  height: 1em;
}
.box-tip .box-tip-wrapper .box-tip-text {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  word-break: break-word;
  flex-shrink: 1;
  height: auto;
  line-height: 24px;
  width: 100%;
  color: rgb(30, 35, 41);
}
.box-tip .box-tip-wrapper .box-tip-text div {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: rgb(216, 159, 0);
}

.form-search__result-p2p .components-filter__item {
  width: 100% !important;
  margin-right: 0 !important;
}

.p2p-tab-two-rows {
  box-sizing: border-box;
  margin: 16px 0px;
  min-width: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.p2p-tab-two-rows button {
  display: inline-flex;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
}
.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;
  margin: 0px;
  min-width: 0px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  flex-grow: 1;
}
.peer-payment-method-content .peer-card-label {
  color: var(--second-text-color);
}
.peer-payment-method-content .peer-card-action-button {
  margin: 0px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  outline: none;
  padding: 6px 0px;
  line-height: 20px;
  min-width: 52px;
  word-break: keep-all;
  color: var(--yellow-secondary-color);
  border-radius: 4px;
  min-height: 24px;
  border: none;
  background-color: transparent;
}
.peer-payment-method-content .peer-card-action-button:hover {
  opacity: 0.7;
}
.peer-payment-method-content .peer-payment-method-content-item {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  border-radius: 4px;
  border: 1px solid var(--border-line-color);
  transition: boxShadow 0.3s ease 0s;
  margin-bottom: 30px;
}
.peer-payment-method-content .peer-payment-method-content-item .peer-payment-method-content-item-head {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  align-items: center;
  height: 44px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: var(--rows-color);
}
.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;
  margin: 0px;
  min-width: 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feedback-stats {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  align-items: center;
}
.feedback-stats .feedback-stats-left {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
}
.feedback-stats .feedback-stats-left-top {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  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;
  margin: 0px;
  min-width: 0px;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
.feedback-stats .feedback-stats-left-top .feedback-stats-left-top-content .feedback-stats-left-bottom {
  box-sizing: border-box;
  margin: 4px 0px 0px;
  min-width: 0px;
}
.feedback-stats .feedback-stats-right {
  box-sizing: border-box;
  margin: 0px 0px 0px 32px;
  min-width: 0px;
  display: flex;
  flex-direction: column;
}
.feedback-stats .feedback-stats-right .feedback-stats-right-top {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  align-items: center;
}
.feedback-stats .feedback-stats-right .feedback-stats-right-top .feedback-stats-right-top-left {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.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 {
  box-sizing: border-box;
  margin: 0px 6px;
  min-width: 0px;
  overflow: hidden;
  height: 8px;
  border-radius: 4px;
  background-color: var(--border-line-color);
  width: 136px;
}
.feedback-stats .feedback-stats-right .feedback-stats-right-top .feedback-stats-right-top-middle .feedback-progressbar {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  width: 99.7586%;
  height: 100%;
  border-radius: 4px;
  background: var(--green-color);
}
.feedback-stats .feedback-stats-right .feedback-stats-right-top .feedback-stats-right-top-right {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.feedback-stats .feedback-stats-right .feedback-stats-right-bottom {
  box-sizing: border-box;
  margin: 6px 0px 0px;
  min-width: 0px;
  display: flex;
  align-items: center;
}
.feedback-stats .feedback-stats-right .feedback-stats-right-bottom .feedback-stats-right-top-middle .feedback-progressbar {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  width: 99.7586%;
  height: 100%;
  border-radius: 4px;
  background: var(--red-color) !important;
}
.feedback-stats .feedback-stats-right .feedback-stats-right-bottom .feedback-stats-right-bottom-left svg path {
  fill: var(--red-color) !important;
}

.feedback-tabs {
  margin-top: 30px;
  margin-bottom: 30px;
}

.feedback-list .feedback-list-item {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  border-bottom: 1px solid var(--border-line-color);
  padding-top: 20px;
  padding-bottom: 20px;
}
.feedback-list .feedback-list-item .feedback-list-item-top {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.feedback-list .feedback-list-item .feedback-list-item-top .feedback-list-item-top-left {
  background: var(--purple-second-color);
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  position: relative;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  color: white;
  width: 24px;
  height: 24px;
  line-height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}
.feedback-list .feedback-list-item .feedback-list-item-top .feedback-list-item-top-middle {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.feedback-list .feedback-list-item .feedback-list-item-top .feedback-list-item-top-middle-2 {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  font-size: 14px;
  opacity: 0.7;
}
.feedback-list .feedback-list-item .feedback-list-item-top .feedback-list-item-top-right {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  border-radius: 4px;
  align-items: center;
  height: 24px;
  padding-left: 8px;
  padding-right: 8px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 190px;
}
.feedback-list .feedback-list-item .feedback-list-item-top .feedback-list-item-top-right .feedback-list-item-top-right-inner {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: inline-block;
  position: relative;
  max-width: 100%;
  width: 100%;
  background: var(--label-bubble-color);
  border-radius: 10px;
  padding: 5px 10px;
}
.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;
  margin: 0px;
  min-width: 0px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
}
.feedback-list .feedback-list-item .feedback-list-item-bottom {
  box-sizing: border-box;
  margin: 16px 0px 0px;
  min-width: 0px;
  display: flex;
}
.feedback-list .feedback-list-item .feedback-list-item-bottom .feedback-list-item-bottom-top {
  box-sizing: border-box;
  margin: 0px 8px 0px 0px;
  min-width: 0px;
  display: flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.feedback-list .feedback-list-item .feedback-list-item-bottom .feedback-list-item-bottom-top svg {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  font-size: 14px;
  width: 1em;
  height: 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;
  margin: 0px;
  min-width: 0px;
  line-height: 24px;
  font-size: 16px;
}

.p2p-ads-table .table-list tr:hover {
  background-color: transparent;
}
.p2p-ads-table thead tr {
  border-bottom: 1px solid rgba(144, 144, 144, 0.2);
}
.p2p-ads-table thead th {
  background: inherit;
  color: var(--color-TertiaryText);
  font-size: var(--default-font__size);
  font-weight: 400;
  line-height: 18px;
  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 {
  display: flex;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
.p2p-ads-table .flex-col {
  flex-direction: column;
}
.p2p-ads-table .p2p-avatar {
  background-color: var(--purple-second-color);
  color: var(--white-color);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 24px;
  height: 24px;
  line-height: 24px;
  position: relative;
}
.p2p-ads-table .p2p-avatar .user-status-badge {
  width: 7px;
  height: 7px;
  max-height: 10px;
  max-width: 10px;
  background-color: var(--gray-color);
  border-color: var(--gray-color);
  border-width: 1px;
  border-radius: 50%;
  right: 0;
  bottom: 0;
  position: absolute;
}
.p2p-ads-table .p2p-avatar .online {
  background-color: var(--green-color);
  border-color: var(--green-color);
}
.p2p-ads-table .p2p-avatar-lg {
  width: 40px;
  height: 40px;
}
.p2p-ads-table tbody td {
  padding: 18px 16px;
  background: inherit;
  font-size: var(--h3-font__size);
  font-weight: 400;
  line-height: 22px;
  position: relative;
  white-space: normal;
  word-break: break-word;
}
.p2p-ads-table tbody td hr {
  height: 10px;
  background-color: var(--border-line-color);
  border-style: none;
  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 {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.p2p-payment-badge {
  width: 3px;
  height: 10px;
  box-sizing: border-box;
  margin: 0px 8px 0px 0px;
  margin-right: 4px;
  min-width: 0px;
  border-radius: 4px;
  background-color: rgb(216, 159, 0);
  flex: 0 0 auto;
}

.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 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 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 {
  position: relative;
  display: block;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.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 {
  background-color: var(--yellow-darker-color);
}
.components-filter__button-cancel:hover {
  background-color: var(--yellow-darker-color);
  opacity: 0.7;
}

.btn-action-mini {
  cursor: pointer;
  min-width: 250px;
  padding: 10px 20px;
  border-radius: 9999px;
  text-align: center;
  display: flex;
}
.btn-action-mini:after {
  display: none !important;
}
.btn-action-mini:hover {
  opacity: 0.9;
}
.btn-action-mini svg {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  margin-left: 12px;
  margin-top: 2px;
}

.btn-action-xs {
  min-width: 150px;
  display: block;
}

.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 10px;
}

.text-important {
  color: #00ED7B;
  text-transform: uppercase;
}

.table-div {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.table-div .table-div-head {
  display: inherit;
  width: 100%;
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: rgb(132, 142, 156);
  font-size: 12px;
  align-items: center;
  flex-direction: row;
  background-color: var(--table-head-color);
}
.table-div .table-div-head .table-div-head-column {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  width: 0px;
  text-align: left;
  padding-right: 4px;
  display: block;
}
.table-div .table-div-body {
  width: 100%;
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  flex-direction: column;
}
.table-div .table-div-body .table-div-body-rows {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  flex-direction: column;
  height: auto;
  width: 100%;
  border-bottom: 1px solid var(--border-line-color);
  position: relative;
  display: flex;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  width: 100%;
  display: flex;
  font-size: 14px;
  min-height: 115px;
  position: relative;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 0px;
  font-size: 14px;
  justify-content: center;
}
.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;
  gap: 6px;
  box-sizing: border-box;
  min-width: 0px;
  display: flex;
  align-items: center;
  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;
  margin: 0px 0px 0px 0;
  min-width: 0px;
  display: flex;
  flex-direction: column;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column .table-div-body-column-container .right {
  text-align: right;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column .table-div-body-column-container .underline {
  text-align: right;
}
.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;
  margin: 0px;
  min-width: 0px;
  display: inline-block;
  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: var(--dark-gray);
}
.stroke-gray path {
  stroke: var(--dark-gray);
}

.fill-gray {
  fill: var(--dark-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 {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  padding-left: 0;
  display: block;
}
.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-top: 4px;
  padding-bottom: 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 {
  display: flex;
  grid-gap: 16px;
  gap: 16px;
  margin-top: 25px;
}
.p2p-order-feedback .btn-large {
  display: flex;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  height: 48px;
  line-height: 24px;
  min-height: 48px;
  min-width: 80px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: center;
  align-items: center;
  flex: 1 1;
  background-color: transparent;
  border: 1px solid var(--border-line-color);
}
.p2p-order-feedback .btn-large svg {
  height: 20px;
  width: 20px;
}
.p2p-order-feedback .btn-large:hover {
  opacity: 0.7;
}

.p2p-order-feedback-modal {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p2p-order-feedback-modal .p2p-order-feedback-actions {
  display: flex;
  margin-top: 15px;
}
.p2p-order-feedback-modal .p2p-order-feedback-actions .btn-large {
  display: flex;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  height: 48px;
  line-height: 24px;
  min-height: 48px;
  min-width: 80px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid var(--modal-border-line-color);
}
.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 {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  max-height: 200px;
  background: transparent;
  border: 1px solid var(--modal-border-line-color);
}
.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 {
  margin-top: 20px;
  justify-content: normal;
}
.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 {
  display: flex;
  justify-content: center;
  align-self: 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:focus, .components-filter__item-multiple .filter-select button:active, .components-filter__item-multiple .filter-select button.nice-select.open {
  outline: none;
  border: none;
}

.modal-right-top {
  display: flex;
}

.refresh-icon {
  margin-left: 10px;
  margin-top: 2px;
}
.refresh-icon svg {
  width: 15px;
  height: 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;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.text-yellow {
  color: var(--yellow-color);
}

.opacity-60 {
  opacity: 0.6;
}

.textarea-counter {
  position: absolute;
  bottom: 3px;
  right: 7px;
  font-size: 12px;
}

.prev-button {
  background-color: var(--blue-dark-color);
  border: 1px solid var(--blue-dark-color);
}
.prev-button:hover {
  background-color: var(--blue-dark-color);
  border: 1px solid var(--blue-dark-color);
  opacity: 0.7;
}

.column-badge.default {
  background: #0c8a60;
}
.column-badge.l-green {
  background: #32CD32;
}
.column-badge.green {
  background: #3CB371;
}
.column-badge.d-green {
  background: #3CB371;
}
.column-badge.red {
  background: #DC143C;
}
.column-badge.l-red {
  background: #CD5C5C;
}
.column-badge.d-red {
  background: #8B0000;
}
.column-badge.yellow {
  background: #FFD700;
}
.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: #FF6347;
}
.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: #DA70D6;
}
.column-badge.l-purple {
  background: #D8BFD8;
}
.column-badge.d-purple {
  background: #9370DB;
}
.column-badge.pink {
  background: #FF69B4;
}
.column-badge.l-pink {
  background: #FFC0CB;
}
.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 {
  padding: 0 !important;
  background: none !important;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  color: #2f2f2f;
}
.chat-component .block-type-media-message svg path {
  fill: #2f2f2f;
}

body.dark .chat-component .text-cover .block-message-bubble-counterparty {
  color: var(--dark-text-color);
  background: #212833;
}
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 {
  border-radius: 15px;
  text-align: center;
  background: transparent;
  color: var(--first-text-color);
  border: 1px solid var(--border-line-color);
  font-size: 12px;
  padding-top: 15px;
}

.order-info-container {
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-line-color);
  padding-bottom: 25px;
}
.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 {
  border-radius: 10px;
  width: 100%;
  height: 150px;
  max-height: 200px;
  background: transparent;
  border: 1px solid var(--modal-border-line-color);
}
.textarea-modal:focus {
  border: 2px solid var(--modal-border-line-color);
  box-shadow: none;
}

.button-disabled {
  opacity: 0.2;
}
.button-disabled:hover {
  opacity: 0.2;
}

.p2pmodal-information {
  background: var(--modal-information-color);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}
.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-top: 25px;
  margin-bottom: 15px;
}

.width64 {
  width: 64px;
  height: 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 {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  text-align: center;
  padding-top: 2px;
  padding-right: 1px;
}
.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 {
  margin-bottom: 5px;
  display: flex;
}
.text-small ul li svg {
  stroke: var(--green-color);
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.text-small ul li .close-fill {
  stroke: none;
  width: 20px;
  height: 20px;
}
.text-small ul li .close-fill path {
  fill: var(--red-color);
}

#file-uploader-form.file-uploader-form-modal .vue-file-agent {
  width: 100%;
  text-align: left;
}
#file-uploader-form.file-uploader-form-modal .file-preview-wrapper {
  width: 50px;
}

.chat-component .file-preview-wrapper {
  min-width: auto !important;
  width: auto !important;
  border: 0 !important;
}
.chat-component .file-preview-wrapper:before {
  display: none !important;
  content: "" !important;
}
.chat-component .file-uploading {
  background: #e1ffda;
  text-align: center;
  opacity: 0.8;
  padding: 1px 0;
}

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 {
  margin-bottom: 50px;
  border: 1px solid var(--border-line-color);
  padding: 20px 20px;
  border-radius: 15px;
}
.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 {
  opacity: 0.7;
  margin-bottom: 10px;
}
.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;
  text-decoration: underline;
  cursor: pointer;
}

.components-filter__button-w-200 {
  width: 200px;
}

.block-title-app {
  font-weight: 500;
  font-size: 1rem;
}

.color-yellow-text {
  color: var(--yellow-color);
  font-weight: 500;
}

.appeal-textarea {
  height: 300px;
  border: 2px solid var(--border-line-color);
  width: 100%;
  background: transparent;
  border-radius: 8px;
}
.appeal-textarea:focus {
  text-shadow: none;
  outline: none;
  box-shadow: none;
}

.review-active-logo svg {
  width: 42px;
  height: 42px;
}
.review-active-logo svg path {
  stroke: var(--yellow-color);
  fill: var(--yellow-color);
}

.system-active-logo svg {
  margin-right: 5px;
  width: 42px;
  height: 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 {
  font-weight: normal;
  color: var(--yellow-color);
  cursor: pointer;
}

.fluid-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.fluid-width-colored {
  background-color: var(--dark-profile-body-color);
}

.line-separator {
  box-sizing: border-box;
  margin: 0px 12px;
  min-width: 0px;
  margin-top: 4px;
  display: flex;
  height: 16px;
  width: 1px;
  border: none;
  background-color: var(--strict-border-color);
}

.feedback-list-item-reply {
  margin-top: 15px;
  margin-left: 32px;
}
.feedback-list-item-reply .feedback-list-item-reply-title {
  opacity: 0.7;
  margin-bottom: 10px;
  margin-right: 10px;
}
#body .main-section .img-strict img {
  width: 25px !important;
  height: 25px !important;
  min-height: auto !important;
  border-radius: 50%;
}
#body .main-section .img-strict2 img {
  width: 25px !important;
  height: 25px !important;
  min-height: auto !important;
  border-radius: 50%;
}
#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 {
  width: 18px;
  height: 18px;
  fill: var(--dark-text-color2);
}
#body .svg-icon-container {
  position: relative;
}
#body .svg-icon-container .svg-icon-label {
  position: absolute;
  top: 23px;
  left: 20px;
}
#body .svg-icon-text .inline-block .block {
  padding-left: 35px;
}
#body .components-filter__item8 .relative {
  width: 100%;
}
#body .component-filter {
  position: relative;
  margin-top: 0.5rem;
}
#body .component-filter .component-filter-content {
  cursor: pointer;
  border: 1px solid var(--border-line-color);
  padding: 0.9rem 1rem;
  border-radius: 9999px;
  min-width: 80px;
  display: flex;
}
#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 {
  z-index: 999;
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--white-color);
  max-height: -moz-fit-content;
  max-height: fit-content;
  box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 6px rgba(0, 0, 0, 0.08);
  min-width: 300px;
  padding: 15px 15px;
  border-radius: 10px;
}
#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 {
  border-radius: 50%;
  background: #d18709;
  color: var(--white-color);
  width: 20px;
  height: 20px;
  line-height: 21px;
  font-size: 0.7rem;
  margin-left: 5px;
  text-align: center;
}

.max-width-300 {
  width: 200px;
}

.chat-image-frame {
  border: 1px solid var(--border-line-color);
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.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: black;
  color: white;
  border-radius: 5px;
  padding: 8px 15px 7px;
}
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: black;
  z-index: 1;
}
.tooltip[x-placement^=top] {
  margin-bottom: 5px;
}
.tooltip[x-placement^=top] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^=bottom] {
  margin-top: 5px;
}
.tooltip[x-placement^=bottom] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^=right] {
  margin-left: 5px;
}
.tooltip[x-placement^=right] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip[x-placement^=left] {
  margin-right: 5px;
}
.tooltip[x-placement^=left] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip.popover .popover-inner {
  background: #f9f9f9;
  color: black;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
.tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}
.tooltip[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s, visibility 0.15s;
}
.tooltip[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s;
}

.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 {
  text-align: center;
  background: #e1e1e1;
  opacity: 0.9;
  text-align: center;
  padding: 10px 10px;
}

#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 {
  opacity: 0.8;
  cursor: pointer;
}

.btn-icon-attach-message path {
  fill: #f9f9f9;
}

.conditional-sub-menu {
  display: none;
}

.header-btn span:first-child {
  margin-top: 0px;
}

.components-filter-mobile {
  display: none;
}

.mobile-visible {
  display: none;
}

.closeChat {
  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 {
  display: flex;
  flex-direction: column;
  align-items: normal;
}
.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 {
  padding-left: 0 !important;
  width: 100% !important;
  margin-bottom: 5px !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 {
  min-height: auto;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.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 {
  order: 2;
  margin-left: 10px;
}
.mobile-body .p2p-create-steps-mob .p2p-steps-step-inner .p2p-steps-step-marker {
  order: 1;
  margin-top: 0;
}
.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 {
  display: block;
  cursor: pointer;
}
.mobile-body .chat-component-mob .closeChat svg path {
  fill: var(--dark-text-color);
}
.mobile-body .chat-component-mob .chat-active {
  display: block;
  position: fixed;
  top: 0;
  background-color: var(--white-color);
  z-index: 999;
  height: 100vh;
  margin-left: -15px;
  width: 100%;
}
.mobile-body .chat-component-mob .chat-dialog {
  height: 80vh;
}
.mobile-body .chat-component-mob .chat-bottom-wrapper {
  width: 100%;
  position: absolute;
  bottom: 30px;
}
.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 {
  margin-top: 10px;
  border-radius: 9999px;
}
.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 {
  width: 100%;
  order: 2;
}
.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 {
  min-width: 120px;
  padding: 5px 5px;
  text-align: center;
  font-size: 0.9rem;
}
.mobile-body .p2p-flex-row-mobile {
  padding: 0;
}
.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 {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.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 path, .mobile-body .conditional-sub-menu .user-sub-menu-icon rect, .mobile-body .conditional-sub-menu .user-sub-menu-icon circle, .mobile-body .conditional-sub-menu .user-sub-menu-icon g {
  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 {
  top: 3rem;
  left: 0;
  width: 100%;
  font-size: 1rem;
  background-color: #f1f1f1;
}
.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 {
  opacity: 1;
  background: #eaebed;
  cursor: not-allowed;
}

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 {
  outline: none;
}
.user-badge:active svg, .user-badge.nice-select.open 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 {
  border: 1px solid var(--red-color);
  background-color: var(--red-color);
}
.options-module .filter-select {
  color: var(--blue-dark-color);
}

.form-text-group {
  font-size: 0.9rem;
}

.form-group-highlight {
  font-size: 1rem;
  padding: 10px 17px;
  margin-top: 10px;
  border-radius: 9999px;
  border: 1px solid #f4f6f9;
  background-color: #f4f6f9;
}

body.dark .options-module .form-group-highlight {
  border: 1px solid #0b0c16;
  background-color: #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 .datepicker-dropdown .picker-today:hover {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .datepicker-dropdown .picker-hover:hover {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .datepicker-dropdown .picker-range {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .datepicker-dropdown .picker-range-wrapper {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .bg-purple {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .bg-purple-hover:hover {
  color: var(--white-color);
  background-color: var(--purple-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;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 15px;
}
.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);
  color: var(--dark-body-color);
  border-radius: 9999px;
  min-width: 100px;
  text-align: center;
}

.components-title-v2 .h2-headline {
  font-size: 1.5rem;
}

.mobile-body .header-nav .header-dropdown__list {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 5px;
  background-color: var(--blue-dark-color);
}

header.mobile-body {
  padding-left: 0;
  padding-right: 0;
}

/* Scroll bar stylings */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--lightestgrey);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  opacity: 0.8;
  border-radius: 5px;
}

/* Handle on hover */
::-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 20px;
}
.market-trends .market-trends-item .mt-body {
  margin-top: 20px;
}
.market-trends .market-trends-item .mt-body .mt-body-img img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.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 {
  width: 85px;
  flex: 85 1 0%;
}
.market-trends .market-trends-item .mt-body .mt-body-item .mt-body-content-name {
  width: 95px;
  flex: 90 1 0%;
}
.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 {
  font-size: 0.8rem;
  display: block;
  min-height: 20px;
  margin-bottom: 15px;
  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 {
  border-top: 1px solid var(--tr-hover-color);
  display: flex !important;
  background-color: var(--white-color);
  position: fixed;
  bottom: 0;
  width: 100% !important;
  padding: 5px 0;
}
#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 {
  width: 100%;
  animation-name: animation;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  display: flex;
}

@keyframes animation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.text-slider-item-m {
  display: flex;
  white-space: nowrap;
}
.text-slider-item-m img {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 2px;
}

.module-orderbook__buy-sell-stats {
  width: 100%;
  margin-top: 15px;
  padding: 5px 5px;
  align-items: center;
  display: flex;
  font-size: 12px;
  height: 16px;
  justify-content: space-between;
  line-height: 16px;
}
.module-orderbook__buy-sell-stats .orderbook-compare {
  width: 100%;
  margin-top: 15px;
  align-items: center;
  display: flex;
  font-size: 12px;
  height: 16px;
  justify-content: space-between;
  line-height: 16px;
}
.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: bold;
}

.admin-layout .period-block .block {
  margin-top: 0 !important;
}
.admin-layout .period-block .bg-purple-hover {
  top: 2px !important;
}

.flex-qr img {
  background: #fff;
  margin: 0 auto;
  border: 1px solid var(--tr-hover-color-second);
  padding: 8px;
  border-radius: 15px;
  margin-left: 20px;
}
.flex-qr .img-screen img {
  background: transparent;
  margin-left: 0px;
  height: 168px;
}

.svg-qr-code {
  margin-top: 7px;
  padding: 5px;
  border-radius: 8px;
  background: var(--purple-color);
}
.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 {
  position: absolute;
  top: 40%;
  background: rgba(167, 255, 167, 0.93);
  left: 52px;
  color: #373333;
  padding: 8px 8px;
  border-radius: 8px;
}
.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 {
  border-radius: 9999px;
}

.modal-container button {
  border-radius: 9999px;
}

.filter-select .swap-label .pt-1 {
  padding-top: 0 !important;
}
.filter-select .swap-label img {
  width: 22px !important;
  height: 22px !important;
}

.components-filter-desktop .swap-label {
  padding-top: 4px;
}

.chartDisabled {
  opacity: 0;
  height: 120px;
}

.chartActive {
  opacity: 1;
  height: 438px;
}

.chart-height {
  min-height: 438px;
}

.loader-img {
  margin: 0 auto;
  margin-top: 150px;
}

.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 {
  max-width: 200px;
  margin: 0 auto;
}

.t-rich-user {
  right: 0.5rem;
}

body .dir-rtl .t-rich-user {
  left: 0.5rem;
  right: auto;
}

.select-button {
  padding: 0rem 1rem !important;
}

.options-orderform__buy-forms__item {
  text-align: center;
  outline: none;
  border: 1px solid var(--green-color);
  background: rgba(233, 242, 255, 0.1019607843);
  color: rgb(251, 251, 251);
}

body.dark .icon-svg {
  fill: #FCFCFD;
}

.components-filter__item-multiple .filter-select button svg {
  display: none;
}

.checkbox-select-style {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 6px;
  border: 1px solid #409587 !important;
  background-color: #d4d4d4 !important;
  transition: all 0.2s;
}
