/* === COPY BUTTON ANIMATION === */
.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 .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;
  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 NOTICE CARD === */
.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}
.cookies-card.hide {bottom: -500px !important;}
.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-btn {
  color: #363636; text-decoration: none; padding: 10px 35px; margin: 3px 5px;
  display: inline-block; border-radius: 999px;
}
@media (max-width: 767px) {
  .cookies-card {width: 100%; left: 0; bottom: 0; font-size: 14px; padding: 15px;}
}

/* === PAYMENT GATEWAY CARDS === */
.gateway-card {padding: 15px;}
.payment-card-title {
  padding: 13px 25px; text-align: center; background-color: var(--main);
  border-radius: 5px; color: #fff; margin-bottom: 0;
}
.payment-system-list {
  --thumb-width: 100px; --thumb-height: 40px;
  background-color: transparent; border-radius: 5px;
}
.payment-item {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px; transition: all 0.3s; cursor: pointer;
}
.payment-item:not(:last-child) {border-bottom: 1px solid #ccc;}
.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--main);
}
.payment-item__info {display: flex; align-items: center; max-width: calc(100% - 100px);}
.payment-item__thumb img {
  max-width: 100px; max-height: 40px; object-fit: cover;
}

/* === SELECT2 DROPDOWN STYLES === */
.select2-container--default .select2-selection--single {
  background-color: rgba(255,255,255,0.03) !important;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.03) !important;
  height: 50px !important; padding: .75rem .75rem !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  position: absolute; right: 10px; top: 0; content: "\f107";
  font-family: "Line Awesome Free"; font-weight: 900; transition: .3s;
}
.select2-container--default.select2-container--open 
.select2-selection--single .select2-selection__arrow:after {
  transform: rotate(-180deg);
}
.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #de9805 !important; color: #fff !important;
}

/* === LOGO SIZE FIX === */
.logo img, .navbar-brand img {
  max-height: none !important;
  height: 80px !important;
  width: auto !important;
}