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


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

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(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: rgb(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 rgb(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 rgb(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;
}

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

.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: #fff;
  border-radius: 5px;
  border: 1px solid rgb(var(--base));
}

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

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

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  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;
  z-index: 999;
}

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


.maintenance-page {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
}

.language-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px;
  border-radius: 4px;
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.language_flag {
  flex-shrink: 0;
  display: flex;
}

.language_flag img {
  height: 20px;
  width: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.language-wrapper.show .collapse-icon {
  transform: rotate(180deg)
}

.collapse-icon {
  font-size: 14px;
  display: flex;
  transition: all linear 0.2s;
}

.language_text_select {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  display: flex;
  line-height: 1;
}

.language-content {
  display: flex;
  align-items: center;
  gap: 6px;
}


.language_text {
  color: black;
  margin-bottom: 0px;
}

.language-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  cursor: pointer;
  border: 0 !important;
}

.language .dropdown-menu {
  position: absolute;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  display: unset;
  background: #fff;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  min-width: 150px;
  border-radius: 8px;
  border: 1px solid rgb(0 0 0 / 10%);
  padding-block: 6px !important;
  right: 0 !important;
  left: auto !important;
}

.language .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

.form-control:disabled {
  background-color: #e9ecef8a;
  opacity: 1;
}

.removeFile i {
  color: hsl(var(--white));
}

/* new css -----------------------------------------------------------------------------------------------------------------------------*/

/* header .container {
  max-width: 98% !important;
} */
.text-justify {
  text-align: justify;
}


.header-top .container {
  max-width: 98% !important;
}

.nav-menu .nav-item {
  position: relative;
  margin: 0 24px;
}


:root {
  --primary-color: #EA1871;
  --primary-lite-color: #fde8f1;
}

.bg-p-lite {
  background-color: var(--primary-lite-color) !important;
  color: black !important;
}

.header-top {
  padding-top: 10px;
  padding-bottom: 10px;
  background: var(--primary-color);
  color: white;
}

.header-top__para {
  color: white !important;
}

.hero__content {
  width: 95% !important;
}

.hero__content-title {
  font-family: "Public Sans", sans-serif;
  font-weight: bold;
  color: var(--primary-color);
}

.btn-d-m {
  border-radius: 0%;
}

.social-sidebar {
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 999;
  /* background-color: rgba(255, 255, 255, 0.85); */
  /* padding: 0.5rem; */
  /* border-radius: 8px; */
  /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

.social-sidebar__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  color: var(--primary-color);
  background-color: #ffffff;
  /* border-radius: 50%; */
  font-size: 24px;
  transition: 0.3s;
}

.social-sidebar__link:hover {
  /* background-color: var(--primary-color); */
  /* color: #fff; */
  /* border-radius: 50%; */
}

.about-img__is {

  border-radius: 0;
}

.about-listz {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-top: solid var(--primary-color) 5px;
}

.section__para {
  font-size: 18px;
}

.left-heading {
  color: var(--primary-color);
}

.icn-main {
  font-size: 30px;
}

.plan__head-content::before {
  display: none;
}

.btn {
  all: unset;
  /* removes all inherited and default styles */
  display: inline-block;
  /* restore block-level button shape */
  cursor: pointer;
  /* show pointer on hover */
}

.btn::before,
.btn::after {
  content: none !important;
  /* remove pseudo elements */
}

.btn:hover,
.btn:focus,
.btn:active {
  all: unset;
  /* make sure hover/focus doesn't apply Bootstrap effects */
  display: inline-block;
  cursor: pointer;
}


.btn {
  background-color: var(--primary-color) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 2px solid transparent !important;
  transform: none !important;
  transition: all 0.3s ease-in-out !important;
  text-transform: none !important;
  background-image: none !important;
  padding: 10px 20px !important;
  font-weight: 500 !important;
  color: #fff !important;
  position: relative;
  z-index: 1;
  box-sizing: border-box !important;
}

.btn:hover,
.btn:focus,
.btn:active {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
  text-decoration: none !important;
  border-color: var(--primary-color) !important;
}

.btn {
  color: #fff !important;
  cursor: pointer !important;
  font-size: 15px !important;
  border: 2px solid var(--primary-color) !important;
  background: linear-gradient(135deg, var(--primary-color) 50%, transparent 50%) !important;
  background-size: 200% 200% !important;
  background-position: 0% 0% !important;
  transition: background-position 300ms ease-in-out, color 300ms ease-in-out !important;
  border-radius: 0 !important;
  /* padding: 10px 20px !important; */
  font-weight: 500 !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
  text-align: center;
}

.btn:hover,
.btn:focus,
.btn:active {
  background-position: 100% 100% !important;
  color: var(--primary-color) !important;
  background-color: transparent !important;
  text-align: center;
}

.rev-btn {
  color: var(--primary-color) !important;
  cursor: pointer !important;
  font-size: 15px !important;
  border: 2px solid var(--primary-color) !important;
  background: linear-gradient(135deg, transparent 50%, var(--primary-color) 50%) !important;
  background-size: 200% 200% !important;
  background-position: 0% 0% !important;
  transition: background-position 300ms ease-in-out, color 300ms ease-in-out !important;
  border-radius: 0 !important;
  /* padding: 10px 20px !important; */
  font-weight: 500 !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
}

.rev-btn:hover,
.rev-btn:focus,
.rev-btn:active {
  background-position: 100% 100% !important;
  color: #fff !important;
}


.p-color {
  color: var(--primary-color) !important;
  background: none;
}

.bg-p {
  background-color: var(--primary-color) !important;
  background: var(--primary-color) !important;
}

.plan__head {
  background: white;
  border-top: solid 5px var(--primary-color);
}

.plan__head-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 70%;
  margin: 0px !important;
  padding: 0px !important;
}

.plan__head-content h4 {
  font-weight: 400;
}


.work-process-section::after {
  background-color: transparent;
}

.work-process__icon {
  width: 90px;
  height: 90px;
  border: 2px dashed #e91e63;
  /* Pink circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.work-process__icon svg {
  font-size: 28px;
  /* Or adjust based on actual icon size */
  color: #e91e63;
}

.work-process__notification {
  background: #e91e63;
  color: #fff;
  width: 25px;
  height: 25px;
  font-size: 12px;
  text-align: center;
  line-height: 25px;
}

.story-gr {
  /* height: 450px; */
  height: 424px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertical center */
  text-align: center;

}

.story-gr img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  /* or 4 / 3, or keep square with 1 / 1 */
}

.reviews-span {

  font-weight: bold;
  color: #f70087;
  font-size: 20px;
}

.tstm-img {
  object-fit: cover;
}

.dot-svg {
  width: 40px !important;
}

.ac-title {
  color: #4F4F4F !important;
}

.left-section {
  /* background-color: #fde8f1; */
  background-color: #ffffff;

}
.border-tlight{
  border: 1px solid #fde8f1;
}

.right-section {
  background-color: rgb(255, 255, 255);

}


.custom--accordion .accordion-button {
  background: rgb(255, 255, 255);
  border: none;
  color: #343434;
  /* padding: 33.6px; */
  text-align: center;
  justify-content: center;
  border-radius: 0 !important;
  z-index: 0;
  height: 84.4px !important;

}

.custom--accordion .accordion-button:not(.collapsed) {
  background: #ea1871;
  border: none;
  color: white;
  /* padding: 33.6px; */
  text-align: center;
  justify-content: center;
  z-index: 0;
}

.accordion-body {
  background: #ea1871;
  color: white;
  border-radius: 0 !important;
  /* padding: 33.6px; */
}

.custom--accordion .accordion-item {
  margin: 0 !important;
  border-bottom: 1px solid;
  color: hsl(334.57deg 83.33% 50.59%);
}

.left-section {
  position: relative;
}

.image-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  text-align: left;
  max-width: 90%;
  padding: 100px;
}

.overlay-title {
  margin: 0;
  font-size: 40px;
  font-weight: bold;
}

.overlay-description {
  margin: 5px 0 0;
  font-size: 14px;
  color: #BDBDBD;
}


.custom--accordion .accordion-button::after {
  content: "\f067";
  background: #ffffffff;
  color: black;
  padding: 14px;
  border-radius: 14px;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
  background: #ffffffff;
  color: #ea1871;
  padding: 14px;
  border-radius: 14px;
}



.counter-section {
  background-color: white;
}


.counter-card__icon {
  border: 1px solid #FDE8F1;
  border-radius: 50%;
  width: 50%;
  width: 50% !important;
  height: 50% !important;
  background: #FDE8F1;
  color: #ea1871 !important;
}

.counter-card__content {
  text-align: center;
}

.odometer {
  font-weight: 700;
}

.fw-md {
  color: #4F4F4F;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.footer {
  background: #fde8f1;
}


.list--base li::before {
  content: none !important;
  display: none !important;
}

.li-footer li {
  margin-bottom: 10px;

}



.footer-logo {
  margin-bottom: 30px;
}

.footer-icons {
  font-size: 24px;
}

.footer__content {
  border-bottom: 1px solid #EA18711A;
}


.member-details span {
  color: black;
}

.txt-white {
  color: white !important;
}

.txt-white:hover {
  color: white !important;
}

.user__rating li i {
  color: var(--primary-color);
}

.feedback-card {
  border: 1px solid #ea1871;
}

.feedback-card .user img {
  border: 2px solid #ea1871;
  padding: 5px;
  background: white;
}

.feedback-card .user {
  width: 120px;
  height: 120px;
}

.feedback-card__thumb {
  justify-content: center;

}

.modal-footer button {
  margin: 5px !important;
}




.fixed-element {
  position: fixed;
  top: 90%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 999;
  background-color: white;
  padding: 10px 16px;
  /* border: 1px solid #ea1871; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #000000;
}

.fixed-element img {
  height: 30px;
  width: 30px;
  display: inline-block;
}

.fixed-element a {
  text-decoration: none;
  color: #ea1871;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}




@media (min-width: 1400px) {
  .container-cnt {
    max-width: 1440px;
  }

}

@media (min-width: 1200px) {}

@media (max-width: 767px) {

  .image-overlay-text {
    padding: 5px !important;
  }

}

@media (max-width: 991px) {
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
}


@media (max-width: 767px) {
  .dashboard-menu {
    max-height: 35vh;
    overflow-y: auto;
    padding-right: 5px;
  }

  .dashboard-menu::-webkit-scrollbar {
    width: 4px;
  }

  .dashboard-menu::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .story-height-mobile {
    height: auto;
  }
}