@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap");
@import url(./custome-animition-modal.css);
.shadow-2 {
  box-shadow: 0 0 76px rgba(0, 0, 0, 0.07);
}

.shadow-3 {
  box-shadow: 0 3px 49px rgba(252, 197, 46, 0.43);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin: 0;
  color: #969598;
  padding: 0;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: #010101;
}

body {
  font-family: "Inter", sans-serif !important;
}

a {
  color: #2EA4FC;
  text-decoration: none !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #2EA4FC;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.landing-wrap {
  height: 92vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.landing-bg {
  text-align: center;
}

.landing-content h1 {
  font-family: "Dancing Script", cursive;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #EC4899;
  padding: 50px 0;
}
.landing-content .theme-btn {
  background: #2EA4FC;
  color: #fff;
  border: 0;
  display: block;
  width: 60%;
  padding: 15px;
  margin: 0 auto;
  margin-bottom: 15px;
  border-radius: 150px;
  text-decoration: none;
  text-align: center;
}
.landing-content .bg-pink {
  background-color: #EC4899;
}

/* Range 2 Way Start */
[age_range_slider] {
  position: relative;
  height: 14px;
  border-radius: 10px;
  text-align: left;
  margin: 20px 0 10px 0;
}

[age_range_slider] > div {
  position: absolute;
  left: 13px;
  right: 15px;
  height: 14px;
}

[age_range_slider] > div > [inverse-left] {
  position: absolute;
  left: 0;
  height: 14px;
  border-radius: 10px;
  background-color: #EDF4F6;
}

[age_range_slider] > div > [inverse-right] {
  position: absolute;
  right: 0;
  height: 14px;
  border-radius: 10px;
  background-color: #EDF4F6;
}

[age_range_slider] > div > [range] {
  position: absolute;
  left: 0;
  height: 14px;
  border-radius: 14px;
  background-color: #2EA4FC !important;
  margin-top: 3px;
}

[age_range_slider] > div > [thumb] {
  position: absolute;
  top: -7px;
  z-index: 2;
  height: 28px;
  width: 28px;
  text-align: left;
  margin-left: -11px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  border-radius: 50%;
  outline: none;
}

[age_range_slider] > input[type=range] {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  height: 14px;
  top: -2px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

div[age_range_slider] > input[type=range]::-ms-track {
  background: transparent;
  color: transparent;
}

div[age_range_slider] > input[type=range]::-moz-range-track {
  -moz-appearance: none;
  background: transparent;
  color: transparent;
}

div[age_range_slider] > input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
  border: transparent;
}

div[age_range_slider] > input[type=range]:focus {
  outline: none;
}

div[age_range_slider] > input[type=range]::-ms-thumb {
  pointer-events: all;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  border: 0 none;
}

div[age_range_slider] > input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  border: 0 none;
}

div[age_range_slider] > input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  border: 0 none;
  -webkit-appearance: none;
}

div[age_range_slider] > input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0 none;
}

div[age_range_slider] > input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0 none;
}

div[age_range_slider] > input[type=range]::-ms-tooltip {
  display: none;
}

[age_range_slider] > div > [sign] {
  opacity: 0;
  position: absolute;
  margin-left: -11px;
  top: -9px;
  z-index: 3;
  background-color: #2EA4FC !important;
  color: #fff;
  width: 28px;
  height: 38px;
  border-radius: 28px;
  line-height: 38px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

[age_range_slider] > div > [sign] > span {
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
}

/* [age_range_slider]:hover > div > [sign] { */
[age_range_slider] > div > [sign] {
  opacity: 1;
}

.age-rangerSlider-wrap h3 {
  font-size: 20px;
  color: #010101;
  font-weight: 600;
}

/* Range 2 Way Stop */
.search-innerItemDropdown-wrap select {
  padding: 20px;
  border-radius: 100px;
  border: 0;
  color: #969598;
  font-size: 18px;
  padding: 20px 30px;
  box-shadow: 0 0 99px rgba(0, 0, 0, 0.1);
}

.search-innerItemDropdown-wrap select:focus {
  box-shadow: none !important;
}

.widget-card {
  background-color: #EDF4F6;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 5px;
  margin-bottom: 20px;
}

.widget-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #010101;
}

.search-select-wrap {
  margin-top: 30px;
}

.search-select-wrap div {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 10px;
}

.search-select-wrap div input {
  height: 22px;
  width: 40px !important;
}

.search-select-wrap div label {
  margin-left: -40px;
}

.form-switch input:checked ~ .form-check-label {
  color: #2EA4FC;
}

.h-100vh {
  height: 100vh !important;
  height: 92vh !important;
}

input:focus {
  box-shadow: none !important;
}

.auth-wrap {
  /* Select me  */
  /* Im man woman  */
  /* Select me end  */
}
.auth-wrap .auth-title {
  font-size: 48px;
  font-weight: 700;
  color: #010101;
}
.auth-wrap .auth-input {
  background-color: #fff;
  border: 0;
  padding: 20px 50px;
  border-radius: 100px;
  width: 100%;
  box-shadow: 0px 0px 76px rgba(0, 0, 0, 0.07);
}
.auth-wrap .auth-form img {
  top: 19px;
  position: absolute;
  left: 25px;
}
.auth-wrap .auth-btn {
  background: #2EA4FC;
  color: #fff;
  border: 0;
  width: 60%;
  padding: 15px;
  border-radius: 100px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 3px 51px rgba(46, 164, 252, 0.52);
}
.auth-wrap label {
  color: #969598;
}
.auth-wrap .upload-dp-and-preview {
  height: 345px;
  width: 345px;
  background-position: top;
  background-size: cover;
  margin: 0 auto;
  margin-bottom: 0px;
  border-radius: 100%;
  margin-bottom: 60px;
  position: relative;
}
.auth-wrap .upload-dp-and-preview button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 0;
  height: 90px;
  width: 90px;
  border-radius: 50px;
  font-size: 60px;
  box-shadow: 0 3px 51px #2EA4FC;
}
.auth-wrap .account-complete-wrap {
  text-align: center;
}
.auth-wrap .account-complete-wrap h1 {
  font-family: "Dancing Script", cursive;
  font-weight: bold;
  font-size: 78px;
  color: #FCC52E;
  margin-bottom: 20px;
  margin-top: 10px;
}
.auth-wrap .heading {
  text-align: center;
  font-size: 0.8em;
}
.auth-wrap .center-align {
  display: flex;
  justify-content: start;
  margin-left: -3px;
  margin-top: 10px;
}
.auth-wrap .center-align input[type=radio] {
  visibility: hidden;
  height: 0;
  width: 0;
}
.auth-wrap .label {
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  background-color: rgba(233, 9, 249, 0.3);
  color: #fff;
  transition: all 0.3s ease-out;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  border: 0;
}
.auth-wrap .label.man {
  font-size: 14px;
  background-color: #fff !important;
  border: 4px solid #fff;
  padding: 10px;
  background: #E1E6FF !important;
  border-radius: 80px;
  color: #17265C;
}
.auth-wrap input[type=radio]:checked + .label.man {
  border: 4px solid #2EA4FC;
  border-radius: 80px;
  padding: 10px;
  background: #E1E6FF !important;
  color: #17265C;
  font-size: 14px;
}
.auth-wrap .label.woman {
  background-color: #fff !important;
  border: 4px solid #fff;
  background: #FFE1F8 !important;
  border-radius: 80px;
  padding: 10px;
  color: #17265C;
  font-size: 14px;
}
.auth-wrap input[type=radio]:checked + .label.woman {
  font-size: 14px;
  border: 4px solid #EC4899;
  border-radius: 80px;
  background: #FFE1F8 !important;
  border-radius: 80px;
  padding: 10px;
}
.auth-wrap .auth-input input:focus {
  box-shadow: none;
}
.auth-wrap .label img {
  position: relative;
  margin: 5px 0;
}
.auth-wrap .blueBg {
  position: relative;
  display: block;
}
.auth-wrap .blueBg img {
  z-index: 1;
  left: 0;
  top: 0;
}
.auth-wrap .im-title {
  margin: 0 0 0 auto;
  font-size: 16px;
  font-weight: 500;
  color: #010101;
  margin-right: 20px;
}

.header-wrap a i {
  color: #A8AEBA;
  font-size: 30px;
}
.header-wrap .notification-item {
  position: relative;
}
.header-wrap .notification-item:after {
  position: absolute;
  height: 10px;
  width: 10px;
  background: #2EA4FC;
  content: "";
  right: 5px;
  border-radius: 50px;
  top: -10px;
}
.header-wrap .ri-notification-line.active {
  color: #2EA4FC;
}

.footer-bg {
  height: 100px;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  z-index: 999;
}
.footer-bg .footer-wrap {
  width: 93%;
  background-image: linear-gradient(to right, #EC018B, #FC6667);
}
.footer-bg .footer-wrap a i {
  font-size: 20px;
  color: #fff;
}
.footer-bg .footer-wrap .menu-item {
  background: transparent;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 100px;
}
.footer-bg .footer-wrap .menu-item.active {
  background-color: #fff !important;
}
.footer-bg .footer-wrap .menu-item.active i {
  color: #2EA4FC;
}

.main-content {
  margin-bottom: 120px;
}

.main-content.no-padding {
  margin: 0;
  padding: 0;
}

.card-bg-1 {
  background-image: linear-gradient(170deg, #67D6F0, #549DF0);
}

.card-bg-2 {
  background-image: linear-gradient(170deg, #50A4FE, #EC4899);
}

.card-bg-3 {
  background-image: linear-gradient(170deg, #5CD6E9, #6713FA);
}

.card-bg-4 {
  background-image: linear-gradient(170deg, #FEED50, #48ECDC);
}

.tinder {
  height: 614px;
  height: 510px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.loaded.tinder {
  opacity: 1;
}

.tinder--status {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.tinder--status i {
  font-size: 100px;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.2s ease-in-out;
  position: absolute;
  width: 100px;
  margin-left: -50px;
}

.tinder_love .fa-heart {
  opacity: 0.7;
  transform: scale(1);
}

.tinder_nope .fa-remove {
  opacity: 0.7;
  transform: scale(1);
}

.tinder--cards {
  flex-grow: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.tinder--card {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  position: absolute;
  will-change: transform;
  transition: all 0.3s ease-in-out;
  cursor: grab;
  border-radius: 40px;
  padding: 10px;
}

.moving.tinder--card {
  transition: none;
  cursor: grabbing;
}

.tinder--card img {
  max-width: 100%;
  pointer-events: none;
}

.tinder--user-info {
  padding: 20px 0;
}
.tinder--user-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.tinder--user-info p {
  pointer-events: none;
  font-size: 16px;
  color: #fff;
}

.tinder--buttons {
  flex: 0 0 100px;
  text-align: center;
  padding-top: 20px;
}

.tinder--buttons button {
  border-radius: 50%;
  line-height: 60px;
  width: 60px;
  border: 0;
  background: #FFFFFF;
  display: inline-block;
  margin: 0 8px;
}

.tinder--buttons button:focus {
  outline: 0;
}

.tinder--buttons i {
  font-size: 32px;
  vertical-align: middle;
}

.fa-heart {
  color: #FFACE4;
}

.fa-remove {
  color: #CDD6DD;
}

.tinder--user-dp {
  background-size: cover;
  background-position: top;
  height: 400px;
  border-radius: 40px;
  pointer-events: none;
}

.spotlight-btn {
  background-image: linear-gradient(to bottom, #FCC52E, #FFD765);
  text-align: center;
  border-radius: 50px;
  padding: 10px;
  margin-top: 15px;
}
.spotlight-btn p {
  color: #fff;
}
.spotlight-btn p span {
  text-align: right;
}

.user-dp-v2 {
  height: 300px;
}

.tinder-user-interaction {
  pointer-events: none;
  padding-bottom: 30px;
}
.tinder-user-interaction button {
  background: none;
  border: none;
}

.my-match-pages {
  margin: 30px 0;
}
.my-match-pages .mr-slider-dp::after {
  display: none !important;
}

.mr-slider-dp.match-card-blur.rounded-4 {
  position: relative;
}

.beeSeenHere-slider-wrap {
  position: relative;
}

.beeSeenHere-slider-item {
  border-radius: 30px;
  height: 500px;
  margin: 0 5px;
}

.beeSeenHere-slider-inner-item {
  position: absolute;
  bottom: 30px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.beeSeenHere-slider-inner-item h3 {
  color: #fff;
}
.beeSeenHere-slider-inner-item p {
  color: #fff;
}

#back-button {
  background: none;
  border: 0;
}

.activity-slider-wrap {
  height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.activity-menu-wrap {
  background-image: linear-gradient(to right, #EC018B, #FC6667);
  padding: 20px 0;
  text-align: center;
}
.activity-menu-wrap ul {
  margin: 0 !important;
}
.activity-menu-wrap .activity-menu {
  background: none;
  border: 0;
  margin: 0 5px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  width: 130px;
  padding: 10px;
}
@media screen and (width: 428px) {
  .activity-menu-wrap .activity-menu {
    width: 110px;
  }
}
.activity-menu-wrap .activity-menu.active {
  border-radius: 50px;
  padding: 10px;
  background-image: linear-gradient(to right, #EC018B, #FC6667);
}

.message-wrap {
  position: relative;
}
.message-wrap input {
  background-color: #f3f3f3;
  width: 100%;
  border: 0;
  border-radius: 50px;
  padding: 16px 40px !important;
}
.message-wrap input:focus {
  box-shadow: none;
  background-color: #f3f3f3;
}
.message-wrap i {
  position: absolute;
  top: 14px;
  left: 15px;
  font-size: 20px;
  color: #969598;
}
.message-wrap .message-item-wrap {
  border-radius: 50px;
}
.message-wrap .message-item-wrap .single-message-item {
  margin: 20px 0;
}
.message-wrap .message-item-wrap .single-message-item h6 {
  color: #010101;
  font-weight: 700;
}
.message-wrap .message-item-wrap .single-message-item p {
  margin-top: 5px;
  color: #969598;
  font-size: 14px;
}
.message-wrap .message-item-wrap .single-message-item span {
  color: #2EA4FC;
}
.message-wrap .message-item-wrap .message-item-user-dp {
  height: 75px;
  width: 75px;
  border-radius: 50px;
  background-size: cover;
  background-position: top;
}
.message-wrap .message-item-wrap .message-item-user-dp.active {
  position: relative;
}
.message-wrap .message-item-wrap .message-item-user-dp.active:after {
  content: "";
  background: #2EA4FC;
  height: 17px;
  width: 17px;
  position: absolute;
  right: 0;
  border-radius: 50px;
  border: 3px solid #fff;
}

.dashboard-wrap .edit-profile {
  position: relative;
  z-index: 2;
  text-align: right;
}
.dashboard-wrap .edit-profile i {
  background: #fff;
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  height: 30px;
  width: 30px;
  border-radius: 50px;
  line-height: 30px;
  text-align: center;
  color: #2EA4FC;
}
.dashboard-wrap .dashboard-user-dp {
  height: 170px;
  width: 170px;
  background-position: top;
  background-size: cover;
  border-radius: 100px;
  border: 3px solid #fff;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
.dashboard-wrap .dashboard-header {
  background-size: cover;
  background-position: top;
  height: 350px;
}
.dashboard-wrap .dashboard-user-info h3 {
  padding-top: 10px;
  color: #fff;
  padding-bottom: 5px;
  z-index: 2;
  position: relative;
}
.dashboard-wrap .dashboard-user-info p {
  color: #fff;
  z-index: 2;
  position: relative;
}
.dashboard-wrap .dashboard-header {
  position: relative;
}
.dashboard-wrap .dashboard-header:after {
  position: absolute;
  content: "";
  background-image: linear-gradient(to right, rgba(236, 3, 132, 0.72), rgba(251, 98, 105, 0.72));
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.dashboard-wrap .dashboard-widget {
  background: #fff;
  padding: 20px 0;
  margin-top: -40px;
  z-index: 3;
  position: relative;
  border-radius: 34px 34px 0 0;
}
.dashboard-wrap .dashboard-widget .dashboard-inner-widget {
  box-shadow: 0 3px 17px rgba(0, 0, 0, 0.07);
  border-radius: 11px;
  margin-bottom: 10px;
}
.dashboard-wrap .dashboard-widget .dashboard-inner-widget ul {
  margin: 0;
  padding-left: 15px;
}
.dashboard-wrap .dashboard-widget .dashboard-inner-widget ul li {
  list-style: none;
  margin-bottom: 25px;
}
.dashboard-wrap .dashboard-widget .dashboard-inner-widget ul li:last-child {
  margin-bottom: 0px !important;
}
.dashboard-wrap .dashboard-widget .dashboard-inner-widget ul li a img {
  margin-right: 15px;
}
.dashboard-wrap .dashboard-widget .dashboard-inner-widget ul li a {
  color: #010101;
  font-size: 16px;
  font-weight: 500;
}
.dashboard-wrap .dashboard-widget .log-out-btn-wrap button {
  background: #FF2A2A;
  color: #fff;
  width: 100%;
  border: 0;
  border-radius: 11px;
  padding: 13px;
  margin-top: 10px;
}

.user-card-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px;
}
.user-card-wrap .user-single-card {
  box-shadow: 0 70px 85px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.user-card-wrap .user-single-card .uc-dp {
  height: 100px;
  width: 100px;
  border-radius: 100px;
  background-size: cover;
  margin: 0 auto;
}
.user-card-wrap .user-single-card .uc-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 5px;
}
.user-card-wrap .user-single-card .uc-info p {
  font-size: 14px;
  margin-bottom: 20px;
}
.user-card-wrap .user-single-card .uc-info .uc-btn button {
  background: #2EA4FC;
  border: 0;
  width: 60px;
  border-radius: 50px;
  font-size: 20px;
  color: #fff;
}
.user-card-wrap .user-single-card .uc-info .uc-btn button:first-child {
  background-color: #EC4899;
}

.edit-profile-wrap .edit-profile-item {
  background: white;
  padding: 25px;
  border-radius: 11px;
  box-shadow: 0 3px 17px rgba(0, 0, 0, 0.17);
}
.edit-profile-wrap .edit-profile-item ul {
  padding-left: 20px;
}
.edit-profile-wrap .edit-profile-item ul li {
  padding-bottom: 20px;
  list-style: none;
}
.edit-profile-wrap .edit-profile-item ul li img {
  margin-right: 15px;
}
.edit-profile-wrap .edit-profile-item ul li a {
  color: #010101;
  font-size: 18px;
  font-weight: 500;
}
.edit-profile-wrap .edit-profile-item ul li:last-child {
  margin-bottom: -20px !important;
}

.edit-profile-dp {
  height: 400px;
  width: 100%;
  border-radius: 5px;
  background-position: top;
  background-size: cover;
  position: relative;
}
.edit-profile-dp button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 0;
  height: 90px;
  width: 90px;
  border-radius: 50px;
  font-size: 60px;
  box-shadow: 0 3px 51px #2EA4FC;
}

label {
  cursor: pointer;
  /* Style as you please, it will become the visible UI component. */
}

#fileInput {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.edit-profile-btn button {
  background: #2EA4FC;
  color: #fff;
  border: 0;
  margin-top: 20px;
  width: 140px;
  padding: 10px;
  border-radius: 50px;
  margin: 0 auto;
  margin-right: 10px;
  box-shadow: 0 3px 51px rgba(46, 164, 252, 0.52);
}

.change-pws-wrap .auth-input {
  background-color: #fff;
  border: 0;
  padding: 20px 50px;
  border-radius: 100px;
  width: 100%;
  box-shadow: 0px 0px 76px rgba(0, 0, 0, 0.07);
}
.change-pws-wrap img {
  top: 19px;
  position: absolute;
  left: 25px;
}
.change-pws-wrap button {
  background: #2EA4FC;
  color: #fff;
  border: 0;
  width: 60%;
  padding: 15px;
  border-radius: 100px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 3px 51px rgba(46, 164, 252, 0.52);
}

.search-wrap .search-header-wrap {
  background: #F1F1F1;
  border-radius: 50px;
}
.search-wrap .search-menu {
  background: #F1F1F1;
  border: 0;
  padding: 15px;
  border-radius: 50px;
  width: 100%;
}
.search-wrap .search-menu.active {
  background: #2EA4FC;
  color: #fff;
}

.user-photo-manager-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px;
}
.user-photo-manager-wrap .user-single-photo {
  height: 170px;
  width: 100%;
  background-position: top;
  background-size: cover;
  border-radius: 5px;
  position: relative;
  background-color: #EDF4F6;
}
.user-photo-manager-wrap .user-single-photo button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 0;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  font-size: 20px;
  box-shadow: 0 3px 51px #2EA4FC;
}

.update-btn {
  background: #2EA4FC;
  color: #fff;
  border: 0;
  width: 60%;
  padding: 15px;
  border-radius: 100px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 3px 51px rgba(46, 164, 252, 0.52);
}

.single-settings-widget {
  margin-bottom: 50px;
  text-align: center;
  padding: 30px;
  border-radius: 52px;
  box-shadow: 0 70px 85px rgba(0, 0, 0, 0.16);
}
.single-settings-widget h4 {
  font-size: 20px;
  font-weight: 700;
  color: #010101;
  margin: 15px 0;
}
.single-settings-widget p {
  margin-bottom: 30px;
}

.referrals-wrap {
  margin-top: -15px !important;
}

.referls-dp {
  height: 120px;
  width: 120px;
  border-radius: 100px;
  margin: 0 auto;
  background-size: cover;
  background-position: top;
}

.modal-box-header h3 {
  font-weight: var(--mf-fw-bold);
}

.modal-box-main {
  margin-bottom: 30px;
}

.modal-share-link p {
  border-radius: 3em;
  font-size: 14px;
  font-weight: 900;
  margin: 1.5em 0;
  letter-spacing: 0.03em;
  text-align: center;
}

.ift-copy-code {
  border: 1px solid #222;
  border-radius: 2em;
  color: #222;
  cursor: pointer;
  display: inline-block;
  font-size: 0.685em;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1em;
  margin-left: 1em;
  padding: 1em 1em;
  position: relative;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.gem-icon {
  background-image: url("../images/coin.png");
  height: 25px !important;
  width: 35px !important;
  display: block;
  margin: 0 auto;
}

.user-photo-slider-container {
  width: 100%;
  margin: 0 auto;
}

ul {
  margin: 0;
  padding: 0;
}

.layout {
  width: 100%;
  position: relative;
}
.layout button {
  position: absolute;
  top: 15px;
  z-index: 1;
  left: 15px;
}

.layout a {
  color: #666;
}

.slide {
  display: none;
}

.slide li {
  list-style: none;
}

.slide.slick-initialized {
  display: block;
}

.slick-dots {
  margin-top: 5px;
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 4;
}

.slick-dots li {
  display: inline-block;
  max-height: 50px;
  max-width: 50px;
  margin: 5px;
}

.slick-dots li img {
  height: auto;
  width: 100%;
  cursor: pointer;
  opacity: 0.5;
  border-radius: 5px;
}

.slick-dots li.slick-active img {
  cursor: default;
  opacity: 1;
}

.icon {
  display: inline-block;
  height: 50px;
  width: 50px;
}

.icon__cnt {
  height: 100%;
  width: 100%;
}

.img-slider {
  background-position: top;
  background-size: cover;
  height: 400px;
  width: 100%;
}

.user-profile-info-wrap {
  background: #fff;
  padding: 15px;
  border-radius: 34px 34px 0 0;
  margin-top: -30px;
  z-index: 1;
  position: relative;
}
.user-profile-info-wrap .header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #010101;
}
.user-profile-info-wrap .header p {
  color: #969598;
  font-size: 20px;
  font-weight: 400;
  margin-top: 5px;
}
.user-profile-info-wrap .header p i {
  color: #2EA4FC;
}
.user-profile-info-wrap .header .user-interact {
  background-color: #F6F9FA;
  margin-top: -50px;
  padding: 20px 10px;
}
.user-profile-info-wrap .header .user-interact button,
.user-profile-info-wrap .header .user-interact a {
  background: none;
  border: 0;
}
.user-profile-info-wrap .header .user-tag-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.user-profile-info-wrap .header .user-tag-pills p {
  background: #FFEEEC;
  color: #ED0789 !important;
  border-radius: 50px;
  padding: 10px 18px;
  text-align: center;
  margin: 6px;
}
.user-profile-info-wrap .header .user-bio {
  background-color: #F6F9FA;
}
.user-profile-info-wrap .header .user-bio p {
  font-size: 14px;
  padding: 10px 20px;
}
.user-profile-info-wrap .user-profile-inner-widget-wrap .user-profile-inner-widget-header {
  background-image: linear-gradient(to right, #EC018B, #FC6667);
  padding: 20px;
  border-radius: 10px 10px 0 0;
}
.user-profile-info-wrap .user-profile-inner-widget-wrap .user-profile-inner-widget-header h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.user-profile-info-wrap .user-profile-inner-widget-wrap .user-profile-inner-widget-body {
  background: #F6F9FA;
  border-radius: 0 0 10px 10px;
  padding: 10px 20px;
}
.user-profile-info-wrap .user-profile-inner-widget-wrap .user-profile-inner-widget-body h3 {
  color: #010101;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
}
.user-profile-info-wrap .user-profile-inner-widget-wrap .user-profile-inner-widget-body span {
  margin-bottom: 10px;
  display: block;
  color: #969598;
}
.user-profile-info-wrap .user-profile-inner-widget-wrap .user-profile-inner-widget-body p {
  font-size: 14px;
}
.user-profile-info-wrap .user-profile-inner-widget-wrap .user-profile-inner-widget-body .user-tag-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  padding: 0 !important;
}
.user-profile-info-wrap .user-profile-inner-widget-wrap .user-profile-inner-widget-body .user-tag-pills p {
  font-size: 17px;
  background: #FFEEEC;
  color: #ED0789 !important;
  border-radius: 50px;
  padding: 10px 18px;
  text-align: center;
  margin: 6px;
}
.user-profile-info-wrap .user-profile-inner-widget-wrap .matches-btn {
  background: #F8AE00;
  padding: 15px;
  display: block;
  text-align: center;
  width: 60%;
  margin: auto;
  border-radius: 100px;
  color: #fff;
  box-shadow: 0 3px 51px rgb 252, 197, 46, 52%;
}

.circle-chart {
  width: 60px;
  height: 60px;
}

.circle-chart__circle {
  stroke: #2EA4FC;
  stroke-width: 2;
  stroke-linecap: square;
  fill: none;
  animation: circle-chart-fill 2s reverse;
  /* 1 */
  transform: rotate(-90deg);
  /* 2, 3 */
  transform-origin: center;
  /* 4 */
}

.circle-chart__circle--negative {
  transform: rotate(-90deg) scale(1, -1);
  /* 1, 2, 3 */
}

.circle-chart__background {
  stroke: #efefef;
  stroke-width: 2;
  fill: none;
}

.circle-chart__info {
  animation: circle-chart-appear 2s forwards;
  opacity: 0;
  transform: translateY(0.3em);
}

.circle-chart__percent {
  dominant-baseline: middle;
  text-anchor: middle;
  font-size: 8px;
}

.circle-chart__subline {
  text-anchor: middle;
  font-size: 3px;
}

@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@keyframes circle-chart-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.skills {
  color: black;
}

.skills_section {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}

.skill-head {
  margin: 80px 0;
}

.skill-head h1 {
  font-size: 60px;
  font-weight: 700;
}

.skill-head p {
  margin-bottom: 10px;
}

.skills-area {
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
}

.single-skill {
  width: 25%;
  margin-bottom: 80px;
}

.success-stroke {
  stroke: #2EA4FC;
}

.circle-chart__background {
  stroke: #ede4e4;
  stroke-width: 1;
}

.slider-full-height {
  height: calc(100vh - 240px);
  height: calc(100vh - 260px);
}

.mr-slider-wrap .mr-slider-dp {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.mr-slider-wrap .mr-slider-dp::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #000;
  left: 0;
  top: 0;
  border-radius: 16px;
  opacity: 0.4;
}
.mr-slider-wrap .mr-more-btn {
  background: 0;
  border: 0;
  color: #fff;
  font-size: 36px;
  margin-right: 10px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.mr-slider-wrap .mr-photo-privicy {
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
.mr-slider-wrap .mr-photo-privicy p {
  color: #fff;
}
.mr-slider-wrap .mr-photo-privicy i {
  font-size: 40px;
}
.mr-slider-wrap .mr-photo-privicy button {
  background-color: #F8AE00;
  border: 0;
  color: #fff;
  padding: 5px 17px;
  border-radius: 50px;
  font-size: 14px;
  text-transform: capitalize;
  margin-top: 15px;
}
.mr-slider-wrap .mr-user-info {
  background-image: linear-gradient(to top, rgb(13, 12, 13), rgba(13, 12, 13, 0));
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 1;
}
.mr-slider-wrap .mr-user-info h4 {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}
.mr-slider-wrap .mr-user-info p {
  color: #fff;
}
.mr-slider-wrap .mr-user-info .user-info-interact button {
  background: none !important;
  border: 0;
}

.matches-wrap {
  background-image: url("../images/Matches.png");
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.matches-wrap .matches-header {
  position: absolute;
  top: 20px;
  left: 20px;
}
.matches-wrap .matches-body {
  padding-top: 150px;
  text-align: center;
}
.matches-wrap .matches-body h1 {
  font-family: "Dancing Script", cursive;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
.matches-wrap .matches-body p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.matches-wrap .matches-body .both-matches-dp {
  display: flex;
  justify-content: center;
  position: relative;
}
.matches-wrap .matches-body .both-matches-dp .matches-dp {
  height: 130px;
  width: 130px;
  border-radius: 100px;
  border: 3px solid #fff;
  background-size: cover;
  background-position: top;
}
.matches-wrap .matches-body .both-matches-dp .single-skill {
  background: #fff;
  height: 60px;
  border-radius: 100px;
  position: absolute;
  top: 30px;
  width: 60px;
  z-index: 1;
}
.matches-wrap .matches-body .matches-btn {
  margin-top: 100px !important;
}
.matches-wrap .matches-body .matches-btn a {
  background: #2EA4FC;
  color: #fff;
  padding: 20px;
  display: block;
  width: 70%;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50px;
  box-shadow: 0 3px 51px rgba(46, 164, 252, 0.52);
}
.matches-wrap .matches-body .matches-btn :last-child {
  background-color: #13193A;
  box-shadow: none;
}

.send-credit-btn {
  background: #2EA4FC;
  color: #fff;
  width: 140px;
  height: 40px;
  border-radius: 5px;
  margin-bottom: 5px;
  font-size: 16px;
  border: 0;
}

.send-cridit-form p {
  margin-bottom: 30px;
}

.modalHeaderbg {
  background-color: #4158D0 !important;
  background-image: linear-gradient(to right, #EC018B, #FC6667) !important;
  color: #fff;
}

.gradient5 {
  background-color: #21D4FD !important;
  background-image: linear-gradient(to right, #EC018B, #FC6667) !important;
  color: #fff;
}

.padding-bottom {
  padding-bottom: 250px;
}

.message-body {
  background-color: #E6EEF0;
  height: calc(100vh - 4rem);
  overflow: scroll;
  position: relative;
  padding-bottom: 72px;
}
.message-body .message-user-dp {
  height: 50px;
  width: 50px;
  border-radius: 100px;
  background-size: cover;
  background-position: top;
}
.message-body .message-text {
  background: #fff;
  border-radius: 0 21px 21px 10px;
  padding: 15px;
  width: 85%;
}
.message-body .message-text img {
  border-radius: 5px 20px 20px 20px;
}
.message-body .me .message-text {
  border-radius: 21px 0 10px 21px;
  text-align: end;
}
.message-body .chat-box {
  position: fixed;
  bottom: 0;
  background: #E6EEF0;
  left: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
  right: 0;
}
.message-body .chat-box textarea {
  width: 70%;
  margin: 15px 0;
  padding: 15px;
}
.message-body .chat-box textarea:focus {
  box-shadow: none;
}
.message-body .chat-box .message-send-btn {
  background: #2EA4FC;
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  text-align: center;
  line-height: 40px;
}
.message-body .chat-box .message-attachment-btn {
  background: #EC4899;
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  text-align: center;
  line-height: 40px;
}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
/* Modal Content */
/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.message-header i {
  font-size: 20px;
}

.image-preview-wrap {
  position: absolute;
  bottom: 70px;
  left: 0;
  background: #dae2e3;
  width: 100%;
  padding: 20px;
}
.image-preview-wrap img {
  width: 50px;
  height: auto;
}
.image-preview-wrap .msg-img-preview {
  position: relative;
}
.image-preview-wrap .msg-img-preview button {
  position: absolute;
  border: 0;
  height: 20px;
  width: 20px;
  border-radius: 100px;
  top: -10px;
  right: -10px;
  text-align: center;
  line-height: 20px;
}

.credit-balance {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 15px 51px rgba(252, 197, 46, 0.52);
}
.credit-balance h1 {
  color: #F8AE00;
  font-weight: bold;
  font-size: 30px;
}

.credit-package-wrap {
  margin-top: 50px;
  margin-bottom: 150px;
}
.credit-package-wrap .slick-list {
  overflow: inherit !important;
}
.credit-package-wrap .slick-dots {
  bottom: -40px;
}
.credit-package-wrap .slick-dots button {
  background: #969598;
  width: 40px;
  height: 30px;
  border: 0;
  color: #fff;
  border-radius: 3px;
}
.credit-package-wrap .slick-active button {
  background: #2EA4FC;
}
.credit-package-wrap .single-credit-package {
  background: #2EA4FC;
  text-align: center;
  border-radius: 20px;
  height: 350px;
  position: relative;
}
.credit-package-wrap .header {
  background-image: linear-gradient(to bottom, #EC018B, #FC6667);
  display: inline-block;
  padding: 15px 35px;
  border-radius: 100px;
  position: absolute;
  top: -35px;
  left: 90px;
  border: 10px solid #fff;
}
.credit-package-wrap .header p {
  color: #fff;
}
.credit-package-wrap .body {
  padding-top: 90px;
}
.credit-package-wrap .body h1 {
  font-size: 30px;
  color: #010101;
  margin-bottom: 10px;
}
.credit-package-wrap .body h1 span {
  font-size: 60px;
}
.credit-package-wrap .body p {
  color: #010101;
}
.credit-package-wrap .body .package-select-btn {
  border: 0;
  background-image: linear-gradient(to right, #EC018B, #FC6667);
  font-size: 16px;
  color: #fff;
  width: 200px;
  height: 50px;
  border-radius: 100px;
  position: absolute;
  bottom: 20px;
  left: 83px;
}/*# sourceMappingURL=index.css.map */