/** LIST COMPONENTS */
/** components title start */
.components-title h2 {
  margin: 5rem 0 3rem;
  font-size: var(--h2-font__size);
}

/** components title end */
/** components tabs start */
.tabs {
  display: flex;
  justify-content: space-between;
  margin: 0 0 4rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--second-text-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;
  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:-ms-input-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 0.7rem;
  width: 120px;
  text-align: center;
  font-size: var(--small-font__size);
  border-radius: 4px;
  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: rgba(34, 158, 107, 0.16);
  color: var(--green-color);
}

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

/** components label end */
/** components card start */
.card-warning.active {
  background: var(--blue-color);
  border: 1px solid var(--blue-color);
}
.card-warning:hover {
  background: var(--blue-color);
}

/** components card end */
/** table components start */
.table-components {
  margin: 3rem 0;
}
.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 */
/** table filter components start */
.form-border {
  border: 0px solid var(--border-line-color) !important;
}

.components-filter__form {
  border: 1px solid var(--border-line-color);
  margin: 1rem 0;
  padding: 1.5rem;
  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: 1.5rem;
}
.components-filter__form .components-filter__item {
  width: 49%;
  margin-right: 0;
}
.components-filter__form .components-filter__item input, .components-filter__form .components-filter__item select {
  border: 1px solid #252539;
  background-color: transparent;
  padding: 0.8rem;
  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(--blue-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);
}
.components-filter__form .components-filter__item .filter-select {
  padding: 0.9rem 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(--blue-color);
  outline: none;
  box-shadow: none;
}
.components-filter__form .components-filter__item .filter-select__option {
  padding: 0.8rem;
  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: #fff;
  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: 14px;
}
.components-filter__form .components-filter__button {
  outline: 0px solid #F00;
  display: block;
  width: 100%;
  padding: 1rem 0;
  position: relative;
  background-color: var(--purple-second-color);
}
.components-filter__form .components-filter__button:hover {
  background-color: var(--purple-color);
}

.components-filter {
  margin-bottom: 5rem;
  /** item filter-block */
  /* button */
}
.components-filter__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: flex-end;
}
.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.8rem;
  font-size: var(--small-font__size);
}
.components-filter__item input:focus, .components-filter__item select:focus {
  border: 1px solid var(--blue-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.9rem 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(--blue-color);
  outline: none;
  box-shadow: none;
}
.components-filter__item .filter-select__option {
  padding: 0.8rem;
  color: var(--second-text-color);
  background-color: var(--select-option);
  border: 1px solid var(--border-line-color);
}
.components-filter__item .filter-hover {
  color: #fff;
  background-color: var(--purple-second-color);
}
.components-filter__item .filter-active {
  background-color: var(--purple-second-color);
}
.components-filter__item .bth-clear {
  top: 14px;
}
.components-filter__item .bth-clear:hover {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__button {
  outline: none;
  display: block;
  width: 100%;
  padding: 1rem 0;
  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% !important;
    margin-bottom: 1.2rem;
  }

  /** 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 */
/** 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(--blue-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.9rem 0 0.9rem 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(--blue-color);
}
.table-list__link a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--blue-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(--blue-color);
}
.table-list .title-icon__name {
  font-size: var(--default-font__size);
}
.table-list__image {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 1rem 0 0.6rem;
}
.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;
  }
  .table-list td:nth-last-child(1) {
    padding-bottom: 1rem;
  }
  .table-list__subtitle {
    display: block;
    color: var(--second-text-color);
  }
  .table-list__link a {
    display: block;
    margin-right: 0;
    margin-left: 1.5rem;
    color: var(--blue-color);
  }
  .table-list__link a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--blue-color);
    transition: all 0.5s ease-out;
  }
  .table-list__link a:hover:after {
    width: 100%;
  }
}
/** tbody media screen end */
/** 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(--blue-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(--blue-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;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-image: url("/images/bg-auth.png");
  background-size: cover;
  background-color: var(--gray-dark-color);
}
.base-container__left-content {
  position: relative;
  max-width: 400px;
  width: 100%;
  padding-left: 1rem;
  color: var(--white-color);
  font-weight: 400;
}
.base-container__left-logo {
  width: 200px;
  display: block;
  margin-bottom: 2rem;
}
.base-container__left-logo img {
  width: 100%;
}
.base-container__left-title h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.base-container__left-title h1 .typer-text {
  color: var(--blue-color) !important;
}
.base-container__left-title h1 .typer-cursor {
  color: var(--blue-color) !important;
}
.base-container__left-title h1 span {
  color: var(--blue-color) !important;
}
.base-container__left-title p {
  font-size: 1rem;
}
.base-container__right {
  width: 50%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.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, .form-components__input-text .block-button-swap {
  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: right;
}
.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: flex-start;
}
.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-right: 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(--dark-text-color);
}
.form-components__block-item:focus .form-components__block-icon__color2, .form-components__block-item:hover .form-components__block-icon__color2 {
  fill: var(--dark-text-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(--blue-color);
}
.form-components__block-link {
  width: 100%;
  display: block;
  font-size: 0.9rem;
  text-align: right;
  color: var(--blue-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: 3rem 0 1rem;
  font-size: 1.2rem;
}

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

/** title / text end */
/** button start */
div.block-button-wrapper {
  background: var(--exchange-swap-button-border, linear-gradient(180deg, rgba(79, 83, 102, 0) 0%, rgba(67, 74, 107, 0.79) 67.17%));
  margin: 0 auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 1px;
  width: 100%;
}
div.block-button-wrapper.isDisabled, div.block-button-wrapper.isDisabled:hover {
  background: var(--exchange-swap-button-border, linear-gradient(180deg, rgba(79, 83, 102, 0) 0%, rgba(67, 74, 107, 0.79) 67.17%));
  box-shadow: none;
  cursor: not-allowed;
  transform: scale(1);
}
div.block-button-wrapper.isDisabled .block-button-swap, div.block-button-wrapper.isDisabled:hover .block-button-swap {
  border: 1px solid transparent;
}
div.block-button-wrapper .block-button-swap {
  background: var(--exchange-button-background, linear-gradient(180deg, #2F3756 0%, #1D1F25 100%));
  border: 1px solid transparent;
}
div.block-button-wrapper .block-button-swap button {
  color: #f0f0f0;
  width: 100%;
  display: block;
  font-size: 20px;
  font-weight: 600;
  padding: 1rem 2rem;
  text-align: center;
  outline: none;
}

div.block-button-wrapper,
div.block-button-wrapper:hover,
.block-button-swap {
  transition: ease-out 0.3s;
}

div.block-button-wrapper:hover {
  box-shadow: 0px 0px 13px rgba(82, 120, 195, 0.07);
  transform: scale(1.025);
}
div.block-button-wrapper:hover .block-button-swap {
  border: 1px solid rgba(67, 74, 107, 0.79);
}

.block-button button {
  width: 100%;
  display: block;
  padding: 1rem 0;
  text-align: center;
  color: var(--white-color);
  background-color: var(--blue-color);
  border: 1px solid var(--blue-color);
  border-radius: 4px;
  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 {
  background-color: var(--purple-second-color);
}

.block-button-wrapper,
.block-button-swap {
  border-radius: 12px;
}

/** button end */
/** input text start */
.block-input-text input {
  width: 100%;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.8rem 0.8rem 0.8rem 2rem;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--second-text-color);
  background-color: transparent !important;
  color: var(--first-text-color);
}
.block-input-text input:hover {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--dark-text-color);
  background-color: transparent !important;
}
.block-input-text input:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--dark-text-color);
  box-shadow: none;
  background-color: transparent !important;
  color: var(--first-text-color);
}
.block-input-text input:active, .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(--dark-text-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-right: 10px;
  border: 1px solid var(--second-text-color);
  background-color: transparent;
}
.block-checkbox input:focus {
  outline: none;
  box-shadow: none;
}
.block-checkbox input:active {
  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;
}

/** 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;
  background-color: #fff;
}

.block-keys {
  background-color: var(--rows-color);
}
.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 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 {
  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 {
  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 {
  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%;
  -webkit-animation: btn-loading-spinner 1s ease infinite;
          animation: btn-loading-spinner 1s ease infinite;
}

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

@-webkit-keyframes btn-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

@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 {
  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(--second-text-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(--dark-text-color);
}
.input-field input:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--dark-text-color);
  box-shadow: none;
}
.input-field input:active {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--dark-text-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 */
/** Swap **/
#swap-container {
  align-items: center;
  background-image: url("/images/exchange-blockchain-light-background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  min-height: 70vh;
  margin: 0;
}
#swap-container #orderProcessing {
  z-index: 99999;
}
#swap-container .swap-inner .swap-select-container {
  background: var(--exchange-blue-box-dark-gradient, linear-gradient(180deg, #1F2129 0%, #1D1F25 100%));
  border: 1px solid #262832;
  border-radius: 28px;
}
#swap-container .swap-inner .swap-select-container button, #swap-container .swap-inner .swap-select-container input {
  border: 0;
  padding: 0;
}
#swap-container .swap-label {
  align-items: center;
}
#swap-container .swap-wallet-balance {
  color: #9FA3FF;
}
#swap-container .swap-output {
  background: transparent;
  justify-content: flex-end;
  padding: 0;
}
#swap-container .swap-icon-background {
  background: var(--background-swap-coins-icon, linear-gradient(180deg, #242630 0%, #1E2027 37.97%, #1D1F25 100%));
  border: 1px solid transparent;
  height: 53px;
  width: 53px;
}
#swap-container .swap-icon-border {
  background: var(--outer-border-swap-coins, linear-gradient(180deg, #1E1F26 0%, #1B1B1B 80%));
}
#swap-container .swap-icon-wrapper {
  background: var(--border-swap-coins, linear-gradient(153deg, rgba(38, 40, 50, 0) 0%, #262832 51.28%, #2F323F 100%));
  height: 54px;
  width: 54px;
}
#swap-container .swap-icon-box {
  margin: calc(-61px / 2.3) auto;
  z-index: 2;
}
#swap-container .swap-icon-box,
#swap-container .swap-icon-background,
#swap-container .swap-icon-box:hover {
  transition: ease-out 0.35s;
}
#swap-container .swap-icon-box:hover .swap-icon-background {
  border: 1px solid #8393ef1d;
  box-shadow: 0px 0px 13px rgba(82, 120, 195, 0.07);
}
#swap-container .swap-icon-box,
#swap-container .swap-icon-box div {
  align-items: center;
  display: flex;
  justify-content: center;
}
#swap-container .swap-icon-box,
#swap-container .swap-icon-border {
  height: 62px;
  width: 62px;
}
#swap-container .swap-icon-img {
  max-width: 35px;
  width: 100%;
}
#swap-container .swap-icon-box,
#swap-container .swap-icon-box * {
  border-radius: 16px;
}
#swap-container .swap-crypto-value,
#swap-container .swap-output {
  color: #f0f0f0;
  font-size: 25px;
  text-align: right;
}
#swap-container .swap-crypto-value::-moz-placeholder {
  color: #4A4E5C;
}
#swap-container .swap-crypto-value:-ms-input-placeholder {
  color: #4A4E5C;
}
#swap-container .swap-crypto-value::placeholder {
  color: #4A4E5C;
}
#swap-container .swap-inner .swap-select-container.upper-swap-select {
  padding: 0.5rem 1rem 2.5rem;
}
#swap-container .swap-inner .swap-select-container.down-swap-select {
  padding: 2.5rem 1rem 0.5rem;
}
#swap-container .crypto-logo-box {
  background: rgba(16, 17, 19, 0.55);
  border-radius: 20px;
  border: 1px solid #313131;
  margin: 0 15px 0 0;
  position: relative;
}
#swap-container .crypto-logo-box,
#swap-container .crypto-logo,
#swap-container .crypto-logo-box__arrow-button,
#swap-container .crypto-logo-box:hover {
  transition: ease-out 0.3s;
}
#swap-container .crypto-logo-box:hover {
  background: rgba(16, 17, 19, 0.3);
}
#swap-container .crypto-logo-box:hover .crypto-logo-box__arrow-button {
  transform: scale(1.03);
}
#swap-container .crypto-logo-box:hover .crypto-logo {
  transform: scale(1.06);
}
#swap-container .crypto-logo-box:hover .crypto-logo {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.45);
}
#swap-container .crypto-logo-box__arrow-button {
  align-items: center;
  display: flex;
  background: linear-gradient(180deg, #363940 0%, #25272D 100%);
  border: 1.25px solid #35383F;
  border-radius: 50%;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15) inset;
  height: 20px;
  justify-content: center;
  right: -6px;
  position: absolute;
  top: -4px;
  width: 20px;
}
#swap-container .crypto-logo {
  border-radius: 50%;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  height: 40px;
  margin: 15px;
  width: 40px;
}
#swap-container .crypto-operation-label__title {
  font-size: 14px;
}
#swap-container .crypto-operation-label__value {
  font-size: 25px;
  font-weight: 600;
}
#swap-container .crypto-operation-label__value,
#swap-container .crypto-operation-label__title {
  color: #F0F0F0;
}
#swap-container .exchange-rate-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 8px 0 0;
  position: relative;
}
#swap-container .exchange-rate-box {
  color: #8B919F;
  font-weight: 300;
  text-align: right;
}
#swap-container .swap-crypto-select > .filter-select__option {
  border-radius: 19px;
  border: 1px solid #414141;
  background: #17181B;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  top: calc(100% + 5px);
  transition: ease-in-out 0.2s;
  z-index: 50;
}
#swap-container .filter-active {
  background-color: rgba(251, 251, 251, 0.03) !important;
}
#swap-container .filter-hover {
  background-color: rgba(251, 251, 251, 0.06) !important;
  transform: scale(1.025);
}
#swap-container .filter-active,
#swap-container .filter-hover {
  transition: ease-in-out 0.2s;
}

@media (max-width: 1024px) {
  #swap-container {
    padding: 140px 20px;
  }
  #swap-container .crypto-operation-label__value {
    font-size: 18px;
  }
  #swap-container .crypto-logo-box {
    border-radius: 10px;
  }
  #swap-container .crypto-logo {
    height: 30px;
    margin: 10px;
    width: 30px;
  }
  #swap-container .swap-crypto-value::-moz-placeholder {
    font-size: 18px;
  }
  #swap-container .swap-crypto-value:-ms-input-placeholder {
    font-size: 18px;
  }
  #swap-container .swap-crypto-value,
#swap-container .swap-crypto-value::placeholder,
#swap-container .swap-output {
    font-size: 18px;
  }
}
/** 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 {
  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-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-left: 1rem;
  cursor: pointer;
}
.form-search__result-color {
  stroke: var(--gray-dark-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-search__result-color2 {
  fill: var(--gray-dark-color);
}
.form-search__result-item {
  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;
  }
}
/** 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,
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-color: var(--white-input) !important;
  background-image: none !important;
  color: var(--first-text-color) !important;
}

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

.table-components .pagenav {
  margin-top: 3rem;
}
.table-components .pagenav a {
  outline: none;
  border-color: var(--blue-dark-fourth-color);
  border-radius: 2px;
  background-color: var(--blue-dark-fourth-color);
}
.table-components .pagenav a:hover {
  background-color: var(--blue-dark-fourth-color);
}
.table-components .pagenav a:focus {
  color: var(--blue-color);
  border-color: var(--blue-color);
}
.table-components .pagenav div {
  outline: none;
  border-color: var(--blue-dark-fourth-color);
  background-color: var(--blue-dark-fourth-color);
}

/** pagenav end */
.vue-portal-target {
  word-break: break-word;
}

/** 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 */
.widget-wrapper {
  bottom: 30px;
  position: absolute;
  right: 30px;
  z-index: 60;
}

.widget-wrapper__container {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  position: relative;
}

.widget-form-wrapper {
  background: var(--widget-form-outer-gradient, linear-gradient(331deg, #6B7192 19.73%, #2E2E2E 99.02%));
  border-radius: 35px;
  margin: 0 20px 0 0;
  padding: 1px;
  transition: transform 0.4s, opacity 0.4s;
  opacity: 0;
  overflow: hidden;
  transform: scale(0);
  transform-origin: right bottom;
}

.widget-form-wrapper.isOpen {
  opacity: 1;
  transform: scale(1);
}

.widget-form-box {
  background: linear-gradient(118deg, #1B1B1B 48.27%, #1B1B1C 76.3%, #1C1C1F 108.75%, #1C1E24 115.3%, #1E2233 131.15%);
  border-radius: 35px;
  max-width: 430px;
  padding: 40px 20px;
  width: 100%;
}

.widget-form__header {
  margin: 0 0 35px;
  max-width: 300px;
}
.widget-form__header .widget-form__header__title {
  color: #fff;
  font-weight: 600;
  margin: 0 0 15px;
}

.widget-form > .block-button--full {
  margin: 0;
  max-width: inherit;
  width: 100%;
}

.widget-form__label {
  display: block;
  margin: 0 0 20px;
}

.widget-form__input,
.widget-form__textarea {
  background: #1E1E1F;
  border: 1px solid #262628;
  border-radius: 15px;
  margin: 10px 0 0;
  width: 100%;
}

.widget-form__textarea {
  height: 175px;
  outline: none;
  resize: none;
}

.widget-cta-box {
  align-items: center;
  background-color: #1C1C20;
  border: 3px solid #6B7192;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  height: 50px;
  margin: -30px 0 0;
  width: 50px;
  z-index: 70;
}

.widget-cta-box:hover,
.widget-cta-box:hover svg {
  transform: scale(1.05);
}

.widget-cta-box:hover {
  border-color: #8e96bf;
}

.widget-cta-box:hover svg path {
  fill: #8e96bf;
}

.widget-cta-box,
.widget-cta-box svg,
.widget-cta-box svg path,
.widget-cta-box:hover,
.widget-cta-box:hover svg,
.widget-cta-box:hover svg path {
  transition: ease-in-out 0.3s;
}

/** screen media screen start */
@media screen and (max-width: 1000px) {
  .widget-form-wrapper {
    margin: 0 10px 0 0;
  }

  .widget-form-box {
    max-width: 305px;
  }

  .widget-wrapper {
    bottom: 15px;
    right: 15px;
  }

  .widget-cta-box {
    border-width: 2px;
    height: 40px;
    width: 40px;
  }
  .widget-cta-box svg {
    width: 13px;
  }
}
/** screen media screen end */
/** LIST BLOCKS */
/** header start */
.header {
  padding: 0.5rem 0;
  color: var(--white-color);
  background-color: transparent;
}
.header-home {
  margin-bottom: -3rem;
}

/** 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: 10rem;
  z-index: 6;
  cursor: pointer;
}
.header-btn:hover span {
  background-color: var(--blue-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.8rem 0;
  font-weight: 300;
  text-decoration: none;
  outline: none;
  transition: all 0.5s ease-out;
}
.header-nav__list a:hover, .header-nav__list a.active {
  text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.35);
  transition: all 0.5s ease-out;
}

/** 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: #1a1a1a;
  }
  .header-nav.active {
    --tw-scale-y: 1;
  }
  .header-nav__list {
    display: block;
  }
  .header-nav__list a {
    border-bottom: 1px solid #3b3b3b;
    padding: 1rem 0;
  }
  .header-nav__list a:last-child {
    border-bottom: none;
  }
}
/** nav media screen end */
/** link start */
.header-button {
  display: flex;
  align-items: center;
}
.header-button__signin {
  margin: 0 1.5rem;
  transition: all 0.5s ease-out;
}
.header-button__signin:hover {
  color: var(--blue-color);
}
.header-button__signup {
  width: 160px;
  padding: 0.6rem 1.5rem;
  text-align: center;
  background-color: var(--purple-color);
  border: 1px solid var(--purple-color);
  border-radius: 4px;
  transition: all 0.5s ease-out;
}
.header-button__signup:hover {
  background-color: var(--purple-second-color);
}
.header-button__signup:focus {
  background-color: var(--purple-second-color);
}
.header-button__signup:active {
  background-color: var(--purple-color);
}

/** link end */
/** 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(--blue-color);
}
.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 .logout-icon {
  position: relative;
  left: 2px;
}
.header-dropdown__list {
  display: none;
  position: absolute;
  top: 4.9rem;
  right: 0;
  z-index: 8;
  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(--blue-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(--blue-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(--blue-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 */
/** dropdown media screen start */
@media screen and (max-width: 1000px) {
  .header-dropdown__button {
    padding: 1.6rem 0 1.12rem 1rem;
    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.65rem 0 1.65rem 0.5rem !important;
  cursor: pointer;
}
.language-dropdown .header-dropdown__button:hover .header-dropdown__icon-color {
  stroke: #f0f0f0;
  transform: scale(1.025);
}
.language-dropdown .header-dropdown__list-info {
  padding: 1rem 1rem 0.5rem 1rem;
}
.language-dropdown .header-dropdown__list {
  border-radius: 5px;
  border: 1px solid #2C2E30;
  background: #181818;
  padding: 1rem;
}
.language-dropdown .header-dropdown__list .item-language {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.language-dropdown .header-dropdown__list .item-language__active {
  color: #f0f0f0;
}
.language-dropdown .header-dropdown__list a {
  padding: 1rem;
}
.language-dropdown .item-language__active {
  color: var(--blue-color);
}
.language-dropdown .item-language__active .header-dropdown__list-color {
  stroke: #9FA3FF;
}

.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: 0;
  z-index: 8;
  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(--blue-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 {
  background-color: rgba(255, 255, 255, 0.088);
}
.header-dropdown__list a:hover .header-dropdown__list-color, .header-dropdown__list button:hover .header-dropdown__list-color {
  stroke: var(--blue-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(--blue-color);
  }
}
/** language dropdown media screen end */
/** mode start */
.header-mode {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mode {
  position: relative;
  width: 58px;
  height: 32px;
  margin-left: 16px;
  outline: 0;
  flex-shrink: 0;
  border-radius: 30px;
  background-color: #151926;
}
.mode:focus {
  outline: none !important;
}
.mode:before {
  content: "";
  position: absolute;
  width: 32px;
  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;
  background-size: 50%;
  transition: 0.3s;
  background-position: 50%;
}
.mode:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 6px;
  top: 6px;
  background-color: var(--blue-dark-fourth-color);
  border-radius: 50%;
  transition: transform 0.3s;
}

/** 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;
    right: 1rem;
    padding: 0;
  }
}
/** header media screen end */
/** head start */
.head {
  background-color: var(--blue-dark-thir-color);
  padding: 1px 0;
  background-image: url("/images/bg-home.png");
  background-size: cover;
  /** title */
  /** carousel */
}
.head-row {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}
.head-title {
  text-align: center;
  color: var(--white-color);
}
.head-title .typer-text {
  color: var(--blue-color) !important;
}
.head-title .typer-cursor {
  color: var(--blue-color) !important;
}
.head-title h1 {
  width: 100%;
  margin: 16rem auto 0;
  font-weight: 400;
  font-size: 4rem;
}
.head-title p {
  margin-top: 1rem;
  font-size: 1rem;
}
.head-title a {
  display: block;
  margin: 4rem auto 2rem;
  padding: 1rem 0;
  width: 200px;
  font-size: 1rem;
  border: 2px solid var(--white-color);
  border-radius: 4px;
  transition: all 0.5s ease-out;
}
.head-title a:hover {
  background-color: var(--white-color);
  color: var(--gray-dark-color);
}
.head-carousel {
  position: relative;
  margin: 8rem 0 0;
  padding: 0 1rem;
}
.head-carousel::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--white-color);
  opacity: 5%;
}
.head-carousel__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 0 2.8rem;
}
.head-carousel__item {
  width: 16%;
  font-weight: 400;
  font-size: 1rem;
  color: var(--white-color);
}
.head-carousel__coin {
  display: flex;
  justify-content: space-between;
}
.head-carousel__value {
  font-size: 2.5rem;
  margin: 1rem 0 0;
}
.head-carousel__price {
  opacity: 50%;
}

/** head end */
/** head media screen start */
@media screen and (max-width: 1000px) {
  .head {
    /** carousel */
  }
  .head-row {
    width: 96%;
  }
  .head-title h1 {
    font-size: var(--h1-font__size);
  }
  .head-title p {
    width: 80%;
    margin: 1rem auto 0;
    font-size: var(--default-font__size);
  }
  .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-row {
    width: 96%;
  }
  .head-title {
    margin: 1rem 0 6rem;
  }
  .head-title h1 {
    margin: 12rem auto 0;
    font-size: var(--h2-font__size);
  }
  .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;
  padding: 1rem;
}
.table-home__title {
  margin: 10rem 0 6rem;
}
.table-home__title h2 {
  font-weight: 400;
  font-size: 3rem;
  text-align: center;
}
.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(--blue-color);
  transition: all 0.5s ease-out;
}
.table-home__link a:hover {
  color: var(--blue-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: 1rem;
}
.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__value {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 0;
}
.list-head__title {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--second-text-color);
}

.list-body tr {
  border-bottom: 1px solid var(--border-line-color);
}
.list-body tr:hover {
  background-color: var(--rows-color);
}
.list-body__subtitle {
  display: none;
}
.list-body__value {
  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 {
  display: block;
  width: 150px;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
  border-radius: 4px;
  outline: none;
  transition: all 0.5s ease-out;
}
.list-body__button:hover {
  background-color: var(--blue-color);
  color: var(--white-color);
}

/** 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;
  }

  .list-head {
    display: none;
  }

  .list-body tr:hover {
    background-color: none !important;
  }
  .list-body td {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .list-body td:first-child {
    padding-top: 3rem;
  }
  .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: block;
  }
}
/** 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 */
/** screen start */
.screen {
  margin: 10rem 0 2rem;
  padding: 2rem 0;
  background-color: var(--rows-color);
}
.screen-row {
  max-width: 1536px;
  width: 100%;
  margin: 0 auto;
}
.screen-title {
  margin: 5rem 0 2rem;
  text-align: center;
  font-weight: 400;
}
.screen-title h2 {
  font-size: 3rem;
}
.screen-title p {
  font-size: 1.5rem;
  max-width: 700px;
  width: 100%;
  margin: 1.5rem auto 0;
}
.screen-img {
  max-width: 1000px;
  width: 100%;
  margin: 2rem auto;
  padding: 1rem;
}
.screen-img img {
  max-width: 100%;
  width: 100%;
}

/** screen end */
/** screen media screen start */
@media screen and (max-width: 1000px) {
  .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 */
/** 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: 2px solid var(--blue-color);
  width: 100%;
  top: 4.5rem;
  left: 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(--blue-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(--blue-color);
    width: 100%;
    top: 4.5rem;
    left: 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(--blue-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 4rem;
  padding: 1px 0;
}
.features-row {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.features-title {
  margin: 8rem 0 6rem;
}
.features-title h2 {
  font-weight: 400;
  font-size: 3rem;
  text-align: center;
}
.features-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
}
.features-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 48%;
  margin-bottom: 2rem;
  padding: 2rem;
  border: 1px solid var(--border-line-color);
  border-radius: 4px;
}
.features-item__icon {
  display: block;
  width: 60px;
  height: 60px;
  margin-right: 1.5rem;
  padding: 1rem;
  border-radius: 50%;
  background-color: var(--rows-color);
}
.features-item__icon-color {
  fill: var(--purple-color);
}
.features-item__icon svg {
  width: 30px;
  height: 30px;
}
.features-item__title h4 {
  font-weight: 400;
  font-size: 1.5rem;
}
.features-item__title p {
  margin: 1rem 0;
  font-size: 0.9rem;
}

/** features end */
/** features media screen start */
@media screen and (max-width: 1000px) {
  .features-title {
    margin: 8rem 0 3rem;
  }
  .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: 8rem 0 4rem;
  }
  .features-title h2 {
    font-size: 2rem;
  }
  .features-item {
    display: block;
    text-align: center;
  }
  .features-item__icon {
    margin: 1rem auto;
  }
  .features-item__title h4 {
    font-size: 1.2rem;
  }
}
/** features media screen end */
/** section footer start */
.section-footer {
  border-top: 1px solid #3A3C43;
  background: #212225;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--white-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(--white-color);
  border-radius: 4px;
  transition: all 0.5s ease-out;
}
.section-footer .banner-text a:hover {
  background-color: var(--white-color);
  color: var(--gray-dark-color);
}
.section-footer .footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 4rem 0 2rem;
  /** social */
}
.section-footer .footer .main-logo {
  width: 100%;
  max-width: 100px;
}
.section-footer .footer-left_title {
  float: left;
}
.section-footer .footer-right {
  width: auto;
}
.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;
}
.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(--blue-color);
}
.section-footer .footer .social {
  margin: 3rem 0 2rem;
}
.section-footer .footer .social h4 {
  margin-bottom: 1.8rem;
}
.section-footer .footer .social nav {
  display: flex;
  justify-content: flex-start;
}
.section-footer .footer .social a {
  outline: none;
  text-decoration: none;
  display: block;
  margin-right: 1rem;
  margin-bottom: 10px;
  padding: 0.7rem;
  transition: all 0.5s ease-out;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  opacity: 0.5;
}
.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(--white-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-left_title {
    float: left;
  }
  .section-footer .footer .social nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .section-footer .footer .social a {
    word-break: break-word;
  }
}
/** 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-left_title {
    float: left;
  }
  .section-footer .footer-right {
    width: 100%;
  }
  .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;
  }
  .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(--blue-color);
  }
}
/** footer media screen end */
/** footer media screen start */
@media screen and (max-width: 550px) {
  .section-footer {
    /** footer */
    /** copyright */
  }
  .section-footer .footer {
    margin: 0 0 2rem;
    padding: 2rem 0;
  }
  .section-footer .footer-left_title {
    float: left;
  }
  .section-footer .footer-right {
    width: 100%;
  }
  .section-footer .footer-right__navigation {
    display: block;
  }
  .section-footer .footer-right__item {
    margin-bottom: 2rem;
    width: 30%;
  }
  .section-footer .footer-right__item h4 {
    margin-bottom: 1rem;
  }
  .section-footer .copyright {
    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 */
/** main container start */
.max-w-screen-2xl {
  padding: 0 1rem;
}

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

/** trade start */
.trade {
  margin: 3rem 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: 72%;
}
.trade-head__row-right {
  width: 27%;
}
.trade-head__block-top {
  padding: 1.5rem;
}
.trade-head__block-middle {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 0 1.5rem 1.5rem;
}
.trade-head__left {
  width: 35%;
  padding-right: 0.4rem;
}
.trade-head__right {
  width: 64%;
  padding-left: 0.4rem;
}
.trade-head__right iframe {
  padding-right: 1.5rem;
}

/** 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: 1.5rem;
  }
  .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: 10px;
  background-color: var(--border-line-color);
  border-radius: 4px;
}
.vue-slider-process {
  background-color: var(--progress-color);
  border-radius: 4px;
}
.vue-slider-mark {
  width: 15px !important;
  height: 15px !important;
  background-color: var(--border-line-color);
  border-radius: 10px;
  border: 4px solid var(--white-color);
  cursor: pointer;
}
.vue-slider-mark-active {
  background-color: var(--progress-color);
}
.vue-slider-dot-handle {
  position: relative;
  top: -4px;
  width: 20px;
  height: 20px;
  background-color: var(--progress-color);
  border: 4px solid var(--white-color);
  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;
}

.widget {
  /*
  &-container {

  }

  &-head {

  }

  &-body {

  }
  */
}
.widget .mobile-head-title {
  display: none;
}
.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 {
  margin-right: 9rem;
  font-size: var(--default-font__size);
}
.widget-market-stats .widget-stats__title__market-name {
  margin-bottom: 4px;
  cursor: pointer;
}
.widget-market-stats .widget-stats__title__market-name span.market-label {
  color: var(--gray-dark-color);
  text-decoration: underline;
}
.widget-market-stats .widget-stats__title__market-name div.absolute {
  z-index: 1 !important;
}
.widget-market-stats .widget-stats__title__currency-name {
  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: 40px;
}
.widget-market-stats .widget-stats__list__lable-title {
  margin-bottom: 6px;
  color: var(--second-text-color);
}

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

@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: #ffffff;
  margin-bottom: 2rem;
  padding: 1.5rem;
  min-width: 350px;
  box-shadow: 3px 5px 5px 0px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 3px 5px 5px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 3px 5px 5px 0px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border-line-color);
  /** 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(--blue-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(--blue-color);
}
.widget-markets__search {
  margin-top: 0.5rem;
  border-bottom: 1px solid var(--border-line-color);
  display: flex;
  justify-content: flex-start;
}
.widget-markets__search:hover {
  border-bottom: 1px solid var(--blue-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:-ms-input-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(--blue-color);
}
.widget-markets__list {
  height: 180px;
}
.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(--blue-color);
}
.widget-markets__list-item__price {
  outline: none;
  width: 38%;
  text-align: left;
}
.widget-markets__list-item__change {
  outline: none;
  width: 24%;
  text-align: right;
  margin-right: 0.8rem;
}
.widget-markets .__rail-is-vertical {
  right: 0px !important;
}

@media screen and (max-width: 1200px) {
  .widget-markets {
    padding: 1rem;
  }
}
.widget-market-trades {
  min-height: 260px;
  margin-top: 2rem;
  /** 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: 260px;
}
.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;
}
.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);
  /** title start */
  /** title end */
  /** list start */
  /** list end */
  /** empty start */
  /** empty end */
}
.module-orderbook__sell .module-orderbook .mobile-head-title {
  display: none;
}
.module-orderbook__sell .module-orderbook__title {
  display: flex;
  justify-content: space-between;
  font-size: var(--small-font__size);
  color: var(--first-color);
  margin: 0;
  margin-bottom: 0.8rem;
  color: #8B8D98;
}
.module-orderbook__sell .module-orderbook__title-price {
  width: 25%;
  text-align: left;
}
.module-orderbook__sell .module-orderbook__title-amount {
  width: 28%;
  text-align: right;
}
.module-orderbook__sell .module-orderbook__title-total {
  width: 32%;
  text-align: left;
}
.module-orderbook__sell .module-orderbook__list {
  font-size: var(--small-font__size);
  height: 150px;
  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: 25%;
  text-align: left;
}
.module-orderbook__sell .module-orderbook__list-item__amount {
  width: 28%;
  text-align: right;
}
.module-orderbook__sell .module-orderbook__list-item__total {
  width: 32%;
  text-align: left;
}
.module-orderbook__sell .module-orderbook__list-item__progressbar {
  transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
  position: absolute;
  top: 2px;
  right: 0px;
  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: 150px;
  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);
  /** 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: 1rem 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: 25%;
  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: 150px;
  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: 25%;
  text-align: left;
}
.module-orderbook__buy .module-orderbook__list-item__amount {
  width: 28%;
  text-align: right;
}
.module-orderbook__buy .module-orderbook__list-item__total {
  width: 32%;
  text-align: left;
}
.module-orderbook__buy .module-orderbook__list-item__progressbar {
  transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
  position: absolute;
  top: 2px;
  right: 0px;
  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: 150px;
  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;
}

/** .module orderform start */
.module-orderform {
  /** .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: 2rem;
  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(--dark-body-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(--blue-color);
  box-shadow: var(--blue-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(--blue-color);
  box-shadow: var(--blue-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 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: 0;
  padding: 0 2rem;
  /** 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(--gray-dark-color);
}
.module-orderopen__navigation-active {
  color: var(--gray-dark-color);
  border-bottom: 2px solid var(--gray-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(--gray-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;
  text-align: left;
  color: var(--second-text-color);
}
.module-orderopen__table .table-list {
  font-size: var(--small-font__size);
}
.module-orderopen__table .table-list__subtitle {
  display: none;
}
.module-orderopen__table .table-list__item {
  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;
  text-align: left;
  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(--blue-color);
}
.module-orderopen__login-text a:hover {
  text-decoration: underline;
}
.module-orderopen__notfont {
  font-size: 0.8rem;
  text-align: center;
  padding: 3rem 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(--blue-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(--blue-color);
}
.module-orderopen__notfont-text a:hover {
  text-decoration: underline;
}

/** .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: 5rem 0 3rem;
  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 {
  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 {
  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 {
  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 {
  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 */
}
/* 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 */
}
/* 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 */
}
/* 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 */
}
/* 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 */
}
/* 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 */
}
/** TYPOGRAPHIA SETTINGS */
:root {
  /* TITLE SIZE */
  --h1-font__size: 3rem;
  --h2-font__size: 2rem;
  --h3-font__size: 1rem;
  /* TEXT SIZE */
  --default-font__size: 0.90rem;
  --small-font__size: 0.80rem;
  --big-font__size: 1.30rem;
  /* 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: #FBFDFF;
  --first-text-color: #8B8D98;
  --second-text-color: #8B8D98;
  --third-text-color: #262744;
  --fourth-text-color: #252542;
  --border-line-color: transparent;
  --tr-hover-color: transparent;
  --rows-color: transparent;
  --hover-v1-color: #2C58DF;
  --white-input: #1E2233;
  --progress-color: #8B8D98;
  --select-option: #1E2233;
  --menu-btn-color: #ffffff;
  --gray-dark-color: #B9BAC0;
  --blue-dark-second-color: #151926;
  --blue-dark-thir-color: #1d2234;
  --blue-dark-fourth-color: #1E2233;
  --red-color: #bb4040;
  --red-second-color: #d12f44;
  --green-color: #229E6B;
  --green-second-color: #25b176;
  --blue-color: #2C58DF;
  --gray-color: #BABABA;
  --purple-color: #181c2b;
  --purple-second-color: #4A63E7;
  --purple-third-color: #161a28;
  --white-color: #ffffff;
  /* COLOR THEMES DARK */
  --dark-body-color: #131722;
  --dark-text-color: #B9BAC0;
}

body {
  font-family: "Poppins", sans-serif;
  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);
}

/** Spacing and Sizes global start **/
body {
  height: 100%;
  scroll-behavior: smooth;
}

.main__container,
.main__container__content,
.site-layout {
  height: 100%;
}

.main-section {
  position: relative;
}

/** Spacing and Sizes global end **/
/** Font global start */
body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--gray-dark-color);
  background-color: var(--sixth-color);
}

body div.site-layout {
  background: linear-gradient(180deg, #1F1F1F 10.14%, #1B1B1B 27.69%, #1B1B1B 42.33%, #1C1D26 90.16%, #1C1F2F 100%) !important;
}

main {
  height: 100%;
}

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

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

.mobbar {
  display: none;
}

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

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

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

.swap-inner {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

div.form-box div.input-border-light,
.components-filter__item .filter-select,
.components-filter__item input,
.components-filter__item select {
  border: 1px solid #363445;
  border-radius: 8px;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-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(--gray-dark-color);
}

/** Color global end */
/** **/
.header-button__account {
  border-radius: 12px;
  border: 1px solid #292929;
  padding: 0.8rem 1.5rem;
}

.header-button__account:hover {
  background-color: #292929;
}

.header-button__account,
.header-button__account:hover {
  transition: ease-in-out 0.3s;
}

/** **/
/** Homepage start **/
.header-home {
  position: absolute;
  width: 100%;
}

@media (max-width: 1024px) {
  .header-home {
    position: relative;
    z-index: 40;
  }
}
/** Homepage end **/
/** Tokenization Landing Page start */
.lp-header {
  background: rgba(45, 50, 73, 0.15);
  border-bottom: 1px solid;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-image-slice: 1;
  border-width: 1px;
  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  /* Note: backdrop-filter has minimal browser support */
  padding: 40px 30px;
  position: absolute;
  width: 100%;
}

.header-gradient {
  border-image-source: linear-gradient(90deg, rgba(62, 58, 241, 0.58) 1.43%, rgba(168, 179, 218, 0) 100%);
}

.lp-header .header__row {
  max-width: 1920px;
}

.header__nav {
  display: flex !important;
}

.header__nav li {
  font-weight: 300;
  list-style-type: none;
  margin: 0 30px 0 0;
  padding: 0;
}

.header__nav li:last-child {
  margin: 0;
}

.header__nav__link {
  cursor: pointer;
}

.header-socials {
  -moz-column-gap: 25px;
       column-gap: 25px;
  display: grid;
  grid-template-columns: auto auto auto;
}

.header-socials__icon {
  align-items: center;
  display: flex;
}

.header-socials__icon svg {
  cursor: pointer;
  transition: ease-in-out 0.25s;
}

.header-socials__icon svg:hover {
  filter: drop-shadow(0px 0px 12px rgba(104, 131, 253, 0.1));
  transform: rotate(-8deg) scale(1.08);
  transition: ease-in-out 0.25s;
}

.md-pr-45 {
  padding: 0 45px 0 0;
}

.lp-section {
  margin: 0 0 180px 0;
}

.lp-section#first {
  margin: 0;
  padding: 290px 0 200px;
}

.lp-section#tokens {
  margin: -6rem 0 180px;
}

.align-center {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.lp-background-image {
  height: auto;
  position: absolute;
  top: 0;
  width: 100%;
}

footer.lp-footer {
  background-color: #191D2B;
  background-image: none;
  padding: 30px 0;
}

.main-title {
  margin: 0 0 80px 0;
}

.lp-footer {
  align-items: center;
  display: flex;
  justify-content: center;
}

.lp-container {
  margin: 0 auto;
  max-width: 1580px;
  padding: 0 2rem;
  width: 100%;
}

.lp-container__text-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.align-center .lp-container__text-box {
  text-align: center;
}

.main-title {
  font-size: 110px;
  text-align: center;
}

.main-title,
.section-title {
  background: linear-gradient(138.31deg, #FFFFFF 28.76%, #A2A9EE 115.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 100%;
  text-fill-color: transparent;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}

.section-title {
  font-size: 45px;
  margin: 0 0 25px 0;
}

.section-title--light {
  font-weight: 300;
}

.light-paragraph {
  color: #E4E4E4;
  margin: 0 0 70px 0;
}

.dark-header {
  color: #41475F;
  margin: 0 0 10px 0;
}

.light-paragraph,
.dark-header {
  font-size: 18px;
  font-weight: 300;
}

.btn {
  cursor: pointer;
}

.btn-wrapper {
  background: linear-gradient(94.65deg, rgba(82, 94, 203, 0.56) 0.35%, #525ECB 100%);
  border-radius: 5px;
  box-shadow: -2px 4px 4px rgba(0, 0, 0, 0.14);
  padding: 1px;
  transition: ease-in-out 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-wrapper:hover {
  background: linear-gradient(94.65deg, rgba(120, 134, 255, 0.56) 0.35%, #5768f9 100%);
  box-shadow: 0px 0px 25px rgba(69, 91, 213, 0.3);
  transform: translate(0, -7px) scale(1.04);
  transition: ease-in-out 0.3s;
}

.btn-cta-purple {
  align-items: center;
  background: linear-gradient(98.36deg, #4A63E7 0%, #4B41C8 100%);
  box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.18);
  border: 0;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  font-size: 24px;
  justify-content: center;
  padding: 20px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.lp-container__tokens-box {
  background: linear-gradient(180deg, #1A1E2E 0%, rgba(26, 30, 46, 0) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 0;
  border-left: 3px solid;
  border-right: 3px solid;
  border-top: 3px solid;
  border-image-slice: 1;
  border-width: 3px;
}

.lp-container__tokens-box,
.lp-container__with-doric {
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  max-width: 1580px;
  padding: 3rem 4rem;
  position: relative;
  width: 100%;
}

.lp-container__tokens-box > div,
.lp-container__with-doric > div {
  width: 45%;
}

.lp-container__tokens-img {
  display: flex;
  justify-content: right;
}

.lp-container__tokens-box__gradient {
  border-image-source: linear-gradient(180deg, #3E56AE 0%, rgba(62, 86, 174, 0) 100%);
}

.lp-container__tokens-box > div.purple-circle {
  background-color: #4D62E6;
  border-radius: 50%;
  height: 27px;
  position: absolute;
  top: -14.5px;
  width: 27px;
}

.lp-container div.purple-glow-box {
  display: flex;
  height: 380px;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  top: -380px;
  width: 100%;
}

.purple-glow {
  background: rgba(77, 98, 229, 0.05);
  border-radius: 50%;
  filter: blur(62px);
  height: 665px;
  margin: 290px auto 0;
  width: 665px;
}

.vertical-purple-line {
  background: linear-gradient(180deg, rgba(62, 87, 175, 0) 0%, #3E57AF 100%);
  height: 377px;
  width: 3px;
}

.lp-section#without-doric .lp-container__text-box {
  margin: 0 auto;
  max-width: 665px;
  width: 100%;
}

.without-doric-diagram {
  display: block;
}

.without-doric-diagram__mobile {
  display: none;
}

.lp-container__faq {
  width: 100%;
}

.accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  border: 1px solid #000;
}

.questions {
  padding: 30px 0 0;
}

.accordion {
  color: #4C5D9B;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-label {
  border-color: #4C5D9B;
  border-style: solid;
  border-width: 0 0 1px;
  display: flex;
  font-size: 45px;
  font-weight: 300;
  justify-content: space-between;
  padding: 1em;
  cursor: pointer;
  color: #4C5D9B;
}

.accordion:first-child .accordion-label {
  border-width: 1px 0px;
}

.accordion-content {
  font-size: 18px;
  max-height: 0;
  padding: 0 1em;
  transition: all 0.35s;
}

.rating-box {
  background-color: #1c1d25;
  border: 1px solid #3B415B;
  margin: 50px 0 0;
  max-width: 380px;
  padding: 27px 25px;
  width: 100%;
}

.rating-box__heading {
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 25px;
}

.rating-box__starts {
  display: flex;
}

input[type=ratio].default-ratio {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.custom-rating-ratio {
  position: relative;
}

.custom-rating-ratio__icon {
  display: block;
  margin: 0 6px 0 0;
}
.custom-rating-ratio__icon svg {
  display: block;
  fill: transparent;
  transition: ease-in-out 0.25s;
}

.selected.custom-rating-ratio .custom-rating-ratio__icon svg {
  fill: #BEC8EA;
}

.step-form-feedback {
  background: #1d1e25;
  border: 1px solid #3a3e4f;
  border-radius: 12px;
  height: 188px;
  margin: 10px 0 10px;
  outline: none;
  resize: none;
  width: 100%;
}

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

.feedback-comment {
  margin: 40px 0 0;
}
.feedback-comment label {
  font-size: 16px;
  font-weight: 300;
}

.feedback-comment-button {
  background-color: #22273b;
  border-radius: 8px;
  padding: 12px 22px;
}

input:checked ~ .accordion-content {
  max-height: 100vh;
  padding: 1em;
}

@media screen and (max-width: 1024px) {
  .md-pr-45 {
    padding: 0;
  }

  .light-paragraph {
    font-size: 16px;
    margin: 0 0 45px 0;
  }

  .btn-wrapper {
    margin: 0 auto;
  }

  .lp-section {
    margin: 0 0 60px 0;
  }

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

  .lp-header {
    padding: 10px 15px;
  }

  .header-nav {
    top: 2.5rem;
  }

  .header__row-right {
    display: none;
  }

  .header-layout .header__row-right {
    display: flex;
    align-items: center;
  }

  .header-btn {
    right: 0;
  }

  .lp-section#first {
    padding: 190px 0 155px;
  }

  .lp-section#tokens {
    margin: -6rem 0 107px;
  }

  .lp-container {
    padding: 0 1.5rem;
  }

  .lp-background-image {
    top: 50px;
  }

  .main-title {
    font-size: 33px;
    margin: 0 0 40px 0;
  }

  .section-title {
    font-size: 25px;
  }

  .section-main-image {
    margin: 55px auto 0;
  }

  .btn-cta-purple {
    font-size: 18px;
    padding: 10px 20px;
  }

  .vertical-purple-line {
    height: 170px;
  }

  .purple-circle {
    height: 21px;
    top: -13px;
    width: 21px;
  }

  .purple-glow {
    filter: blur(40px);
    height: 150px;
    margin: 300px auto 0;
    width: 150px;
  }

  .lp-container__tokens-box {
    padding: 3.5rem 1.4rem 3rem;
  }

  .lp-container__with-doric {
    padding: 3rem 0;
  }

  .lp-container__tokens-box,
.lp-container__with-doric {
    flex-direction: column;
  }

  .lp-container__tokens-box > div,
.lp-container__with-doric > div {
    text-align: center;
    width: 100%;
  }

  .without-doric-diagram {
    display: none;
  }

  .without-doric-diagram__mobile {
    display: block;
  }

  .questions {
    padding: 10px 0 0;
  }

  .accordion-label {
    font-size: 25px;
  }

  .accordion-content {
    font-size: 16px;
  }

  .footer__rights {
    text-align: center;
  }
}
/** Tokenization Landing Page end */
/** Tokenization Create Token Forms start */
.step-form-wrapper {
  height: 100vh;
}

.step-form-section {
  align-items: center;
  background-image: url("/images/background-geometric-purple-pattern.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 15px 0;
  width: 100%;
}

.step-form-container {
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
}

.step-form-content {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: auto;
  scrollbar-color: #2E3656 #171B29;
  width: 100%;
}

/* ===== Scrollbar CSS ===== */
/* Chrome, Edge, and Safari */
.step-form-content::-webkit-scrollbar {
  border-radius: 10px;
  width: 8px;
}

.step-form-content::-webkit-scrollbar-track {
  background: #23262F;
  border-radius: 10px;
}

.step-form-content::-webkit-scrollbar-thumb {
  background: #373e5d;
  border-radius: 10px;
  border: 0px solid #ffffff;
}

.isComplete.step-form-content {
  align-items: center;
}

.glass-box {
  align-items: center;
  background: rgba(32, 39, 69, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid #39405E;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1280px;
  padding: 45px 65px;
  width: 100%;
}

.steps-box {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

.steps-box__circle {
  align-items: center;
  background-color: #3C4460;
  border-radius: 50%;
  display: flex;
  font-size: 21px;
  justify-content: center;
  height: 70px;
  min-width: 70px;
  width: 70px;
}

.isActive.steps-box__circle {
  background-color: #5C56A5;
}

.steps-box__line-wrapper {
  background-color: #3C4460;
  margin: 0 35px;
  max-width: 200px;
}

.steps-box__line-wrapper,
.steps-box__line {
  border-radius: 25px;
  height: 10px;
  width: 100%;
}

.isInactive .steps-box__line {
  background-color: #5C56A5;
  max-width: 100px;
}

.isActive.steps-box__line-wrapper .steps-box__line {
  background-color: #5C56A5;
  border-radius: 25px;
  max-width: inherit;
}

.horizontal-divisor {
  background-color: #39405E;
  height: 1.8px;
  margin: 30px 0 50px;
  width: 100%;
}

.vertical-divisor {
  background-color: #39405E;
  height: 400px;
  margin: 0 100px;
  width: 1.8px;
}

.step-form-vector-box__header {
  margin: 0 0 40px;
}

.step-form-title {
  font-size: 24px;
  margin: 0 0 8px;
}

.step-form-subtitle {
  color: #6F6C90;
}

.step-form-vector-box__img {
  margin: 0 auto;
}

.step-form-box {
  max-width: 490px;
  width: 100%;
}

.step-form-box__item {
  margin: 0 0 20px;
}

.step-form-box__item:last-child {
  margin: 0 auto;
}

.step-form-box__item label {
  display: block;
  width: 100%;
}

.step-form-box__item input,
.step-form-box__item textarea {
  border-radius: 6px;
  border: 1px solid #39405E;
  background: #1E2233;
  box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
  display: block;
  margin: 12px 0 0;
  padding: 10px 12px;
  width: 100%;
}

.step-form-box__item input::-moz-placeholder {
  color: #3A4161;
}

.step-form-box__item input:-ms-input-placeholder {
  color: #3A4161;
}

.step-form-box__item input::placeholder {
  color: #3A4161;
}

.step-form-box__item textarea {
  height: 350px;
  resize: none;
}

.step-form-box__item input:focus,
.step-form-box__item textarea:focus,
.step-form-button__item:focus {
  outline: none;
}

.step-form-box__two-fields {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.step-form-box__two-fields label {
  width: 45%;
}

input.box-file,
.box-file__button {
  display: none;
}

.custom-lable {
  margin: 0 0 12px;
}

.custom-lable span {
  color: #6F6C90;
  margin: 0 0 0 8px;
}

.step-form-box__upload {
  align-items: center;
  border-radius: 6px;
  border: 1px dashed #39405E;
  background: #1E2233;
  box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box-file__icon {
  margin: 0 0 25px;
}

.step-form-box__upload {
  height: 350px;
}

.step-form-box__upload label {
  text-align: center;
}

.box-file__choose-file {
  cursor: pointer;
}

.step-form-buttons {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin: 30px auto 0;
  max-width: 1280px;
  position: relative;
  width: 100%;
}

.step-form-button__item {
  border: 0 solid;
  border-radius: 5px;
  display: block;
  font-weight: 600;
  padding: 15px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.step-form-button__item--forward {
  background: rgba(14, 14, 20, 0.12);
  color: rgba(156, 157, 237, 0.1);
}

.isActive.step-form-button__item--forward,
.step-form-button__item--default {
  background: #5C56A5;
  border: 1px solid transparent;
  box-shadow: 0px 3px 12px 0px rgba(74, 58, 255, 0.18);
  color: #fff;
  transition: ease-in-out 0.25s;
}

.isActive.step-form-button__item--forward:hover,
.step-form-button__item--default:hover {
  background: #6862ba;
  transform: scale(1.025);
  transition: ease-in-out 0.25s;
}

.step-form-button__item--backwards {
  border: 1px solid #39405E;
  color: #6F6C8F;
  margin: 0 20px 0 0;
  transition: ease-in-out 0.25s;
}

.step-form-button__item--backwards:hover {
  background: #191c2a;
  transform: scale(1.025);
  transition: ease-in-out 0.25s;
}

@media (max-width: 1024px) {
  .step-form-wrapper {
    height: auto;
    padding: 20px 0 30px;
  }

  .step-form-box__two-fields {
    display: block;
    width: 100%;
  }

  .step-form-box__two-fields label {
    margin: 0 0 20px;
    width: 100%;
  }

  .steps-box__circle {
    font-size: 14px;
    height: 40px;
    min-width: 40px;
    width: 40px;
  }

  .glass-box {
    padding: 25px 35px;
  }

  .steps-box__line-wrapper,
.steps-box__line {
    height: 5px;
    width: 100%;
  }

  .steps-box__line-wrapper {
    margin: 0 5px;
    max-width: 30px;
  }

  .step-form-vector-box__header {
    margin: 0 0 30px;
  }

  .step-form-vector-box__img {
    margin: 0 0 45px;
    max-width: 250px;
    width: 100%;
  }

  .vertical-divisor {
    display: none;
  }

  .step-form-content {
    flex-direction: column;
  }

  .step-form-container.tokens-list {
    padding: 20px 0 0;
  }
  .step-form-container.tokens-list .step-form-content {
    flex-direction: initial;
    padding: 0 10px 0 0;
  }
  .step-form-container.tokens-list .glass-box.h-100-percent {
    padding: 25px 15px;
  }
  .step-form-container.tokens-list .tokens-box {
    margin: 0;
  }
}
.load-screen-wrapper {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #00000087;
  display: none;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
@-webkit-keyframes loadAnimation {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loadAnimation {
  100% {
    transform: rotate(360deg);
  }
}
.load-screen-wrapper .load-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 8px dashed #5C56A5;
  -webkit-animation: loadAnimation 1.5s linear infinite;
          animation: loadAnimation 1.5s linear infinite;
}

.isActive.load-screen-wrapper {
  display: flex;
}

/** Tokenization Create Token Forms end */
/** Tokenization List Tokens start **/
.step-form-container.h-50-percent {
  height: calc(100% - 30%);
}

.glass-box.h-100-percent {
  height: 100%;
  padding: 30px 25px;
}

.tokens-box {
  margin: 5px 20px;
  width: 100%;
}

.tokens-box__item__child {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}

.tokens-box__item__child .tokens-box__item__img {
  align-items: center;
  display: flex;
  height: 40px;
  justify-content: center;
  margin: 0 12px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  width: 40px;
}

.tokens-box__item {
  align-items: center;
  background: linear-gradient(180deg, #1F2129 0%, #1D1F25 100%);
  border: 1px solid #2B3148;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
  padding: 30px;
}

.tokens-box__item > div:nth-child(1) {
  flex: 3;
}

.tokens-box__item > div:nth-child(2),
.tokens-box__item > div:nth-child(3) {
  flex: 1;
}

.tokens-box__item__status p span {
  color: #DF3839;
}

.tokens-box__item__status.green p span {
  color: #62E567;
}

.tokens-box__item__status.yellow p span {
  color: #E5B22C;
}

.tokens-box__item__actions {
  display: flex;
  justify-content: flex-end;
}

.tokens-box__item__actions > div {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.tokens-box__item__actions .delete {
  display: flex;
}

.tokens-box__item__actions > div svg {
  cursor: pointer;
  margin: 0 0 0 10px;
}

.tokens-box__item__actions > div svg path,
.tokens-box__item__actions > div svg:hover path {
  transition: 0.2s ease-in-out;
}

.tokens-box__item__actions > div svg:hover path {
  fill: #39415f;
}

.step-form-container.tokens-list .glass-box {
  height: calc(100vh - 50vh);
}

.tokens-list-header {
  margin: 0 auto 40px;
  max-width: 550px;
  text-align: center;
  width: 100%;
}
.tokens-list-header .tokens-list-header__title {
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  margin: 0 0 10px;
}
.tokens-list-header .tokens-list-header__description {
  color: rgba(239, 245, 255, 0.69);
  font-weight: 300;
  margin: 0 auto;
  max-width: 450px;
}

/** Tokenization List Tokens end **/
/** Home Page start **/
#homepage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1f1f1f 10.14%, #1b1b1b 27.69%, #1b1b1b 42.33%, #1c1d26 90.16%, #1c1f2f 100%);
}
#homepage .header-nav {
  background: transparent;
}
#homepage .bg-gradient {
  background: linear-gradient(180deg, #1f1f1f 10.14%, #1b1b1b 27.69%, #1b1b1b 42.33%, #1c1d26 90.16%, #1c1f2f 100%);
}
#homepage .lp-header-home {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 40px 30px;
  position: absolute;
  width: 100%;
}
#homepage .lp-section-home {
  margin: 0 0 180px 0;
}
#homepage .lp-section-home#first {
  margin: 0;
  padding: 127px 0 110px;
}
#homepage .lp-header-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 15px 25px;
  border: 1px solid #292929;
  border-radius: 12px;
  max-width: 160px;
}
#homepage .home-main-title {
  padding-top: 36px;
  color: #ffffff;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
}
#homepage .home-main-title span {
  color: #4a63e7;
}
#homepage .lp-footer-home {
  padding: 4rem;
  color: white;
  width: 100%;
  align-items: center;
  display: flex;
  background-color: #212225;
  border-top: 1px solid #3a3c43;
}
#homepage .lp-footer-logo {
  max-width: 313px;
  width: 100%;
}
#homepage .home-main-background {
  background-image: url("/images/exchange-blockchain-light-background.png");
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
#homepage .home-main-background img {
  max-width: 600px;
  width: 100%;
}
#homepage .home-btn-wrapper {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: ease-in-out 0.3s;
  padding: 22px 29px;
  border: 0.77px solid #686D85;
  box-shadow: 0px 0px 12px 0px #2e92ef17;
}
#homepage .home-btn-purple {
  background: linear-gradient(342.91deg, #4860e0 11.7%, #3447ad 88.18%);
  border: 0.77px solid;
  border-image-source: linear-gradient(180deg, rgba(14, 32, 124, 0) 0%, rgba(129, 145, 224, 0.79) 67.17%);
  box-shadow: 0px 0px 12px 0px #00000017;
  box-shadow: 0px -4px 4px 0px #0000000f inset;
}
#homepage .home-btn-wrapper:hover,
#homepage .home-community-btn:hover,
#homepage .home-trade-btn:hover {
  transform: translate(0, -7px) scale(1.04);
  transition: ease-in-out 0.3s;
}
#homepage .home-trade-info,
#homepage .home-trade-btn {
  border-radius: 28px;
  background: linear-gradient(20.94deg, #23262f 15.28%, #1f2128 33.09%, #1f2028 60.87%, #1e2026 77.3%, #1d1f25 87.34%);
  border: 1px solid #424654;
}
#homepage .home-trade-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  height: 100px;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(16, 17, 19, 0.55), rgba(16, 17, 19, 0.55));
  border: 1px solid #313131;
}
#homepage .home-trade-icon span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background-color: #1f2129;
  border-radius: 100px;
  box-shadow: 0px 4px 12px 0px #0000001f;
}
#homepage .home-trade-icon span img {
  max-width: 40px;
  width: 100%;
}
#homepage .home-trade-btn {
  max-width: 132px;
  width: 100%;
  padding: 22px 29px;
  transition: ease-in-out 0.3s;
  border-radius: 12px;
}
#homepage .home-community-section {
  width: 100%;
  background: linear-gradient(270.32deg, #4a63e7 0.08%, #4a63e2 43.67%, #3b50c1 99.72%);
  border-radius: 28px;
  padding: 4rem;
}
#homepage .home-community-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #18191e 0%, #1f2129 127.01%);
  border: 0.77px solid;
  border-image-source: linear-gradient(180deg, rgba(79, 83, 102, 0.17) 0%, rgba(67, 74, 107, 0.43) 67.17%);
  padding: 22px 29px;
  border-radius: 12px;
  transition: ease-in-out 0.3s;
}
@media (max-width: 1024px) {
  #homepage .home-main-title {
    font-size: 60px;
  }
  #homepage .home-community-section {
    text-align: center;
    flex-direction: column;
  }
  #homepage .lp-footer-logo {
    max-width: 250px;
  }
  #homepage .lp-footer-home {
    padding: 2rem;
  }
}
@media (max-width: 1000px) {
  #homepage .lp-header-button {
    display: none;
  }
}
@media (max-width: 768px) {
  #homepage .home__header__nav {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }
  #homepage .header-nav, #homepage .home__header__nav {
    background: linear-gradient(180deg, #1f1f1f 10.14%, #1b1b1b 27.69%, #1b1b1b 42.33%, #1c1d26 90.16%, #1c1f2f 100%);
  }
}

/** Home Page end **/
