/* 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;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  border-radius: 5px;
  background-color: hsl(var(--dark-l-100) / 0.9);
  backdrop-filter: blur(30px);
  box-shadow: 0px 0px 8px hsl(var(--static-black) / 0.2);
  color: hsl(var(--white));
}

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

.image-upload .thumb .profilePicPreview {
  width: 100%;
  height: 310px;
  display: block;
  border: 3px solid #f1f1f1;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-size: cover !important;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.image-upload .thumb .profilePicPreview.logoPicPrev {
  background-size: contain !important;
  background-position: center;
}

.image-upload .thumb .profilePicUpload {
  font-size: 0;
  opacity: 0;
}

.image-upload .thumb .avatar-edit label {
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  cursor: pointer;
  padding: 2px 25px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.3s;
}

.image-upload .thumb .avatar-edit label:hover {
  transform: translateY(-3px);
}

.image-upload .thumb .profilePicPreview .remove-image {
  position: absolute;
  top: -9px;
  right: -9px;
  text-align: center;
  width: 55px;
  height: 55px;
  font-size: 24px;
  border-radius: 50%;
  background-color: #df1c1c;
  color: #fff;
  display: none;
}

.image-upload .thumb .profilePicPreview.has-image .remove-image {
  display: block;
}

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

/* ban page start */
.banned {
  text-align: center;
  border: 1px solid hsl(var(--white) / 0.12);
  padding: 40px 30px;
  border-radius: 5px;
}
.banned__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.banned__title {
  margin-top: 10px;
  margin-bottom: 10px;
}
.banned__icon.dark {
  display: none;
}
[data-theme="light"] .banned__icon.light {
  display: none;
}
[data-theme="light"] .banned__icon.dark {
  display: block;
}
@media (max-width: 575px) {
  .banned {
    padding: 30px 20px;
  }
  .banned__icon {
    margin-bottom: 10px;
  }
}
@media (max-width: 375px) {
  .banned {
    padding: 25px 15px;
  }
}
/* ban page end */

/* ajax preloader */

#overlay {
  position: absolute;
  top: 400px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 99999999;
  width: 40px;
  height: 40px;
}

.overlay-2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: hsl(var(--black)/.8);
  z-index: 9999999;
  display: none;
}

[data-theme="light"] .overlay-2{
  background: hsl(var(--static-black)/.25);
}


.cv-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid hsl(var(--static-white)); 
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}

/* end ajax preloader  */

.product-details-content .custom--container {
  padding-left: 0px;
  padding-right: 0;
}

.explore-nft #overlay {
  top: 300px;
}

.user-wallet {
  cursor: pointer;
}

.nft-card__dots .btn--icon {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
}



.confirmation-loader {
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  display: none;
  width: 100px;
  height: auto;
  z-index: 999999999;
}

.confirmation-loader-2 {
  z-index: 99999999;
}
.nft__item__details li{
  padding: 5px 0px;
}

