/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #000;
  background-color: #ff7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05),
    6px 4px 19px rgb(115 103 240 / 20%);
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: hsl(var(--base) / 0.3) !important;
  padding: 10px 20px;
  border-radius: 4px;
  background: transparent !important;
  color: hsl(var(--white)) !important;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: 0.3s;
  transform: translateY(-50%);
}

.selection {
  width: 100%;
}

.select2 .dropdown-wrapper {
  display: none;
}

.select2-selection.select2-selection--single {
  background: hsl(var(--form-bg)) !important;
  border-color: hsl(var(--white) / 0.09) !important;
  color: hsl(var(--white));
  padding: 10px 24px !important;
  line-height: 1.2;
  height: 53px !important;
}

.select2-container:has(.select2-selection--single) {
  width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 53px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  content: "\f106";
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: hsl(var(--white) / 0.7) !important;
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown {
  background: hsl(var(--black)) !important;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: 0.375rem !important;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--white) / 0.3) !important;
  color: hsl(var(--white)) !important;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  border: 1px solid hsl(var(--white) / 0.1) !important;
}

.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: hsl(var(--base));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #000;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: hsl(var(--base));
  background-color: hsl(var(--section-bg));
  border-radius: 5px;
  height: 100%;
}

.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border-bottom: 1px solid #cac0c01c;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width));
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--white) / 0.6);
  display: inline-block;
  border-radius: 100%;
}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

@media (max-width: 424px) {
  .payment-item__name {
    font-size: 14px;
  }
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}

.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }
}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: hsl(var(--section-bg));
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.adjust-height .payment-system-list.is-scrollable {
  max-height: 461px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-group-text.bg-style {
  padding: 0 10px;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

.btn--success {
  --color: #28c76f;
  background-color: var(--color) !important;
  border: 1px solid var(--color) !important;
  color: var(--btn-color) !important;
}

.btn--success:hover,
.btn--success:active,
.btn--success:focus,
.btn--success:focus-visible {
  --color: #1f9d57;
}

/* Feature Section */
.feature-section {
  background: hsl(var(--black));
}

.feature-card {
  background: hsl(var(--section-bg));
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--white) / 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: hsl(var(--base) / 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--base) / 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 28px;
  color: hsl(var(--base));
}

.feature-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: hsl(var(--white));
}

.feature-card__desc {
  color: hsl(var(--white) / 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Plan Section */
.plan-section {
  background: hsl(var(--section-bg));
}

.plan-card {
  background: hsl(var(--black));
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--white) / 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: hsl(var(--base) / 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-card__header {
  padding: 30px 25px;
  text-align: center;
  background: linear-gradient(135deg, hsl(var(--base) / 0.1) 0%, hsl(var(--base) / 0.05) 100%);
  border-bottom: 1px solid hsl(var(--white) / 0.05);
}

.plan-card__name {
  font-size: 18px;
  font-weight: 600;
  color: hsl(var(--white));
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-card__rate {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 10px;
}

.plan-card__percent {
  font-size: 48px;
  font-weight: 700;
  color: hsl(var(--base));
  line-height: 1;
}

.plan-card__percent-sign {
  font-size: 24px;
  font-weight: 600;
  color: hsl(var(--base));
  margin-left: 2px;
}

.plan-card__duration {
  font-size: 14px;
  color: hsl(var(--white) / 0.6);
  margin-bottom: 0;
}

.plan-card__body {
  padding: 25px;
  flex-grow: 1;
}

.plan-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-card__list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid hsl(var(--white) / 0.05);
  color: hsl(var(--white) / 0.8);
  font-size: 14px;
}

.plan-card__list li:last-child {
  border-bottom: none;
}

.plan-card__list li .icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--base) / 0.15);
  border-radius: 50%;
  margin-right: 12px;
  font-size: 10px;
  color: hsl(var(--base));
}

.plan-card__footer {
  padding: 0 25px 25px;
}

.plan-card__footer .btn {
  padding: 12px 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Section */
.about-section .about-thumb img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-text {
  color: hsl(var(--white) / 0.8);
  line-height: 1.8;
  font-size: 16px;
}

/* Referral Section Enhanced */
.referral-section {
  background: hsl(var(--black));
}

.referral-thumb img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.referral-levels {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.referral-level-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: hsl(var(--section-bg));
  padding: 20px 30px;
  border-radius: 12px;
  border: 1px solid hsl(var(--white) / 0.05);
  transition: all 0.3s ease;
}

.referral-level-item:hover {
  transform: translateY(-3px);
  border-color: hsl(var(--base) / 0.3);
}

.referral-level-item__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--base) / 0.15);
  border-radius: 50%;
  color: hsl(var(--base));
  font-size: 20px;
}

.referral-level-item__label {
  color: hsl(var(--white) / 0.6);
  font-size: 14px;
}

.referral-level-item__rate {
  color: hsl(var(--base));
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

/* ========== How to trade section – flex cards, readable text ========== */
.how-work-section {
  background: hsl(var(--section-bg));
}

.how-work-section .section-heading {
  margin-bottom: 3rem;
}

.how-work-section .section-heading__title {
  color: hsl(var(--white));
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.how-work-section .section-heading__desc {
  color: hsl(var(--white) / 0.75);
  font-size: 1.0625rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Override main.css: single flex row of cards, no grid */
.how-work-section .how-work {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.how-work-section .how-work::before {
  display: none !important;
}

/* Each step = one card, column layout, normal text flow */
.how-work-section .how-work__item {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 300px;
  gap: 0 !important;
  grid-template-columns: none !important;
  margin-bottom: 0 !important;
  background: hsl(var(--black) / 0.45);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid hsl(var(--white) / 0.07);
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.how-work-section .how-work__item::before {
  display: none !important;
}

.how-work-section .how-work__item:hover {
  transform: translateY(-6px);
  border-color: hsl(var(--base) / 0.35);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

/* Step number badge – top right */
.how-work-section .how-work__number {
  position: absolute !important;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--base));
  border-radius: 50%;
  color: hsl(var(--black));
  font-weight: 700;
  font-size: 0.875rem;
}

/* Icon/image – centered, below number */
.how-work-section .how-work__thumb {
  order: 0 !important;
  -webkit-box-ordinal-group: 0 !important;
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  max-width: none !important;
  margin: 0 auto 1.25rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--base) / 0.12);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.how-work-section .how-work__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content block – full width, horizontal text, no rotation */
.how-work-section .how-work__content {
  order: 0 !important;
  -webkit-box-ordinal-group: 0 !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  max-width: none !important;
  width: 100%;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0;
  writing-mode: horizontal-tb;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-work-section .how-work__title {
  color: hsl(var(--white));
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  width: 100%;
}

.how-work-section .how-work__desc {
  color: hsl(var(--white) / 0.75);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .how-work-section .how-work {
    flex-direction: column;
    align-items: center;
  }
  .how-work-section .how-work__item {
    min-width: 100%;
    max-width: 100%;
    padding: 1.5rem 1.25rem;
  }
  .how-work-section .section-heading__title {
    font-size: 1.5rem;
  }
}

/* Counter Section */
.counter-section {
  background: hsl(var(--black));
}

.counter-card {
  background: hsl(var(--section-bg));
  border-radius: 15px;
  padding: 40px 30px;
  border: 1px solid hsl(var(--white) / 0.05);
  transition: all 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-5px);
  border-color: hsl(var(--base) / 0.3);
}

.counter-card__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--base) / 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: hsl(var(--base));
}

.counter-card__number {
  color: hsl(var(--white));
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.counter-card__label {
  color: hsl(var(--white) / 0.6);
  font-size: 16px;
  margin: 0;
}

/* Payment Methods Section */
.payment-methods-section {
  background: hsl(var(--section-bg));
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.payment-badge {
  background: hsl(var(--black));
  color: hsl(var(--white) / 0.8);
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid hsl(var(--white) / 0.1);
  transition: all 0.3s ease;
}

.payment-badge:hover {
  border-color: hsl(var(--base) / 0.5);
  color: hsl(var(--base));
}

/* Banner Section Enhanced */
.banner-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, hsl(var(--black) / 0.9) 0%, hsl(var(--black) / 0.7) 100%);
}

.banner-section .container {
  position: relative;
  z-index: 1;
}

.banner-content__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-content__desc {
  font-size: 18px;
  color: hsl(var(--white) / 0.8);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.banner-content__button {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .banner-content__title {
    font-size: 32px;
  }
  
  .banner-content__desc {
    font-size: 16px;
  }
  
  .plan-card__percent {
    font-size: 36px;
  }
  
  .referral-levels {
    flex-direction: column;
  }
  
  .how-work {
    flex-direction: column;
    align-items: center;
  }
}

/* Investment plan accent color - change this to change investment theme */
:root {
  --invest-color: 160 84% 39%;
  --invest-color-hover: 160 84% 32%;
}

.dashboard-widget.invest-plan-widget .dashboard-widget__thumb,
.dashboard-widget.invest-plan-widget:hover .dashboard-widget__content .dashboard-widget__number {
  color: hsl(var(--invest-color)) !important;
}

.dashboard-widget.invest-plan-widget {
  border-left: 3px solid hsl(var(--invest-color));
}

.dashboard-widget.invest-plan-widget:hover {
  border-left-color: hsl(var(--invest-color-hover));
}

.invest-plan-card__header {
  background: hsl(var(--invest-color) / 0.15) !important;
}

.invest-plan-card__percent {
  color: hsl(var(--invest-color)) !important;
}

.invest-plan-card:hover {
  border-color: hsl(var(--invest-color) / 0.4);
}

.user .invest-form .btn--base {
  background: hsl(var(--invest-color)) !important;
  border-color: hsl(var(--invest-color)) !important;
}

.user .invest-form .btn--base:hover {
  background: hsl(var(--invest-color-hover)) !important;
  border-color: hsl(var(--invest-color-hover)) !important;
}