/* 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 .3s;
  -o-transition: all .3s;
  transition: all .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 .5s;
  background: hsl(var(--white));
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

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



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

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: hsl(var(--base));
  background-color: #fff;
  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: 1px solid #fff;
  border-top-color: var(--border-color);
  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(--base));
  display: inline-block;
  border-radius: 100%;

}

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

.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;
  margin-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__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: #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;
}

/* ==========================================================================
   Welcome (home hero) section
   Sits above the banner slider on the home page. The logo artwork has a solid
   white background, so the section is kept white to avoid a visible edge
   around the image; the tint is carried by a soft accent behind the copy only.
   ========================================================================== */
.welcome-section {
  position: relative;
  overflow: hidden;
  padding-block: 60px;
  background: #fff;
}

.welcome-section::before {
  position: absolute;
  content: "";
  width: 420px;
  height: 420px;
  top: -160px;
  left: -180px;
  border-radius: 50%;
  background: hsl(var(--base) / 0.06);
  pointer-events: none;
}

.welcome-section__content {
  position: relative;
  z-index: 1;
}

.welcome-section__title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: hsl(var(--heading-color));
  margin-bottom: 24px;
}

/* Short accent rule, echoing the base colour used across the template. */
.welcome-section__title::after {
  display: block;
  content: "";
  width: 64px;
  height: 3px;
  margin-top: 18px;
  border-radius: 3px;
  background: hsl(var(--base));
}

.welcome-section__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: hsl(var(--text-color-two));
  margin-bottom: 16px;
}

.welcome-section__desc:last-child {
  margin-bottom: 0;
}

/* The first line is the standfirst, so it carries slightly more weight. */
.welcome-section__desc:first-of-type {
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--text-color));
}

/* Call-to-action buttons under the message. Count and styling are set by
   the admin as Welcome Section items, so the row simply wraps. */
.welcome-section__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.welcome-section__cta .btn {
  padding: 12px 28px;
}

.welcome-section__thumb {
  text-align: center;
}

/* The artwork is portrait (2:3), so it is capped by height rather than width;
   bounding it by width alone makes it tower over the copy beside it. */
.welcome-section__thumb img {
  width: auto;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .welcome-section {
    padding-block: 40px;
  }

  .welcome-section__title {
    font-size: 2rem;
  }

  /* The artwork carries its own white field, so once it stacks above the copy
     it sits on top of the accent circle and clips it into a visible edge.
     The accent only ever sat behind the text, so it is dropped here. */
  .welcome-section::before {
    display: none;
  }

  /* Lead with the mark on small screens rather than a wall of copy. */
  .welcome-section__thumb img {
    max-height: 220px;
  }
}

@media (max-width: 575px) {
  .welcome-section__title {
    font-size: 1.75rem;
  }

  .welcome-section__desc:first-of-type {
    font-size: 1.0625rem;
  }
}

/* --- Welcome hero entrance animation ---------------------------------------
   The starting state is scoped to .is-animating, which is only applied by
   script, so without JavaScript (or with prefers-reduced-motion set) the
   section renders in its final state and nothing is ever hidden.
   Per-element stagger comes from --welcome-delay, set in the markup. */
.welcome-section.is-animating [data-welcome-anim] {
  opacity: 0;
  transform: translateY(24px);
}

.welcome-section.is-animating .welcome-section__thumb[data-welcome-anim] {
  transform: translateY(20px) scale(0.96);
}

.welcome-section.is-animating .welcome-section__title[data-welcome-anim]::after {
  transform: scaleX(0);
  transform-origin: left center;
}

.welcome-section.is-animating.is-revealed [data-welcome-anim] {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--welcome-delay, 0ms);
}

/* The rule under the heading draws itself in just after the heading lands. */
.welcome-section.is-animating.is-revealed .welcome-section__title[data-welcome-anim]::after {
  transform: scaleX(1);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--welcome-delay, 0ms) + 260ms);
}

/* The accent circle settles in behind the copy rather than popping. */
.welcome-section.is-animating::before {
  opacity: 0;
  transform: scale(0.85);
}

.welcome-section.is-animating.is-revealed::before {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.9s ease-out,
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Belt and braces: some browsers expose the preference only through media
   queries, so the animation is neutralised here as well. */
@media (prefers-reduced-motion: reduce) {
  .welcome-section.is-animating [data-welcome-anim],
  .welcome-section.is-animating .welcome-section__thumb[data-welcome-anim],
  .welcome-section.is-animating::before {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .welcome-section.is-animating .welcome-section__title[data-welcome-anim]::after {
    transform: scaleX(1);
    transition: none;
  }
}
