@import url("../css/common.css");

/* theme light & dark mode button */
.theme-switch {
  position: fixed;
  width: 52px;
  height: 26px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(268deg);
  z-index: 9991;
}

.theme-switch .switch {
  width: 52px;
  height: 26px;
  background: var(--black-color-2p);
  border: 1px solid var(--common-border);
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
  display: block;
}

.switch .circle {
  width: 20px;
  height: 20px;
  background: var(--white-color-p);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.3s ease;
  z-index: 5;
}

.switch .icon {
  position: absolute;
  font-size: 18px;
  color: var(--pending-textcolor);
  transition: 0.3s ease;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.switch .sun {
  right: 6px;
  opacity: 1;
}

.switch .moon {
  left: 6px;
  opacity: 0;
}

.theme-switch input:checked+.switch {
  background: var(--black-color);
}

.theme-switch input:checked+.switch .circle {
  transform: translateX(26px);
}

.theme-switch input:checked+.switch .sun {
  opacity: 0;
}

.theme-switch input:checked+.switch .moon {
  opacity: 1;
}

/* navbar start  */
.navbar-pro-matrimony .brand-logo {
  width: 128px;
}

.navbar-ui li .nav-item {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-ui li .nav-item:focus-visible {
  outline: none;
}

.navbar-ui li .nav-item:hover,
.navbar-ui li.active .nav-item {
  color: var(--primary-color);
}

.btn-nav-register {
  color: var(--white-color);
  font-weight: 500;
}

.nav-language-selector {
  background: var(--black-color-2);
  border: 1px solid var(--common-border);
  color: var(--white-color);
  border-radius: 10px;
  height: 43px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s;
}

.nav-language-selector.dropdown-toggle::after {
  display: none;
}

.nav-language-selector:hover {
  border-color: var(--white-color-70);
}

.nav-language-selector:focus-visible {
  outline: none;
}

.nav-language-wrap .nav-language-menu {
  min-width: 100%;
  border-radius: 10px;
  background: var(--black-color-2);
  border: 1px solid var(--common-border);
  padding: 6px;
  margin-top: 8px !important;
}

.nav-language-wrap .nav-language-menu .nav-language-option {
  color: var(--white-color);
  border-radius: 8px;
  padding: 7px 10px;
  background: transparent;
}

.nav-language-wrap .nav-language-menu .nav-language-option:hover,
.nav-language-wrap .nav-language-menu .nav-language-option.active {
  color: var(--white-color-p);
  background: var(--primary-color);
}

.nav-language-selector .lang-icon {
  font-size: 17px;
  color: var(--white-color-70);
}

.nav-language-selector .down-icon {
  font-size: 13px;
  color: var(--white-color-70);
}

/* keep google translate UI hidden, use custom navbar selector only */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.goog-logo-link,
.goog-te-gadget>span {
  display: none !important;
}

#google_translate_element {
  position: fixed !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

html,
body {
  top: 0 !important;
}

.common-dropdown-menu {
  position: absolute;
  border-radius: 12px;
  left: -38px !important;
  top: 34px !important;
  z-index: 991;
  transition: all 0.4s;
  background: var(--black-color-1);
  border: 1px solid var(--black-color-3);
  min-width: 190px;
  transform: unset !important;
}

.common-dropdown-menu li .dropdown-item {
  font-size: 13px;
  color: var(--white-color-70);
  background: transparent;
  margin-bottom: 3px;
  padding: 6px 14px;
  transition: all 0.3s;
  font-weight: 400;
}

.common-dropdown-menu li .dropdown-item.active,
.common-dropdown-menu li .dropdown-item:hover {
  color: var(--primary-color);
}

.common-dropdown-menu li .dropdown-item.logout {
  color: var(--error-color);
}

.mobile-logo-category .brand-logo {
  width: 180px;
  transition: all 0.4s;
}

.btn-close-menu {
  background: var(--black-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  transform: rotate(180deg);
  color: var(--white-color);
  border-radius: 22px;
  position: absolute;
  left: -46px;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto;
  font-size: 15px;
}

.side-menu-login {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color-p);
  padding: 8px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
}

.side-menu-login:hover {
  background: transparent;
  color: var(--primary-color);
}

.side-menu-logout {
  background: var(--saleText-color);
  border: 1px solid var(--saleText-color);
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  padding: 8px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
}

.side-menu-logout:hover {
  background: transparent;
  color: var(--saleText-color);
}

.side-menu-register {
  background: transparent;
  border: 1px solid var(--primary-color);
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  padding: 8px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
}

.side-menu-register:hover {
  background: var(--primary-color);
  color: var(--white-color-p);
}

.menu-contact-suport i {
  height: 34px;
  width: 34px;
  background: var(--black-color);
  color: var(--white-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  min-width: 34px;
}

.common-bg-design .nav-login-btn {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.nav-login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--black-color);
  border-radius: 40px;
  padding: 10px 24px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--black-color);
  transition: all 0.3s;
  background: transparent;
}

.nav-login-btn i {
  font-size: 18px;
  transform: rotate(180deg);
}

.common-bg-design .navbar-toggle-menu {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.navbar-toggle-menu {
  height: 42px;
  width: 42px;
  min-width: 42px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid var(--black-color);
  color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.comman-bg-btn {
  background: var(--primary-color);
  color: var(--white-color-p) !important;
  padding: 11px 36px;
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  border: none;
  position: relative;
  overflow: hidden;
  width: fit-content;
  transition: all 0.4s ease;
  font-weight: 500;
}

.comman-bg-btn:focus-visible {
  outline: none;
}

.comman-bg-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  background: #ffffff14;
  transition: width 0.4s ease;
  border-radius: 4px;
  transform: translate(-50%, -50%);
}

.comman-bg-btn:hover::before {
  width: 100%;
}

.comman-bg-btn.bg-green {
  background: var(--green-color);
  border-radius: 40px;
}

.form-border-btn {
  padding: 11px 52px;
  font-weight: 400;
  border-radius: 12px;
  display: inline-block;
  color: var(--white-color);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--white-color);
  transition: all 0.3s;
}

.form-border-btn:hover {
  color: var(--white-color);
  background: var(--black-color-3);
  border-color: var(--black-color-4);
}

.form-bg-btn {
  background: var(--primary-color);
  color: var(--white-color-p);
  padding: 11px 52px;
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  font-weight: 400;
}

.form-bg-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  background: #ffffff14;
  transition: width 0.4s ease;
  border-radius: 4px;
  transform: translate(-50%, -50%);
}

.form-bg-btn:hover::before {
  width: 100%;
}

.afterlogin-sidelog .user-img {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  min-width: 38px;
  object-fit: cover;
  background: linear-gradient(90deg,
      rgba(118, 105, 246, 1) 0%,
      rgba(174, 35, 223, 1) 50%,
      rgba(243, 159, 32, 1) 100%);
  padding: 2px;
}

.afterlogin-sidelog {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 24px;
  color: var(--white-color) !important;
  font-weight: 500;
}

.notification-nav {
  background: var(--black-color-3);
  border: 1px solid var(--black-color-4);
  padding: 4px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 20px;
  color: var(--white-color) !important;
  font-weight: 500;
  height: 40px;
  width: 40px;
  min-width: 40px;
  justify-content: center;
  position: relative;
}

.notification-nav .count-notification {
  position: absolute;
  font-size: 10px;
  top: -8px;
  right: -2px;
  background: var(--primary-color);
  color: var(--white-color-p);
  padding: 2px 6px;
  border-radius: 40px;
  font-weight: 400;
}

.notification-design .notification-menu-dropdown {
  position: absolute;
  border-radius: 12px;
  top: 52px;
  right: -54px;
  z-index: 991;
  transition: all 0.4s;
  background: var(--black-color-1);
  border: 1px solid var(--black-color-3);
  min-width: 420px;
  max-height: 480px;
  overflow: auto;
}

.notification-time::before {
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background: var(--white-color);
  border: 3px solid var(--primary-color);
  display: inline-block;
  position: relative;
  top: 1px;
  margin-right: 5px;
}

.notification-listing li {
  border: 1px solid transparent;
  border-bottom: 1px solid var(--common-border);
  cursor: pointer;
}

.notification-listing li.unread,
.notification-listing li:hover {
  background: var(--black-color-3);
  border-bottom: 1px solid var(--black-color-4);
}

.notification-listing li:last-child {
  border: none;
}

.title-notification-dvs {
  position: sticky;
  top: -8px;
  background: var(--black-color-1);
  z-index: 1;
}

.nav-mobile-profile {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
  background: linear-gradient(90deg,
      rgba(118, 105, 246, 1) 0%,
      rgba(174, 35, 223, 1) 50%,
      rgba(243, 159, 32, 1) 100%);
  padding: 3px;
}

.navbar-mainSide-profile-box {
  background: var(--black-color-3);
  border-radius: 12px;
  padding: 14px;
}

.navSide-profile-img {
  width: 100%;
  height: 268px;
  border-radius: 12px;
  overflow: hidden;
}

.navSide-profile-img .img-profile-nav {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-upgrade-btn {
  background: var(--green-color);
  color: var(--white-color);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: auto;
  border-radius: 40px;
  gap: 2px;
}

/* header section start  */
.home-header-section .main-navbardesign {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 91;
}

.home-header-section .nav-login-btn {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.home-header-section .navbar-toggle-menu {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.header-st-icon {
  height: 45px;
  width: 45px;
  background: var(--primary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white-color-p);
  box-shadow: 2px 8px 20px 0px #d2d2d240;
}

.header-users-img .h-users-img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 100%;
  border: 3px solid var(--white-color);
  margin-left: -15px;
}

.inner-promatri-header {
  border-bottom: 10px solid var(--common-border);
}

.inner-promatri-header::before {
  content: "";
  height: 10px;
  width: 20%;
  background: var(--primary-color);
  position: absolute;
  bottom: -10px;
}

/* Search for your right partner Starts */
.for-search-relative {
  border-radius: 14px;
  background: linear-gradient(86.16deg,
      rgba(255, 255, 255, 0.2) 11.14%,
      rgba(255, 255, 255, 0.035) 113.29%);
  padding: 15px 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0px 1.2px 29.92px 0px #452a7c1a;
  backdrop-filter: blur(70px);
  width: 985px;
  border: 1px solid #ffffff1f;
}

.custom-width-gender {
  width: 25%;
}

.custom-width-age {
  width: 38%;
}

.custom-width-religion {
  width: 22%;
}

.custom-select-wrapper {
  position: relative;
  display: block;
  user-select: none;
}

.custom-select-wrapper select {
  display: none;
  visibility: hidden;
  border: 0px;
}

.custom-select-trigger {
  position: relative;
  display: block;
  font-size: 14px;
  color: var(--white-color);
  line-height: 25px;
  cursor: pointer;
  font-weight: 400;
  background: transparent;
  padding: 10px 0px;
}

.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  top: 49%;
  right: 16px;
  margin-top: 0px;
  border-bottom: 1px solid var(--white-color);
  border-right: 1px solid var(--white-color);
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.4s ease-in-out;
  transform-origin: 50% 0;
}

.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
  position: absolute;
  display: block;
  top: 57px;
  left: 0;
  right: 0;
  min-width: 100%;
  max-height: 153px;
  overflow: auto;
  overflow-x: hidden;
  margin: 0px 0;
  border: 1px solid var(--common-border);
  box-sizing: border-box;
  background: var(--black-color-3w);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  border-radius: 10px;
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  z-index: 100;
}

.custom-options:before {
  position: absolute;
  display: block;
  content: "";
  bottom: 100%;
  right: 25px;
  width: 7px;
  height: 7px;
  margin-bottom: -3px;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  background: #fff;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.option-hover:before {
  background: #f9f9f9;
}

.custom-option {
  position: relative;
  display: block;
  padding: 0 17px;
  border-bottom: 1px solid var(--black-color-4);
  font-size: 14px;
  color: var(--white-color-70);
  line-height: 37px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

.custom-option:first-of-type {
  border-radius: 0px 0px 0 0;
}

.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 0px 0px;
}

.custom-option:hover,
.custom-option.selection {
  background: var(--title-color);
  color: var(--white-color);
}

.searchnow {
  display: flex;
  align-items: center;
  padding: 3px 3px 3px 16px;
  gap: 10px;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  border-radius: 10px;
  font-weight: 400;
  width: 118px;
  color: var(--white-color-p);
  transition: all 0.3s;
}

.searchnow iconify-icon {
  height: 35px;
  width: 35px;
  background: var(--white-color-p);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 19px;
  border: 1px solid var(--white-color-p);
  transition: all 0.3s;
}

.custom-select-trigger_new:after {
  right: 20px;
}

.main-header-bottomset {
  margin-top: -35px;
}

/* how does work steps */
.how-works-box {
  border-radius: 12px;
  padding: 18px;
  background: linear-gradient(180deg, #f6f6f600 0%, #b7b7b724 100%);
}

.how-works-icons {
  height: 68px;
  width: 68px;
  min-width: 68px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white-color);
  position: relative;
  background: #d0fbe866;
}

.clr-1 .how-works-icons {
  background: #d0ebfb66;
}

.clr-2 .how-works-icons {
  background: #ffdbdb66;
}

.clr-3 .how-works-icons {
  background: #f5dbff66;
}

/* Meet Our Newest Members section */
.meet-member-profile {
  border-radius: 12px;
  overflow: hidden;
}

.meet-member-profile {
  height: 230px;
  width: 230px;
  border-radius: 100%;
  background: linear-gradient(180deg, rgba(235, 254, 255, 0) 0%, #0077ff 100%);
  padding: 5px;
}

.meet-member-profile.clr-1 {
  background: linear-gradient(180deg, rgba(235, 254, 255, 0) 0%, #ff7700 100%);
}

.meet-member-profile.clr-2 {
  background: linear-gradient(180deg, rgba(235, 254, 255, 0) 0%, #3700ff 100%);
}

.meet-member-profile.clr-3 {
  background: linear-gradient(180deg, rgba(235, 254, 255, 0) 0%, #ff00bf 100%);
}

.meet-member-profile.clr-4 {
  background: linear-gradient(180deg, rgba(235, 254, 255, 0) 0%, #3700ff 100%);
}

.meet-profile-member {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
  object-position: top;
}

.meet-member-slider .slick-prev,
.meet-member-slider .slick-next {
  background: transparent;
  border: none;
  font-size: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 38px;
  height: 38px;
  cursor: pointer;
  margin: auto;
}

.meet-member-slider .slick-prev::before,
.meet-member-slider .slick-next::before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-color);
  display: block;
}

.meet-member-slider .slick-prev::after,
.meet-member-slider .slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background-color: var(--white-color-p);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.meet-member-slider .slick-prev {
  left: 0;
}

.meet-member-slider .slick-prev::after {
  -webkit-mask-image: url("https://api.iconify.design/f7/arrow-left.svg");
  mask-image: url("https://api.iconify.design/f7/arrow-left.svg");
}

.meet-member-slider .slick-next {
  right: 0;
  transform: rotate(180deg);
}

.meet-member-slider .slick-next::after {
  -webkit-mask-image: url("https://api.iconify.design/f7/arrow-left.svg");
  mask-image: url("https://api.iconify.design/f7/arrow-left.svg");
}

.left-text-meet h4,
.left-text-meet p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* success stories section start */
.single-stories-web {
  width: 200px;
  min-width: 200px;
  height: 340px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid var(--white-color-70);
  position: relative;
  transition: all 0.4s ease;
}

.single-stories-web.active {
  width: 100%;
  border-radius: 50px;
}

.single-stories-web .home-str-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.single-stories-web h4 {
  position: absolute;
  bottom: 20px;
  border: 2px solid #ffffff26;
  background: #0000002b;
  backdrop-filter: blur(3px);
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 500;
  color: var(--white-color-p);
  margin: auto;
  width: fit-content;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.single-stories-web.active h4 {
  opacity: 1;
}

/* personalized section start */
.home-personalized-box {
  background: linear-gradient(86.16deg,
      rgba(255, 255, 255, 0.2) 11.14%,
      rgba(255, 255, 255, 0.035) 113.29%);
  box-shadow: 0px 1.2px 29.92px 0px #452a7c1a;
  backdrop-filter: blur(70px);
  border-radius: 30px;
  border: 1px solid #ffffff1f;
}

.btn-consolation {
  background: #de8e0d;
  color: var(--white-color-p);
  padding: 9px 24px;
  display: inline-block;
  border-radius: 40px;
  font-weight: 400;
  border: 1px solid #de8e0d;
}

.personalize-logo {
  width: 200px;
}

.bg-personalized-apps {
  background:
    url(../images/bg-personalized-2.png) no-repeat 0% 0%,
    url(../images/bg-personalized-1.png) no-repeat 100% 100%;
  background-size: contain;
}

.personalize-matches-box {
  display: flex;
  align-items: center;
  background: linear-gradient(86.16deg,
      rgba(255, 255, 255, 0.2) 11.14%,
      rgba(255, 255, 255, 0.035) 113.29%);
  box-shadow: 0px 1.2px 29.92px 0px #452a7c1a;
  backdrop-filter: blur(6px);
  border: 1px solid #ffffff1f;
  border-radius: 44px;
  gap: 12px;
  position: absolute;
  padding: 3px 22px 3px 3px;
  height: fit-content;
}

.box-matches-icon {
  display: flex;
  align-items: center;
  background: linear-gradient(86.16deg,
      rgba(255, 255, 255, 0.2) 11.14%,
      rgba(255, 255, 255, 0.035) 113.29%);
  box-shadow: 0px 1.2px 29.92px 0px #452a7c1a;
  backdrop-filter: blur(6px);
  border: 3px solid #ffffff1f;
  border-radius: 44px;
  height: 48px;
  width: 48px;
  justify-content: center;
  color: var(--white-color);
  font-size: 26px;
}

.content-matches-text p {
  line-height: normal;
}

.personalize-matches-box.position-1 {
  top: 20%;
  left: -40px;
}

.personalize-matches-box.position-2 {
  bottom: 0;
  left: -30px;
}

.personalize-matches-box.position-3 {
  right: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* Why Thousands Trust Love Matrimonial section */
.single-trusted-box {
  border-radius: 12px;
  background: var(--black-color-3);
  padding: 18px;
  cursor: pointer;
}

.single-trusted-box:hover {
  background: var(--black-color-4);
}

.trusted-step-icon {
  height: 48px;
  width: 48px;
  background: var(--primary-color);
  color: var(--white-color-p);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 24px;
  margin-top: -44px;
}

/* commmon arrow and dots  */
.common-arrow-dots .slick-prev {
  font-size: 0;
  border: none;
  background: transparent;
  position: absolute;
  left: -16px;
  top: 0;
  z-index: 1;
  bottom: 0;
  margin: auto;
  height: fit-content;
}

.common-arrow-dots .slick-prev::before {
  content: "\e9b4";
  font-family: "boxicons", sans-serif;
  font-size: 18px;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--black-color);
  border: 1px solid var(--black-color);
  border-radius: 100%;
}

.common-arrow-dots .slick-next {
  font-size: 0;
  border: none;
  background: transparent;
  position: absolute;
  right: -16px;
  top: 0;
  z-index: 1;
  bottom: 0;
  height: fit-content;
  margin: auto;
}

.common-arrow-dots .slick-next::before {
  content: "\e9b4";
  font-family: "boxicons", sans-serif;
  font-size: 18px;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color-p);
  background: var(--primary-color);
  border: 1px solid transparent;
  border-radius: 100%;
  transform: rotate(180deg);
}

.common-arrow-dots .slick-next:hover::before,
.common-arrow-dots .slick-prev:hover::before {
  background: var(--black-color);
  border-color: var(--black-color);
  color: var(--white-color);
}

.common-arrow-dots .slick-track {
  margin: 0;
}

/* community & about us section start  */
.community-inner-main .nav-pills {
  background: var(--black-color-3primary);
  width: fit-content;
  margin: auto;
  padding: 8px;
  border-radius: 46px;
}

.community-inner-main .nav-pills .nav-link {
  font-weight: 500;
  color: var(--white-color-p70);
  border-radius: 22px;
  padding: 8px 26px;
}

.community-inner-main .nav-pills .nav-link.active {
  background: var(--white-color-p);
  box-shadow: 0px 4px 8.6px 0px #ffffff1e;
  color: var(--primary-color);
}

.matri-comunity-s .lvg {
  height: 10px;
  width: 1px;
  background: var(--white-color-70);
  margin: 0px 10px;
}

/* Best way to manage section */
.apps-away-bgmain {
  background: url(../images/apps-away-bg.png) no-repeat;
  background-size: cover;
  border: 1px solid var(--common-border);
  border-radius: 40px;
}

.manage-way-leftside h2 span {
  height: 12px;
  width: 2px;
  background: var(--white-color-p70);
  display: inline-block;
  margin: 0px 24px;
}

.apps-playstore img {
  width: 160px;
}

.usersappsgroup .commanprofile {
  height: 46px;
  width: 46px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--white-color-p);
  margin-left: -28px;
}

/* footer section start  */
.footer_linking-mng .footer-logo {
  width: 124px;
}

.footerlist li {
  line-height: 20px;
}

.footer-contact-suport a,
.footerlist li a {
  opacity: 0.8;
  transition: all 0.3s;
}

.footerlist li a:hover {
  color: var(--primary-color);
  margin-left: 3px;
}

.custom-tooltip {
  --bs-tooltip-bg: var(--primary-color);
  --bs-tooltip-color: var(--white-color-p);
}

.social-footers-home a {
  height: 34px;
  width: 34px;
  background: var(--white-color-p);
  border: 1px solid var(--white-color-p);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s;
}

.social-footers-home a:hover {
  background: transparent;
  color: var(--white-color-p);
}

.footer-email input {
  width: 100%;
  height: 38px;
  border-radius: 40px;
  outline: none;
  border: 1px solid var(--input-border);
  padding: 8px 30px 7px 15px;
  font-size: 13px;
  background: transparent;
  color: var(--white-color-p);
  font-weight: 500;
}

.footer-email button {
  position: absolute;
  right: 3px;
  top: 3px;
  border-radius: 100%;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--primary-color);
  color: var(--white-color-p);
  font-size: 24px;
}

.footer-main-bg {
  background: url(../images/footer-bg.png) no-repeat;
  background-size: cover;
}

/* form settings  */
.comman_inputfield_main .input_comman_field {
  width: 100%;
  background: var(--black-color-3w);
  border: 1px solid var(--input-border-light);
  height: 48px;
  border-radius: 8px;
  padding: 12px 20px;
  outline: none;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
}

.comman_inputfield_main .input_comman_field:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px var(--black-color-3) inset;
  -webkit-text-fill-color: var(--white-color) !important;
}

.edit_inputMain-sltr label,
.comman_inputfield_main label {
  margin-bottom: 4px;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
}

.comman_inputfield_main .icon-input .input_comman_field {
  padding: 12px 20px 12px 39px;
}

.icon-input iconify-icon {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  align-content: center;
  font-size: 18px;
  color: var(--white-color-70);
}

.comman_inputfield_main .input_comman_field::placeholder {
  color: var(--white-color-70);
}

.comman_inputfield_main .input_comman_field:focus {
  border: 1px solid var(--black-color-5);
}

.comman_inputfield_main .input_comman_field:focus::placeholder {
  color: var(--black-color-5);
}

.comman_inputfield_main .input_comman_field:focus::-ms-input-placeholder {
  color: var(--black-color-5);
}

.comman_inputfield_main .input_comman_field:focus::-webkit-input-placeholder {
  color: var(--black-color-5);
}

.comman_inputfield_main .input_comman_field:focus::-moz-placeholder {
  color: var(--black-color-5);
}

.comman_inputfield_main .input_comman_field.textareasize {
  height: 108px;
  resize: none;
}

/* checkbox custom */
.commom-checkboxdiv-l .comman_chack {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
}

.commom-checkboxdiv-l .comman_chack::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--input-border);
  background-color: transparent;
  transition: all 0.2s ease;
}

.commom-checkboxdiv-l .comman_chack::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: transparent;
  -webkit-mask: url("https://api.iconify.design/iconamoon:check.svg") no-repeat center / 70%;
  mask: url("https://api.iconify.design/iconamoon:check.svg") no-repeat center / 70%;
  transition: all 0.2s ease;
}

.commom-checkboxdiv-l input:checked+.comman_chack::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.commom-checkboxdiv-l input:checked+.comman_chack::after {
  background-color: var(--white-color-p);
}

/* radio button custom  */
.id-proof-radioBG {
  background: var(--black-color-3);
  padding: 12px 22px 10px;
  border-radius: 10px;
}

.radio_filterinp {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio_filterinp::before {
  content: "";
  height: 16px;
  width: 16px;
  min-width: 16px;
  display: block;
  border-radius: 50%;
  border: 2px solid var(--black-color-4);
  outline: 1px solid var(--white-color-70);
  background: var(--black-color-4);
  transition: all 0.2s ease;
}

.radio_filterinp::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s ease;
}

.single_input_radio-L input:checked+.radio_filterinp::before {
  background: var(--primary-color);
  outline: 1px solid var(--primary-color);
  border-color: var(--black-color-3);
}

.single_input_radio-L input:checked+.radio_filterinp.check::after {
  opacity: 1;
  -webkit-mask: url("https://api.iconify.design/iconamoon:check-fill.svg") no-repeat center / 80%;
  mask: url("https://api.iconify.design/iconamoon:check-fill.svg") no-repeat center / 80%;
  background-color: var(--white-color);
}

.comman_inputfield_main .input_comman_field[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  background-origin: content-box;
  color: transparent;
  cursor: pointer;
  height: auto;
  position: absolute;
  right: 24px;
  bottom: 0;
  top: 0;
  left: 0;
  width: auto;
}

.comman_inputfield_main .input_comman_field[type="time"]::-webkit-calendar-picker-indicator {
  background: transparent;
  background-origin: content-box;
  color: transparent;
  cursor: pointer;
  height: auto;
  position: absolute;
  right: 24px;
  bottom: 0;
  top: 0;
  left: 0;
  width: auto;
}

.single_input_radio-L .radio_filterinp {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* login & register & register steps section start  */
.login-register-bannerbg {
  margin-right: -80px;
}

.male-female-register {
  border: 1px solid var(--common-border);
  border-radius: 11px;
}

.login-register-bannerbg .login-left-bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.offcanvas-backdrop {
  background-color: #00000091;
  backdrop-filter: blur(2px);
}

.offcanvas-backdrop.show {
  opacity: 1;
}

.steps-regis-lefts {
  display: none;
}

.steps-regis-lefts.active {
  display: block;
}

.register-steps-bg {
  background: var(--black-color-3);
  padding: 15px;
  border-radius: 12px;
}

.register-steps-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.register-steps-box::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 20px;
  width: 2px;
  height: 100%;
  background: var(--white-color);
  z-index: 0;
}

.progress-line {
  position: absolute;
  top: 0px;
  left: 20px;
  height: 0;
  background: #4dba31;
  width: 2px;
  z-index: 1;
  transition: width 0.3s ease;
}

.register-steps-items {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.register-steps-items:last-child {
  margin-bottom: 0;
}

.register-steps-items .step-count {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-color);
  margin: 0 auto;
  font-size: 18px;
  color: var(--black-color-1);
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
}

.register-steps-items.active .step-count::before {
  content: "";
  background: #ffffff1c;
  height: 56px;
  width: 56px;
  position: absolute;
  border-radius: 100%;
  outline: 6px solid #ffffff08;
}

.register-steps-items.active .step-count,
.register-steps-items.completed .step-count {
  background: #4dba31;
  color: var(--white-color);
  border: 2px solid #ffffff38;
}

.single-side-lists {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--common-border);
}

.single-side-lists:last-child {
  border-bottom: none;
}

.login-register-cmnbg {
  background: var(--black-color-1white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 93.2px 0px #00000026;
  height: 100%;
}

.or-withline-center::before,
.or-withline-center::after {
  display: block;
  content: "";
  z-index: 1;
  background: var(--black-color-5);
  position: absolute;
  width: 100%;
  height: 1px;
}

.or-withline-center span {
  position: relative;
  z-index: 2;
  background: var(--black-color-1);
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 400;
  color: var(--white-color-70);
}

.or-withline-center span.bg-gradient {
  background: var(--primary-color) !important;
  color: var(--white-color-p);
  font-weight: 500;
}

.comman_inputfield_main .toggle-password::after {
  content: "";
  background-color: currentColor;
  -webkit-mask: url("https://api.iconify.design/weui:eyes-off-outlined.svg") no-repeat center;
  -webkit-mask-size: contain;
  position: absolute;
  vertical-align: middle;
  background-size: contain;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-origin: content-box;
  cursor: pointer;
  align-content: center;
  height: 20px;
  width: 20px;
}

.comman_inputfield_main .toggle-password.eye-open::after {
  content: "";
  background-color: currentColor;
  -webkit-mask: url("https://api.iconify.design/weui:eyes-on-outlined.svg") no-repeat center;
  -webkit-mask-size: contain;
}

.inner-roundsone .inner-roundtwo {
  height: 70%;
  width: 70%;
  border-radius: 100%;
  border: 0.966px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(217, 217, 217, 0) 100%);
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.gander-textLable {
  width: 150px;
}

.captcha-refresh-btn .refresh-icon-captcha {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color-6);
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 3px;
  bottom: 0;
  margin: auto;
}

.comman_inputfield_main .CaptchaWrap .capcode {
  height: 48px;
  width: 120px;
  border-radius: 8px;
}

.comman_inputfield_main .captcha-error {
  position: absolute;
  bottom: -14px;
  font-size: 14px;
  color: var(--error-color);
}

.btn-loginwith-otp {
  background: var(--black-color-3primary);
  color: var(--white-color-p);
  padding: 13px 36px;
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  border: none;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-loginwith-otp:hover {
  background: var(--black-color-4);
}

/* login otp sections start */
.need-help-bottom {
  border-top: 1px dashed var(--black-color-5);
}

.otp-iconbox {
  height: 108px;
  width: 108px;
  background: var(--black-color-3);
  border-radius: 100%;
  color: var(--white-color);
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.OTP_login-designs .otp-field input {
  height: 50px;
  width: 50px;
  border-radius: 0;
  outline: none;
  font-size: 16px;
  text-align: center;
  border: none;
  border-bottom: 2px solid var(--input-border);
  color: var(--white-color);
  background: transparent;
  font-weight: 400;
}

.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button {
  display: none;
}

.uploaded-img-container-back.image-uploaded .uploaded-id-back,
.uploaded-img-container-front.image-uploaded .uploaded-id {
  width: 99%;
  height: 99%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 12px;
  z-index: 1;
}

.uploaded-img-container-back .edit_id,
.uploaded-img-container-front .edit_id {
  display: none;
  position: absolute;
  bottom: 9px;
  right: 9px;
  z-index: 2;
  height: 40px;
  width: 40px;
  background: var(--black-color);
  border-radius: 100%;
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
}

.uploaded-img-container-back.image-uploaded .edit_id,
.uploaded-img-container-front.image-uploaded .edit_id {
  display: flex;
  align-items: center;
  justify-content: center;
}

.male-female-account label {
  width: 100%;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white-color);
  background: transparent;
  cursor: pointer;
  font-weight: 500;
}

.male-female-account input:checked~label {
  background: var(--primary-color);
  color: var(--white-color-p);
  border-color: var(--primary-color);
}

/* register step in 5 photo upload start  */
.main-upload_phtrefuoe.big {
  width: 260px;
}

.p-image .edit-labelbig {
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--black-color);
  position: absolute;
  right: 15px;
  bottom: 12px;
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
}

.main-upload_phtrefuoe.small {
  width: 120px;
}

.p-image .edit-labelsmall {
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--black-color);
  position: absolute;
  right: 15px;
  bottom: 12px;
  font-size: 16px;
  color: var(--white-color);
  cursor: pointer;
}

/* about us section start  */
.listabout-items li {
  color: var(--white-color-70);
  font-weight: 400;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.listabout-items li:hover i {
  margin-right: 8px;
}

.listabout-items li i {
  background: var(--white-color-70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  transition: all 0.3s;
  margin-right: 4px;
}

/* contact us section start  */
.epl_flexmain .round-contacticon {
  height: 49px;
  width: 49px;
  min-width: 49px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--white-color-p);
  font-size: 24px;
}

.location_mapsmain .contact-maps {
  width: 100%;
  height: 520px;
  border-radius: 12px;
}

.common-bgwhite-main {
  background: var(--black-color-1);
  border-radius: 16px;
  position: relative;
}

.common-bglight-main {
  background: var(--black-color-3);
  border-radius: 16px;
  position: relative;
  border: 1px solid var(--black-color-4);
}

.common-bgwhite-main12 {
  background: var(--white-color);
  border-radius: 12px;
  border: 1px solid #00000012;
  position: relative;
}

.common-bgtransparent-main {
  background: var(--black-color-1);
  border-radius: 16px;
  position: relative;
}

.common-bgtransparent-coupan {
  background: var(--black-color-3);
  border-radius: 16px;
  position: relative;
}

.left-settingPanels {
  background: var(--black-color-3);
  border-radius: 16px;
  position: relative;
}

.file-attach-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  background: transparent;
  cursor: pointer;
  color: var(--white-color);
  width: max-content;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px dashed var(--white-color-70);
}

/* Success story & blogs start  */
.single-success-couple .str-imgs {
  min-width: 204px;
  width: 204px;
  height: 233px;
  object-fit: cover;
  border-radius: 12px;
  object-position: top;
}

.single-success-couple .small-imgs {
  min-width: 180px;
  width: 180px;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  object-position: top;
}

.story-imagecoupl .str-imgs {
  width: 100%;
  height: 233px;
  object-fit: cover;
  border-radius: 12px;
  object-position: top;
}

.story-imagecoupl .big_storyprofils {
  width: 100%;
  height: 486px;
  object-fit: cover;
  border-radius: 12px;
  object-position: top;
}

.blogs-multieswagg::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: transparent linear-gradient(175deg, #17171700 0%, #000000de 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
}

.blogs-multieswagg .comman-blogs {
  height: 320px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}

.blogs_contentsettextvdf h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.single-success-stories {
  background: var(--black-color-1);
  border: 1px solid var(--black-color-1);
  border-radius: 14px;
  padding: 12px;
}

.stories-bottoms-box h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.blogs_contentsettextvdf h5 span,
.stories-bottoms-box h5 span {
  height: 12px;
  width: 1px;
  display: inline-block;
  background: var(--white-color-70);
  margin: 0px 8px;
}

.stories-bottoms-box p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.more-stories {
  background: var(--primary-color);
  color: var(--white-color-p);
  padding: 7px 20px;
  display: inline-block;
  border-radius: 8px;
  font-weight: 500;
  width: fit-content;
  border: 1px solid var(--primary-color);
  transition: all 0.3s;
}

.more-stories:hover {
  background: var(--primary-color);
  color: var(--white-color-p);
}

.success-stories-details {
  border-radius: 16px;
  background: var(--black-color-1);
}

.blog-singles-mng {
  background: var(--black-color-1);
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--black-color-1);
}

.blog-redesign-wrap .blog-feature-card,
.blog-redesign-wrap .blog-mini-card {
  background: var(--black-color-1);
  border: 1px solid var(--black-color-1);
  border-radius: 18px;
  overflow: hidden;
}

.blog-redesign-wrap .blog-feature-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.blog-redesign-wrap .blog-mini-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-redesign-wrap .blog-card-content h4,
.blog-redesign-wrap .blog-mini-content h4 {
  line-height: 1.25;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.blog-redesign-wrap .blog-card-content h4 {
  -webkit-line-clamp: 2;
}

.blog-redesign-wrap .blog-mini-content h4 {
  -webkit-line-clamp: 2;
}

.blog-redesign-wrap .blog-card-content p,
.blog-redesign-wrap .blog-mini-content p {
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.blog-redesign-wrap .blog-card-content p {
  -webkit-line-clamp: 3;
}

.blog-redesign-wrap .blog-mini-content p {
  -webkit-line-clamp: 2;
}

.blog-redesign-wrap h5 span {
  height: 12px;
  width: 1px;
  display: inline-block;
  background: var(--white-color-70);
  margin: 0px 8px;
}

.latest-blog-head h3 {
  max-width: 150px;
}

.latest-arrow {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: transparent;
  padding: 0;
}

.latest-arrow:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* blog details redesign */
.blog-details-v2-wrap {
  max-width: 1260px;
  margin: 0 auto;
}

.blog-details-v2-main,
.blog-details-v2-mini {
  background: var(--black-color-1);
  border: 1px solid var(--black-color-1);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.blog-details-v2-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-details-v2-content h5 span,
.blog-details-v2-mini h5 span {
  height: 12px;
  width: 1px;
  display: inline-block;
  background: var(--white-color-70);
  margin: 0 8px;
  vertical-align: -1px;
}

.blog-details-v2-title {
  line-height: 1.25;
}

.blog-details-v2-content p {
  line-height: 1.7;
}

.blog-details-v2-mini-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-details-v2-mini h4 {
  line-height: 1.25;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-details-v2-mini p {
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-details-v2-main:hover,
.blog-details-v2-mini:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.blog-details-v2-main:hover .blog-details-v2-main-img,
.blog-details-v2-mini:hover .blog-details-v2-mini-img {
  transform: scale(1.04);
}

@media (max-width: 991.98px) {
  .blog-details-v2-main-img {
    height: 360px;
  }

  .blog-details-v2-mini-img {
    height: 220px;
  }
}

@media (max-width: 575.98px) {
  .blog-details-v2-main-img {
    height: 240px;
  }

  .blog-details-v2-mini-img {
    height: 180px;
  }
}

.blog-slider-dots .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 4px;
}

.blog-slider-dots .slick-dots li {
  width: auto;
  height: auto;
}

.blog-slider-dots .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white-color-70);
  padding: 0;
  border: none;
  font-size: 0;
}

.blog-slider-dots .slick-dots li button::before {
  display: none;
}

.blog-slider-dots .slick-dots li.slick-active button {
  background: var(--white-color);
}

/* advertise with us redesign */
.advertise-v2-card {
  background: var(--black-color-1);
  border: 1px solid var(--black-color-1);
  border-radius: 20px;
}

.advertise-captcha-box {
  background: var(--pending-bgcolor);
  border-radius: 8px;
  min-height: 48px;
}

.advertise-captcha-box .capcode {
  width: 100%;
  height: 48px;
  border-radius: 8px;
}

.advertise-file-control {
  height: 48px;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  background: var(--black-color-3);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
}

.advertise-file-control input[type="file"] {
  display: none;
}

.advertise-file-btn {
  background: var(--black-color-4);
  border: 1px solid var(--black-color-4);
  color: var(--white-color);
  border-radius: 7px;
  padding: 10px 18px;
  cursor: pointer;
  margin-top: 4px;
  line-height: 1;
  margin-left: -4px;
}

.advertise-file-btn:hover {
  border-color: var(--primary-color);
}

#advertiseFileName {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.advertise-level-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px !important;
  background-image: url("https://api.iconify.design/ep:arrow-down-bold.svg?color=%23ffffff");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}

.advertise-level-select option {
  color: var(--white-color);
  background: var(--black-color-3);
}

.advertise-preview-card {
  width: 221px;
  border: 1px solid var(--input-border);
  border-radius: 12px;
  background: var(--black-color-3);
  overflow: hidden;
}

.advertise-preview-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
}

.advertise-preview-head iconify-icon {
  font-size: 18px;
  color: var(--white-color-70);
}

.advertise-preview-media {
  position: relative;
  aspect-ratio: 16/9;
  border-top: 1px solid var(--input-border);
  overflow: hidden;
}

.advertise-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.advertise-preview-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--black-color-4);
}

.advertise-preview-placeholder iconify-icon {
  font-size: 26px;
  color: var(--white-color-70);
}

.advertise-preview-remove {
  position: absolute;
  right: 10px;
  bottom: 10px;
  height: 32px;
  width: 32px;
  border: 1px solid var(--input-border);
  border-radius: 50%;
  background: var(--black-color);
  color: var(--white-color);
  display: none;
  align-items: center;
  justify-content: center;
}

.advertise-preview-remove iconify-icon {
  font-size: 18px;
}

.advertise-preview-card.has-image .advertise-preview-media img {
  display: block;
}

.advertise-preview-card.has-image .advertise-preview-placeholder {
  display: none;
}

.advertise-preview-card.has-image .advertise-preview-remove {
  display: inline-flex;
}

.advertise-ratio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.advertise-ratio-option input {
  display: none;
}

.advertise-ratio-box {
  display: block;
  background: var(--black-color-3);
  border: 1px solid var(--black-color-4);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.advertise-ratio-option input:checked+.advertise-ratio-box {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-color) inset;
}

.ratio-preview {
  width: 100%;
  display: block;
  border: 1px dashed var(--white-color-70);
  border-radius: 8px;
  background: #ffffff0a;
}

.ratio-preview.ratio-16-9 {
  aspect-ratio: 16/9;
}

.ratio-preview.ratio-4-5 {
  aspect-ratio: 4/5;
}

.ratio-preview.ratio-1-1 {
  aspect-ratio: 1/1;
}

.more-stories-img .stories-sm-img {
  height: 57px;
  width: 54px;
  min-width: 54px;
  object-fit: cover;
  border-radius: 6px;
}

.more-story-arrow {
  height: 34px;
  width: 34px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color-p);
  border-radius: 100%;
  font-size: 16px;
  transform: rotate(180deg);
}

.video-call-page {
  position: relative;
  padding: 34px 0 28px;
  overflow: hidden;
}

.video-call-page::before,
.video-call-page::after {
  content: "";
  position: absolute;
  top: 120px;
  width: 360px;
  height: 360px;
  background: url(../images/body-bg-1.png) no-repeat center;
  background-size: contain;
  opacity: 0.42;
  pointer-events: none;
}

.video-call-page::before {
  left: -200px;
}

.video-call-page::after {
  right: -200px;
  transform: scaleX(-1);
}

.video-call-wrap {
  background: var(--black-color-1);
  border: 1px solid var(--black-color-3);
  border-radius: 18px;
  padding: 20px;
  max-width: 980px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.video-screen-area {
  border-radius: 14px;
  overflow: hidden;
}

.video-main-screen {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 14px;
  /* background: #000; */
}

.video-fallback-screen {
  display: none;
}

.video-screen-area.show-fallback #videoCallScreen {
  display: none;
}

.video-screen-area.show-fallback .video-fallback-screen {
  display: block;
}

.video-time-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #828282b3;
  border-radius: 30px;
  padding: 8px 16px;
}

.video-time-badge .rec-dot {
  height: 10px;
  width: 10px;
  min-width: 10px;
  background: #fc4545;
  border-radius: 50%;
}

.video-expand-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 56px;
  width: 56px;
  border-radius: 50%;
  border: none;
  background: #828282b3;
  color: var(--white-color-p);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-call-actions {
  min-height: 90px;
}

.caller-name-pill {
  text-align: center;
  background: var(--primary-color);
  border-radius: 40px;
  padding: 12px 24px;
}

.call-main-controls {
  background: var(--black-color-3);
  border-radius: 50px;
  padding: 12px 15px;
}

.round-action-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.round-action-btn.mute-btn {
  background: #15c98f;
  color: var(--white-color-p);
}

.round-action-btn.is-off {
  background: var(--black-color-5) !important;
  color: var(--white-color-p) !important;
}

.round-action-btn.camera-btn {
  background: var(--white-color-p);
  color: var(--primary-color);
}

.end-call-btn {
  height: 52px;
  border-radius: 40px;
  border: none;
  background: var(--primary-color);
  color: var(--white-color-p);
  padding: 0 34px;
}

.round-action-btn.voice-level-btn {
  background: var(--primary-color);
  color: var(--white-color-p);
}

/* Profiles of the Day box */
.common-bgprimary-main {
  background: var(--black-color-3);
  border: 1px solid var(--common-border);
  border-radius: 16px;
  position: relative;
}

.match-img-profile {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #ffffff2b;
}

/* events section start  */
.event-flex-content .arrow-event {
  height: 48px;
  width: 48px;
  border: 1px solid var(--black-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--black-color);
  transform: rotate(131deg);
  min-width: 48px;
}

.event-side-img .events-details-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

.event-right-maps iframe {
  width: 100%;
  height: 380px;
  border-radius: 12px;
}

.placeQty_box {
  width: 274px;
  height: 50px;
  background: var(--black-color-3);
  border: 1px solid var(--common-border);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  padding: 6px 7px 6px 12px;
  align-items: center;
  color: var(--white-color);
}

.placeQty_box .qty_select-opt select {
  background: var(--black-color-3);
  border: 1px solid var(--common-border);
  height: 38px;
  width: 98px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--white-color);
  font-weight: 500;
  padding: 7px 8px;
  outline: none;
}

.event-checktitle {
  border-bottom: 1px solid #00000012;
}

/* pagination code  */
.pagination_nav {
  background: var(--black-color-3);
  border-radius: 24px;
  padding: 4px;
  width: fit-content;
  margin: auto;
}

.pagination_nav ul .page_items a.active,
.pagination_nav ul .page_items a:hover {
  background: var(--black-color-4);
  border-color: var(--common-border);
}

.pagination_nav ul .page_items a {
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white-color);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 400;
  border-radius: 100%;
  transition: all 0.3s;
  padding-top: 1px;
}

.pagination_nav ul .prev-next a {
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white-color-p);
  border-radius: 100%;
  transition: all 0.3s;
  padding-top: 1px;
  border: var(--primary-color);
  font-size: 22px;
}

/* quick search & advance search & id search start  */
.common-tabs-design ul li .nav-link {
  width: 100%;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: none;
}

.common-tabs-design .nav {
  background: var(--black-color-3);
  border-radius: 12px;
  border: 1px solid var(--black-color-4);
  padding: 4px;
}

.common-tabs-design ul li .nav-link.active {
  background: var(--primary-color);
  color: var(--white-color-p);
}

.common-tabs-design ul .nav-item {
  width: 33.33%;
}

.show_recent-mdata {
  height: 38px;
  width: 38px;
  min-width: 38px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--white-color-p);
  font-size: 20px;
}

.membr-img-fdfa {
  width: 54px;
  height: 57px;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
}

.membr-img-fdfa .rstmmb {
  width: 54px;
  height: 57px;
  border-radius: 9px;
  object-fit: cover;
  object-position: top;
}

.membr_sidetext-O .elips-blogtext {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.irs .irs-to span,
.irs .irs-from span {
  height: 7px;
  width: 7px;
  display: block;
  position: absolute;
  background: var(--primary-color);
  transform: rotate(45deg);
  left: 0;
  right: 0;
  margin: auto;
}

.irs.irs--round.js-irs-0 .irs .irs-from::after,
.irs.irs--round.js-irs-0 .irs .irs-to::after {
  content: "";
  height: 7px;
  width: 7px;
  display: block;
  position: absolute;
  background: var(--primary-color);
  transform: rotate(45deg);
  left: 0;
  right: 0;
  margin: auto;
}

.irs--round .irs-handle.state_hover::after {
  outline: 2px solid #2280ef33;
}

.idsearching-btnsdview {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  background: var(--pink-color);
  color: var(--white-color);
  font-weight: 500;
  font-size: 15px;
  width: 208px;
  border-radius: 12px;
}

.idsearching-btnsdview img {
  width: 18px;
}

.gender-field-box {
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.single-gender-fild label {
  width: 100%;
  background: transparent;
  color: var(--white-color);
  text-align: center;
  padding: 18px 16px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

.single-gender-fild input:checked~label {
  background: var(--primary-color);
  color: var(--white-color-p);
}

.checkbox-input-search label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white-color);
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.checkbox-input-search label::before {
  content: "";
  height: 20px;
  width: 20px;
  border: 1px solid var(--input-border);
  border-radius: 4px;
  display: block;
  background-color: transparent;
  transition: all 0.2s ease;
}

.checkbox-input-search label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s ease;
}

.checkbox-input-search input:checked+label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-input-search input:checked+label::after {
  opacity: 1;
  -webkit-mask: url("https://api.iconify.design/mingcute:check-fill.svg") no-repeat center / 60%;
  mask: url("https://api.iconify.design/mingcute:check-fill.svg") no-repeat center / 60%;
  background-color: var(--white-color);
  /* icon color */
}

/* range slider css  */
.irs--round .irs-bar {
  height: 8px;
  border-radius: 6px;
  background: var(--primary-color);
}

.irs--round .irs-handle {
  background-color: transparent;
  border-color: transparent;
  box-shadow: unset;
  width: 16px;
  height: 16px;
  top: 29px;
  cursor: pointer;
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: transparent;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  background: var(--primary-color);
  color: var(--white-color-p);
  font-size: 14px;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 6px;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before,
.irs--round .irs-min,
.irs--round .irs-max {
  display: none;
}

.irs--round .irs-handle::after {
  content: "";
  background: var(--primary-color);
  height: 22px;
  width: 22px;
  display: block;
  position: relative;
  top: -5px;
  left: -5px;
  border-radius: 100%;
  border: 4px solid var(--white-color-p);
}

.irs--round .irs-line {
  top: 36px;
  height: 8px;
  background-color: var(--white-color);
  border-radius: 6px;
}

.age_height_fted .btn_ageheights {
  border: 1px solid var(--common-border);
  width: 100%;
  border-radius: 12px;
  padding: 11px 15px;
  color: var(--white-color);
  background: var(--black-color-3);
  height: 44px;
}

.age_height_fted .line-dfg {
  width: 24px;
  height: 2px;
  background: var(--white-color-70);
}

/* search result section start  */
.filter-lftd-mng {
  border-radius: 12px;
  cursor: pointer;
}

.filter-lftd-mng .filter_collapsemobiles~iconify-icon {
  background: var(--black-color-4);
  height: 30px;
  width: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s;
  color: var(--white-color);
}

.collapsed .filter_collapsemobiles~iconify-icon {
  transform: rotate(180deg);
}

.common-box-filters {
  background: var(--black-color-3);
  border-radius: 12px;
  cursor: pointer;
  padding: 5px 16px;
}

.common-box-filters .common-acording-title button {
  box-shadow: none;
  background: transparent;
  padding: 8px 0px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white-color);
}

.ctm-accordion-body {
  border-top: 1px solid #00000030;
  padding-top: 14px;
}

.common-acording-title iconify-icon {
  font-size: 22px;
  background: var(--primary-color);
  color: var(--white-color-p);
  border-radius: 5px;
  height: 24px;
  min-width: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.common-acording-title .collapsed~iconify-icon {
  transform: rotate(180deg);
}

.common-acording-title .accordion-button::after {
  display: none;
}

.single_result-profiles {
  background: var(--white-color);
  border: 1px solid #00000012;
  border-radius: 16px;
  position: relative;
}

.user-profile-round {
  position: relative;
  height: 124px;
  width: 124px;
  border-radius: 100%;
  overflow: hidden;
}

.lockprofiles-2::before {
  content: "\eb49";
  font-family: "boxicons", sans-serif;
  font-size: 46px;
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #6d00731a 0%, #1800a91a 100%);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}

.view-more-result {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: end;
  font-weight: 500;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: max-content;
  margin-left: auto;
}

.common-profile-badge {
  position: absolute;
  right: 16px;
  top: 14px;
  background: var(--primary-color);
  color: var(--white-color-p);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 13px;
  cursor: pointer;
}

/* membership plans section start  */
.qr-codegenrets .qr-codes {
  height: 167px;
  width: 167px;
  filter: invert(1);
}

.upi-bhimsdfef .upibheem {
  width: 89px;
  filter: brightness(2.5);
}

.bank-details-content p span {
  width: 230px;
  display: inline-block;
}

.premiup-plantpsstf {
  padding: 41px 30px 257px;
}

.premiup-plantpsstf .secure-icons {
  height: 49px;
  width: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 10px;
  background: #ffffff33;
}

.plans_bgmain {
  margin-top: -212px;
}

.single_meber-plans {
  background: var(--black-color-1);
  border-radius: 26px;
  position: relative;
}

.plan-header-box {
  /* display: flex;
  justify-content: space-between;
  gap: 10px; */
  background: #1a2a80;
  padding: 26px 18px;
  border-radius: 12px;
}

.silver-plan .plan-header-box {
  background: #1a7680;
}

.diamond-plan .plan-header-box {
  background: #ce2a6b;
}

.plan-primary-btn {
  background: #1a2a80;
  color: var(--white-color-p);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  border-radius: 40px;
  border: 1px solid #1a2a80;
  position: relative;
  font-weight: 400;
  overflow: hidden;
  transition: all 0.4s ease;
}

.plan-primary-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  background: #ffffff14;
  transition: width 0.4s ease;
  border-radius: 4px;
  transform: translate(-50%, -50%);
}

.plan-primary-btn:hover::before {
  width: 100%;
}

.silver-plan .plan-primary-btn {
  background: #1a7680;
  border-color: #1a7680;
}

.diamond-plan .plan-primary-btn {
  background: #ce2a6b;
  border-color: #ce2a6b;
}

.single_meber-plans.popular_select {
  background: var(--primary-color);
}

.single_meber-plans.popular_select h4,
.single_meber-plans.popular_select p,
.single_meber-plans.popular_select li,
.single_meber-plans.popular_select span {
  color: var(--white-color);
}

/* .listmatchis-items li::before {
  content: "";
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color-70);
  background-color: currentColor;
  -webkit-mask: url("https://api.iconify.design/iconamoon:check-fill.svg") no-repeat center;
  -webkit-mask-size: contain;
  height: 20px;
  width: 20px;
} */

.popular_select .listmatchis-items li::before {
  background: transparent;
  color: var(--white-color);
}

.coupncodeboxinr .offerdiv {
  border-bottom: 1px solid #dde2e5;
}

.coupncodeboxinr .view-labels {
  border-bottom: 1px dashed var(--black-color);
  padding-bottom: 2px;
}

.more-coupen-btndiv .dot-line {
  height: 26px;
  width: 1px;
  border: 1px dashed var(--white-color);
  margin-left: 5px;
  margin-right: 8px;
}

.more-coupen-btndiv::before {
  content: "";
  height: 16px;
  width: 16px;
  display: block;
  border-radius: 100%;
  top: -10px;
  position: absolute;
  left: 46px;
  background: var(--white-color);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.plan-list-style {
  list-style: inside;
}

.more-coupen-btndiv::after {
  content: "";
  height: 16px;
  width: 16px;
  border: 1px solid var(--primary-color);
  display: block;
  border-radius: 100%;
  bottom: -10px;
  position: absolute;
  left: 46px;
  background: var(--white-color);
  border-top: none;
  border-left: none;
  transform: rotate(222deg);
}

.btn-apply-coupon {
  background: var(--primary-color);
  color: var(--white-color-p);
  border: none;
  padding: 6px 24px;
  border-radius: 30px;
}

.btn_packegeadded_btn {
  background: var(--payment-color);
  border: none;
  padding: 9px 30px;
  border-radius: 9px;
  font-weight: 500;
  color: var(--white-color);
  display: block;
}

.btn_packegeadd_btn {
  background: var(--saleText-color);
  border: none;
  padding: 9px 30px;
  border-radius: 9px;
  font-weight: 500;
  color: var(--white-color);
  display: block;
}

.plan-btn-bg {
  background: var(--white-color);
  padding: 11px 52px;
  display: inline-block;
  border-radius: 12px;
  color: var(--primary-color);
  font-weight: 400;
  font-family: "Salsa", cursive;
}

/* my profile section start  */
.single-view-photos .profile-photo {
  width: 88px;
  height: 96px;
  border-radius: 10px;
  object-fit: cover;
}

.single-view-photos .add-profile-photos {
  width: 88px;
  height: 96px;
  border-radius: 10px;
  background: #f4f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 28px;
  cursor: pointer;
}

.btn-profile-edits {
  background: transparent;
  border: none;
  font-size: 22px;
  line-height: 0;
  padding: 2px;
  color: var(--primary-color);
  cursor: pointer;
}

.change-btn-groups .btn-save-forms {
  background: var(--primary-color);
  border: none;
  color: var(--white-color-p);
  padding: 8px 28px;
  border-radius: 8px;
  font-weight: 500;
}

.common-left-profilebox {
  width: 30%;
}

.common-center-profilebox {
  width: 70%;
}

.common-center-userprofilebox {
  width: 50%;
}

.common-right-userprofilebox {
  width: 26%;
}

.common-right-userprofilebox .single-profile-box {
  width: 50%;
}

.user-online-status {
  height: 7px;
  width: 7px;
  border-radius: 100%;
  background: var(--payment-color);
  margin-left: 3px;
  margin-top: -14px;
  animation: StatusBlink 1.5s infinite ease-in-out alternate;
  -webkit-animation: StatusBlink 1.5s infinite ease-in-out alternate;
}

@keyframes StatusBlink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes StatusBlink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.view-profile-upload {
  background: var(--black-color-4);
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--white-color);
  border-radius: 100%;
  position: absolute;
  bottom: 12px;
  right: 10px;
  cursor: pointer;
  height: 38px;
  width: 38px;
  justify-content: center;
  border: 1px solid var(--black-color-5);
}

.common-profile-users {
  background: var(--black-color-3);
  padding: 22px 16px;
  border-radius: 12px;
  position: relative;
}

.mobile-email-verify {
  background: var(--black-color-3);
  padding: 18px 16px;
  border-radius: 12px;
  position: relative;
}

.profile-placeholder-upload {
  width: fit-content;
  margin: auto;
  position: relative;
}

.profile-placeholder-user {
  width: 162px;
  height: 162px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  margin: auto;
  border: 3px solid var(--black-color-5);
}

.profile-placeholder-small {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  margin: auto;
  border: 3px solid var(--black-color-5);
}

#small-profile-user,
#big-profile-user,
.mobile-email-verify {
  transition: opacity 0.3s ease;
}

.profile-rb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
  object-position: top;
  cursor: pointer;
}

.more-profiles-view {
  width: 100%;
  border-radius: 14px;
  height: 420px;
  object-fit: cover;
}

.more-small-users {
  width: 100%;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.more-small-users .small-user-profile {
  width: 100%;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  object-position: top;
  cursor: pointer;
}

.custom-more-profile .carousel-control-prev-icon,
.custom-more-profile .carousel-control-next-icon {
  background: var(--black-color-4);
  opacity: 1;
  height: 42px;
  width: 42px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.verified-profile-icon .verified-phone {
  font-size: 24px;
  line-height: 1;
  color: var(--white-color);
}

.verified-profile-icon .verified-check {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--payment-color);
  color: var(--white-color);
  font-size: 11px;
  border: 1px solid var(--white-color);
}

.verified-profile-icon .verified-cross {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--error-color);
  color: var(--white-color);
  font-size: 11px;
  border: 1px solid var(--white-color);
}

.verified-profiles {
  border-right: 1px solid var(--common-border);
}

.verified-profiles:last-child {
  border-right: none;
}

.verified-profile-icon {
  margin: auto;
  width: max-content;
}

.profile-topbar-boxlist li.prifie-look-li {
  width: 33.33%;
}

.user-action-btngroup {
  background: #ffffff14;
  padding: 14px;
  border-radius: 10px;
}

.user-action-btngroup .single-profile-box {
  width: 33.33%;
}

.profile-action-btn .btn-action {
  border: none;
  background: var(--black-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 26px;
  color: var(--white-color);
  height: 62px;
  width: 62px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.profile-action-btn .btn-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.profile-action-btn .btn-action:hover,
.profile-action-btn .btn-action:focus-visible {
  transform: translateY(-4px) scale(1.03);
  background: #132b63;
  box-shadow: 0 14px 30px rgba(0, 102, 255, 0.22);
}

.profile-action-btn .btn-action:hover::before,
.profile-action-btn .btn-action:focus-visible::before {
  opacity: 1;
}

.profile-action-btn .btn-action iconify-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.28s ease;
}

.profile-action-btn .btn-action:hover iconify-icon,
.profile-action-btn .btn-action:focus-visible iconify-icon {
  transform: scale(1.08);
}

.profile-expand-btn iconify-icon {
  height: 42px;
  width: 42px;
  background: var(--black-color-3);
  border-radius: 100%;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 28px;
}

.btn-common-user {
  background: transparent linear-gradient(91deg, #ff2c00 0%, #ffb300 100%) 0% 0%;
  height: 42px;
  width: 42px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border: none;
  color: var(--white-color);
  font-size: 24px;
}

.btn-common-user.btn-shortlist-user {
  background: transparent linear-gradient(91deg, #ff2c00 0%, #ffb300 100%) 0% 0%;
}

.btn-common-user.btn-connect-user {
  background: transparent linear-gradient(229deg, #ffc978 0%, #f73668 100%) 0% 0%;
}

.btn-common-user.btn-block-user {
  background: transparent linear-gradient(269deg, #dddddd 0%, #bdbdbd 100%) 0% 0%;
  color: #606060;
}

.btn-common-user.btn-chat-user {
  background: transparent linear-gradient(269deg, #73fce5 0%, #539bf9 100%) 0% 0%;
}

.btn-common-user.btn-video-user {
  background: transparent linear-gradient(91deg, #00a569 0%, #2acb90 100%) 0% 0%;
}

.btn-common-user.btn-audio-user {
  background: transparent linear-gradient(91deg, #ff4e88 0%, #f577a0 100%) 0% 0%;
}

.my-dashprowidthset {
  width: 142px;
  margin: auto;
}

.p-image .myprofileedit {
  height: 33px;
  width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--pink-color);
  position: absolute;
  right: 14px;
  bottom: 4px;
  border: 2px solid var(--white-color);
}

.multi-profilsbtns {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  color: var(--white-color);
  background: var(--pink-color);
  border: 1px solid var(--white-color);
  width: max-content;
  padding: 5px 12px;
  border-radius: 36px;
  position: absolute;
  top: 60px;
  left: -30px;
}

.right-listmainshort.bg-lightblue {
  background: #ffffff26;
  border-radius: 12px;
}

.right-listmainshort .center-line-profile {
  height: 50px;
  width: 1px;
  background: #ffffff36;
}

.progress-bar-boxs .progress {
  background: var(--black-color-4);
  justify-content: flex-start;
  border-radius: 41px;
  height: 5px;
  width: 100%;
  margin: 0;
}

.progress-bar {
  background: var(--green-color);
  border-radius: 14px;
}

.progress-edit-btn {
  background: var(--black-color-4);
  border: 1px solid var(--black-color-5);
  border-radius: 100%;
  height: 28px;
  width: 28px;
  min-width: 28px;
  color: var(--white-color);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leftbar-navlisting li .menu-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  padding: 10px 18px;
  color: var(--black-color);
  font-weight: 400;
  border-radius: 10px;
  transition: all 0.3s;
}

.sub-navlist-bar li .sub-menu-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  padding: 8px 18px;
  transition: all 0.3s;
  border-radius: 8px;
}

.sub-navlist-bar li .sub-menu-items.active,
.sub-navlist-bar li .sub-menu-items:hover {
  background: var(--primary-color);
  color: var(--white-color-p);
}

.leftbar-navlisting li .menu-items.active,
.leftbar-navlisting li .menu-items:hover {
  background: var(--primary-color);
  color: var(--white-color-p);
}

.leftbar-navlisting li .menu-items.active i,
.leftbar-navlisting li .menu-items:hover i {
  color: var(--white-color);
}

.verifyed-numbertext {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--white-color);
  box-shadow: 0px 1.933px 3.866px 0px rgba(33, 36, 41, 0.05);
  border: none;
  outline: none;
  border-radius: 12px;
  height: 66px;
  gap: 8px;
}

.notification-divdash {
  width: 66px;
  height: 66px;
  min-width: 66px;
  cursor: pointer;
}

.topcolleps-edtbar .btn-editfields {
  height: 34px;
  width: 34px;
  min-width: 34px;
  background: var(--primary-color);
  outline: none;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  color: var(--white-color-p);
  font-size: 18px;
}

.topcolleps-edtbar .profile-action-btn-2 {
  height: 34px;
  width: 34px;
  min-width: 34px;
  outline: none;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--white-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.topcolleps-edtbar .profile-action-btn-2:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.profile-action-btn-2.star-btn {
  background: #0d56de;
}

.profile-action-btn-2.heart-btn {
  background: #ff9b0f;
}

.profile-action-btn-2.message-btn {
  background: #8b5cf6;
}

.profile-action-btn-2.info-btn {
  background: var(--common-border);
}

.profile-arrow-collapse {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color) !important;
}

.profile-arrow-collapse.collapsed {
  transform: rotate(180deg);
}

.single_matchesdiv {
  position: relative;
  width: 100%;
  height: 242px;
  border-radius: 10px;
  overflow: hidden;
}

.single_matchesdiv .match-profiles {
  width: 100%;
  height: 242px;
  object-fit: cover;
  object-position: top;
}

.single_matchesdiv .matches-content-sd {
  background: linear-gradient(177deg,
      rgb(255 255 255 / 0%) 0%,
      rgb(0 0 0 / 32%) 46%,
      rgb(0 0 0 / 72%) 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 30px 10px 15px;
  border-radius: 10px;
  z-index: 2;
}

.lockprofiles-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #6d00731a 0%, #1800a91a 100%);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.lockprofiles-3::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-mask: url("https://api.iconify.design/si:lock-line.svg") no-repeat center / 32%;
  mask: url("https://api.iconify.design/si:lock-line.svg") no-repeat center / 32%;
  background-color: var(--white-color);
}

.topcolleps-edtbar .collapseicon::after {
  content: "";
  background: url(../img/icons/search-sidetoparrow.svg), var(--primary-color);
  background-repeat: no-repeat;
  height: 36px;
  width: 36px;
  background-position: center;
  background-size: 17px;
  border-radius: 5px;
  display: block;
  transition: unset;
}

.topcolleps-edtbar .collapseicon.collapsed::after {
  content: "";
  background: url(../img/icons/search-sidetoparrow.svg), var(--primary-color);
  background-repeat: no-repeat;
  height: 36px;
  width: 36px;
  background-position: center;
  background-size: 17px;
  border-radius: 5px;
  display: block;
  transform: rotate(180deg);
}

.premium-box-matches {
  border-radius: 16px;
  overflow: hidden;
  background:
    url(../images/premium-matches.png) no-repeat 0% 0%,
    linear-gradient(93.75deg, #ff5a8a 3.76%, #e8e8e8 90.19%);
}

.pro-common-leftbar {
  background: var(--black-color-1);
  border-radius: 16px;
  border: 1px solid var(--black-color-1);
  overflow: hidden;
}

.left-premiup-imgdiv .premium-sm-profile {
  width: 56px;
  min-width: 56px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
}

.right-premium-contents h4,
.right-premium-contents p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.left-premium-profile-list {
  max-height: 410px;
  overflow: auto;
}

.matches-left-main-profiles {
  width: 30%;
}

.matches-users-profiles {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  border: 1px solid var(--common-border);
}

.matches-users-profiles::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(178deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%);
}

.matches-users-profiles .matches-profiles {
  width: 100%;
  height: 254px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}

.profile-badge-common {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--white-color);
  color: #8800ff;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
}

.matchprofile-namestatus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
}

.matchprofile-namestatus .profile-user {
  font-weight: 600;
  color: var(--white-color);
  text-transform: capitalize;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.matches-calling-chats {
  justify-content: space-between;
  gap: 8px;
  background: var(--black-color-3);
  padding: 12px 8px;
  border-radius: 40px;
  border: 1px solid var(--common-border);
}

.matches-photo-protact::before {
  content: "\eb4a";
  font-family: "boxicons", sans-serif;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background: var(--white-color);
  font-size: 34px;
  color: var(--primary-color);
  z-index: 2;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.matches-photo-protact img {
  filter: blur(8px);
}

.matches-calling-chats .btn-matches-call {
  height: 42px;
  width: 42px;
  min-width: 42px;
  border-radius: 100%;
  border: none;
  background: var(--primary-color);
  font-size: 22px;
  color: var(--white-color-p);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.matches-calling-chats .btn-matches-call:hover {
  transform: scale(1.1);
}

.matches-calling-chats .btn-matches-call.audi-call {
  background: #17bd8e;
}

.matches-calling-chats .btn-matches-call.message {
  background: #1970e2;
}

.matches-calling-chats .btn-matches-call.more {
  background: var(--common-border);
}

.btn-matches-Shortlist {
  background: #0d56de;
  color: var(--white-color);
  border: 1px solid #0d56de;
  height: 50px;
  min-width: 68px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 38px;
  font-size: 16px;
  gap: 15px;
  padding: 0px 32px;
  padding-left: 4px;
}

.btn-matches-Interest {
  background: #ff9b0f;
  color: var(--white-color);
  border: 1px solid #ff9b0f;
  height: 50px;
  min-width: 68px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 38px;
  font-size: 16px;
  gap: 15px;
  padding: 0px 32px;
  padding-left: 2px;
}

.btn-matches-ContactRequest {
  background: #8b5cf6;
  color: var(--white-color);
  border: 1px solid #8b5cf6;
  height: 50px;
  min-width: 68px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 38px;
  font-size: 16px;
  gap: 15px;
  padding: 0px 32px;
  padding-left: 2px;
}

.btn-matches-Report {
  background: var(--common-border);
  color: var(--white-color);
  border: 1px solid var(--common-border);
  height: 50px;
  min-width: 68px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 38px;
  font-size: 15px;
  gap: 15px;
  padding: 0px 32px;
  padding-left: 2px;
}

.btn-matches-Shortlist iconify-icon {
  font-size: 27px;
  background: white;
  padding: 8px;
  border-radius: 32px;
  color: #0d56de;
}

.btn-matches-Interest iconify-icon {
  font-size: 27px;
  background: white;
  padding: 8px;
  border-radius: 32px;
  color: #ff9b0f;
}

.btn-matches-ContactRequest iconify-icon {
  font-size: 27px;
  background: white;
  padding: 8px;
  border-radius: 32px;
  color: #8b5cf6;
}

.btn-matches-Report iconify-icon {
  font-size: 27px;
  background: white;
  padding: 8px;
  border-radius: 32px;
  color: #4f4f4f;
}

.matches-right-main-contents {
  width: 70%;
}

.matches-details-lists {
  border-radius: 16px;
  background: transparent;
}

.matches-details-lists li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black-color-5);
  padding: 8px 0px;
  border-radius: 10px;
  margin: 0px 0px;
  gap: 6px;
}

.matches-details-lists li span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.common-matches-btn {
  color: var(--primary-color);
  background: #ff5a8a1a;
  height: 68px;
  width: 70px;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
}

.common-matches-btn.shortlist {
  background: #f2994a;
  color: var(--white-color);
}

.common-matches-btn.interest {
  background: #ff5a8a;
  color: var(--white-color);
}

.common-matches-btn.chat {
  background: #0084ff;
  color: var(--white-color);
}

.common-matches-btn.block {
  background: #f6f8fd;
  color: #adadad;
}

.single-matches-box-main {
  background: var(--black-color-1);
  border-radius: 16px;
  padding: 14px;
}

.matches-details-lists li.odd-matches {
  background: transparent;
  box-shadow: none;
}

.ui-menulist-design {
  background: var(--black-color-3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 1px;
  overflow: auto;
}

.ui-menulist-design::-webkit-scrollbar {
  height: 5px;
}

.ui-menulist-design li a {
  color: var(--white-color);
  font-weight: 400;
  padding: 10px 26px;
  text-wrap-mode: nowrap;
  margin: 0px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s;
}

.ui-menulist-design li a:hover,
.ui-menulist-design li a.active {
  background: var(--primary-color);
  opacity: 1;
}

/* photo request and express interest sent section start  */
.btnsgroup-trashchack .trash-btn-reque {
  height: 66px;
  width: 66px;
  border: none;
  min-width: 66px;
}

.select-allrequest {
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00000012;
  width: max-content;
  padding: 8px 26px 8px 14px;
  border-radius: 12px;
}

.lockprofiles-4::before {
  content: "\eb49";
  font-family: "boxicons", sans-serif;
  font-size: 34px;
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #6d00731a 0%, #1800a91a 100%);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}

.bg-nowhites .edit_inputMain-sltr .select2-container .select2-selection--single {
  border: none !important;
  box-shadow: 0px 1.933px 3.866px 0px rgba(33, 36, 41, 0.05);
  padding: 8px 24px;
  height: 66px;
}

.request-intrest-box {
  border-bottom: 1px solid var(--common-border);
  position: relative;
  display: flex;
  background: transparent;
  gap: 11px;
}




.inner-request-profile {
  height: 109px;
  width: 96px;
  min-width: 88px;
  border-radius: 10px;
  overflow: hidden;
}

.inner-request-profile .profile-request-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 0px;
}

.status-profils {
  background: #ffe8c7;
  color: var(--pending-textcolor);
  font-weight: 500;
  width: max-content;
  padding: 5px 13px;
  border-radius: 17px;
  height: fit-content;
}

.status-profils.accepted {
  background: var(--accept-bgcolor);
  color: var(--accept-textcolor);
}

.status-profils.pending {
  background: var(--pending-bgcolor);
  color: var(--pending-textcolor);
}

.status-profils.rejected {
  background: var(--sale-bg-color);
  color: var(--saleText-color);
}

.border-hr-line {
  border-color: var(--white-color-70);
  opacity: 1;
}

.request-intrest-bottom p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.btn-accept-btn {
  background: var(--primary-color);
  color: var(--white-color-p);
  padding: 9px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  border-radius: 40px;
  border: 1px solid var(--primary-color);
  position: relative;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-accept-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  background: #ffffff14;
  transition: width 0.4s ease;
  border-radius: 4px;
  transform: translate(-50%, -50%);
}

.btn-accept-btn:hover::before {
  width: 100%;
}

.shortlist-block-icon-text {
  position: absolute;
  right: 0;
  text-align: center;
  top: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-shortlisted-btn {
  background: #ff7700;
  color: var(--white-color);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #ff7700;
  position: relative;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 36px;
  width: 36px;
  margin: auto;
  font-size: 22px;
}

.btn-shortlisted-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  background: #ffffff14;
  transition: width 0.4s ease;
  border-radius: 4px;
  transform: translate(-50%, -50%);
}

.btn-shortlisted-btn:hover::before {
  width: 100%;
}

.btn-blocked-btn {
  border-radius: 30px;
  background: #ea0004;
  color: var(--white-color);
  border: 1px solid #ea0004;
  transition: all 0.3s ease;
  width: auto;
  height: auto;
}

.btn-blocked-btn:hover {
  background-color: transparent;
  color: #ea0004;
}

.view-profile-btn {
  border-radius: 30px;
  background: var(--primary-color);
  color: var(--white-color-p);
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
  width: auto;
  height: auto;
}

.view-profile-btn:hover {
  background-color: transparent;
  color: var(--white-color-p);
}

.btn-reject-btn {
  position: relative;
  padding: 9px 25px;
  font-weight: 400;
  border-radius: 40px;
  display: inline-block;
  color: var(--white-color);
  text-decoration: none;
  background: var(--black-color-3);
  transition: all 0.3s;
  border: 1px solid var(--black-color-4);
}

.btn-reject-btn:hover {
  background: var(--black-color-4);
}

/* end  */

/* chat section start  */
.user-chatprofiles {
  border-radius: 100%;
  /* overflow: hidden; */
  height: 54px;
  width: 54px;
  min-width: 54px;
  position: relative;
}

.user-chatprofiles .chatuser {
  height: 54px;
  width: 54px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
}

.single-chats-divmain .chat-flexsingles {
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  background: transparent;
  transition: all 0.4s;
}

.single-chats-divmain.active .chat-flexsingles,
.single-chats-divmain:hover .chat-flexsingles {
  background: var(--black-color-3);
}

.chats-listings-box {
  overflow: auto;
  max-height: 620px;
}

.chat-previewcontents h4,
.chat-previewcontents p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.chat-previewcontents .receiver {
  transform: rotate(-45deg);
  font-size: 18px;
  color: var(--accept-textcolor);
}

.chat-previewcontents .sender {
  transform: rotate(145deg);
  font-size: 18px;
  color: var(--accept-textcolor);
}

.back-chatbtn {
  background: var(--black-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 400;
  color: var(--white-color);
  transition: 0.3s;
  border: 1px solid var(--black-color-4);
  height: 42px;
  width: 42px;
  border-radius: 8px;
  font-size: 22px;
}

.user-dp-profiles {
  height: 46px;
  width: 46px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}

.user-dp-profiles .prifile-dp {
  height: 46px;
  width: 46px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
}

.name-statususer .username {
  font-weight: 600;
  color: var(--white-color);
  line-height: 16px;
  padding-top: 5px;
}

.name-statususer .status-usersview::before {
  content: "";
  height: 8px;
  width: 8px;
  display: inline-block;
  border-radius: 100%;
  background-color: var(--accept-textcolor);
  min-width: 8px;
  margin-right: 4px;
  position: relative;
  top: 1px;
}

.name-statususer .status-usersview.online::before {
  background: var(--accept-textcolor);
}

.name-statususer .status-usersview.away::before {
  background: var(--pending-textcolor);
}

.name-statususer .status-usersview.invisuble::before {
  background: #acb5bd;
}

.name-statususer .status-usersview.nodistrub::before {
  background: var(--saleText-color);
}

.call-voice-video {
  background: var(--black-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 400;
  color: var(--white-color);
  transition: all 0.3s;
  border: 1px solid var(--black-color-4);
  height: 42px;
  width: 42px;
  border-radius: 10px;
  font-size: 20px;
}

.inner_chatspanelmng .chat_headers-lites {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0px 20px 0px;
  border-bottom: 1px solid var(--common-border);
  position: relative;
  gap: 6px;
}

.inner_chatspanelmng .chats_middlesScreen-main {
  padding: 10px 24px;
  height: 360px;
  overflow: auto;
}

.receive-messages .receive-single-msg {
  background: var(--black-color-3);
  border-radius: 10px;
  width: fit-content;
  max-width: 258px;
  margin-bottom: 4px;
  padding: 8px 16px;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  word-wrap: break-word;
}

.receive-user-dp,
.send-user-dp {
  height: 40px;
  width: 40px;
  min-width: 40px;
  overflow: hidden;
  border-radius: 100%;
  position: relative;
}

.receive-user-dp .reciveuser-profile,
.send-user-dp .senduser-profile {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
}

.send-messages .send-single-msg {
  background: var(--primary-color);
  border-radius: 10px;
  max-width: 258px;
  margin-bottom: 4px;
  padding: 8px 12px;
  margin-inline-start: auto;
  color: var(--white-color-p);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  position: relative;
  word-wrap: break-word;
  width: fit-content;
}

.inner_chatspanelmng .chats_bottomsmaindivs {
  padding: 24px 0px 0px;
}

.send-msgboxed-mn .typing-msgdiv {
  width: 100%;
  padding: 13px 45px 13px 20px;
  height: 52px;
  border-radius: 85px;
  border: 1px solid var(--black-color-4);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  resize: none;
  background: var(--black-color-3);
}

.send-msgboxed-mn .send-msgbtn {
  background: var(--black-color);
  border: none;
  position: absolute;
  right: 5px;
  top: 5px;
  transition: all 0.2s;
  border-radius: 48px;
  color: var(--white-color);
  height: 42px;
  width: 42px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-msgboxed-mn .send-msgbtn:hover {
  background: var(--black-color-2);
}

.top_chatsearchbar .serach-btn {
  position: absolute;
  right: 18px;
  bottom: 10px;
  background: transparent;
  border: none;
  outline: none;
}

.chatright-status .commonstatus::before {
  content: "";
  height: 8px;
  width: 8px;
  display: inline-block;
  border-radius: 100%;
  background-color: var(--accept-textcolor);
  min-width: 8px;
  margin-right: 6px;
  position: relative;
  top: 1px;
}

.chatright-status .commonstatus.online::before {
  background: var(--accept-textcolor);
}

.chatright-status .commonstatus.away::before {
  background: var(--pending-textcolor);
}

.chatright-status .commonstatus.invisuble::before {
  background: #acb5bd;
}

.user-chatprofiles .chatuser-online {
  height: 42px;
  width: 42px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}

.viode-audio-outgoing {
  background: var(--primary-color);
  border-radius: 12px;
  width: auto;
  max-width: 258px;
  margin-bottom: 6px;
  padding: 11px 62px 11px 12px;
  margin-inline-start: auto;
  color: var(--white-color-p);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-outgoing-icon {
  height: 38px;
  width: 38px;
  min-width: 38px;
  background: var(--white-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--black-color-3);
}

.outgoing-call-contents h4 {
  font-size: 14px;
  font-weight: 600;
}

.outgoing-call-contents p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.time-outgoing-call {
  color: var(--white-color-70);
  font-weight: 400;
  font-size: 11px;
  position: absolute;
  right: 10px;
  bottom: 1px;
}

.viode-audio-incoming {
  background: var(--black-color-3);
  border-radius: 12px;
  width: auto;
  max-width: 258px;
  margin-bottom: 6px;
  padding: 11px 62px 11px 12px;
  color: var(--black-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-incoming-icon {
  height: 38px;
  width: 38px;
  min-width: 38px;
  background: var(--black-color-4);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white-color);
}

.incoming-call-contents h4 {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 600;
}

.incoming-call-contents p {
  color: var(--white-color-70);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.time-incoming-call {
  color: var(--white-color-70);
  font-weight: 400;
  font-size: 11px;
  position: absolute;
  right: 10px;
  bottom: 1px;
}

.call-incoming-icon.miss-call {
  color: var(--saleText-color);
}

.call-incoming-icon.in-call {
  color: var(--green-color);
}

.send-msg-timing {
  color: var(--white-color-70);
  font-weight: 400;
  font-size: 11px;
  text-align: end;
}

.receive-msg-timing {
  color: var(--white-color-70);
  font-weight: 400;
  font-size: 11px;
  text-align: start;
}

.call-history-box {
  cursor: pointer;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid var(--black-color-4);
  background: var(--black-color-3);
  transition: all 0.4s;
}

.btn-history-call-voice {
  background: var(--primary-color);
  border: none;
  color: var(--white-color-p);
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 18px;
}

.btn-history-call-video {
  background: var(--primary-color);
  border: none;
  color: var(--white-color-p);
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 18px;
}

.ouotgoin-miss-call {
  display: flex;
  color: var(--saleText-color);
}

.incommin-miss-call {
  display: flex;
  color: var(--green-color);
}

/* short list profile & block profile section start  */
.right-btngroupreg .shortlist-btns {
  height: 37px;
  width: 37px;
  border: none;
  background: var(--pink-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* viewed profiles start  */
.viewed-profile-box {
  border: 1px solid var(--common-border);
  border-radius: 16px;
  margin-top: 48px;
}

.top-viewed-profiles {
  margin-top: -65px;
}

.viewed-inner-profile {
  height: 200px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.viewed-inner-profile .view-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.btn-view-profile-delete {
  border-radius: 100%;
  background: var(--black-color-3);
  border: 1px solid var(--black-color-4);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: absolute;
  right: 9px;
  top: 10px;
  height: 34px;
  width: 34px;
  font-size: 18px;
}

.viewed-profile-box .commom-checkboxdiv-l {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
}

/* privacy settings start */
.left-settingPanels .nav .nav-link {
  width: 100%;
  text-align: start;
  padding: 10px 18px;
  background: transparent;
  color: var(--white-color);
  border-radius: 8px;
  border: 1px solid var(--common-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
}

.left-settingPanels .nav-pills .nav-link.active,
.left-settingPanels .nav-pills .show>.nav-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.privacy-setting-radio .setting-radio-label {
  color: var(--white-color);
  font-weight: 400;
  background: var(--black-color-3);
  padding: 5px 16px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--black-color-4);
}

.privacy-setting-radio input:checked~.setting-radio-label {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color-p);
}

.message-switch-check .switch-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 44px;
  height: 22px;
  background: var(--black-color-2);
  display: block;
  border-radius: 100px;
  position: relative;
}

.message-switch-check .switch-label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--white-color);
  border-radius: 90px;
  transition: 0.3s;
}

.message-switch-check input:checked+.switch-label {
  background: var(--primary-color);
}

.message-switch-check input:checked+.switch-label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.message-switch-check .switch-label:active:after {
  width: 19px;
}

.manage-message-privacy {
  color: var(--black-color);
  font-weight: 400;
  background: var(--black-color-3);
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--black-color-4);
}

.common-setting-chechbox {
  border-bottom: 1px solid var(--common-border);
}

.common-setting-chechbox .setting-checkbox {
  cursor: pointer;
  text-indent: -9999px;
  width: 44px;
  height: 22px;
  background: var(--black-color-3);
  display: block;
  border-radius: 100px;
  position: relative;
}

.common-setting-chechbox .setting-checkbox:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--white-color);
  border-radius: 90px;
  transition: 0.3s;
}

.common-setting-chechbox input:checked+.setting-checkbox {
  background: var(--primary-color);
}

.common-setting-chechbox input:checked+.setting-checkbox:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.common-setting-chechbox .setting-checkbox:active:after {
  width: 19px;
}

/* user profile section */
.preview-user-arrow {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 22px;
  z-index: 2;
}

.next-user-arrow {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 22px;
  z-index: 2;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.preview-user-arrow.disabled,
.next-user-arrow.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.user-prfilesimg-groups .biguser-img {
  width: 100%;
  height: 316px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

.action-profile-user .singleBig {
  width: 100%;
  height: 316px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.common-user-sm {
  border-radius: 12px;
  width: 100%;
  height: 100px;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.common-user-sm .smalluser-img {
  border-radius: 12px;
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: top;
}

.user-prfilesimg-groups .multiple-smalls {
  width: 28%;
}

/* faq section start  */
.main-ctmacordion .accordion-item {
  background: var(--black-color-3);
  border-radius: 12px;
  border: none;
  padding: 15px 20px;
}

.main-ctmacordion .accordion-item .accordion-button {
  background: transparent;
  border: none;
  box-shadow: none;
  font-weight: 500;
  color: var(--white-color);
  padding: 0;
}

.main-ctmacordion .accordion-item .accordion-body {
  padding: 0;
}

.main-ctmacordion .accordion-header .accordion-button::after {
  content: "";
  -webkit-mask: url(https://api.iconify.design/ep:arrow-down-bold.svg) no-repeat center;
  -webkit-mask-size: contain;
  font-family: "boxicons", sans-serif;
  background: var(--white-color-70);
  font-size: 16px;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* current plan section start  */
.print-btninvoiced {
  border-radius: 44px;
  background: var(--primary-color);
  color: var(--white-color-p);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  border: 1px solid #00000012;
  padding: 8px 32px;
  height: 48px;
}

.downloadBtn_invoiced {
  height: 48px;
  width: 48px;
  min-width: 48px;
  border-radius: 100%;
  border: 1px solid var(--black-color-5);
  background: var(--black-color-5);
  color: var(--white-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan_paydetails {
  border: 1px dashed var(--common-border);
  border-radius: 12px;
  width: 100%;
  align-items: center;
}

.lx-setdeea .view-btn-invoice {
  font-size: 14px;
  color: var(--white-color);
  background: var(--black-color-4);
  border: none;
  border-radius: 9px;
  width: 150px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.single-addon-box:last-child {
  border: none;
}

.currant-plan-icon {
  height: 52px;
  width: 52px;
  min-width: 52px;
  color: var(--white-color);
  background: var(--black-color-4);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.remove-package {
  font-size: 12px;
  color: #dc3545 !important;
}

.btn-applied-coupon {
  background: var(--green-color-n);
  color: var(--white-color);
  border: none;
  padding: 7px 24px;
  border-radius: 8px;
}

.history-plan-icon {
  height: 48px;
  width: 48px;
  min-width: 48px;
  color: var(--white-color);
  background: var(--black-color-4);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.btn-plan-print {
  display: flex;
  align-items: center;
  height: 42px;
  background: var(--black-color-4);
  border: none;
  color: var(--white-color);
  padding: 8px 22px;
  gap: 4px;
  border-radius: 10px;
  transition: all 0.4s;
}

.btn-plan-download {
  display: flex;
  align-items: center;
  height: 42px;
  background: var(--primary-color);
  border: none;
  color: var(--white-color-p);
  padding: 8px 22px;
  gap: 4px;
  border-radius: 10px;
  transition: all 0.4s;
  border: 1px solid var(--primary-color);
}

.getstarted-btn-how {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--primary-color);
  padding: 9px 28px;
  border-radius: 10px;
  color: var(--white-color-p);
  background: var(--primary-color);
  text-transform: capitalize;
  width: max-content;
  font-weight: 500;
  transition: all 0.3s;
}

.getstarted-btn-how:hover {
  color: var(--primary-color);
  background: transparent;
}

.delete-profile-how {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--error-color);
  padding: 9px 28px;
  border-radius: 10px;
  color: var(--white-color);
  background: var(--error-color);
  text-transform: capitalize;
  width: max-content;
  font-weight: 500;
  transition: all 0.3s;
}

.delete-profile-how:hover {
  color: var(--error-color);
  background: transparent;
}

.btn-plan-print.arrow-collapse.collapsed iconify-icon {
  transform: rotate(0deg);
}

.btn-plan-print.arrow-collapse iconify-icon {
  transform: rotate(180deg);
}

/* meeting page  */
.meeting-status-images .user-meeting-img {
  width: 167px;
  height: 186px;
  border-radius: 12px;
  object-fit: cover;
}

.meeting-status {
  width: max-content;
  background: var(--primary-color);
  margin: auto;
  margin-top: -17px;
  position: relative;
  z-index: 1;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 40px;
  color: var(--white-color-p);
  border: 2px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  font-weight: 600;
}

.meeting-status.accept {
  background: var(--accept-bgcolor);
  color: var(--accept-textcolor);
}

.meeting-status.reject {
  background: var(--sale-bg-color);
  color: var(--saleText-color);
}

.meeting-status.pending {
  background: var(--pending-bgcolor);
  color: var(--pending-textcolor);
}

.btn-meeting-accept {
  background: var(--accept-textcolor);
  padding: 8px 32px;
  border-radius: 40px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: 500;
}

.btn-meeting-reject {
  background: var(--saleText-color);
  padding: 8px 32px;
  border-radius: 40px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: 500;
}

.complate-metting-suggest {
  border-top: 1px solid var(--common-border);
}

.meeting-status-images {
  width: max-content;
}

.btn-meeting-modal {
  font-size: 15px;
  color: var(--white-color-p) !important;
  background: var(--primary-color);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  width: fit-content;
  padding: 10px 52px;
  font-weight: 500;
}

/* vendor section start  */
.vender-items-img .vendor-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--common-border);
}

.vendor-gried-content {
  padding: 12px;
  background: #2d2d2d;
  border-radius: 12px;
  margin-top: 10px;
}

.vendor-gried-box {
  background: var(--black-color-1);
  padding: 10px;
  border-radius: 14px;
}

.vendor-number-box {
  background: var(--primary-color);
  padding: 4px 22px;
  border-radius: 40px;
  color: var(--white-color-p);
  font-weight: 600;
  border: none;
}

.slider-big-vendor .vendor-big-img {
  width: 100%;
  height: 276px;
  object-fit: cover;
  border-radius: 12px;
}

.vendor-list-left .vendor-list-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}

.vendor-list-card {
  background: var(--black-color-1);
  border: 1px solid var(--common-border);
  border-radius: 14px;
  box-shadow: 0px 10px 26px #0000001a;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.vendor-list-card:hover {
  transform: translateY(-2px);
  border-color: var(--black-color-4);
  box-shadow: 0px 14px 30px #00000024;
}

.vendor-list-left {
  border-radius: 12px;
  overflow: hidden;
}

.vendor-verified-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0f1522cc;
  border: 1px solid #ffffff2e;
  border-radius: 40px;
  padding: 6px 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.right-vendor-planner {
  min-height: 100%;
}

.vendor-list-meta .vendor-single-contact {
  min-height: 36px;
}

.vendor-list-meta .vendor-single-contact p {
  line-height: 1.45;
}

.vendor-list-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--common-border);
}

.vendor-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0px 14px;
  border-radius: 9px;
  border: 1px solid var(--common-border);
  color: var(--white-color);
  background: var(--black-color-2);
  transition: all 0.3s ease;
}

.vendor-action-btn iconify-icon {
  font-size: 18px;
}

.vendor-action-btn:hover {
  color: var(--white-color-p);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.vendor-action-btn.call-btn {
  background: transparent;
}

.vendor-action-btn.whatsapp-btn {
  color: #ffffff;
  border-color: #25d36666;
  background: #119b44;
}

.vendor-action-btn.whatsapp-btn:hover {
  color: #ffffff;
  background: #25d366;
  border-color: #25d366;
}

.vendor-action-btn.enquiry-btn {
  background: var(--primary-color);
}

.vendor-planer-contents p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.vendor-social a {
  height: 38px;
  width: 38px;
  background: var(--black-color-3);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition: all 0.3s;
}

.btn-view-vendors {
  background: linear-gradient(90deg, #6d00731a 0%, #1800a91a 100%);
  border: 1px solid #00000012;
  padding: 11px 28px;
  border-radius: 12px;
  font-weight: 500;
}

.items-small-vendor .vendor-small-img {
  width: 100%;
  border-radius: 10px;
  height: 66px;
  object-fit: cover;
  cursor: pointer;
}

.slider-small-vendor .slick-track {
  display: flex;
  gap: 8px;
}

.vendoe-planner-review iconify-icon {
  color: #f9dc6e;
}

.top-right-contents .pricing-vendors {
  background: var(--primary-color);
  color: var(--white-color-p);
  padding: 10px 17px;
  border-radius: 12px;
  font-weight: 600;
}

.icon-contact-vendor {
  height: 42px;
  width: 42px;
  min-width: 42px;
  background: var(--black-color-4);
  border-radius: 100%;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon-contact-vendor.primary-icon {
  background: var(--primary-color);
}

.vendor-contact-list .vendor-single-contact {
  width: 50%;
}

.icon-contact-vendor.sm-size {
  height: 36px;
  width: 36px;
  min-width: 36px;
  font-size: 20px;
}

.btn-vendor-search {
  background: var(--primary-color);
  color: var(--white-color-p);
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 48px;
  min-width: 48px;
}

.vendor-common-topbar {
  background: url(../images/vendor-top-bg.png) no-repeat;
  background-size: cover;
  min-height: 280px;
  border-radius: 0px;
  overflow: hidden;
  background-position: center;
}

.vendor-common-topbar::before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(179deg,
      var(--black-color) 0%,
      rgb(13 21 33 / 75%) 46%,
      var(--black-color) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.vendor-common-topbar.event-bnr {
  background: url(../images/event-top-bg.png) no-repeat;
}

.vendor-common-topbar.event-bnr::before {
  background: linear-gradient(179deg,
      var(--black-color) 0%,
      rgb(13 21 33 / 75%) 46%,
      var(--black-color) 100%);
}

.vendor-details-contents {
  margin-top: -140px;
}

.vendor-detail-v2 .common-bgwhite-main {
  border-radius: 20px;
}

.vendor-detail-v2 .vendor-gallery-top .slider-big-vendor {
  width: calc(100% - 86px);
}

.vendor-detail-v2 .vendor-gallery-top .slider-small-vendor {
  width: 76px;
  overflow: hidden;
}

.vendor-detail-v2 .slider-big-vendor .vendor-big-img {
  height: 380px;
  border-radius: 14px;
}

.vendor-detail-v2 .slider-small-vendor .slick-list {
  height: 380px !important;
}

.vendor-detail-v2 .slider-small-vendor.slick-vertical .slick-track {
  display: block !important;
}

.vendor-detail-v2 .slider-small-vendor .slick-track {
  gap: 0;
}

.vendor-detail-v2 .items-small-vendor .vendor-small-img {
  height: 86px;
  border-radius: 10px;
}

.vendor-detail-v2 .slider-small-vendor .slick-slide {
  margin-bottom: 8px;
}

.vendor-detail-v2 .pricing-vendors {
  background: var(--primary-color);
  color: var(--white-color-p);
  border-radius: 13px;
  padding: 16px 16px;
  font-weight: 600;
  line-height: 1.2;
}

.vendor-detail-v2 .pricing-vendors span {
  font-weight: 700;
}

.vendor-detail-v2 .vendor-contact-list {
  flex-wrap: wrap;
}

.vendor-detail-v2 .vendor-contact-list .vendor-single-contact {
  width: 33.333%;
}

.vendor-detail-v2 .vendor-planer-contents p {
  text-overflow: unset;
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
}

.vendor-detail-v2 .single-side-lists {
  border-bottom: 1px solid var(--black-color-3);
}

.vendor-detail-v2 .single-side-lists:last-child {
  border-bottom: none;
}

.vendor-captcha-row .vendor-captcha-box {
  min-width: 116px;
  height: 52px;
  border-radius: 10px;
  background: #f9d200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendor-detail-v2 .review-user-icon {
  min-width: 64px;
  width: 64px;
  height: 64px;
  font-size: 30px;
}

.vendor-detail-v2 .min-auto-width {
  min-width: 160px;
}

.event-details-views {
  margin-top: -140px;
}

.event-checkout-views {
  margin-top: -230px;
}

.checkout-coupon-form input {
  height: 44px;
  border-radius: 30px;
  padding-right: 96px;
}

.checkout-coupon-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 36px;
  min-width: 74px;
  border: none;
  border-radius: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 14px;
}

.event-inner-section,
.vendor-inner-section {
  margin-top: -214px;
  position: relative;
  z-index: 1;
}

.contact-help-leftbar {
  background: var(--black-color-1);
  border: 1px solid var(--black-color-1);
  border-radius: 12px;
}

.left-help-listing .help-left-contents {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--common-border);
  padding: 12px 0px;
  cursor: pointer;
}

.left-help-listing .help-left-contents:last-child {
  border-bottom: none;
}

.single-addon-box {
  border-bottom: 1px solid var(--common-border);
}

.help-left-contents .left-help-icon {
  height: 44px;
  width: 44px;
  min-width: 44px;
  object-fit: contain;
}

/* all modal popup design  */
.customsmallmodel_light {
  background: #000000bf;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.customsmallmodel_light .modal-content {
  background: var(--black-color-1);
}

.custom-more-profile {
  background: #000000bf;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.customsmallmodel_light.couponsize .modal-dialog {
  width: 780px;
  max-width: 780px;
}

.announcement-modal .modal-dialog {
  width: 780px;
  max-width: 780px;
}

.customsmallmodel_light.alertsize .modal-dialog {
  width: 440px;
  max-width: 780px;
}

.customsmallmodel_light.loginmodel .modal-dialog {
  width: 560px;
  max-width: 780px;
}

.customsmallmodel_light.photo-request .modal-dialog {
  width: 500px;
  max-width: 780px;
}

.customsmallmodel_light .modal-dialog {
  width: 548px;
  max-width: 548px;
}

.customsmallmodel_light.vendor-size .modal-dialog {
  width: 950px;
  max-width: 950px;
}

.custom-more-profile .modal-dialog {
  width: 440px;
  max-width: 440px;
}

.customsmallmodel_light .modal-content .modal-header {
  padding: 0;
  border-bottom: none;
  padding-bottom: 15px;
}

.customsmallmodel_light .modal-header .btn-close {
  box-shadow: none;
  background: var(--black-color-4);
  opacity: 1;
  border: none;
  padding: 0;
  height: 32px;
  width: 32px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 0;
  color: var(--white-color-70);
}

.custom-more-profile .modal-header .btn-close {
  box-shadow: none;
  background: var(--black-color);
  opacity: 1;
  padding: 0;
  height: 32px;
  width: 32px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 0;
  color: var(--white-color);
  position: absolute;
  right: 25px;
  top: 24px;
  z-index: 9;
}

.modal-buttonsGroup .click-changeButton {
  padding: 11px 34px;
  color: var(--white-color-p);
  font-size: 14px;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  border-radius: 40px;
  display: inline-block;
  transition: all 0.2s;
  font-weight: 400;
}

.modal-buttonsGroup .clickClosebutton {
  padding: 11px 34px;
  color: var(--white-color-70);
  background: transparent;
  font-size: 14px;
  border: 1px solid var(--white-color-70);
  border-radius: 40px;
  display: inline-block;
  transition: all 0.2s;
  font-weight: 400;
}

.number-editsbtn {
  height: 48px;
  width: 48px;
  min-width: 48px;
  border-radius: 100%;
  border: none;
  background: var(--black-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 22px;
}

.paymentbuttons-check {
  height: 46px;
  width: 160px;
  border-radius: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 14px;
  background: var(--payment-color);
  color: var(--white-color) !important;
  font-size: 15px;
  font-weight: 500;
}

.paymentbuttons-check.fail {
  background: var(--error-color);
}

.payment-innnerstyle .paymet-icon {
  width: 120px;
}

.coupncodeboxinr .copu-codebtn {
  height: 32px;
  width: 32px;
  background: var(--black-color-4);
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black-color-5);
  color: var(--white-color-70);
  font-size: 15px;
}

.customsmallmodel_light .modal_liteBody {
  max-height: 462px;
  overflow: auto;
}

.modal_announce-body .profile-img-art {
  width: 100%;
  display: block;
  border-radius: 14px;
  height: 380px;
  object-fit: cover;
}

.modal_announce-body .items-image-dark::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0000004a;
  border-radius: 14px;
}

.modal_announce-body .carousel-control-prev,
.modal_announce-body .carousel-control-next {
  top: 190px;
  bottom: unset;
}

.modal_announce-body .carousel-control-prev-icon {
  height: 38px;
  width: 38px;
  background: #0000008f;
  font-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_announce-body .carousel-control-next-icon {
  height: 38px;
  width: 38px;
  background: #0000008f;
  font-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* invoice css  */
.invoice_logo .invoice-logo {
  width: 140px;
}

.invoice_headerbar {
  border-bottom: 1px solid var(--common-border);
}

.invoicetables table thead tr th {
  padding: 5px 12px;
  text-align: center;
  font-weight: 500;
  color: var(--white-color);
  font-size: 15px;
  border-right: 1px solid var(--common-border);
  border-bottom: 1px solid var(--common-border);
}

.invoicetables table tbody tr td {
  padding: 10px 12px;
  text-align: center;
  font-weight: 400;
  color: var(--white-color);
  font-size: 13px;
  border-right: 1px solid var(--common-border);
}

.invoicetables .innertableinvoice {
  border: 1px solid var(--common-border);
  border-radius: 8px;
  padding: 4px;
  overflow: auto;
}

.invoicetables table thead tr th:first-child {
  border-radius: 6px 0px 0px 6px;
}

.invoicetables table thead tr th:last-child {
  border-radius: 0px 6px 6px 0px;
  border-right: none;
}

.invoicetables table tbody tr td:last-child {
  border-right: 0px;
}

.invoicetables table thead tr th.darkclr {
  color: var(--error-color);
}

.invoicetables table tbody tr td.txtbig {
  font-size: 14px;
  font-weight: 500;
}

.invoice_footers {
  border-top: 1px solid var(--common-border);
}

.gstsetintable {
  border-bottom: 1px solid var(--common-border);
  width: fit-content;
  margin-left: auto;
  padding-left: 24px;
  padding-bottom: 10px;
}

.view_profileIcons {
  position: absolute;
  right: 12px;
  top: 10px;
  background: #d9475c75;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.usrt-profilesnterjgbsbs {
  padding: 7px;
  background: #f1f7fe;
  border-radius: 12px;
}

.group-btn-gried_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 8px;
  position: relative;
  top: 33px;
  margin-top: -25px;
}

.usrt-profilesnterjgbsbs:hover .single_matchesdiv .view_profileIcons {
  background: var(--pink-color);
}

.usrt-profilesnterjgbsbs:hover {
  background: #e5eef8;
}

.usrt-profilesnterjgbsbs:hover .single_matchesdiv .matches-content-sd {
  background: linear-gradient(177deg,
      rgb(255 255 255 / 0%) 0%,
      rgb(217 71 92 / 8%) 46%,
      rgb(217 71 92 / 58%) 100%);
}

/* dashboard section start  */
.dashboard-profile-slider .slick-track {
  margin-left: 0;
}

.dashboard-single-profile {
  background: var(--black-color-1);
  border-radius: 12px;
}

.dashboard-profile {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

.bottom-dashboar-content p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.single-dashboard-profiles {
  border-radius: 14px;
  background: var(--black-color-1);
  width: 100%;
  border: 1px solid var(--common-border);
}

.profile-box-whitebg {
  border-radius: 14px;
  padding: 8px 8px 2px;
}

.profile-box-whitebg .tops_imagesdsd {
  display: inline-block;
  margin: auto;
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 12px;
}

.tops_imagesdsd .lastprofileimg {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  transition: all 0.4s;
}

.profile-dashboard-text p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.tops_imagesdsd:hover .lastprofileimg {
  transform: scale(1.2);
}

.tops_imagesdsd .commanbadge {
  position: absolute;
  left: 12px;
  top: 7px;
  background: #2edbb2;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  border-radius: 20px;
  padding: 5px 14px;
  transition: all 0.3s;
  z-index: 2;
}

.tops_imagesdsd .commanbadge.dimand {
  color: #fff;
  background: #2edbb2;
}

.tops_imagesdsd .commanbadge.Platinum {
  color: #fff;
  background: #db2eb5;
}

.tops_imagesdsd .commanbadge.Silver {
  color: #fff;
  background: #3c2edb;
}

.tops_imagesdsd .commanbadge.Gold {
  color: #fff;
  background: #dbc02e;
}

.tops_imagesdsd .commanbadge.Free {
  color: #fff;
  background: #838383;
}

.tops_imagesdsd .commanbadge.DimandPlus {
  color: #fff;
  background: #f784ad;
}

.tops_imagesdsd:hover .commanbadge {
  margin-left: 20px;
}

/* invite friend section start  */
.invite-share-icon {
  height: 46px;
  width: 46px;
  min-width: 46px;
  background: var(--black-color-4);
  border: 1px solid var(--common-border);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white-color);
}

.copy_text-views {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--black-color-4);
  align-items: center;
  border-radius: 10px;
  border: 1px dashed var(--common-border);
  color: var(--white-color);
}

.social_invites-icons .invite-border {
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--black-color-4);
  font-size: 20px;
  color: var(--white-color);
}

.href-link {
  color: #4165f5;
}

/* Call Connecting  */
.zegocloud-connecting {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.callconnect-pulse i {
  color: var(--white-color);
  font-size: 32px;
}

.callconnect-pulse {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: #44bd32;
  background-image: radial-gradient(hsl(112, 58%, 40%), hsl(112, 58%, 47%));
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.callconnect-pulse::before,
.callconnect-pulse::after {
  content: "";
  position: absolute;
  width: calc(100%);
  height: calc(100%);
  border-radius: 50%;
  border: 1px solid #44bd32;
  animation: calling 2s ease-in-out infinite;
}

.callconnect-pulse::after {
  animation: calling 2s ease-in-out 0.35s infinite;
}

@keyframes calling {
  0% {
    width: calc(100%);
    height: calc(100%);
    opacity: 1;
  }

  100% {
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    opacity: 0;
  }
}

.cropping_imagmain img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
}

.modal-header .ctmcropclose {
  position: absolute;
  right: -18px;
  top: -16px;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 100%;
  padding: 0;
  background: var(--primary-color);
  color: var(--white-color-p);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* browse matrimony section start  */
.browse-poster-contents .browse-banner {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--common-border);
}

.browse-city-list li {
  width: 24%;
  display: flex;
  align-items: center;
}

.browse-city-list li .city-items {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black-color-3);
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  color: var(--white-color);
}

.browse-city-list li .city-arrow {
  height: 30px;
  width: 30px;
  min-width: 30px;
  background: var(--white-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--black-color);
  margin-left: -20px;
}

.browse-city-list li .city-items:hover {
  background: var(--primary-color);
  color: var(--white-color-p);
}

.breadcrumb-browse {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black-color-1);
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--white-color);
  border: 1px solid var(--common-border);
}

.browse-religion-list .religion-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 500;
  color: var(--white-color);
}

.browse-religion-list .religion-item:hover a,
.browse-religion-list .religion-item.active a {
  color: var(--primary-color);
}

.browse-religion-list .religion-item a span {
  height: 30px;
  width: 30px;
  background: var(--white-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--black-color);
}

.browse-religion-list .religion-item:hover a span,
.browse-religion-list .religion-item.active a span {
  color: var(--white-color-p);
  background: var(--primary-color);
}

.more-religion .more-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
  color: #0084ff;
}

.more-religion .more-items span {
  height: 30px;
  width: 30px;
  background: #f6f8fd;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--black-color);
}

.with-photos-search label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 8px 11px 12px;
  border-radius: 10px;
  font-weight: 400;
  cursor: pointer;
  color: var(--white-color);
  position: relative;
}

.with-photos-search label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--white-color-70);
  background-color: transparent;
  transition: all 0.2s ease;
}

.with-photos-search label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0;
}

.with-photos-search input:checked+label::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.with-photos-search input:checked+label::after {
  opacity: 1;
  -webkit-mask: url("https://api.iconify.design/iconamoon:check-fill.svg") no-repeat center / 75%;
  mask: url("https://api.iconify.design/iconamoon:check-fill.svg") no-repeat center / 75%;
  background-color: var(--white-color);
}

.btn_register_browse {
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 35px;
  width: max-content;
  border-radius: 10px;
  color: var(--white-color-p);
  font-weight: 400;
  transition: all 0.4s;
}

.center_liness-ss {
  height: 2px;
  width: 20px;
  background: var(--white-color);
}

.bg_browse-choose {
  background: var(--light-green-color);
  border-radius: 22px;
  padding: 102px 48px 30px;
}

.why_choosesmaindiv-browse {
  margin-top: -58px;
}

.profile_overflow {
  position: relative;
  height: 248px;
  border-radius: 14px;
  overflow: hidden;
}

.coman_profile {
  width: 100%;
  height: 248px;
  border-radius: 14px;
  object-fit: cover;
  overflow: hidden;
  object-position: top;
  transition: all 0.4s;
}

.coman_profile:hover {
  transform: scale(1.1);
}

.btn_connect-profiles {
  display: block;
  padding: 9px 30px;
  background: var(--primary-color);
  border-radius: 40px;
  color: var(--white-color-p);
  position: relative;
  top: 22px;
  margin: auto;
  margin-top: -16px;
  width: max-content;
  transition: all 0.4s;
  font-weight: 400;
}

.btn_connect-profiles:hover {
  background: transparent;
  padding: 9px 34px;
  color: var(--pink-color);
}

.more-browse-matribox .btn-more-matri {
  background: var(--primary-color);
  color: var(--white-color-p);
  display: inline-block;
  padding: 10px 22px;
  margin: 5px 3px;
  border-radius: 6px;
  font-weight: 400;
  transition: all 0.2s;
}

.more-browse-matribox .btn-more-matri:hover {
  opacity: 0.9;
}

.user-plan-badge {
  background: var(--primary-color);
  color: var(--white-color-p);
  display: flex;
  width: max-content;
  padding: 5px 10px;
  align-items: center;
  gap: 3px;
  border-radius: 7px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.error-back-btn {
  display: inline-block;
  background: var(--black-color);
  color: var(--white-color);
  padding: 11px 22px;
  border-radius: 52px;
  border: none;
  outline: none;
}

/* ads bottom offcanvas  */
.offcanvas.ctmsetcanvas {
  height: 140px;
}

.ctmsetcanvas .offcanvas-header .btn-close {
  padding: 0;
  background: var(--black-color-4);
  opacity: 1;
  height: 36px;
  width: 36px;
  border-radius: 10px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 50px;
  top: -34px;
  box-shadow: none;
  font-size: 32px;
}

.setinner_imageprevs .vrn-imahbff {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: top;
}

.privacy-header-right .lottie-box-design {
  width: 20%;
  right: 18%;
  position: absolute;
  bottom: -1%;
  height: fit-content;
}

.founder-left-img .founder-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  object-position: top;
}

.fundamental-profile-img .fundamentsal-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white-color);
  border: 1px solid #00000012;
}

.single-fundamental-box {
  background: linear-gradient(90deg, #6d00731a 0%, #1800a91a 100%);
  border: 1px solid #00000012;
  border-radius: 12px;
  padding: 10px;
}

.saty-safeus-section {
  background: #0cda880f;
}

.event-side-img .slick-dots {
  position: absolute;
  bottom: 10px;
  width: fit-content;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  right: 0px;
  left: 0;
  margin: 0 auto;
}

.event-side-img .slick-dots li {
  line-height: 0;
}

.event-side-img .slick-dots button {
  border: none;
  height: 8px;
  width: 8px;
  font-size: 0;
  background: var(--black-color-6);
  border-radius: 100%;
}

.event-side-img .slick-dots li.slick-active button {
  background: var(--primary-color);
}

.event-gried-text p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* croping css code  */
.btn-cropping {
  background: var(--black-color);
  color: var(--white-color);
  font-size: 14px;
  border: none;
  padding: 8px 14px;
  border-radius: 7px;
  transition: all 0.3s;
}

.btn-cropping:hover {
  background: var(--black-color);
}

.croping-btn {
  background: var(--primary-color);
  color: var(--white-color-p);
  display: flex;
  width: max-content;
  padding: 11px 17px;
  align-items: center;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  gap: 6px;
}

/* pro matrimony chat system */
.pro-chats-btn {
  position: fixed;
  right: 76px;
  bottom: 20px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-color-p);
  height: 52px;
  width: 52px;
  border-radius: 100%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9991;
  transition: all 0.3s;
}

.notification-count {
  position: absolute;
  right: -4px;
  top: -4px;
  background: #000;
  border-radius: 10px;
  color: #ffffff;
  height: 20px;
  min-width: 20px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  padding: 3px;
  -webkit-animation: notiblinker 1.5s infinite ease-in-out alternate;
}

@-webkit-keyframes notiblinker {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.chatlist-design-main {
  display: none;
}

.chatlist-design-main.active {
  display: block;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: var(--black-color-1);
  min-height: 456px;
  width: 350px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 9991;
  border: 1px solid var(--black-color-3);
}

.chatlistview-design-main {
  display: none;
}

.chatlistview-design-main.active {
  display: block;
  position: fixed;
  bottom: 80px;
  right: 384px;
  background: var(--black-color-1);
  min-height: 456px;
  width: 350px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 9991;
  border: 1px solid var(--black-color-3);
}

.pro-chat-headerbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--primary-color);
}

.user-dp-profiles-head .user-dp {
  height: 42px;
  width: 42px;
  min-width: 42px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
  border: 3px solid #ffffff3b;
}

.chat-common-btn {
  background: #ffffff26;
  border: 1px solid #ffffff12;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  color: var(--white-color-p);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
}

.chat-common-btn:hover {
  background: #ffffff12;
}

.chat-crosshide-btn {
  background: #ffffff26;
  border: 1px solid #ffffff12;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  color: var(--white-color-p);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s;
}

.chat-crosshide-btn:hover {
  background: #ffffff12;
}

.chat-btn-moreinfo .btn-moreinfo {
  background: transparent;
  border: 1px solid transparent;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  color: var(--white-color-p);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}

.chat-btn-moreinfo .btn-moreinfo:hover {
  background: #ffffff26;
  border: 1px solid #ffffff12;
}

.pro-chatbox-centerbar::-webkit-scrollbar {
  display: none;
}

.pro-chatbox-centerbar {
  max-height: 360px;
  min-height: 334px;
  overflow-y: auto;
}

#chatContainer {
  scroll-behavior: smooth;
}

.pro-chatlist-centerbar::-webkit-scrollbar {
  display: none;
}

.pro-chatlist-centerbar {
  max-height: 380px;
  height: 380px;
  overflow: auto;
}

.chat-daybox-line {
  background: var(--primary-light-color);
  position: absolute;
  top: 4px;
  width: fit-content;
  margin: auto;
  right: 0;
  left: 0;
  color: var(--primary-color);
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 6px;
}

.send-chat-profile .send-profile,
.received-chat-profile .received-profile {
  height: 38px;
  width: 38px;
  min-width: 38px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
}

.received-chat-msg .msg-received {
  background: var(--black-color-3);
  border-radius: 8px 8px 8px 0px;
  width: fit-content;
  max-width: 186px;
  padding: 7px 16px 7px 12px;
  color: var(--white-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  word-wrap: break-word;
  position: relative;
}

.send-chat-msg .send-msg-time {
  font-size: 16px;
  color: #000;
  line-height: 0;
  margin-top: 1px;
}

.received-msg-time {
  font-size: 11px;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 8px;
  visibility: hidden;
}

.single-received-chat .received-chat-msg:hover~.received-msg-time {
  visibility: visible;
}

.send-chat-msg .msg-send {
  background: var(--primary-color);
  border-radius: 8px 8px 0px 8px;
  max-width: 186px;
  margin-bottom: 4px;
  padding: 7px 16px 7px 12px;
  margin-inline-start: auto;
  color: var(--white-color-p);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  position: relative;
  word-wrap: break-word;
  width: fit-content;
}

.send-msg-time {
  font-size: 12px;
  font-weight: 500;
  color: #1b1a1d;
  margin-top: 8px;
  visibility: hidden;
}

.singl-send-chat .send-chat-msg:hover~.received-msg-time {
  visibility: visible;
}

.send-chat-msg .msg-send-time {
  line-height: 0;
  text-align: end;
  font-size: 15px;
  color: #17171a;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: end;
}

.send-chat-msg .msg-send-time iconify-icon {
  color: var(--white-color-70);
}


.send-chat-msg .msg-send-time .read-msg {
  color: rgb(0, 140, 255);
}

.send-chat-msg .msg-send-time.sended {
  color: var(--white-color-70);
}

.send-chat-msg .msg-send-time.viewed {
  color: var(--primary-color);
}

.send-chat-msg .msg-send-time p {
  font-size: 11px;
  font-weight: 500;
  color: var(--white-color-70);
}

.inner-chatbox-sent .chat-type-msg {
  width: 100%;
  padding: 8px 12px 8px 12px;
  height: 38px;
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid var(--input-border);
  color: var(--white-color);
  font-size: 13px;
  outline: none;
  resize: none;
  font-weight: 400;
  background: transparent;
}

.inner-chatbox-sent .chat-type-msg::-webkit-scrollbar {
  display: none;
}

.inner-chatbox-sent .btn-send-msg {
  height: 36px;
  width: 36px;
  min-width: 36px;
  border-radius: 100%;
  background: #000000;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chat-list-profiles .user-profile-img {
  height: 46px;
  width: 46px;
  border-radius: 100%;
  min-width: 46px;
  object-fit: cover;
  object-position: top;
}

.chat-list-contents h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white-color);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.chat-list-contents p {
  font-size: 12px;
  font-weight: 400;
  color: var(--white-color-70);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 15px;
  margin-top: 2px;
}

.last-msg-times-views p {
  font-size: 11px;
  color: var(--white-color);
  font-weight: 500;
}

.last-msg-times-views .total-msg {
  height: 23px;
  min-width: 23px;
  width: fit-content;
  background: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--white-color-p);
  margin-left: auto;
  margin-top: 3px;
  padding: 2px;
}

.single-chat-listbox {
  border-bottom: 1px solid var(--common-border);
  padding: 12px 0px;
  cursor: pointer;
  transition: all 0.3s;
}

.single-chat-listbox:last-child {
  border: none;
}

.user-dp-titles p {
  font-size: 12px;
  color: #ffffffa8;
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 400;
}

.user-dp-titles p::before {
  content: "";
  background: #ffffffa8;
  height: 6px;
  width: 6px;
  border-radius: 100%;
}

.user-dp-titles h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.user-dp-titles p.online-user::before {
  background: #4cc923;
}

.user-dp-titles p.offline-user::before {
  background: #a9a9a9;
}

.user-dp-titles p.away-user::before {
  background: #f3d501;
}

.chatlist-searchbox iconify-icon {
  position: absolute;
  color: #fff;
  top: 0;
  bottom: 0;
  align-content: center;
  left: 12px;
  font-size: 18px;
}

.chatlist-searchbox .msg-search {
  width: 100%;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #ffffff42;
  background: #ffffff3b;
  outline: none;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  padding: 4px 8px 4px 34px;
}

.chatlist-searchbox .msg-search::placeholder {
  color: #fff;
}

.chat-btn-moreinfo .dropdown-menu {
  background: var(--black-color-3);
  border: 1px solid var(--black-color-4);
  backdrop-filter: blur(6px);
  top: 3px !important;
  right: 0 !important;
  left: unset !important;
  padding: 3px 0px;
}

.chat-btn-moreinfo .dropdown-menu li .info-items {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--white-color);
  padding: 5px 10px;
  border-bottom: 1px solid var(--black-color-4);
  border-radius: 0;
  gap: 4px;
}

.chat-btn-moreinfo .dropdown-menu li .info-items i {
  font-size: 18px;
}

.chat-btn-moreinfo .dropdown-menu li .info-items:hover {
  color: var(--primary-color);
}

.chat-btn-moreinfo .dropdown-menu li:last-child .info-items {
  border-bottom: none;
}

.chat-btn-moreinfo .dropdown-menu li .info-items.delete {
  color: #cf1515;
}

.btn-moreinfo-chat {
  background: transparent;
  border: none;
  font-size: 18px;
  color: var(--white-color);
  margin-top: 1px;
}

.no-scroll {
  overflow: hidden;
}

.chat-list-profiles.online-member::before {
  content: "";
  height: 8px;
  width: 8px;
  background: #4cc923;
  position: absolute;
  bottom: 2px;
  right: 3px;
  border-radius: 100%;
  border: 1px solid var(--white-color);
}

.chat-list-profiles.offline-member::before {
  content: "";
  height: 8px;
  width: 8px;
  background: #a9a9a9;
  position: absolute;
  bottom: 2px;
  right: 3px;
  border-radius: 100%;
  border: 1px solid var(--white-color);
}

.chat-list-profiles.away-member::before {
  content: "";
  height: 8px;
  width: 8px;
  background: #f3d501;
  position: absolute;
  bottom: 2px;
  right: 3px;
  border-radius: 100%;
  border: 1px solid var(--white-color);
}

/* Profiles of the Day sidebar */
.profile-of-day-box {
  border-radius: 14px;
  background: var(--black-color-3);
  text-align: center;
  margin-top: 10px;
}

.profile-the-img {
  height: 90px;
  width: 90px;
  margin: auto;
  border-radius: 100%;
  overflow: hidden;
  border: 4px solid var(--white-color);
}

.profile-the-img .profiles-of-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.profiles-day-items h4,
.profiles-day-items p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.profile-of-day-box .slick-prev,
.profile-of-day-box .slick-next {
  background: transparent;
  border: none;
  font-size: 0;
  position: absolute;
  bottom: 20px;
  z-index: 2;
  cursor: pointer;
  height: 34px;
  width: 34px;
}

.profile-of-day-box .slick-prev::before,
.profile-of-day-box .slick-next::before {
  content: "";
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  background: transparent;
  transition: all 0.3s ease;
}

.profile-of-day-box .slick-prev::after,
.profile-of-day-box .slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 20px;
  width: 20px;
  transform: translate(-50%, -50%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--white-color);
}

.profile-of-day-box .slick-prev {
  left: 14px;
}

.profile-of-day-box .slick-prev::after {
  -webkit-mask-image: url("https://api.iconify.design/lets-icons:arrow-left.svg");
  mask-image: url("https://api.iconify.design/lets-icons:arrow-left.svg");
}

.profile-of-day-box .slick-next {
  right: 14px;
}

.profile-of-day-box .slick-next::after {
  -webkit-mask-image: url("https://api.iconify.design/lets-icons:arrow-right.svg");
  mask-image: url("https://api.iconify.design/lets-icons:arrow-right.svg");
}

/* ==========   match-of-day Page  */
.sujectProfile_bioData.left_side_marker {
  border-left: 2px solid var(--white-color-70);
}

.about-suggested-profile_user h4 {
  position: relative;
}

.about-suggested-profile_user h4::before {
  content: "";
  position: absolute;
  left: -78px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100px;
  background-color: var(--white-color);
  border: 2px solid var(--white-color);
  outline: 10px solid var(--black-color-1);
  color: var(--primary-color);
  height: 54px;
  width: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 0;
  cursor: pointer;
  transition: all 0.3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

.about-suggested-profile_user h4:hover::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color-p);
}

.about-suggested-profile_user h4.double-cot::before {
  background-image: url("https://api.iconify.design/mingcute:quote-left-fill.svg");
  background-color: var(--white-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px;
}

.about-suggested-profile_user h4.multiple-circle::before {
  background-image: url("https://api.iconify.design/hugeicons:game-controller-03.svg");
  background-color: var(--white-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px;
}

.about-suggested-profile_user h4.call::before {
  background-image: url("https://api.iconify.design/mdi:call.svg");
  background-color: var(--white-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px;
}

.about-suggested-profile_user h4.user::before {
  background-image: url("https://api.iconify.design/mi:user.svg");
  background-color: var(--white-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px;
}

.about-suggested-profile_user h4:hover::before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  outline-color: var(--black-color-1);
}

.your-n-partner-matchData .gray2_pill_btn,
.sujectProfile_bioData .gray2_pill_btn {
  background-color: var(--black-color-5);
  color: var(--white-color);
  border-radius: 100px;
  padding: 8px 20px;
}

.sujectProfile_bioData .gray2_pill_btn button {
  background-color: transparent;
  border: none;
  outline: none;
  line-height: 0;
  color: var(--white-color);
  transition: all 0.6s ease;
}

.sujectProfile_bioData .gray2_pill_btn button:hover {
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.sujectProfile_bioData .MultiColor_pill_ {
  padding: 7px 28px;
  border-radius: 100px;
  background: #ffffff30;
  box-shadow: 0px 0px 8px -7px #000;
  color: var(--white-color);
  height: fit-content;
  width: fit-content;
}

.sujectProfile_bioData .MultiColor_pill_.pils_clr-1 {
  background-color: #f3e0e02e;
}

.sujectProfile_bioData .MultiColor_pill_.pils_clr-2 {
  background-color: #def0f036;
}

.sujectProfile_bioData .MultiColor_pill_.pils_clr-3 {
  background-color: #e5def038;
}

.sujectProfile_bioData .MultiColor_pill_.pils_clr-4 {
  background-color: #eff0de2e;
}

.sujectProfile_bioData .MultiColor_pill_.pils_clr-5 {
  background-color: #def0df3b;
}

.contact_email-bx {
  border: 1px solid var(--white-color);
  border-radius: 18px;
  position: relative;
}

.contact_email-bx .profil_lock-icn {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 100px;
  border: 1px solid #000;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  right: -22.5px;
}

.rounded-profil-image::before {
  content: "";
  border: 1px solid var(--black-color-5);
  position: absolute;
  height: 0;
  margin: auto;
  z-index: 0;
  width: 90%;
  inset: 0;
}

.rounded-profil-image .match-profile {
  height: 146px;
  width: 146px;
  border-radius: 100px;
  object-fit: cover;
  object-position: center;
}

.matche-person-box {
  background-color: var(--black-color-4);
  color: var(--white-color);
  border-radius: 100px;
  padding: 8px 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: fit-content;
  height: fit-content;
  margin: auto;
  font-size: 12px;
  font-weight: 600;
}

.Partner_matching_points .success-or-not::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}

.Partner_matching_points .success-or-not.success::before {
  background-color: var(--green-color);
  background-image: url("https://api.iconify.design/iconamoon:check-bold.svg?color=white");
}

.Partner_matching_points .success-or-not.not::before {
  background-color: var(--black-color-3);
  background-image: url("https://api.iconify.design/qlementine-icons:minus-16.svg?color=white");
}

.match-sm-profile {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 100%;
  border: 2px solid var(--common-border);
}

.matches-profile-slide {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: end;
  background: var(--black-color-1);
  width: fit-content;
  margin-left: auto;
  border: 1px solid var(--common-border);
  padding: 4px 12px;
  border-radius: 10px;
}

.match-left-arrow,
.match-right-arrow {
  display: flex;
  align-items: center;
  gap: 1px;
  font-weight: 500;
  color: var(--white-color);
  cursor: pointer;
  background: transparent;
  border: none;
}

.matches-profile-container {
  display: none;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.matches-slidebar-sticky {
  position: sticky;
  top: 10px;
}

/* photo upload section */
.photo-upload-big-pro .preview img,
.photo-upload-big-pro {
  grid-row: span 2;
  width: 240px;
  height: 270px;
}

.id-proof-upload-main .photo-upload-big-pro .preview img,
.id-proof-upload-main .photo-upload-big-pro {
  grid-row: span 2;
  width: 100%;
  height: 270px;
}

.photo-upload-big-pro iconify-icon {
  font-size: 44px;
  color: #4c9ecf;
}

.photo-upload-small-pro .preview img,
.photo-upload-small-pro {
  width: 118px;
  height: 128px;
}

.photo-upload-small-pro iconify-icon {
  font-size: 30px;
  color: #4c9ecf;
}

.photo-upload-profile-pro .preview img,
.photo-upload-profile-pro {
  width: 50%;
  height: 120px;
}

.photo-upload-profile-pro iconify-icon {
  font-size: 40px;
  color: #4c9ecf;
}

.photo-upload-pro-matri .upload-box {
  border: 1px dashed var(--input-border);
  border-radius: 10px;
  background: var(--black-color-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s ease;
  text-align: center;
  overflow: hidden;
}

.photo-upload-pro-matri .upload-box.dragover {
  border-color: var(--primary-color);
  background: var(--black-color-4);
}

.photo-upload-pro-matri .upload-box input {
  display: none;
}

.photo-upload-pro-matri .upload-box svg {
  width: 40px;
  height: 40px;
  stroke: #00aaff;
  margin-bottom: 10px;
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-box .remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--black-color-1);
  color: var(--white-color);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  border: 1px solid var(--black-color-4);
}

.upload-box .preview.has-image+.remove-btn {
  display: flex;
}

/* photo cropping design */
.croper-model-imgOuter {
  height: 350px;
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  overflow: hidden;
}

.croper-moder-range-input {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(to right,
      var(--primary-color) var(--val, 0%),
      #ddd var(--val, 0%));
  outline: none;
  cursor: pointer;
}

.croper-moder-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  border: 2px solid var(--white-color-p);
  outline: 4px solid #0d56de5d;
  margin-top: -6px;
}

.croper-moder-range-input[type="range"]::-webkit-range-thumb,
.croper-moder-range-input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  background: var(--primary-color);
  border: 2px solid var(--white-color-p);
  outline: 4px solid #0d56de5d;
  border-radius: 50%;
  cursor: pointer;
}

.croper-moder-range-input::-moz-range-thumb {
  height: 16px;
  width: 16px;
  background: var(--primary-color);
  border: 2px solid var(--white-color-p);
  outline: 4px solid #0d56de5d;
  border-radius: 50%;
  cursor: pointer;
}

.croper-moder-range-input::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(to right,
      var(--primary-color) var(--val),
      var(--black-color-4) var(--val));
}

.croper-moder-range-input::-moz-range-track {
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(to right,
      var(--primary-color) var(--val),
      var(--black-color-4) var(--val));
}

.card-guide .upload-guide-card {
  border-radius: 12px;
  background: var(--black-color-3);
  padding: 20px;
}

/* Divider */
.card-guide .vertical-divider {
  width: 1px;
  height: 110px;
  background: var(--common-border);
  margin-top: 50px;
}

/* Image Cards */
.card-guide .photo-card img {
  width: 83px;
  height: 83px;
  object-fit: cover;
  border-radius: 12px;
}

.single-gender-fild {
  background-color: var(--black-color-4);
  padding: 4px;
  margin-right: 10px;
  border-radius: 12px;
}

.section-divider {
  height: 1px;
  background: var(--common-border);
  margin: 10px 0;
}

.right-divider {
  width: 1px;
  background: var(--common-border);
  margin: 20px;
}

.plan-history-list .matches-details-lists li {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 11px 14px;
  border-radius: 10px;
  margin: 0px 3px;
  gap: 6px;
}

.card-2-result .right-divider {
  width: 1px;
  background: var(--common-border);
  margin: 0px;
}

.connect-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f97316, #d946ef);
  transition: 0.3s;
}

.connect-circle:hover {
  transform: scale(1.1);
}

.card-3-result .matches-left-main-profiles {
  width: 25%;
}

.card-3-result .matches-right-main-contents {
  width: 75%;
}

/* storie Card */
.storie-card {
  background: var(--black-color-1);
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  transition: transform 0.2s ease;
}

.storie-card:hover {
  transform: translateY(-3px);
}

.storie-card .card-title {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.storie-card .title-divider {
  width: 32px;
  height: 2px;
  background: var(--primary-color);
  margin: 10px 0 12px;
}

.storie-card .meta {
  color: var(--white-color-70);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.storie-card .meta span {
  color: var(--white-color-70);
}

.storie-card .meta .sep {
  color: var(--common-border);
}

.storie-card .card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.storie-card .card-desc {
  color: var(--white-color-70);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-read-more {
  background: var(--primary-color);
  color: var(--white-color-p);
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-read-more:hover {
  opacity: 0.85;
  color: var(--white-color);
}

/* Quote card variant */
.storie-card.quote-card .quote-header {
  display: flex;
  align-items: start;
  gap: 18px;
  margin-bottom: 12px;
  flex-direction: column;
}

.quote-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #f5c842;
  border-radius: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--black-color-2);
}

.quote-card .card-title {
  font-size: 22px;
  margin-bottom: 0;
}

.col-gap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Video Player Wrapper ── */
.vp-wrapper {
  width: 100%;
  max-width: 1000px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;

  /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7); */
  cursor: pointer;
  margin: auto;
  margin-top: 20px;
}

/* Thumbnail / poster */
.vp-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
  border: solid 1px #ffffff1c;
}

.vp-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vp-wrapper:hover .vp-poster img {
  transform: scale(1.02);
}

/* Dark gradient at bottom for text */
.vp-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 30%,
      rgba(0, 0, 0, 0.55) 65%,
      rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

/* Play Button */
.vp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s;
  cursor: pointer;
}

.vp-play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

.vp-wrapper:hover .vp-play-btn {
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Title block */
.vp-title-block {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding: 18px 20px 24px;
}

.vp-title-block h2 {
  color: var(--white-color);
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.vp-title-block p {
  color: var(--white-color-70);
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ── Actual Video (hidden until play clicked) ── */
.vp-video {
  /* display: none; */
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  object-fit: fill;
}

/* Custom Controls Bar */
.vp-controls {
  display: none;
  align-items: center;
  gap: 14px;
  background: var(--black-color-1);
  padding: 12px 18px;
  border-top: 1px solid var(--common-border);
  border-radius: 62px;
  margin-top: 12px;
}

.vp-controls.active {
  display: flex;
}

.ctrl-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition:
    color 0.2s,
    transform 0.15s;
}

.ctrl-btn:hover {
  color: var(--primary-color);
  transform: scale(1.15);
}

.ctrl-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Progress Bar */
.vp-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vp-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: var(--black-color-5);
  outline: none;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.vp-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(13, 86, 222, 0.3);
}

.vp-time {
  color: var(--white-color-70);
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
}

/* Volume */
.vp-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: var(--black-color-5);
  outline: none;
  cursor: pointer;
  accent-color: var(--primary-color);
}

/* Fullscreen hide native controls */
video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}

/* success story submit form */
.story-submit-wrapper {
  background: var(--black-color-1);
  border-radius: 24px;
  padding: 36px 40px 42px;
}

.story-submit-intro {
  line-height: 1.6;
}

.story-author-avatar {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--saleText-color);
}

.story-author-tag {
  line-height: 1.3;
}

.story-author-name {
  line-height: 1.25;
}

.story-author-role {
  line-height: 1.3;
}

.story-follow-wrap {
  width: fit-content;
  margin-left: auto;
}

.story-follow-title {
  line-height: 1.3;
}

.story-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white-color-p);
  color: var(--primary-color);
  border: 1px solid var(--white-color-p);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.story-social-link:hover {
  background: var(--primary-color);
  color: var(--white-color-p);
}

.story-divider {
  border-top: 1px solid var(--common-border);
  margin: 32px 0;
}

.story-submit-form .story-form-label {
  line-height: 1.35;
  margin-bottom: 8px;
}

.story-submit-form .story-form-control {
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--input-border);
  background: var(--black-color-3);
  color: var(--white-color);
  line-height: 1.3;
  padding-inline: 16px;
}

.story-submit-form .story-form-control::placeholder {
  color: var(--white-color-70);
}

.story-submit-form .story-form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
  background: var(--black-color-3);
  color: var(--white-color);
}

.story-form-textarea {
  min-height: 156px;
  height: auto !important;
  resize: vertical;
  padding-block: 16px;
}

.story-date-icon {
  color: var(--white-color);
  font-size: 24px;
  pointer-events: none;
}

.story-check-input {
  width: 20px;
  height: 20px;
  border-radius: 4px !important;
  border: 1px solid var(--white-color-p) !important;
  background-color: transparent;
  cursor: pointer;
}

.story-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color) !important;
}

.story-check-input:focus {
  box-shadow: none;
}

.story-check-label {
  line-height: 1.35;
  padding-top: 1px;
}

.story-upload-title {
  letter-spacing: 1.2px;
}

.story-upload-box {
  width: 100%;
  min-height: 360px;
  border: 1px dashed var(--input-border);
  border-radius: 20px;
  background: var(--black-color-3);
  color: var(--white-color-70);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-align: center;
  padding: 20px;
}

.story-upload-box input {
  display: none;
}

.story-upload-box iconify-icon {
  font-size: 64px;
  color: var(--white-color);
}

.story-upload-box p {
  line-height: 1.35;
}

.story-upload-box span {
  color: var(--white-color);
}

/* Sidebar Menu Component */
.sidebar-menu-card {
  border-radius: 12px;
}

.sidebar-menu-list li a {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-menu-list li a:hover {
  background: rgba(255, 255, 255, 0.03);
  padding-left: 10px;
  border-radius: 10px;
  padding-right: 10px;
}

.sidebar-menu-list li a:active,
.sidebar-menu-list li a.active {
  background: var(--primary-light-color);
  padding-left: 10px;
  border-left: 3px solid var(--primary-color) !important;
  padding-right: 10px;
  border-radius: 10px;
}

.sidebar-menu-list li a.active .badge-count {
  background: var(--primary-color);
  color: var(--white-color-p);
}

.sidebar-menu-card .badge-count {
  padding: 4px 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Shortlisted Profile Page ===== */
.shortlist-select-all-box {
  border-radius: 12px;
  background-color: var(--black-color-3);
  border: 1px solid var(--black-color-4);
}

.shortlist-filter-box {
  min-width: 160px;
}

.shortlist-filter-box .floating-control {
  background-color: var(--black-color-3) !important;
  border: 1px solid var(--black-color-4) !important;
  color: var(--white-color-p) !important;
  border-radius: 12px !important;
}

.shortlist-filter-box .select2-container--default .select2-selection--single {
  background-color: var(--black-color-3);
  border: 1px solid var(--black-color-4);
  border-radius: 12px;
  height: 55px;
  display: flex;
  align-items: center;
}


.shortlist-delete-btn {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background-color: var(--black-color-3);
  border: 1px solid var(--black-color-4);
  color: var(--white-color-p);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shortlist-delete-btn:hover {
  background-color: var(--error-color);
  border-color: var(--error-color);
}

.shortlist-profile-card {
  border-radius: 12px;
  background-color: var(--black-color-3);
  border: 1px solid var(--black-color-4);
  transition: all 0.3s ease;
}

.shortlist-profile-card:hover {
  border-color: var(--primary-color);
}

.shortlist-profile-imgbox {
  width: 130px;
  min-width: 130px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.shortlist-profile-inner-img {
  height: 130px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.shortlist-inner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.shortlist-card-btn {
  border-radius: 30px;
  background-color: var(--pending-textcolor);
  color: var(--white-color-p);
  border: 1px solid var(--pending-textcolor);
  transition: all 0.3s ease;
  width: auto;
  height: auto;
}

.shortlist-card-btn:hover {
  background-color: transparent;
  color: var(--pending-textcolor);
}

.btn-request-intrest-delete {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background-color: var(--black-color-3);
  border: 1px solid var(--black-color-4);
  color: var(--white-color);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 20px !important;
  justify-content: center;
}

.btn-request-intrest-delete:hover {
  background-color: var(--error-color);
  border-color: var(--error-color);
}

/* ContactViews Modal Styling */
.contact-views-dialog {
  max-width: 650px;
}

.contact-views-content {
  border-radius: 16px;
  border: 1px solid var(--black-color-4);
}

.contact-views-close-btn {
  filter: invert(1);
  opacity: 0.5;
}

.contact-views-main-img {
  height: 265px;
  border-radius: 8px;
}

.contact-views-thumb-list {
  width: 75px;
}

.contact-views-thumb-item {
  height: 60px;
  border-radius: 8px;
}

.contact-modal-btn {
  border-radius: 8px;
  transition: 0.3s;
}

.contact-modal-btn:hover {
  opacity: 0.8;
}

.btn-contact-shortlist {
  background: #fbad60;
}

.btn-contact-interest {
  background: #ff477e;
}

.btn-contact-chat {
  background: #0d7bfb;
}

/* Affiliate Premium Card Styles */
.affiliate-premium-card {
  background: var(--black-color-1);
  border: 1px solid var(--black-color-3);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.affiliate-card-header {
  border-bottom: 1px solid var(--black-color-3);
}

.diamond-title {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aff_pricing_info .price-val {
  line-height: 1;
}

.affiliate-features-table .aff-feature-row {
  border-bottom: 1px solid var(--black-color-4);
}

.affiliate-features-table .aff-feature-row:last-child {
  border-bottom: none;
}

.deploy-plan-btn {
  background: var(--white-color-p);
  color: #0f1522;
  border-radius: 40px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 1px solid var(--white-color-p);
  text-decoration: none;
}

.deploy-plan-btn:hover {
  background: transparent;
  color: var(--white-color-p);
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

/* --- OTP Modal Design Start --- */
.custom-otp-modal .modal-content {
  border-radius: 20px;
  background-color: #0c1421 !important;
  /* Dark charcoal/navy background */
  overflow: hidden;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.4);
  padding: 10px;
}

.custom-otp-modal .modal-header {
  padding: 15px 15px 0px;
}

.back-modal-btn {
  background: transparent;
  border: none;
  color: var(--white-color-p);
  display: flex;
  align-items: center;
  transition: all 0.3s;
  padding: 0;
  cursor: pointer;
}

.back-modal-btn iconify-icon {
  font-size: 20px;
}

.back-modal-btn:hover {
  opacity: 0.7;
}

.otp-icon-wrap {
  display: flex;
  justify-content: center;
}

.otp-circle {
  width: 130px;
  height: 130px;
  background: #171f2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-circle img.otp-img-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.otp-input {
  width: 45px;
  height: 48px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #555c68;
  /* Grey line */
  border-radius: 0;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  transition: all 0.2s;
  margin: 0 5px;
}

.otp-input:focus {
  outline: none;
  border-bottom-color: #ffffff;
  /* White on focus */
}

/* Chrome, Safari, Edge, Opera */
.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.otp-input[type=number] {
  -moz-appearance: textfield;
}

.otp-receive-text {
  color: #acb5bd;
}

.vertical-divider {
  width: 1px;
  height: 18px;
  background: #313848;
}

.dashed-line-otp {
  border-top: 1px dashed #313848;
  width: 100%;
  opacity: 0.8;
}

.custom-otp-modal .comman-bg-btn {
  background: #0d56de;
  border-radius: 14px;
  font-size: 18px;
  transition: transform 0.2s;
}

.custom-otp-modal .comman-bg-btn:active {
  transform: scale(0.98);
}

.custom-otp-modal a {
  color: var(--primary-color) !important;
}

.custom-otp-modal a:hover {
  text-decoration: underline !important;
  color: #ffffff !important;
}

/* --- OTP Modal Design End --- */

/* --- Privacy Settings Redesign --- */
.privacy-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-nav-item {
  border: 1px solid var(--common-border);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--white-color) !important;
  text-align: left;
  width: 100%;
}

.privacy-nav-item .nav-text-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-nav-item i,
.privacy-nav-item iconify-icon {
  font-size: 22px;
  color: var(--white-color);
  transition: all 0.3s;
}

.privacy-nav-item h4 {
  margin: 0;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 14px;
}

.privacy-nav-item.active {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
  box-shadow: 0 8px 16px rgba(13, 86, 222, 0.3);
}

.privacy-nav-item.active i,
.privacy-nav-item.active iconify-icon,
.privacy-nav-item.active h4 {
  color: white !important;
}

.privacy-nav-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--white-color);
  transform: translateX(5px);
}

/* Settings Content Card */
.settings-group-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--common-border);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.settings-group-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.settings-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}

.settings-card-header iconify-icon {
  font-size: 24px;
  color: var(--primary-color);
}

/* Modern Chip Selection */
.selection-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-label {
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--black-color-3);
  border: 1px solid var(--black-color-4);
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.selection-chips input:checked+.chip-label {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(13, 86, 222, 0.2);
}

.chip-label:hover:not(.selection-chips input:checked+.chip-label) {
  border-color: var(--white-color-p);
  color: var(--white-color-p);
}

/* Modern Toggle Switch */
.modern-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.modern-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black-color-3);
  transition: 0.4s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.modern-switch input:checked+.switch-slider {
  background-color: var(--primary-color);
}

.modern-switch input:checked+.switch-slider:before {
  transform: translateX(24px);
}

.modern-switch-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid transparent;
  transition: all 0.3s;
  margin-bottom: 8px;
}



.modern-switch-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--common-border);
}

/* Typography Enhancements */
.sidebar-category-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white-color);
  margin: 20px 0 10px 10px;
  font-weight: 700;
  opacity: 0.6;
}

/* Input Icon Enhancements */
.input-icon-left {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color) !important;
  z-index: 5;
  pointer-events: none;
}

.input_comman_field.ps-5 {
  padding-left: 45px !important;
}

.bg-dark-soft {
  background: rgba(255, 255, 255, 0.03);
}

.border-dashed {
  border: 1px dashed var(--common-border);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .privacy-nav-item {
    padding: 12px 16px;
  }
}

/* Nearby Matches Cleanup: Custom experimental styles removed to restore standard design */

/* Page Loader */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  /* Above everything */
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heart-loader {
  position: relative;
  width: 60px;
  height: 60px;
  animation: heartBeatLoader 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.heart-loader:before,
.heart-loader:after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 48px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(135deg, var(--primary-color), #bc26df);
  box-shadow: 0 0 15px rgba(13, 86, 222, 0.4);
}

.heart-loader:before {
  left: 30px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.heart-loader:after {
  left: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

@keyframes heartBeatLoader {
  0% {
    transform: scale(0.85);
  }

  10% {
    transform: scale(1.1);
  }

  20% {
    transform: scale(0.9);
  }

  30% {
    transform: scale(1);
  }

  40% {
    transform: scale(0.85);
  }

  100% {
    transform: scale(0.8);
  }
}

.loader-text {
  margin-top: 25px;
  color: var(--white-color-p);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  animation: loaderTextFade 2s infinite ease-in-out;
}

@keyframes loaderTextFade {

  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }

  50% {
    opacity: 0.9;
    transform: translateY(-3px);
  }
}

/* Custom Modal Styles for Announcement */
.announcement-modal .modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: var(--black-color-1);
}

.announcement-banner-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.announcement-banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 390px;
}

.announcement-body {
  padding: 25px;
  text-align: center;
}

.announcement-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 6px;
}

.announcement-text {
  font-size: 15px;
  color: var(--white-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Toast Notification */
/* Toast Container */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
}

/* The Minimalist Toast */
.m-toast {
  width: 100%;
  background: rgba(30, 41, 59, 0.7);
  /* Semi-transparent */
  backdrop-filter: blur(12px);
  /* Frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(100%);
}

.m-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.m-toast.hide {
  opacity: 0;
  transform: translateX(100%);
}

/* Subtle Left Color Accent Bar */
.m-toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 3px;
  border-radius: 0 4px 4px 0;
}

/* Minimal Icon Circle */
.m-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  /* Squircle shape */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 14px;
  flex-shrink: 0;
}

.m-content {
  flex-grow: 1;
}

.m-message {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

.m-close {
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.m-close:hover {
  color: #fff;
}

/* --- Minimal Color Variants --- */

/* Success */
.m-success::before {
  background: #10b981;
}

.m-success .m-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* Info */
.m-info::before {
  background: #3b82f6;
}

.m-info .m-icon {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

/* Warning */
.m-warning::before {
  background: #f59e0b;
}

.m-warning .m-icon {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

/* Error */
.m-error::before {
  background: #ef4444;
}

.m-error .m-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* Toast Notification */
.comman_inputfield_main .error {
  color: #cf1515;
  font-size: 12px;
}

/* Custom Modal Styles for Announcement */
.announcement-modal .modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: var(--black-color-1);
}

.announcement-banner-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.announcement-banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.announcement-body {
  padding: 30px;
  text-align: center;
}

.announcement-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 15px;
}

.announcement-text {
  font-size: 15px;
  color: var(--white-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
  transition: all 0.3s;
}

.modal-close-btn:hover {
  background: var(--primary-color);
}

.profile-top-dashboard {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.online-blinking-dot {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  background-color: #00ff00;
  border-radius: 50%;
  border: 1.5px solid #fff;
  z-index: 5;
}

.online-blinking-dot::after {
  content: '';
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00ff00;
  animation: blink-animation 1.5s infinite;
  opacity: 0.7;
}

@keyframes blink-animation {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.match-percent-badge-dash {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00000054;
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-icon-dash {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #000;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  z-index: 5;
  border: 1.5px solid #fff;
}

/* Modal Icon Animation */
.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: iconPop 0.5s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes iconPop {
  from {
    opacity: 0;
    transform: scale(0.4) rotate(-20deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.icon-circle.purple {
  background: rgba(91, 78, 248, 0.15);
  border: 0.5px solid rgba(91, 78, 248, 0.3);
}

.icon-circle.amber {
  background: rgba(239, 159, 39, 0.15);
  border: 0.5px solid rgba(239, 159, 39, 0.35);
}

.icon-circle.teal {
  background: rgba(29, 158, 117, 0.15);
  border: 0.5px solid rgba(29, 158, 117, 0.3);
}

.icon-circle.red {
  background: rgba(255, 75, 88, 0.141);
  border: 0.5px solid rgba(255, 75, 88, 0.141);
}

.icon-circle.blue {
  background: rgba(55, 138, 221, 0.15);
  border: 0.5px solid rgba(55, 138, 221, 0.3);
}

/* .icon-circle iconify-icon { width: 17px; height: 17px; } */
.icon-circle.purple iconify-icon {
  color: #7c6fff;
  animation: lockWiggle 4s 2s ease-in-out infinite;
}

.icon-circle.amber iconify-icon {
  color: #ef9f27;
  animation: crownBounce 3.5s 1.5s ease-in-out infinite;
}

.icon-circle.teal iconify-icon {
  color: #1d9e75;
  animation: camShake 4s 1.8s ease-in-out infinite;
}

.icon-circle.red iconify-icon {
  color: #ff4b58;
  animation: flagWave 3s 1.2s ease-in-out infinite;
}

.icon-circle.blue iconify-icon {
  color: #378add;
  animation: cropSpin 5s 2s linear infinite;
}

@keyframes lockWiggle {

  0%,
  88%,
  100% {
    transform: rotate(0deg);
  }

  91% {
    transform: rotate(-8deg);
  }

  95% {
    transform: rotate(8deg);
  }

  98% {
    transform: rotate(-3deg);
  }
}

@keyframes crownBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes camShake {

  0%,
  90%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  93% {
    transform: rotate(-6deg) scale(1.08);
  }

  97% {
    transform: rotate(4deg) scale(1.04);
  }
}

@keyframes flagWave {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes cropSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Modal Icon Animation */

/* Advertisement Banner */
.sidebar-ad-card {
  transition: all 0.3s ease;
}

.sidebar-ad-card:hover {
  transform: translateY(-5px);
}

.sidebar-ad-card img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  object-fit: cover;
  width: 100%;
  /* min-height: 200px; */
  height: 200px;
}

.sidebar-ad-card:hover img {
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.2);
}

/* Advertisement Banner */

/* Photo Protected */
.photo-protected-main {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.photo-protected-main .matches-profiles {
  filter: blur(15px);
  transform: scale(1.1);
  opacity: 0.6;
}

.photo-request-btn-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
}

.btn-photo-request {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white-color-p);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-photo-request:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Photo Protected */
.match-percent-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(90deg, #18cb75 0%, #00a569 100%);
  color: #fff;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 4px 10px rgba(24, 203, 117, 0.3);
}

/* Chat Tabs Styling */
.chat-tabs-design {
  background: #090f1c9c;
  padding: 5px;
  border-radius: 10px;
  margin: auto;
}

.chat-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white-color-p);
  font-size: 13px;
  font-weight: 500;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding-top: 10px;
}

.chat-tab-btn.active {
  background: var(--primary-color);
  color: var(--white-color-p);
  box-shadow: 0 4px 10px rgba(13, 86, 222, 0.2);
}

.chat-tab-btn:hover:not(.active) {
  background: var(--black-color-3);
  color: var(--white-color-p);
}

.chat-tab-content {
  display: none;
}

.chat-tab-content.active {
  display: block;
  animation: chatFadeIn 0.3s ease;
}

@keyframes chatFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-chatprofiles.online-member::before {
  content: "";
  height: 8px;
  width: 8px;
  background: #4cc923;
  position: absolute;
  bottom: 2px;
  right: 3px;
  border-radius: 100%;
  border: 1px solid var(--white-color);
}

.user-chatprofiles.offline-member::before {
  content: "";
  height: 8px;
  width: 8px;
  background: #a9a9a9;
  position: absolute;
  bottom: 2px;
  right: 3px;
  border-radius: 100%;
  border: 1px solid var(--white-color);
}

.user-chatprofiles.away-member::before {
  content: "";
  height: 8px;
  width: 8px;
  background: #f3d501;
  position: absolute;
  bottom: 2px;
  right: 3px;
  border-radius: 100%;
  border: 1px solid var(--white-color);
}

.chatlayout-line {
  background: var(--primary-light-color);
  position: absolute;
  width: fit-content;
  margin: auto;
  right: 0;
  left: 0;
  color: var(--primary-color);
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 6px;
}

.generate-about-me-btn {
  background: var(--primary-color);
  color: var(--white-color-p);
  border: none;
  border-radius: 6px;
  padding: 6px 8px 6px 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
}

.generate-about-me-btn:hover {
  opacity: 0.85;
  color: var(--white-color);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0px;
  transform: translateY(30px);
  width: 100%;
  background: rgba(22, 29, 45, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 30px;
  z-index: 99999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  backdrop-filter: blur(15px);
  visibility: visible;
}

.cookie-content {
  flex: 1;
}

.cookie-content h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-content h4 iconify-icon {
  color: var(--primary-color);
  font-size: 24px;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 12px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cookie-accept {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 86, 222, 0.3);
}

.btn-cookie-accept:hover {
  background: #1a6dff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(13, 86, 222, 0.4);
}

.btn-cookie-reject {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* AI Auto Send Interest Page Styles */
.ai-toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.ai-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ai-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black-color-3);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--black-color-4);
}

.ai-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.ai-toggle-switch input:checked+.ai-toggle-slider {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.ai-toggle-switch input:checked+.ai-toggle-slider:before {
  transform: translateX(24px);
}

.ai-rule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--black-color-2);
  border: 1px solid var(--black-color-3);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.ai-rule-item:hover {
  background: var(--black-color-3);
  border-color: var(--primary-color);
}

.ai-rule-icon {
  color: var(--green-color);
  font-size: 20px;
  display: flex;
  align-items: center;
}

.ai-match-card {
  background: var(--black-color-2);
  border: 1px solid var(--black-color-3);
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 180px;
}

.ai-match-card:hover {
  transform: translateY(5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ai-match-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: var(--black-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white-color-70);
  border: 2px solid var(--black-color-4);
  overflow: hidden;
}

.ai-match-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-range-slider {
  width: 100%;
  height: 6px;
  background: var(--black-color-3);
  border-radius: 5px;
  outline: none;
  appearance: none;
  margin: 15px 0;
}

.ai-range-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 10px rgba(13, 86, 222, 0.4);
}

/* AI Recommendation Card - Dashboard Banner */
.ai-promo-banner {
  /* background: linear-gradient(135deg, rgba(22, 29, 45, 0.9) 0%, rgba(13, 86, 222, 0.1) 100%); */
  background: #161d2de6;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ai-promo-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(13, 86, 222, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.ai-promo-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ai-promo-icon {
  width: 56px;
  height: 56px;
  background: rgba(13, 86, 222, 0.1);
  border: 1px solid rgba(13, 86, 222, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.ai-promo-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.ai-promo-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 500px;
}

.ai-promo-btn {
  position: relative;
  z-index: 1;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(13, 86, 222, 0.3);
  white-space: nowrap;
}

.ai-promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(13, 86, 222, 0.4);
  background: #1a6dff;
  color: #fff;
}

/* Nav Indicator Blinking */
@keyframes navBlink {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.nav-new-indicator {
  width: 7px;
  height: 7px;
  background: #4dff5c;
  border-radius: 50%;
  display: inline-block;
  margin-left: 6px;
  animation: navBlink 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 77, 77, 0.6);
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Account Suspended Page Styles */
.suspended-card {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);

}

.suspended-icon-wrap {
  width: 120px;
  height: 120px;
  background: rgba(255, 59, 48, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.suspended-icon-wrap::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 59, 48, 0.2);
  animation: suspendedRipple 2s infinite;
}

@keyframes suspendedRipple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.suspended-icon {
  font-size: 64px;
  color: #ff3b30;
}

.suspended-notice {
  background: rgba(13, 86, 222, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  text-align: left;
}

.btn-outline-custom {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-custom:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Smooth horizontal scroll */
.ai-scroll::-webkit-scrollbar {
  height: 6px;
}

.ai-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.ai-badge-glow {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
  color: var(--white-color-p);
  font-weight: 500;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  animation: pulse-badge 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--primary-color);
}

@keyframes pulse-badge {

  0%,
  100% {
    box-shadow: 0 0 8px var(--primary-color);
  }

  50% {
    box-shadow: 0 0 16px var(--primary-color);
  }
}

/* New Dashbaoad Ai Design */
.ai-banners-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 0;
}

.ai-card {
  position: relative;
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.ai-card-matchmaking {
  background: linear-gradient(130deg, #0f1c3a 0%, #162550 60%, #1a2d5e 100%);
}

.ai-card-autointerest {
  background: linear-gradient(130deg, #0c1f35 0%, #112b4e 60%, #143460 100%);
}

.ai-card-glow {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 120, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.ai-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(78, 130, 255, 0.18);
  border: 1px solid rgba(100, 150, 255, 0.25);
  z-index: 1;
}

.ai-icon-wrap iconify-icon {
  font-size: 24px;
  color: #7eb5ff;
}

.ai-content {
  flex: 1;
  z-index: 1;
  min-width: 0;
}

.ai-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7eb5ff;
  background: rgba(78, 130, 255, 0.15);
  border: 1px solid rgba(100, 160, 255, 0.2);
  border-radius: 30px;
  padding: 2px 10px;
  margin-bottom: 7px;
}

.ai-title {
  font-size: 16px;
  font-weight: 700;
  color: #e8f0ff;
  margin: 0 0 4px;
  line-height: 1.3;
}

.ai-desc {
  font-size: 13px;
  color: rgba(180, 210, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.ai-cta {
  flex-shrink: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 50px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.ai-cta-primary {
  background: linear-gradient(135deg, #2d6fff, #4a8bff);
  box-shadow: 0 4px 18px rgba(45, 111, 255, 0.45);
}

.ai-cta-secondary {
  background: linear-gradient(135deg, #1b5dd8, #2e73ff);
  box-shadow: 0 4px 18px rgba(30, 90, 220, 0.40);
}

.ai-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 111, 255, 0.55);
}

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {
  .ai-card {
    flex-wrap: wrap;
    padding: 18px 18px 20px;
    gap: 14px;
  }

  .ai-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .ai-icon-wrap iconify-icon {
    font-size: 20px;
  }

  .ai-content {
    flex: 1 1 calc(100% - 62px);
  }

  .ai-cta {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 12px;
  }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .ai-card {
    padding: 16px;
    gap: 12px;
    border-radius: 14px;
  }

  .ai-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .ai-icon-wrap iconify-icon {
    font-size: 18px;
  }

  .ai-title {
    font-size: 14px;
  }

  .ai-desc {
    font-size: 12px;
  }

  .ai-label {
    font-size: 9px;
    padding: 2px 8px;
  }

  .ai-cta {
    font-size: 12.5px;
    padding: 10px 14px;
  }
}

/* New Dashbaoad Ai Design */