@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Urbanist:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('payment.css');

:root {
    /**
        @font family declaration
    */
    --mf-ff-main: 'Urbanist',
        sans-serif;
    /**
        @color declaration
    */
    --mf-preloader-bg: #CFB8E4;
    --mf-main-bg: #F0F2F5;
    --mf-common-white: #fff;
    --mf-common-black: #000;
    --mf-male: #572BBA;
    --mf-heading-primary: #000;
    --mf-grey-1: #f5f8fb;
    --mf-text-body: #A7A0AD;
    --mf-text-1: #000;
    --mf-theme-primary: #ededed;
    --mf-icon-1: #CFB8E4;
    --mf-icon-2: #572BBA;
    --mf-icon-3: #FF3ABD;
    /**
        @font weight declaration
    */
    --mf-fw-normal: normal;
    --mf-fw-elight: 200;
    --mf-fw-light: 300;
    --mf-fw-regular: 400;
    --mf-fw-medium: 500;
    --mf-fw-sbold: 600;
    --mf-fw-bold: 700;
    --mf-fw-ebold: 800;
    --mf-fw-black: 900;
    /**
        @font size declaration
    */
    --mf-fs-body: 14px;
    --mf-fs-p: 14px;
    --mf-fs-h1: 40px;
    --mf-fs-h2: 36px;
    --mf-fs-h3: 24px;
    --mf-fs-h4: 20px;
    --mf-fs-h5: 16px;
    --mf-fs-h6: 14px;
}

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

.main-bg {
    background-color: var(--mf-main-bg);
    min-height: 100vh;
}

p {
    margin: 0 !important;
    padding: 0 !important;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
    font-family: var(--mf-ff-main);
    font-size: var(--mf-fs-body);
    font-weight: var(--mf-fw-normal);
    color: var(--mf-text-body);
    line-height: 26px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--mf-heading-primary);
    margin-top: 0px;
    font-weight: 600;
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin: 0 !important;
    padding: 0 !important;
}

h1 {
    font-size: var(--mf-fs-h1);
}

h2 {
    font-size: var(--mf-fs-h2);
}

h3 {
    font-size: var(--mf-fs-h3);
}

h4 {
    font-size: var(--mf-fs-h4);
}

h5 {
    font-size: var(--mf-fs-h5);
}

h6 {
    font-size: var(--mf-fs-h6);
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-size: var(--mf-fs-p);
    font-weight: var(--mf-fw-normal);
    color: var(--mf-text-body);
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input {
    outline: none;
}

input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

/* Preloader  */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mf-preloader-bg);
    z-index: 9999;
}

#loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--mf--male);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -60px;
    margin-top: -60px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Landing  */
.landing-wrap {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.landing-overlay {
    text-align: center;
    box-sizing: border-box;
    background-color: rgb(207, 184, 228, 58%);
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.landing-info {
    border-radius: 41px 41px 0 0;
}

.theme-btn {
    display: inline-block;
    background: var(--mf-male);
    color: var(--mf-common-white);
    font-size: var(--mf-fs-h5);
    font-weight: var(--mf-fw-sbold);
    width: 250px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    margin: 20px 0;
}

/* auth page  */
.auth-header::after {
    background: var(--mf-male);
    display: inline-block;
    border-radius: 100%;
    height: 278px;
    width: 278px;
    position: absolute;
    content: '';
    top: -100px;
    left: -53px;
    z-index: -1;
}

.auth-header {
    height: 51vh;
}

.auth-bottom {
    position: absolute;
    /* bottom: 0; */
    width: 100%;
    background: var(--mf-male);
}

.theme-input {
    padding: 15px 40px;
    border-radius: 15px;
    background: transparent;
}

.theme-input:focus {
    box-shadow: none !important;
    background: transparent !important;
}

::placeholder {
    color: #fff !important;
}

.input-user {
    top: 15px;
    left: 12px;
    font-size: 20px;
    color: var(--mf-common-white) !important;
}

.forgot-pws {
    font-size: var(--mf-fs-h5);
    font-weight: var(--mf-fw-sbold);
    color: var(--mf-common-white);
}

.color-male {
    color: var(--mf-male);
}

.dontHave-account p {
    font-size: var(--mf-fs-h5);
    font-weight: var(--mf-fw-sbold);
}

.dontHave-account p a {
    color: var(--mf-common-white);
}

.auth-bottom {
    border-radius: 111px 175px 0 0;
}

.auth-bottom::after {
    position: absolute;
    background: #EAECEF;
    height: 210px;
    width: 100%;
    top: -40px;
    left: 0;
    content: '';
    z-index: -1;
    border-radius: 111px 175px 0 0;
}

.auth-bottom::before {
    position: absolute;
    background: #F3F4F6;
    height: 210px;
    width: 100%;
    top: -80px;
    left: 0;
    content: '';
    z-index: -1;
    border-radius: 111px 175px 0 0;
}

/* Im man woman  */
.heading {
    text-align: center;
    font-size: 0.8em;
}

.center-align {
    display: flex;
    justify-content: start;
    margin-left: -3px;
    margin-top: 10px;
}

.center-align input[type="radio"] {
    visibility: hidden;
    height: 0;
    width: 0;
}

.label {
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    background-color: rgb(233, 9, 249, 30%);
    color: var(--mf-common-white);
    transition: all .3s ease-out;
    font-size: 18px;
    font-weight: var(--mf-fw-medium);
    border-radius: 8px;
    border: 0;
    /* width: 160px; */
    /* height: 55px; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}

.label.man {
    background-color: var(--mf-common-white) !important;
    border: 4px solid var(--mf-common-white);
}

input[type="radio"]:checked+.label.man {
    /* background-color: red !important; */
    border: 4px solid var(--mf-preloader-bg);
}

.label.woman {
    background-color: var(--mf-common-white) !important;
    border: 4px solid var(--mf-common-white);
}

input[type="radio"]:checked+.label.woman {
    /* background-color: pink !important; */
    border: 4px solid var(--mf-preloader-bg);
}


.auth-input input:focus {
    box-shadow: none;
}

.label img {
    position: relative;
    margin: 5px 0;
}

.blueBg:after {
    content: '';
    background: var(--mf-male);
    position: absolute;
    height: 100px;
    width: 100px;
    left: 10px;
    top: -30px;
    border-radius: 50px;
}

.blueBg {
    position: relative;
}

.blueBg img {
    z-index: 1;
}

.im-title {
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    font-size: var(--mf-fs-h3);
    font-weight: var(--mf-fw-bold);
    color: var(--mf-common-white);
    margin-bottom: 25px;
}

/* Todays Match  */


/* Tinder Card  */
/* Tinder SLider  */
.tinder {
    /* width: 100vw; */
    height: 100vh;
    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--carmf {
    flex-grow: 1;
    /* padding-top: 30px; */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 0;
}

.tinder--card {
    display: inline-block;
    width: 100vw;
    max-width: 100%;
    height: 630px;
    background: var(--mf-common-white);
    padding-bottom: 00px;
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    will-change: transform;
    transition: all 0.3s ease-in-out;
    /* cursor: -webkit-grab; */
    /* cursor: -moz-grab; */
    cursor: grab;
    padding: 12px;
    /* box-shadow: 0px 11px 20px rgba(0, 0, 0, 7%); */
}

.tinder--card--shadow {
    box-shadow: 0px 11px 20px rgba(0, 0, 0, 0.07);
}

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

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

.tinder--card h3 {
    pointer-events: none;
}

.tinder--card p {
    pointer-events: none;
}

.tinder--buttons {
    flex: 0 0 230px;
    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;
}


.card-age {
    background-color: pink;
    color: var(--mf-common-white);
    display: inline-block;
    border-radius: 5px;
    width: 52px;
    height: 35px;
    line-height: 35px;
    font-size: var(--mf-fs-h6);
    pointer-events: none;
    text-align: center;
}

.card-community {
    background-color: green;
    color: var(--mf-common-white);
    display: inline-block;
    border-radius: 5px;
    width: 82px;
    height: 35px;
    line-height: 35px;
    font-size: var(--mf-fs-h6);
    text-align: center;
    pointer-events: none;
}

#card-name {
    font-size: var(--mf-fs-h3);
    font-weight: var(--mf-fw-bold);
    pointer-events: none;
    color: var(--mf-common-white);
    margin-left: 30px !important;
}

#married-status {
    font-size: var(--mf-fs-h6);
    font-weight: var(--mf-fw-regular);
    margin-left: 30px !important;
    pointer-events: none;
    color: var(--mf-common-white);
    text-align: left;
}

.card-info {
    padding-bottom: 15px !important;
    pointer-events: all;
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-image: linear-gradient(rgb(13, 12, 13, 0%), rgb(13, 12, 13, 100%));
    padding-top: 30px;
    border-radius: 0 0 40px 40px;
}

.slider-card-image {
    pointer-events: none;
    height: 610px;
    width: 100%;
    background-size: cover;
    background-position: top;
    border-radius: 40px;
}

.card-url {
    pointer-events: inherit !important;
}



.card-icon {
    background: #E0E2E5;
    height: 53px;
    width: 53px;
    text-align: center;
    line-height: 53px;
    border-radius: 50px;
}

.card-icon-1 {
    color: var(--mf-icon-1);
    font-size: var(--mf-fs-h3);
}

.card-icon-2 {
    color: var(--mf-icon-2);
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: var(--mf-fs-h2);
}

.card-icon-3 {
    color: var(--mf-icon-1);
    font-size: var(--mf-fs-h3);
}

.card-icon-4 {
    color: var(--mf-icon-3);
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: var(--mf-fs-h2);
}

.t-card-more {
    color: var(--mf-common-white);
}

.slider-card-footer {
    margin-top: 10px;
}

.spotlight {
    text-transform: uppercase;
    position: absolute;
    color: var(--mf-common-white);
    width: 100%;
    left: 0;
    background: linear-gradient(to right, rgba(135, 224, 253, 0) 0%, rgba(184, 169, 189, 0) 20%, var(--mf-male) 49%, var(--mf-male) 50%, var(--mf-male) 51%, rgba(107, 138, 172, 0) 80%, rgba(5, 171, 224, 0) 100%);
    z-index: 1;
    text-align: center;
    bottom: 10px;
}

.slider-card-location {
    background: var(--mf-common-white);
    padding: 10px;
    border-radius: 8px;
    margin: 10px;
    top: 5px;
    position: absolute;
}

/* Activity Page  */
.activity-item-slider-wrap {
    padding-bottom: 100px;
}

.activity-menuSlider {
    box-shadow: 0 16px 15px rgba(0, 0, 0, 3%);
}

.activity-menu-btn.active {
    background: var(--mf-common-white);
}

.activity-menu-btn {
    background: var(--mf-main-bg);
    color: var(--mf-male);
    font-size: var(--mf-fs-p);
    font-weight: var(--mf-fw-sbold);
    height: 50px;
    width: 100%;
    border-radius: 10px;
}

.tinder---card {
    display: inline-block;
    width: 92vw;
    max-width: 100%;
    height: 630px;
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    will-change: transform;
    transition: all 0.3s ease-in-out;
    cursor: grab;
}

/* Message Listing Page  */
.message-dp {
    border-radius: 50px;
    height: 50px;
    width: 50px;
    background-size: cover;
    background-position: top;
}

.unread {
    font-weight: var(--mf-fw-sbold);
    color: var(--mf-heading-primary);
    font-size: 12px;
}

.read {
    font-size: 12px;
}

/* My profile / user profile  */

.profile-slider-item {
    height: 500px;
    background-size: cover;
    background-position: top;
    border-radius: 40px !important;
}

.profile-bio i {
    color: var(--mf-male);
    margin-right: 5px;
}

.matches-btn {
    background: var(--mf-male);
    color: var(--mf-common-white) !important;
    font-weight: var(--mf-fw-sbold);
    font-size: var(--mf-fs-h5);
    width: 100%;
    display: block;
    border-radius: 50px;
    height: 50px;
    line-height: 50px;
}


/* My Profile  */
.mp-user-dp {
    height: 100px;
    width: 100px;
    border-radius: 100px;
    background-size: cover;
    background-position: top;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.12);
}

.mp-separator {
    position: relative;
    width: 100%;
    /* height: 115px; */
    border-bottom: 1px solid #fafafa;
    margin-top: 15px;
}

.mp-balance-wrap h6 {
    font-weight: var(--mf-fw-sbold);
    font-size: var(--mf-fs-h5);
    color: var(--mf-common-black);
}

.mp-balance-wrap span {
    font-weight: var(--mf-fw-sbold);
    font-size: var(--mf-fs-h5);
}

.mp-user-dp-wrap h4 {
    font-size: var(--mf-fs-h4);
    font-weight: var(--mf-fw-sbold);
}

.mp-inner-single-widget img {
    width: 25px;
}

.mp-user-dp-wrap p {
    font-size: var(--mf-fs-h5);
}

.mp-no-data-f-dp {
    height: 150px;
    width: 150px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    border-radius: 100px;
}

.mp-no-data-text p {
    font-size: var(--mf-fs-h6);
    margin: 10px 0 !important;
}

.profile-edit-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: var(--mf-male);
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 100px;
    color: var(--mf-common-white);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.12);
}

.my-profile-info {
    background: var(--mf-common-white);
    margin-top: -25px !important;
    padding: 20px !important;
    position: relative;
    border-radius: 10px;
    width: 95%;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.12);
}

.mp-inner-widget {
    background-color: var(--mf-common-white);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.12);
}

.mp-inner-single-widget p {
    font-size: var(--mf-fs-h6);
    color: var(--mf-common-black);
    font-weight: var(--mf-fw-sbold);
}

.mt2 {
    margin-top: 2px;
}

.send-btn {
    font-weight: var(--mf-fw-bold);
    text-transform: uppercase;
    background: var(--mf-male);
    color: var(--mf-common-white);
    padding: 10px 60px;
    border-radius: 5px;
    margin: 0 auto;
}

.my-profile-slider-item {
    height: 220px;
    background-position: top;
    background-size: cover;
}

.my-profile-dp {
    width: 61px;
    height: 61px;
    border-radius: 8px;
    background-size: cover;
    background-position: top;
}

.my-profile-settings {
    display: flex;
}

.my-profile-settings-icon {
    background: var(--mf-main-bg);
    height: 42px;
    border-radius: 8px;
    width: 42px;
    text-align: center;
    line-height: 42px;
    display: block;
}

.my-profile-settings i {
    color: var(--mf-male);
}

.my-profile-name h4 {
    font-weight: bold;
    font-size: var(--mf-fs-h3);
}

.my-profile-location {
    font-size: var(--mf-fs-h5);
}

.plan-slider-wrap {
    background-color: var(--mf-bg-1);
}

.upgrade-btn {
    background: var(--mf-male);
    color: var(--mf-common-white);
    border-radius: 8px;
    height: 40px;
    width: 100%;
    display: block;
    text-align: center;
    line-height: 40px;
    text-transform: capitalize;
    font-weight: var(--mf-fw-sbold);
    font-size: var(--mf-fs-h5);
}

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

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

.vm-my-profile-dp h3 {
    padding-top: 20px;
    color: var(--mf-common-white) !important;
}

.vm-my-profile-dp p {
    padding-top: 10px;
    color: var(--mf-common-white) !important;
}

.vm-my-profile-dp {
    height: 450px;
    background-size: cover;
    background-position: top;
    background-color: rgb(0, 0, 0, 75%);
}

.vm-profile-info {
    margin-top: -150px;
}

.vm-profile-info-box {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
}

.vm-profile-info-box p {
    margin-top: 10px;
    padding: 0;
}

.vm-profile-info-box-single-item h4 {
    font-size: 18px;
    font-weight: var(--mf-fw-bold);
}

.vm-profile-info-box-single-item p {
    font-size: 14px;
    font-weight: var(--mf-fw-regular);
}

.margin-bottom-100 {
    margin-bottom: 100px !important;
}


/* Matches  */
.gradient-bg {
    background-image: linear-gradient(#E7FBFF, #FFEAF0);
}

.mathces-title h1 {
    font-family: 'Dancing Script', cursive;
    color: var(--mf-icon-3);
    text-align: center;
}

.mathces-title {
    position: relative;
}

.mathces-title::before {
    position: absolute;
    content: '';
    top: 0;
    height: 50px;
    width: 50px;
    background: url('../images/shape/1.svg');
    background-size: cover;
    background-position: center;
    animation: HeartGlowing 2s infinite;
}

.mathces-title::after {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    height: 50px;
    width: 50px;
    background: url('../images/shape/2.svg');
    background-size: cover;
    background-position: center;
}

.matches-her-dp {
    height: 200px;
    width: 185px;
    border-radius: 10px;
    background-size: cover;
    background-position: top;
    transform: skew(-5deg, 5deg);
    margin: 40px 0;
    text-align: right;
    margin-left: auto;
}

.matches-my-dp {
    height: 200px;
    width: 185px;
    border-radius: 10px;
    background-size: cover;
    background-position: top;
    transform: skew(5deg, -5deg);
    /* margin: 40px 0; */
    text-align: right;
}

.both-matches-dp-wrap {
    position: relative;
}

.both-matches-dp-wrap::after {
    position: absolute;
    content: '';
    height: 112px;
    width: 112px;
    background: url('../images/shape/bigHeart.svg');
    top: 140px;
    left: 30%;
}

/* HeartGlowing  */
@keyframes HeartGlowing {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.matches-her {
    position: relative;
}

.matches-her-shape {
    position: absolute;
    top: 0;
}

.matches-her-shape-3 {
    position: absolute;
    right: -160px;
    top: 0;
}

.matches-her-shape-4 {
    position: absolute;
    right: -105px;
    top: 30px;
    animation: HeartGlowing 2s infinite;
}

.matches-her-shape-5 {
    position: absolute;
    right: -154px;
    top: 70px;
}

.matches-my {
    position: relative;
}

.matches-her-shape-6 {
    position: absolute;
    top: -35px;
    left: 10px;
}

.matches-her-shape-7 {
    position: absolute;
    right: 0;
    top: 0;
    animation: HeartGlowing 2s infinite;
}

.matches-her-shape-8 {
    position: absolute;
    top: 50px;
    right: 80px;
}

/* My Match  */
.match-header-menu.active {
    background: var(--mf-common-white);
}

.match-header-menu {
    display: block;
    background: var(--mf-main-bg);
    color: var(--mf-male) !important;
    font-size: var(--mf-fs-p);
    font-weight: var(--mf-fw-sbold);
    height: 50px;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    line-height: 50px;
}

/* BeeSeenHere  */
.beeSeenHere-wrap {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
}

.beeSeenHere-item {
    width: 100%;
    height: 174px;
    border-radius: 10px;
    background-size: cover;
    background-position: top;
}

.beeSeenHere-item-userInfo {
    bottom: 0;
    left: 0;
    background-image: linear-gradient(rgb(13, 12, 13, 0%), rgb(13, 12, 13, 100%));
    width: 100%;
    padding-left: 10px;
    padding-top: 20px;
    padding-bottom: 5px;
    border-radius: 0 0 10px 10px;
}

.beeSeenHere-item-userInfo h6 {
    color: var(--mf-common-white);
    font-size: var(--mf-fs-h5);
}

.beeSeenHere-item-userInfo p {
    color: var(--mf-common-white);
    font-size: var(--mf-fs-p);
}

/* Referal Page  */

/* Get Referal  */
.getRefarel-dp {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    border-radius: 100px;
    background-size: cover;
    background-position: top;
    margin-bottom: 20px;
}

.getRefarel-bg {
    height: 220px;
    background-position: top;
    background-size: cover;
    background-color: var(--mf-common-black);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.getRefarel-bg h4 {
    text-align: center;
    color: var(--mf-common-white);
    font-size: var(--mf-fs-h3);
}

.referl-input {
    font-size: 14px;
    color: var(--mf-border);
    padding: 10px 15px;
    border-radius: 50px;
    border: transparent;
    margin-top: 20px;
}

.getRefarel-inner-header p {
    color: var(--mf-heading);
    font-size: var(--mf-fs-h5);
    font-weight: var(--mf-fw-medium);
}

.clickToCopy {
    border: 1px solid #e9ecef;
    padding: 5px 20px;
    font-size: var(--mf-fs-h6);
    border-radius: 100px;
    margin-top: 20px;
    background: #e9ecef;
    text-transform: capitalize;
}

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

.getRefarel-item p {
    font-size: 13px;
}

.getRefarel-item span {
    font-weight: var(--mf-fw-sbold);
}

/* Edit Profile  */
/* Edit Profile  */
.mt-75 {
    margin-top: 75px !important;
}

.ep-images-box {
    height: 100px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    margin-bottom: 8px;
    position: relative;
}

.ep-images-box.extra-box {
    height: 208px;
    margin-bottom: 0;
}

.image-up-count {
    right: 20px;
    bottom: 10px;
    background: var(--mf-male);
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50px;
    color: var(--mf-common-white);
}

.item.border-t-white.p-3.border-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-edit-input {
    width: 60%;
    float: right;
    text-align: right;
    border: 0;
    color: var(--mf-border);
    font-size: var(--mf-fs-h6);
}

.fs-14 {
    font-size: var(--mf-fs-h6);
}

.item h2 {
    font-size: var(--mf-fs-h4);
    margin: 15px 0;
}

.modal-dialog-end {
    display: flex;
    align-items: end;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-select-item.border-bottom {
    display: block;
    width: 100%;
}

.form-switch .form-check-input:focus {
    box-shadow: none !important;
}

.mt2 {
    margin-top: 2px;
}

/* Settings Page  */


.select2-container {
    display: block !important;
}

/* Modal CSS  */
/* Credit Popup  */
.transfer-credit-dp {
    height: 250px;
    width: 250px;
    border-radius: 10px;
    margin: 0 auto;
    background-position: top;
    background-size: cover;
    margin-bottom: 50px;
}

.transfer-credit-wrap input:focus {
    box-shadow: none !important;
}

.modal-cancle-btn {
    background-color: none !important;
}

.modal-cancle-btn {
    font-size: 18px;
    width: 100%;
    padding: 15px;
}

.modal-send-credit-btn {
    background: var(--mf-male);
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-top: 25px;
    font-size: 18px;
    font-weight: var(--mf-fw-sbold);
    color: var(--mf-common-white);
}

.sendGiftBox {
    border: 3px solid #ededed;
    cursor: pointer;
}

.sendGiftBox:hover {
    border-color: #B721FF;
    transition: 0.3s;
}

.gradient18 {
    background-color: #4158D0 !important;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%) !important;
}

.innerSmall-wrap {
    text-align: center;
}

.ovl-promo-label.vivify.popIn.delay-500.gradient18 {
    position: absolute;
    top: 110px;
    right: 50px;
}

#send-gift-btn {
    text-align: center;
    border-radius: 50px;
    border: 0;
    padding: 10px 40px;
}

.send-gift-dp {
    height: 50px;
    width: 50px;
    border-radius: 100px;
    background-size: cover;
    background-position: top;
}

/* 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: var(--mf-male)54;
    margin: 0 7px;
}

[age_range_slider]>div>[inverse-right] {
    position: absolute;
    right: 0;
    height: 14px;
    border-radius: 10px;
    background-color: var(--mf-male)54;
    margin: 0 7px;
}

[age_range_slider]>div>[range] {
    position: absolute;
    left: 0;
    height: 14px;
    border-radius: 14px;
    background-color: var(--mf-male) !important;
}

[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;
    background: red;
}

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

div[age_range_slider]>input[type=range]::-webkit-slider-thumb {
    pointer-events: all;
    width: 28px;
    height: 28px;
    border-radius: 0px;
    border: 0 none;
    background: red;
    -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: -39px;
    z-index: 3;
    background-color: var(--mf-male) !important;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 28px;
    -webkit-border-radius: 28px;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
}

[age_range_slider]>div>[sign]:after {
    position: absolute;
    content: '';
    left: 0;
    border-radius: 16px;
    top: 19px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top-width: 16px;
    border-top-style: solid;
    border-top-color: var(--mf-male) !important;
}

[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-range-slider-wrap {
    background: var(--mf-main-bg);
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
}

.label-block {
    margin-bottom: 30px;
    font-weight: var(--mf-fw-sbold);
    /* color: var(--mf-male); */
}

/* Range 2 Way Stop */



/* Search Page  */
.search-menu-btn {
    background: var(--mf-main-bg);
    color: var(--mf-male);
    font-size: var(--mf-fs-p);
    font-weight: var(--mf-fw-sbold);
    height: 50px;
    width: 150px;
    border-radius: 10px;
    font-size: 18px;
}

.search-menu-btn.active {
    background: var(--mf-common-white);
}

/* Search Page  */


/* Change CSS  */
.form-check.form-switch input {
    height: 30px;
    width: 55px;
}

.fs-14 {
    font-size: 18px;
}

.profile-edit-input {
    width: 60%;
    float: right;
    text-align: right;
    border: 0;
    color: var(--mf-border);
    font-size: 18px;
}

.label-block {
    margin-bottom: 40px;
    font-weight: var(--mf-fw-sbold);
    font-size: 18px;
}

.form-switch .form-check-input:checked {
    background-color: var(--mf-male);
    border-color: var(--mf-male);
}

.item.border-t-white.p-3.border-bottom a i {
    font-size: 20px !important;
}

.modal-select-item.border-bottom.p-3 {
    font-size: 20px;
}

.fs-20 {
    font-size: 20px;
}

.mp-inner-single-widget p {
    font-size: 18px;
    color: var(--mf-common-black);
    font-weight: var(--mf-fw-sbold);
}

.mp-inner-single-widget span {
    font-size: 18px;
}

.mp-inner-single-widget img {
    margin-right: 7px;
    width: 30px;
}

.mp-balance-wrap h6 {
    font-weight: var(--mf-fw-sbold);
    font-size: 18px;
    color: var(--mf-common-black);
}

.match-header-menu {
    font-size: 18px;
}

.beeSeenHere p {
    font-size: 18px;
    margin-top: 5px !important;
    margin-left: 6px !important;
}

.slick-next.pull-right.sr.slick-arrow {
    background: #ededed;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50px;
    position: absolute;
    top: 40%;
    right: 10px;
    font-size: 25px;
}

.slick-prev.pull-left.sl.slick-arrow {
    background: #ededed;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50px;
    position: absolute;
    top: 40%;
    left: 10px;
    font-size: 25px;
    z-index: 1;
}

.up-info-item i {
    font-size: 25px;
}

.up-info-item {
    margin-bottom: 10px;
}

.profile-bio h5 {
    font-size: 20px;
    margin-bottom: 10px !important;
}

.profile-bio h6 {
    font-size: 18px;
}

.profile-bio p {
    font-size: 16px;
}




/* ==================================================================
                                Animition CSS 
 ==================================================================  */




.vivify {
    -webkit-animation-duration: .8s !important;
    -webkit-animation-fill-mode: both !important;
    animation-duration: .8s !important;
    animation-fill-mode: both !important;
}

.fadeInRightMeet {
    -webkit-animation-name: fadeInRightMeet;
    animation-name: fadeInRightMeet;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

@keyframes fadeInRightMeet {
    0% {
        -webkit-transform: translate3d(400px, 0, 0);
        transform: translate3d(400px, 0, 0);
        opacity: 0
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.popIn {
    -webkit-animation-name: popIn;
    animation-name: popIn
}

@keyframes popIn {
    0% {
        -webkit-transform: scale3d(0, 0, 0);
        transform: scale3d(0, 0, 0);
        opacity: 0
    }

    20% {
        opacity: 1
    }

    40% {
        -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
        -webkit-transform: scale3d(1.08, 1.08, 1.08);
        transform: scale3d(1.08, 1.08, 1.08)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    80% {
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    100% {
        -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.delay-0 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

.delay-100 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.delay-150 {
    -webkit-animation-delay: 150ms;
    animation-delay: 150ms
}

.delay-200 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.delay-250 {
    -webkit-animation-delay: 250ms;
    animation-delay: 250ms
}

.delay-300 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.delay-400 {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.delay-400 {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.delay-500 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.delay-600 {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fadeInBottom {
    -webkit-animation-name: fadeInBottom;
    animation-name: fadeInBottom;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

@keyframes fadeInBottom {
    0% {
        -webkit-transform: translate3d(0, 400px, 0);
        transform: translate3d(0, 400px, 0);
        opacity: 0
    }

    50% {
        opacity: .2
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.swoopInBottom {
    -webkit-animation-name: swoopInBottom;
    animation-name: swoopInBottom;
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

@keyframes swoopInBottom {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: scaleY(1.5) translate3d(0, 250px, 0);
        transform: scaleY(1.5) translate3d(0, 250px, 0)
    }

    40% {
        opacity: 1;
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scaleY(1.2) translate3d(0, 0, 0);
        transform: scaleY(1.2) translate3d(0, 0, 0)
    }

    65% {
        -webkit-transform: scaleY(1) translate3d(0, -20px, 0);
        transform: scaleY(1) translate3d(0, -20px, 0)
    }

    100% {
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scaleY(1) translate3d(0, 0, 0);
        transform: scaleY(1) translate3d(0, 0, 0)
    }
}



/* Credit page  */


.credit-balance {
    background: #ededed;
    padding: 25px;
    border-radius: 10px;
    /* box-shadow: 0 15px 51px #fcc52e; */
    margin-top: 10px;
}

.credit-balance h1 {
    color: #f8ae00;
    font-weight: bold;
    font-size: 30px;
}

.credit-package-wrap {
    margin-top: 30px;
    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: #fff;
    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;
    border: 10px solid #fff;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%); */
    background-image: url('../images/credit-bg.png');
    background-size: cover;
    background-position: top;
    height: 206px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.credit-package-wrap .header h1 {
    color: #fff;
    font-weight: bold;
}

.credit-package-wrap .header p {
    color: #fff;
    font-size: 18px;
}

.credit-package-wrap .body {
    padding: 20px 0;
}

.credit-package-wrap .body h1 {
    font-size: 30px;
    color: #572BBA;
    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 {
    margin-top: 20px;
    border: 0;
    background: #572BBA;
    font-size: 16px;
    color: #fff;
    width: 200px;
    height: 50px;
    border-radius: 100px;

}

.modal-dialog-end {
    display: flex;
    align-items: end;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
    min-height: calc(100% - 120px);
}

.buy-package-modal input[type="radio"] {
    visibility: hidden;
    height: 0;
    width: 0;
}

.buy-package-modal input[type="radio"]:checked+.label.man {
    border: 1px solid #572BBA;
}

.buy-package-modal h2 {
    color: #A7A0AD;
    font-size: 19px;
    font-weight: normal;

}


.buy-package-modal span {
    margin-top: 30px !important;
    color: #572BBA;
    font-size: 40px;
    font-weight: bold;
    display: block;
}

.buy-package-modal .pay-btn {
    background: #572BBA;
    color: #fff;
    width: 150px;
    height: 50px;
    border: 0;
    border-radius: 30px;
    font-size: 18px;
}