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

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #11171d;
  border-radius: 10px;
  border: 1px solid;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

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

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 114%;
  left: 50%;
  width: 280px;
  background-color: #444444;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -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 #444444 transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

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

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

.show-filter {
  display: none;
}

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

  .show-filter {
    display: block;
  }
}

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

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: hsl(var(--white) / 0.1);
  --hover-border-color: rgb(var(--main));
  background:
    linear-gradient(180deg, hsl(var(--section-bg)), hsl(var(--section-bg) / 0.92));
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 hsl(var(--white) / 0.03);
  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: rgb(var(--main));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
  background: transparent;
  color: hsl(var(--white) / 0.82);
  min-height: 70px;
}

.payment-item:first-child {
  border-top-color: transparent;
  border-radius: 18px 18px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid hsl(var(--base));
  border-top-color: hsl(var(--base) / 0.18);
  border-bottom-color: hsl(var(--base) / 0.18);
  background:
    linear-gradient(90deg, hsl(var(--base) / 0.16), transparent 55%),
    hsl(var(--white) / 0.03);
  box-shadow: inset 0 1px 0 hsl(var(--white) / 0.04);
}

.payment-item:hover {
  background: hsl(var(--white) / 0.03);
  border-top-color: hsl(var(--white) / 0.08);
}

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

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

.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(--base));
  display: inline-block;
  border-radius: 100%;
  box-shadow: 0 0 0 4px hsl(var(--base) / 0.08);
}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
  color: hsl(var(--white) / 0.78);
  font-weight: 500;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__name {
  color: hsl(var(--white));
}

.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;
  filter: saturate(1.05) brightness(0.96);
}

.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
}

.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__title .text,
.deposit-info__input .text,
.info-text .text {
  color: hsl(var(--white) / 0.72);
}

.deposit-info__input .text span,
.deposit-info__title .text span {
  color: hsl(var(--white) / 0.58);
}

.deposit-info__input .text,
.deposit-info__input .text span,
.gateway-limit,
.processing-fee,
.discount,
.after_discount,
.final-amount,
.in-currency,
.gateway-conversion .text,
.conversion-currency .text {
  font-weight: 600;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 12px;
  padding-block: 6px;
  background: hsl(var(--white) / 0.04);
  color: hsl(var(--white));
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: hsl(var(--white) / 0.04);

  .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;
  background: transparent;
  color: hsl(var(--white));
}

.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);
  padding-top: 14px !important;
}

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

.total-amount .deposit-info__title .text,
.total-amount .deposit-info__input .text,
.final-amount {
  color: hsl(var(--white));
  font-weight: 700;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: hsl(var(--white) / 0.02);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-weight: 500;
  color: hsl(var(--white) / 0.82);
}

.payment-item:hover + .payment-item__btn {
  border-top-color: hsl(var(--white) / 0.08);
}

.coupon_wrap .input-group {
  background: hsl(var(--white) / 0.04);
  border: 1px solid hsl(var(--white) / 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.coupon_wrap .form--control {
  background: transparent;
  border: 0;
  color: hsl(var(--white));
}

.coupon_wrap .input-group-text {
  color: hsl(var(--white));
  border-radius: 6px !important;
}

.coupon_wrap .input-group-text:hover {
  background: hsl(var(--base) / 0.18);
}

.gateway-card hr {
  border-color: hsl(var(--white) / 0.08);
}

.gateway-card .text-danger {
  color: hsl(var(--danger)) !important;
}

@media (max-width: 575px) {
  .payment-item {
    padding: 12px 14px;
  }

  .payment-item__thumb {
    width: 86px;
    height: 34px;
  }

  .payment-item__thumb img {
    max-width: 86px;
    max-height: 34px;
  }


  .deposit-info__input {
    text-align: left;
  }
}

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

.faq-section .row {
  position: relative;
  z-index: 1;
}

.faq-section__content {
  position: relative;
  min-height: 100%;
  margin-bottom: 0;
}

.faq-section__content .section-heading__subtitle {
  margin-bottom: 14px;
}

.faq-section__content .section-heading__title {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.faq-section__content .section-heading__desc {
  max-width: 420px;
  margin-bottom: 0;
}

.faq-section__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.faq-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 16px;
  color: hsl(var(--white));
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.faq-action--primary {
  border: 1px solid hsl(var(--base) / 0.45);
  background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
  box-shadow: 0 14px 30px hsl(var(--base) / 0.18);
}

.faq-action--soft {
  border: 1px solid hsl(var(--white) / 0.14);
  background: hsl(var(--white) / 0.07);
}

.faq-action:hover,
.faq-action:focus {
  color: hsl(var(--white));
  transform: translateY(-2px);
}

.faq-action__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: hsl(var(--white) / 0.12);
  color: hsl(var(--white));
  font-size: 16px;
}


.faq-section .faq-accordion {
  height: 100%;
}

@media (max-width: 991px) {
  .faq-section__content {
    padding: 32px;
  }

  .faq-section__visual {
    min-height: 230px;
    margin-inline: -32px;
  }
}

@media (max-width: 575px) {
  .faq-section__content {
    border-radius: 18px;
    padding: 24px;
  }

  .faq-section__content .section-heading__title {
    font-size: 32px;
  }

  .faq-section__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-action {
    width: 100%;
  }

  .faq-section__visual {
    min-height: 170px;
    margin: 18px -24px -24px;
  }
}

.footer-area {
  position: relative;
  padding-top: 64px;
}

.footer-area .container {
  position: relative;
  z-index: 1;
}

.footer-top-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
  margin: 0;
  pointer-events: none;
  z-index: 0;
}

.footer-top-shape::before {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
  background-size: 100% 58px;
  opacity: 0.95;
  z-index: 0;
}

.footer-widget-row {
  --bs-gutter-y: 52px;
  align-items: flex-start;
  row-gap: 52px;
}

.footer-widget-row > [class*="col-"] {
  display: flex;
}

.footer-widget-row .footer-item {
  width: 100%;
}

.footer-widget-row .footer-copyright {
  width: 100%;
}

.footer-item__desc {
  max-width: 340px;
}

.footer-item__title {
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-item__title:not(.footer-top-shape)::before {
  display: none;
}

.footer-menu__link {
  justify-content: space-between;
  width: 100%;
  max-width: 210px;
}

.footer-item:not(.footer-item--social) .footer-menu__link {
  justify-content: flex-start;
}

.footer-subscribe {
  max-width: 410px;
}

.footer-subscribe__text {
  margin-bottom: 14px;
  color: hsl(var(--white) / 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.footer-subscribe__form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 58px;
  border: 1px solid hsl(var(--white) / 0.12);
  border-radius: 999px;
  background: hsl(var(--white) / 0.055);
  padding: 6px;
  box-shadow: inset 0 1px 0 hsl(var(--white) / 0.06), 0 16px 34px hsl(var(--base-two) / 0.12);
}

.footer-subscribe__form:focus-within {
  border-color: hsl(var(--base) / 0.75);
  box-shadow:
    inset 0 1px 0 hsl(var(--white) / 0.08),
    0 0 0 3px hsl(var(--base) / 0.16),
    0 16px 34px hsl(var(--base-two) / 0.16);
}

.footer-subscribe__input {
  height: 100%;
  min-width: 0;
  flex: 1 1 auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: hsl(var(--white));
  padding: 10px 64px 10px 18px;
  font-size: 15px;
  font-weight: 500;
}

.footer-subscribe__input:focus {
  background: transparent;
  color: hsl(var(--white));
  box-shadow: none;
}

.footer-subscribe__input::placeholder {
  color: hsl(var(--white) / 0.5);
}

.footer-subscribe__btn {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
  color: hsl(var(--white));
  font-size: 22px;
  line-height: 1;
  transition: all 0.25s ease;
}

.footer-subscribe__btn:hover,
.footer-subscribe__btn:focus {
  background: linear-gradient(135deg, hsl(var(--base-two)), hsl(var(--base)));
  color: hsl(var(--white));
  transform: translateX(1px);
}

.footer-subscribe__btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.footer-subscribe__note {
  margin-top: 12px;
  margin-bottom: 0;
  color: hsl(var(--white) / 0.46);
  font-size: 12px;
  line-height: 1.5;
}

.footer-subscribe__note a {
  color: hsl(var(--white) / 0.7);
}

.footer-subscribe__note a:hover {
  color: hsl(var(--base));
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid hsl(var(--white) / 0.1);
  padding: 28px 0;
}

.footer-item__copyright {
  margin: 0;
  padding-top: 0;
  border-top: 0;
  text-align: left;
  color: hsl(var(--white) / 0.82);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid hsl(var(--white) / 0.12);
  border-radius: 50%;
  background: hsl(var(--white) / 0.04);
  color: hsl(var(--white) / 0.82);
  font-size: 14px;
  transition: all 0.25s ease;
}

.footer-social__link:hover,
.footer-social__link:focus {
  border-color: hsl(var(--base) / 0.45);
  background: hsl(var(--base) / 0.16);
  color: hsl(var(--white));
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .footer-menu__link {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-area {
    padding-top: 44px;
  }

  .footer-subscribe__form {
    height: 54px;
  }

  .footer-subscribe__btn {
    width: 42px;
    height: 42px;
  }

  .footer-copyright {
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
    text-align: center;
  }

  .footer-item__copyright {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
