@charset "UTF-8";
body,
html {
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", serif;
}
body.overflow,
html.overflow {
  overflow: hidden !important;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(119, 106, 230, 0.08);
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #594dc5;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #685ade;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
  background: #141414;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", serif;
}

input,
textarea {
  border: none;
  background: transparent;
}
input:focus,
textarea:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

button {
  cursor: pointer;
  border: none;
  transition: 0.3s;
  background: none;
}
button:focus {
  outline: none;
  border: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}

.c-gray {
  color: #7d7d80;
}

.c-white {
  color: #f5f5f7;
}

.c-green {
  color: #37b358;
}

.c-purple {
  color: #594dc5;
}

.c-red {
  color: #de4d4d !important;
}

.fs-0 {
  font-size: 0px !important;
}

.fs-4 {
  font-size: 4px !important;
}

.fs-8 {
  font-size: 8px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-44 {
  font-size: 44px !important;
}

.fs-48 {
  font-size: 48px !important;
}

.fs-52 {
  font-size: 52px !important;
}

.fs-56 {
  font-size: 56px !important;
}

.fs-60 {
  font-size: 60px !important;
}

.green-status {
  color: #37b358;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  height: 26px;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid rgba(55, 179, 88, 0.08);
  background: rgba(55, 179, 88, 0.07);
}

.wrapper {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.purple-btn {
  border-radius: 4px;
  background: #594dc5;
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.08), 0.5px 0.5px 0.5px 0px rgba(0, 0, 0, 0.12), 0px -1px 2px 2px rgba(0, 0, 0, 0.08) inset, 0px 1px 2px 2px rgba(255, 255, 255, 0.08) inset, 0px 0px 0px 1px rgba(20, 20, 20, 0.99), 0px 0px 0px 0px rgba(255, 255, 255, 0.04) inset;
  padding: 10px 12px;
  color: #f5f5f7;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  border-radius: 4px;
}
.purple-btn:hover {
  background: #7268ce;
}
.purple-btn.transparent {
  background-color: transparent;
  border: 0;
  color: #594dc5;
  box-shadow: unset;
}

.btn-gray {
  color: #f5f5f7;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
  height: 32px;
  padding: 8.5px 12px;
  border-radius: 4px;
  background: rgba(252, 252, 252, 0.02);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.04) inset;
}
.btn-gray.disabled, .btn-gray:disabled {
  cursor: default;
  opacity: 0.3;
  color: #f5f5f7;
  background: rgba(252, 252, 252, 0.02);
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.08), 0.5px 0.5px 0.5px 0px rgba(0, 0, 0, 0.12), 0px 0px 0px 0px rgba(255, 255, 255, 0.04) inset;
}

.select-wrap {
  position: relative;
  min-width: 77px;
}
.select-wrap .select-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.select-wrap select {
  display: none;
}
.select-wrap .select2 {
  position: relative;
  width: 100% !important;
  height: 100%;
}
.select-wrap .select2 .selection {
  width: 100%;
}
.select-wrap .select2-container--default .select2-selection--single {
  background-color: transparent;
  text-align: left;
  border: none;
  padding: 0;
  height: 100%;
}
.select-wrap .select2-container--default .select2-selection--single:focus {
  outline: none;
}
.select-wrap .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 12px;
  font-weight: 500;
  padding: 0;
  color: #f5f5f7;
  padding: 10px;
  padding-right: 22px;
  padding-left: 20px;
  padding-bottom: 0;
  padding-top: 0;
  line-height: 23px;
}
@media (max-width: 1200px) {
  .select-wrap .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
  }
}
.select-wrap .select2-selection__arrow {
  width: 9px !important;
  height: 6px !important;
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%);
  z-index: 1 !important;
  background-color: transparent;
}
.select-wrap .select2-selection__arrow b {
  background: url(../img/select-arrow.svg) no-repeat center center;
  width: 9px !important;
  height: 6px !important;
  border: none !important;
  transition: 0.2s;
}
.select-wrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(180deg);
}
.select-wrap.style2 {
  min-width: auto;
  height: auto;
}
.select-wrap.style2 .select2-selection__rendered {
  padding: 0 30px 0 10px !important;
  height: 32px !important;
  line-height: 32px !important;
  transition: 0.3s;
  border: 1px solid #404041;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .select-wrap.style2 .select2-selection__rendered {
    font-size: 16px !important;
  }
}
.select-wrap.style2 .select2-selection__arrow {
  right: 16px !important;
}
.select-wrap.style2 .select2-selection--single {
  padding-right: 0 !important;
}

.select2-dropdown {
  border: none !important;
  font-size: 14px !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: #211f29;
  color: #7d7d80;
  font-size: 12px !important;
  font-weight: 400;
  transition: 0s;
}

.select2-container--default .select2-results__option--highlighted {
  color: #7d7d80;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  font-size: 12px;
  background: #211f29;
  font-weight: 400;
  color: #f5f5f7;
  transition: 0.3s;
}

.select2-search--dropdown {
  padding: 0;
}

.select2-container--open .select2-dropdown {
  bottom: 0 !important;
  top: 100%;
  transition: 0s;
}

.select2-results__options {
  border: none;
  max-height: inherit !important;
  padding: 15px 0;
  transition: 0s;
  min-width: 100%;
  width: max-content;
  border-radius: 4px;
  border: 1px solid #404041;
  background: #211f29;
  box-shadow: 2px 4px 8px 0px rgba(20, 20, 20, 0.06), 1px 2px 4px 0px rgba(20, 20, 20, 0.06), 1px 1px 2px 0px rgba(20, 20, 20, 0.06), 0.5px 0px 1px 0px rgba(20, 20, 20, 0.06), 0.25px 0px 0.5px 0px rgba(20, 20, 20, 0.06), 0px 0px 0px 0px rgba(20, 20, 20, 0.05), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
}

.select2-results__option {
  font-size: 12px;
  background: #211f29;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px !important;
  margin-bottom: 10px;
  transition: 0s;
}
.select2-results__option:last-child {
  margin-bottom: 0;
  border: none;
}

.select2-search--dropdown {
  border: none;
}

.select2-search {
  display: none;
}

.select2-results__option {
  font-weight: 400;
  padding: 0 15px;
  color: #7d7d80;
  font-size: 12px;
  transition: 0s;
}
@media (max-width: 767px) {
  .select2-results__option {
    font-size: 14px;
  }
}

.tabs {
  margin-bottom: 8px;
}

.tabs-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #292929;
  position: relative;
}
.tabs-buttons:after {
  content: "";
  width: var(--solidWidth);
  height: 2px;
  background: #594dc5;
  position: absolute;
  left: var(--solidLeft);
  bottom: 0;
  transition: 0.3s;
}

.tab-button {
  padding: 10px;
  height: 36px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(230, 231, 234, 0.56);
  text-align: center;
  position: relative;
  z-index: 0;
}
.tab-button.active {
  color: #f5f5f7;
}
.tab-button:after {
  content: "";
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: transparent;
  transition: 0.3s;
}

.tab-content {
  display: none;
  margin-top: 8px;
}
.tab-content .texts {
  padding: 0 10px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tab-content .texts a {
  color: #7d7d80;
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  line-height: 100%;
}
.tab-content .texts a:hover {
  text-decoration: none;
}
.tab-content .texts p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  color: #b1a6f3;
}
.tab-content .texts p .purple-text {
  font-size: 12px;
  font-weight: 500;
  color: #b1a6f3;
  margin: 0 5px;
}
.tab-content .texts span {
  font-size: 12px;
  font-weight: 500;
}
.tab-content .texts span.grey {
  color: #7d7d80;
}
.tab-content .texts span.white {
  color: #f5f5f7;
}
.tab-content .select-wrap {
  margin: 16px 0;
}
.tab-content .range-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 10px;
  margin-bottom: 16px;
}
.tab-content .range-wrap #slider-range,
.tab-content .range-wrap #slider-range2 {
  border: none;
  height: 2px;
  background: #404041;
  flex-grow: 1;
}
.tab-content .range-wrap #slider-range .ui-widget-header,
.tab-content .range-wrap #slider-range2 .ui-widget-header {
  background: #edc8a1;
}
.tab-content .range-wrap #slider-range .ui-widget-content,
.tab-content .range-wrap #slider-range2 .ui-widget-content {
  background: #edc8a1;
}
.tab-content .range-wrap #slider-range .ui-slider-handle,
.tab-content .range-wrap #slider-range2 .ui-slider-handle {
  background: #211f29;
  border: 1px solid #776ae6;
  border-radius: 50%;
  top: -9px;
}
.tab-content .range-wrap #slider-range .ui-slider-handle:focus,
.tab-content .range-wrap #slider-range2 .ui-slider-handle:focus {
  outline: none;
}
.tab-content .range-wrap .input-wrap {
  width: 72px;
  margin-left: 28px;
  height: 32px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
.tab-content .range-wrap .input-wrap input {
  width: 100%;
  height: 100%;
  background: transparent;
  padding-left: 10px;
  padding-right: 30px;
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #404041;
}
.tab-content .range-wrap .input-wrap input::-webkit-input-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .range-wrap .input-wrap input::-moz-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .range-wrap .input-wrap input:-ms-input-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .range-wrap .input-wrap input:-moz-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .range-wrap .input-wrap input:focus {
  border-color: #5c5c5c;
}
.tab-content .range-wrap .input-wrap .persent {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 500;
  color: #f5f5f7;
}
.tab-content .selects-info {
  margin-top: 16px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 8px;
}
.tab-content .selects-info .input-wrap {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}
.tab-content .selects-info .input-wrap input {
  border: 1px solid #404041;
  border-radius: 4px;
  width: 100%;
  height: 32px;
  padding: 0 10px;
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
  padding-right: 56px;
}
.tab-content .selects-info .input-wrap input::-webkit-input-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .selects-info .input-wrap input::-moz-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .selects-info .input-wrap input:-ms-input-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .selects-info .input-wrap input:-moz-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .selects-info .input-wrap input:focus {
  border-color: #5c5c5c;
}
.tab-content .selects-info .input-wrap input.pr20 {
  padding-right: 20px;
}
.tab-content .selects-info .input-wrap .select-wrap {
  width: 34px;
  min-width: 34px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin: 0;
}
.tab-content .selects-info .input-wrap .select-wrap .select2-selection__rendered {
  padding: 0 !important;
}
.tab-content .selects-info .input-wrap .select-wrap .select2-selection__arrow {
  right: 2px !important;
}
.tab-content .purple-btn {
  width: 100%;
  margin-bottom: 24px;
  text-align: center;
  margin-top: 14px;
}
.tab-content .info-title {
  padding: 0 10px;
  margin-bottom: 10px;
  color: #f5f5f7;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .connect-text {
  margin: 12px auto;
  padding-top: 12px;
  text-align: center;
  color: #f5f5f7;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  border-top: 1px solid #292929;
}
.tab-content .input-wrap {
  position: relative;
  margin-bottom: 16px;
  margin-top: 16px;
}
.tab-content .input-wrap input {
  border: 1px solid #404041;
  border-radius: 4px;
  width: 100%;
  height: 32px;
  padding: 0 10px;
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
  padding-right: 56px;
}
.tab-content .input-wrap input::-webkit-input-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .input-wrap input::-moz-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .input-wrap input:-ms-input-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .input-wrap input:-moz-placeholder {
  color: #e6e7ea;
  font-size: 12px;
  font-weight: 500;
}
.tab-content .input-wrap input:focus {
  border-color: #5c5c5c;
}
.tab-content .input-wrap .select-wrap {
  width: 34px;
  min-width: 34px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin: 0;
}
.tab-content .input-wrap .select-wrap .select2-selection__rendered {
  padding: 0 !important;
}
.tab-content .input-wrap .select-wrap .select2-selection__arrow {
  right: 2px !important;
}

.tab-content.active {
  display: block;
}

.switch {
  display: flex;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #404041;
  background: rgba(36, 36, 36, 0.48);
  padding: 4px;
  margin-bottom: 8px;
}

.switch-button {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: #7d7d80;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.switch-button.active {
  background: #6a5acd;
  color: #f5f5f7;
}

.switch-button2 {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: #7d7d80;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.switch-button2.active {
  background: #6a5acd;
  color: #f5f5f7;
}

.checkbox-wrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 12px;
  font-weight: 500;
  color: #f5f5f7;
}
.checkbox-wrap label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.checkbox-wrap label input:checked ~ span:after {
  opacity: 1;
}
.checkbox-wrap label span {
  width: 16px;
  min-width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  transition: 0.2s;
  border: 1px solid #776ae6;
  border-radius: 4px;
  margin-right: 8px;
}
.checkbox-wrap label span:after {
  content: "";
  background: #776ae6;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
  opacity: 0;
  transition: 0.2s;
}

.tab-content .range-wrap #slider-range .ui-widget-header,
.tab-content .range-wrap #slider-range2 .ui-widget-header {
  background: #594dc5;
}

.graphic-info .selects-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.graphic-info .items {
  width: 100%;
}
.graphic-info .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4px;
  position: relative;
  z-index: 0;
  padding: 5px 10px;
}
.graphic-info .items .item:after {
  content: "";
  width: 20%;
  height: 100%;
  border-radius: 4px;
  background: rgba(222, 77, 77, 0.12);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.graphic-info .items .item:nth-child(1):after {
  width: 90%;
}
.graphic-info .items .item:nth-child(2):after {
  width: 60%;
}
.graphic-info .items .item:nth-child(3):after {
  width: 40%;
}
.graphic-info .items .item span {
  font-size: 12px;
  font-weight: 500;
  color: #e6e7ea;
  width: 50px;
}
.graphic-info .items .item span.red {
  color: #de4d4d;
}
.graphic-info .items .item span.green {
  color: #37b358;
}
.graphic-info .items.green-style .item:after {
  background: rgba(55, 179, 88, 0.12);
}
.graphic-info .top-title {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.graphic-info .top-title span {
  font-size: 12px;
  font-weight: 500;
  color: #7d7d80;
  min-width: 50px;
}
.graphic-info .black-style {
  background: #141414;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px 0;
}
.graphic-info .black-style span {
  font-size: 12px;
  font-weight: 500;
  color: #f5f5f7;
  min-width: 50px;
}
.graphic-info .black-style span.purple {
  color: #9a8eed;
}

.leaderboard-info {
  max-width: 1170px;
  width: 100%;
  padding: 60px 15px 0;
  margin: 0 auto;
}
.leaderboard-info .leaderboard-title {
  font-size: 36px;
  margin-bottom: 35px;
  color: #f5f5f7;
  font-weight: bold;
}
@media (max-width: 767px) {
  .leaderboard-info .tab-content {
    overflow-x: auto;
  }
}
.leaderboard-info .tabs-buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  margin-bottom: 16px;
}
.leaderboard-info .tabs-buttons button {
  min-width: 130px;
}
@media (max-width: 767px) {
  .leaderboard-info .tabs-buttons button {
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .leaderboard-info .table-wrap {
    min-width: 600px;
  }
}
.leaderboard-info .table-wrap .table-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px 8px 0px 0px;
  border-bottom: 1px solid rgba(64, 64, 65, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.12) 0%, rgba(119, 106, 230, 0.12) 100%), rgba(245, 245, 247, 0.02);
  padding: 16px;
}
.leaderboard-info .table-wrap .table-top img {
  margin-left: 12px;
  transform: translateY(2px);
}
.leaderboard-info .table-wrap .table-top span {
  font-size: 12px;
  font-weight: 500;
  color: #5c5c5e;
}
.leaderboard-info .table-wrap .table-top span.purple {
  color: #594dc5;
}
.leaderboard-info .table-wrap .table-item {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(64, 64, 65, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 0px rgba(0, 0, 0, 0.04);
}
.leaderboard-info .table-wrap .table-item span {
  color: #f5f5f7;
  font-size: 14px;
}
.leaderboard-info .table-wrap .table-item span.num img {
  padding-left: 7px;
}
.leaderboard-info .table-wrap .table-item span.num b {
  font-weight: normal;
  padding-left: 16px;
}
.leaderboard-info .table-wrap .table-item span.red {
  color: #de4d4d;
}
.leaderboard-info .table-wrap .table-item span.green {
  color: #37b358;
}
.leaderboard-info .top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.leaderboard-info .top-info .top-texts {
  position: relative;
  z-index: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.leaderboard-info .top-info .top-texts:after {
  content: "";
  width: 1px;
  height: 16px;
  background: #404041;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .leaderboard-info .top-info .top-texts:after {
    left: 47%;
  }
}
.leaderboard-info .top-info .top-texts span {
  padding: 8px;
  color: #c2c2c6;
  transition: 0.3s;
  font-size: 14px;
  margin-left: 16px;
}
@media (max-width: 767px) {
  .leaderboard-info .top-info .top-texts span {
    font-size: 12px;
    margin-left: 8px;
    padding: 4px;
  }
}
.leaderboard-info .top-info .top-texts span.active {
  color: #776ae6;
}

.dao-info {
  max-width: 1170px;
  width: 100%;
  padding: 60px 15px 20px;
  margin: 0 auto;
}
.dao-info .dao-title {
  font-size: 36px;
  margin-bottom: 35px;
  color: #f5f5f7;
  font-weight: bold;
}
.dao-info .dao-top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .dao-info .dao-top-info {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.dao-info .dao-top-info .texts {
  margin-right: 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 6px;
}
@media (max-width: 767px) {
  .dao-info .dao-top-info .texts {
    margin: 0;
    padding: 0;
  }
  .dao-info .dao-top-info .texts:nth-child(even) {
    text-align: right;
  }
}
.dao-info .dao-top-info .texts > .grey {
  margin-bottom: 8px;
  font-size: 14px;
  color: #a0a0a2;
  display: block;
}
.dao-info .dao-top-info .texts .green {
  font-size: 18px;
  font-weight: 600;
  color: #16b364;
}
.dao-info .dao-top-info .texts .white {
  font-size: 16px;
  font-weight: 600;
  color: #f5f5f7;
}
.dao-info .info-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .dao-info .info-blocks {
    grid-template-columns: 1fr;
  }
}
.dao-info .info-blocks p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #f5f5f7;
}
.dao-info .info-blocks .grey {
  font-size: 14px;
  font-weight: 500;
  color: #c2c2c6;
  display: block;
  margin-bottom: 16px;
}
.dao-info .info-blocks .block1 {
  border-radius: 8px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, #2c293c 0%, #2c293c 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  padding: 16px;
}
.dao-info .info-blocks .block1 b {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 16px;
}
.dao-info .info-blocks .block1 .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8px;
}
.dao-info .info-blocks .block1 .info-item a {
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  color: #7d7d80;
}
.dao-info .info-blocks .block1 .info-item .line {
  font-size: 12px;
  font-weight: 500;
  color: #f5f5f7;
}
.dao-info .info-blocks .block1 .info-item:last-child {
  margin-bottom: 0;
}
.dao-info .info-blocks .block2 {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, #211f29 0%, #211f29 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dao-info .info-blocks .block2 .grey {
  font-size: 12px;
}
.dao-info .info-blocks .block2 .buttons {
  max-width: 455px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dao-info .info-blocks .block2 .buttons button {
  width: calc((100% - 8px) / 2);
  border-radius: 4px;
  background: rgba(245, 245, 247, 0.04);
  box-shadow: 0px -1px 2px 2px rgba(0, 0, 0, 0.08) inset, 0px 1px 2px 2px rgba(255, 255, 255, 0.03) inset, 0px 0px 0px 1px rgba(20, 20, 20, 0.99), 0px 0px 0px 0px rgba(255, 255, 255, 0.04) inset;
  padding: 8px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #c2c2c6;
}
.dao-info .info-blocks .block2 .buttons button.active {
  background: #594dc5;
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.08), 0.5px 0.5px 0.5px 0px rgba(0, 0, 0, 0.12), 0px -1px 2px 2px rgba(0, 0, 0, 0.08) inset, 0px 1px 2px 2px rgba(255, 255, 255, 0.08) inset, 0px 0px 0px 1px rgba(20, 20, 20, 0.99), 0px 0px 0px 0px rgba(255, 255, 255, 0.04) inset;
  color: #f5f5f7;
}
.dao-info .info-blocks .block2 .info-texts {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dao-info .info-blocks .block2 .info-texts .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 24px;
}
.dao-info .info-blocks .block2 .info-texts .text a {
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  color: #7d7d80;
  margin-bottom: 8px;
}
.dao-info .info-blocks .block2 .info-texts .text span {
  font-size: 12px;
  font-weight: 500;
  color: #f5f5f7;
}
.dao-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f5f5f7;
}
.dao-info .info-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .dao-info .info-items {
    grid-template-columns: 1fr;
  }
}
.dao-info .info-items .info-item {
  border-radius: 8px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  padding: 16px;
}
.dao-info .info-items .info-item p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #f5f5f7;
}
.dao-info .info-items .info-item .grey {
  margin-bottom: 4px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #c2c2c6;
}
.dao-info .info-items .info-item .texts-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .dao-info .info-items .info-item .texts-wrap {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.dao-info .info-items .info-item .texts-wrap .item {
  margin-right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 767px) {
  .dao-info .info-items .info-item .texts-wrap .item {
    margin: 0;
    padding: 0;
  }
  .dao-info .info-items .info-item .texts-wrap .item:nth-child(even) {
    text-align: right;
  }
}
.dao-info .info-items .info-item .texts-wrap .item a {
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  color: #7d7d80;
  margin-bottom: 8px;
}
.dao-info .info-items .info-item .texts-wrap .item span {
  font-size: 16px;
  font-weight: 500;
  color: #f5f5f7;
}
.dao-info .info-items .info-item .texts-wrap .item span.style {
  background: linear-gradient(0deg, #776ae6 0%, #f7931a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dao-info .info-items .info-list {
  list-style-type: disc;
  padding-left: 15px;
}
.dao-info .info-items .info-list li {
  margin-bottom: 5px;
  font-size: 14px;
  color: #C2C2C6;
}
.dao-info .info-items .info-list li:last-child {
  margin-bottom: 0;
}

.tokenomics-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tokenomics-wrap .chart-img {
  margin: -20px auto 0;
}
@media (max-width: 1024px) {
  .tokenomics-wrap .chart-img {
    margin: 0 auto;
  }
}
.tokenomics-wrap .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.tokenomics-wrap .list .item .circle {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 8px;
}
.tokenomics-wrap .list .item .circle.color1 {
  background: #776AE6;
}
.tokenomics-wrap .list .item .circle.color2 {
  background: #CEC6F9;
}
.tokenomics-wrap .list .item .circle.color3 {
  background: #E5E1FC;
}
.tokenomics-wrap .list .item .circle.color4 {
  background: #B1A6F3;
}
.tokenomics-wrap .list .item .text {
  font-size: 14px;
  color: #C2C2C6;
}

#pin-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  padding: 40px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  position: relative;
  border-radius: 8px;
  border: 1px solid #141414;
  background: #211f29;
  box-shadow: 4px 8px 16px -4px rgba(20, 20, 20, 0.08), 0px 0px 16px 32px rgba(0, 0, 0, 0.02), 2px 4px 8px 0px rgba(20, 20, 20, 0.08), 1px 2px 4px 0px rgba(20, 20, 20, 0.06), 1px 1px 2px 0px rgba(20, 20, 20, 0.06), 0.5px 0px 1px 0px rgba(20, 20, 20, 0.06), 0.25px 0px 0.5px 0px rgba(20, 20, 20, 0.06), 0px 0px 0px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
}
.popup-content h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #f5f5f7;
}
.popup-content > p {
  margin-bottom: 24px;
  text-align: center;
  color: #7d7d80;
  font-size: 14px;
  font-weight: 500;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.pin-input {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.pin-input input {
  width: 56px;
  height: 56px;
  font-size: 24px;
  text-align: center;
  border: 1px solid #404041;
  border-radius: 5px;
  background: #1e1e2d;
  color: #fff;
}

.pin-inputs input:focus {
  border-color: #6a5acd;
}

#deposit-popup {
  max-width: 475px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  background: #211f29;
}
#deposit-popup .popup-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  padding: 15px;
  padding-bottom: 60px;
}
#deposit-popup .popup-body .mfp-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  opacity: 1;
  width: 18px;
  height: 18px;
}
#deposit-popup .popup-body .mfp-close:after {
  content: "";
  background: url(../img/close-popup.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
}
#deposit-popup .popup-body .info > p {
  font-size: 12px;
  color: #7d7d80;
  margin-bottom: 8px;
}
#deposit-popup .popup-body .info h3 {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 20px;
  color: #e6e7ea;
}
#deposit-popup .popup-body .info .input {
  height: 34px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #404041;
  position: relative;
  margin-bottom: 12px;
  color: #f5f5f7;
}
#deposit-popup .popup-body .info .input input {
  padding: 0 12px;
  width: 100%;
  height: 100%;
  padding-right: 60px;
  color: #f5f5f7;
  font-size: 14px;
  font-weight: 500;
}
#deposit-popup .popup-body .info .input input::-webkit-input-placeholder {
  color: #7d7d80;
  font-size: 14px;
  font-weight: 500;
}
#deposit-popup .popup-body .info .input input::-moz-placeholder {
  color: #7d7d80;
  font-size: 14px;
  font-weight: 500;
}
#deposit-popup .popup-body .info .input input:-ms-input-placeholder {
  color: #7d7d80;
  font-size: 14px;
  font-weight: 500;
}
#deposit-popup .popup-body .info .input input:-moz-placeholder {
  color: #7d7d80;
  font-size: 14px;
  font-weight: 500;
}
#deposit-popup .popup-body .info .input .green-text {
  font-size: 14px;
  font-weight: 500;
  color: #3ccb7f;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
#deposit-popup .popup-body .info .purple-btn {
  width: 100%;
  text-align: center;
}
#deposit-popup .popup-body .info > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 14px;
  color: #7d7d80;
}
#deposit-popup .popup-body .info > p span {
  font-size: 14px;
  font-weight: 500;
  color: #776ae6;
}
#deposit-popup .popup-body .info .select-wrap {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #404041;
  border-radius: 4px;
}
#deposit-popup .popup-body .info .select-wrap .select2-selection__rendered {
  height: 32px;
  border-radius: 4px;
  line-height: 32px;
  padding-left: 12px !important;
}

#withdraw-popup {
  max-width: 475px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  background: #211f29;
}
#withdraw-popup .popup-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  padding: 70px 15px;
  padding-bottom: 60px;
}
#withdraw-popup .popup-body .mfp-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  opacity: 1;
  width: 18px;
  height: 18px;
}
#withdraw-popup .popup-body .mfp-close:after {
  content: "";
  background: url(../img/close-popup.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
}
#withdraw-popup .popup-body .info-wrap {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#withdraw-popup .popup-body .info-wrap img {
  margin-bottom: 30px;
}
#withdraw-popup .popup-body .info-wrap b {
  font-size: 20px;
  text-align: center;
  margin-bottom: 16px;
  display: block;
  font-weight: bold;
  color: #f5f5f7;
}
#withdraw-popup .popup-body .info-wrap > p {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 30px;
  color: #7d7d80;
  font-size: 16px;
  font-weight: 500;
}
#withdraw-popup .popup-body .info-wrap .info-item {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 4px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  width: 100%;
  margin-bottom: 10px;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
}
#withdraw-popup .popup-body .info-wrap .info-item .white {
  font-size: 16px;
  font-weight: 500;
  color: #f5f5f7;
}
#withdraw-popup .popup-body .info-wrap .info-item .grey {
  font-size: 14px;
  font-weight: 500;
  color: #7d7d80;
}

#place-triggers-popup {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
}
#place-triggers-popup .popup-body {
  position: relative;
  z-index: 0;
  padding: 20px;
  background: #141414;
  border-radius: 12px;
}
#place-triggers-popup .popup-body .mfp-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
  opacity: 1;
  width: 32px;
  height: 32px;
}
#place-triggers-popup .popup-body .mfp-close:after {
  content: "";
  background: url(../img/close.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}
#place-triggers-popup .popup-body .purple-btn {
  width: 100%;
  text-align: center;
}
#place-triggers-popup .popup-body h2 {
  padding-bottom: 15px;
  border-bottom: 1px solid #211F29;
  font-size: 16px;
  font-weight: 600;
  color: #E6E7EA;
  margin-bottom: 15px;
}
#place-triggers-popup .popup-body .items {
  border-radius: 4px;
  background: rgba(245, 245, 247, 0.02);
  padding: 8px 10px;
  margin-bottom: 16px;
}
#place-triggers-popup .popup-body .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 8px;
}
#place-triggers-popup .popup-body .items .item span {
  font-size: 12px;
  font-weight: 500;
  color: #7D7D80;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#place-triggers-popup .popup-body .items .item b {
  font-size: 13px;
  font-weight: 500;
  color: #E6E7EA;
}
#place-triggers-popup .popup-body .top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#place-triggers-popup .popup-body .top-info > span {
  font-size: 12px;
  font-weight: 500;
  color: #A0A0A2;
}
#place-triggers-popup .popup-body .top-info .texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#place-triggers-popup .popup-body .top-info .texts .grey {
  font-size: 12px;
  color: #7D7D80;
}
#place-triggers-popup .popup-body .top-info .texts img {
  margin: 0 5px;
}
#place-triggers-popup .popup-body .top-info .texts .red {
  font-size: 12px;
  color: #DE4D4D;
}
#place-triggers-popup .popup-body .bottom-info {
  display: grid;
  margin-bottom: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
#place-triggers-popup .popup-body .bottom-info .item1 {
  border-radius: 4px;
  background: rgba(245, 245, 247, 0.02);
  padding: 6px;
}
#place-triggers-popup .popup-body .bottom-info .item1 b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}
#place-triggers-popup .popup-body .bottom-info .item1 b .text {
  font-size: 12px;
  text-decoration: underline;
  color: #7D7D80;
  display: block;
}
#place-triggers-popup .popup-body .bottom-info .item1 b .style {
  text-decoration: none;
  color: #A0A0A2;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 4px;
  background: rgba(245, 245, 247, 0.12);
  border-radius: 4px;
  margin-left: 5px;
}
#place-triggers-popup .popup-body .bottom-info .item1 span {
  font-size: 13px;
  font-weight: 500;
  color: #7D7D80;
}
#place-triggers-popup .popup-body .bottom-info input {
  font-size: 13px;
  font-weight: 500;
  color: #7D7D80;
  width: 100px;
}

.land-banner {
  height: 100vh;
  background: url(../img/banner-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.land-banner .wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 0;
}
.land-banner .wrapper .infinity {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1024px) {
  .land-banner .wrapper .infinity {
    width: 120vw;
  }
}
.land-banner .top-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  z-index: 0;
}
.land-banner .top-line .logo {
  width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.land-banner .top-line .logo img {
  width: 100%;
}
.land-banner .top-line:after {
  content: "";
  width: 300vw;
  left: -100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0px -0.5px 0px 1px rgba(255, 255, 255, 0.02) inset;
}
.land-banner .top-line .launch-btn {
  font-size: 14px;
  font-weight: 500;
  color: #e6e7ea;
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(20, 20, 20, 0.32);
}
.land-banner .top-line .launch-btn:hover {
  background: rgba(20, 20, 20, 0.56);
}
.land-banner .info {
  text-align: center;
  margin: auto;
  position: relative;
  top: -50px;
}
@media (max-width: 767px) {
  .land-banner .info {
    padding: 150px 0;
  }
}
.land-banner .info h1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -2.72px;
  text-transform: capitalize;
  background: linear-gradient(158deg, #fff 8.57%, #999 127.57%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}
@media (max-width: 1024px) {
  .land-banner .info h1 {
    font-size: 40px;
    max-width: 410px;
  }
}
@media (max-width: 767px) {
  .land-banner .info h1 {
    margin-bottom: 10px;
    max-width: 350px;
    font-size: 36px;
    margin-bottom: 10px;
  }
}
.land-banner .info p {
  margin-bottom: 30px;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.7;
  text-align: center;
}
@media (max-width: 767px) {
  .land-banner .info p {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 5px;
  }
}
.land-banner .info p b {
  font-weight: bold;
}
.land-banner .info .start-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 16px;
  color: #e6e7ea;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  border-radius: 10px;
  border: 1px solid #776ae6;
  background: var(--Grey-10, #141414);
  box-shadow: 0px 0.5px 1px 1px rgba(255, 255, 255, 0.04) inset, 0px 0px 0px 1px rgba(0, 0, 0, 0.32), 0px 0px 0px 0px rgba(255, 255, 255, 0.04) inset;
}
.land-banner .info .start-btn img {
  margin-left: 12px;
}
.land-banner .info .start-btn:hover {
  background: #776ae6;
}

.land-info-block {
  padding: 150px 0;
  background: #06050b url(../img/land-info-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 1024px) {
  .land-info-block {
    background: #06050b url(../img/land-info-bg-mobile.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .land-info-block {
    padding: 50px 0;
  }
}
.land-info-block .wrapper {
  text-align: center;
}
.land-info-block .wrapper img {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .land-info-block .wrapper img {
    margin-bottom: 10px;
  }
}
.land-info-block .wrapper h3 {
  text-align: center;
  max-width: 540px;
  width: 100%;
  margin: 0 auto 40px;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.52px;
  background: linear-gradient(158deg, #fff 8.57%, #999 127.57%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .land-info-block .wrapper h3 {
    font-size: 22px;
    max-width: 360px;
    margin-bottom: 24px;
  }
}
.land-info-block .wrapper > p {
  text-align: center;
  color: #404041;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.2px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .land-info-block .wrapper > p {
    margin-bottom: 32px;
    font-size: 16px;
  }
}
.land-info-block .wrapper .land-info-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  text-align: left;
}
@media (max-width: 1024px) {
  .land-info-block .wrapper .land-info-items {
    grid-template-columns: 1fr;
  }
}
.land-info-block .wrapper .land-info-items .land-info-item {
  border-radius: 16px;
  background: #15141a;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 0px 0px 1px rgba(255, 255, 255, 0.04) inset;
  padding: 24px 30px;
}
.land-info-block .wrapper .land-info-items .land-info-item.active {
  background: rgba(119, 106, 230, 0.4);
}
.land-info-block .wrapper .land-info-items .land-info-item .icon {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .land-info-block .wrapper .land-info-items .land-info-item .icon {
    width: 60px;
    margin-bottom: 20px;
  }
  .land-info-block .wrapper .land-info-items .land-info-item .icon img {
    width: 100%;
  }
}
.land-info-block .wrapper .land-info-items .land-info-item h4 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}
.land-info-block .wrapper .land-info-items .land-info-item p {
  color: #a0a0a2;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.32px;
}
@media (max-width: 767px) {
  .land-info-block .wrapper .land-info-items .land-info-item p {
    line-height: 140%;
  }
}

.defi-block {
  padding: 150px 0;
  background: #06050b url(../img/defi-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 767px) {
  .defi-block {
    padding: 50px 0;
  }
}
.defi-block h2 {
  max-width: 520px;
  width: 100%;
  margin: 0 auto 80px;
  color: #1a1a1a;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -2px;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .defi-block h2 {
    font-size: 40px;
    max-width: 450px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .defi-block h2 {
    font-size: 32px;
    margin-bottom: 32px;
    max-width: 290px;
  }
}
.defi-block .defi-items-wrap {
  position: relative;
  z-index: 0;
}
.defi-block .defi-items-wrap:after {
  content: "";
  width: 100%;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  z-index: -1;
  background: #404041;
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .defi-block .defi-items-wrap:after {
    width: 2px;
    height: 96%;
    top: 0;
    left: 50%;
    margin-left: -1px;
  }
}
.defi-block .defi-items {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 310px;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .defi-block .defi-items {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.defi-block .defi-items .defi-item {
  position: absolute;
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item {
    position: static;
    max-width: 200px;
    width: 100%;
    margin: 0 auto 32px;
    text-align: center;
  }
  .defi-block .defi-items .defi-item:last-child {
    margin-bottom: 0;
  }
}
.defi-block .defi-items .defi-item.active span {
  border-color: #594dc5;
  background: #594dc5;
  color: white;
}
.defi-block .defi-items .defi-item:after {
  content: "";
  background: url(../img/style-bottom.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 56px;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:after {
    content: none;
  }
}
.defi-block .defi-items .defi-item span {
  color: #292929;
  font-size: 16px;
  text-align: left;
  font-style: normal;
  max-width: 200px;
  display: inline-block;
  font-weight: 600;
  line-height: 24px;
  padding: 16px;
  border-radius: 8px;
  border: 2px solid #292929;
  background: #fff;
  text-transform: capitalize;
  box-shadow: 0px 24px 48px -12px rgba(0, 0, 0, 0.06), 0px 16px 32px -8px rgba(0, 0, 0, 0.06), 0px 0px 16px 16px rgba(71, 57, 202, 0.04);
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item span {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item span {
    padding: 16px;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}
.defi-block .defi-items .defi-item:nth-child(1) {
  left: 0;
  top: 48px;
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item:nth-child(1) {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:nth-child(1) {
    order: -8;
  }
}
.defi-block .defi-items .defi-item:nth-child(2) {
  left: 20%;
  top: 48px;
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item:nth-child(2) {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:nth-child(2) {
    order: -4;
  }
}
.defi-block .defi-items .defi-item:nth-child(3) {
  left: 44%;
  top: 48px;
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item:nth-child(3) {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:nth-child(3) {
    order: -6;
  }
}
.defi-block .defi-items .defi-item:nth-child(4) {
  left: 64%;
  top: 48px;
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item:nth-child(4) {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:nth-child(4) {
    order: -5;
  }
}
.defi-block .defi-items .defi-item:nth-child(5) {
  left: 10%;
  bottom: 48px;
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item:nth-child(5) {
    bottom: 60px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:nth-child(5) {
    order: -7;
  }
}
.defi-block .defi-items .defi-item:nth-child(5):after {
  top: inherit;
  bottom: 100%;
  transform: rotate(180deg);
}
.defi-block .defi-items .defi-item:nth-child(6) {
  left: 30%;
  bottom: 27px;
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item:nth-child(6) {
    bottom: 35px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:nth-child(6) {
    order: -5;
  }
}
.defi-block .defi-items .defi-item:nth-child(6):after {
  top: inherit;
  bottom: 100%;
  transform: rotate(180deg);
}
.defi-block .defi-items .defi-item:nth-child(7) {
  left: 55%;
  bottom: 48px;
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item:nth-child(7) {
    bottom: 60px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:nth-child(7) {
    order: 0;
  }
}
.defi-block .defi-items .defi-item:nth-child(7):after {
  top: inherit;
  bottom: 100%;
  transform: rotate(180deg);
}
.defi-block .defi-items .defi-item:nth-child(8) {
  right: 170px;
  bottom: 48px;
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item:nth-child(8) {
    bottom: 60px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:nth-child(8) {
    order: 0;
  }
}
.defi-block .defi-items .defi-item:nth-child(8):after {
  top: inherit;
  bottom: 100%;
  transform: rotate(180deg);
}
.defi-block .defi-items .defi-item:nth-child(9) {
  right: 0;
  bottom: 48px;
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item:nth-child(9) {
    bottom: 60px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:nth-child(9) {
    order: 2;
    margin-top: 32px;
  }
}
.defi-block .defi-items .defi-item:nth-child(9):after {
  top: inherit;
  bottom: 100%;
  transform: rotate(180deg);
}
.defi-block .defi-items .defi-item:nth-child(10) {
  right: 85px;
  top: 48px;
}
@media (max-width: 1024px) {
  .defi-block .defi-items .defi-item:nth-child(10) {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .defi-block .defi-items .defi-item:nth-child(10) {
    order: 1;
  }
}

.user-centered {
  padding: 100px 0 120px;
  border-radius: 16px 16px 0 0;
  background: url(../img/user-centered-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 767px) {
  .user-centered {
    padding: 70px 0 50px;
  }
}
.user-centered .info-top {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .user-centered .info-top {
    margin-bottom: 24px;
  }
}
.user-centered .info-top .user-centered-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(119, 106, 230, 0.12);
  background: #FEFEFE;
  box-shadow: 0px 0px 0px 1px #FFF inset;
  padding: 8px;
  padding-right: 12px;
  color: #1A1A1A;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 16px;
}
.user-centered .info-top .user-centered-btn:hover {
  color: #776AE6;
  border: 1px solid #776AE6;
}
.user-centered .info-top .user-centered-btn img {
  margin-right: 6px;
}
.user-centered .info-top h2 {
  max-width: 600px;
  width: 100%;
  color: #1A1A1A;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1.52px;
  margin: 0 auto 24px;
}
@media (max-width: 1024px) {
  .user-centered .info-top h2 {
    font-size: 32px;
    margin-bottom: 16px;
    max-width: 520px;
  }
}
@media (max-width: 767px) {
  .user-centered .info-top h2 {
    font-size: 24px;
    max-width: 255px;
  }
}
.user-centered .info-top p {
  color: #594DC5;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 767px) {
  .user-centered .info-top p {
    font-size: 16px;
  }
}
.user-centered p {
  color: #404041;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
@media (max-width: 1024px) {
  .user-centered p {
    font-size: 14px;
    line-height: 140%;
  }
}
.user-centered p span {
  color: #594DC5;
}
.user-centered .top-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .user-centered .top-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.user-centered .top-items .left {
  width: calc(43% - 8px);
  border-radius: 16px;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0px 0px 0px 1px #FFF inset, 0px 24px 48px -12px rgba(0, 0, 0, 0.06), 0px 16px 32px -8px rgba(0, 0, 0, 0.06), 0px 0px 16px 16px rgba(71, 57, 202, 0.04);
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .user-centered .top-items .left {
    width: 100%;
    margin-bottom: 16px;
    min-height: 320px;
  }
}
.user-centered .top-items .left img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.user-centered .top-items .left p {
  font-size: 16px;
  font-weight: 500;
  color: #404041;
}
@media (max-width: 1024px) {
  .user-centered .top-items .left p {
    font-size: 14px;
  }
}
.user-centered .top-items .left .texts {
  padding: 30px;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .user-centered .top-items .left .texts {
    padding: 20px;
  }
}
.user-centered .top-items .left h3 {
  font-size: 20px;
  font-weight: bold;
  color: #404041;
  margin-bottom: 12px;
}
.user-centered .top-items .right {
  width: calc(57% - 8px);
  border-radius: 16px;
  min-height: 380px;
  background: #FFF;
  box-shadow: 0px 0px 0px 1px #FFF inset, 0px 24px 48px -12px rgba(0, 0, 0, 0.06), 0px 16px 32px -8px rgba(0, 0, 0, 0.06), 0px 0px 16px 16px rgba(71, 57, 202, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .user-centered .top-items .right {
    width: 100%;
    min-height: 320px;
  }
}
.user-centered .top-items .right p {
  font-size: 16px;
  font-weight: 500;
  color: #404041;
}
@media (max-width: 1024px) {
  .user-centered .top-items .right p {
    font-size: 14px;
  }
}
.user-centered .top-items .right .texts {
  padding: 30px;
}
@media (max-width: 1024px) {
  .user-centered .top-items .right .texts {
    padding: 20px;
  }
}
.user-centered .top-items .right h3 {
  font-size: 20px;
  font-weight: bold;
  color: #404041;
  margin-bottom: 12px;
}
.user-centered .top-items .right img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  border-radius: 0 0 16px 16px;
}
.user-centered .bottom-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .user-centered .bottom-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.user-centered .bottom-items .left {
  width: calc(57% - 8px);
  border-radius: 16px;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0px 0px 0px 1px #FFF inset, 0px 24px 48px -12px rgba(0, 0, 0, 0.06), 0px 16px 32px -8px rgba(0, 0, 0, 0.06), 0px 0px 16px 16px rgba(71, 57, 202, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 0;
  min-height: 380px;
}
@media (max-width: 767px) {
  .user-centered .bottom-items .left {
    width: 100%;
    min-height: 320px;
  }
}
.user-centered .bottom-items .left img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .user-centered .bottom-items .left img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .user-centered .bottom-items .left img {
    margin-top: 0;
  }
}
.user-centered .bottom-items .left p {
  padding-top: 0;
  max-width: 570px;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .user-centered .bottom-items .left p {
    font-size: 14px;
  }
}
.user-centered .bottom-items .left .texts {
  padding: 30px;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .user-centered .bottom-items .left .texts {
    padding: 20px;
  }
}
.user-centered .bottom-items .left h3 {
  font-size: 20px;
  font-weight: bold;
  color: #404041;
  margin-bottom: 12px;
}
.user-centered .bottom-items .right {
  width: calc(43% - 8px);
  border-radius: 16px;
  background: #594DC5;
  box-shadow: 0px 0px 0px 1px #FFF inset, 0px 24px 48px -12px rgba(0, 0, 0, 0.06), 0px 16px 32px -8px rgba(0, 0, 0, 0.06), 0px 0px 16px 16px rgba(71, 57, 202, 0.04);
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 767px) {
  .user-centered .bottom-items .right {
    width: 100%;
    min-height: 320px;
    margin-top: 16px;
  }
}
.user-centered .bottom-items .right p {
  color: #F5F5F7;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 1024px) {
  .user-centered .bottom-items .right p {
    font-size: 16px;
    line-height: 130%;
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .user-centered .bottom-items .right p {
    padding-left: 30px;
  }
}
.user-centered .bottom-items .right .texts {
  padding: 30px;
}
.user-centered .bottom-items .right h3 {
  font-size: 16px;
  font-weight: bold;
  color: #404041;
  margin-bottom: 10px;
}
.user-centered .bottom-items .right .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  margin-left: auto;
}
.user-centered .bottom-items .right .social a {
  margin-left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #776AE6;
  background: var(--Grey-8, #292929);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 0px 0px 1px rgba(255, 255, 255, 0.04) inset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .user-centered .bottom-items .right .social a {
    width: 40px;
    height: 40px;
    margin-left: 15px;
  }
}
.user-centered .bottom-items .right .social a:hover {
  border-color: white;
}
.user-centered .bottom-items .right .social a img {
  margin: auto;
}
@media (max-width: 1024px) {
  .user-centered .bottom-items .right .social a img {
    width: 20px;
  }
}

.without-block {
  background: #fff;
  padding: 120px 0;
}
@media (max-width: 1024px) {
  .without-block {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .without-block {
    padding: 50px 0;
  }
}
@media (max-width: 1024px) {
  .without-block .wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}
.without-block h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #1A1A1A;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2px;
}
@media (max-width: 767px) {
  .without-block h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .without-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.without-block .without-slider .slick-list {
  margin: 0 -12px;
}
@media (max-width: 1024px) {
  .without-block .without-slider .slick-list {
    margin: 0;
  }
}

.footer {
  padding: 30px 0;
  background: #06050B;
}
.footer .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .footer .footer-logo {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
}

.swiper-wrapper {
  width: 98%;
  margin-left: -20px;
}
@media (max-width: 1024px) {
  .swiper-wrapper {
    display: flex;
    gap: 0px;
    margin-left: 0px;
  }
}

.swiper-slide {
  width: 320px;
  margin: 10px 0 !important;
  margin-left: 20px !important;
}
@media (max-width: 1024px) {
  .swiper-slide {
    margin-left: 15px !important;
    width: 330px;
  }
}
.swiper-slide .item {
  padding: 16px;
  height: 410px;
  border-radius: 16px;
  border: 1px solid rgba(245, 245, 247, 0.8);
  background: linear-gradient(180deg, #FFF -57.66%, #F5F5F7 116.39%);
  box-shadow: 2px 4px 8px -2px rgba(0, 0, 0, 0.12), 1px 2px 4px -1px rgba(0, 0, 0, 0.12), 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .swiper-slide .item {
    padding: 14px;
  }
}
.swiper-slide .item .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 32px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .swiper-slide .item .top {
    margin-bottom: 8px;
  }
}
.swiper-slide .item .top span {
  font-size: 20px;
  font-weight: 600;
  color: #404041;
}
@media (max-width: 767px) {
  .swiper-slide .item .top span {
    font-size: 16px;
  }
}
.swiper-slide .item .top .style {
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(125, 125, 128, 0.08);
  background: rgba(230, 231, 234, 0.56);
  font-size: 14px;
  font-weight: 600;
  color: #7D7D80;
}
.swiper-slide .item .price-wrap span {
  color: #A0A0A2;
  font-size: 16px;
}
.swiper-slide .item .price-wrap .price {
  color: #1A1A1A;
  font-size: 38px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .swiper-slide .item .price-wrap .price {
    font-size: 30px;
  }
}
.swiper-slide .item .price-wrap .price.purple {
  color: #776AE6;
}
.swiper-slide .item .texts {
  padding: 16px 0;
  margin-top: 16px;
  border-top: 1px solid #E6E7EA;
}
@media (max-width: 767px) {
  .swiper-slide .item .texts {
    padding: 15px 0;
    margin-top: 15px;
  }
}
.swiper-slide .item .texts p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  color: #A0A0A2;
  margin-bottom: 5px;
}
.swiper-slide .item .texts p .purple {
  color: #776AE6;
  font-size: 14px;
  font-weight: 500;
  display: block;
  padding-left: 26px;
  width: 100%;
  margin-top: 5px;
}
.swiper-slide .item .texts p img {
  margin-right: 10px;
}
.swiper-slide .item .start-btn {
  margin-top: 5px;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background: #776AE6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #F5F5F7;
  margin-top: auto;
}
.swiper-slide .item .start-btn:hover {
  background: #594DC5;
  box-shadow: 0.5px 0.5px 0.5px 0px rgba(0, 0, 0, 0.12), 1px 1px 1px 0px rgba(0, 0, 0, 0.08);
}
.swiper-slide .item .start-btn img {
  margin-left: 10px;
}

@media (min-width: 1025px) {
  .swiper-slide {
    width: auto;
    /* на больших экранах ширина автоматическая */
  }
}
#upgrade-popup {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
#upgrade-popup .popup-body {
  position: relative;
  z-index: 0;
  padding: 16px;
  padding-top: 20px;
  background: #141414;
  border-radius: 12px;
}
#upgrade-popup .popup-body .mfp-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
  opacity: 1;
  width: 32px;
  height: 32px;
}
#upgrade-popup .popup-body .mfp-close:after {
  content: "";
  background: url(../img/close.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}
#upgrade-popup .popup-body .purple-btn {
  width: 100%;
  text-align: center;
  margin-top: 6px;
}
#upgrade-popup .popup-body h2 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #E6E7EA;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item, #upgrade-popup .popup-body .upgrade-items .upgrade-item2 {
  border-radius: 12px;
  border: 1px solid rgba(245, 245, 247, 0.06);
  padding: 12px 16px;
  margin-bottom: 10px;
  transition: 0.3s;
  cursor: pointer;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item.active, #upgrade-popup .popup-body .upgrade-items .upgrade-item2.active {
  border-color: #776AE6;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item ul li, #upgrade-popup .popup-body .upgrade-items .upgrade-item2 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4px;
  padding-left: 16px;
  position: relative;
  z-index: 0;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item ul li:after, #upgrade-popup .popup-body .upgrade-items .upgrade-item2 ul li:after {
  content: "";
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 7px;
  left: 0px;
  background: #7D7D80;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item ul li:last-child, #upgrade-popup .popup-body .upgrade-items .upgrade-item2 ul li:last-child {
  margin-bottom: 0;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item ul li p, #upgrade-popup .popup-body .upgrade-items .upgrade-item2 ul li p {
  padding-right: 10px;
  font-size: 14px;
  color: #7D7D80;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item ul li p .purple, #upgrade-popup .popup-body .upgrade-items .upgrade-item2 ul li p .purple {
  color: #776AE6;
  font-size: 14px;
  margin-left: 5px;
}
@media (max-width: 767px) {
  #upgrade-popup .popup-body .upgrade-items .upgrade-item ul li p .purple, #upgrade-popup .popup-body .upgrade-items .upgrade-item2 ul li p .purple {
    display: block;
    margin-left: 0;
  }
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item ul li .text, #upgrade-popup .popup-body .upgrade-items .upgrade-item2 ul li .text {
  color: #F5F5F7;
  font-size: 16px;
  white-space: nowrap;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item ul li .text.grey, #upgrade-popup .popup-body .upgrade-items .upgrade-item2 ul li .text.grey {
  color: #7D7D80;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item2 {
  position: relative;
  z-index: 0;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item2 .style {
  position: absolute;
  top: -10px;
  left: 25px;
  z-index: 10;
}
#upgrade-popup .popup-body .upgrade-items .upgrade-item2:hover {
  background: none;
}

.steps-block {
  background: #06050B;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .steps-block {
    padding-top: 20px;
  }
}
.steps-block .info {
  position: relative;
  z-index: 0;
}
.steps-block .info h2 {
  text-align: center;
  color: white;
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Plus Jakarta Sans", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .steps-block .info h2 {
    font-size: 3.5vw;
    max-width: 37vw;
  }
}
.steps-block .info .bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.steps-block .info .bg .desk-img {
  width: 100%;
}
@media (max-width: 767px) {
  .steps-block .info .bg .desk-img {
    width: 130%;
    margin-left: -14%;
  }
}

.manifest {
  padding: 100px 0;
  border-radius: 16px 16px 0px 0px;
  background: #FFF;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .manifest {
    padding: 50px 0;
  }
}
.manifest .left-img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
}
.manifest .right-img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
}
.manifest .info {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .manifest .info {
    max-width: 600px;
  }
}
.manifest .info h2 {
  color: #1A1A1A;
  text-align: center;
  font-family: "Inter";
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .manifest .info h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .manifest .info h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.manifest .info p {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 500;
  color: #292929;
  font-family: "Inter";
}
@media (max-width: 1024px) {
  .manifest .info p {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .manifest .info p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.manifest .info p .purple {
  font-size: 28px;
  font-weight: 500;
  color: #594DC5;
}
@media (max-width: 1024px) {
  .manifest .info p .purple {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .manifest .info p .purple {
    font-size: 16px;
  }
}

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
}
.progress .persent {
  font-size: 12px;
  margin-right: 5px;
  color: #8b81e1;
  font-weight: 600;
}
.progress .progress-line {
  flex-grow: 1;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #5C5C5E;
}
.progress .progress-line span {
  background: #8b81e1;
  display: inline-block;
}

@media (max-width: 767px) {
  .dashboard-content {
    padding-top: 16px;
  }
}
.dashboard-content .dashboard-content-item {
  color: white;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .dashboard-content .dashboard-content-item {
    top: 30px;
    height: auto;
    position: static;
    width: 100%;
    padding-right: 6px;
  }
}
.dashboard-content .dashboard-content-item > h2 {
  color: #F5F5F7;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .dashboard-content .dashboard-content-item > h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.dashboard-content .dashboard-content-item .items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1920px) {
  .dashboard-content .dashboard-content-item .items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 1600px) {
  .dashboard-content .dashboard-content-item .items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1300px) {
  .dashboard-content .dashboard-content-item .items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .dashboard-content .dashboard-content-item .items {
    grid-template-columns: 1fr;
    padding-bottom: 70px;
  }
}
.dashboard-content .dashboard-content-item .items .item {
  transition: 0.3s;
  border-radius: 16px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, #2C293C 0%, #2C293C 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dashboard-content .dashboard-content-item .items .item .purple-btn {
  width: 100%;
  text-align: center;
}
.dashboard-content .dashboard-content-item .items .item .top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}
.dashboard-content .dashboard-content-item .items .item .top-info .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  margin-right: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.dashboard-content .dashboard-content-item .items .item .top-info .img-wrap img {
  max-width: 100%;
  max-height: 100%;
}
.dashboard-content .dashboard-content-item .items .item .top-info .texts {
  margin-right: 5px;
}
.dashboard-content .dashboard-content-item .items .item .top-info .texts b {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: #F5F5F7;
  font-weight: 600;
}
.dashboard-content .dashboard-content-item .items .item .top-info .texts .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dashboard-content .dashboard-content-item .items .item .top-info .texts .date span {
  font-size: 12px;
  margin-right: 5px;
  font-weight: 500;
  color: #5C5C5E;
}
.dashboard-content .dashboard-content-item .items .item .top-info .icon {
  margin-right: 30px;
  width: 32px;
  height: 32px;
  max-width: 32px;
  border-radius: 50%;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  position: relative;
}
.dashboard-content .dashboard-content-item .items .item .top-info .icon span {
  color: white;
  font-size: 10px;
  bottom: -30px;
  position: absolute;
  left: 0;
}
.dashboard-content .dashboard-content-item .items .item .top-info .icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.dashboard-content .dashboard-content-item .items .item > p {
  color: #A0A0A2;
  font-size: 13px;
  line-height: 140%;
}
.dashboard-content .dashboard-content-item .items .item .infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 16px 0 30px;
}
.dashboard-content .dashboard-content-item .items .item .infos .info-texts {
  margin-right: 10px;
}
.dashboard-content .dashboard-content-item .items .item .infos .info-texts span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #A0A0A2;
}
.dashboard-content .dashboard-content-item .items .item .infos .info-texts b {
  font-size: 14px;
  font-weight: 500;
  color: white;
}
.dashboard-content .dashboard-content-item .items .item .infos .info-texts b.red {
  color: red;
}
.dashboard-content .dashboard-content-item .items .item .infos .info-texts b.green {
  color: green;
}
.dashboard-content .dashboard-content-item .items .item .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
}
.dashboard-content .dashboard-content-item .items .item .btn-wrap .purple-btn {
  width: 59%;
}
.dashboard-content .dashboard-content-item .items .item .btn-wrap .price {
  width: 39%;
  font-size: 15px;
  color: #A0A0A2;
  font-weight: normal;
}
.dashboard-content .dashboard-content-item .items .item .btn-wrap .price span {
  color: #9185f8;
  font-size: 15px;
  font-weight: normal;
  display: inline-block;
}
.dashboard-content .dashboard-content-item .items .item .btn-wrap .price span.white {
  margin-left: 5px;
  color: white;
}

.dashboard2 .menu-wrap {
  position: relative;
}
.dashboard2 .menu-wrap .information-block {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 85%;
  z-index: 10;
}
@media (max-width: 1024px) {
  .dashboard2 .menu-wrap .information-block {
    display: none;
  }
}
.dashboard2 .menu-wrap .information-block .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.dashboard2 .menu-wrap .information-block .img-wrap img {
  width: 100%;
}
.dashboard2 .menu-wrap .information-block p {
  font-size: 10px;
  color: #A0A0A2;
  margin-bottom: 6px;
}
.dashboard2 .menu-wrap .information-block h4 {
  font-weight: 500;
  font-size: 12px;
  margin: 12px 0;
  color: #C2C2C6;
}
@media (max-width: 992px) {
  .dashboard2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: flex-start !important;
  }
  .dashboard2 .menu-wrap {
    width: 100%;
  }
  .dashboard2 .menu-wrap .dashboard-menu-item {
    position: static !important;
    min-width: 42px;
    font-size: 10px;
  }
  .dashboard2 .dashboard-content {
    height: auto;
  }
}

.open-orders-wrap {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
}

#open-orders h2 {
  margin-bottom: 35px;
  font-size: 24px;
  font-weight: bold;
  color: #F5F5F7;
}
#open-orders .orders-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}
@media (max-width: 1450px) {
  #open-orders .orders-info {
    grid-template-columns: 1fr;
  }
}
#open-orders .orders-info .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
#open-orders .orders-info .title a {
  font-size: 14px;
  color: #776AE6;
}
#open-orders .orders-info .title span {
  font-size: 16px;
  font-weight: 500;
  margin-right: 16px;
  color: #E6E7EA;
}
#open-orders .orders-info .info {
  border-radius: 12px;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  padding: 12px;
  padding-bottom: 6px;
}
@media (max-width: 767px) {
  #open-orders .orders-info .info {
    padding: 8px;
  }
}
#open-orders .orders-info .left .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  border-bottom: solid 1pxrgba 64, 64, 65, 0.12;
  margin-bottom: 6px;
  transition: 0.3s;
  cursor: pointer;
}
#open-orders .orders-info .left .item:hover {
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
}
#open-orders .orders-info .left .item b {
  font-size: 14px;
  display: inline-block;
  font-weight: 600;
  color: #F5F5F7;
  margin-right: 6px;
}
#open-orders .orders-info .left .item .grey {
  font-size: 14px;
  font-weight: 500;
  color: #7D7D80;
}
#open-orders .orders-info .left .item .icon {
  margin-right: 6px;
  width: 24px;
  height: 24px;
  border-right: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#open-orders .orders-info .left .item .icon img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
#open-orders .orders-info .left .item .num {
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 500;
  color: #F5F5F7;
  border-radius: 50%;
  overflow: hidden;
  min-width: 18px;
  margin-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.02) 0%, rgba(119, 106, 230, 0.02) 100%), rgba(245, 245, 247, 0.08);
}
#open-orders .orders-info .left .item .persent {
  font-size: 12px;
  font-weight: 600;
  color: #3CCB7F;
}
#open-orders .orders-info .left .item .price {
  margin-left: auto;
  margin-right: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #F5F5F7;
}
#open-orders .orders-info .right .items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #open-orders .orders-info .right .items {
    grid-template-columns: 1fr;
  }
}
#open-orders .orders-info .right .items .item {
  border-radius: 8px;
  padding: 12px;
  border-bottom: 1px solid rgba(64, 64, 65, 0.12);
  background: rgba(245, 245, 247, 0.02);
  transition: 0.3s;
  cursor: pointer;
}
#open-orders .orders-info .right .items .item:hover {
  background: rgba(119, 106, 230, 0.08);
}
#open-orders .orders-info .right .items .item .top-inf {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 245, 247, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#open-orders .orders-info .right .items .item .top-inf .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#open-orders .orders-info .right .items .item .top-inf .img-wrap .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  min-width: 32px;
}
#open-orders .orders-info .right .items .item .top-inf .img-wrap .texts {
  align-self: center;
}
#open-orders .orders-info .right .items .item .top-inf .img-wrap .texts b {
  font-size: 14px;
  font-weight: 600;
  color: #F5F5F7;
  display: block;
  margin-bottom: -2px;
}
#open-orders .orders-info .right .items .item .top-inf .img-wrap .texts span {
  font-size: 12px;
  margin-top: -2px;
  color: #7D7D80;
}
#open-orders .orders-info .right .items .item .top-inf .ico {
  margin-left: auto;
  padding: 6px 16px;
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.02) 0%, rgba(119, 106, 230, 0.02) 100%), rgba(245, 245, 247, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: #A0A0A2;
}
#open-orders .orders-info .right .items .item .bottom-inf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#open-orders .orders-info .right .items .item .bottom-inf .grey, #open-orders .orders-info .right .items .item .bottom-inf .text {
  font-size: 12px;
  color: #7D7D80;
  margin-right: 4px;
  display: inline-block;
}
#open-orders .orders-info .right .items .item .bottom-inf .white {
  font-size: 12px;
  margin-right: 4px;
  font-weight: 500;
  color: #F5F5F7;
}
#open-orders .orders-info .right .items .item .bottom-inf .plus {
  margin-left: -8px;
  padding: 4px;
  border-radius: 8px;
  border: solid 1pxrgba 245, 245, 247, 0.04;
  background: #26242E;
  box-shadow: 0.5px 0.5px 1px 0pxrgba 0, 0, 0, 0.04, 0.25px 0.25px 0.5px 0pxrgba 0, 0, 0, 0.04, 0px 0px 0px 0pxrgba 0, 0, 0, 0.04, 0px 0px 0px 1pxrgba 255, 255, 255, 0.02 inset;
  font-size: 10px;
  font-weight: 500;
  color: #C2C2C6;
  border-radius: 20px;
}
#open-orders .orders-info .right .items .item .bottom-inf .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
#open-orders .orders-info .right .items .item .bottom-inf .images .text {
  margin-right: 12px;
}
#open-orders .orders-info .right .items .item .bottom-inf .images .imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#open-orders .orders-info .right .items .item .bottom-inf .images .imgs img {
  width: 18px;
  height: 18px;
  margin-left: -6px;
}
@media (max-width: 992px) {
  #open-orders .scroll {
    overflow-x: auto;
  }
}
#open-orders .ord-table-wrap h3 {
  margin-bottom: 16px;
  font-size: 16px;
  color: #E6E7EA;
  font-weight: 500;
}
#open-orders .ord-table-wrap .table-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px 8px 0px 0px;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.12) 0%, rgba(119, 106, 230, 0.12) 100%), rgba(245, 245, 247, 0.02);
  padding: 16px;
}
@media (max-width: 992px) {
  #open-orders .ord-table-wrap .table-top {
    min-width: 992px;
  }
}
#open-orders .ord-table-wrap .table-top .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#open-orders .ord-table-wrap .table-top .info span {
  font-size: 12px;
  color: #C2C2C6;
}
#open-orders .ord-table-wrap .table-top .info img {
  margin-left: 8px;
}
#open-orders .ord-table-wrap .table-bottom {
  border: solid 1pxrgba 64, 64, 65, 0.12;
  background: rgba(119, 106, 230, 0.08);
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  transition: 0.3s;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  #open-orders .ord-table-wrap .table-bottom {
    min-width: 992px;
  }
}
#open-orders .ord-table-wrap .table-bottom:hover {
  background: rgba(119, 106, 230, 0.12);
}
#open-orders .ord-table-wrap .table-bottom span {
  font-size: 14px;
  color: #F5F5F7;
}
#open-orders .ord-table-wrap .table-bottom .purple-btn {
  text-align: center;
}

.dashboard-menu.show {
  min-height: calc(100vh - 70px);
}
@media (max-width: 992px) {
  .dashboard-menu.show {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 2px;
    min-height: auto;
    height: auto;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: #211F29;
    padding: 10px 0 1px;
  }
}
.dashboard-menu.show .dashboard-menu-active {
  top: 10px;
}
@media (max-width: 992px) {
  .dashboard-menu.show .dashboard-menu-active {
    background: none;
    display: none;
  }
}

.analytic {
  border-radius: 0px 4px 4px 0px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 0px rgba(0, 0, 0, 0.04);
  padding: 8px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4px;
}
@media (max-width: 992px) {
  .analytic {
    display: none;
  }
}
.analytic .img-wrap {
  width: 36px;
  height: 36px;
  margin-right: 8px;
  min-width: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.analytic .img-wrap img {
  max-width: 100%;
  max-height: 100%;
}
.analytic .texts {
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.analytic .texts b {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  color: #E6E7EA;
}
.analytic .texts .progress {
  margin-top: 2px;
  margin-bottom: 0;
}
.analytic > img {
  margin-left: auto;
}

.dashboard-menu-item .dashboard-menu-item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (max-width: 992px) {
  .dashboard-menu-item .dashboard-menu-item-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
}
.dashboard-menu-item .dashboard-menu-item-icon .icon {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dashboard-menu-item .dashboard-menu-item-icon .icon.icon1 {
  background: url(../img/func-icon1.png);
  width: 14px;
  height: 11px;
}
.dashboard-menu-item .dashboard-menu-item-icon .icon.icon2 {
  background: url(../img/func-icon2.png);
  width: 20px;
  height: 16px;
}
.dashboard-menu-item .dashboard-menu-item-icon .icon.icon3 {
  background: url(../img/func-icon3.png);
  width: 16px;
  height: 16px;
}
.dashboard-menu-item .dashboard-menu-item-icon .icon.icon4 {
  background: url(../img/func-icon4.png);
  width: 18px;
  height: 18px;
}
.dashboard-menu-item .dashboard-menu-item-icon .icon.icon5 {
  background: url(../img/func-icon5.png);
  width: 16px;
  height: 16px;
}
@media (max-width: 992px) {
  .dashboard-menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 14px;
    margin-bottom: 0 !important;
    transition: 0.3s;
  }
  .dashboard-menu-item .dashboard-menu-item-icon {
    width: 24px;
    height: 24px;
    background: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .dashboard-menu-item .dashboard-menu-item-icon .icon {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .dashboard-menu-item .dashboard-menu-item-icon .icon.icon1 {
    background: url(../img/func-icon1-grey.png);
    width: 14px;
    height: 11px;
  }
  .dashboard-menu-item .dashboard-menu-item-icon .icon.icon2 {
    background: url(../img/func-icon2-grey.png);
    width: 20px;
    height: 16px;
  }
  .dashboard-menu-item .dashboard-menu-item-icon .icon.icon3 {
    background: url(../img/func-icon3-grey.png);
    width: 16px;
    height: 16px;
  }
  .dashboard-menu-item .dashboard-menu-item-icon .icon.icon4 {
    background: url(../img/func-icon4-grey.png);
    width: 20px;
    height: 20px;
  }
  .dashboard-menu-item .dashboard-menu-item-icon .icon.icon5 {
    background: url(../img/func-icon5-grey.png);
    width: 16px;
    height: 16px;
  }
  .dashboard-menu-item.active {
    color: #776AE6 !important;
  }
  .dashboard-menu-item.active .dashboard-menu-item-icon {
    background: none !important;
  }
  .dashboard-menu-item.active .dashboard-menu-item-icon .icon {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .dashboard-menu-item.active .dashboard-menu-item-icon .icon.icon1 {
    background: url(../img/func-icon1-purple.png);
    width: 15px;
    height: 11px;
  }
  .dashboard-menu-item.active .dashboard-menu-item-icon .icon.icon2 {
    background: url(../img/func-icon2-purple.png);
    width: 20px;
    height: 16px;
  }
  .dashboard-menu-item.active .dashboard-menu-item-icon .icon.icon3 {
    background: url(../img/func-icon3-purple.png);
    width: 18px;
    height: 18px;
  }
  .dashboard-menu-item.active .dashboard-menu-item-icon .icon.icon4 {
    background: url(../img/func-icon4-purple.png);
    width: 20px;
    height: 20px;
  }
  .dashboard-menu-item.active .dashboard-menu-item-icon .icon.icon5 {
    background: url(../img/func-icon5-purple.png);
    width: 16px;
    height: 16px;
  }
  .dashboard-menu-item:hover {
    background: transparent !important;
  }
}

#positions {
  position: relative;
  padding-bottom: 10px;
}
@media (max-width: 992px) {
  #positions {
    position: static;
    padding-bottom: 70px;
  }
}
#positions .wrap {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
#positions .wrap > h2 {
  color: #F5F5F7;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  #positions .wrap > h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
#positions .info2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1120px;
  width: 100%;
}
@media (max-width: 1200px) {
  #positions .info2 {
    flex-direction: column-reverse;
  }
}
#positions .info2 .development-level {
  width: 39%;
}
@media (max-width: 1200px) {
  #positions .info2 .development-level {
    width: 100%;
  }
}
#positions .info2 .agent-personal {
  width: 59%;
}
@media (max-width: 1200px) {
  #positions .info2 .agent-personal {
    width: 100%;
    margin-bottom: 24px;
  }
}
#positions .info2 .agent-personal .info-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#positions .info2 .agent-personal .info-line .white {
  font-weight: 500;
  font-size: 12px;
  color: #F5F5F7;
}
#positions .info2 .agent-personal .info-line .yellow {
  font-weight: 500;
  font-size: 12px;
  color: #E6AA00;
}
#positions .info2 .agent-personal .info-line .left-text {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #7D7D80;
}
#positions .info2 .agent-personal .info-line .left-text img {
  margin-right: 8px;
}
#positions .info2 .agent-personal .text-style {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #292929;
  font-size: 12px;
  color: #7D7D80;
  line-height: 155%;
}
#positions .info2 h4 {
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 16px;
  color: #F5F5F7;
}
#positions .info2 .informatia {
  border-radius: 8px;
  border: solid 1pxrgba 41, 33, 133, 0.12;
  background: linear-gradient(0deg, #211F29 0%, #211F29 100%), rgba(245, 245, 247, 0.02);
  padding: 16px;
}
#positions .info2 .informatia .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}
#positions .info2 .informatia .top .num {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 4px;
  background: #594DC5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #E6E7EA;
  margin-right: 16px;
}
#positions .info2 .informatia .top .trader {
  width: 100%;
}
#positions .info2 .informatia .top .trader b {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  color: #F5F5F7;
}
#positions .info2 .informatia .top .trader .progress {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 6px;
  background: #5C5C5E;
  border-radius: 8px;
  overflow: hidden;
}
#positions .info2 .informatia .top .trader .progress span {
  position: absolute;
  top: 0;
  left: 0;
  background: #594DC5;
  height: 100%;
}
#positions .info2 .informatia .top .trader > span {
  margin-top: 8px;
  display: block;
  color: #7D7D80;
  font-size: 10px;
}
#positions .info2 .informatia .progresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
#positions .info2 .informatia .progresses .pr-item .title {
  font-size: 12px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  color: #7D7D80;
}
#positions .info2 .informatia .progresses .pr-item .progresss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#positions .info2 .informatia .progresses .pr-item .progresss .green {
  color: #16B364;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
  margin-top: -2px;
}
#positions .info2 .informatia .progresses .pr-item .progresss .green.yellow {
  color: #E6AA00;
}
#positions .info2 .informatia .progresses .pr-item .progress-line {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 6px;
  background: #5C5C5E;
  border-radius: 8px;
  overflow: hidden;
}
#positions .info2 .informatia .progresses .pr-item .progress-line .line {
  position: absolute;
  top: 0;
  left: 0;
  background: #16B364;
  height: 100%;
}
#positions .info2 .informatia .progresses .pr-item .progress-line .line.yellow {
  background: #E6AA00;
}
#positions .tab-mobile {
  max-width: 600px;
  margin: 0 auto;
  display: none;
}
@media (max-width: 992px) {
  #positions .tab-mobile {
    display: block;
    overflow: hidden;
  }
}
#positions .tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid #333;
}
#positions .tab-btn {
  flex: 1;
  padding: 15px 20px;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: 0.3s;
  color: rgba(230, 231, 234, 0.56);
}
#positions .tab-btn.active {
  border-color: #594DC5;
  color: white;
}
#positions .tab-content2 {
  position: relative;
  min-height: 100px;
}
#positions .tab-panel {
  opacity: 0;
  transform: translateY(10px);
  position: absolute;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 100%;
}
#positions .tab-panel .trading-history {
  display: block;
}
#positions .tab-panel.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.info3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 24px;
  max-width: 1120px;
  width: 100%;
}
@media (max-width: 1250px) {
  .info3 {
    flex-direction: column-reverse;
  }
}
.info3 .left-sect {
  width: 59%;
}
@media (max-width: 1250px) {
  .info3 .left-sect {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .info3 .left-sect {
    display: none;
  }
}
.info3 .left-sect .title-wrap {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #F5F5F7;
}
.info3 .left-sect .title-wrap .search {
  margin-left: 16px;
}
.info3 .left-sect .title-wrap .search.hide {
  display: none;
}
.info3 .left-sect .title-wrap form {
  margin-left: 16px;
  max-width: 320px;
  width: 100%;
  transform: scale(0);
  transition: 0.3s;
  opacity: 0;
}
.info3 .left-sect .title-wrap form.open {
  opacity: 1;
  transform: scale(1);
}
.info3 .left-sect .title-wrap form input {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 10px;
  padding-top: 0;
  border-bottom: 1px solid #404041;
}
.info3 .left-sect .title-wrap form input::-webkit-input-placeholder {
  font-size: 12px;
  font-weight: 500;
  color: #7D7D80;
}
.info3 .left-sect .title-wrap form input::-moz-placeholder {
  font-size: 12px;
  font-weight: 500;
  color: #7D7D80;
}
.info3 .left-sect .title-wrap form input:-ms-input-placeholder {
  font-size: 12px;
  font-weight: 500;
  color: #7D7D80;
}
.info3 .left-sect .title-wrap form input:-moz-placeholder {
  font-size: 12px;
  font-weight: 500;
  color: #7D7D80;
}
.info3 .right-sect {
  width: 39%;
}
@media (max-width: 1250px) {
  .info3 .right-sect {
    width: 100%;
    margin-bottom: 24px;
  }
}
.info3 .right-sect .trade-slider {
  display: none;
}
@media (max-width: 767px) {
  .info3 .right-sect .trade-slider {
    display: block;
  }
  .info3 .right-sect .trade-slider .item {
    margin-right: 16px;
    width: 320px;
  }
  .info3 .right-sect .trade-slider .item .trade-item {
    display: block;
  }
}
.info3 .right-sect .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
.info3 .right-sect .title-wrap span {
  font-size: 16px;
  font-weight: 500;
  margin-right: 16px;
  color: #F5F5F7;
}
.info3 .right-sect .title-wrap button {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #F5F5F7;
  border-radius: 4px;
  background: #594DC5;
}
.info3 .right-sect .trade-item {
  padding: 16px;
  border-radius: 8px;
  border: solid 1pxrgba 41, 33, 133, 0.12;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
}
@media (max-width: 767px) {
  .info3 .right-sect .trade-item {
    display: none;
  }
}
.info3 .right-sect .trade-item .tops {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
.info3 .right-sect .trade-item .tops .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 8px;
  width: 48px;
}
.info3 .right-sect .trade-item .tops .txt b {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
  display: block;
  color: #F5F5F7;
}
.info3 .right-sect .trade-item .tops .txt span {
  font-size: 12px;
  font-weight: 500;
  color: #C2C2C6;
}
.info3 .right-sect .trade-item .lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info3 .right-sect .trade-item .lines .prices {
  margin-left: auto;
  text-align: right;
}
.info3 .right-sect .trade-item .lines .prices b {
  display: block;
  margin-bottom: 2px;
  font-size: 20px;
  font-weight: 600;
  color: #F5F5F7;
}
.info3 .right-sect .trade-item .lines .prices .green {
  font-size: 12px;
  font-weight: 500;
  color: #37B358;
}
.info3 .right-sect .trade-item .lines .infos {
  margin-right: 16px;
}
.info3 .right-sect .trade-item .lines .infos span {
  text-decoration: underline;
  margin-bottom: 8px;
  display: inline-block;
  color: #7D7D80;
  font-size: 12px;
  font-weight: 500;
}
.info3 .right-sect .trade-item .lines .infos b {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #F5F5F7;
}
.info3 .right-sect h5 {
  color: #F5F5F7;
  margin-top: 30px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 992px) {
  .info3 .right-sect h5 {
    display: none;
  }
}

.trading-history {
  border-radius: 12px;
  border: solid 1pxrgba 41, 33, 133, 0.12;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  padding: 12px;
}
@media (max-width: 992px) {
  .trading-history {
    display: none;
  }
}
.trading-history .trading-history-item {
  margin-bottom: 8px;
  border-radius: 4px;
  padding: 8px 16px;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.trading-history .trading-history-item .icon {
  width: 24px;
  margin-right: 16px;
  min-width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.trading-history .trading-history-item .texts2 {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.trading-history .trading-history-item .texts2 .green {
  font-size: 14px;
  font-weight: 600;
  color: #3CCB7F;
  display: block;
  margin-bottom: 4px;
}
.trading-history .trading-history-item .texts2 .grey {
  font-size: 12px;
  font-weight: 500;
  color: #A0A0A2;
}
.trading-history .trading-history-item .texts b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #F5F5F7;
  margin-bottom: 4px;
}
.trading-history .trading-history-item .texts .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.trading-history .trading-history-item .texts .text span {
  margin-right: 8px;
  font-size: 12px;
  color: #A0A0A2;
}
.trading-history .trading-history-item.active {
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
}
.trading-history .trading-history-item:hover {
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
}

.positions-top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  max-width: 1120px;
}
@media (max-width: 1450px) {
  .positions-top-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
  }
}
.positions-top-info .positions-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media (max-width: 1450px) {
  .positions-top-info .positions-items {
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .positions-top-info .positions-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
  }
}
.positions-top-info .positions-items .item {
  margin-left: 24px;
  padding: 10px;
  border-radius: 8px;
  border: solid 1pxrgba 41, 33, 133, 0.12;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0pxrgba 0, 0, 0, 0.04, 0.25px 0.25px 0.5px 0pxrgba 0, 0, 0, 0.04, 0px 0px 0px 0pxrgba 0, 0, 0, 0.04, 0px 0px 0px 1pxrgba 255, 255, 255, 0.02 inset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 125px;
}
@media (max-width: 1450px) {
  .positions-top-info .positions-items .item {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .positions-top-info .positions-items .item {
    margin: 0;
  }
}
.positions-top-info .positions-items .item span {
  font-size: 14px;
  color: #A0A0A2;
}
.positions-top-info .positions-items .item span.green {
  font-size: 12px;
  font-weight: 500;
  color: #37B358;
}
.positions-top-info .positions-items .item span.yellow {
  font-size: 12px;
  font-weight: 500;
  color: #E6AA00;
}
.positions-top-info .positions-items .item b {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #F5F5F7;
  margin: 10px 0;
}
.positions-top-info .person-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1450px) {
  .positions-top-info .person-info {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .positions-top-info .person-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
  }
}
.positions-top-info .person-info .left-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 50px;
}
@media (max-width: 1450px) {
  .positions-top-info .person-info .left-infos {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .positions-top-info .person-info .left-infos {
    position: relative;
    width: 100%;
  }
}
.positions-top-info .person-info .left-infos .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 100px;
  width: 100px;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .positions-top-info .person-info .left-infos .img-wrap {
    min-width: 64px;
    width: 64px;
  }
}
.positions-top-info .person-info .left-infos .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.positions-top-info .person-info .left-infos .texts b {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
  color: #F5F5F7;
}
.positions-top-info .person-info .left-infos .texts .grey {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 4px;
  display: block;
  color: #5C5C5E;
}
.positions-top-info .person-info .left-infos .texts .edit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #E6E7EA;
  border: 1px solid #776AE6;
  background: rgba(252, 252, 252, 0.02);
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .positions-top-info .person-info .left-infos .texts .edit {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.positions-top-info .person-info .left-infos .texts .edit:hover {
  background: #776AE6;
  color: white;
}
.positions-top-info .person-info .left-infos .texts .edit img {
  margin-right: 6px;
}
.positions-top-info .person-info .left-infos .texts .style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .positions-top-info .person-info .left-infos .texts .style {
    margin-bottom: 0;
  }
}
.positions-top-info .person-info .left-infos .texts .style .circle {
  width: 6px;
  height: 6px;
  min-width: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #37B358;
}
.positions-top-info .person-info .left-infos .texts .style .text {
  font-size: 12px;
  font-weight: 500;
  color: #37B358;
}
.positions-top-info .person-info .right-infos {
  align-self: flex-start;
}
.positions-top-info .person-info .right-infos .balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
.positions-top-info .person-info .right-infos .balance .white {
  font-size: 16px;
  font-weight: 600;
  color: #F5F5F7;
}
.positions-top-info .person-info .right-infos .balance .gray {
  opacity: 0.8;
  color: #A0A0A2;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-right: 8px;
}
.positions-top-info .person-info .right-infos .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.positions-top-info .person-info .right-infos .buttons button {
  padding: 8px 20px;
  border-radius: 4px;
  background: rgba(245, 245, 247, 0.04);
  font-size: 12px;
  font-weight: 500;
  color: #C2C2C6;
  margin-right: 8px;
}
.positions-top-info .person-info .right-infos .buttons button.active {
  background: #594DC5;
}

.add-agent-block {
  max-width: 370px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .add-agent-block {
    transform: translate(0, 0);
    position: static;
    padding: 100px 0;
  }
}
.add-agent-block h4 {
  text-align: center;
  margin: 10px 0;
  font-size: 18px;
  color: #E6E7EA;
  font-weight: normal;
}
.add-agent-block span {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #7D7D80;
  margin-bottom: 30px;
}

.post-bottom-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  position: relative;
}
.post-bottom-info .close {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.post-bottom-info .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 6px;
  margin-bottom: 6px;
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
}
.post-bottom-info .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-bottom-info b {
  font-size: 16px;
  font-weight: normal;
  color: #F5F5F7;
  display: inline-block;
  margin: 0 2px;
}
.post-bottom-info span {
  display: inline-block;
  margin: 0 4px;
  font-size: 16px;
  font-weight: normal;
  color: #5C5C5E;
}
.post-bottom-info span.green {
  color: #3ccb7f;
}

.posts-wrap {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .posts-wrap {
    padding-bottom: 50px;
  }
}
.posts-wrap h2 {
  margin-bottom: 30px;
}

.post-item {
  padding: 12px;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  border-radius: 8px;
}
.post-item > p {
  font-size: 14px;
  line-height: 150%;
  color: #C2C2C6;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .post-item > p {
    font-size: 13px;
    line-height: 140%;
  }
}
.post-item .more {
  cursor: pointer;
  font-size: 14px;
  color: #776AE6;
}

.post-item-wrap {
  margin-bottom: 16px;
}
.post-item-wrap.hide {
  display: none;
}
.post-item-wrap.style1.after:after {
  content: none;
}
.post-item-wrap.style2 {
  margin-left: 50px;
  position: relative;
}
.post-item-wrap.style2:after {
  content: "";
  position: absolute;
  top: 63%;
  transform: translateY(-50%);
  left: -19px;
  width: 1px;
  height: 80%;
  background: #404041;
}
.post-item-wrap.style2.after:after {
  content: none;
}
.post-item-wrap.style2 .top {
  margin-left: -35px;
  margin-bottom: 12px;
}
.post-item-wrap.style2 .top .img-wrap {
  width: 32px;
  min-width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 8px;
}
.post-item-wrap.style2 .top .texts b {
  font-size: 14px;
  margin-bottom: 2px;
}
.post-item-wrap.style2 .top .texts b span {
  margin-left: 4px;
  font-size: 14px;
}
.post-item-wrap.style2 .top .texts p {
  font-size: 12px;
  color: #A0A0A2;
}
.post-item-wrap.style2 .top .texts p span {
  font-size: 12px;
  color: #5C5C5E;
  font-weight: normal;
  margin: 0 2px;
}
.post-item-wrap.style3:after {
  content: none;
}
.post-item-wrap .bottom-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
}
.post-item-wrap .bottom-info .like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post-item-wrap .bottom-info .like .text {
  color: #7D7D80;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
}
.post-item-wrap .bottom-info .like .icon {
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 0;
  cursor: pointer;
}
.post-item-wrap .bottom-info .like .icon:after {
  content: "";
  width: 14px;
  height: 14px;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/heart.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.post-item-wrap .bottom-info .like .icon.add:after {
  width: 14px;
  height: 14px;
  background: url(../img/heart-red.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.post-item-wrap .bottom-info .comment {
  color: #7D7D80;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  border-bottom: 1px solid #7D7D80;
  cursor: pointer;
}
.post-item-wrap .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
.post-item-wrap .top .img-wrap {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  min-width: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
  overflow: hidden;
}
.post-item-wrap .top .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-item-wrap .top .texts b {
  font-size: 16px;
  font-weight: 600;
  color: #E6E7EA;
  display: block;
  margin-bottom: 4px;
}
.post-item-wrap .top .texts b span {
  margin-left: 5px;
  font-size: 16px;
  color: #5C5C5E;
  font-weight: normal;
}
.post-item-wrap .top .texts p {
  font-size: 14px;
  color: #A0A0A2;
}
.post-item-wrap .top .texts p span {
  font-size: 14px;
  color: #5C5C5E;
  font-weight: normal;
}

.hide2 {
  display: none !important;
}

.drop-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
@media (max-width: 1024px) {
  .drop-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 12px;
  }
}
.drop-menu .line {
  width: 20px;
  height: 2px;
  background-color: #f5f5f7;
  display: block;
  margin: 2px auto;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.drop-menu.is-active .line:nth-child(3) {
  opacity: 0;
}

.drop-menu.is-active .line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.drop-menu.is-active .line:nth-child(2) {
  -webkit-transform: translateY(1px) rotate(-45deg);
  -ms-transform: translateY(1px) rotate(-45deg);
  -o-transform: translateY(1px) rotate(-45deg);
  transform: translateY(1px) rotate(-45deg);
}

.header {
  padding: 10px;
  margin-bottom: 4px;
  position: relative;
  z-index: 3;
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(20, 20, 20, 0.04), 0.25px 0.25px 0.5px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 56px;
}
.header .logo {
  margin-right: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .header .logo {
    margin-right: 15px;
    width: 100px;
  }
  .header .logo img {
    width: 110%;
  }
}
@media (max-width: 1024px) {
  .header .menu-wrap {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 100;
    width: 200px;
    max-width: 200px;
    height: calc(100vh - 60px);
    padding: 10px 14px 20px 4px;
    border-right: 1px solid var(--Grey-10, #141414);
    background: #211f29;
    box-shadow: -1px 0px 2px 0px rgba(0, 0, 0, 0.04), -0.5px 0px 1px 0px rgba(20, 20, 20, 0.04), -0.25px 0px 0.5px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
    transform: translateX(-100%);
    opacity: 0;
    transition: 0.3s;
  }
  .header .menu-wrap.open {
    transform: translateX(0);
    opacity: 1;
  }
}
.header .menu-wrap .main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .menu-wrap .main-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header .menu-wrap .main-menu li {
  margin-right: 10px;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1300px) {
  .header .menu-wrap .main-menu li {
    margin-right: 5px;
  }
}
.header .menu-wrap .main-menu li:after {
  content: "";
  padding-bottom: 12px;
  bottom: -12px;
  left: 0;
  width: 100%;
  position: absolute;
}
.header .menu-wrap .main-menu li a {
  font-size: 12px;
  color: #7d7d80;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px;
}
.header .menu-wrap .main-menu li a svg {
  fill: #7d7d80;
  margin-right: 4px;
  transition: 0.3s;
}
@media (min-width: 1025px) {
  .header .menu-wrap .main-menu li a:hover {
    color: #776ae6;
  }
  .header .menu-wrap .main-menu li a:hover svg {
    fill: #776ae6;
  }
}
.header .menu-wrap .main-menu li.active a {
  color: #776ae6;
}
.header .menu-wrap .main-menu li.active a svg {
  fill: #776ae6;
}
.header .menu-wrap .main-menu li .more {
  font-size: 12px;
  color: #7d7d80;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .menu-wrap .main-menu li .more {
    padding: 8px;
  }
}
.header .menu-wrap .main-menu li .more svg {
  fill: #7d7d80;
  margin-right: 5px;
  transition: 0.3s;
}
@media (min-width: 1025px) {
  .header .menu-wrap .main-menu li .more:hover {
    color: #776ae6;
  }
  .header .menu-wrap .main-menu li .more:hover svg {
    fill: #776ae6;
  }
}
.header .menu-wrap .main-menu li .drop-menu-wrap {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 10;
  border-radius: 4px;
  transform: scale(0);
  transition: 0.3s;
  border: 1px solid var(--Grey-10, #141414);
  background: #211f29;
  box-shadow: 2px 4px 8px 0px rgba(20, 20, 20, 0.06), 1px 2px 4px 0px rgba(20, 20, 20, 0.06), 1px 1px 2px 0px rgba(20, 20, 20, 0.06), 0.5px 0px 1px 0px rgba(20, 20, 20, 0.06), 0.25px 0px 0.5px 0px rgba(20, 20, 20, 0.06), 0px 0px 0px 0px rgba(20, 20, 20, 0.05), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  padding: 4px;
  min-width: 190px;
}
@media (max-width: 1024px) {
  .header .menu-wrap .main-menu li .drop-menu-wrap {
    position: static;
    transform: scale(1);
    min-width: 160px;
    display: none;
  }
  .header .menu-wrap .main-menu li .drop-menu-wrap.show {
    display: block;
  }
}
.header .menu-wrap .main-menu li .drop-menu-wrap a {
  padding: 6px 10px;
}
.header .menu-wrap .main-menu li .drop-menu-wrap a:hover {
  color: #f5f5f7;
  background: #27252f;
}
.header .menu-wrap .main-menu li:hover .drop-menu-wrap {
  transform: scale(1);
}
@media (max-width: 1024px) {
  .header .menu-wrap .main-menu li:last-child {
    flex-direction: column;
    display: flex;
  }
}
.header .header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
.header .header-info .login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #c2c2c6;
  margin-right: 20px;
}
.header .header-info .login img {
  margin-left: 10px;
}
.header .header-info .select-wrap {
  margin-right: 12px;
}
@media (max-width: 767px) {
  .header .header-info .select-wrap {
    margin-right: 8px;
  }
}
.header .header-info .purple-btn {
  min-width: 150px;
  text-align: center;
}
@media (max-width: 767px) {
  .header .header-info .purple-btn {
    min-width: auto;
    font-size: 11px;
  }
}
.header .header-info .setting-btn {
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 8px;
}
.header .header-info .setting-btn img {
  margin: auto;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
}
.main .main-info {
  display: flex;
  height: calc(100vh - 60px);
}
.main .main-info .left-info {
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main .main-info .left-info .bottom {
  border-radius: 4px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(20, 20, 20, 0.04), 0.25px 0.25px 0.5px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  margin-top: 4px;
  padding: 12px 10px;
  margin-top: auto;
  padding-bottom: 79px;
  min-height: 300px;
}
@media (max-width: 1300px) {
  .main .main-info .left-info .bottom {
    min-height: auto;
    padding-bottom: 30px;
  }
}
@media (max-height: 1075px) {
  .main .main-info .left-info .bottom {
    min-height: auto;
    padding-bottom: 30px;
  }
}
.main .main-info .left-info .bottom .tab-content {
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .main .main-info .left-info .bottom .tab-content {
    min-height: 220px;
  }
}
.main .main-info .left-info .bottom .tab-content .text {
  font-size: 12px;
  padding: 0 10px;
  font-weight: 500;
  color: #f5f5f7;
}
.main .main-info .left-info .bottom .tab-content .list-wrap {
  margin-bottom: 10px;
  padding: 0 10px;
}
.main .main-info .left-info .bottom .tab-content .list-wrap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .main .main-info .left-info .bottom .tab-content .list-wrap .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.main .main-info .left-info .bottom .tab-content .list-wrap .list span {
  font-size: 12px;
  font-weight: 500;
  color: #7d7d80;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .main .main-info .left-info .bottom .tab-content .list-wrap .list span {
    margin-bottom: 8px;
  }
}
.main .main-info .left-info .bottom .tab-content .list-wrap .list span img {
  margin-left: 5px;
}
.main .main-info .left-info .bottom .tab-content .list-wrap .list span img.rotate {
  transform: rotate(180deg);
}
.main .main-info .left-info .bottom .tab-content .list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 30px;
}
@media (max-width: 1700px) {
  .main .main-info .left-info .bottom .tab-content .list-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 1300px) {
  .main .main-info .left-info .bottom .tab-content .list-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
  }
}
@media (max-width: 1024px) {
  .main .main-info .left-info .bottom .tab-content .list-wrapper {
    padding: 0 10px;
  }
}
.main .main-info .left-info .bottom .tab-content .list-wrapper .text-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1300px) {
  .main .main-info .left-info .bottom .tab-content .list-wrapper .text-info {
    width: 100%;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.main .main-info .left-info .bottom .tab-content .list-wrapper .text-info span,
.main .main-info .left-info .bottom .tab-content .list-wrapper .text-info a {
  font-size: 12px;
  font-weight: 500;
}
.main .main-info .left-info .bottom .tab-content .list-wrapper .text-info .grey {
  color: #7d7d80;
  margin-bottom: 5px;
}
.main .main-info .left-info .bottom .tab-content .list-wrapper .text-info .red {
  color: #de4d4d;
}
.main .main-info .left-info .bottom .tab-content .list-wrapper .text-info .white {
  color: #f5f5f7;
}
.main .main-info .left-info .bottom .tab-content .list-wrapper .text-info .purple {
  color: #776ae6;
  margin-bottom: 5px;
}
.main .main-info .left-info .bottom .tab-content .list-wrapper .text-info .green {
  color: #16b364;
}
.main .main-info .left-info .bottom .tab-content .list-wrapper .text-info a {
  margin-bottom: 5px;
  color: #7d7d80;
  text-decoration: underline;
}
.main .main-info .left-info .bottom .tabs-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main .main-info .left-info .bottom .tabs-buttons button {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .main .main-info .left-info .bottom .tabs-buttons button {
    padding: 0px 2px;
    margin-right: 12px;
    white-space: nowrap;
  }
}
@media (max-width: 500px) {
  .main .main-info .left-info .bottom .tabs-buttons button {
    font-size: 2.7vw;
  }
}
.main .main-info .left-info .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1;
  height: calc(100vh - 200px);
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .main .main-info .left-info .wrap {
    height: auto;
    overflow-y: inherit;
  }
}
.main .main-info .left-info .wrap::-webkit-scrollbar {
  width: 0;
}
.main .main-info .left-info .wrap .left {
  flex-grow: 1;
}
.main .main-info .left-info .wrap .left .top-info {
  border-radius: 4px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(20, 20, 20, 0.04), 0.25px 0.25px 0.5px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  margin-bottom: 4px;
  padding: 10px;
  min-height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .main .main-info .left-info .wrap .left .top-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
  }
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap {
  margin-right: 40px;
}
@media (max-width: 1300px) {
  .main .main-info .left-info .wrap .left .top-info .drop-wrap {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .main .main-info .left-info .wrap .left .top-info .drop-wrap {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #f5f5f7;
}
@media (max-width: 1300px) {
  .main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-btn {
    font-size: 18px;
  }
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-btn img {
  margin-left: 10px;
  transition: 0.3s;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-btn img.rotate {
  transform: rotate(180deg);
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide {
  position: absolute;
  top: 105%;
  left: -2px;
  z-index: 1000;
  padding: 12px;
  min-width: 267px;
  width: 267px;
  border-radius: 8px;
  border: 1px solid var(--Grey-10, #141414);
  background: #211f29;
  overflow: hidden;
  box-shadow: 4px 8px 16px -4px rgba(20, 20, 20, 0.08), 0px 0px 16px 32px rgba(0, 0, 0, 0.02), 2px 4px 8px 0px rgba(20, 20, 20, 0.08), 1px 2px 4px 0px rgba(20, 20, 20, 0.06), 1px 1px 2px 0px rgba(20, 20, 20, 0.06), 0.5px 0px 1px 0px rgba(20, 20, 20, 0.06), 0.25px 0px 0.5px 0px rgba(20, 20, 20, 0.06), 0px 0px 0px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  transform: scale(0);
  transition: 0.3s;
}
@media (max-width: 767px) {
  .main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide {
    top: 40px;
  }
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide.show {
  transform: scale(1);
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .search {
  width: 100%;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #776ae6;
  margin-bottom: 10px;
  padding: 0 10px;
  padding-bottom: 2px;
  color: #e6e7ea;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .search::-webkit-input-placeholder {
  color: #7d7d80;
  font-size: 12px;
  font-weight: 500;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .search::-moz-placeholder {
  color: #7d7d80;
  font-size: 12px;
  font-weight: 500;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .search:-ms-input-placeholder {
  color: #7d7d80;
  font-size: 12px;
  font-weight: 500;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .search:-moz-placeholder {
  color: #7d7d80;
  font-size: 12px;
  font-weight: 500;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tabs-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  min-width: 500px;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tabs-buttons button {
  padding: 0;
  border: none;
  margin-right: 16px;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tabs-buttons button.active {
  color: #776ae6;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tabs-buttons button.active:after {
  content: none;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 12px;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .top span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 74px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #5c5c5e;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .top span img {
  margin-left: 10px;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items {
  max-height: 360px;
  overflow-y: auto;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items::-webkit-scrollbar {
  width: 0;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 2px;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 4px;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item:hover {
  background: rgba(255, 255, 255, 0.01);
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item .star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 6px;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item span {
  font-size: 11px;
  line-height: 100%;
  font-weight: 500;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item span.white {
  color: #f5f5f7;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item span.grey {
  color: #a0a0a2;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item span.green {
  color: #16b364;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item span.red {
  color: #de4d4d;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item .text-wrap {
  width: 72px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item .text-wrap .white {
  margin-bottom: 5px;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item .info .icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  margin-right: 6px;
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item .info .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item .info .texts2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main .main-info .left-info .wrap .left .top-info .drop-wrap .drop-hide .tab-content .items .item .info .texts2 .white {
  margin-bottom: 5px;
}
.main .main-info .left-info .wrap .left .top-info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .main .main-info .left-info .wrap .left .top-info .list {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
}
.main .main-info .left-info .wrap .left .top-info .list .right-info-wrap,
.main .main-info .left-info .wrap .left .top-info .list .left-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .main .main-info .left-info .wrap .left .top-info .list .right-info-wrap,
.main .main-info .left-info .wrap .left .top-info .list .left-info-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .main .main-info .left-info .wrap .left .top-info .list .left-info-wrap {
    width: 40%;
  }
  .main .main-info .left-info .wrap .left .top-info .list .left-info-wrap .texts:nth-child(1) {
    width: 60px;
  }
  .main .main-info .left-info .wrap .left .top-info .list .left-info-wrap .texts:nth-child(2) {
    width: 60px;
  }
  .main .main-info .left-info .wrap .left .top-info .list .left-info-wrap .texts:nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main .main-info .left-info .wrap .left .top-info .list .right-info-wrap {
    width: 60%;
  }
  .main .main-info .left-info .wrap .left .top-info .list .right-info-wrap .texts:nth-child(1) {
    width: 100%;
  }
  .main .main-info .left-info .wrap .left .top-info .list .right-info-wrap .texts:nth-child(2) {
    width: 85px;
  }
  .main .main-info .left-info .wrap .left .top-info .list .right-info-wrap .texts:nth-child(3) {
    width: 90px;
  }
}
.main .main-info .left-info .wrap .left .top-info .list .texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 35px;
}
@media (max-width: 1300px) {
  .main .main-info .left-info .wrap .left .top-info .list .texts {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .main .main-info .left-info .wrap .left .top-info .list .texts {
    margin-bottom: 10px;
    margin-right: 10px;
  }
}
.main .main-info .left-info .wrap .left .top-info .list .texts a {
  font-size: 12px;
  line-height: 125%;
  font-weight: 500;
  color: #7d7d80;
  text-decoration: underline;
  margin-bottom: 4px;
}
.main .main-info .left-info .wrap .left .top-info .list .texts span {
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
  display: inline-block;
}
.main .main-info .left-info .wrap .left .top-info .list .texts span.grey {
  color: #7d7d80;
  margin-bottom: 4px;
}
.main .main-info .left-info .wrap .left .top-info .list .texts span.white {
  color: #e6e7ea;
}
.main .main-info .left-info .wrap .left .top-info .list .texts span.red {
  color: #de4d4d;
}
.main .main-info .left-info .wrap .left .bottom-info {
  min-height: calc(100% - 72px);
  border-radius: 4px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(20, 20, 20, 0.04), 0.25px 0.25px 0.5px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  margin-bottom: 4px;
  padding: 10px;
}
@media (max-width: 1024px) {
  .main .main-info .left-info .wrap .left .bottom-info {
    min-height: calc(100vh - 457px);
  }
}
.main .main-info .left-info .wrap .left .bottom-info .graphic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 620px;
  width: 870px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 1475px) {
  .main .main-info .left-info .wrap .left .bottom-info .graphic {
    height: 374px;
    width: 100%;
  }
}
.main .main-info .left-info .wrap .left .bottom-info .graphic img {
  width: 100%;
}
@media (max-width: 1024px) {
  .main .main-info .left-info .wrap .left .bottom-info .tab-content.active {
    min-height: 374px;
  }
}
.main .main-info .left-info .wrap .left .bottom-info .tabs-buttons {
  display: none;
}
@media (max-width: 1475px) {
  .main .main-info .left-info .wrap .left .bottom-info .tabs-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .main .main-info .left-info .wrap .left .bottom-info .tabs-buttons button {
    font-size: 2.7vw;
  }
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists span {
  font-size: 12px;
  font-weight: 500;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
  margin-bottom: 8px;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .top span {
  color: #7d7d80;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 10px;
  position: relative;
  z-index: 0;
  margin-bottom: 4px;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item:after {
  content: "";
  width: auto;
  height: 100%;
  border-radius: 4px;
  background: rgba(222, 77, 77, 0.12);
  position: absolute;
  top: 0;
  right: 0;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item.item1:after {
  width: 14%;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item.item2:after {
  width: 9%;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item span {
  color: #e6e7ea;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item span.red {
  color: #de4d4d;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item span.green {
  color: #37b358;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item.item-green:after {
  content: "";
  width: 12%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(55, 179, 88, 0.12);
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item.item-green.item1:after {
  width: 50%;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item.item-green.item2:after {
  width: 40%;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item.item-green.item3:after {
  width: 30%;
}
.main .main-info .left-info .wrap .left .bottom-info .order-lists .list-item.item-green.item4:after {
  width: 20%;
}
.main .main-info .left-info .wrap .right {
  width: 288px;
  margin-left: 4px;
  min-width: 288px;
  border-radius: 4px;
  min-height: 710px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(20, 20, 20, 0.04), 0.25px 0.25px 0.5px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  margin-bottom: 4px;
  padding: 10px;
}
@media (max-width: 1475px) {
  .main .main-info .left-info .wrap .right {
    display: none;
  }
}
.main .main-info .left-info .wrap .right .tabs {
  margin-bottom: 0;
}
.main .main-info .right-info {
  width: 288px;
  min-width: 288px;
  margin-left: 4px;
  border-radius: 4px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(20, 20, 20, 0.04), 0.25px 0.25px 0.5px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 0px rgba(20, 20, 20, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
  padding: 12px 10px;
  height: calc(100vh - 60px);
  overflow-y: auto;
}
.main .main-info .right-info::-webkit-scrollbar {
  width: 0;
}
@media (max-width: 1024px) {
  .main .main-info .right-info {
    display: none;
  }
}
.main .main-info .right-info .btns {
  margin: 16px 0;
}
.main .main-info .right-info .btns .btn {
  border-radius: 4px;
  border: 1px solid #594dc5;
  background: rgba(252, 252, 252, 0.02);
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #e6e7ea;
  margin: 8px 0;
}
.main .main-info .right-info .btns .btn:hover {
  border-color: #e6e7ea;
}
.main .main-info .right-info .top-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.main .main-info .right-info .top-buttons button {
  height: 32px;
  color: #c2c2c6;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  background: rgba(245, 245, 247, 0.04);
  box-shadow: 0px -1px 1px 2px rgba(0, 0, 0, 0.08) inset, 0px 1px 2px 2px rgba(255, 255, 255, 0.03) inset, 0px 0px 0px 1px rgba(0, 0, 0, 0.99), 0px 0px 0px 0px rgba(255, 255, 255, 0.04) inset;
}

.dashboard {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 4px;
}
.dashboard-menu {
  width: 248px;
  height: calc(100vh - 68px);
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0 rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0 rgba(0, 0, 0, 0.04), 0 0 0 0 rgba(0, 0, 0, 0.04);
  position: relative;
}
@media (max-width: 1040px) {
  .dashboard-menu {
    width: 198px;
  }
}
@media (max-width: 992px) {
  .dashboard-menu {
    display: none;
  }
}
.dashboard-menu-active {
  width: calc(100% - 20px);
  height: 36px;
  background: rgba(89, 77, 197, 0.12);
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 4px;
  transition: 0.3s;
  transition-delay: 0.2s;
}
.dashboard-menu-item {
  height: 36px;
  gap: 8px;
  border-radius: 4px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.04) inset;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #7D7D80;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  gap: 8px;
  transition: 0.3s;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.dashboard-menu-item:hover {
  background: rgba(89, 77, 197, 0.2);
}
.dashboard-menu-item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 9px;
  border-radius: 4px;
  background: rgba(245, 245, 247, 0.06);
  transition: 0.3s;
}
.dashboard-menu-item svg path {
  transition: 0.3s;
}
.dashboard-menu-item.active {
  color: #E6E7EA;
  cursor: default;
}
.dashboard-menu-item.active:hover {
  background: transparent;
}
.dashboard-menu-item.active .dashboard-menu-item-icon {
  background: #776AE6;
}
.dashboard-menu-item.active .dashboard-menu-item-icon path {
  stroke: #fff;
}
.dashboard-content {
  width: calc(100% - 198px);
  height: calc(100vh - 68px);
  padding: 32px 10px 10px 32px;
  border-radius: 4px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  box-shadow: 0.5px 0.5px 1px 0 rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0 rgba(0, 0, 0, 0.04), 0 0 0 0 rgba(0, 0, 0, 0.04);
  position: relative;
}
@media (max-width: 992px) {
  .dashboard-content {
    width: 100%;
    padding-left: 16px;
  }
}
.dashboard-content-mobile-title {
  display: none;
  position: relative;
  margin-bottom: 59px;
}
.dashboard-content-mobile-title span {
  color: #F5F5F7;
  font-size: 24px;
  font-weight: 700;
  line-height: 125%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
  opacity: 0;
  transform: scale(0.5);
}
.dashboard-content-mobile-title span.active {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 992px) {
  .dashboard-content-mobile-title {
    display: block;
  }
}
.dashboard-content .tabs-buttons {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  display: none;
  width: 100%;
  max-width: 544px;
  overflow-x: auto;
}
.dashboard-content .tabs-buttons::-webkit-scrollbar {
  height: 0;
}
@media (max-width: 992px) {
  .dashboard-content .tabs-buttons {
    display: grid;
  }
}
.dashboard-content-item {
  position: absolute;
  width: calc(100% - 44px);
  height: calc(100vh - 130px);
  padding-right: 10px;
  left: 32px;
  top: 32px;
  transition: 0.3s;
  overflow-y: auto;
  overflow-X: hidden;
  display: none;
}
@media (max-width: 992px) {
  .dashboard-content-item {
    top: 141px;
    left: 16px;
    height: calc(100vh - 222px);
    width: calc(100% - 27px);
  }
}
.dashboard-content-item.active {
  display: block;
}
.dashboard-title {
  color: #F5F5F7;
  font-size: 24px;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .dashboard-title {
    display: none;
  }
}
.dashboard-equity-type {
  color: #7D7D80;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 125%;
}
.dashboard-equity-price {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
  color: #F5F5F7;
  font-size: 18px;
  font-weight: 600;
  line-height: 125%;
}
.dashboard-diagram-type {
  margin-top: 24px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.dashboard-diagram-type button {
  width: 35px;
  height: 24px;
  align-self: stretch;
  color: #7D7D80;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
}
.dashboard-diagram-type button:first-child {
  width: 29px;
}
.dashboard-diagram-type button.active {
  color: #776AE6;
}
.dashboard-diagram canvas {
  width: 100%;
  height: 240px;
}
.dashboard-result {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .dashboard-result {
    height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 567px) {
  .dashboard-result {
    gap: 8px;
  }
}
.dashboard-result-item {
  width: 100%;
  height: 56px;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0 rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0 rgba(0, 0, 0, 0.04), 0 0 0 0 rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}
@media (max-width: 992px) {
  .dashboard-result-item {
    width: calc(50% - 8px);
  }
  .dashboard-result-item:last-child {
    width: 100%;
  }
}
@media (max-width: 567px) {
  .dashboard-result-item {
    width: calc(50% - 4px);
  }
}
.dashboard-result-item-title {
  color: #7D7D80;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 8px;
}
.dashboard-result-item-value {
  color: #F5F5F7;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
}
.dashboard-section-title {
  color: #F5F5F7;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 11px;
}
@media (max-width: 576px) {
  .dashboard-section-title {
    margin-top: 27px;
  }
}
.dashboard-table {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
.dashboard-table-head {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: start;
  align-items: center;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid rgba(64, 64, 65, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.12) 0%, rgba(119, 106, 230, 0.12) 100%), rgba(245, 245, 247, 0.02);
  padding: 0 10px;
}
@media (max-width: 576px) {
  .dashboard-table-head {
    display: none;
  }
}
.dashboard-table-head-item {
  color: #5C5C5E;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  width: 100%;
  max-width: var(--w);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}
.dashboard-table-head-item.start-column {
  display: flex;
  justify-content: start;
  align-items: start;
}
.dashboard-table-head-item.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard-table-head-item.end {
  display: flex;
  justify-content: end;
  align-items: center;
}
.dashboard-table-head-item.column {
  flex-direction: column;
}
.dashboard-table-head-item.text-14, .dashboard-table-head-item .text-14 {
  font-size: 14px;
}
.dashboard-table-head-item.text-12, .dashboard-table-head-item .text-12 {
  font-size: 12px;
}
.dashboard-table-content {
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: start;
  align-items: center;
  border-bottom: 1px solid rgba(64, 64, 65, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  padding: 0 10px;
  overflow-x: auto;
}
@media (max-width: 576px) {
  .dashboard-table-content {
    display: none;
  }
}
.dashboard-table-content::-webkit-scrollbar {
  height: 0;
}
.dashboard-table-content:hover {
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.1) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
}
.dashboard-table-content:last-child {
  border-radius: 0 0 8px 8px;
  border-bottom: 0;
}
.dashboard-table-content-item {
  width: 100%;
  max-width: var(--w);
  color: #F5F5F7;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}
.dashboard-table-content-item.bottom {
  display: none;
}
@media (max-width: 576px) {
  .dashboard-table-content-item.bottom {
    display: flex;
    justify-content: start;
  }
}
@media (max-width: 576px) {
  .dashboard-table-content-item {
    max-width: 50% !important;
  }
  .dashboard-table-content-item:nth-of-type(2), .dashboard-table-content-item:nth-of-type(3) {
    display: none;
  }
  .dashboard-table-content-item:nth-of-type(4) {
    flex-direction: row !important;
  }
  .dashboard-table-content-item:last-child {
    max-width: 100%;
    justify-content: space-between;
  }
}
.dashboard-table-content-item.start-column {
  display: flex;
  justify-content: start;
  align-items: start;
}
.dashboard-table-content-item.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard-table-content-item.end {
  display: flex;
  justify-content: end;
  align-items: center;
}
.dashboard-table-content-item.column {
  flex-direction: column;
}
.dashboard-table-content-item.text-14, .dashboard-table-content-item .text-14 {
  font-size: 14px;
}
.dashboard-table-content-item.text-12, .dashboard-table-content-item .text-12 {
  font-size: 12px;
}
.dashboard-table-content-item .purple-btn {
  padding: 9px 67px;
}
.dashboard-table-content-item .transparent {
  padding: 9px 30px;
}
.dashboard-mobile-table {
  display: none;
  border-radius: 8px;
  border: 1px solid rgba(64, 64, 65, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  padding: 0 10px;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .dashboard-mobile-table {
    display: block;
  }
}
.dashboard-mobile-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}
.dashboard-mobile-table-head-info {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}
.dashboard-mobile-table-head-info-title {
  color: #F5F5F7;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
}
.dashboard-mobile-table-head-info-price {
  color: #16B364;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
}
.dashboard-mobile-table-head-count {
  color: #F5F5F7;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 8px;
}
.dashboard-mobile-table-head-count span {
  color: #37B358;
}
.dashboard-mobile-table-buttons {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.dashboard-mobile-table-buttons .purple-btn {
  width: 50%;
}
.dashboard-info {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 24px;
}
.dashboard-info.top {
  display: none;
  margin-bottom: 24px;
  gap: 8px;
}
.dashboard-info.top .dashboard-info-body {
  height: auto;
}
.dashboard-info.top .dashboard-info-im {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .dashboard-info.top {
    display: flex;
    flex-direction: column;
  }
  .dashboard-info.top .dashboard-info-body {
    max-width: 100%;
  }
}
.dashboard-info.bottom {
  display: flex;
}
@media (max-width: 992px) {
  .dashboard-info.bottom {
    display: none;
  }
}
.dashboard-info-body {
  width: 100%;
  max-width: 437px;
  height: 240px;
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid rgba(41, 33, 133, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0px rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
}
.dashboard-info-body-title {
  color: #F5F5F7;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 16px;
}
.dashboard-info-im {
  margin-bottom: 44px;
}
.dashboard-info-im-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8.5px 0;
  border-bottom: 1px solid #292929;
}
.dashboard-info-im-item b {
  color: #7D7D80;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
}
.dashboard-info-im-item span {
  color: #776AE6;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
}
.dashboard-info-margin-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8.5px;
}
.dashboard-info-margin-item b {
  color: #7D7D80;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  cursor: pointer;
}
.dashboard-info-margin-item b:hover {
  text-decoration-line: none;
}
.dashboard-info-margin-item span {
  color: #F5F5F7;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
}
.dashboard-info-greeks-tabs {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 16px;
}
.dashboard-info-greeks-tabs button {
  color: #7D7D80;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
  width: 39px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard-info-greeks-tabs button.active {
  border: 1px solid #776AE6;
  color: #776AE6;
}
.dashboard-info-greeks-body {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 8px;
  display: none;
}
.dashboard-info-greeks-body.active {
  display: flex;
}
.dashboard-info-greeks-body-item {
  width: 39%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}
.dashboard-info-greeks-body-item-icon {
  width: 36px;
  height: 36px;
  padding: 10px;
  border-radius: 4px;
  background: rgba(245, 245, 247, 0.02);
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard-info-greeks-body-item-title {
  color: #7D7D80;
  font-size: 11px;
  font-weight: 400;
  line-height: 125%;
}
.dashboard-info-greeks-body-item span {
  color: #F5F5F7;
  font-size: 11px;
  font-weight: 400;
  line-height: 125%;
}

.funding-history {
  width: 100%;
  padding-top: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.funding-history-title {
  color: #F5F5F7;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  margin-top: 16px;
  margin-bottom: 32px;
}

.markets {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 56px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1172px) {
  .markets {
    padding: 56px 16px 0;
  }
}
.markets .mobile-table {
  display: none;
  width: 100%;
  padding: 16px;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid rgba(64, 64, 65, 0.12);
  background: linear-gradient(0deg, rgba(119, 106, 230, 0.08) 0%, rgba(119, 106, 230, 0.08) 100%), rgba(245, 245, 247, 0.02);
  box-shadow: 0.5px 0.5px 1px 0 rgba(0, 0, 0, 0.04), 0.25px 0.25px 0.5px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 0px rgba(0, 0, 0, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.02) inset;
}
@media (max-width: 768px) {
  .markets .mobile-table {
    display: block;
  }
}
.markets .mobile-table-item {
  padding-bottom: 16px;
  border-bottom: 1px solid #292929;
  padding-top: 10px;
}
.markets .mobile-table-item-head {
  width: 100%;
  height: 48px;
  margin-bottom: 8px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.markets .mobile-table-item-head-star {
  width: 32px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.markets .mobile-table-item-head .logo {
  margin-right: 8px;
  width: 28px;
  height: 28px;
}
.markets .mobile-table-item-head .title {
  color: #F5F5F7;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
}
.markets .mobile-table-item-head .subtitle {
  color: #A0A0A2;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
}
.markets .mobile-table-item .sentiment {
  width: 100%;
  margin-top: 20px;
}
.markets .mobile-table-item .trade {
  width: 100%;
  margin-top: 20px;
}
.markets .mobile-table-item-row {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
}
.markets .mobile-table-item-row-item {
  width: 33.3333333333%;
  margin-bottom: 6px;
}
@media (max-width: 350px) {
  .markets .mobile-table-item-row-item {
    width: 50%;
  }
}
.markets .mobile-table-item-row-item-title {
  color: #5C5C5E;
  font-size: 12px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 4px;
}
.markets .mobile-table-item-row-item-value {
  color: #F5F5F7;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 4px;
}
.markets .sentiment {
  width: 100px;
}
.markets .sentiment-line {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.markets .sentiment-line:before {
  content: "";
  width: var(--s);
  height: 100%;
  background-color: #DE4D4D;
}
.markets .sentiment-line:after {
  content: "";
  width: var(--l);
  height: 100%;
  background-color: #16B364;
}
.markets .sentiment-text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.markets .sentiment-text span {
  color: #F5F5F7;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
}
.markets .sentiment-text span b {
  display: inline-block;
  margin-left: 2px;
}
.markets .table-body {
  width: 100%;
  overflow-x: auto;
}
.markets .table-body::-webkit-scrollbar {
  height: 0;
}
.markets .dashboard-table {
  max-width: 100%;
}
@media (max-width: 992px) {
  .markets .dashboard-table {
    min-width: 1000px;
  }
}
@media (max-width: 768px) {
  .markets .dashboard-table {
    display: none;
  }
}
.markets .dashboard-table .icon-star {
  margin-left: 20px;
  cursor: pointer;
}
.markets .dashboard-table .logo {
  margin-right: 8px;
}
.markets .dashboard-table .title {
  color: #F5F5F7;
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 4px;
}
.markets .dashboard-table .subtitle {
  color: #A0A0A2;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
}
.markets .dashboard-table .longs h4, .markets .dashboard-table .longs h5 {
  color: #F5F5F7;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 4px;
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.markets .dashboard-table .longs h4 span {
  color: #16B364;
  display: inline-block;
  margin-left: 2px;
}
.markets .dashboard-table .longs h5 span {
  color: #DE4D4D;
  display: inline-block;
  margin-left: 2px;
}
.markets .dashboard-table .trade {
  width: 57px;
  padding-left: 0;
  padding-right: 0;
}
.markets .dashboard-table .change {
  color: #DE4D4D;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

/*# sourceMappingURL=style.css.map */
