/* Base Colors */
.base-color {
  color: hsl(var(--main)) !important;
}

/* Copy to Clipboard */
.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 50%;
  right: 12%;
  width: 100px;
  content: "COPIED";
  font-size: 12px;
  padding: 5px;
  color: #fff;
  background-color: hsl(var(--accent, 25 100% 50%));
  border-radius: 3px;
  opacity: 0;
  animation: showcopied 1.5s ease;
  transform: translateY(-50%);
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%) translateY(-50%);
  }
  50% {
    opacity: 0.7;
    transform: translateX(40%) translateY(-50%);
  }
  70% {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
  100% {
    opacity: 0;
  }
}

.input-group-text.copytext {
  border: 0;
}

/* Cookies Consent */
.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #d1d1d1;
  border-radius: 5px;
}
.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 Popup */
.hover-input-popup { position: relative; }
.input-popup {
  display: none;
  position: absolute;
  bottom: 80%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.input-popup::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border: 10px solid transparent;
  border-top-color: #1a1a1a;
}
.input-popup p { padding-left: 20px; position: relative; }
.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;
}

/* Responsive Filter */
.show-filter { display: none; }
@media (max-width: 767px) {
  .responsive-filter-card { display: none; }
  .show-filter { display: block; }
}

/* Select2 Dropdown */
.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 rgba(115, 103, 240, 0.2);
}
.select2-search--dropdown { padding: 10px !important; }
.select2-container--default .select2-search__field {
  border: 1px solid hsl(var(--main) / 0.5) !important;
  padding: 10px 20px;
  border-radius: 4px !important;
}

/* Payment System List */
.payment-system-list {
  background-color: #fff !important;
  border-radius: 5px;
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.1);
}
.payment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid hsl(var(--main)) !important;
}
.payment-item__check {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 1px solid hsl(var(--main)) !important;
}
.payment-item__btn {
  background: hsl(var(--main)) !important;
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
  border: 0;
}
.payment-item__btn-text { color: #fff; }