@charset "UTF-8";
/** LIST COMPONENTS */
/** components title start */
.components-title h2 {
  margin: 3rem 0 2rem;
  font-size: var(--h2-font__size);
  font-weight: 500;
}

/** 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(--border-line-color);
  /** left start */
  /** left end */
  /** right */
  /** right end */
}
.tabs-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tabs-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tabs-right .tabs-balance {
  display: block;
}
.tabs-right .tabs-balance p {
  margin-top: 10px;
  display: inline-block;
  font-size: 1.2rem;
  border-bottom: 1px dashed rgb(132, 142, 156);
}
.tabs-right .tabs-balance small {
  margin-top: 10px;
  font-size: 0.9rem;
  display: block;
}

/** 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(--yellow-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(--yellow-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::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: 9999px;
  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(--yellow-color);
}

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

body.dark .site-layout .table-form-container-item {
  border-color: var(--fourth-text-color);
}
body.dark .site-layout .card-warning {
  border-color: var(--fourth-text-color);
}
body.dark .site-layout .card-warning h2 {
  color: var(--first-text-color);
}
body.dark .site-layout .card-warning h2 {
  color: var(--second-text-color);
}
body.dark .site-layout .card-warning div {
  background: var(--third-text-color);
  color: var(--second-text-color);
}
body.dark .site-layout .card-warning.active {
  background: var(--blue-dark-fourth-color);
  border: 1px solid var(--blue-dark-fourth-color);
}
body.dark .site-layout .card-warning:hover {
  background: var(--blue-dark-fourth-color);
  border: 1px solid var(--blue-dark-fourth-color);
}
body.dark .site-layout #card-element {
  border-color: var(--border-line-color);
}

/** 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 */
body.dark .site-layout .form-search__result .form-search__result-icon svg .form-search__result-color, body.dark .site-layout .form-search__result .form-search__result-icon svg .form-search__result-color2 {
  stroke: var(--second-text-color);
}
body.dark .site-layout .form-search__result .form-search__result-icon svg:hover .form-search__result-color, body.dark .site-layout .form-search__result .form-search__result-icon svg:hover .form-search__result-color2 {
  stroke: var(--yellow-color);
}

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

.components-filter__form {
  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 var(--border-line-color);
  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(--yellow-color);
  outline: none;
  box-shadow: none;
}
.components-filter__form .components-filter__item input option,
.components-filter__form .components-filter__item select option {
  outline: none;
  background-color: var(--select-option);
  border: var(--border-line-color);
}
.components-filter__form .components-filter__item label {
  font-size: var(--default-font__size);
}
.components-filter__form .components-filter__item .filter-select {
  font-size: var(--default-font__size);
  border: 1px solid var(--border-line-color);
  background-color: transparent !important;
}
.components-filter__form .components-filter__item .filter-select:focus {
  border: 1px solid var(--yellow-color);
  outline: none;
  box-shadow: none;
}
.components-filter__form .components-filter__item .filter-select__option {
  padding: 0.8rem;
  background-color: transparent;
}
.components-filter__form .components-filter__item .filter-hover {
  color: var(--first-text-color);
  background-color: var(--gold-hover-color);
}
.components-filter__form .components-filter__item .filter-active {
  background-color: var(--gold-light-color);
}
.components-filter__form .components-filter__item .bth-clear {
  padding-left: 0 !important;
  padding-right: 0 !important;
  top: 14px;
}
.components-filter__form .components-filter__button {
  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(--yellow-color);
  outline: none;
  box-shadow: none;
}
.components-filter__item input option,
.components-filter__item select option {
  outline: none;
  background-color: var(--select-option);
  border: var(--border-line-color);
}
.components-filter__item label {
  font-size: var(--default-font__size);
}
.components-filter__item .filter-select {
  padding: 0.9rem 1.5rem;
  font-size: var(--default-font__size);
  border: 1px solid var(--border-line-color);
  background-color: transparent !important;
}
.components-filter__item .filter-select:focus {
  border: 1px solid var(--yellow-color);
  outline: none;
  box-shadow: none;
}
.components-filter__item .filter-select__option {
  padding: 0.8rem;
  color: var(--second-text-color);
  background-color: var(--select-option);
  border: 1px solid var(--border-line-color);
}
.components-filter__item .filter-hover {
  background-color: var(--purple-second-color);
}
.components-filter__item .bth-clear {
  top: 14px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.components-filter__item .bth-clear:hover {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__item8 {
  margin-right: 1rem;
}
.components-filter__item8 input,
.components-filter__item8 select {
  border: 1px solid var(--border-line-color);
  background-color: transparent;
  padding: 0.8rem;
  font-size: var(--small-font__size);
}
.components-filter__item8 input:focus,
.components-filter__item8 select:focus {
  border: 1px solid var(--yellow-color);
  outline: none;
  box-shadow: none;
}
.components-filter__item8 input option,
.components-filter__item8 select option {
  outline: none;
  background-color: var(--select-option);
  border: var(--border-line-color);
}
.components-filter__item8 label {
  font-size: var(--default-font__size);
}
.components-filter__item8 .filter-select {
  border-radius: 9999px;
  padding: 0.9rem 1.5rem;
  font-size: var(--default-font__size);
  border: 1px solid var(--border-line-color);
  background-color: transparent !important;
}
.components-filter__item8 .filter-select:focus {
  border: 1px solid var(--yellow-color);
  outline: none;
  box-shadow: none;
}
.components-filter__item8 .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__item8 .filter-hover {
  background-color: var(--purple-second-color);
}
.components-filter__item8 .bth-clear {
  padding-left: 0 !important;
  padding-right: 0 !important;
  top: 14px;
}
.components-filter__item8 .bth-clear:hover {
  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);
  border-radius: 9999px;
}
.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(--yellow-color);
}

/** thead end */
/** tbody media screen start */
@media screen and (max-width: 1000px) {
  .table-sort {
    display: none;
  }
}
/** tbody media screen end */
/** tbody start */
.table-list {
  /** subtitle */
  /** value */
  /** text */
  /** link */
  /** version 1 (title+icon)*/
  /** version 2 (title+image) */
  /** title version 3 (text+two icon) */
  /** title version 4 (noname) */
}
.table-list tr {
  border-bottom: 1px solid var(--border-line-color);
  transition: all 0.5s ease-out;
}
.table-list tr:hover {
  background-color: var(--tr-hover-color);
}
.table-list__subtitle {
  display: none;
}
.table-list__value {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.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(--yellow-color);
}
.table-list__link a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--yellow-color);
  transition: all 0.5s ease-out;
}
.table-list__link a:hover:after {
  width: 100%;
}
.table-list .title-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /** icon */
  /** name */
}
.table-list .title-icon__icon {
  position: relative;
  top: 1px;
  z-index: 9;
  width: 18px;
  height: 18px;
  margin: 0 8px;
  display: inline-block;
}
.table-list .title-icon__icon-color {
  fill: var(--second-text-color);
}
.table-list .title-icon__icon-active {
  fill: var(--yellow-color);
}
.table-list .title-icon__name {
  font-size: var(--default-font__size);
}
.table-list__image {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 1rem 0 0.6rem;
}
.table-list__image img {
  border-radius: 50%;
}
.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(--yellow-color);
  }
  .table-list__link a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--yellow-color);
    transition: all 0.5s ease-out;
  }
  .table-list__link a:hover:after {
    width: 100%;
  }
}
/** tbody media screen end */
/** tfood start */
.table-result__notfound {
  width: 100%;
  font-size: 0.9rem;
  text-align: center;
  margin: 0 auto;
  padding: 6rem 0;
}
.table-result__notfound-icon {
  display: inline-block;
  margin-bottom: 0.3rem;
  width: 60px;
  height: 60px;
}
.table-result__notfound-color {
  stroke: var(--second-text-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.table-result__notfound .color-yellow {
  stroke: var(--yellow-color);
}
.table-result__notfound-text {
  display: flex;
  justify-content: center;
  color: var(--second-text-color);
}
.table-result__notfound-text a {
  display: block;
  margin: 0 0.4rem;
  color: var(--yellow-color);
}
.table-result__notfound-text a:hover {
  text-decoration: underline;
}

/** tfood end */
/** base start */
.base-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /** left start */
  /** left end */
  /** right start */
  /** right end */
}
.base-container__left {
  width: 50%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Solar System Animation Style */
  /* Sky blue */
  /* Indigo */
  /* Slate */
  position: relative;
  overflow: hidden;
  /* Premium Dark Gradient Background */
  background-color: #020617;
  /* Slate 950 - Deepest Midnight */
  background-image: radial-gradient(at 0% 0%, rgba(56, 189, 248, 0.08) 0px, transparent 50%), radial-gradient(at 100% 0%, rgba(99, 102, 241, 0.05) 0px, transparent 50%);
  background-size: cover;
  /* Subtle noise texture overlay for realism (optional, clean look preferably without heavy noise) */
  /* Decorative element - Abstract glow */
}
.base-container__left .solar-system {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  z-index: 1;
  /* Behind content (z-index: 2) */
  opacity: 0.3;
  /* Subtle visibility */
  pointer-events: none;
}
.base-container__left .sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  /* Dark planet-like center */
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.1);
  /* Very subtle glow */
}
.base-container__left .orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: rotate-orbit linear infinite;
}
.base-container__left .orbit-1 {
  width: 200px;
  height: 200px;
  animation-duration: 20s;
}
.base-container__left .orbit-2 {
  width: 350px;
  height: 350px;
  animation-duration: 35s;
  animation-direction: reverse;
}
.base-container__left .orbit-3 {
  width: 500px;
  height: 500px;
  animation-duration: 50s;
}
.base-container__left .planet {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.base-container__left .planet-1 {
  width: 8px;
  height: 8px;
  background: #38bdf8;
}
.base-container__left .planet-2 {
  width: 12px;
  height: 12px;
  background: #818cf8;
}
.base-container__left .planet-3 {
  width: 6px;
  height: 6px;
  background: #cbd5e1;
}
@keyframes rotate-orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.base-container__left::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
  top: -20%;
  left: -20%;
  z-index: 1;
}
.base-container__left-content {
  position: relative;
  z-index: 2;
  /* Ensure content is above decorative elements */
  max-width: 600px;
  width: 100%;
  padding-left: 2rem;
  color: var(--white-color);
  font-weight: 400;
}
.base-container__left-logo {
  width: 180px;
  /* Slightly smaller for elegance */
  display: block;
  margin-bottom: 2rem;
  /* Reduced from 4rem to bring logo closer */
}
.base-container__left-logo img {
  width: 100%;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.base-container__left-title h1 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  /* Reduced from 3.5rem */
  line-height: 1.3;
  font-weight: 600;
  /* Reduced from 700 */
  color: var(--white-color);
}
.base-container__left-title p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 90%;
  font-weight: 400;
  /* Set to 400 */
}
.base-container__right {
  width: 50%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
  /* Added spacing for vertical breathing room */
}
.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 */
/** Login Form V2 - Premium Style */
.form-components__input-text .block-button {
  margin-top: 0px !important;
}

.form-components__block-label {
  font-family: inter;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
}

.block-checkbox label, .block-checkbox a {
  margin-bottom: -2px !important;
}

.login-form-v2 {
  max-width: 420px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--card-bg-color);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  /* Register Form - No Card Style on Desktop (User Request) */
}
.login-form-v2.register-form-no-card {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  max-width: 480px;
  /* Slightly wider for ease */
}

/** form components start */
.form-components {
  /** title */
  /** ... existing styles ... */
  /** input text (row) */
  /** table */
  /** icon */
  /** Social divider */
}
.form-components__title {
  width: 100%;
  margin-bottom: 2rem;
}
.form-components__title h2 {
  font-size: 1.75rem;
  font-weight: 600;
  /* Adjusted to 600 as requested */
  color: var(--first-text-color);
}
.form-components__input-text .form-components__block {
  margin-bottom: 1.5rem;
}
.form-components__input-text .block-button {
  margin-top: 2rem;
}
.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__social-divider {
  display: flex;
  align-items: center;
  margin: 2rem 0 1.5rem;
}
.form-components__social-divider::before, .form-components__social-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-line-color);
}
.form-components__social-divider span {
  padding: 0 1rem;
  font-size: 0.85rem;
  color: var(--second-text-color);
  white-space: nowrap;
}

/** form components end */
/** form components block start */
.form-components__block {
  /** item start */
  /** item end */
  /** icon - repositioned for pill input */
  /** label */
  /** link - dark color instead of yellow */
}
.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(--accent-color);
}
.form-components__block-item:focus .form-components__block-icon__color2, .form-components__block-item:hover .form-components__block-icon__color2 {
  fill: var(--accent-color);
}
.form-components__block-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  z-index: 1;
}
.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.875rem;
  /* ~14px */
  font-weight: 400;
  /* 400 as requested */
  display: block;
  margin-bottom: 0.5rem;
  color: var(--first-text-color);
}
.form-components__block-label a {
  display: inline-block;
  margin: 0 0.5rem;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 400;
}
.form-components__block-link {
  width: 100%;
  display: block;
  font-size: 0.875rem;
  text-align: right;
  color: var(--first-text-color);
  transition: opacity 0.2s ease;
  font-weight: 400;
}
.form-components__block-link:hover {
  opacity: 0.7;
}
.form-components__block-link-first {
  text-align: left;
}

/** form components block end */
/** status valid start */
.form-error input {
  border-color: 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.85rem;
  color: var(--red-color);
}

.form-success input {
  border-color: 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.85rem;
  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 - Dark style */
.block-button button {
  width: 100%;
  display: block;
  padding: 0.875rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white-color);
  background-color: var(--dark-button-bg, #1a1a2e);
  border: none;
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.block-button button:hover {
  background-color: var(--dark-button-hover-bg, #2d2d44);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.block-button button:focus {
  background-color: var(--dark-button-hover-bg, #2d2d44);
}
.block-button button:active {
  transform: scale(0.98);
}
.block-button button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/** button end */
/** input text start - Pill style */
.block-input-text input {
  width: 100%;
  font-weight: 400;
  /* 400 as requested */
  font-size: 0.95rem;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  outline: none;
  border: 1px solid var(--border-line-color);
  border-radius: 9999px;
  background-color: var(--input-bg-color, transparent);
  color: var(--first-text-color);
  transition: all 0.2s ease;
}
.block-input-text input::-moz-placeholder {
  color: var(--second-text-color);
  font-weight: 400;
}
.block-input-text input::placeholder {
  color: var(--second-text-color);
  font-weight: 400;
}
.block-input-text input:hover {
  border-color: var(--accent-color);
}
.block-input-text input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(var(--accent-color-rgb, 59, 130, 246), 0.1);
  background-color: var(--input-bg-color, transparent);
  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-color: var(--accent-color);
  background-color: var(--input-bg-color, transparent);
  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;
  /* Fix Checkbox Label Typography */
}
.block-checkbox input {
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 10px;
  border: 1px solid var(--border-line-color);
  background-color: transparent;
  border-radius: 4px;
}
.block-checkbox input:focus {
  outline: none;
  box-shadow: none;
}
.block-checkbox input:active {
  outline: none;
}
.block-checkbox label,
.block-checkbox a {
  font-size: 0.95rem !important;
  /* Ensure readable size > 12px */
  font-weight: 400 !important;
  /* Force regular weight */
  color: var(--first-text-color);
  margin-bottom: 0;
  line-height: 1.5;
}
.block-checkbox a {
  color: var(--accent-color);
  margin: 0 4px;
}

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

/** Social Auth Button - Unified style */
.social-auth-block {
  display: flex;
  gap: 1rem;
}
.social-auth-block .form-components__block-item {
  flex: 1;
}

.social-auth-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-line-color);
  border-radius: 9999px;
  background: transparent;
  color: var(--first-text-color);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.social-auth-button:hover {
  background: var(--hover-bg-color, rgba(0, 0, 0, 0.03));
  border-color: var(--accent-color);
}
.social-auth-button__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-auth-button__icon svg {
  width: 100%;
  height: 100%;
}
.social-auth-button__text {
  font-weight: 500;
}

/** base media screen start */
@media screen and (max-width: 670px) {
  .login-form-v2 {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .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;
  }
  .social-auth-block {
    flex-direction: column;
    gap: 0.75rem;
  }
}
/** 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-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0 1.5rem;
  height: 40px;
  color: var(--blue-dark-color);
  background-color: var(--yellow-color);
  font-weight: 600;
  border: 1px solid var(--yellow-color);
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  background-color: var(--yellow-secondary-color);
  color: var(--blue-dark-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 185, 11, 0.2);
}
.btn:focus {
  outline: none;
  background-color: var(--yellow-secondary-color);
}
.btn:active {
  outline: none;
  background-color: var(--yellow-color);
  transform: translateY(0);
  box-shadow: none;
}
.btn-text {
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0 1rem;
  height: 32px;
}

.btn-lg {
  font-size: 1.1rem;
  padding: 0 2rem;
  height: 48px;
}

.btn-block {
  margin: 0.5rem 0;
  display: flex;
  width: 100%;
}

.btn-white {
  color: var(--second-text-color);
  background-color: var(--white-color);
  border: 1px solid transparent;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  background-color: var(--white-color);
  color: var(--first-text-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--border-line-color);
}
.btn-white:focus {
  outline: none;
  background-color: var(--rows-color);
}
.btn-white:active {
  outline: none;
  background-color: var(--body-color);
  box-shadow: none;
}

.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);
  box-shadow: 0 4px 12px rgba(241, 73, 63, 0.2);
}
.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 2rem;
}
.btn-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0.5rem;
  bottom: 0;
  margin: auto 0;
  border: 2px solid transparent;
  border-top-color: var(--white-color);
  border-radius: 50%;
  animation: btn-loading-spinner 1s ease infinite;
}

.btn-warning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 32px;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow-color);
  border: 1px solid var(--yellow-color);
  border-radius: 9999px;
  outline: none;
  transition: all 0.2s ease-out;
}
.btn-warning:hover {
  background-color: var(--yellow-color);
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(252, 213, 53, 0.2);
}

@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(--border-line-color);
  background-color: transparent;
  transition: all 0.5s ease-out;
  color: var(--first-text-color);
}
.input-field input:hover {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}
.input-field input:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  box-shadow: none;
}
.input-field input:active {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}

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

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

/** input field end */
/** form group start */
.form-group {
  margin-bottom: 2rem;
}
.form-group_field {
  position: relative;
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--second-text-color);
}
.form-group_field:focus .form-group_color, .form-group_field:hover .form-group_color {
  stroke: var(--purple-color);
}
.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--second-text-color);
}
.form-group_icon {
  position: absolute;
  top: 12px;
  display: block;
  width: 22px;
  height: 22px;
}
.form-group_color {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-group input {
  width: 100%;
  margin: 0;
  padding: 0.6rem 0 0.6rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--second-text-color);
  outline: none;
  border: none;
  border-bottom: 2px solid var(--border-line-color);
  background-color: transparent !important;
  transition: all 0.5s ease-out;
}
.form-group input:hover {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
}
.form-group input:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--purple-color);
  box-shadow: none;
}
.form-group input:active {
  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(--yellow-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-search__result-color2 {
  fill: var(--yellow-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: 900px;
  width: 100%;
  margin: 6rem auto;
  padding: 2rem;
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
}

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: var(--border-line-color);
  border-radius: 2px;
  background-color: transparent;
}
.pagenav a:hover {
  background-color: var(--border-line-color);
}
.pagenav a:focus {
  color: var(--yellow-color);
  border-color: var(--yellow-color);
}
.pagenav div {
  outline: none;
  border-color: var(--border-line-color);
  background-color: transparent;
}
.pagenav .bg-white {
  background-color: var(--border-line-color);
}

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

.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 */
.vs__dropdown-menu {
  border-radius: 16px !important;
  overflow: hidden;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  padding: 8px !important;
  margin-top: 4px !important;
}

.vs__dropdown-option {
  border-radius: 8px !important;
  margin: 2px 0 !important;
  padding: 8px 12px !important;
  transition: background-color 0.15s ease !important;
}
.vs__dropdown-option--highlight {
  background-color: #F5F5F5 !important;
  color: #1E2329 !important;
}
.vs__dropdown-option:hover {
  background-color: #F5F5F5 !important;
}

.vs__search {
  border-radius: 9999px !important;
  border: 1px solid #e2e8f0 !important;
  padding: 8px 16px !important;
  margin: 8px 0 8px !important;
}
.vs__search:focus {
  border-color: #cbd5e1 !important;
  outline: none !important;
}

.vs__dropdown-toggle {
  border-radius: 9999px !important;
  border: 1px solid #e2e8f0 !important;
  padding: 8px 12px !important;
  min-height: 48px !important;
}

.vs__selected {
  border-radius: 9999px !important;
}

.vs__actions {
  padding-right: 8px !important;
}

.filter-select__option {
  border-radius: 12px !important;
  overflow: hidden;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}
.filter-select__option > div,
.filter-select__option > a,
.filter-select__option > button,
.filter-select__option .flex {
  padding: 8px 12px !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
  color: #1E2329 !important;
}
.filter-select__option > div:hover,
.filter-select__option > a:hover,
.filter-select__option > button:hover,
.filter-select__option .flex:hover {
  background-color: #F5F5F5 !important;
  color: #1E2329 !important;
}
.filter-select__option > div.active, .filter-select__option > div.selected,
.filter-select__option > a.active,
.filter-select__option > a.selected,
.filter-select__option > button.active,
.filter-select__option > button.selected,
.filter-select__option .flex.active,
.filter-select__option .flex.selected {
  background-color: #FEF6D8 !important;
  color: #1E2329 !important;
}

.bottom-sheet__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.bottom-sheet__container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--pro-bg-panel, #fff);
  border-radius: 16px 16px 0 0;
  z-index: 9999;
  max-height: 85vh;
  overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.bottom-sheet__handle-bar {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.bottom-sheet__handle {
  width: 40px;
  height: 4px;
  background-color: var(--pro-border, #e2e8f0);
  border-radius: 2px;
}
.bottom-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 12px;
  border-bottom: 1px solid var(--pro-border, #e2e8f0);
  margin-bottom: 16px;
}
.bottom-sheet__header h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.bottom-sheet__close {
  color: var(--pro-text-secondary, #64748b);
  cursor: pointer;
}
.bottom-sheet__content {
  padding: 0 16px 16px;
  overflow-y: auto;
}

/* Animations */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.slide-up-enter-active,
.slide-up-leave-active {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up-enter,
.slide-up-leave-to {
  transform: translateY(100%);
}

.v-toast__item {
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2) !important;
  border-radius: 50px !important;
  padding: 0 20px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  font-family: "Inter", sans-serif !important;
  margin-bottom: 12px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.v-toast__item .v-toast__text {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.2px !important;
  padding: 0 0 0 10px !important;
  line-height: normal !important;
  font-family: "Inter", sans-serif !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.v-toast__item .v-toast__icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  background-size: contain !important;
  background-position: center !important;
  opacity: 1 !important;
  margin-right: 0 !important;
}
.v-toast__item.v-toast__success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.65), rgba(5, 150, 105, 0.55)) !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
  box-shadow: 0 4px 15px -3px rgba(16, 185, 129, 0.3) !important;
}
.v-toast__item.v-toast__error {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.65), rgba(225, 29, 72, 0.55)) !important;
  border: 1px solid rgba(244, 63, 94, 0.4) !important;
  box-shadow: 0 4px 15px -3px rgba(244, 63, 94, 0.3) !important;
}
.v-toast__item.v-toast__warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.65), rgba(217, 119, 6, 0.55)) !important;
  border: 1px solid rgba(245, 158, 11, 0.4) !important;
  box-shadow: 0 4px 15px -3px rgba(245, 158, 11, 0.3) !important;
}
.v-toast__item.v-toast__info {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.65), rgba(2, 132, 199, 0.55)) !important;
  border: 1px solid rgba(14, 165, 233, 0.4) !important;
  box-shadow: 0 4px 15px -3px rgba(14, 165, 233, 0.3) !important;
}

.v-toast__container {
  z-index: 999999 !important;
  padding-top: 30px !important;
}
@media (max-width: 768px) {
  .v-toast__container {
    padding-top: 20px !important;
    width: auto !important;
    max-width: 90% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .v-toast__container .v-toast__item {
    margin: 8px auto !important;
    min-width: 200px !important;
  }
}

/** LIST BLOCKS */
/** header start */
.header {
  background-color: #15181D;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header-home {
  background-color: #15181D;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  height: 72px;
  margin: auto;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 500;
  color: #EAECEF;
}
.header__row-left {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.header__row-right {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  margin-right: 0;
}
.header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  color: var(--white-color);
  letter-spacing: -0.5px;
}
.header-logo a img {
  height: 32px;
  width: auto;
}
.header-logo a span {
  color: var(--yellow-color);
}

.header-btn {
  display: none;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
}
.header-btn.flex {
  display: flex !important;
  flex-direction: column;
  gap: 5px;
  width: auto;
  height: auto;
  padding: 8px;
  position: static;
}
.header-btn.flex span {
  position: static !important;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #EAECEF;
  border-radius: 2px;
  transition: all 0.3s ease;
  top: auto !important;
}
.header-btn:not(.flex) {
  width: 24px;
  height: 24px;
  position: relative;
}
.header-btn:not(.flex) span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white-color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}
.header-btn:not(.flex) span:nth-child(1) {
  top: 4px;
}
.header-btn:not(.flex) span:nth-child(2) {
  top: 11px;
}
.header-btn:not(.flex) span:nth-child(3) {
  top: 18px;
}
.header-btn.open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
  background-color: var(--yellow-color);
}
.header-btn.open span:nth-child(2) {
  opacity: 0;
}
.header-btn.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  background-color: var(--yellow-color);
}

@media screen and (max-width: 1180px) {
  .header-btn {
    display: block;
  }
  .header-btn.flex {
    display: flex !important;
  }
}
.header-button {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-button__signin {
  color: var(--white-color);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
  font-size: 14px;
}
.header-button__signin:hover {
  color: var(--yellow-color);
}
.header-button__signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  background: var(--yellow-color);
  color: var(--blue-dark-color);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.header-button__signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 185, 11, 0.2);
  background-color: var(--yellow-secondary-color);
}
.header-button__signup:active {
  transform: translateY(0);
  background-color: var(--yellow-color);
  box-shadow: none;
}
.header-button__wallet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: var(--white-color);
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}
.header-button__wallet:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--yellow-color);
  color: var(--yellow-color);
}
.header-button__wallet svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.header-button__deposit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  background: var(--yellow-color);
  color: var(--blue-dark-color);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-right: 12px;
}
.header-button__deposit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.header-button__deposit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 185, 11, 0.2);
  background-color: var(--yellow-secondary-color);
}
.header-button__deposit:active {
  transform: translateY(0);
  box-shadow: none;
  background-color: var(--yellow-color);
}

.header-nav__user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.header-nav__user-avatar img,
.header-nav__user-avatar span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.header-nav__user-avatar:hover img, .header-nav__user-avatar:hover span, .header-nav__user-avatar.active img, .header-nav__user-avatar.active span {
  border-color: var(--yellow-color);
}

.header-nav__lang-btn {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  background: transparent;
  border: none;
  color: var(--gray-text-color);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.header-nav__lang-btn:hover, .header-nav__lang-btn.active {
  color: var(--white-color);
}

@media screen and (max-width: 600px) {
  .header-button__signin {
    display: none;
  }
}
@media screen and (min-width: 1181px) {
  .header-nav {
    height: 100%;
  }
  .header-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header-nav__item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .header-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #EAECEF;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    padding: 0 12px;
    height: 64px;
    border-radius: 4px;
  }
  .header-nav__link:hover {
    color: var(--yellow-color);
  }
  .header-nav__link.active {
    color: var(--yellow-color);
    font-weight: 500;
  }
  .header-nav__link svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    opacity: 0.6;
    transition: transform 0.2s;
  }
  .header-nav__link:hover svg {
    transform: rotate(180deg);
    opacity: 1;
  }
  .header-nav__dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: #1E2329;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 1005;
    margin-top: -5px !important;
  }
  .header-nav__dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-nav__dropdown--left-expand {
    left: auto;
    right: 0;
    transform-origin: top right;
  }
  .header-nav__dropdown a:not(.btn),
  .header-nav__dropdown .header-nav__dropdown-item:not(.btn) {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin-bottom: 2px;
    border-radius: 8px;
    color: #EAECEF;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease-in-out;
    text-decoration: none;
  }
  .header-nav__dropdown a:not(.btn):hover,
  .header-nav__dropdown .header-nav__dropdown-item:not(.btn):hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
  }
  .header-nav__dropdown a:not(.btn):hover .dropdown-icon-wrap,
  .header-nav__dropdown .header-nav__dropdown-item:not(.btn):hover .dropdown-icon-wrap {
    color: var(--yellow-color);
    background-color: transparent;
  }
  .header-nav__dropdown a:not(.btn):hover .item-content .item-title,
  .header-nav__dropdown .header-nav__dropdown-item:not(.btn):hover .item-content .item-title {
    color: var(--yellow-color);
  }
  .header-nav__dropdown a:not(.btn) .dropdown-icon-wrap,
  .header-nav__dropdown .header-nav__dropdown-item:not(.btn) .dropdown-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #848E9C;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-right: 4px;
  }
  .header-nav__dropdown a:not(.btn) .dropdown-icon-wrap svg,
  .header-nav__dropdown .header-nav__dropdown-item:not(.btn) .dropdown-icon-wrap svg {
    width: 20px;
    height: 20px;
  }
  .header-nav__dropdown a:not(.btn) .item-content,
  .header-nav__dropdown .header-nav__dropdown-item:not(.btn) .item-content {
    display: flex;
    flex-direction: column;
  }
  .header-nav__dropdown a:not(.btn) .item-content .item-title,
  .header-nav__dropdown .header-nav__dropdown-item:not(.btn) .item-content .item-title {
    font-size: 14px;
    line-height: 1.5;
  }
  .header-nav__dropdown a:not(.btn) .item-content .item-desc,
  .header-nav__dropdown .header-nav__dropdown-item:not(.btn) .item-content .item-desc {
    font-size: 12px;
    color: #848E9C;
    margin-top: 2px;
    font-weight: 400;
  }
}
@media screen and (max-width: 1180px) {
  .header-nav {
    display: none;
  }
}
@media screen and (min-width: 1181px) {
  .header-dropdown {
    position: relative;
    margin-left: 4px;
  }
  .header-dropdown__button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 4px;
    transition: all 0.2s;
    gap: 4px;
    height: 32px;
    color: #EAECEF;
  }
  .header-dropdown__button:hover {
    color: var(--yellow-color);
  }
  .header-dropdown__button:hover .header-dropdown__icon-color {
    stroke: var(--yellow-color);
  }
  .header-dropdown__icon {
    width: 20px;
    height: 20px;
  }
  .header-dropdown__icon-color {
    stroke: currentColor;
    transition: stroke 0.2s;
  }
  .header-dropdown__list {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    top: 100%;
    right: 0;
    width: -moz-max-content;
    width: max-content;
    min-width: 240px;
    background-color: #1E2329;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    padding: 8px 0;
    z-index: 9999;
    margin-top: 2px;
  }
  .header-dropdown__list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-dropdown__list-info {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
  }
  .header-dropdown__list-info .email {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
  }
  .header-dropdown__list-info p {
    font-size: 12px;
    color: #848E9C;
  }
  .header-dropdown__list a,
  .header-dropdown__list button,
  .header-dropdown__list .header-nav__dropdown-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #B7BDC6;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: inherit;
    outline: none;
    text-decoration: none;
  }
  .header-dropdown__list a:hover,
  .header-dropdown__list button:hover,
  .header-dropdown__list .header-nav__dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FCD535;
  }
  .header-dropdown__list a:hover .dropdown-icon-wrap,
  .header-dropdown__list button:hover .dropdown-icon-wrap,
  .header-dropdown__list .header-nav__dropdown-link:hover .dropdown-icon-wrap {
    width: 20px;
    height: 20px;
    color: #848E9C;
    flex-shrink: 0;
    transition: all 0.2s;
  }
  .header-dropdown__list a:hover .dropdown-icon-wrap svg,
  .header-dropdown__list button:hover .dropdown-icon-wrap svg,
  .header-dropdown__list .header-nav__dropdown-link:hover .dropdown-icon-wrap svg {
    width: 18px;
    height: 18px;
  }
  .header-dropdown .header-dropdown__list {
    display: none !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: var(--yellow-color);
}
.language-dropdown .header-dropdown__list-info {
  padding: 1rem 1rem 0.5rem 1rem;
}
.language-dropdown .header-dropdown__list a {
  padding: 1rem;
}
.language-dropdown .item-language__active {
  color: var(--yellow-color);
}
.language-dropdown .item-language__active .header-dropdown__list-color {
  stroke: var(--yellow-color);
}

.header-dropdown {
  /** button */
  /** icon */
  /** active */
  /** list */
}
.header-dropdown__row {
  position: relative;
}
.header-dropdown__icon {
  width: 26px;
  height: 26px;
  display: block;
}
.header-dropdown__icon-color {
  stroke: var(--white-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.5s ease-out;
}
.header-dropdown .active {
  display: block !important;
}
.header-dropdown__list {
  display: none;
  position: absolute;
  top: 4.9rem;
  right: -1.6rem;
  z-index: 8;
  min-width: 280px;
  padding: 0.5rem 0;
  background-color: var(--blue-dark-second-color);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  /** info block */
  /** link */
  /** icon */
  /** icon color */
}
.header-dropdown__list-info {
  padding: 0.6rem 0.2rem 0.6rem 1rem;
}
.header-dropdown__list-info p {
  color: var(--white-color);
}
.header-dropdown__list-info .email {
  color: var(--yellow-color);
  word-break: break-word;
}
.header-dropdown__list a, .header-dropdown__list button {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.6rem 0.5rem;
  transition: all 0.5s ease-out;
}
.header-dropdown__list a:hover, .header-dropdown__list button:hover {
  color: var(--yellow-color);
  background-color: var(--dark-body-color);
}
.header-dropdown__list a:hover .header-dropdown__list-color, .header-dropdown__list button:hover .header-dropdown__list-color {
  stroke: var(--yellow-color);
}
.header-dropdown__list-icon {
  width: 28px;
  height: 28px;
  display: block;
  margin-right: 10px;
}
.header-dropdown__list-color {
  stroke: var(--white-color);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.5s ease-out;
}

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

.mode {
  position: relative;
  width: 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;
}

body.dark .mode:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23fff' stroke-width='2' fill='%23fff' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1' viewBox='0 0 24 24'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z'/%3E%3C/svg%3E");
  transform: translateX(26px);
}
body.dark .mode:after {
  transform: translateX(-24px);
}

/** mode end */
@media screen and (max-width: 1180px) {
  .header-nav__user-section {
    padding: 10px;
  }
  .header-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: #15181D;
    z-index: 10001;
    padding: 0;
    transform: translateX(-100%);
    transition: transform 0.1s ease-in-out;
    overflow: hidden;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
  .header-nav.active {
    transform: translateX(0);
  }
  .header-nav button,
  .header-nav a,
  .header-nav input,
  .header-nav div,
  .header-nav span {
    font-size: 16px !important;
  }
  .header-nav.user-sidebar {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateX(100%);
  }
  .header-nav.user-sidebar.active {
    transform: translateX(0);
  }
  .header-nav__close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #EAECEF;
    cursor: pointer;
    z-index: 100 !important;
    transition: all 0.2s;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .header-nav__close-btn:active {
    transform: scale(0.95);
    background-color: rgba(255, 255, 255, 0.2);
  }
  .header-nav__close-btn svg {
    width: 20px;
    height: 20px;
  }
  .header-nav__sidebar-logo {
    position: absolute;
    margin-bottom: 10px;
    top: 20px;
    left: 24px;
    font-size: 20px !important;
    font-weight: 700;
    color: var(--yellow-color);
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    height: 50px;
  }
  .header-nav__main-panel {
    flex: 1;
    overflow-y: auto;
    padding: 80px 0 50px;
    width: 100%;
    position: relative;
    z-index: 1;
    background-color: #15181D;
  }
  .header-nav__sub-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 80px 0 40px;
    background-color: #15181D;
    transform: translateX(100%);
    transition: transform 0.25s ease-in-out;
    z-index: 2;
    overflow-y: auto;
  }
  .header-nav__sub-panel.active {
    transform: translateX(0);
  }
  .header-nav .header-nav__dropdown {
    display: none !important;
  }
  .header-nav__back-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: #848E9C;
    font-size: 16px !important;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.2s;
  }
  .header-nav__back-btn:hover {
    color: #FFFFFF;
  }
  .header-nav__back-btn svg {
    width: 20px;
    height: 20px;
  }
  .header-nav__header {
    padding: 0 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
  }
  .header-nav__header .user-email {
    display: block;
    font-size: 18px !important;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
  }
  .header-nav__header .user-uid {
    font-size: 13px !important;
    color: #848E9C;
  }
  .header-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .header-nav__item {
    width: 100%;
  }
  .header-nav__link,
  .header-nav .user-menu-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px !important;
    font-weight: 500;
    color: #B7BDC6;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: all 0.2s;
    background: transparent;
    min-height: 56px;
  }
  .header-nav__link:hover, .header-nav__link:active,
  .header-nav .user-menu-item:hover,
  .header-nav .user-menu-item:active {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    padding-left: 28px;
  }
  .header-nav__link .dropdown-icon-wrap,
  .header-nav .user-menu-item .dropdown-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-right: 16px;
    flex-shrink: 0;
    transition: background-color 0.2s;
  }
  .header-nav__link .dropdown-icon-wrap svg,
  .header-nav .user-menu-item .dropdown-icon-wrap svg {
    width: 20px !important;
    height: 20px !important;
    color: #EAECEF;
    margin-right: 0;
  }
  .header-nav__link:hover .dropdown-icon-wrap, .header-nav__link:active .dropdown-icon-wrap,
  .header-nav .user-menu-item:hover .dropdown-icon-wrap,
  .header-nav .user-menu-item:active .dropdown-icon-wrap {
    background-color: rgba(255, 255, 255, 0.12);
  }
  .header-nav__link > svg,
  .header-nav .user-menu-item > svg {
    width: 22px;
    height: 22px;
    margin-right: 16px;
    color: #848E9C;
    flex-shrink: 0;
  }
  .header-nav__link .arrow-icon,
  .header-nav .user-menu-item .arrow-icon {
    margin-right: 0;
    margin-left: auto;
    width: 16px;
    height: 16px;
    transform: rotate(-90deg);
  }
  .header-nav__link.active,
  .header-nav .user-menu-item.active {
    color: var(--yellow-color);
    border-left: 3px solid var(--yellow-color);
    background-color: rgba(240, 185, 11, 0.05);
  }
  .header-nav__link.active svg,
  .header-nav .user-menu-item.active svg {
    color: var(--yellow-color);
  }
  .header-nav__link.active .dropdown-icon-wrap,
  .header-nav .user-menu-item.active .dropdown-icon-wrap {
    background-color: rgba(240, 185, 11, 0.15);
  }
  .header-nav__link.active .dropdown-icon-wrap svg,
  .header-nav .user-menu-item.active .dropdown-icon-wrap svg {
    color: var(--yellow-color);
  }
  .header-nav__link .item-content,
  .header-nav .user-menu-item .item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .header-nav__link .item-content .item-title,
  .header-nav .user-menu-item .item-content .item-title {
    font-size: 15px !important;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
  }
  .header-nav__link .item-content .item-desc,
  .header-nav .user-menu-item .item-content .item-desc {
    font-size: 12px !important;
    font-weight: 400;
    color: #848E9C;
    line-height: 1.3;
    margin-top: 2px;
  }
  .header-nav__language-section {
    margin-top: 20px;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .header-nav__language-section .lang-title {
    color: #848E9C;
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .header-nav__language-section .lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .header-nav__language-section .lang-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    color: #B7BDC6;
    font-size: 14px !important;
    cursor: pointer;
  }
  .header-nav__language-section .lang-item.active {
    background-color: var(--yellow-color);
    color: #1E2329;
    font-weight: 600;
  }
  .header-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  .header-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
  .header-nav__footer {
    padding: 24px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .header-nav__footer p {
    color: #5E6673;
    font-size: 12px !important;
    margin: 0;
  }
}
/** Mobile responsive */
@media screen and (max-width: 1180px) {
  .header__row {
    padding: 0;
    height: 60px;
  }
  .header__row-left, .header__row-right {
    display: none;
  }
  .header__row-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 10px;
  }
}
/** head start */
.main-logo {
  max-width: 55px !important;
}

.head {
  background-color: var(--blue-dark-thir-color);
  padding: 1px 0;
  background-image: url("/images/bg-home3.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(--yellow-color) !important;
}
.head-title .typer-cursor {
  color: var(--yellow-color) !important;
}
.head-title h1 {
  width: 100%;
  margin: 14rem 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: 9999px;
  transition: all 0.5s ease-out;
}
.head-title a:hover {
  background-color: var(--white-color);
  color: var(--blue-dark-color);
}
.head-carousel {
  position: relative;
  margin: 3rem 0 0;
  padding: 0 1rem;
}
.head-carousel__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 0 2.8rem;
}
.head-carousel__item {
  padding: 10px;
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  color: var(--white-color);
}
.head-carousel__item img {
  border-radius: 10px;
}
.head-carousel__item img:hover {
  opacity: 0.6;
}
.head-carousel__coin {
  display: flex;
  justify-content: space-between;
}
.head-carousel__value {
  font-size: 2.5rem;
  margin: 1rem 0 0;
}
.head-carousel__price {
  opacity: 50%;
}

/** 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: 100%;
    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: 100%;
    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(--yellow-color);
  transition: all 0.5s ease-out;
}
.table-home__link a:hover {
  color: var(--yellow-color);
}
.table-home__link a:hover::after {
  width: 100%;
}
.table-home table thead, .table-home table tbody {
  padding: 0;
  text-align: left;
}
.table-home table tr {
  padding: 0;
  text-align: left;
}
.table-home table th {
  padding-bottom: 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(--yellow-color);
  border: 1px solid var(--yellow-color);
  border-radius: 4px;
  outline: none;
  transition: all 0.5s ease-out;
}
.list-body__button:hover {
  background-color: var(--yellow-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: 2790px;
  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(--yellow-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(--yellow-color);
  color: var(--white-color);
  border: 4px solid var(--rows-color);
  border-radius: 50%;
}
.step-components__block-title {
  margin: 0.5rem 0 0.3rem 0;
  font-size: 1.1rem;
}
.step-components__block-text {
  font-size: 0.9rem;
  color: var(--second-text-color);
}

/** step components end */
/** table filter media screen start */
@media screen and (max-width: 900px) {
  .step-components__container {
    display: block;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 6rem;
    border-radius: 4px;
    border: 1px solid var(--border-line-color);
  }
  .step-components__block {
    border-bottom: 1px solid var(--border-line-color);
    width: 100%;
    padding: 3rem 2rem;
  }
  .step-components__block::after {
    display: none;
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--yellow-color);
    width: 100%;
    top: 4.5rem;
    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(--yellow-color);
    color: var(--white-color);
    border: 4px solid var(--rows-color);
    border-radius: 50%;
  }
  .step-components__block-title {
    margin: 0.5rem 0 0.3rem 0;
    font-size: 1.1rem;
  }
  .step-components__block-text {
    font-size: 0.9rem;
    color: var(--second-text-color);
  }
}
/** table filter media screen end */
/** features start */
.features {
  margin: 2rem 0 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;
}

body.dark .site-layout .features-item__icon-color {
  fill: var(--yellow-color);
}

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

body.dark .site-layout .features-item__icon-color {
  fill: var(--yellow-color);
}

/** 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 {
  background-color: var(--blue-dark-thir-color);
  margin-top: 6rem;
  padding: 2rem 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--white-color);
  background-image: url("/images/bg-home3.png");
  background-size: cover;
  /** 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: 9999px;
  transition: all 0.5s ease-out;
}
.section-footer .banner-text a:hover {
  background-color: var(--white-color);
  color: var(--blue-dark-color);
}
.section-footer .footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 4rem 0 2rem;
  padding: 4rem 0;
  border-top: 1px solid #27283C;
  border-bottom: 1px solid #27283C;
  /** social */
}
.section-footer .footer-left {
  text-transform: uppercase;
}
.section-footer .footer-right {
  width: 80%;
}
.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(--yellow-color);
}
.section-footer .footer .social {
  margin: 3rem 0 2rem;
}
.section-footer .footer .social h4 {
  margin-bottom: 1.8rem;
}
.section-footer .footer .social nav {
  display: flex;
  justify-content: flex-start;
}
.section-footer .footer .social a {
  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 .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) {
  .orderbook-mode-change {
    display: none !important;
  }
  .module-orderbook__title-price.mob-hide {
    display: none !important;
  }
  .section-footer {
    /** banner */
    /** footer */
  }
  .section-footer .banner {
    margin-top: 2rem;
  }
  .section-footer .banner h2 {
    font-size: 1.5rem;
  }
  .section-footer .banner-text {
    display: block;
    margin: 1rem 0;
  }
  .section-footer .banner-text p {
    width: 100%;
    font-size: 0.9rem;
  }
  .section-footer .banner-text a {
    margin-top: 2rem;
    padding: 1rem 0;
    width: 180px;
    font-size: 0.9rem;
  }
  .section-footer .footer {
    display: block;
  }
  .section-footer .footer-left {
    margin-bottom: 2rem;
  }
  .section-footer .footer-right {
    width: 100%;
  }
  .section-footer .footer-right__navigation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .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(--yellow-color);
  }
}
/** footer media screen end */
/** footer media screen start */
@media screen and (max-width: 550px) {
  .section-footer {
    /** footer */
    /** copyright */
  }
  .section-footer .footer {
    margin: 4rem 0 2rem;
    padding: 2rem 0;
  }
  .section-footer .footer-right {
    width: 100%;
  }
  .section-footer .footer-right__navigation {
    display: 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 */
.admin-sidebar {
  background-color: #111827;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-sidebar .main-logo {
  max-width: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .admin-sidebar {
    background-color: #111827;
    width: 250px;
  }
}
.hero-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 0;
  padding: 40px calc((100vw - 1400px) / 2 + 20px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .hero-banner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .hero-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-banner__content h1 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .hero-banner__content h1 {
    font-size: 22px;
  }
}
.hero-banner__content p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}
.hero-banner__image {
  position: relative;
  z-index: 1;
  display: none;
}
.hero-banner__image img,
.hero-banner__image svg {
  max-width: 140px;
  height: auto;
}
.hero-banner__image svg {
  stroke: rgba(255, 255, 255, 0.8);
  -webkit-mask: linear-gradient(135deg, #000 25%, rgba(0, 0, 0, 0.5) 50%, #000 75%);
          mask: linear-gradient(135deg, #000 25%, rgba(0, 0, 0, 0.5) 50%, #000 75%);
  -webkit-mask-size: 400% 100%;
          mask-size: 400% 100%;
  animation: hero-shine 2s linear infinite;
}
.hero-banner--rich .hero-banner__content {
  max-width: 600px;
}
.hero-banner--rich .hero-banner__image {
  display: block;
}
@media (max-width: 768px) {
  .hero-banner--rich .hero-banner__image {
    display: none;
  }
}

@keyframes hero-shine {
  0% {
    -webkit-mask-position: 100% 0;
            mask-position: 100% 0;
  }
  100% {
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
}
body.hero-active .mobile-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.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: 8px;
  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%;
    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%;
    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;
}

body.dark .site-layout .vue-slider-mark {
  background-color: var(--blue-dark-second-color);
  border: 4px solid var(--blue-dark-color);
}
body.dark .site-layout .vue-slider-mark-active {
  background-color: var(--progress-color);
}
body.dark .site-layout .vue-slider-dot-handle {
  top: 0px;
  width: 15px;
  height: 15px;
  background-color: var(--progress-color);
  border: 1px solid var(--yellow-color);
}
body.dark .module-orderform .button-tab {
  background-color: var(--blue-dark-color);
  color: var(--white-color);
}

.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(--blue-dark-color);
  text-decoration: underline;
}
.widget-market-stats .widget-stats__title__market-name div.absolute {
  z-index: 1 !important;
}
.widget-market-stats .widget-stats__title__currency-name {
  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 {
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 2rem;
  padding: 1rem;
  min-width: 0;
  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;
  align-items: center;
  text-align: center;
  font-size: 13px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.widget-markets__navigation::-webkit-scrollbar {
  display: none;
}
.widget-markets__navigation h3 {
  padding-top: 2px;
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
}
.widget-markets__navigation h3:hover .navigation-icon__color {
  fill: var(--yellow-color);
}
.widget-markets__navigation nav {
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.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: #fffff;
  background-color: #E6E6E6;
  border-radius: 55px;
}
.widget-markets__navigation .navigation-active {
  padding: 0.2rem 0.5rem;
  color: #fffff;
  background-color: #E6E6E6;
  border-radius: 55px;
}
.widget-markets__navigation .navigation-icon {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.widget-markets__navigation .navigation-icon__color {
  fill: var(--second-text-color);
}
.widget-markets__navigation .navigation-icon__active {
  fill: var(--yellow-color);
}
.widget-markets__search {
  margin-top: 0.5rem;
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  display: flex;
  justify-content: flex-start;
}
.widget-markets__search:hover {
  border: 1px solid var(--yellow-color);
}
.widget-markets__search input {
  width: 100%;
  display: block;
  font-weight: 400 !important;
  font-size: var(--default-font__size);
  padding: 0.6rem 0.4rem 0.6rem 0;
  outline: none;
  border: none !important;
  color: var(--first-text-color);
  background-color: transparent;
}
.widget-markets__search input:focus {
  outline: none;
  box-shadow: none;
  border: none !important;
}
.widget-markets__search input::-moz-placeholder {
  color: var(--second-text-color);
  border: none !important;
}
.widget-markets__search input::placeholder {
  color: var(--second-text-color);
  border: none !important;
}
.widget-markets__search button {
  outline: none;
  border: none;
}
.widget-markets__search-icon {
  position: relative;
  top: 11px;
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
}
.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: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.widget-markets__sort-icon__color {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.widget-markets__sort-icon__active {
  stroke: var(--yellow-color);
}
.widget-markets__list {
  height: 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(--yellow-color);
}
.widget-markets__list-item__price {
  outline: none;
  width: 38%;
  text-align: left;
}
.widget-markets__list-item__change {
  outline: none;
  width: 24%;
  text-align: 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-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: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  /** 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-point {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red-color);
  left: 0px;
  top: 10px;
}
.module-orderbook__sell .module-orderbook__title {
  padding-left: 6px;
  display: flex;
  align-items: center;
  font-size: var(--small-font__size);
  color: var(--first-color);
  margin: 0;
  margin-bottom: 0.5rem;
  color: #8B8D98;
  flex-shrink: 0;
}
.module-orderbook__sell .module-orderbook__title-price {
  width: 30%;
  text-align: left;
}
.module-orderbook__sell .module-orderbook__title-amount {
  width: 35%;
  text-align: right;
}
.module-orderbook__sell .module-orderbook__title-total {
  width: 35%;
  text-align: right;
}
.module-orderbook__sell .module-orderbook__list {
  font-size: var(--small-font__size);
  flex: 1;
  overflow: hidden;
  min-height: 0;
  /* vue-scroll overrides */
}
.module-orderbook__sell .module-orderbook__list-item {
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  position: relative;
}
.module-orderbook__sell .module-orderbook__list-item__price {
  width: 30%;
  text-align: left;
  padding-left: 6px;
}
.module-orderbook__sell .module-orderbook__list-item__amount {
  width: 35%;
  text-align: right;
}
.module-orderbook__sell .module-orderbook__list-item__total {
  width: 35%;
  text-align: right;
}
.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__list .__vuescroll,
.module-orderbook__sell .module-orderbook__list .__panel,
.module-orderbook__sell .module-orderbook__list .__view {
  width: 100% !important;
  height: 100% !important;
}
.module-orderbook__sell .module-orderbook__empty {
  font-size: 0.9rem;
  flex: 1;
  min-height: 0;
  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: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  /** title start */
  /** title end */
  /** list start */
  /** list end */
  /** empty start */
  /** empty end */
}
.module-orderbook__buy .module-orderbook__title-point {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-color);
  left: 0px;
  top: 10px;
}
.module-orderbook__buy .module-orderbook__title {
  display: flex;
  align-items: center;
  font-size: var(--small-font__size);
  margin: 0;
  padding: var(--mp-1) 0;
  color: var(--second-text-color);
  margin-left: 6px;
  border-bottom: 1px solid var(--border-line-color);
  flex-shrink: 0;
}
.module-orderbook__buy .module-orderbook__title-price {
  width: 30%;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  padding: 0.5rem 0;
}
.module-orderbook__buy .module-orderbook__title-total {
  width: 35%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.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);
  flex: 1;
  overflow: hidden;
  min-height: 0;
  /* vue-scroll overrides */
}
.module-orderbook__buy .module-orderbook__list-item {
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  position: relative;
}
.module-orderbook__buy .module-orderbook__list-item__price {
  width: 30%;
  text-align: left;
  padding-left: 6px;
}
.module-orderbook__buy .module-orderbook__list-item__amount {
  width: 35%;
  text-align: right;
}
.module-orderbook__buy .module-orderbook__list-item__total {
  width: 35%;
  text-align: right;
}
.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__list .__vuescroll,
.module-orderbook__buy .module-orderbook__list .__panel,
.module-orderbook__buy .module-orderbook__list .__view {
  width: 100% !important;
  height: 100% !important;
}
.module-orderbook__buy .module-orderbook__empty-buy {
  font-size: 0.9rem;
  flex: 1;
  min-height: 0;
  color: var(--second-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/** module orderbook buy end */
.__bar-is-vertical {
  background: var(--second-text-color) !important;
}

.__rail-is-vertical {
  background: var(--white-color) !important;
}

body.dark .site-layout .__bar-is-vertical {
  background: var(--blue-dark-fourth-color) !important;
}
body.dark .site-layout .__rail-is-vertical {
  background: var(--blue-dark-bar-color) !important;
}
body.dark .site-layout .widget-market-stats .widget-stats__title__market-name span.market-label {
  color: var(--yellow-color);
}

/** .module orderform start */
.module-orderform input[type=text] {
  border: none !important;
}

.module-orderform__title-item {
  margin-top: -20px !important;
  font-weight: 500;
}

.module-orderform {
  /** .module orderform title start */
  /** .module orderform title end */
  /** buy start */
  /** buy end */
  /** sell start */
  /** sell end */
  /* NEW: Binance-inspired Input Group */
  /* NEW: Dual Layout for PC (Buy/Sell side-by-side) */
  /* Tab container - hide on PC when dual layout is used */
  /* Mobile container - hide on PC, show on mobile */
  /* NEW: Info Section */
}
.module-orderform__title {
  display: flex;
  justify-content: flex-start;
  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 .info-badge {
  color: var(--second-text-color);
}
.module-orderform .button-tab {
  z-index: 1;
  position: relative;
  border-radius: 8px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 40px;
  padding: 0;
  text-align: center;
  outline: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--pro-text-secondary, #64748b);
  background-color: var(--pro-bg-input, #f8fafc);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.module-orderform .button-tab:hover {
  background-color: var(--pro-border, #e2e8f0);
}
.module-orderform .button-tab-buy {
  margin-right: 4px;
  width: calc(50% - 4px);
}
.module-orderform .button-tab-sell {
  width: calc(50% - 4px);
  margin-left: 4px;
}
.module-orderform .button-tab-buy-active {
  color: #fff !important;
  background-color: var(--pro-buy, #10b981) !important;
  border-color: var(--pro-buy, #10b981) !important;
}
.module-orderform .button-tab-sell-active {
  color: #fff !important;
  background-color: var(--pro-sell, #ef4444) !important;
  border-color: var(--pro-sell, #ef4444) !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 {
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -webkit-border-radius: 9999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 0.8rem;
  padding: 0.3rem 1rem;
  border: 1px solid var(--border-line-color);
  background-color: #FFFFFF;
}
.module-orderform__buy-forms__item:hover {
  border: 1px solid var(--yellow-color);
  box-shadow: var(--yellow-color);
}
.module-orderform__buy-forms__item input {
  outline: none !important;
  border: none !important;
  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 !important;
}
.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: 9999px;
  -webkit-border-radius: 9999px;
  -webkit-border-radius: 9999px;
  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 {
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -webkit-border-radius: 9999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 0.8rem;
  padding: 0.3rem 1rem;
  border: 1px solid var(--border-line-color);
  background-color: #FFFFFF;
}
.module-orderform__sell-forms__item:hover {
  border: 1px solid var(--yellow-color);
  box-shadow: var(--yellow-color);
}
.module-orderform__sell-forms__item input {
  outline: none !important;
  border: none !important;
  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 !important;
}
.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: 9999px;
  -webkit-border-radius: 9999px;
  -webkit-border-radius: 9999px;
  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__input-group {
  margin-bottom: 12px;
}
.module-orderform__input-group label {
  display: block;
  font-size: 12px;
  color: var(--pro-text-secondary, #64748b);
  margin-bottom: 6px;
  font-weight: 500;
}
.module-orderform__input-group--invalid .module-orderform__input-wrapper {
  border-color: var(--pro-sell, #ef4444) !important;
}
.module-orderform__input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--pro-border, #e2e8f0);
  border-radius: 6px;
  background-color: var(--pro-bg-panel, #fff);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.module-orderform__input-wrapper:hover {
  border-color: var(--pro-text-secondary, #94a3b8);
}
.module-orderform__input-wrapper:focus-within {
  border-color: var(--pro-accent, #FCD535);
  box-shadow: 0 0 0 2px rgba(252, 213, 53, 0.15);
}
.module-orderform__input-wrapper input {
  flex: 1;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pro-text-primary, #0f172a);
  text-align: right;
  height: auto !important;
}
.module-orderform__input-wrapper input:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.module-orderform__input-wrapper input::-moz-placeholder {
  color: var(--pro-text-secondary, #94a3b8);
}
.module-orderform__input-wrapper input::placeholder {
  color: var(--pro-text-secondary, #94a3b8);
}
.module-orderform__input-suffix {
  padding: 6px 10px;
  font-size: 13px;
  color: var(--pro-text-primary, #0f172a);
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  margin-right: 4px;
  white-space: nowrap;
}
.module-orderform__dual-layout {
  display: flex;
  gap: 16px;
}
.module-orderform__dual-layout .module-orderform__buy,
.module-orderform__dual-layout .module-orderform__sell {
  flex: 1;
}
@media (max-width: 768px) {
  .module-orderform__dual-layout {
    display: none;
  }
}
.module-orderform__tab-container {
  display: none;
}
@media (max-width: 768px) {
  .module-orderform__tab-container {
    display: flex;
    gap: 8px;
  }
}
.module-orderform__mobile-container {
  display: none;
}
@media (max-width: 768px) {
  .module-orderform__mobile-container {
    display: block;
  }
}
.module-orderform__info {
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 12px;
}
.module-orderform__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.module-orderform__info-label {
  color: var(--pro-text-secondary, #64748b);
}
.module-orderform__info-value {
  color: var(--pro-text-primary, #0f172a);
  font-weight: 500;
}

/** .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%;
  }
}
@media screen and (max-width: 570px) and (max-width: 768px) {
  .module-orderform {
    padding: 10px !important;
  }
  .module-orderform .button-tab {
    padding: 10px 0 !important;
  }
}
/** .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(--blue-dark-color);
}
.module-orderopen__navigation-active {
  color: var(--blue-dark-color);
  border-bottom: 2px solid var(--blue-dark-color);
}
.module-orderopen__navlist {
  display: flex;
  justify-content: flex-start;
  font-size: var(--default-font__size);
  color: #8B8D98;
  margin: 1.5rem 0;
}
.module-orderopen__navlist-item {
  margin-right: 1.5rem;
}
.module-orderopen__navlist-active {
  color: var(--blue-dark-color);
}
.module-orderopen__table .table-title {
  display: flex;
  justify-content: space-between;
  font-size: var(--small-font__size);
}
.module-orderopen__table .table-title__name {
  width: 20%;
  padding: 1rem 0;
  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(--yellow-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(--yellow-color);
}
.module-orderopen__notfont-text {
  display: flex;
  justify-content: center;
  color: var(--second-text-color);
}
.module-orderopen__notfont-text a {
  display: block;
  margin: 0 0.4rem;
  color: var(--yellow-color);
}
.module-orderopen__notfont-text a:hover {
  text-decoration: underline;
}

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

/** .module orderopen end */
@media screen and (max-width: 900px) {
  .module-orderopen {
    /** table start */
    /** table end */
  }
  .module-orderopen__table .table-title {
    display: none;
    justify-content: space-between;
  }
  .module-orderopen__table .table-list__subtitle {
    display: block;
  }
  .module-orderopen__table .table-list__item {
    display: block;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-line-color);
  }
  .module-orderopen__table .table-list__item-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.nav-tab-item {
  color: var(--second-text-color);
}
.nav-tab-item.active-tab {
  color: var(--high-color);
  border-bottom: 2px solid var(--yellow-color);
  font-weight: 600;
}

@media screen and (max-width: 900px) {
  .grid-bottom .module-orderopen .module-head {
    display: none !important;
  }
  .grid-bottom .module-orderopen {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }
}
.news-ticker {
  width: 100%;
  background-color: var(--white-color);
  overflow: hidden;
}
.news-ticker__container {
  display: flex;
  align-items: center;
  height: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
.news-ticker__icon-wrapper {
  width: 28px;
  height: 28px;
  background-color: #F3F4F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.news-ticker__icon {
  width: 16px;
  height: 16px;
  color: #4B5563;
}
.news-ticker__content {
  flex: 1;
  overflow: hidden;
  height: 100%;
  position: relative;
}
.news-ticker__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .news-ticker__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-ticker__item {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--first-text-color);
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  min-width: 0;
}
.news-ticker__item-dot {
  font-size: 18px;
  line-height: 1;
  color: var(--text-secondary, #9CA3AF);
  margin-right: 8px;
  flex-shrink: 0;
}
.news-ticker__item-title {
  flex: 0 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 4px;
}
.news-ticker__item-date {
  font-size: 11px;
  color: var(--text-secondary, #9CA3AF);
  flex-shrink: 0;
  font-weight: 400;
}
.news-ticker__item:hover .news-ticker__item-title {
  text-decoration: underline;
  color: var(--primary-color);
}
.news-ticker__more {
  margin-left: 12px;
  display: flex;
  align-items: center;
}
.news-ticker__link-more {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary, #64748B);
  text-decoration: none;
  background: rgba(128, 128, 128, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 4px 12px;
  transition: all 0.2s ease;
  line-height: normal;
}
.news-ticker__link-more:hover {
  color: var(--first-text-color);
  background: rgba(128, 128, 128, 0.2);
}
.news-ticker .slide-up-enter-active,
.news-ticker .slide-up-leave-active {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-ticker .slide-up-enter-from {
  opacity: 0;
  transform: translateY(100%);
}
.news-ticker .slide-up-leave-to {
  opacity: 0;
  transform: translateY(-100%);
}
.news-ticker .slide-horizontal-enter-active,
.news-ticker .slide-horizontal-leave-active {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-ticker .slide-horizontal-enter-from {
  opacity: 0;
  transform: translateX(30px);
}
.news-ticker .slide-horizontal-leave-to {
  opacity: 0;
  transform: translateX(-30px);
}

@media (max-width: 768px) {
  .news-ticker__container {
    height: 36px;
    padding: 0;
  }
  .news-ticker__grid {
    grid-template-columns: 1fr;
  }
  .news-ticker__item {
    font-size: 12px;
  }
}
:root {
  --pro-bg-main: #f1f5f9;
  /* Slate-100 (Gaps) */
  --pro-bg-panel: #ffffff;
  /* White (Cards) */
  --pro-bg-input: #f8fafc;
  /* Slate-50 */
  --pro-border: #e2e8f0;
  /* Slate-200 */
  --pro-text-primary: #0f172a;
  /* Slate-900 */
  --pro-text-secondary: #64748b;
  /* Slate-500 */
  --pro-buy: #10b981;
  /* Emerald-500 */
  --pro-sell: #ef4444;
  /* Red-500 */
  --pro-accent: #FCD535;
  /* Same Brand Gold */
}

.relative-p {
  font-size: 20px;
  font-weight: 500;
}

.trade {
  background-color: var(--pro-bg-main);
  color: var(--pro-text-primary);
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .trade {
    background-color: var(--pro-bg-panel);
    /* White/Panel background on mobile */
  }
}

.pro-trading-layout {
  margin-top: 0px !important;
}

/* Full-screen container for Market Page */
.market-page-container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* --- Pro Grid Layout --- */
/* --- Pro Grid Layout --- */
.pro-trading-layout {
  display: grid;
  grid-template-columns: 25% 1fr 22%;
  /* Flexible Columns: 25-50-25 */
  grid-template-rows: auto auto;
  /* Main Content Row: Auto, Bottom Row: Auto */
  grid-template-areas: "header header header" "left center right" "bottom bottom bottom";
  gap: 8px;
  /* Standard Gap */
  min-height: calc(100vh - 84px);
  /* Minimum height */
  height: auto;
  /* Let content dictate height */
  padding: 0px !important;
  background-color: transparent;
  overflow-y: auto;
  /* Allow scrolling */
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar IE/Edge */
}
.pro-trading-layout::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}
@media (max-width: 1200px) {
  .pro-trading-layout {
    height: auto;
    overflow-y: auto;
    grid-template-columns: 30% 1fr;
    grid-template-rows: auto 1fr auto auto;
    /* Stack OrderForm at bottom */
    grid-template-areas: "header header" "left center" "bottom bottom" "right right";
  }
}
@media (max-width: 768px) {
  .pro-trading-layout {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 5px;
    height: auto;
    overflow-y: initial;
  }
}

.form-disabled {
  border-radius: 8px;
  padding: 2px;
}

.module-orderform__input-group label {
  margin-left: 5px;
}

.bottom-sheet__content {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

/* --- Market Stats Sub-Cards --- */
.market-stats-card {
  /* No padding on sub-cards, parent manages spacing */
  padding: 0;
}
.market-stats-card--coin {
  /* Coin + Price card */
  flex-shrink: 0;
}
.market-stats-card--stats {
  /* Stats indicators card */
  flex: 1;
}

@media (max-width: 768px) {
  .market-stats-card--stats {
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
    padding: 8px 0;
    border-top: 1px solid var(--pro-border);
  }
  .grid-chart {
    height: 300px !important;
    min-height: 300px !important;
    flex: 0 0 300px !important;
  }
  /* Mobile Column Order & Height */
  .grid-header {
    order: 1;
  }
  .grid-center-col {
    order: 2;
    height: auto;
  }
  .grid-left-col {
    order: 3;
    height: auto !important;
    min-height: auto !important;
  }
  .grid-right-col {
    order: 4;
    height: auto !important;
    min-height: auto !important;
  }
  .grid-bottom {
    order: 5;
  }
  /* Header height auto on mobile */
  .grid-header {
    height: auto;
    min-height: auto;
    padding: 8px 12px;
  }
  /* Market Stats bar tighter on mobile */
  .market-stats-bar {
    gap: 8px;
  }
  .market-stats-card--stats {
    gap: 12px;
    margin-top: 4px;
    padding: 6px 0;
  }
  /* Card heights on mobile */
  .card-orderbook,
  .card-topgainer,
  .card-markettrades {
    height: 300px;
    min-height: 300px;
    flex: 0 0 300px;
  }
}
/* --- Layout Areas (Cards) --- */
.grid-card {
  /* Add generic grid-card class */
  background: var(--pro-bg-panel);
  border: 1px solid var(--pro-border);
  border-radius: 8px;
  overflow: hidden;
}

.grid-header {
  border-radius: 8px;
  grid-area: header;
  border: 1px solid var(--pro-border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 60px;
  /* Concise header */
  flex-shrink: 0;
}

/* Col 1: Left (OrderBook) */
.grid-left-col {
  grid-area: left;
  display: flex;
  flex-direction: column;
  /* Force height to match row (driven by Center Col) */
  height: 0;
  min-height: 100%;
}
.grid-left-col .grid-card {
  height: 100%;
  overflow: hidden;
}

/* Col 2: Center (Chart + Form) */
.grid-center-col {
  grid-area: center;
  display: flex;
  flex-direction: column;
  /* This column drives the height */
  height: auto;
}

/* Col 3: Right (Hot + Trades) */
.grid-right-col {
  grid-area: right;
  display: flex;
  flex-direction: column;
  /* Force height to match row */
  height: 0;
  min-height: 100%;
  gap: 8px;
}

/* Specific Card Adjustments */
.card-orderbook {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 10px;
  /* Ensure internal vue-scroll takes over in module */
}
.card-orderbook .module-orderbook {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-topgainer {
  height: 350px;
  flex-shrink: 0;
  min-height: 350px;
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
}

.grid-chart {
  height: 500px;
  min-height: 500px;
  flex: 0 0 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: transparent;
  /* Ensure no background */
}
.grid-chart iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  /* Ensure iframe is transparent */
}

.card-orderform {
  /* Auto height based on content */
  flex-shrink: 0;
}

.widget-market-trades {
  margin: 5px !important;
}

.card-markettrades {
  flex: 1;
  /* Fill remaining space in Right Col */
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Internal adjustments for list */
}
.card-markettrades .widget-market-trades__list {
  flex: 1;
  overflow: hidden;
  /* vue-scroll overrides to ensure full fill */
}
.card-markettrades .widget-market-trades__list .__vuescroll,
.card-markettrades .widget-market-trades__list .__panel,
.card-markettrades .widget-market-trades__list .__view {
  width: 100% !important;
  height: 100% !important;
}

.grid-bottom {
  grid-area: bottom;
  overflow: hidden;
  height: auto;
  /* Fluid height */
  min-height: 250px;
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  /* Add Card Styling */
  background: var(--pro-bg-panel);
  border: 1px solid var(--pro-border);
  border-radius: 8px;
  /* Ensure internal content scrolls if needed */
}
.grid-bottom .p-2 {
  flex: 1;
  overflow-y: auto;
}

/* --- Mobile Specifics --- */
.mobile-tabs {
  display: none;
  background: var(--pro-bg-panel);
  padding: 10px;
}
@media (max-width: 768px) {
  .mobile-tabs {
    display: flex;
    justify-content: space-around;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--pro-border);
  }
}
.mobile-tabs .tab-btn {
  padding: 8px 16px;
  color: var(--pro-text-secondary);
  font-weight: 600;
}
.mobile-tabs .tab-btn.active {
  color: var(--pro-accent);
  border-bottom: 2px solid var(--pro-accent);
}

/* --- Component Overrides for Dark Mode --- */
/* Market Stats Header (Horizontal) */
.market-stats-bar {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-item.pair-info {
  border-right: 1px solid var(--pro-border);
  padding-right: 24px;
  height: 40px;
  /* Visual separator height */
}
.stat-item.price-info {
  margin-right: 12px;
}
.stat-item .stat-label {
  font-size: 11px;
  color: var(--pro-text-secondary);
  margin-bottom: 2px;
}
.stat-item .stat-value {
  line-height: 1.2;
}

/* Order Book */
.order-book {
  font-family: "Roboto Mono", monospace;
  /* Monospace for numbers */
}
.order-book .row {
  padding: 6px 12px;
  /* Increased padding */
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  /* Slightly larger text */
  line-height: 1.6;
  cursor: pointer;
}
.order-book .row:hover {
  background-color: var(--pro-bg-main);
}
.order-book .price-buy {
  color: var(--pro-buy);
  font-weight: 500;
}
.order-book .price-sell {
  color: var(--pro-sell);
  font-weight: 500;
}
.order-book .amount {
  color: var(--pro-text-primary);
  opacity: 0.9;
}
.order-book .total {
  color: var(--pro-text-secondary);
  font-size: 11px;
}

/* Inputs */
/* Inputs */
input[type=text],
input[type=number],
select {
  background-color: transparent !important;
  /* Transparent as requested */
  border: 1px solid var(--pro-border) !important;
  color: var(--pro-text-primary) !important;
  border-radius: 6px !important;
  height: 40px !important;
  padding: 0 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease;
}
input[type=text]:focus,
input[type=number]:focus,
select:focus {
  border-color: var(--pro-accent) !important;
  box-shadow: 0 0 0 2px rgba(252, 213, 53, 0.1) !important;
  outline: none;
}

/* Order Form Labels */
label {
  font-size: 11px !important;
  color: var(--pro-text-secondary) !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.module-orderform {
  padding: 10px;
}

/* Buttons */
/* Buttons */
.btn-buy,
.module-orderform__buy-forms__button {
  background-color: var(--pro-buy) !important;
  color: white !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 0 16px !important;
  height: 40px !important;
  width: 100%;
  border: none;
  font-size: 14px !important;
  cursor: pointer;
  transition: filter 0.2s;
}
.btn-buy:hover,
.module-orderform__buy-forms__button:hover {
  filter: brightness(1.1);
}

.btn-sell,
.module-orderform__sell-forms__button {
  background-color: var(--pro-sell) !important;
  color: white !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 0 16px !important;
  height: 40px !important;
  width: 100%;
  border: none;
  font-size: 14px !important;
  cursor: pointer;
  transition: filter 0.2s;
}
.btn-sell:hover,
.module-orderform__sell-forms__button:hover {
  filter: brightness(1.1);
}

/* Tab Buttons (New Style) */
.button-tab {
  height: 40px;
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  background: var(--pro-bg-input);
  /* Inactive State: Grey */
  color: var(--pro-text-secondary);
}
.button-tab:hover {
  background: var(--pro-border);
}

.button-tab-buy-active {
  background-color: var(--pro-buy) !important;
  color: white !important;
  border-color: var(--pro-buy) !important;
}

.button-tab-sell-active {
  background-color: var(--pro-sell) !important;
  color: white !important;
  border-color: var(--pro-sell) !important;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  /* Slate-300 - Subtle */
  border-radius: 4px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
  /* Slate-400 - Slightly darker on hover */
}

.card-topgainer h3 {
  font-size: 15px;
  font-weight: 400;
}

.module-orderopen__navigation {
  margin-bottom: -10px !important;
  padding-left: 10px !important;
}

/* Bottom Panel Tabs */
.module-orderopen__navigation {
  border-bottom: 1px solid var(--pro-border);
  background: var(--pro-bg-panel);
}
.module-orderopen__navigation_v2 {
  display: flex;
  gap: 24px;
}
.module-orderopen__navigation .module-orderopen__navigation-active {
  /* Keep original accent color for PC as requested (Skipped Item 2) */
  border-bottom: 2px solid var(--pro-accent);
}

/* 1. Hide Footer on Trading Pages */
footer,
.footer,
.site-footer {
  display: none !important;
}

/* 3. Market Stats PC: Split Sides */
.market-stats-bar {
  justify-content: space-between !important;
  padding-right: 16px;
}

.market-stats-card--stats {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

/* 4. Ticker News Full Width */
.market-news-ticker,
.news-ticker__container {
  max-width: 100% !important;
  width: 100% !important;
}

/* 5. Button Order Form Height 40px */
.btn-buy,
.btn-sell,
.module-orderform__buy-forms__button,
.module-orderform__sell-forms__button {
  height: 40px !important;
  min-height: 40px !important;
  line-height: normal !important;
  /* Reset line-height to center text */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 500 !important;
}

/* Fix syntax error and inactive tabs styles */
.module-orderopen__navigation {
  /* Inactive tabs target */
}
.module-orderopen__navigation div:not(.module-orderopen__navigation-active) {
  color: var(--pro-text-secondary);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.module-orderopen__navigation div:not(.module-orderopen__navigation-active):hover {
  color: var(--pro-text-primary);
}

@media screen and (max-width: 1130px) {
  /* Scoped override for Market Page only */
  .trade.pro-trading-layout,
  .trade.marker-inner {
    margin: 0rem 0 !important;
  }
}
/* [FIX] FINAL MOBILE OVERRIDES - Placed at end to ensure priority */
@media (max-width: 768px) {
  .module-orderform__title {
    margin-top: 10px !important;
  }
  .grid-header {
    height: auto !important;
    min-height: auto !important;
    padding: 8px 12px !important;
    flex-direction: column !important;
    /* Allow wrapping */
    align-items: flex-start !important;
  }
  .market-stats-bar {
    gap: 8px !important;
  }
  /* Ensure sub-cards take full width and wrap properly */
  .market-stats-card {
    width: 100% !important;
  }
  .market-stats-card--stats {
    justify-content: space-between !important;
    padding-top: 8px !important;
    margin-top: 4px !important;
    border-top: 1px solid var(--pro-border) !important;
  }
  /* Page padding to avoid ticker overlap */
  .pro-trading-layout {
    padding-bottom: 60px !important;
  }
  /* Mobile Merged Tab Card */
  /* Mobile Merged Tab Card */
  .mobile-tabbed-card {
    margin-top: 8px;
    order: 10 !important;
    /* Push to bottom below Order Form */
  }
  .mobile-tab-nav {
    background: var(--pro-bg-panel);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-tab-nav::-webkit-scrollbar {
    display: none;
  }
  .mobile-tab-item {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--pro-text-primary);
    /* Default text color */
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
  }
  .mobile-tab-item:hover {
    color: var(--pro-text-primary);
  }
  .mobile-tab-item.active {
    color: var(--pro-text-primary);
    /* Keep text color neutral/black */
    font-weight: 700;
    /* Make bold when active */
    border-bottom-color: var(--pro-accent);
    /* Only border is yellow */
  }
  .mobile-tab-content {
    min-height: 200px;
    /* Height auto to fit content */
  }
}
.futures-mobile-layout {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: transparent;
}

.futures-mobile__stats {
  overflow: visible !important;
}
.futures-mobile__stats .market-stats-card {
  overflow: visible !important;
}

.futures-mobile__tab-card {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.futures-mobile__tab-content {
  padding: 12px 0;
  min-height: 300px;
}
.futures-mobile__tab-content .chart-height {
  height: 300px !important;
  min-height: 300px !important;
}
.futures-mobile__tab-content .chart-height iframe {
  border: none;
}
.futures-mobile__tab-content .chartActive {
  height: 300px !important;
}

.futures-mobile__orders-section {
  margin-top: 10px;
  padding: 5px;
  padding-bottom: 100px;
  background: var(--pro-bg-panel, #fff);
  border: 1px solid var(--pro-border, #e2e8f0);
  border-radius: 8px;
}
.futures-mobile__orders-section .module-orderopen__navigation_v2 {
  margin-top: 5px !important;
  font-size: 11px !important;
  padding-left: 10px !important;
}
.futures-mobile__orders-section .module-orderopen__navigation_v2 .nav-tab-item {
  position: relative;
  margin-right: 20px !important;
  padding-bottom: 10px;
  color: var(--pro-text-secondary, #64748b);
  font-weight: 500;
}
.futures-mobile__orders-section .module-orderopen__navigation_v2 .nav-tab-item.active-tab {
  color: var(--pro-text-primary, #0f172a);
  font-weight: 600;
}
.futures-mobile__orders-section .module-orderopen__navigation_v2 .nav-tab-item.active-tab:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--pro-accent, #FCD535);
}

.futures-mobile__orders-content {
  padding: 8px;
}

.mobile-body {
  margin-top: -5px !important;
}

.futures-mobile__stats {
  border: 1px solid var(--pro-border, #e2e8f0);
  padding: 10px;
  border-radius: 8px;
}

.futures-mobile__sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  background: var(--pro-bg-panel, #fff);
  border-top: 1px solid var(--pro-border, #e2e8f0);
  z-index: 100;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}
.futures-mobile__sticky-footer button {
  flex: 1;
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.futures-mobile__sticky-footer button.btn-long-sticky {
  background-color: var(--pro-buy, #10b981);
}
.futures-mobile__sticky-footer button.btn-long-sticky:active {
  opacity: 0.9;
}
.futures-mobile__sticky-footer button.btn-short-sticky {
  background-color: var(--pro-sell, #ef4444);
}
.futures-mobile__sticky-footer button.btn-short-sticky:active {
  opacity: 0.9;
}

@media (max-width: 986px) {
  .mobile-hidden {
    display: none !important;
  }
}

.futures-order-form-exclusive .module-orderform .form-disabled {
  padding-left: 10px;
  padding-right: 10px;
}

.widget-markets {
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 2rem;
  padding: 1rem;
  min-width: 0;
  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;
  align-items: center;
  text-align: center;
  font-size: 13px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.widget-markets__navigation::-webkit-scrollbar {
  display: none;
}
.widget-markets__navigation h3 {
  padding-top: 2px;
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
}
.widget-markets__navigation h3:hover .navigation-icon__color {
  fill: var(--yellow-color);
}
.widget-markets__navigation nav {
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.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: #fffff;
  background-color: #E6E6E6;
  border-radius: 55px;
}
.widget-markets__navigation .navigation-active {
  padding: 0.2rem 0.5rem;
  color: #fffff;
  background-color: #E6E6E6;
  border-radius: 55px;
}
.widget-markets__navigation .navigation-icon {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.widget-markets__navigation .navigation-icon__color {
  fill: var(--second-text-color);
}
.widget-markets__navigation .navigation-icon__active {
  fill: var(--yellow-color);
}
.widget-markets__search {
  margin-top: 0.5rem;
  border: 1px solid var(--border-line-color);
  border-radius: 8px;
  display: flex;
  justify-content: flex-start;
}
.widget-markets__search:hover {
  border: 1px solid var(--yellow-color);
}
.widget-markets__search input {
  width: 100%;
  display: block;
  font-weight: 400 !important;
  font-size: var(--default-font__size);
  padding: 0.6rem 0.4rem 0.6rem 0;
  outline: none;
  border: none !important;
  color: var(--first-text-color);
  background-color: transparent;
}
.widget-markets__search input:focus {
  outline: none;
  box-shadow: none;
  border: none !important;
}
.widget-markets__search input::-moz-placeholder {
  color: var(--second-text-color);
  border: none !important;
}
.widget-markets__search input::placeholder {
  color: var(--second-text-color);
  border: none !important;
}
.widget-markets__search button {
  outline: none;
  border: none;
}
.widget-markets__search-icon {
  position: relative;
  top: 11px;
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
}
.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: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.widget-markets__sort-icon__color {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.widget-markets__sort-icon__active {
  stroke: var(--yellow-color);
}
.widget-markets__list {
  height: 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(--yellow-color);
}
.widget-markets__list-item__price {
  outline: none;
  width: 38%;
  text-align: left;
}
.widget-markets__list-item__change {
  outline: none;
  width: 24%;
  text-align: right;
  margin-right: 0.8rem;
}
.widget-markets .__rail-is-vertical {
  right: 0px !important;
}

@media screen and (max-width: 1200px) {
  .widget-markets {
    padding: 1rem;
  }
}
.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;
}

.market-ticker-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: var(--blue-dark-thir-color);
  z-index: 999;
  /* Ensure it stays above other content but possibly below modals */
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  /* Ensure Marquee container fits height */
}
.market-ticker-wrapper #market-ticker-slider {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
.market-ticker-wrapper #market-ticker-slider .mbr {
  display: flex;
  align-items: center;
}

.market-ticker-item {
  display: flex;
  align-items: center;
  margin-right: 60px;
  /* 24px + 8px spacing */
  font-family: "Inter", sans-serif;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.market-ticker-item:hover {
  opacity: 0.8;
}

.ticker-icon {
  margin-right: 6px;
  border-radius: 50%;
}

.ticker-symbol {
  color: #ffffff;
  font-weight: 600;
  margin-right: 8px;
  text-transform: uppercase;
}

.ticker-price {
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.ticker-price.up {
  color: #10B981;
}
.ticker-price.down {
  color: #EF4444;
}

.ticker-change {
  margin-left: 6px;
  font-size: 11px;
  opacity: 0.9;
}

.market-ticker-item {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .market-ticker-wrapper {
    z-index: 1000;
    /* Above mobile tabs if needed, or adjust based on layout */
    /* If user wants it ABOVE mobile tabs (which are usually fixed bottom), 
       we might need bottom: 50px or similar. 
       But plan said "Fixed at bottom". 
       If there is a bottom navigation, it might overlap. 
       Mobile tabs are usually z-index 50. 
    */
  }
}
:root {
  --home-bg-body: #0A0A0C;
  --home-bg-elevated: #111114;
  --home-bg-glass: rgba(255, 255, 255, 0.04);
  --home-bg-glass-hover: rgba(255, 255, 255, 0.08);
  --home-text-primary: #FAFAFA;
  --home-text-secondary: #8A8F98;
  --home-text-muted: #5C6370;
  --home-accent-gold: #C9A962;
  --home-accent-gold-hover: #E0C285;
  --home-border-subtle: rgba(255, 255, 255, 0.06);
  --home-color-success: #34D399;
  --home-color-danger: #F87171;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes gradientOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(30px, -20px) scale(1.1);
    opacity: 0.8;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes wave {
  0%, 100% {
    d: path("M0,64 C150,100 350,0 500,50 C650,100 850,0 1000,64 L1000,200 L0,200 Z");
  }
  50% {
    d: path("M0,80 C150,30 350,100 500,64 C650,30 850,100 1000,80 L1000,200 L0,200 Z");
  }
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.2);
  }
  50% {
    box-shadow: 0 0 60px rgba(201, 169, 98, 0.4);
  }
}
#home-lux-wrapper {
  background-color: var(--home-bg-body) !important;
  color: var(--home-text-primary) !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
  overflow-x: hidden;
}
#home-lux-wrapper * {
  font-family: inherit !important;
}
#home-lux-wrapper .home-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
#home-lux-wrapper .section-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vh, 80px);
}
#home-lux-wrapper .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--home-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
#home-lux-wrapper .section-header p {
  font-size: 1.125rem;
  color: var(--home-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
#home-lux-wrapper .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 15vh, 160px) 0;
  overflow: hidden;
}
#home-lux-wrapper .hero::before, #home-lux-wrapper .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
#home-lux-wrapper .hero::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation: gradientOrb 20s ease-in-out infinite;
}
#home-lux-wrapper .hero::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation: gradientOrb 25s ease-in-out infinite reverse;
}
#home-lux-wrapper .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
#home-lux-wrapper .hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
#home-lux-wrapper .hero-headline .highlight {
  color: var(--home-accent-gold);
}
#home-lux-wrapper .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--home-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}
#home-lux-wrapper .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--home-accent-gold);
  color: var(--home-bg-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}
#home-lux-wrapper .hero-cta:hover {
  background: var(--home-accent-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(201, 169, 98, 0.3);
}
#home-lux-wrapper .hero-solar-system {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
#home-lux-wrapper .hero-solar-system .sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(201, 169, 98, 0.15);
}
#home-lux-wrapper .hero-solar-system .orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: rotate-orbit linear infinite;
}
#home-lux-wrapper .hero-solar-system .orbit-1 {
  width: 300px;
  height: 300px;
  animation-duration: 25s;
}
#home-lux-wrapper .hero-solar-system .orbit-2 {
  width: 500px;
  height: 500px;
  animation-duration: 40s;
  animation-direction: reverse;
}
#home-lux-wrapper .hero-solar-system .orbit-3 {
  width: 750px;
  height: 750px;
  animation-duration: 60s;
}
#home-lux-wrapper .hero-solar-system .planet {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}
#home-lux-wrapper .hero-solar-system .planet-1 {
  width: 10px;
  height: 10px;
  background: var(--home-accent-gold);
}
#home-lux-wrapper .hero-solar-system .planet-2 {
  width: 16px;
  height: 16px;
  background: var(--home-color-success);
}
#home-lux-wrapper .hero-solar-system .planet-3 {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
}
@keyframes rotate-orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#home-lux-wrapper .hero .hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#home-lux-wrapper .hero .hero-floating-elements .floating-item {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}
#home-lux-wrapper .hero .hero-floating-elements .floating-item img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}
#home-lux-wrapper .hero .hero-floating-elements .floating-item--1 {
  top: 35%;
  left: 10%;
  width: 80px;
  animation-delay: 0s;
}
#home-lux-wrapper .hero .hero-floating-elements .floating-item--2 {
  bottom: 20%;
  right: 10%;
  width: 100px;
  animation-delay: 1.5s;
}
#home-lux-wrapper .hero .hero-floating-elements .floating-item--3 {
  top: 20%;
  right: 15%;
  width: 60px;
  animation-delay: 2.5s;
  opacity: 0.6;
  filter: blur(2px);
}
#home-lux-wrapper .stats-bar {
  background: var(--home-bg-elevated);
  border-top: 1px solid var(--home-border-subtle);
  border-bottom: 1px solid var(--home-border-subtle);
  padding: clamp(40px, 6vh, 60px) 0;
}
#home-lux-wrapper .stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  #home-lux-wrapper .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
#home-lux-wrapper .stats-bar-item {
  position: relative;
}
#home-lux-wrapper .stats-bar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--home-border-subtle);
}
@media (max-width: 768px) {
  #home-lux-wrapper .stats-bar-item:not(:last-child)::after {
    display: none;
  }
}
#home-lux-wrapper .stats-bar-item .stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--home-accent-gold);
  opacity: 0.8;
}
#home-lux-wrapper .stats-bar-item .stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--home-text-primary);
  letter-spacing: -0.02em;
  font-family: "JetBrains Mono", "SF Mono", monospace;
}
#home-lux-wrapper .stats-bar-item .stat-label {
  font-size: 0.875rem;
  color: var(--home-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
#home-lux-wrapper .market-highlights {
  padding: clamp(120px, 12vh, 160px) 0;
}
#home-lux-wrapper .market-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
#home-lux-wrapper .market-view-all {
  text-align: center;
  margin-top: 48px;
}
#home-lux-wrapper .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid var(--home-border-subtle);
  color: var(--home-text-primary);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#home-lux-wrapper .btn-outline:hover {
  border-color: var(--home-accent-gold);
  color: var(--home-accent-gold);
  transform: translateY(-2px);
}
#home-lux-wrapper .market-card {
  position: relative;
  background: var(--home-bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--home-border-subtle);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  overflow: hidden;
}
#home-lux-wrapper .market-card:hover {
  transform: translateY(-6px) scale(1.01);
  background: var(--home-bg-glass-hover);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 169, 98, 0.1);
}
#home-lux-wrapper .market-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--home-accent-gold);
}
#home-lux-wrapper .market-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
#home-lux-wrapper .market-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--home-bg-elevated);
}
#home-lux-wrapper .market-card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home-lux-wrapper .market-card-name .symbol {
  font-size: 1rem;
  font-weight: 500;
  color: var(--home-text-primary);
}
#home-lux-wrapper .market-card-name .pair {
  font-size: 0.8rem;
  color: var(--home-text-muted);
}
#home-lux-wrapper .market-card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
#home-lux-wrapper .market-card-info {
  flex: 1;
}
#home-lux-wrapper .market-card-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--home-text-primary);
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 4px;
}
#home-lux-wrapper .market-card-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "JetBrains Mono", monospace;
}
#home-lux-wrapper .market-card-change.positive {
  color: var(--home-color-success);
}
#home-lux-wrapper .market-card-change.negative {
  color: var(--home-color-danger);
}
#home-lux-wrapper .market-card-sparkline {
  width: 80px;
  height: 30px;
  flex-shrink: 0;
}
#home-lux-wrapper .market-card-sparkline svg {
  width: 100%;
  height: 100%;
}
#home-lux-wrapper .market-card-sparkline.positive {
  color: var(--home-color-success);
}
#home-lux-wrapper .market-card-sparkline.negative {
  color: var(--home-color-danger);
}
#home-lux-wrapper .why-us {
  padding: clamp(120px, 15vh, 200px) 0;
  background: var(--home-bg-elevated);
}
#home-lux-wrapper .why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  #home-lux-wrapper .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  #home-lux-wrapper .why-us-grid {
    grid-template-columns: 1fr;
  }
}
#home-lux-wrapper .why-us-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--home-bg-glass);
  border: 1px solid var(--home-border-subtle);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#home-lux-wrapper .why-us-card:hover {
  border-color: rgba(201, 169, 98, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
#home-lux-wrapper .why-us-card:hover .card-icon-3d img {
  transform: scale(1.1);
}
#home-lux-wrapper .why-us-card .card-icon-3d {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
}
#home-lux-wrapper .why-us-card .card-icon-3d img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
#home-lux-wrapper .why-us-card .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 20px;
  color: var(--home-accent-gold);
}
#home-lux-wrapper .why-us-card .card-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--home-text-primary);
  margin-bottom: 16px;
}
#home-lux-wrapper .why-us-card .card-description {
  font-size: 1rem;
  color: var(--home-text-secondary);
  line-height: 1.7;
}
#home-lux-wrapper .trust-section {
  padding: clamp(80px, 10vh, 120px) 0;
  text-align: center;
  border-top: 1px solid var(--home-border-subtle);
  border-bottom: 1px solid var(--home-border-subtle);
}
#home-lux-wrapper .trust-label {
  font-size: 0.875rem;
  color: var(--home-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}
#home-lux-wrapper .trust-slider-wrapper {
  max-width: 800px;
  margin: 0 auto 48px;
  position: relative;
  overflow: hidden;
}
#home-lux-wrapper .trust-slider-wrapper::before, #home-lux-wrapper .trust-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
#home-lux-wrapper .trust-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--home-bg-body), transparent);
}
#home-lux-wrapper .trust-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--home-bg-body), transparent);
}
#home-lux-wrapper .trust-slider {
  overflow: hidden;
}
#home-lux-wrapper .trust-slider-track {
  display: flex;
  gap: 48px;
  animation: trustSlide 30s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
@keyframes trustSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#home-lux-wrapper .trust-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.6;
  transition: all 0.3s ease;
}
#home-lux-wrapper .trust-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}
#home-lux-wrapper .trust-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#home-lux-wrapper .trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #home-lux-wrapper .trust-badges {
    gap: 12px;
  }
}
#home-lux-wrapper .trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--home-bg-glass);
  border: 1px solid var(--home-border-subtle);
  border-radius: 100px;
  color: var(--home-text-secondary);
  font-size: 0.875rem;
}
#home-lux-wrapper .trust-badge svg {
  color: var(--home-accent-gold);
}
#home-lux-wrapper .testimonials {
  padding: clamp(120px, 12vh, 160px) 0;
  background: var(--home-bg-elevated);
}
#home-lux-wrapper .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
#home-lux-wrapper .testimonial-card {
  padding: 32px;
  background: var(--home-bg-glass);
  border: 1px solid var(--home-border-subtle);
  border-radius: 20px;
  transition: all 0.3s ease;
}
#home-lux-wrapper .testimonial-card:hover {
  border-color: rgba(201, 169, 98, 0.2);
  transform: translateY(-4px);
}
#home-lux-wrapper .testimonial-stars {
  color: var(--home-accent-gold);
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
#home-lux-wrapper .testimonial-text {
  font-size: 1rem;
  color: var(--home-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
#home-lux-wrapper .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
#home-lux-wrapper .testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--home-accent-gold), #8B7355);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--home-bg-body);
  font-weight: 600;
  font-size: 0.875rem;
}
#home-lux-wrapper .testimonial-info .testimonial-name {
  font-weight: 500;
  color: var(--home-text-primary);
  margin-bottom: 2px;
}
#home-lux-wrapper .testimonial-info .testimonial-role {
  font-size: 0.875rem;
  color: var(--home-text-muted);
}
#home-lux-wrapper .app-cta {
  padding: clamp(120px, 15vh, 200px) 0;
}
#home-lux-wrapper .app-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 992px) {
  #home-lux-wrapper .app-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}
#home-lux-wrapper .app-cta-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 100px;
  color: var(--home-accent-gold);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}
#home-lux-wrapper .app-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
#home-lux-wrapper .app-cta-content p {
  color: var(--home-text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
#home-lux-wrapper .app-cta-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 992px) {
  #home-lux-wrapper .app-cta-features {
    align-items: center;
  }
}
#home-lux-wrapper .app-cta-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--home-text-secondary);
}
#home-lux-wrapper .app-cta-features li svg {
  color: var(--home-accent-gold);
  flex-shrink: 0;
}
#home-lux-wrapper .app-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  #home-lux-wrapper .app-cta-buttons {
    justify-content: center;
  }
}
#home-lux-wrapper .app-cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  #home-lux-wrapper .app-cta-visual {
    order: -1;
  }
}
#home-lux-wrapper .app-cta-phone {
  max-width: 450px;
}
#home-lux-wrapper .app-cta-phone .phone-3d {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  animation: float 6s ease-in-out infinite;
}
#home-lux-wrapper .app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--home-bg-glass);
  border: 1px solid var(--home-border-subtle);
  border-radius: 12px;
  color: var(--home-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
#home-lux-wrapper .app-btn:hover {
  background: var(--home-bg-glass-hover);
  border-color: var(--home-accent-gold);
  transform: translateY(-2px);
}
#home-lux-wrapper .app-btn span {
  text-align: left;
}
#home-lux-wrapper .app-btn span small {
  display: block;
  font-size: 0.75rem;
  color: var(--home-text-muted);
}
#home-lux-wrapper .final-cta {
  position: relative;
  padding: clamp(120px, 18vh, 240px) 0;
  text-align: center;
  overflow: hidden;
}
#home-lux-wrapper .final-cta .home-container {
  position: relative;
}
#home-lux-wrapper .final-cta .cta-floating {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
#home-lux-wrapper .final-cta .cta-floating-item {
  position: absolute;
  animation: float 8s ease-in-out infinite;
}
#home-lux-wrapper .final-cta .cta-floating-item img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}
#home-lux-wrapper .final-cta .cta-floating-item--1 {
  left: 5%;
  top: 20%;
  transform: translateY(-50%);
  width: 100px;
}
@media (max-width: 992px) {
  #home-lux-wrapper .final-cta .cta-floating-item--1 {
    display: none;
  }
}
#home-lux-wrapper .final-cta .cta-floating-item--2 {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  animation-delay: 2s;
}
@media (max-width: 992px) {
  #home-lux-wrapper .final-cta .cta-floating-item--2 {
    display: none;
  }
}
#home-lux-wrapper .final-cta .cta-content {
  position: relative;
  z-index: 1;
}
#home-lux-wrapper .final-cta .cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
#home-lux-wrapper .final-cta .cta-content p {
  font-size: 1.125rem;
  color: var(--home-text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
#home-lux-wrapper .final-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: var(--home-accent-gold);
  color: var(--home-bg-body);
  font-size: 1.125rem;
  font-weight: 500;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 16px 32px rgba(201, 169, 98, 0.25);
}
#home-lux-wrapper .final-cta .cta-btn:hover {
  background: var(--home-accent-gold-hover);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(201, 169, 98, 0.35);
}
#home-lux-wrapper .home-footer {
  background: var(--home-bg-elevated);
  border-top: 1px solid var(--home-border-subtle);
  padding: 80px 0 40px;
  margin-top: 0;
}
#home-lux-wrapper .home-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #home-lux-wrapper .home-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  #home-lux-wrapper .home-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
}
#home-lux-wrapper .home-footer .footer-brand p {
  margin-top: 24px;
  color: var(--home-text-secondary);
  line-height: 1.6;
  max-width: 300px;
}
@media (max-width: 768px) {
  #home-lux-wrapper .home-footer .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}
#home-lux-wrapper .home-footer .footer-col h4 {
  color: var(--home-text-primary);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 24px;
}
#home-lux-wrapper .home-footer .footer-col ul {
  list-style: none;
  padding: 0;
}
#home-lux-wrapper .home-footer .footer-col ul li {
  margin-bottom: 12px;
}
#home-lux-wrapper .home-footer .footer-col ul li a {
  color: var(--home-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
#home-lux-wrapper .home-footer .footer-col ul li a:hover {
  color: var(--home-accent-gold);
}
#home-lux-wrapper .home-footer-bottom {
  border-top: 1px solid var(--home-border-subtle);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--home-text-muted);
  font-size: 0.875rem;
}
@media (max-width: 640px) {
  #home-lux-wrapper .home-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
#home-lux-wrapper .home-footer-bottom .social-links {
  display: flex;
  gap: 20px;
}
#home-lux-wrapper .home-footer-bottom .social-links a {
  color: var(--home-text-secondary);
  transition: color 0.2s;
}
#home-lux-wrapper .home-footer-bottom .social-links a:hover {
  color: var(--home-text-primary);
}
#home-lux-wrapper .final-cta {
  padding: clamp(120px, 15vh, 180px) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--home-bg-elevated) 0%, var(--home-bg-body) 100%);
}
#home-lux-wrapper .final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 24px;
}
#home-lux-wrapper .final-cta .cta-btn {
  display: inline-flex;
  padding: 18px 48px;
  background: var(--home-accent-gold);
  color: var(--home-bg-body);
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
#home-lux-wrapper .final-cta .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(201, 169, 98, 0.3);
}
#home-lux-wrapper .final-cta .cta-icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}
#home-lux-wrapper .final-cta .cta-icons .cta-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-bg-glass);
  border: 1px solid var(--home-border-subtle);
  border-radius: 16px;
  color: var(--home-accent-gold);
  animation: pulseGlow 3s ease-in-out infinite;
}
#home-lux-wrapper .final-cta .cta-icons .cta-icon:nth-child(2) {
  animation-delay: 0.5s;
}
#home-lux-wrapper .final-cta .cta-icons .cta-icon:nth-child(3) {
  animation-delay: 1s;
}
#home-lux-wrapper .final-cta .cta-icons .cta-icon svg {
  width: 28px;
  height: 28px;
}
#home-lux-wrapper .head {
  display: none;
}
#home-lux-wrapper .table-home {
  display: none;
}
#home-lux-wrapper .screen {
  display: none;
}
#home-lux-wrapper .features {
  display: none;
}

@media (max-width: 768px) {
  #home-lux-wrapper .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  #home-lux-wrapper .hero::before, #home-lux-wrapper .hero::after {
    width: 300px;
    height: 300px;
  }
  #home-lux-wrapper .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #home-lux-wrapper .why-us-grid {
    gap: 32px;
  }
  #home-lux-wrapper .why-us-card .card-number {
    font-size: 3rem;
  }
  #home-lux-wrapper .hero-solar-system {
    width: 100%;
    height: 100vw;
  }
  #home-lux-wrapper .hero-solar-system .orbit-1 {
    width: 200px;
    height: 200px;
  }
  #home-lux-wrapper .hero-solar-system .orbit-2 {
    width: 320px;
    height: 320px;
  }
  #home-lux-wrapper .hero-solar-system .orbit-3 {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 768px) {
  .hero-floating-elements {
    display: none;
  }
  /* Căn giữa toàn bộ khối Brand */
  .footer-brand {
    display: flex;
    flex-direction: column; /* Xếp các thành phần bên trong theo hàng dọc */
    align-items: center; /* Căn giữa theo chiều ngang */
    justify-content: center; /* Căn giữa theo chiều dọc nếu có height */
    text-align: center; /* Đảm bảo chữ bên trong cũng được căn giữa */
    margin-bottom: 20px; /* Khoảng cách dưới để tách biệt với các phần khác */
  }
  /* Đảm bảo logo (nếu là hình ảnh) không bị lệch */
  .footer-brand img {
    margin: 0 auto; /* Căn giữa ảnh nếu nó là block */
    display: block;
  }
}
body.homepage-v4 .mobile-body {
  padding: 0 !important;
}
body.homepage-v4 .section-footer {
  display: none !important;
}
body.homepage-v4 .main__container > div {
  max-width: none !important;
}

.deposit-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px 60px;
}
@media (max-width: 768px) {
  .deposit-wrapper {
    padding: 0 15px 40px;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

.pagination-controls .pagination-btn {
  background: #fff;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-controls .pagination-btn:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.pagination-controls .pagination-btn:disabled {
  background: #f1f5f9;
  opacity: 0.5;
  cursor: not-allowed;
}

.deposit-layout-wrapper .deposit-selection-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.deposit-layout-wrapper .deposit-selection-column .t-rich-user-select,
.deposit-layout-wrapper .deposit-selection-column .vs__dropdown-toggle,
.deposit-layout-wrapper .deposit-selection-column input,
.deposit-layout-wrapper .deposit-selection-column .filter-select {
  border-radius: 9999px !important;
}
.deposit-layout-wrapper .network-btn {
  background-color: #ffffff !important;
  border: 1px solid #f3f4f6;
  color: #1e2329 !important;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 9999px !important;
}
.deposit-layout-wrapper .network-btn .network-name {
  color: #1e2329 !important;
}
.deposit-layout-wrapper .network-btn:hover {
  border-color: #e2e8f0;
  background-color: #f8fafc !important;
}
.deposit-layout-wrapper .network-btn.active-network {
  background-color: #ffffff !important;
  border: 1px solid #181a20;
  color: #181a20 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.deposit-layout-wrapper .network-btn.active-network .network-name {
  color: #181a20 !important;
}
.deposit-layout-wrapper .network-btn.inactive-network {
  background-color: #ffffff !important;
  border: 1px solid #f3f4f6;
  color: #71717a !important;
}
.deposit-layout-wrapper .network-btn.inactive-network .network-name {
  color: #71717a !important;
}
.deposit-layout-wrapper .deposit-address-box .qr-container canvas {
  margin: 0 auto;
  padding: 10px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.deposit-layout-wrapper .history-card .history-table {
  border-collapse: separate;
  border-spacing: 0;
}
.deposit-layout-wrapper .history-card .history-table th {
  white-space: nowrap;
  border-bottom: 1px solid #f1f5f9;
}
.deposit-layout-wrapper .history-card .history-table td {
  vertical-align: middle;
}
.deposit-layout-wrapper .history-card .history-table tr {
  cursor: pointer;
  transition: background 0.2s;
}

.deposit-layout-wrapper,
.deposit-layout-wrapper * {
  font-family: "Inter", sans-serif !important;
}

.swap-layout-wrapper .filter-select__option {
  padding: 0 !important;
}

.swap-layout-wrapper .filter-hover {
  color: rbga(13, 14, 12) !important;
  background-color: var(--gold-hover-color);
}

.swap-layout-wrapper .filter-active {
  color: rbga(13, 14, 12) !important;
  background-color: var(--gold-light-color);
}

.swap-layout-wrapper .pt-1,
.swap-layout-wrapper .ml-5 {
  color: rbga(13, 14, 12) !important;
}

.swap-layout-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0;
}
@media (min-width: 768px) {
  .swap-layout-wrapper {
    padding: 0 24px;
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .swap-layout-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.swap-layout-wrapper .swap-inner {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.swap-interface-card {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}
@media (min-width: 768px) {
  .swap-interface-card {
    padding: 32px;
  }
}
.swap-interface-card .components-filter__item {
  background: transparent !important;
  box-shadow: none !important;
}

.swap-instructions-card {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
}
.swap-instructions-card .instructions-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e2329;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.swap-instructions-card .instructions-title .title-icon {
  width: 32px;
  height: 32px;
  background-color: #fef3c7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
}
.swap-instructions-card .instructions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.swap-instructions-card .instructions-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #f8fafc;
}
.swap-instructions-card .instructions-list li:last-child {
  border-bottom: none;
}
.swap-instructions-card .instructions-list li .step-number {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #64748b;
}
.swap-instructions-card .instructions-list li .step-content .step-title {
  font-weight: 600;
  color: #1e2329;
  margin-bottom: 4px;
}
.swap-instructions-card .instructions-list li .step-content .step-description {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}
.swap-instructions-card .instructions-note {
  margin-top: 24px;
  padding: 16px;
  background-color: #f8fafc;
  border-radius: 12px;
  font-size: 0.875rem;
  color: #64748b;
}
.swap-instructions-card .instructions-note strong {
  color: #1e2329;
}

.swap-layout-wrapper,
.swap-layout-wrapper * {
  font-family: "Inter", sans-serif !important;
}

.module-orderopen {
  padding: 5px !important;
}

.module-orderform__title {
  margin-top: 10px;
}

.mobile-body {
  margin-bottom: 10px !important;
}

.module-orderopen {
  margin-bottom: 50px !important;
}

.market-lite__sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  gap: 12px;
  padding: 12px 16px;
  background: var(--pro-bg-panel, #fff);
  border-top: 1px solid var(--pro-border, #e2e8f0);
  z-index: 100;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 986px) {
  .market-lite__sticky-footer {
    display: flex;
  }
}
.market-lite__sticky-footer button {
  flex: 1;
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  border: none;
  cursor: pointer;
}
.market-lite__sticky-footer button.btn-buy-sticky {
  background-color: var(--pro-buy, #10b981);
}
.market-lite__sticky-footer button.btn-buy-sticky:active {
  opacity: 0.9;
}
.market-lite__sticky-footer button.btn-sell-sticky {
  background-color: var(--pro-sell, #ef4444);
}
.market-lite__sticky-footer button.btn-sell-sticky:active {
  opacity: 0.9;
}
.market-lite__orders-section {
  margin-top: 10px;
  padding-bottom: 100px;
  background: var(--pro-bg-panel, #fff);
  border: 1px solid var(--pro-border, #e2e8f0);
  border-radius: 8px;
  padding: 5px;
}
@media (min-width: 987px) {
  .market-lite__orders-section {
    display: none;
  }
}
.market-lite__orders-section .module-orderopen__navigation_v2 {
  margin-top: 5px !important;
  font-size: 11px !important;
  padding-left: 10px !important;
}
.market-lite__orders-section .module-orderopen__navigation_v2 .nav-tab-item {
  position: relative;
  margin-right: 20px !important;
  padding-bottom: 10px;
  color: var(--pro-text-secondary, #64748b);
  font-weight: 500;
}
.market-lite__orders-section .module-orderopen__navigation_v2 .nav-tab-item.active-tab {
  color: var(--pro-text-primary, #0f172a);
  font-weight: 600;
}
.market-lite__orders-section .module-orderopen__navigation_v2 .nav-tab-item.active-tab:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--pro-accent, #FCD535);
}

@media (max-width: 986px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (max-width: 986px) {
  .market-stats-bar,
  .market-stats-card {
    gap: 8px !important;
  }
}

@media (max-width: 986px) {
  .market-stats-card--coin .stat-item {
    margin-right: 8px;
  }
}

@media (max-width: 986px) {
  .market-lite__tab-card {
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}

@media (max-width: 986px) {
  .module-head {
    padding-bottom: 0 !important;
    margin-bottom: 0px;
    border-bottom: none;
  }
  .module-head .module-orderopen__navigation {
    margin-bottom: 0 !important;
    margin-top: 8px !important;
    border-bottom: none !important;
  }
  .module-head .module-orderopen__navigation {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0 !important;
    gap: 8px;
    width: 100%;
  }
  .module-head .module-orderopen__navigation-title {
    margin-right: 0 !important;
    padding: 6px 16px;
    border-radius: 20px;
    background-color: var(--pro-bg-input, #f1f5f9);
    cursor: pointer;
    transition: all 0.2s;
  }
  .module-head .module-orderopen__navigation-title h4 {
    font-size: 13px;
    margin: 0;
    white-space: nowrap;
    color: var(--pro-text-secondary, #64748b);
    font-weight: 500;
  }
  .module-head .module-orderopen__navigation-title.module-orderopen__navigation-active {
    background-color: var(--pro-text-primary, #0f172a);
    border-bottom: none;
  }
  .module-head .module-orderopen__navigation-title.module-orderopen__navigation-active:after {
    display: none;
  }
  .module-head .module-orderopen__navigation-title.module-orderopen__navigation-active h4 {
    color: #ffffff;
    font-weight: 600;
  }
}

@media screen and (max-width: 570px) {
  .trade-head__left {
    width: 100%;
    padding: 0px !important;
  }
}
.module-orderbook {
  width: 100%;
}
.module-orderbook__title {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.module-orderbook__title-price, .module-orderbook__title-amount, .module-orderbook__title-total {
  flex: 1;
  text-align: right;
}
.module-orderbook__title-price:first-child, .module-orderbook__title-amount:first-child, .module-orderbook__title-total:first-child {
  text-align: left;
}
.module-orderbook__list-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.module-orderbook__list-item__price, .module-orderbook__list-item__amount, .module-orderbook__list-item__total {
  flex: 1;
  text-align: right;
  width: 33.33%;
}
.module-orderbook__list-item__price {
  text-align: left;
}

@media (max-width: 986px) {
  .trade-head__block-middle {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border: none !important;
    background: transparent !important;
  }
  .trade-head__block-middle .trade-head__right.chart-height {
    flex: 1;
    height: auto !important;
    min-height: 350px;
  }
  .trade-head__block-middle .trade-head__right.chart-height iframe {
    height: 100% !important;
    min-height: 350px;
  }
}

.options-page {
  background-color: var(--pro-bg-panel);
  color: var(--pro-text-primary);
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.module-orderopen {
  padding: 10px !important;
}

.options-chart-stat {
  padding: 8px !important;
  border: 1px solid var(--pro-border);
  border-radius: 8px;
}

.options-page__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0px 10px;
}
@media (max-width: 768px) {
  .options-page__container {
    padding: 0px 10px;
  }
}

.options-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .options-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    grid-template-rows: auto;
    grid-template-areas: "chart form";
    align-items: start;
  }
}

.options-layout__chart-area {
  grid-area: chart;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.options-layout__form-area {
  grid-area: form;
  align-self: start;
}

.options-card,
.options-chart-wrapper {
  background: var(--pro-bg-panel);
  border: 1px solid var(--pro-border);
  border-radius: 12px;
  overflow: hidden;
}

.options-card--stats {
  padding: 16px;
}
.options-card--chart {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.options-card--form {
  height: auto;
  display: flex;
  flex-direction: column;
}
.options-card--orders {
  padding: 0;
}

.options-order-manager {
  background: var(--pro-bg-panel);
}

.options-order-manager__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--pro-border);
  padding: 0 16px;
}

.options-order-manager__tab {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pro-text-secondary);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: -1px;
}
.options-order-manager__tab:hover {
  color: var(--pro-text-primary);
}
.options-order-manager__tab--active {
  color: var(--pro-text-primary);
  font-weight: 600;
  border-bottom-color: var(--pro-accent);
}

.options-order-manager__content {
  padding: 0;
  min-height: 200px;
}

.options-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

@media (max-width: 1180px) {
  .options-form {
    padding: 10px;
  }
}
.options-form__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pro-border);
}
.options-form__header .balance-label {
  font-size: 13px;
  color: var(--pro-text-secondary);
  font-weight: 500;
}
.options-form__header .balance-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--pro-text-primary);
}
.options-form__header .balance-value .currency {
  font-size: 12px;
  font-weight: 400;
  color: var(--pro-text-secondary);
  margin-left: 4px;
}

.options-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.options-form__group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--pro-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.options-form__select,
.options-form__input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background-color: var(--pro-bg-input);
  border: 1px solid var(--pro-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pro-text-primary);
  transition: all 0.2s ease;
}
.options-form__select:hover,
.options-form__input:hover {
  background-color: var(--pro-bg-panel);
  border-color: rgb(209.1931818182, 218.6704545455, 231.3068181818);
}
.options-form__select:focus,
.options-form__input:focus {
  outline: none;
  border-color: var(--pro-accent);
  box-shadow: 0 0 0 3px rgba(252, 213, 53, 0.15);
}
.options-form__select--error,
.options-form__input--error {
  border-color: var(--pro-sell);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.options-form__input-wrapper {
  position: relative;
}
.options-form__input-wrapper input {
  padding-right: 60px;
}
.options-form__input-wrapper .currency-suffix {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 600;
  color: var(--pro-text-secondary);
}

.options-form__summary {
  background: #eff6ff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.options-form__summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.options-form__summary .summary-row .summary-label {
  color: #3b82f6;
  font-weight: 500;
}
.options-form__summary .summary-row .summary-value {
  color: #1d4ed8;
  font-weight: 700;
}
.options-form__summary .summary-row .summary-value--large {
  font-size: 22px;
}

.options-form__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
}

.options-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.options-btn:active {
  transform: scale(0.97);
}
.options-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.options-btn .btn-label {
  font-size: 18px;
  line-height: 1;
}
.options-btn .btn-sublabel {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
  text-transform: uppercase;
}
.options-btn--call {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.options-btn--call:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}
.options-btn--put {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
}
.options-btn--put:hover {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
}

.options-history__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pro-text-primary);
  margin-bottom: 20px;
}

.options-history__table {
  width: 100%;
  border-collapse: collapse;
}
.options-history__table thead {
  background-color: var(--pro-bg-input);
}
.options-history__table thead th {
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--pro-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}
.options-history__table tbody tr {
  border-bottom: 1px solid var(--pro-border);
}
.options-history__table tbody tr:last-child {
  border-bottom: none;
}
.options-history__table tbody tr:hover {
  background-color: var(--pro-bg-input);
}
.options-history__table tbody td {
  padding: 16px;
  font-size: 14px;
  color: var(--pro-text-primary);
}

.options-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.options-badge--call {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.options-badge--put {
  background-color: rgba(244, 63, 94, 0.1);
  color: #e11d48;
}
.options-badge--win {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.options-badge--loss {
  background-color: rgba(244, 63, 94, 0.1);
  color: #e11d48;
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.options-pnl {
  font-weight: 600;
}
.options-pnl--positive {
  color: var(--pro-buy);
}
.options-pnl--negative {
  color: var(--pro-sell);
}

.options-empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--pro-text-secondary);
  font-size: 14px;
}

.options-chart-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pro-bg-panel);
  z-index: 10;
}
.options-chart-loader img {
  opacity: 0.4;
}

.options-chart-iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .options-chart-iframe {
    min-height: 350px;
  }
}

@media (max-width: 1024px) {
  .options-layout {
    display: flex;
    flex-direction: column;
  }
  .mobile-hidden {
    display: none !important;
  }
  .options-layout__form-area {
    display: none;
  }
  .options-layout__chart-area {
    order: 1;
  }
  .options-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pro-bg-panel);
    padding: 16px;
    border-top: 1px solid var(--pro-border);
    z-index: 100;
    display: block;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  }
  .options-mobile-trade-btn {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    background: var(--pro-accent);
    color: var(--pro-text-on-accent);
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .options-chart-iframe {
    min-height: 300px;
  }
}
@media (min-width: 1025px) {
  .options-mobile-footer {
    display: none;
  }
  .mobile-hidden {
    display: block;
  }
}
body.launchpad-active .mobile-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.backlp {
  margin-top: 20px;
}

.launchpad-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px 60px;
}
@media (max-width: 768px) {
  .launchpad-wrapper {
    padding: 0 15px 40px;
  }
}

.launchpad-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 0;
  padding: 40px calc((100vw - 1400px) / 2 + 40px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .launchpad-banner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .launchpad-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.launchpad-banner__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.launchpad-banner__content h1 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .launchpad-banner__content h1 {
    font-size: 22px;
  }
}
.launchpad-banner__content p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}
.launchpad-banner__image {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .launchpad-banner__image {
    display: none;
  }
}
.launchpad-banner__image svg {
  stroke: rgba(255, 255, 255, 0.8);
  -webkit-mask: linear-gradient(135deg, #000 25%, rgba(0, 0, 0, 0.5) 50%, #000 75%);
          mask: linear-gradient(135deg, #000 25%, rgba(0, 0, 0, 0.5) 50%, #000 75%);
  -webkit-mask-size: 400% 100%;
          mask-size: 400% 100%;
  animation: shine 2s linear infinite;
  max-width: 140px;
  height: auto;
}

@keyframes shine {
  0% {
    -webkit-mask-position: 100% 0;
            mask-position: 100% 0;
  }
  100% {
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
}
.launchpad-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: #ffffff;
  padding: 8px;
  border-radius: 999px;
}
@media (max-width: 768px) {
  .launchpad-toolbar {
    flex-direction: column;
    gap: 16px;
    background: transparent;
    padding: 0;
    border: none;
    align-items: stretch;
  }
}

.launchpad-tabs {
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .launchpad-tabs {
    overflow-x: auto;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .launchpad-tabs::-webkit-scrollbar {
    display: none;
  }
}

.launchpad-pill-btn {
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.launchpad-pill-btn:hover {
  color: #0f172a;
  background: #f1f5f9;
  transform: translateY(-1px);
}
.launchpad-pill-btn.active {
  color: #ffffff;
  background: #0f172a;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
}

.launchpad-search {
  position: relative;
  width: 300px;
}
@media (max-width: 768px) {
  .launchpad-search {
    width: 100%;
  }
}
.launchpad-search .search-icon {
  position: absolute;
  right: 14px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  width: 18px;
  height: 18px;
}
.launchpad-search input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: all 0.2s;
}
.launchpad-search input::-moz-placeholder {
  color: #94a3b8;
}
.launchpad-search input::placeholder {
  color: #94a3b8;
}
.launchpad-search input:focus {
  background: #fff;
  border-color: #cbd5e1;
  box-shadow: 0 0 0 3px rgba(226, 232, 240, 0.5);
}

.launchpad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .launchpad-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .launchpad-grid {
    grid-template-columns: 1fr;
  }
}

.launchpad-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
}
.launchpad-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}
.launchpad-card__header {
  padding: 24px 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px dashed #f1f5f9;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}
.launchpad-card__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  padding: 4px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.launchpad-card__info {
  flex: 1;
}
.launchpad-card__info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 2px 0;
}
.launchpad-card__info span {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}
.launchpad-card__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.launchpad-card__badge--active {
  background-color: #ecfdf5;
  color: #059669;
  border: 1px solid #d1fae5;
}
.launchpad-card__badge--upcoming {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}
.launchpad-card__badge--closed {
  background-color: #fff1f2;
  color: #e11d48;
  border: 1px solid #ffe4e6;
}
.launchpad-card__body {
  padding: 24px;
  flex: 1;
}
.launchpad-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
}
.launchpad-card__row:last-child {
  margin-bottom: 0;
}
.launchpad-card__row.highlight {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed #f1f5f9;
}
.launchpad-card__row label {
  color: #64748b;
  font-weight: 500;
}
.launchpad-card__row span,
.launchpad-card__row strong {
  color: #334155;
  font-weight: 600;
}
.launchpad-card__footer {
  padding: 0 24px 24px;
}

.launchpad-progress {
  margin-bottom: 0;
}
.launchpad-progress__bar {
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}
.launchpad-progress__bar-fill {
  height: 100%;
  background: #0f172a;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.launchpad-progress__bar-fill.green {
  background: #10b981;
}

.btn-launchpad-outline, .btn-launchpad-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-launchpad-outline:hover, .btn-launchpad-primary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.btn-launchpad-primary {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}
.btn-launchpad-primary:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.launchpad-bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 900px) {
  .launchpad-bottom-section {
    grid-template-columns: 1fr;
  }
}

.launchpad-guide-card {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
}
.launchpad-guide-card h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 20px 0;
}
.launchpad-guide-card p {
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.6;
}
.launchpad-guide-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.launchpad-guide-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
}
.launchpad-guide-card li::before {
  content: "";
  min-width: 6px;
  min-height: 6px;
  background: #0f172a;
  border-radius: 50%;
  margin-top: 8px;
}
.launchpad-guide-card li:last-child {
  margin-bottom: 0;
}

.launchpad-faq {
  margin: 0;
  max-width: none;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  height: 100%;
}
@media (max-width: 768px) {
  .launchpad-faq {
    padding: 24px;
    border-radius: 16px;
  }
}
.launchpad-faq h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 30px 0;
  text-align: left;
}

.launchpad-faq-item {
  border-bottom: 1px solid #f1f5f9;
}
.launchpad-faq-item:last-child {
  border-bottom: none;
}
.launchpad-faq-item .faq-question {
  padding: 20px 0;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.launchpad-faq-item .faq-question:hover {
  color: #0f172a;
}
.launchpad-faq-item .faq-question .arrow {
  font-size: 12px;
  color: #94a3b8;
  transition: transform 0.3s;
}
.launchpad-faq-item.active .faq-question {
  color: #0f172a;
}
.launchpad-faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}
.launchpad-faq-item .faq-answer {
  padding-bottom: 20px;
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
  padding-right: 20px;
}

.launchpad-detail-layout {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  .launchpad-detail-layout {
    flex-direction: column;
  }
}

.launchpad-main-col {
  flex: 2;
  min-width: 0;
}

.launchpad-sidebar-col {
  flex: 1;
  min-width: 350px;
}
@media (max-width: 900px) {
  .launchpad-sidebar-col {
    min-width: auto;
  }
}

.launchpad-detail-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 24px;
}
.launchpad-detail-card.sticky {
  position: sticky;
  top: 100px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.launchpad-hero {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 30px;
}
.launchpad-hero img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  padding: 8px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.launchpad-hero__content h1 {
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.1;
}
.launchpad-hero__content p {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}

.launchpad-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-top: 1px dashed #e2e8f0;
  border-bottom: 1px dashed #e2e8f0;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .launchpad-metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.launchpad-metrics-grid .metric-item__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 6px;
}
.launchpad-metrics-grid .metric-item__value {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  font-feature-settings: "tnum";
}

.launchpad-input-group {
  margin-bottom: 24px;
}
.launchpad-input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.launchpad-input-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  outline: none;
  transition: all 0.2s;
  background: #f8fafc;
}
.launchpad-input-group input:focus {
  background: #fff;
  border-color: #0f172a;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.05);
}

.launchpad-calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  color: #64748b;
}
.launchpad-calc-row strong {
  color: #0f172a;
  font-weight: 600;
}

.staking-active .mobile-body {
  padding: 0 !important;
}

.staking-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px 60px;
}
@media (max-width: 768px) {
  .staking-wrapper {
    padding: 0 15px 40px;
  }
}

.staking-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 0;
  padding: 40px calc((100vw - 1400px) / 2 + 40px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .staking-banner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .staking-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.staking-banner__content-wrapper, .staking-banner__text {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.staking-banner__content-wrapper h1, .staking-banner__text h1 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .staking-banner__content-wrapper h1, .staking-banner__text h1 {
    font-size: 22px;
  }
}
.staking-banner__content-wrapper p, .staking-banner__text p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}
.staking-banner__image {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .staking-banner__image {
    display: none;
  }
}
.staking-banner__image svg {
  stroke: rgba(255, 255, 255, 0.8);
  -webkit-mask: linear-gradient(135deg, #000 25%, rgba(0, 0, 0, 0.5) 50%, #000 75%);
          mask: linear-gradient(135deg, #000 25%, rgba(0, 0, 0, 0.5) 50%, #000 75%);
  -webkit-mask-size: 400% 100%;
          mask-size: 400% 100%;
  animation: shine 2s linear infinite;
  max-width: 140px;
  height: auto;
}
.staking-banner__image img {
  max-width: 140px;
  height: auto;
}

.staking-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: #ffffff;
  padding: 8px;
  border-radius: 999px;
}
@media (max-width: 768px) {
  .staking-toolbar {
    flex-direction: column;
    gap: 16px;
    background: transparent;
    padding: 0;
    border: none;
    align-items: stretch;
  }
}

.staking-tabs-container {
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .staking-tabs-container {
    overflow-x: auto;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .staking-tabs-container::-webkit-scrollbar {
    display: none;
  }
}

.staking-pill-btn {
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.staking-pill-btn:hover {
  color: #0f172a;
  background: #f1f5f9;
  transform: translateY(-1px);
}
.staking-pill-btn--active {
  color: #ffffff;
  background: #0f172a;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
}

.staking-search {
  position: relative;
  width: 300px;
}
@media (max-width: 768px) {
  .staking-search {
    width: 100%;
  }
}
.staking-search .search-icon {
  position: absolute;
  right: 14px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  width: 18px;
  height: 18px;
}
.staking-search input,
.staking-search .staking-search-input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: all 0.2s;
}
.staking-search input::-moz-placeholder, .staking-search .staking-search-input::-moz-placeholder {
  color: #94a3b8;
}
.staking-search input::placeholder,
.staking-search .staking-search-input::placeholder {
  color: #94a3b8;
}
.staking-search input:focus,
.staking-search .staking-search-input:focus {
  background: #fff;
  border-color: #cbd5e1;
  box-shadow: 0 0 0 3px rgba(226, 232, 240, 0.5);
}

.staking-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 1280px) {
  .staking-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .staking-card-grid {
    grid-template-columns: 1fr;
  }
}

.staking-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.staking-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}
.staking-card__header {
  padding: 24px 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px dashed #f1f5f9;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}
.staking-card__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  padding: 4px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.staking-card__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.staking-card__title {
  flex: 1;
}
.staking-card__title h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.staking-card__title span {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}
.staking-card .staking-status-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.staking-card .staking-status-badge.staking-status-active {
  background-color: #f1f5f9;
  color: #0f172a;
}
.staking-card .staking-status-badge.staking-status-sold, .staking-card .staking-status-badge.staking-status-redeemed {
  background-color: #f1f5f9;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}
.staking-card__body {
  padding: 24px;
  flex: 1;
}
.staking-card .staking-apy-display {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.staking-card .staking-apy-display .staking-apy__label {
  display: block;
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.staking-card .staking-apy-display .staking-apy__value {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}
.staking-card .staking-limits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.staking-card .staking-limit-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.staking-card .staking-limit-row span:first-child,
.staking-card .staking-limit-row label {
  color: #64748b;
  font-weight: 500;
}
.staking-card .staking-limit-row span:last-child,
.staking-card .staking-limit-row strong {
  color: #334155;
  font-weight: 600;
}
.staking-card__footer {
  padding: 0 24px 24px;
}
.staking-card .btn-stake-primary {
  display: block;
  width: 100%;
  background-color: #0f172a;
  color: #fff;
  border: 1px solid #0f172a;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  background: #0f172a;
  cursor: pointer;
  transition: all 0.2s;
}
.staking-card .btn-stake-primary:hover {
  background: #1e293b;
  border-color: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}
.staking-card .btn-stake-primary:disabled, .staking-card .btn-stake-primary.btn-stake-disabled {
  background: #e2e8f0;
  color: #94a3b8;
  border-color: #e2e8f0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.staking-footer-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 900px) {
  .staking-footer-split {
    grid-template-columns: 1fr;
  }
}

.staking-guide {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
}
.staking-guide h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 20px 0;
}
.staking-guide .guide-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.staking-guide .guide-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
}
.staking-guide .guide-step__number {
  min-width: 6px;
  min-height: 6px;
  width: 6px;
  height: 6px;
  background: #0f172a;
  border-radius: 50%;
  margin-top: 8px;
}
.staking-guide .guide-step__content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  margin: 0 0 4px 0;
}
.staking-guide .guide-step__content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.staking-faq {
  margin: 0;
  max-width: none;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  height: 100%;
}
@media (max-width: 768px) {
  .staking-faq {
    padding: 24px;
    border-radius: 16px;
  }
}
.staking-faq h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 30px 0;
  text-align: left;
}
.staking-faq-item {
  border-bottom: 1px solid #f1f5f9;
}
.staking-faq-item:last-child {
  border-bottom: none;
}
.staking-faq-item.active .faq-question {
  color: #0f172a;
}
.staking-faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}
.staking-faq .faq-question {
  padding: 20px 0;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.staking-faq .faq-question:hover {
  color: #0f172a;
}
.staking-faq .faq-question .arrow {
  font-size: 12px;
  color: #94a3b8;
  transition: transform 0.3s;
}
.staking-faq .faq-answer {
  padding-bottom: 20px;
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
  padding-right: 20px;
}

.staking-detail-back-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.staking-detail-back-btn:hover {
  color: #0f172a;
}
.staking-detail-back-btn svg {
  margin-right: 6px;
}

.staking-detail-layout {
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 30px;
  align-items: start;
}
@media (max-width: 1024px) {
  .staking-detail-layout {
    grid-template-columns: 1fr;
  }
}

.staking-detail-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 30px;
  box-shadow: none;
}

.coin-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #e2e8f0;
}

.coin-info-logo {
  width: 64px;
  height: 64px;
  margin-right: 20px;
  border-radius: 50%;
  padding: 4px;
  border: 1px solid #f1f5f9;
}

.coin-info-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
}
.coin-info-text span {
  color: #64748b;
  font-size: 15px;
}

.coin-stat-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #f8fafc;
  font-size: 14px;
}
.coin-stat-item:last-child {
  border-bottom: none;
}

.coin-stat-label {
  color: #64748b;
  font-weight: 500;
}

.coin-stat-value {
  color: #0f172a;
  font-weight: 600;
}

.btn-stake-primary {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.btn-stake-primary:hover {
  background: #0f172a;
  color: #fff;
}

.calculator-inline-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .calculator-inline-row {
    flex-direction: column;
    align-items: stretch;
  }
}
.calculator-inline-row .calc-col-balance {
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .calculator-inline-row .calc-col-balance {
    flex: 1;
  }
}
.calculator-inline-row .calc-col-amount {
  flex: 1;
}

.calculator-balance-display-mini {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 16px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  white-space: nowrap;
}
.calculator-balance-display-mini .label {
  color: #64748b;
}
.calculator-balance-display-mini .val {
  color: #0f172a;
  font-weight: 700;
}

.input-suffix {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.staking-compact-info {
  margin-top: 10px;
}

.staking-compact-row {
  display: flex;
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid #f1f5f9;
}
.staking-compact-row .compact-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.staking-compact-row .compact-stat .label {
  font-size: 11px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 500;
}
.staking-compact-row .compact-stat .value {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.staking-apy-grid-box .apy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.staking-apy-grid-box .apy-grid-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.2s;
}
.staking-apy-grid-box .apy-grid-item:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.staking-apy-grid-box .apy-grid-item .days {
  font-size: 11px;
  color: #64748b;
}
.staking-apy-grid-box .apy-grid-item .rate {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.calculator-balance-display {
  background: #f8fafc;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  border: 1px solid #e2e8f0;
}
.calculator-balance-display span:first-child {
  color: #64748b;
}
.calculator-balance-display span:last-child {
  color: #0f172a;
  font-weight: 600;
}

.days-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.day-option-btn {
  padding: 8px 18px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.day-option-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.day-option-btn.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.stake-input-control {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.2s;
  background: #ffffff;
}
.stake-input-control:focus {
  border-color: #0f172a;
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.05);
}

.stake-summary-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.stake-summary-box .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}
.stake-summary-box .summary-row:last-child {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
  margin-top: 10px;
}

.summary-highlight {
  font-size: 18px;
  font-weight: 700;
  color: #16a34a;
}

.staking-inline-guide {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}
.staking-inline-guide h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 16px 0;
}
.staking-inline-guide ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.staking-inline-guide ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}
.staking-inline-guide ul li:last-child {
  margin-bottom: 0;
}
.staking-inline-guide ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #0f172a;
  border-radius: 50%;
}
.staking-inline-guide ul li strong {
  color: #334155;
  font-weight: 600;
}

.odht .pagenav {
  margin-top: 0;
}

.odht .pagenav .bg-white {
  border-radius: 55px;
}

.orders-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px 60px;
}
@media (max-width: 768px) {
  .orders-wrapper {
    padding: 0 15px 40px;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

.orders-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 0;
  padding: 40px calc((100vw - 1400px) / 2 + 40px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .orders-banner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .orders-banner {
    padding: 30px 24px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.orders-banner__text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.orders-banner__text h1 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .orders-banner__text h1 {
    font-size: 22px;
  }
}
.orders-banner__text p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

.orders-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .orders-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    overflow: visible;
  }
}
.orders-toolbar .tabs {
  overflow: visible;
  width: 100%;
}

.orders-nav {
  display: flex;
  background: transparent;
  padding: 0;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.orders-nav::-webkit-scrollbar {
  height: 0;
  display: none;
}
@media (max-width: 768px) {
  .orders-nav {
    width: 100%;
    padding-bottom: 8px;
  }
}

.orders-nav-item {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.orders-nav-item:hover {
  color: #0f172a;
}
.orders-nav-item.active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.orders-filter-select .filter-select {
  margin-top: 5px !important;
}

.orders-toolbar .tabs {
  margin-bottom: 10px !important;
}

.orders-filter-input input {
  height: 36px !important;
  padding-top: 10px !important;
  padding-bottom: 0 !important;
  border-radius: 3px !important;
  border: 1px solid #e2e8f0 !important;
}
.orders-filter-input input:focus {
  border-color: #94a3b8 !important;
  outline: none !important;
}
.orders-filter-input label {
  display: none !important;
}
@media (max-width: 768px) {
  .orders-filter-input {
    width: 100% !important;
  }
}

.orders-filter-select {
  height: 42px !important;
  flex: 0 0 auto;
}
.orders-filter-select.market-select {
  min-width: 220px !important;
}
.orders-filter-select.status-select {
  min-width: 160px !important;
}
@media (max-width: 768px) {
  .orders-filter-select {
    width: 100% !important;
    min-width: 0 !important;
    flex: 1;
  }
}

.orders-search-btn {
  height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 9999px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  margin-top: 0 !important;
}

.orders-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}
.orders-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.orders-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

table.orders-table {
  width: 100%;
  border-collapse: collapse;
}
table.orders-table thead {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
table.orders-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
table.orders-table thead th:first-child {
  padding-left: 32px;
}
table.orders-table thead th:last-child {
  padding-right: 32px;
  text-align: right;
}
table.orders-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.1s;
}
table.orders-table tbody tr:last-child {
  border-bottom: none;
}
table.orders-table tbody tr:hover {
  background: #f8fafc;
}
table.orders-table tbody td {
  padding: 20px 24px;
  font-size: 14px;
  color: #334155;
  vertical-align: middle;
}
table.orders-table tbody td:first-child {
  padding-left: 32px;
  font-weight: 500;
  color: #0f172a;
}
table.orders-table tbody td:last-child {
  padding-right: 32px;
  text-align: right;
}

.badge-order-type {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-order-type.buy {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #d1fae5;
}
.badge-order-type.sell {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fee2e2;
}

.order-btn-cancel {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.order-btn-cancel:hover {
  background: #fef2f2;
  color: #ef4444;
  border-color: #fee2e2;
}

.orders-empty {
  display: flex;
  flex-direction: column;
  /* Xếp các thành phần theo hàng dọc */
  align-items: center;
  /* Căn giữa theo chiều ngang */
  text-align: center;
  /* Căn giữa nội dung văn bản bên trong */
}

.orders-empty {
  padding: 60px 20px;
  text-align: center;
  color: #94a3b8;
}
.orders-empty svg {
  margin-bottom: 16px;
  color: #cbd5e1;
  width: 64px;
  height: 64px;
}
.orders-empty p {
  font-size: 15px;
  font-weight: 500;
}

body.markets-overview-active .mobile-body {
  padding: 0 !important;
}

.markets-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px 60px;
}
@media (max-width: 768px) {
  .markets-wrapper {
    padding: 0 15px 40px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
  }
}

.markets-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 0;
  padding: 40px calc((100vw - 1400px) / 2 + 40px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .markets-banner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .markets-banner {
    padding: 30px 20px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 24px;
  }
  .markets-banner__text {
    padding-right: 0;
  }
}
.markets-banner__text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.markets-banner__text h1 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .markets-banner__text h1 {
    font-size: 22px;
  }
}
.markets-banner__text p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}
.markets-banner__image {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .markets-banner__image {
    display: none;
  }
}
.markets-banner__image svg {
  stroke: rgba(255, 255, 255, 0.8);
  -webkit-mask: linear-gradient(135deg, #000 25%, rgba(0, 0, 0, 0.5) 50%, #000 75%);
          mask: linear-gradient(135deg, #000 25%, rgba(0, 0, 0, 0.5) 50%, #000 75%);
  -webkit-mask-size: 400% 100%;
          mask-size: 400% 100%;
  animation: markets-shine 2s linear infinite;
  max-width: 140px;
  height: auto;
}

@keyframes markets-shine {
  0% {
    -webkit-mask-position: 100% 0;
            mask-position: 100% 0;
  }
  100% {
    -webkit-mask-position: -100% 0;
            mask-position: -100% 0;
  }
}
.markets-trends-section {
  margin-bottom: 32px;
}

.markets-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .markets-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

.markets-nav {
  display: flex;
  background: transparent;
  padding: 0;
  gap: 8px;
}
@media (max-width: 768px) {
  .markets-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

.markets-nav-item {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  border: none;
}
.markets-nav-item:hover {
  color: #0f172a;
  background: #f1f5f9;
}
.markets-nav-item.active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.markets-sub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0;
}
@media (max-width: 768px) {
  .markets-sub-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 16px;
  }
}

.markets-sub-tab-item {
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.markets-sub-tab-item:hover {
  background: #e2e8f0;
  color: #334155;
}
.markets-sub-tab-item.active {
  background: #ffffff;
  color: #0f172a;
  border-color: #0f172a;
  font-weight: 600;
}

.markets-search {
  position: relative;
  width: 260px;
}
@media (max-width: 768px) {
  .markets-search {
    width: 100%;
  }
}
.markets-search input {
  width: 100%;
  height: 42px;
  padding: 0 44px 0 16px;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 14px;
  color: #334155;
  background: #ffffff;
  transition: all 0.2s ease;
}
.markets-search input::-moz-placeholder {
  color: #94a3b8;
}
.markets-search input::placeholder {
  color: #94a3b8;
}
.markets-search input:focus {
  outline: none;
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.05);
}
.markets-search__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #94a3b8;
  pointer-events: none;
}
.markets-search__icon svg {
  width: 100%;
  height: 100%;
}

.markets-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}
.markets-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.markets-table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.markets-table-wrapper::-webkit-scrollbar {
  height: 4px;
}
.markets-table-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

table.markets-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
table.markets-table thead {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
table.markets-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
}
table.markets-table thead th:hover {
  color: #0f172a;
}
table.markets-table thead th:first-child {
  padding-left: 32px;
}
table.markets-table thead th:last-child {
  padding-right: 32px;
  text-align: right;
}
table.markets-table thead th .sort-icon {
  display: inline-flex;
  margin-left: 4px;
  vertical-align: middle;
}
table.markets-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
  cursor: pointer;
}
table.markets-table tbody tr:last-child {
  border-bottom: none;
}
table.markets-table tbody tr:hover {
  background: #f8fafc;
}
table.markets-table tbody td {
  padding: 16px 20px;
  font-size: 14px;
  color: #334155;
  vertical-align: middle;
}
table.markets-table tbody td:first-child {
  padding-left: 32px;
}
table.markets-table tbody td:last-child {
  padding-right: 32px;
  text-align: right;
}

.market-pair-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.market-pair-cell .star-icon {
  width: 18px;
  height: 18px;
  color: #cbd5e1;
  cursor: pointer;
  transition: color 0.2s;
  flex-shrink: 0;
}
.market-pair-cell .star-icon:hover, .market-pair-cell .star-icon.active {
  color: #f59e0b;
}
.market-pair-cell .coin-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.market-pair-cell .pair-name {
  font-weight: 600;
  color: #0f172a;
}
.market-pair-cell .pair-name .perpetual-tag {
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  color: #94a3b8;
  margin-left: 4px;
}

.price-change {
  font-weight: 500;
}
.price-change.positive {
  color: #10b981;
}
.price-change.negative {
  color: #ef4444;
}

.trade-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.trade-btn:hover {
  background: #1e293b;
}

.markets-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: #94a3b8;
}
.markets-empty svg {
  margin-bottom: 16px;
  color: #cbd5e1;
  width: 64px;
  height: 64px;
}
.markets-empty p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.wallets-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px 60px;
}
@media (max-width: 768px) {
  .wallets-wrapper {
    padding: 0 15px 40px;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

.wallets-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 0;
  padding: 40px calc((100vw - 1400px) / 2 + 40px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .wallets-banner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .wallets-banner {
    padding: 30px 24px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.wallets-banner__text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.wallets-banner__text h1 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .wallets-banner__text h1 {
    font-size: 22px;
  }
}
.wallets-banner__text p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

.wallets-balance-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .wallets-balance-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.wallets-balance-card {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .wallets-balance-card {
    padding: 20px 24px;
  }
}
.wallets-balance-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.wallets-balance-card__header h3 {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wallets-balance-card__header svg {
  color: #9ca3af;
  width: 14px;
  height: 14px;
}
.wallets-balance-card__amount p {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .wallets-balance-card__amount p {
    font-size: 28px;
  }
}
.wallets-balance-card__amount small {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.wallets-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 768px) {
  .wallets-actions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.wallets-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
@media (max-width: 768px) {
  .wallets-action-btn {
    padding: 12px 14px;
    gap: 6px;
  }
}
.wallets-action-btn svg {
  width: 18px;
  height: 18px;
  stroke: #64748b;
  transition: stroke 0.2s ease;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .wallets-action-btn svg {
    width: 16px;
    height: 16px;
  }
}
.wallets-action-btn span {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .wallets-action-btn span {
    font-size: 13px;
  }
}
.wallets-action-btn:hover {
  border-color: #0f172a;
  background: #f8fafc;
}
.wallets-action-btn:hover svg {
  stroke: #0f172a;
}
.wallets-action-btn:hover span {
  color: #0f172a;
}
.wallets-action-btn:active {
  transform: scale(0.98);
}

.wallets-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .wallets-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.wallets-nav {
  display: flex;
  background: transparent;
  padding: 0;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.wallets-nav::-webkit-scrollbar {
  height: 0;
  display: none;
}
@media (max-width: 768px) {
  .wallets-nav {
    width: 100%;
    padding-bottom: 8px;
  }
}

.wallets-nav-item {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.wallets-nav-item:hover {
  color: #0f172a;
}
.wallets-nav-item.active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.wallets-search {
  position: relative;
  width: 280px;
}
@media (max-width: 768px) {
  .wallets-search {
    width: 100%;
  }
}
.wallets-search input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 16px;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 14px;
  color: #334155;
  transition: all 0.2s ease;
}
.wallets-search input::-moz-placeholder {
  color: #94a3b8;
}
.wallets-search input::placeholder {
  color: #94a3b8;
}
.wallets-search input:focus {
  outline: none;
  border-color: #94a3b8;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.1);
}
.wallets-search__icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.wallets-search__icon svg {
  width: 100%;
  height: 100%;
  stroke: #94a3b8;
}

.wallets-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}
.wallets-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.wallets-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

table.wallets-table {
  width: 100%;
  border-collapse: collapse;
}
table.wallets-table thead {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
table.wallets-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
}
table.wallets-table thead th:first-child {
  padding-left: 32px;
}
table.wallets-table thead th:last-child {
  padding-right: 32px;
  text-align: right;
  cursor: default;
}
table.wallets-table thead th .icon-filter,
table.wallets-table thead th svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}
table.wallets-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.1s;
}
table.wallets-table tbody tr:last-child {
  border-bottom: none;
}
table.wallets-table tbody tr:hover {
  background: #f8fafc;
}
table.wallets-table tbody td {
  padding: 20px 24px;
  font-size: 14px;
  color: #334155;
  vertical-align: middle;
}
table.wallets-table tbody td:first-child {
  padding-left: 32px;
}
table.wallets-table tbody td:last-child {
  padding-right: 32px;
  text-align: right;
}

.wallets-currency {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wallets-currency__logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.wallets-currency__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wallets-currency__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wallets-currency__symbol {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.wallets-currency__name {
  font-size: 12px;
  color: #94a3b8;
}

.wallets-balance {
  font-weight: 500;
  color: #0f172a;
}

.wallets-actions-cell {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.wallets-actions-cell a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
  color: #64748b;
  background: #ffffff;
  white-space: nowrap;
}
.wallets-actions-cell a:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #cbd5e1;
}
.wallets-actions-cell a.trade-action:hover {
  background: #ecfdf5;
  color: #059669;
  border-color: #d1fae5;
}

.wallets-empty {
  padding: 60px 20px;
  text-align: center;
  color: #94a3b8;
}
.wallets-empty svg {
  margin-bottom: 16px;
  color: #cbd5e1;
  width: 64px;
  height: 64px;
}
.wallets-empty p {
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .wallets-card {
    border: none;
    box-shadow: none;
    background: transparent;
  }
  table.wallets-table thead {
    display: none;
  }
  table.wallets-table tbody tr {
    display: block;
    padding: 20px;
    margin-bottom: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
  }
  table.wallets-table tbody tr:hover {
    background: #ffffff;
  }
  table.wallets-table tbody td {
    display: block;
    padding: 8px 0;
    text-align: left !important;
  }
  table.wallets-table tbody td:first-child {
    padding-left: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 12px;
  }
  table.wallets-table tbody td:last-child {
    padding-right: 0;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-top: 12px;
  }
  table.wallets-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }
  table.wallets-table tbody td:first-child::before {
    display: none;
  }
  .wallets-actions-cell {
    justify-content: flex-start;
  }
}
.profile-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px 60px;
}
@media (max-width: 768px) {
  .profile-wrapper {
    padding: 0 15px 40px;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

.profile-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 0;
  padding: 40px calc((100vw - 1400px) / 2 + 40px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .profile-banner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .profile-banner {
    padding: 30px 24px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.profile-banner__text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.profile-banner__text h1 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .profile-banner__text h1 {
    font-size: 22px;
  }
}
.profile-banner__text p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

.profile-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .profile-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    overflow: visible;
  }
}

.profile-nav {
  display: flex;
  background: transparent;
  padding: 0;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.profile-nav::-webkit-scrollbar {
  height: 0;
  display: none;
}
@media (max-width: 768px) {
  .profile-nav {
    width: 100%;
    padding-bottom: 8px;
  }
}

.profile-nav-item {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.profile-nav-item:hover {
  color: #0f172a;
}
.profile-nav-item.active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 1024px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

.profile-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: none !important;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.profile-card:hover {
  border-color: #cbd5e1;
}

.profile-guide-card {
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 28px;
  position: sticky;
  top: 100px;
  box-shadow: none !important;
}
@media (max-width: 1024px) {
  .profile-guide-card {
    position: static;
    margin-top: 24px;
  }
}
.profile-guide-card h4 {
  color: #0f172a;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.profile-guide-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 16px 0;
}
.profile-guide-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.profile-guide-card ul li {
  padding-left: 20px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.5;
}
.profile-guide-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
}
.profile-guide-card ul li:last-child {
  margin-bottom: 0;
}

.profile-inner-page {
  padding: 32px;
}
@media (max-width: 768px) {
  .profile-inner-page {
    padding: 24px 20px;
  }
}

.profile-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.profile-inner-page input[type=text],
.profile-inner-page input[type=email],
.profile-inner-page input[type=password],
.profile-inner-page input[type=number],
.profile-inner-page input[type=tel],
.profile-inner-page textarea {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #0f172a;
  background: #ffffff;
  transition: all 0.2s ease;
}
.profile-inner-page input[type=text]:focus,
.profile-inner-page input[type=email]:focus,
.profile-inner-page input[type=password]:focus,
.profile-inner-page input[type=number]:focus,
.profile-inner-page input[type=tel]:focus,
.profile-inner-page textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.profile-inner-page input[type=text]::-moz-placeholder, .profile-inner-page input[type=email]::-moz-placeholder, .profile-inner-page input[type=password]::-moz-placeholder, .profile-inner-page input[type=number]::-moz-placeholder, .profile-inner-page input[type=tel]::-moz-placeholder, .profile-inner-page textarea::-moz-placeholder {
  color: #94a3b8;
}
.profile-inner-page input[type=text]::placeholder,
.profile-inner-page input[type=email]::placeholder,
.profile-inner-page input[type=password]::placeholder,
.profile-inner-page input[type=number]::placeholder,
.profile-inner-page input[type=tel]::placeholder,
.profile-inner-page textarea::placeholder {
  color: #94a3b8;
}
.profile-inner-page input[type=text]:disabled,
.profile-inner-page input[type=email]:disabled,
.profile-inner-page input[type=password]:disabled,
.profile-inner-page input[type=number]:disabled,
.profile-inner-page input[type=tel]:disabled,
.profile-inner-page textarea:disabled {
  background: #f8fafc;
  color: #64748b;
  cursor: not-allowed;
}
.profile-inner-page label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
.profile-inner-page .form-group,
.profile-inner-page .mt-4 {
  margin-bottom: 20px;
}

.profile-inner-page button[type=submit],
.profile-inner-page .btn-primary,
.profile-inner-page .profile-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #0f172a;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.profile-inner-page button[type=submit]:hover,
.profile-inner-page .btn-primary:hover,
.profile-inner-page .profile-btn-primary:hover {
  background: #1e293b;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
  transform: translateY(-1px);
}
.profile-inner-page button[type=submit]:active,
.profile-inner-page .btn-primary:active,
.profile-inner-page .profile-btn-primary:active {
  transform: translateY(0);
}
.profile-inner-page button[type=submit]:disabled,
.profile-inner-page .btn-primary:disabled,
.profile-inner-page .profile-btn-primary:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.profile-inner-page .btn-secondary,
.profile-inner-page .profile-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.profile-inner-page .btn-secondary:hover,
.profile-inner-page .profile-btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}
.profile-inner-page .btn-secondary:disabled,
.profile-inner-page .profile-btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.profile-inner-page .btn-danger,
.profile-inner-page .profile-btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #dc2626;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.profile-inner-page .btn-danger:hover,
.profile-inner-page .profile-btn-danger:hover {
  background: #b91c1c;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
.profile-inner-page .btn-danger:disabled,
.profile-inner-page .profile-btn-danger:disabled {
  background: #fca5a5;
  cursor: not-allowed;
}

.profile-info-item {
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.profile-info-item:hover {
  background: #f1f5f9;
}

.profile-info-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.profile-info-value {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.kyc-page {
  padding: 32px;
}
@media (max-width: 768px) {
  .kyc-page {
    padding: 24px 20px;
  }
}
.kyc-page .user-status__title h2 {
  font-size: 24px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 24px;
}
.kyc-page label,
.kyc-page .input-field label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #374151 !important;
  margin-bottom: 8px;
}
.kyc-page .components-filter__item {
  width: 100%;
}
.kyc-page .components-filter__item input[type=text],
.kyc-page .components-filter__item input[type=email],
.kyc-page .components-filter__item input[type=password] {
  width: 100%;
  max-width: none;
  height: 50px !important;
  padding: 12px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 9999px !important;
  font-size: 14px;
  color: #0f172a;
  background: #ffffff;
  transition: all 0.2s ease;
}
.kyc-page .components-filter__item input[type=text]:focus,
.kyc-page .components-filter__item input[type=email]:focus,
.kyc-page .components-filter__item input[type=password]:focus {
  outline: none;
  border-color: #F0B90B;
  box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
}
.kyc-page .components-filter__item input[type=text]::-moz-placeholder, .kyc-page .components-filter__item input[type=email]::-moz-placeholder, .kyc-page .components-filter__item input[type=password]::-moz-placeholder {
  color: #94a3b8;
}
.kyc-page .components-filter__item input[type=text]::placeholder,
.kyc-page .components-filter__item input[type=email]::placeholder,
.kyc-page .components-filter__item input[type=password]::placeholder {
  color: #94a3b8;
}
.kyc-page .kyc-country-select-wrapper .input-field {
  width: 100%;
}
.kyc-page .kyc-country-select-wrapper .t-rich-select,
.kyc-page .kyc-country-select-wrapper .vs__dropdown-toggle {
  width: 100% !important;
  height: 50px !important;
  min-height: 50px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 9999px !important;
  background: #ffffff !important;
  display: flex;
  align-items: center;
}
.kyc-page .kyc-country-select-wrapper .vs__dropdown-menu {
  background-color: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}
.kyc-page .kyc-country-select-wrapper .vs__search {
  padding: 8px 12px !important;
}
.kyc-page .kyc-country-select-wrapper .vs__selected {
  color: #0f172a;
}
.kyc-page .form-components__item-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.kyc-page .form-components__item-radio .input-radio {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kyc-page .form-components__item-radio .input-radio label {
  margin-bottom: 0;
  font-weight: 400;
  color: #374151 !important;
  cursor: pointer;
}
.kyc-page .form-components__block-item.block-title h3,
.kyc-page .block-list__item-title {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 16px;
}
.kyc-page .form-components__block-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: #0f172a;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 200px;
}
.kyc-page .form-components__block-button:hover {
  background: #1e293b;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px 60px;
}
@media (max-width: 768px) {
  .page-wrapper {
    padding: 0 15px 40px;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

.page-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 0;
  padding: 40px calc((100vw - 1400px) / 2 + 40px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .page-banner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .page-banner {
    padding: 30px 24px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.page-banner__text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.page-banner__text h1 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .page-banner__text h1 {
    font-size: 22px;
  }
}
.page-banner__text p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

.page-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  padding: 40px;
}
@media (max-width: 768px) {
  .page-card {
    padding: 24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}
.page-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.page-content {
  max-width: 900px;
}
.page-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}
.page-content h2:first-child {
  margin-top: 0;
}
.page-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 1.5rem 0 0.75rem;
  line-height: 1.4;
}
.page-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 1.25rem 0 0.5rem;
}
.page-content p {
  font-size: 15px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.page-content ul,
.page-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: #334155;
}
.page-content ul li,
.page-content ol li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.page-content ul {
  list-style-type: disc;
}
.page-content ol {
  list-style-type: decimal;
}
.page-content a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.page-content a::after {
  content: " →";
  font-size: 0.9em;
  opacity: 0.7;
}
.page-content a:hover {
  text-decoration: underline;
}
.page-content a:hover::after {
  opacity: 1;
}
.page-content strong,
.page-content b {
  font-weight: 600;
  color: #0f172a;
}
.page-content blockquote {
  border-left: 4px solid #e2e8f0;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #64748b;
  font-style: italic;
}
.page-content code {
  background: #f1f5f9;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: #334155;
}
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}
.page-content hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 2rem 0;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.page-content table th,
.page-content table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.page-content table th {
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
}
.page-content table td {
  color: #334155;
}

.article-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px 60px;
}
@media (max-width: 768px) {
  .article-wrapper {
    padding: 0 15px 40px;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}

.article-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 0;
  padding: 60px calc((100vw - 1400px) / 2 + 40px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 50px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1450px) {
  .article-banner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .article-banner {
    padding: 40px 24px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.article-banner__text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.article-banner__text .article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(240, 185, 11, 0.15);
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: 999px;
  color: #F0B90B;
  font-weight: 600;
  font-size: 13px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 20px;
}
.article-banner__text .article-back-link:hover {
  background: rgba(240, 185, 11, 0.25);
  transform: translateX(-4px);
  color: #ffffff;
}
.article-banner__text .article-back-link svg {
  width: 14px;
  height: 14px;
}
.article-banner__text h1 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .article-banner__text h1 {
    font-size: 28px;
  }
}
.article-banner__text p {
  font-size: 16px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.article-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}
.article-card:hover .article-card__img img {
  transform: scale(1.05);
}
.article-card:hover .article-card__title {
  color: #F0B90B;
}
.article-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}
.article-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 1;
}
.article-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card__meta {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-card__meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
  color: #F0B90B;
}
.article-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.article-card__excerpt {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.article-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.article-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(240, 185, 11, 0.1);
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #d97706;
  transition: all 0.3s ease;
  cursor: pointer;
}
.article-card__read-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.article-card__read-more:hover {
  background: rgba(240, 185, 11, 0.2);
  color: #b45309;
}
.article-card__read-more:hover svg {
  transform: translateX(4px);
}

.single-article-container {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  padding: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .single-article-container {
    padding: 24px;
    border-radius: 0;
    border: none;
    border-top: 1px solid #e2e8f0;
  }
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}
.article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 40px 0 20px;
  letter-spacing: -0.01em;
}
.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin: 32px 0 16px;
}
.article-content p {
  margin-bottom: 24px;
}
.article-content ul,
.article-content ol {
  margin: 24px 0;
  padding-left: 24px;
}
.article-content ul li,
.article-content ol li {
  margin-bottom: 12px;
  position: relative;
}
.article-content img {
  border-radius: 12px;
  margin: 32px 0;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.article-content blockquote {
  border-left: 4px solid #F0B90B;
  background: #f8fafc;
  padding: 24px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
  font-style: italic;
  color: #475569;
}

.article-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}
@media (max-width: 1024px) {
  .article-detail-layout {
    grid-template-columns: 1fr;
  }
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 28px;
}
.sidebar-widget h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-widget h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 16px;
  background: #F0B90B;
  border-radius: 2px;
}
.sidebar-widget .latest-post-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #f1f5f9;
  cursor: pointer;
}
.sidebar-widget .latest-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sidebar-widget .latest-post-item__thumb {
  width: 70px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
}
.sidebar-widget .latest-post-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.sidebar-widget .latest-post-item__info {
  flex: 1;
}
.sidebar-widget .latest-post-item__info h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 5px 0;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.sidebar-widget .latest-post-item__info span {
  font-size: 12px;
  color: #94a3b8;
}
.sidebar-widget .latest-post-item:hover .latest-post-item__thumb img {
  transform: scale(1.1);
}
.sidebar-widget .latest-post-item:hover .latest-post-item__info h4 {
  color: #F0B90B;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Inter-Regular.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/Inter-Medium.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/Inter-SemiBold.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/Inter-Bold.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/Inter-ExtraBold.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("/fonts/Inter-ExtraBold.ttf");
}
/** 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 {
  --sixth-color: #ffffff;
  /* COLOR THEMES LIGHT */
  --body-color: #FBFDFF;
  --first-text-color: #3e3e3e;
  --second-text-color: #8B8D98;
  --third-text-color: #262744;
  --fourth-text-color: #252542;
  --border-line-color: #E5E7EB;
  --tr-hover-color: #E5E7EB;
  --rows-color: #F4F6F9;
  --tr-hover-color-second: #d6d8df;
  --hover-v1-color: #181A20;
  --white-input: #ffffff;
  --progress-color: #8B8D98;
  --select-option: #ffffff;
  --menu-btn-color: #ffffff;
  --blue-dark-color: #181A20;
  --blue-dark-second-color: #151926;
  --blue-dark-thir-color: #181A20;
  --blue-dark-bar-color: #131621;
  --blue-dark-fourth-color: #303254;
  --blue-dark-fifth-color: #10111c;
  --red-color: #f1493f;
  --red-second-color: #d12f44;
  --green-color: #26c99b;
  --green-second-color: #25b176;
  --yellow-color: #FCD535;
  --yellow-secondary-color: #F0B90B;
  --gold-light-color: #FFF9C4;
  --gold-hover-color: #FFFDE7;
  --gray-color: #BABABA;
  --gray-color-secondary: #e8ebef;
  --purple-fourth-color: #2B3139;
  --purple-color: #FCD535;
  --purple-second-color: #FCD535;
  --purple-third-color: #1E2329;
  --white-color: #ffffff;
  --dark-gray: #585858;
  /* COLOR THEMES DARK */
  --dark-body-color: #181A20;
  --dark-text-color: #B9BAC0;
  --dark-text-color2: #262626;
  --second-fourth-color: #635f5f;
  --border-select-color: #e8e8e8;
  --btn-secondary-color: #273445;
  --btn-secondary-text-color: #ffffff;
  --disabled-checkbox: #ccc;
  --checkbox-bg: #fffdfd;
  --checkbox-border: #ccc;
  --border-line-color-v2: #E5E7EB;
  --btn-stroke-color: #57638d;
  --yellow-darker-color: #d1a825;
  --gray-color-third: #848e9c;
  --table-head-color: #f3f3f3;
  --modal-border-line-color: #cbcbcb;
  --modal-information-color: #f3f4f6;
  --modal-information-warning-color: #101320;
  --modal-information-warning-color-label: #384260;
  --strict-border-color: #181A20;
  --dark-profile-body-color: #0c111a;
  --label-bubble-color: #eeeeee;
}

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

.site-layout {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body.dark .site-layout {
  --tr-hover-color: #181A20;
  --tr-hover-color-second: #646f8f;
  --border-line-color: #181A20;
  --rows-color: #181A20;
  --hover-v1-color: #FFC107;
  --first-text-color: #B9BAC0;
  --white-input: #181A20;
  --progress-color: #c19a23;
  --select-option: #181A20;
  --second-fourth-color: #8d8787;
  color: var(--dark-text-color);
  background-color: var(--dark-body-color);
  --border-select-color: #2a2948;
  --btn-secondary-color: #273445;
  --btn-secondary-text-color: #ffffff;
  --disabled-checkbox: #1b1b1b;
  --checkbox-bg: #1f1e35;
  --checkbox-border: #393b3d;
  --border-line-color-v2: #252c42;
  --yellow-darker-color: #a78929;
  --table-head-color: #181A20;
  --modal-border-line-color: #696b77;
  --modal-information-color: #101520;
  --modal-information-warning-color: #101320;
  --modal-information-warning-color-label: #384260;
  --label-bubble-color: #0e101e;
  --dark-text-color2: #B9BAC0;
  --dark-gray: #b9b9b9;
}

#p2p-post-create .p2p-post-wrapper {
  border-radius: 5px;
  margin-top: 25px;
}
#p2p-post-create .p2p-post-wrapper .p2p-post-tab-buttons button {
  padding: 15px 0;
}
#p2p-post-create .p2p-post-wrapper .p2p-post-tab-buttons button.active {
  font-weight: bold;
  background: var(--purple-second-color);
}
#p2p-post-create .p2p-post-wrapper .p2p-post-tab-content .components-filter {
  margin-bottom: 2rem;
}
#p2p-post-create .p2p-field-width {
  display: flex;
  max-width: 300px;
}
#p2p-post-create .p2p-post-next-btn {
  margin-top: 50px;
}
#p2p-post-create .p2p-post-next-btn button {
  max-width: 250px;
  margin-bottom: 20px;
}
#p2p-post-create .p2p-asset-arrow {
  margin-top: 30px;
  margin-right: 13px;
  margin-left: 13px;
}
#p2p-post-create .components-filter__item {
  width: 50%;
  margin-right: 0;
}
#p2p-post-create .components-filter__item .filter-select {
  padding: 0 1.5rem;
  height: 55px;
}
#p2p-post-create .components-filter__item .filter-select:focus {
  border: 1px solid var(--border-line-color);
}
#p2p-post-create .custom-input-group {
  position: relative;
}
#p2p-post-create .custom-input-group input {
  padding-right: 37px !important;
}
#p2p-post-create .custom-input-group span {
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  right: 25px;
  top: 18px;
}
#p2p-post-create .p2p-result-price-group {
  margin-top: 40px;
}
#p2p-post-create .p2p-result-price-group p {
  margin-top: 10px;
  font-size: 24px;
}

.p2p-order-view {
  gap: 32px;
}
.p2p-order-view .p2p-headline {
  font-size: var(--big-font__size);
}
.p2p-order-view .p2p-headline-info {
  margin-top: 25px;
}
.p2p-order-view .text-headline {
  color: var(--second-fourth-color);
  margin-bottom: 10px;
}
.p2p-order-view .p2p-headline-method {
  margin-top: 25px;
}

.p2p-create-steps {
  display: flex;
}
.p2p-create-steps .p2p-steps-line {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  bottom: 20px;
  height: 0px;
  align-self: flex-end;
  flex: 1 1 0%;
  position: relative;
  background: var(--table-head-color);
}
.p2p-create-steps .p2p-steps-line:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 4px;
  background-color: inherit;
}
.p2p-create-steps .p2p-steps-line-np {
  bottom: 12px;
}
.p2p-create-steps .p2p-steps-step {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  position: static;
  color: rgb(112, 122, 138);
  padding: 8px;
  flex-grow: 0;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.p2p-create-steps .p2p-steps-step-np {
  padding: 0;
}
.p2p-create-steps .p2p-steps-step-inner {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p2p-create-steps .p2p-steps-step-marker {
  position: relative;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 100%;
  margin-top: 20px;
  background: var(--table-head-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p2p-create-steps .p2p-steps-step-marker.active {
  background-color: var(--yellow-color) !important;
  color: var(--blue-dark-color);
}
.p2p-create-steps .p2p-steps-step-marker .p2p-create-step-marker-label {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  font-size: 12px;
}
.p2p-create-steps .p2p-steps-step-marker .p2p-create-step-marker-label:after {
  content: "";
  position: absolute;
  height: 4px;
  top: 12px;
  width: 9999px;
  left: 100%;
  margin-left: 8px;
  background: var(--table-head-color);
}
.p2p-create-steps .p2p-steps-step-marker .p2p-create-step-marker-label-extra {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  font-size: 12px;
}
.p2p-create-steps .p2p-steps-step-marker .p2p-create-step-marker-label-extra:before {
  content: "";
  position: absolute;
  height: 4px;
  top: 12px;
  width: 9999px;
  right: 100%;
  margin-right: 8px;
  background: var(--table-head-color);
}

/** Font global start */
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--blue-dark-color);
  background-color: var(--sixth-color);
}

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

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

.mobbar {
  display: none;
}

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

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

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

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

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

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

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

.color-gray {
  color: var(--gray-color);
}

.color-default {
  color: var(--blue-dark-color);
}

/** Color global end */
div.mobile-body .markets-tabs {
  background: transparent;
  display: block;
  margin-bottom: 1rem;
  margin-top: 0;
  padding: 0 !important;
  border-bottom: none;
}

div.mobile-body .components-title h2 {
  margin: 2rem 0 3rem;
}

div.mobile-body .markets-tabs .tabs-left {
  display: block;
}

div.mobile-body .markets-tabs .tabs-nav {
  align-items: center;
  color: var(--white-color);
  cursor: pointer;
  display: flex;
  flex-direction: row !important;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  overflow-x: none;
}

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

body.dark div.mobile-body .markets-tabs .tabs-nav__item {
  background-color: #181A20;
  color: var(--dark-text-color);
}
body.dark .staking-inner__calculator button {
  border: 1px solid var(--blue-dark-color);
  background: var(--blue-dark-color);
  color: var(--white-color);
}
body.dark .futures-select option {
  background: var(--rows-color);
}

.futures-select {
  min-width: 200px;
  background: transparent;
  border: none;
  outline: none;
  padding-right: 10px;
  text-align: right;
}
.futures-select:focus, .futures-select:hover {
  outline: none;
  border: none;
  box-shadow: none !important;
}
.futures-select option {
  padding: 5px 5px;
}

.staking-inner__calculator button {
  border: 1px solid #eceded;
  background: #eceded;
  color: var(--dark-body-color);
}
.staking-inner__calculator button:hover {
  color: var(--white-color);
}

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

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

div.mobile-body .markets-tabs .tabs-nav__active {
  background-color: var(--yellow-color) !important;
  color: #181A20 !important;
}

div.mobile-body .markets-tabs .tabs-nav h4 {
  font-size: 14px;
  width: -moz-max-content;
  width: max-content;
}

div.mobile-body .markets-tabs .tabs-search {
  background: #eceded;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  padding: 0 15px;
  width: 100%;
}

body.dark div.mobile-body .markets-tabs .tabs-search {
  background: #181A20;
}

div.mobile-body .markets-tabs .tabs-search input {
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  color: var(--first-text-color);
  display: block;
  font-size: 12px;
  outline: none;
  padding: 0.2rem 0.5rem;
  width: 100%;
}

div.mobile-body .markets-tabs .tabs-search .tabs-search__icon {
  position: relative;
  top: 9px;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 0px;
}

div.mobile-body .markets-tabs-list {
  background: transparent;
  display: block;
  margin-bottom: 1rem;
  margin-top: 0;
  padding: 0;
}

div.mobile-body .markets-tabs-list .mob-table-markets .table-sort {
  display: table-header-group;
}

div.mobile-body .markets-tabs-list .table-list td:first-child {
  padding: 2px 0;
}

div.mobile-body .markets-tabs-list .table-list td {
  background-color: transparent;
  display: table-cell;
  margin: 0;
  padding: 0;
  font-size: 12px;
}

div.mobile-body .markets-tabs-list .table-list td:nth-child(3) .table-list__value div {
  background: rgba(91, 91, 91, 0.1);
  border-radius: 3px;
  -moz-border-radius: 3px;
  color: #bdbebf;
  display: block;
  font-size: 11px;
  padding: 7px 3px;
  text-align: center;
  width: 70px;
  word-break: keep-all;
}

div.mobile-body .markets-tabs-list .table-list td:nth-child(3) .table-list__value .color-sell {
  background: #3d2934;
  color: #de7b90;
}

div.mobile-body .markets-tabs-list .table-list td:nth-child(3) .table-list__value .color-buy {
  background: #1b373a;
  color: #4ec3a8;
}

div.mobile-body .markets-tabs-list .table-list__subtitle {
  display: none;
}

div.mobile-body .markets-tabs-list td:first-child .table-list__value {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}

div.mobile-body .markets-tabs-list .table-list__image {
  margin-left: 0;
}

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

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

.markets-tabs-list .table-list .quote-symbol {
  color: #898988;
  display: block;
  font-size: 12px;
}

.w-full-force {
  width: 100% !important;
}

.w-flex-force button {
  display: flex !important;
}

div.mobile-body .markets-tabs-list .table-sort th:nth-child(2) .table-sort__value,
div.mobile-body .markets-tabs-list .table-sort th:nth-child(3) .table-sort__value {
  justify-content: flex-end;
}

div.mobile-body .markets-tabs-list .table-list td:first-child {
  padding: 2px 0;
}

div.mobile-body .markets-tabs-list .table-list td {
  background-color: transparent;
  display: table-cell;
  margin: 0;
  padding: 0;
}

div.mobile-body .markets-tabs-list .title-icon__name,
div.mobile-body .markets-tabs-list .title-icon__name .quote-symbol {
  font-size: 12px;
}

div.mobile-body .small-market-title {
  margin: 2rem 0 3rem;
  font-size: 22px;
}

div.mobile-body .table-result__notfound-icon img {
  margin: 0 auto;
}

div.mobile-body .markets-tabs-list .table-sort__title {
  font-size: 11px;
}

div.mobile-body .markets-tabs-list .table-result__notfound-text {
  font-size: 12px;
}

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

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

@media screen and (max-width: 1000px) {
  div.mobile-body .markets-tabs-list .mob-table-markets .mob-hide-alt {
    display: none !important;
  }
}
.chart-source {
  margin-bottom: 10px !important;
}
.chart-source span {
  cursor: pointer;
}
.chart-source span.active {
  color: var(--yellow-color);
}

.full-block-fields {
  margin-bottom: 0;
}
.full-block-fields .components-filter__item {
  width: 100%;
}
.full-block-fields .network-select {
  padding: 16px 18px;
}
.full-block-fields ul {
  list-style-type: none !important;
}
.full-block-fields .qr-container img {
  border-radius: 10px;
  border: 2px solid var(--white-color);
  padding: 5px;
}

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  border-radius: 4px;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: -moz-min-content;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  flex-grow: 0;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  transition: opacity 0.218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

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

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

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

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}

.widget-market-trades__list-item__time-larger {
  width: 42%;
}

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

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

body.dark .modal-container .bg-white {
  background-color: var(--purple-third-color) !important;
  color: var(--white-color);
}
body.dark .custom-auth-block .block-button a {
  color: var(--white-color);
  background-color: var(--purple-fourth-color);
  border: 1px solid var(--purple-fourth-color);
}
body.dark .custom-auth-block .twitter-auth-btn svg path {
  fill: #ffffff;
}
body.dark .block-button-v3 {
  border: 1px solid #262a40;
}

.block-button-v3 {
  cursor: pointer;
  width: 100%;
  display: flex;
  padding: 0.5rem 1rem;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border-line-color);
  border-radius: 10px;
  outline: none;
  min-width: 100px;
}
.block-button-v3:hover {
  border: 1px solid var(--yellow-color) !important;
}
.block-button-v3:hover svg path {
  stroke: var(--yellow-color);
}
.block-button-v3 svg {
  margin-right: 5px;
  width: 16px;
}
.block-button-v3 svg path {
  stroke: var(--dark-text-color);
}

@media screen and (max-width: 350px) {
  .block-button-v3 {
    min-width: 80px !important;
  }
  .block-button-v3 svg {
    display: none;
  }
}
/** nav media screen start */
@media screen and (max-width: 600px) {
  .custom-auth-block {
    display: block;
  }
  .custom-auth-block .block-button {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .option-w-full-container {
    display: block !important;
  }
  .option-no-padding {
    padding-top: 20px;
  }
  .option-no-padding .module-orderopen {
    padding: 0 !important;
  }
}
.module-orderopen__navigation_v2 {
  padding-left: 30px;
}
.module-orderopen__navigation_v2 .module-orderopen__navigation-title:hover {
  color: inherit;
}
.module-orderopen__navigation_v2 .module-orderopen__navigation-active {
  border-bottom-color: var(--yellow-color);
}

.table-list__value-v2 {
  display: block;
}
.table-list__value-v2 .table-list__text-smaller {
  font-size: 13px;
  margin-top: 5px;
  color: var(--second-fourth-color);
}

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

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

.btn-add-label {
  padding: 6px 8px;
  background: var(--btn-secondary-color);
  color: var(--btn-secondary-text-color);
  padding-left: 15px;
}
.btn-add-label svg {
  margin-left: 15px;
}

.components-filter__item-v2 {
  width: 100% !important;
}

.btn-delete {
  transform: rotate(35deg);
}

.payment-method-wrapper-modal {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 15px;
}

.checkbox-select-group {
  margin: 15px 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--border-select-color);
}

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

.payment-method-label {
  box-sizing: border-box;
  min-width: 0;
  border-radius: 2px;
  flex-shrink: 0;
  width: 3px;
  height: 14px;
  margin-top: 3px;
  margin-right: 8px;
}
.payment-method-label.blue {
  background: #0c3299;
}

input[type=checkbox],
input[type=radio] {
  --tw-shadow: none !important;
  box-shadow: none !important;
}

input[type=checkbox] {
  background: var(--checkbox-bg);
  border: 1px solid var(--checkbox-border);
}

input[type=checkbox][disabled] {
  background: var(--disabled-checkbox);
}

.filter-textarea {
  min-height: 100px;
  padding: 1rem !important;
  height: 100px !important;
}

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

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

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

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

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

.user-sub-menu {
  margin: 5.2rem 0 0;
}
.user-sub-menu .user-sub-menu-item {
  padding: 10px 0;
  position: relative;
  display: flex;
  font-size: 16px;
  cursor: pointer;
  margin-right: 20px;
  margin-left: 0;
}
.user-sub-menu .user-sub-menu-item:hover {
  color: var(--yellow-color);
}
.user-sub-menu .user-sub-menu-item:hover .user-sub-menu-icon path:hover,
.user-sub-menu .user-sub-menu-item:hover .user-sub-menu-icon circle:hover,
.user-sub-menu .user-sub-menu-item:hover .user-sub-menu-icon rect:hover {
  stroke: var(--yellow-color);
}
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon {
  margin-right: 5px;
}
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon path,
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon rect,
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon cirlce {
  stroke: var(--first-text-color);
}
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon-thin {
  margin-top: 2px;
  margin-right: 5px;
}
.user-sub-menu .user-sub-menu-item .user-sub-menu-icon-thin .fill-must {
  fill: var(--first-text-color);
}
.user-sub-menu .user-sub-menu-item .header-dropdown__list {
  background-color: #f5f5f5;
  top: 44px;
}
.user-sub-menu .user-sub-menu-item .header-dropdown__list a:hover {
  background-color: #ebebeb;
}
.user-sub-menu .user-sub-menu-item .header-dropdown__list .header-dropdown__list-color {
  stroke: var(--blue-dark-color);
}
.user-sub-menu .user-sub-menu-item .header-dropdown__list .header-dropdown__list-title {
  color: var(--blue-dark-color);
}

body.dark .user-sub-menu-item .header-dropdown__list {
  background-color: var(--blue-dark-second-color);
}
body.dark .user-sub-menu-item .header-dropdown__list a:hover {
  background-color: var(--dark-body-color);
}
body.dark .user-sub-menu-item .header-dropdown__list .header-dropdown__list-color {
  stroke: var(--dark-text-color);
}
body.dark .user-sub-menu-item .header-dropdown__list .header-dropdown__list-title {
  color: var(--dark-text-color);
}

.filter-group {
  margin-bottom: 30px;
}

.filter-top-group {
  display: flex;
}

.mobile-body .filter-group {
  margin-bottom: 10px;
}
.mobile-body .filter-group .filter-top-group {
  flex-direction: column;
}
.mobile-body .filter-group .filter-top-group .filter-top-right {
  margin-left: 0 !important;
  margin-top: 15px;
}

.filter-dropdown-group .filter-select__option {
  min-width: 300px;
  padding: 0.8rem;
  color: var(--second-text-color);
  background-color: var(--select-option);
  border: 1px solid var(--border-line-color);
}
.filter-dropdown-group .filter-select__option input {
  background: transparent;
  border-radius: 4px;
  border: 1px solid var(--yellow-color) !important;
}

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

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

.filter-button-group {
  display: flex;
  border: 1px solid var(--tr-hover-color);
  border-radius: 9999px;
  max-width: 200px;
  min-width: 200px;
  padding: 0;
  width: 100%;
}
.filter-button-group .filter-button-items {
  width: 50%;
  text-align: center;
  padding: 10px;
  margin: 5px;
  border-radius: 9999px;
  cursor: pointer;
}
.filter-button-group .filter-button-left-group.active {
  background: var(--green-color);
  color: var(--white-color);
}
.filter-button-group .filter-button-right-group.active {
  background: var(--red-color);
  color: var(--white-color);
}

.btn-action {
  min-width: 150px;
  padding: 10px 20px;
  border-radius: 9999px;
  text-align: center;
}
.btn-action:after {
  display: none !important;
}
.btn-action:hover {
  opacity: 0.9;
}

.p2pmodal {
  display: flex;
}
.p2pmodal .modal-col-1 {
  width: 50%;
}
.p2pmodal .modal-user {
  margin-bottom: 30px;
  display: flex;
}
.p2pmodal .modal-user-info {
  margin-left: 15px;
}
.p2pmodal .modal-user-info-top {
  display: flex;
  padding-top: 2px;
  margin-bottom: 3px;
}
.p2pmodal .modal-user-info-bottom {
  display: flex;
}
.p2pmodal .modal-user-info-bottom-text span {
  font-weight: bold;
}
.p2pmodal .modal-ad-timeline {
  display: flex;
  justify-content: space-between;
}
.p2pmodal .modal-ad-timeline .modal-text {
  margin-right: 30px;
}
.p2pmodal .modal-ad-timeline .modal-text:last-child {
  margin-right: 0;
}
.p2pmodal .modal-text-footer {
  font-size: 12px;
}
.p2pmodal .modal-ad-comment {
  margin-top: 30px;
}
.p2pmodal .modal-ad-comment .modal-text-header {
  font-weight: bold;
}
.p2pmodal .modal-ad-comment .modal-text-footer {
  margin-top: 10px;
}
.p2pmodal .modal-right-top {
  margin-bottom: 15px;
}
.p2pmodal .modal-input-group-v2 {
  border: 1px solid var(--border-line-color-v2);
  padding: 0 20px;
  border-radius: 15px;
  margin-bottom: 25px;
}
.p2pmodal .modal-input-group-v2 .components-filter__item {
  width: 100%;
}
.p2pmodal .modal-input-group-v2 .components-filter__item button {
  margin-top: 0;
  border: 0;
}
.p2pmodal .modal-input-group-v2 .components-filter__item .filter-select {
  padding: 0.9rem 0;
}
.p2pmodal .modal-input-group-v2 .components-filter__item .filter-select:focus {
  border: 0;
}
.p2pmodal .p2p-form-error {
  border: 1px solid var(--red-color) !important;
}
.p2pmodal .modal-input-error {
  color: var(--red-color);
  font-size: 13px;
  margin-bottom: 10px;
}
.p2pmodal .modal-input-group {
  border: 1px solid var(--border-line-color-v2);
  padding: 10px 20px;
  border-radius: 15px;
  margin-bottom: 25px;
}
.p2pmodal .modal-input-group .modal-input-group-label {
  margin-bottom: 5px;
  margin-top: 10px;
}
.p2pmodal .modal-input-group .modal-input-group-btn {
  display: flex;
}
.p2pmodal .modal-input-group .modal-input-group-field-placeholder {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  min-width: 120px;
  justify-content: flex-end;
}
.p2pmodal .modal-input-group .modal-input-group-field-asset {
  display: flex;
}
.p2pmodal .modal-input-group .modal-input-group-field {
  width: 100%;
}
.p2pmodal .modal-input-group .modal-input-group-field input {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 10px;
}
.p2pmodal .modal-input-group .modal-input-group-field input:focus, .p2pmodal .modal-input-group .modal-input-group-field input:active {
  outline: none;
  border: none;
  box-shadow: none;
}
.p2pmodal .modal-input-group .modal-input-group-field-text {
  margin-right: 5px;
}
.p2pmodal .modal-input-group .modal-input-group-field-asset-img {
  margin-right: 5px;
}
.p2pmodal .modal-input-group .modal-input-group-field-asset-img img {
  margin-right: 5px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
}

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

.chat-component {
  border: 1px solid var(--border-line-color);
  border-radius: 15px;
}
.chat-component .chat-header {
  border-bottom: 1px solid var(--border-line-color);
}
.chat-component .chat-footer {
  border-top: 1px solid var(--border-line-color);
}
.chat-component .chat-dialog {
  height: 50vh;
}
.chat-component .chat-message-input {
  height: 40px;
  overflow: hidden;
  background: transparent;
  border: none;
  border-width: 2px;
}
.chat-component .chat-message-input:focus, .chat-component .chat-message-input:hover {
  outline: none;
  box-shadow: none;
}
.chat-component .chat-message-input:focus {
  border-width: 2px;
}
.chat-component .chat-message-search {
  border-width: 2px;
}
.chat-component .chat-message-search:focus {
  border-width: 2px;
}
.chat-component .chat-conversation-list {
  height: 75vh;
}
.chat-component .chat-conversation-history {
  height: 75vh;
}
.chat-component .chat-text-truncate {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 300px;
}
.chat-component .chat-message-text-system {
  display: block;
  margin-top: 10px;
  font-size: 0.6rem;
  text-align: right;
  white-space: initial;
  opacity: 0.6;
}
.chat-component .chat-message-text {
  white-space: pre-line;
}
.chat-component .chat-message-text a {
  text-decoration: underline;
  font-weight: bold;
}
.chat-component .btn-icon {
  cursor: pointer;
}
.chat-component .btn-icon path {
  stroke: var(--btn-stroke-color);
}
.chat-component .btn-icon:hover {
  opacity: 0.8;
}
.chat-component .file-input-wrapper {
  border: none !important;
}

.offline-badge {
  left: 8px;
  bottom: 0;
}
.offline-badge:before {
  content: " ";
  width: 10px;
  height: 10px;
  background: #919090;
  display: block;
  border-radius: 50%;
}

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

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

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

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

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

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

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

.p2p-step-pointer {
  background: var(--yellow-color);
  color: #000;
}

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

body.dark .p2p-user-profile-stats-item {
  border: 1px solid var(--strict-border-color);
}
body.dark .p2p-user-profile-text-headline svg {
  fill: var(--dark-text-color);
}

.p2p-user-profile-stats-item {
  border: 1px solid var(--gray-color);
  padding: 24px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: start;
  min-height: 132px;
}
.p2p-user-profile-stats-item .p2p-user-profile-stats-item-title {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.p2p-user-profile-stats-item .p2p-user-profile-stats-item-text {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p2p-user-profile-stats-item .p2p-user-profile-stats-item-text .p2p-user-profile-stats-item-text-bottom {
  font-size: 12px;
  margin-top: 5px;
}

.p2p-user-profile-info {
  display: flex;
}

.p2p-user-profile-avatar {
  box-sizing: border-box;
  margin: 0px 16px 0px 0px;
  min-width: 0px;
  flex-shrink: 0;
}
.p2p-user-profile-avatar div {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  position: relative;
  border-radius: 50%;
  background-color: rgb(70, 83, 200);
  font-size: 20px;
  text-align: center;
  color: white;
  width: 52px;
  height: 52px;
  line-height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

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

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

.p2p-user-profile-text-headline {
  font-weight: 700;
  font-size: 16px;
}
.p2p-user-profile-text-headline svg {
  fill: var(--dark-body-color);
  cursor: pointer;
}
.p2p-user-profile-text-headline svg:hover {
  fill: var(--yellow-color);
}

.p2p-user-center {
  margin-top: 5rem;
}

.profile-tab {
  width: 100%;
  margin-bottom: 40px;
}
.profile-tab .profile-tab-inner {
  box-sizing: border-box;
  margin: 0px 0px 24px;
  min-width: 0px;
  width: 100%;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  margin-bottom: 32px;
}
.profile-tab .profile-tab-inner .profile-tab-item {
  box-sizing: border-box;
  margin: 0px;
  cursor: pointer;
  min-width: auto;
}
.profile-tab .profile-tab-inner .profile-tab-item .profile-tab-item-label {
  box-sizing: border-box;
  margin: 0px 16px 0px 0px;
  min-width: 0px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 9999px;
}
.profile-tab .profile-tab-inner .profile-tab-item .active {
  background-color: var(--purple-second-color);
  color: var(--white-color);
}

.peer-payment-method h2 {
  font-size: 18px;
}

.peer-payment-method-headline .peer-payment-method-headline-left {
  max-width: 700px;
  font-size: 12px;
}

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

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

.p2p-tab-two-rows {
  box-sizing: border-box;
  margin: 16px 0px;
  min-width: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.p2p-tab-two-rows button {
  display: inline-flex;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
}
.p2p-tab-two-rows .components-filter__button-gray {
  background-color: var(--gray-color-secondary);
  color: #000;
}

.dark .vue-simple-progress-text {
  color: #fff !important;
}
.dark .peer-payment-method-content-item-head {
  background-color: var(--blue-dark-color);
}

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

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

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

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

.p2p-ads-table .table-list tr:hover {
  background-color: transparent;
}
.p2p-ads-table thead tr {
  border-bottom: 1px solid var(--border-line-color);
}
.p2p-ads-table thead th {
  background: inherit;
  color: var(--color-TertiaryText);
  font-size: var(--default-font__size);
  font-weight: 400;
  line-height: 18px;
  padding: 12px 16px;
  position: relative;
  text-align: start;
  white-space: normal;
  word-break: break-word;
}
.p2p-ads-table thead .text-right {
  text-align: right !important;
}
.p2p-ads-table thead .pl-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.p2p-ads-table thead .pr-0 {
  padding-right: 0 !important;
}
.p2p-ads-table .p2p-flex {
  display: flex;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
.p2p-ads-table .flex-col {
  flex-direction: column;
}
.p2p-ads-table .p2p-avatar {
  background-color: var(--purple-second-color);
  color: var(--white-color);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 24px;
  height: 24px;
  line-height: 24px;
  position: relative;
}
.p2p-ads-table .p2p-avatar .user-status-badge {
  width: 7px;
  height: 7px;
  max-height: 10px;
  max-width: 10px;
  background-color: var(--gray-color);
  border-color: var(--gray-color);
  border-width: 1px;
  border-radius: 50%;
  right: 0;
  bottom: 0;
  position: absolute;
}
.p2p-ads-table .p2p-avatar .online {
  background-color: var(--green-color);
  border-color: var(--green-color);
}
.p2p-ads-table .p2p-avatar-lg {
  width: 40px;
  height: 40px;
}
.p2p-ads-table tbody td {
  padding: 18px 16px;
  background: inherit;
  font-size: var(--h3-font__size);
  font-weight: 400;
  line-height: 22px;
  position: relative;
  white-space: normal;
  word-break: break-word;
}
.p2p-ads-table tbody td hr {
  height: 10px;
  background-color: var(--border-line-color);
  border-style: none;
  width: 1px;
}
.p2p-ads-table tbody td .w-15 {
  width: 15px;
}
.p2p-ads-table tbody td .h-15 {
  height: 15px;
}
.p2p-ads-table tbody .table-list__value-text {
  align-items: baseline;
  display: flex;
  flex-direction: row;
}
.p2p-ads-table tbody .table-list__value-text .table-list__value-text-headline {
  font-size: 1rem;
  font-weight: 500;
  line-height: 28px;
  margin-right: 4px;
  opacity: 0.8;
}
.p2p-ads-table tbody .table-list__value-text .table-list__value-text-subline {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 22px;
  opacity: 0.8;
}
.p2p-ads-table tbody .table-list__value-text .table-list__value-text-normal {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.p2p-ads-table tbody .table-list__value-text .mx-4xs {
  margin-left: 4px;
  margin-right: 4px;
}
.p2p-ads-table tbody .table-list__value-text-v2 {
  align-items: baseline;
  display: flex;
  flex-direction: column;
}
.p2p-ads-table tbody .table-list__value-text-v2 .table-list__value-text-normal {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.p2p-payment-item {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

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

.table-list__value-end {
  justify-content: flex-end;
}

.plr-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.p2p-text-small {
  font-size: var(--default-font__size);
}

.max-500 {
  max-width: 500px;
}

.p2p-payment-method-card {
  border: 1px solid var(--border-line-color);
  border-radius: 15px;
  padding: 20px 20px;
}
.p2p-payment-method-card .p2p-payment-method-card-element {
  margin-bottom: 20px;
}
.p2p-payment-method-card .p2p-payment-method-card-element:last-child {
  margin-bottom: 0;
}
.p2p-payment-method-card .p2p-payment-method-card-element .p2p-payment-method-card-right {
  display: flex;
}

.p2p-payment-method-card-mini {
  padding: 9px 9px;
}
.p2p-payment-method-card-mini .p2p-payment-method-card-element {
  margin-bottom: 10px;
}

.p2p-payment-method-card-mini-head {
  margin-bottom: 5px;
}

.p2p-payment-method-card-no-border {
  border: 0;
}

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

.headline-text {
  color: var(--second-fourth-color);
}

.copy-icon {
  position: relative;
  display: block;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.copy-icon svg path,
.copy-icon svg rect {
  stroke: var(--second-text-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.copy-icon svg:hover path,
.copy-icon svg:hover rect {
  stroke: var(--hover-v1-color);
}

.action-link {
  align-items: center;
  color: var(--yellow-secondary-color);
  cursor: pointer;
}
.action-link:hover {
  opacity: 0.7;
}
.action-link svg {
  fill: var(--yellow-secondary-color);
}

.components-filter__button-cancel {
  background-color: var(--yellow-darker-color);
}
.components-filter__button-cancel:hover {
  background-color: var(--yellow-darker-color);
  opacity: 0.7;
}

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

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

.btn-action-green {
  background: var(--green-color);
  color: var(--white-color) !important;
}

.btn-action-yellow {
  background: var(--yellow-color);
  color: var(--dark-body-color) !important;
}

.btn-action-red {
  background: var(--red-color);
  color: var(--white-color) !important;
}

.card-bordered {
  border: 1px solid var(--border-line-color);
  border-radius: 15px;
  padding: 10px 10px;
}

.text-important {
  color: var(--yellow-color);
  text-transform: uppercase;
}

.table-div {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.table-div .table-div-head {
  display: inherit;
  width: 100%;
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: rgb(132, 142, 156);
  font-size: 12px;
  align-items: center;
  flex-direction: row;
  background-color: var(--table-head-color);
}
.table-div .table-div-head .table-div-head-column {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  width: 0px;
  text-align: left;
  padding-right: 4px;
  display: block;
}
.table-div .table-div-head .table-div-head-column:first-child {
  padding-left: 25px;
}
.table-div .table-div-body {
  width: 100%;
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  flex-direction: column;
}
.table-div .table-div-body .table-div-body-rows {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  flex-direction: column;
  height: auto;
  width: 100%;
  border-bottom: 1px solid var(--border-line-color);
  position: relative;
  display: flex;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  width: 100%;
  display: flex;
  font-size: 14px;
  min-height: 115px;
  position: relative;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 0px;
  font-size: 14px;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column:first-child {
  padding-left: 25px;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column .div-items-center {
  grid-gap: 6px;
  gap: 6px;
  box-sizing: border-box;
  min-width: 0px;
  display: flex;
  align-items: center;
  text-align: left;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column .table-div-body-column-container {
  box-sizing: border-box;
  margin: 0px 0px 0px 0;
  min-width: 0px;
  display: flex;
  flex-direction: column;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column .table-div-body-column-container .table-div-body-column-container-action {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: inline-block;
  position: relative;
}
.table-div .table-div-body .table-div-body-rows .table-div-body-rows-inner-tiny {
  min-height: 90px;
}

.font-500 {
  font-weight: 500;
}

.fill-red {
  fill: var(--red-color);
}

.stroke-red {
  stroke: var(--red-color);
}

.stroke-gray {
  stroke: var(--dark-gray);
}
.stroke-gray path {
  stroke: var(--dark-gray);
}

.fill-gray {
  fill: var(--dark-gray);
}
.fill-gray path {
  fill: var(--dark-gray);
}

@media screen and (max-width: 1100px) {
  .table-div-body-column {
    font-size: 13px !important;
  }
}
.table-div-mobile {
  display: none;
}

@media screen and (max-width: 1100px) {
  .table-div-desktop {
    display: none;
  }
  .table-div-mobile {
    display: flex;
  }
}
.grayed-text {
  color: var(--gray-color);
  font-size: 12px;
}

.mobile-body {
  padding-left: 15px;
  padding-right: 15px;
}

.bigger-text {
  font-size: 16px;
}

.table-div-mobile .table-div-body .table-div-body-rows .table-div-body-rows-inner {
  min-height: auto;
}
.table-div-mobile .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  padding-left: 0;
  display: block;
}
.table-div-mobile .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column:first-child {
  padding-left: 0;
}
.table-div-mobile .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column .table-div-body-column-container {
  flex-direction: row;
  justify-content: space-between;
  padding-top: 4px;
  padding-bottom: 4px;
}
.table-div-mobile .table-div-body .table-div-body-rows .table-div-body-rows-inner .table-div-body-column .table-div-body-column-container .left .opacity-80 {
  color: var(--gray-color-third);
}

.p2p-order-feedback {
  margin-top: 20px;
}
.p2p-order-feedback .p2p-order-feedback-headline {
  font-size: var(--big-font__size);
  font-weight: 500;
}
.p2p-order-feedback .p2p-order-feedback-body {
  margin-bottom: 20px;
  margin-top: 20px;
}
.p2p-order-feedback .p2p-order-feedback-date {
  display: flex;
}
.p2p-order-feedback .p2p-order-feedback-date div {
  margin-right: 10px;
}
.p2p-order-feedback .p2p-order-feedback-date div:last-child {
  margin-right: 0;
}
.p2p-order-feedback .p2p-order-feedback-actions {
  display: flex;
  grid-gap: 16px;
  gap: 16px;
  margin-top: 25px;
}
.p2p-order-feedback .btn-large {
  display: flex;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  height: 48px;
  line-height: 24px;
  min-height: 48px;
  min-width: 80px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: center;
  align-items: center;
  flex: 1 1;
  background-color: transparent;
  border: 1px solid var(--border-line-color);
}
.p2p-order-feedback .btn-large svg {
  height: 20px;
  width: 20px;
}
.p2p-order-feedback .btn-large:hover {
  opacity: 0.7;
}

.p2p-order-feedback-modal {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p2p-order-feedback-modal .p2p-order-feedback-actions {
  display: flex;
  margin-top: 15px;
}
.p2p-order-feedback-modal .p2p-order-feedback-actions .btn-large {
  display: flex;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  height: 48px;
  line-height: 24px;
  min-height: 48px;
  min-width: 80px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid var(--modal-border-line-color);
}
.p2p-order-feedback-modal .p2p-order-feedback-actions .btn-large svg {
  height: 20px;
  width: 20px;
}
.p2p-order-feedback-modal .p2p-order-feedback-actions .btn-large:hover {
  opacity: 0.7;
}
.p2p-order-feedback-modal .p2p-order-feedback-body {
  margin-top: 30px;
}
.p2p-order-feedback-modal .p2p-order-feedback-body textarea {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  max-height: 200px;
  background: transparent;
  border: 1px solid var(--modal-border-line-color);
}
.p2p-order-feedback-modal .p2p-order-feedback-body textarea:focus {
  border: 2px solid var(--modal-border-line-color);
  box-shadow: none;
}
.p2p-order-feedback-modal .p2p-order-feedback-body .block-checkbox__group {
  margin-top: 20px;
  justify-content: normal;
}
.p2p-order-feedback-modal .p2p-order-feedback-body .block-checkbox__group label {
  margin-left: 5px;
}

.main-section .btn-large-green {
  border: 2px solid var(--green-color) !important;
  color: var(--green-color);
}
.main-section .btn-large-green:hover {
  opacity: 1;
}
.main-section .btn-large-red {
  border: 2px solid var(--red-color) !important;
  color: var(--red-color);
}
.main-section .btn-large-red:hover {
  opacity: 1;
}

.p2p-form-modal .components-filter__item {
  width: 70%;
}

.bottom-border {
  border-bottom: 1px solid var(--border-line-color);
}

.components-filter__item .rounded {
  border-radius: 9999px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.relative-left {
  display: flex;
  justify-content: center;
  align-self: center;
}

body [multiple],
body [type=date],
body [type=email],
body [type=month],
body [type=number],
body [type=password],
body [type=search],
body [type=text],
body [type=time],
body [type=url],
body [type=week],
body select,
body textarea {
  font-size: var(--default-font__size);
}

.components-filter__item-multiple .filter-select button svg {
  display: none;
}
.components-filter__item-multiple .filter-select div:first-child {
  overflow: hidden;
  white-space: nowrap;
}
.components-filter__item-multiple .filter-select div:first-child button span:first-child::after {
  content: ",";
}
.components-filter__item-multiple .filter-select div:first-child button:last-child span:first-child::after {
  content: "";
}
.components-filter__item-multiple .filter-select button {
  margin-right: 5px;
}
.components-filter__item-multiple .filter-select button:focus, .components-filter__item-multiple .filter-select button:active {
  outline: none;
  border: none;
}

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

.refresh-icon {
  margin-left: 10px;
  margin-top: 2px;
}
.refresh-icon svg {
  width: 15px;
  height: 15px;
}

.margin-left-custom {
  margin-left: 56px;
}

.margin-top-custom {
  margin-top: 52px;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.rotate-element {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.text-yellow {
  color: var(--yellow-color);
}

.opacity-60 {
  opacity: 0.6;
}

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

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

.column-badge.default {
  background: #0c8a60;
}
.column-badge.l-green {
  background: #32CD32;
}
.column-badge.green {
  background: #3CB371;
}
.column-badge.d-green {
  background: #3CB371;
}
.column-badge.red {
  background: #DC143C;
}
.column-badge.l-red {
  background: #CD5C5C;
}
.column-badge.d-red {
  background: #8B0000;
}
.column-badge.yellow {
  background: #FFD700;
}
.column-badge.l-yellow {
  background: #FFE4B5;
}
.column-badge.d-yellow {
  background: #BDB76B;
}
.column-badge.gray {
  background: #A9A9A9;
}
.column-badge.l-gray {
  background: #DCDCDC;
}
.column-badge.d-gray {
  background: #708090;
}
.column-badge.orange {
  background: #FF6347;
}
.column-badge.l-orange {
  background: #FFA07A;
}
.column-badge.d-orange {
  background: #FF8C00;
}
.column-badge.brown {
  background: #FFEBCD;
}
.column-badge.l-brown {
  background: #DEB887;
}
.column-badge.d-brown {
  background: #8B4513;
}
.column-badge.purple {
  background: #DA70D6;
}
.column-badge.l-purple {
  background: #D8BFD8;
}
.column-badge.d-purple {
  background: #9370DB;
}
.column-badge.pink {
  background: #FF69B4;
}
.column-badge.l-pink {
  background: #FFC0CB;
}
.column-badge.d-pink {
  background: #C71585;
}

.max-width-80 {
  max-width: 80%;
}

.block-message-bubble-author {
  text-align: left;
}

.text-cover .block-message-bubble-author {
  color: #fff;
}

.chat-component .block-type-media-message {
  padding: 0 !important;
  background: none !important;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  color: #2f2f2f;
}
.chat-component .block-type-media-message svg path {
  fill: #2f2f2f;
}

body.dark .chat-component .text-cover .block-message-bubble-counterparty {
  color: var(--dark-text-color);
  background: #212833;
}
body.dark .chat-component .text-cover .block-message-bubble-counterparty svg path {
  fill: #2f2f2f;
}
body.dark .chat-component .block-type-media-message {
  color: var(--dark-text-color) !important;
}
body.dark .chat-component .block-type-media-message svg path {
  fill: var(--dark-text-color) !important;
}
body .text-cover .block-message-bubble-counterparty svg path {
  fill: #2f2f2f;
}

.system-message {
  justify-content: center;
}
.system-message .place-bubble {
  width: 100%;
}
.system-message .block-message-bubble {
  border-radius: 15px;
  text-align: center;
  background: transparent;
  color: var(--first-text-color);
  border: 1px solid var(--border-line-color);
  font-size: 12px;
  padding-top: 15px;
}

.order-info-container {
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-line-color);
  padding-bottom: 25px;
}
.order-info-container .order-info-container-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.order-info-container .order-info-container-subtitle span {
  opacity: 0.7;
}

.no-mt {
  margin-top: 0 !important;
}

.textarea-modal {
  border-radius: 10px;
  width: 100%;
  height: 150px;
  max-height: 200px;
  background: transparent;
  border: 1px solid var(--modal-border-line-color);
}
.textarea-modal:focus {
  border: 2px solid var(--modal-border-line-color);
  box-shadow: none;
}

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

.p2pmodal-information {
  background: var(--modal-information-color);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}
.p2pmodal-information .p2pmodal-information-item {
  display: flex;
  margin-bottom: 15px;
}
.p2pmodal-information .p2pmodal-information-item:first-child {
  margin-top: 15px;
}
.p2pmodal-information .p2pmodal-information-item .p2pmodal-information-item-icon {
  margin-right: 6px;
}
.p2pmodal-information .p2pmodal-information-item .p2pmodal-information-item-icon svg {
  fill: var(--green-color);
}
.p2pmodal-information-checkbox {
  margin-top: 25px;
  margin-bottom: 15px;
}

.width64 {
  width: 64px;
  height: 64px;
}

body.dark .p2pmodal-information-warning {
  background: var(--modal-information-warning-color);
}
body.dark .p2pmodal-information-warning .p2pmodal-information-item .p2pmodal-information-item-icon {
  background: var(--modal-information-warning-color-label);
}

.p2pmodal-information-warning .p2pmodal-information-item .p2pmodal-information-item-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  text-align: center;
  padding-top: 2px;
  padding-right: 1px;
}
.p2pmodal-information-warning .p2pmodal-information-item .p2pmodal-information-item-text {
  margin-top: 2px;
}

.text-small {
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.text-small ul li {
  margin-bottom: 5px;
  display: flex;
}
.text-small ul li svg {
  stroke: var(--green-color);
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.text-small ul li .close-fill {
  stroke: none;
  width: 20px;
  height: 20px;
}
.text-small ul li .close-fill path {
  fill: var(--red-color);
}

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

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

body.dark .chat-component .file-uploading {
  background: #45593f;
  color: #fff;
}

.order-link a {
  color: var(--yellow-color);
}

.appeal-container .p2p-create-steps {
  margin-bottom: 40px;
}
.appeal-container .appeal-container-item {
  margin-bottom: 50px;
  border: 1px solid var(--border-line-color);
  padding: 20px 20px;
  border-radius: 15px;
}
.appeal-container .appeal-container-item .appeal-container-item-date {
  margin-bottom: 15px;
  opacity: 0.7;
}
.appeal-container .appeal-container-item .appeal-container-item-user {
  margin-bottom: 35px;
}
.appeal-container .appeal-container-item .appeal-container-item-details .appeal-label {
  opacity: 0.7;
  margin-bottom: 10px;
}
.attachments-container {
  display: flex;
  margin-bottom: 10px;
}
.attachments-container div svg {
  height: 32px;
  margin-right: 15px;
}
.attachments-container div svg path {
  fill: var(--purple-color);
}
.attachments-container .attachment-link {
  align-items: center;
  align-self: center;
  text-decoration: underline;
  cursor: pointer;
}

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

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

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

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

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

.system-active-logo svg {
  margin-right: 5px;
  width: 42px;
  height: 42px;
}
.system-active-logo svg #Core {
  fill: var(--yellow-color);
}

.profile-ads-header {
  font-size: 1.2rem;
}

.w-18 {
  width: 18px;
}

.h-18 {
  height: 18px;
}

.link-action {
  font-weight: normal;
  color: var(--yellow-color);
  cursor: pointer;
}

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

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

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

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

.dark .component-popover {
  background-color: var(--blue-dark-thir-color) !important;
}

.mb-0-fixed {
  margin-bottom: 0 !important;
}

#body .main__container .svg-ml-1 {
  margin-left: 4px;
}

.flex-icon-orange {
  border-radius: 50%;
  background: #d18709;
  color: var(--white-color);
  width: 20px;
  height: 20px;
  line-height: 21px;
  font-size: 0.7rem;
  margin-left: 5px;
  text-align: center;
}

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

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

.chat-icon {
  cursor: pointer;
}
.chat-icon path {
  fill: var(--dark-body-color);
}

body.dark .chat-icon path {
  fill: var(--dark-text-color);
}

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

.more-arrow svg {
  height: 20px;
}
.more-arrow svg path {
  fill: var(--blue-dark-color);
}

body.dark .more-arrow svg path {
  fill: var(--dark-text-color);
}
body.dark .chat-connecting {
  background-color: var(--blue-dark-color);
  color: var(--dark-text-color);
}

.chat-connecting {
  text-align: center;
  background: #e1e1e1;
  opacity: 0.9;
  text-align: center;
  padding: 10px 10px;
}

#body .p2p-component-title {
  margin-bottom: 5rem;
}
#body .p2p-component-title .h2-headline {
  margin: 5rem 0 0;
}

.btn-icon-attach path {
  fill: var(--btn-stroke-color);
}
.btn-icon-attach:hover {
  opacity: 0.8;
  cursor: pointer;
}

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

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

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

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

.mobile-visible {
  display: none;
}

.closeChat {
  display: none;
}

body.dark .mobile-body .chat-component-mob .chat-active {
  background-color: var(--dark-body-color);
}
body.dark .mobile-body .conditional-sub-menu .header-dropdown__list {
  background-color: var(--blue-dark-second-color);
}

.desktop-visible {
  display: block;
}

.mobile-body .p2p-user-profile-info {
  display: flex;
  flex-direction: column;
}
.mobile-body .p2p-user-profile-info .p2p-user-profile-text {
  margin-top: 10px;
}
.mobile-body .tabs-right-mob {
  display: flex;
  flex-direction: column;
  align-items: normal;
}
.mobile-body .tabs-right-mob .peer-profile-merchant {
  margin-top: 15px;
}
.mobile-body .p2p-step-pointer {
  z-index: 0;
}
.mobile-body .components-filter__item-mob .btn-add-label {
  margin-bottom: 5px;
}
.mobile-body .desktop-visible {
  display: none;
}
.mobile-body .btn-action-max {
  max-width: 250px;
}
.mobile-body .peer-payment-method-items-mob .peer-payment-method-content-item-body-item-grid {
  display: flex !important;
  flex-direction: column;
}
.mobile-body .peer-payment-method-items-mob .peer-payment-method-headline {
  flex-direction: column;
}
.mobile-body .peer-payment-method-items-mob .peer-payment-method-headline .peer-payment-method-headline-left {
  margin-bottom: 15px;
}
.mobile-body .table-ads-mob .table-div-head {
  display: none;
}
.mobile-body .table-ads-mob .table-div-body .table-div-body-column {
  padding-left: 0 !important;
  width: 100% !important;
  margin-bottom: 5px !important;
}
.mobile-body .table-ads-mob .table-div-body .table-div-body-rows-inner {
  flex-direction: column;
  padding-top: 15px !important;
}
.mobile-body .profile-mob .p2p-user-profile {
  flex-direction: column;
}
.mobile-body .profile-mob .p2p-user-profile .p2p-user-profile-left {
  margin-bottom: 25px;
}
.mobile-body .profile-mob .p2p-user-profile-stats {
  display: flex;
  flex-direction: column;
}
.mobile-body .profile-mob .p2p-user-profile-stats .p2p-user-profile-stats-item {
  min-height: auto;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.mobile-body .profile-mob .p2p-user-profile-stats .p2p-user-profile-stats-item .p2p-user-profile-stats-item-title {
  margin-bottom: 5px;
}
.mobile-body .profile-mob .p2p-user-profile-stats .p2p-user-profile-stats-item .p2p-user-profile-stats-item-text-top {
  align-self: end;
}
.mobile-body .p2p-create-steps-mob {
  flex-direction: column;
}
.mobile-body .p2p-create-steps-mob .p2p-steps-step {
  padding: 8px !important;
}
.mobile-body .p2p-create-steps-mob .p2p-steps-step-inner {
  flex-direction: row;
}
.mobile-body .p2p-create-steps-mob .p2p-steps-step-inner .p2p-steps-step-marker-text {
  order: 2;
  margin-left: 10px;
}
.mobile-body .p2p-create-steps-mob .p2p-steps-step-inner .p2p-steps-step-marker {
  order: 1;
  margin-top: 0;
}
.mobile-body .p2p-create-steps-mob .p2p-steps-step-inner .p2p-steps-step-marker span:after {
  content: none;
}
.mobile-body .chat-component-mob {
  border: none;
}
.mobile-body .chat-component-mob .chat-dialog-container {
  display: none;
}
.mobile-body .chat-component-mob .closeChat {
  display: block;
  cursor: pointer;
}
.mobile-body .chat-component-mob .closeChat svg path {
  fill: var(--dark-text-color);
}
.mobile-body .chat-component-mob .chat-active {
  display: block;
  position: fixed;
  top: 0;
  background-color: var(--white-color);
  z-index: 999;
  height: 100vh;
  margin-left: -15px;
  width: 100%;
}
.mobile-body .chat-component-mob .chat-dialog {
  height: 80vh;
}
.mobile-body .chat-component-mob .chat-bottom-wrapper {
  width: 100%;
  position: absolute;
  bottom: 30px;
}
.mobile-body .p2p-order-mob {
  flex-direction: column;
}
.mobile-body .p2p-order-mob .p2p-step-pointer {
  margin-top: 0;
}
.mobile-body .p2p-order-mob .w-full-mob {
  width: 100%;
}
.mobile-body .flex-col-mob {
  flex-direction: column;
}
.mobile-body .flex-col-mob .w-full {
  margin-bottom: 5px;
}
.mobile-body .btn-add-mob {
  margin-top: 10px;
  border-radius: 9999px;
}
.mobile-body .components-filter-mob {
  margin-bottom: 0;
}
.mobile-body .mt-mob-no {
  margin-top: 0;
}
.mobile-body .mb-mob-no {
  margin-bottom: 0;
}
.mobile-body .margin-left-custom-mob {
  margin-left: 0;
}
.mobile-body .p2pmodal-mob {
  flex-wrap: wrap;
}
.mobile-body .p2pmodal-mob .modal-ad-timeline {
  flex-direction: column;
}
.mobile-body .p2pmodal-mob .modal-ad-timeline .modal-text {
  margin-bottom: 10px;
  margin-right: 0;
}
.mobile-body .p2pmodal-mob .modal-ad-timeline .modal-text:last-child {
  margin-bottom: 0;
}
.mobile-body .p2pmodal-mob .modal-input-group {
  padding: 5px 12px;
}
.mobile-body .p2pmodal-mob .modal-input-group .modal-input-group-field {
  width: 100%;
}
.mobile-body .p2pmodal-mob .modal-input-group .modal-input-group-field-placeholder {
  justify-content: flex-start;
  padding-right: 10px;
}
.mobile-body .p2pmodal-mob .modal-col-1 {
  width: 100%;
  order: 2;
}
.mobile-body .p2pmodal-mob .modal-col-2 {
  order: 1;
}
.mobile-body .table-result__notfound-mob {
  padding: 1rem 0;
}
.mobile-body .table-components-mob {
  margin: 3rem 0;
}
.mobile-body .p2p-component-title-mob {
  margin-bottom: 3rem !important;
}
.mobile-body .btn-action-mobile {
  min-width: 120px;
  padding: 5px 5px;
  text-align: center;
  font-size: 0.9rem;
}
.mobile-body .p2p-flex-row-mobile {
  padding: 0;
}
.mobile-body .p2p-flex-row-mobile .table-list__value {
  padding: 0;
}
.mobile-body .mobile-visible {
  display: block;
}
.mobile-body .table-list__value-text-normal-mobile {
  margin-top: 0.5rem;
}
.mobile-body .components-filter-mobile {
  display: block;
  margin-bottom: 3rem;
}
.mobile-body .p2p-flex-column-mobile {
  margin-left: 0;
}
.mobile-body .relative-left-mobile {
  width: 100%;
}
.mobile-body .components-filter-desktop {
  display: none;
}
.mobile-body .filter-group .filter-top-right {
  margin-left: 30px;
  overflow-x: auto;
}
.mobile-body .filter-button-group {
  max-width: 150px;
  min-width: 150px;
}
.mobile-body .filter-button-group .filter-button-items {
  padding: 5px;
}
.mobile-body .head {
  margin-left: -15px;
  margin-right: -15px;
}
.mobile-body .conditional-user-menu {
  display: none;
}
.mobile-body .conditional-headline {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.mobile-body .conditional-sub-menu {
  display: block;
}
.mobile-body .conditional-sub-menu .header-dropdown__list-color3 {
  fill: var(--dark-text-color);
}
.mobile-body .conditional-sub-menu .header-dropdown__list-icon2 {
  margin-left: 4px;
  margin-right: 6px;
  padding-top: 3px;
}
.mobile-body .conditional-sub-menu .header-dropdown {
  margin-top: 10px;
}
.mobile-body .conditional-sub-menu .user-sub-menu-icon path,
.mobile-body .conditional-sub-menu .user-sub-menu-icon rect,
.mobile-body .conditional-sub-menu .user-sub-menu-icon circle,
.mobile-body .conditional-sub-menu .user-sub-menu-icon g {
  stroke: var(--first-text-color);
}
.mobile-body .conditional-sub-menu .user-sub-menu-icon .header-dropdown__list-color3 g {
  fill: var(--first-text-color);
}
.mobile-body .conditional-sub-menu .header-dropdown__list {
  top: 3rem;
  left: 0;
  width: 100%;
  font-size: 1rem;
  background-color: #f1f1f1;
}
.mobile-body .p2p-component-title {
  flex-direction: column;
}
.mobile-body .p2p-component-title .h2-headline,
.mobile-body .p2p-component-title .user-sub-menu {
  margin: 2rem 0 0 !important;
}

.flex-col-list .input-radio {
  margin-bottom: 5px;
}

body.dark .form-merchant-container .form-disabled input {
  background: #0f1218;
}

.form-merchant-container .form-disabled input {
  opacity: 1;
  background: #eaebed;
  cursor: not-allowed;
}

body#body .admin-layout .vue-portal-target .modal-container .bg-white {
  background-color: var(--white-color) !important;
  color: var(--dark-body-color) !important;
}

.capitalize {
  text-transform: capitalize;
}

.user-badge svg {
  outline: none;
}
.user-badge:active svg, .user-badge:focus svg {
  outline: none;
}

.file-uploader-form-kyc .vue-file-agent {
  float: none !important;
}

.options-module .m-form-no button {
  margin-top: 5px !important;
}
.options-module .module-orderform__sell-forms__button {
  border: 1px solid var(--red-color);
  background-color: var(--red-color);
}
.options-module .filter-select {
  color: var(--blue-dark-color);
}

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

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

body.dark .options-module .form-group-highlight {
  border: 1px solid #0b0c16;
  background-color: #0b0c16;
}
body.dark .options-module .filter-select {
  color: var(--dark-text-color);
}
body.dark .components-filter__picker .datepicker-dropdown {
  background-color: var(--table-head-color);
}

.components-filter__picker .datepicker-dropdown .picker-today {
  border-color: var(--purple-color);
}
.components-filter__picker .datepicker-dropdown .picker-today:hover {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .datepicker-dropdown .picker-hover:hover {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .datepicker-dropdown .picker-range {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .datepicker-dropdown .picker-range-wrapper {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .bg-purple {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .bg-purple-hover:hover {
  color: var(--white-color);
  background-color: var(--purple-color);
}
.components-filter__picker .bg-purple-hover-white:hover {
  color: var(--white-color);
}
.components-filter__picker .bg-purple-hover-white:hover svg {
  fill: var(--white-color);
}

.text-transition {
  transition: 0.5s;
}

.flex-col-desktop .components-filter__item {
  width: 50%;
}

.markets-tabs {
  margin: 0 0 2rem;
}

.sub-tabs {
  display: flex;
  gap: 1rem;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 15px;
}
.sub-tabs .sub-tabs-nav__item {
  cursor: pointer;
  padding: 5px 10px;
}
.sub-tabs .sub-tabs-nav__item.sub-tabs-nav__active {
  background: var(--yellow-color);
  color: var(--dark-body-color);
  border-radius: 9999px;
  min-width: 100px;
  text-align: center;
}

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

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

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

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

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

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

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
  opacity: 0.7;
}

.mt-0-5 {
  margin-top: 0.1rem;
}

.pre-wrap {
  white-space: pre-wrap;
}

.svg-absolute {
  display: none;
  position: absolute;
  right: -15px;
  top: 0;
}

.relative-p .svg-absolute {
  right: -20px;
  top: -2px;
}

.color-buy svg {
  display: block;
}
.color-buy svg path {
  stroke: var(--green-color);
}

.color-sell svg {
  display: block;
  transform: rotateX(180deg);
}
.color-sell svg path {
  stroke: var(--red-color);
}

.market-trends {
  margin-bottom: 50px;
}
.market-trends .market-trends-item {
  border: 1px solid var(--tr-hover-color);
  border-radius: 15px;
  padding: 20px 20px;
}
.market-trends .market-trends-item .mt-body {
  margin-top: 20px;
}
.market-trends .market-trends-item .mt-body .mt-body-img img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.market-trends .market-trends-item .mt-body .mt-body-item {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
}
.market-trends .market-trends-item .mt-body .mt-body-item:hover {
  opacity: 0.8;
}
.market-trends .market-trends-item .mt-body .mt-body-item:last-child {
  margin-bottom: 0;
}
.market-trends .market-trends-item .mt-body .mt-body-item .mt-body-item-column {
  align-items: center !important;
}
.market-trends .market-trends-item .mt-body .mt-body-item .mt-body-content-price {
  width: 85px;
  flex: 85 1 0%;
}
.market-trends .market-trends-item .mt-body .mt-body-item .mt-body-content-name {
  width: 95px;
  flex: 90 1 0%;
}
.market-trends .market-trends-item .mt-body .mt-body-item .mt-body-content-change {
  display: flex;
  flex: 52 1 0%;
  justify-content: flex-end;
}
.market-trends .market-trends-item .mt-body .mt-body-headline {
  font-size: 0.8rem;
  display: block;
  min-height: 20px;
  margin-bottom: 15px;
  opacity: 0.7;
}

.mobile-body .market-trends {
  display: none;
}

@media (min-width: 400px) and (max-width: 1260px) {
  .mt-body-content-price {
    display: none;
  }
}
#marquee-slider {
  border-top: 1px solid var(--tr-hover-color);
  display: flex !important;
  background-color: var(--white-color);
  position: fixed;
  bottom: 0;
  width: 100% !important;
  padding: 5px 0;
}
#marquee-slider .text-slider-item {
  min-width: 240px;
}

#marquee-slider > div {
  margin-right: 0 !important;
}

.mobile-body #marquee-slider {
  display: none !important;
}

body.dark #marquee-slider {
  background-color: var(--dark-body-color);
}

.mbr {
  width: 100%;
  animation-name: animation;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  display: flex;
}

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

.module-orderbook__buy-sell-stats {
  width: 100%;
  margin-top: 15px;
  padding: 5px 5px;
  align-items: center;
  display: flex;
  font-size: 12px;
  height: 16px;
  justify-content: space-between;
  line-height: 16px;
}
.module-orderbook__buy-sell-stats .orderbook-compare {
  width: 100%;
  margin-top: 15px;
  align-items: center;
  display: flex;
  font-size: 12px;
  height: 16px;
  justify-content: space-between;
  line-height: 16px;
}
.module-orderbook__buy-sell-stats .orderbook-compare .compare-direction {
  align-items: center;
  display: flex;
  line-height: 18px;
}
.module-orderbook__buy-sell-stats .orderbook-compare .compare-direction .compare-percent-buy {
  color: var(--green-color);
  margin-left: 2px;
}
.module-orderbook__buy-sell-stats .orderbook-compare .compare-direction .compare-percent-sell {
  color: var(--red-color);
  margin-left: 2px;
}
.module-orderbook__buy-sell-stats .orderbook-compare .compare-bar {
  align-items: center;
  display: flex;
  flex: 1 1;
  padding: 0 8px;
}
.module-orderbook__buy-sell-stats .orderbook-compare .compare-bids-bar {
  align-items: center;
  background-color: var(--green-color);
  border-radius: 2px 0 0 2px;
  height: 4px;
  margin-right: 2px;
  width: 50%;
}
.module-orderbook__buy-sell-stats .orderbook-compare .compare-asks-bar {
  align-items: center;
  background-color: var(--red-color);
  border-radius: 0 2px 2px 0;
  height: 4px;
  width: 50%;
}

.mobile-body .copyright {
  padding: 5px;
}

sup {
  color: var(--green-color);
  font-weight: bold;
}

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

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

.svg-qr-code {
  margin-top: 7px;
  padding: 5px;
  border-radius: 8px;
  background: var(--purple-color);
}
.svg-qr-code svg {
  cursor: pointer;
}
.svg-qr-code svg path {
  fill: var(--white-color);
}
.svg-qr-code svg:hover {
  opacity: 0.8;
}

body.dark .svg-qr-code svg path {
  fill: var(--white-color);
}

.qrApproved {
  position: absolute;
  top: 40%;
  background: rgba(167, 255, 167, 0.93);
  left: 52px;
  color: #373333;
  padding: 8px 8px;
  border-radius: 8px;
}
.qrApproved svg path {
  fill: var(--green-color);
}

.mobile-body button,
.mobile-body input,
.mobile-body optgroup,
.mobile-body select,
.mobile-body textarea {
  font-size: small;
}

.components-filter__row .rounded {
  border-radius: 9999px;
}

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

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

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

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

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

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

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

.mobile-body .loader-img {
  margin-top: 50px;
}
.mobile-body .chartActive {
  height: 250px;
}
.mobile-body .chart-height {
  min-height: 250px;
}
.mobile-body .module-orderform {
  width: 100%;
}
.mobile-body .module-orderopen__table-list .table-list__item-value {
  padding: 0.2rem 0;
}
.mobile-body .trade-head__right iframe {
  padding-right: 0 !important;
}

.width-180 {
  min-width: 180px;
}

.form-components__block-button-v2 {
  max-width: 200px;
  margin: 0 auto;
}

.widget-stats__block-3 {
  margin-right: 0 !important;
  align-self: center;
  margin-bottom: 5px;
}
.widget-stats__block-3 .widget-stats__list-item {
  margin-right: 15px !important;
}
.widget-stats__block-3 .widget-stats__list-item .social-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}
.widget-stats__block-3 .widget-stats__list-item .social-icon .social-icon__color {
  fill: #515152;
}
.widget-stats__block-3 .widget-stats__list-item .social-icon2 {
  margin-top: -2px;
  width: 22px;
  height: 20px;
}
.widget-stats__block-3 .widget-stats__list-item .social-icon3 {
  margin-top: -3px;
  width: 24px;
  height: 20px;
}

.dark .widget-stats__list-item .social-icon__color {
  fill: var(--white-color) !important;
}

.btn-full-width {
  margin-top: 0px !important;
  width: 100% !important;
}
.btn-full-width .gsi-material-button {
  display: block;
  min-width: 100%;
}
.btn-full-width .gsi-material-button svg {
  margin-top: 4px;
}
.btn-full-width .loader-svg-icon svg {
  margin-left: 7px;
  margin-top: -1px;
}

.opacity-80 {
  opacity: 0.6;
}

#buy-container {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

.buy-container-show {
  display: block !important;
}

.tabs-main {
  margin-bottom: 25px !important;
}

.tiny-slider .vue-slider {
  margin: 0.7rem 0 !important;
}

.module-orderform__title-item {
  padding: 1.5rem 0 0.5rem !important;
}

.wallets-action-buttons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.wallets-action-buttons .form-components__block-item {
  width: auto;
  margin: 0;
}

.wallets-action-buttons .form-components__block-button {
  width: auto;
}
