@font-face {
    font-family: font-outfit;
    src: url(../Outfit/font-outfit.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: font-outfit !important;
    /* transition: all 300ms ease; */
}

:root {
    --primary-color: #ff5485;
    --secondary-color: #1c3079;
    --heading-color: #212121;
    --body-color: #757575;
    --inactive-btn: #eeeced;
    --fill-color: #eeeced;
    --fill-border-color: #2121211a;
    --hover-color: #ff5485;
    --white-color: #fff;
}

button:focus {
    box-shadow: none !important;
}

.nav-link:focus, .nav-link:hover{
    color: var(--hover-color);
}

.form-select:focus {
    border-color: #1c30797a !important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #1c307987 !important;
}

.form-control:focus {
    color: #212529;
    background-color: var(--white-color);
    border-color: #1c30797a !important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #1c307987 !important;
}

html,
body {
    overflow-x: hidden;
    position: relative;
}

body {
    /* background-color: var(--body-color); */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    /* color: var(--hover-color) !important; */

}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color) !important
}

p {
    margin: 0;
}

img {
    width: 100%;
}

body {
    position: relative;
}

/* ================================================== navigation start ================================================== */

.nav-container .nav-mar-set {
    padding: 2rem 6rem 1rem;
    /* position: absolute !important; */
    top: 0;
    width: 100%;
    min-height: 6rem;
    z-index: 999;
    border-bottom: 2px solid #eee;
    box-shadow: 0px 5px 16px -14px #111;
}

.mat-logo {
    width: 100%;
    max-width: 10rem;
    margin-top: 0 !important;
    margin-right: 3rem !important;
}

.main-nav li a {
    color: #000;
    padding-right: 2rem !important;
    font-size: 1rem;
    margin-top: 0;
}

.main-nav li a svg {
    line-height: 1;
    fill: var(--white-color);
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-right: 10px;
    transition: all 300ms ease;
}

.main-nav li {
    position: relative;
}

ul.dropdown-ul {
    position: absolute;
    left: 0;
    transition: all .3s ease;
    z-index: 99;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    display: block;
    transform: translateY(40px);
    top: 100%;
    margin: 0;

    padding: 10px 0 15px !important;
    width: 15em;
    background: var(--white-color);
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, .1), 0 4px 15px 0 rgba(0, 0, 0, .1);
    text-align: left;
    border-radius: 2px;
}

.main-nav li:hover ul.dropdown-ul {
    height: auto;
    transform: translateY(0px);
    overflow: initial;
    visibility: visible;
    opacity: 1;
}

.main-nav li:hover .main-nav li {
    color: var(--hover-color);
}

.main-nav li:hover a svg {
    color: #ff5485;
    /* background-color: #ff5485; */
}


.main-nav li ul.dropdown-ul li {
    display: block;
    margin: 0;
    padding: 5px 30px 5px;

}

.main-nav li ul.dropdown-ul li a {
    color: var(--heading-color);
    font-size: 1rem;
}

.main-nav li ul.dropdown-ul li:hover {
    /* background-color: var(--hover-color); */
    color: var(--hover-color);
}


/* language dropdown  */
.sele-language {
    display: inline-block;
    position: relative;
}

.sele-language p {
    color: #000;
    padding-right: 2rem !important;
    font-size: 1.2rem;
}

.sele-language ul {
    position: absolute;
    left: -1rem;
    transition: all .3s ease;
    z-index: 99;
    opacity: 0;
    height: 15rem;
    overflow-x: hidden;
    overflow-y: scroll;
    visibility: hidden;
    display: block;
    transform: translateY(40px);
    top: 100%;
    margin: 0;
    padding: 10px 0 15px !important;
    width: 10em;
    background: var(--white-color);
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, .1), 0 4px 15px 0 rgba(0, 0, 0, .1);
    text-align: left;
    border-radius: 2px;
}

.sele-language ul li {
    display: block;
    margin: 0;
    padding: 5px 30px 5px;
}

.sele-language ul li a {
    color: var(--heading-color);
    font-size: 1rem;
}

.sele-language:hover ul {
    /* height: auto; */
    transform: translateY(21px);
    /* overflow: initial; */
    visibility: visible;
    opacity: 1;
}

/* language dropdown end */

.login-div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

button.login-btn {
    border: 2.5px solid var(--inactive-btn);
    background: none;
    transition: all 300ms ease;
    padding: 0.5rem 2.2rem;
    border-radius: 25px;
    /* color: var(--white-color); */
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.2rem;
    box-shadow: 0px 8px 11px 0px #eeeced45;
}

button.login-btn:hover {
    background: var(--primary-color);
    transition: all 300ms ease;
    border: 2.5px solid var(--primary-color);
}

.profile-head img {
    width: 50px !important;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

/* sidebar start */
.sidebar-container {
    padding: 1rem 0rem;
    position: relative !important;
    top: 0;
    width: 100%;
    /* min-height: 6rem; */
    z-index: 999;
    border-bottom: 2px solid #eee;
    box-shadow: 0px 5px 16px -14px #111;
}

.logo-icon-side {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.logo-side {
    width: 100%;
    max-width: 10rem;
}

.right-side-icon svg {
    display: inline-block;
    width: 3rem;
}

.right-side-icon svg path {
    color: #000;
}

/* sidebar end */

.sideber-here {
    position: fixed;
    right: 0;
    text-align: 0;
    top: 0;
    height: 100%;
    width: 17rem;
    overflow-x: hidden;
    overflow-y: scroll;
    /* box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18); */
    background: var(--white-color);
    /* background: white; */
    transform: translateX(100%);
    transition: all 300ms ease;
}


.open-side {
    transform: translateX(0%);
    transition: all 300ms ease;
}




.title-menu-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em;
}

.title-menu-menu img {
    width: 3rem;
}

.menu .menu-content .parent {
    transition: 0.2s ease;
}

.menu .menu-content .parent.active .link-parent {
    background: var(--active-bg);
    color: var(--active-color);
}

.menu .menu-content .parent .link-parent svg {
    fill: var(--active-color-fill);
}

.menu .menu-content .parent.active .link-parent svg path {
    fill: var(--active-color-fill);
}

.menu .menu-content .parent.active .link-parent .icon {
    transform: rotate(180deg);
    fill: var(--active-color-fill);
}

.menu .menu-content .parent .link-parent {
    padding: 0 20px;
    color: #414141;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu .menu-content .parent .link-parent span {
    font-weight: 400;
    margin-left: 0.25rem;
}

.menu .menu-content .parent ul {
    display: none;
}

.menu .menu-content .parent ul li {
    height: 50px;
    padding: 0 20px;
    display: flex;
    transition: 0.16s ease;
}

.menu .menu-content .parent ul li.active a {
    border-color: #5096f1;
    border-width: 4px;
    color: #0f56b3;
}

.menu .menu-content .parent ul li:hover {
    background: #f7f7f7;
}

.menu .menu-content .parent ul li a {
    padding: 0 20px;
    border-left: 2px solid #e0e0e0;
    color: #414141;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu .menu-content .title-menu {
    min-height: 48px;
    text-transform: uppercase;
    color: #818181;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 0 20px;
    letter-spacing: 0.1em;
}

.menu .menu-content .item {
    padding-bottom: 1.35rem;
}

.menu .menu-content .item .button {
    width: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    margin-left: auto;
    transition: 0.16s ease;
}

.menu .menu-content .item .button .icon {
    margin: 0;
}

.menu .menu-content .menu-list {
    display: block;
}

.menu .menu-content .menu-list li {
    height: 50px;
    display: flex;
    align-items: center;
}

.menu .menu-content .menu-list li a {
    width: 100%;
    padding: 0 20px;
    color: #414141;
    height: 55px;
    display: flex;
    align-items: center;
}

.menu .menu-content .users {
    display: block;
}

.menu .menu-content .users ul {
    display: block;
}

.menu .menu-content .users ul li {
    padding: 0 20px;
    height: 48px;
    display: flex;
    align-items: center;
}

.menu .menu-content .users ul li p {
    font-weight: 600;
}

.menu .menu-content .users svg {
    margin-right: 20px;
}

/* 
svg {
    fill: #a1a1a1;
    transition: 0.2s ease;
} */

.icon-left {
    fill: #818181;
    margin-right: 1rem;
    margin-left: 0;
}

.icon-left path {
    fill: #818181;
}

.icon {
    width: 24px;
    height: 24px;
    margin-left: auto;
}

.jq-dropdown {
    position: absolute;
    z-index: 1039;
    display: none;
}

.jq-dropdown-open {
    background: #f3f3f3;
}

.jq-dropdown .jq-dropdown-menu {
    min-width: 160px;
    max-width: 360px;
    list-style: none;
    background: white;
    border: solid 1px #eee;
    border-radius: 6px;
    box-shadow: 0px 1px 0px rgba(17, 17, 26, 0.05), 0px 0px 8px rgba(17, 17, 26, 0.1);
    overflow: visible;
    padding: 4px;
    margin: 0;
}

.jq-dropdown .jq-dropdown-panel {
    min-width: 160px;
    max-width: 360px;
    list-style: none;
    background: white;
    border: solid 1px #ddd;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    overflow: visible;
    padding: 4px 0;
    margin: 0;
    padding: 10px;
}

.jq-dropdown.jq-dropdown-tip {
    margin-top: 8px;
}

.jq-dropdown.jq-dropdown-tip:before {
    position: absolute;
    top: -6px;
    left: 9px;
    content: "";
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ddd;
    display: inline-block;
}

.jq-dropdown.jq-dropdown-tip:after {
    position: absolute;
    top: -5px;
    left: 10px;
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    display: inline-block;
}

.jq-dropdown.jq-dropdown-tip.jq-dropdown-anchor-right:before {
    left: auto;
    right: 9px;
}

.jq-dropdown.jq-dropdown-tip.jq-dropdown-anchor-right:after {
    left: auto;
    right: 10px;
}

.jq-dropdown.jq-dropdown-scroll .jq-dropdown-menu,
.jq-dropdown.jq-dropdown-scroll .jq-dropdown-panel {
    max-height: 180px;
    overflow: auto;
}

.jq-dropdown .jq-dropdown-menu li {
    list-style: none;
    padding: 0 0;
    text-indent: 0;
    margin: 0;
    line-height: 18px;
}

.jq-dropdown .jq-dropdown-menu li>a {
    display: block;
    color: inherit;
    text-decoration: none;
    line-height: 18px;
    font-weight: 600;
    padding: 8px 15px;
    margin: 0;
    white-space: nowrap;
}

.jq-dropdown .jq-dropdown-menu label {
    display: block;
    color: inherit;
    text-decoration: none;
    line-height: 18px;
    padding: 3px 15px;
    margin: 0;
    white-space: nowrap;
}

.jq-dropdown .jq-dropdown-menu li>a:hover,
.jq-dropdown .jq-dropdown-menu label:hover {
    background-color: #f2f2f2;
    color: inherit;
    cursor: pointer;
}

.jq-dropdown .jq-dropdown-menu .jq-dropdown-divider {
    font-size: 1px;
    border-top: solid 1px #e5e5e5;
    padding: 0;
    margin: 5px 0;
}

/* ================================================== navigation end ================================================== */



/* ================================================== hero-section start ================================================== */

.hero-section {
    background-image: url(../images/wedding.jfif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000075;
}

.hero-container {
    padding: 300px 0px 0px 0px;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    /* z-index: 999; */
}

.hero-form {
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #E6E6E6C7;
    border-radius: 2px;
}

.form-area {
    border-radius: 2px;
    box-shadow: 0px 0px 0px 15px rgba(153, 153, 153, 0.59);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 25px 40px;
    border-radius: 2px;
    background: var(--white-color);
    width: 100%;
    max-width: 33rem;
}

.from-header {
    text-align: center;
}

.from-header h2 {
    color: #1F2F49;
    font-weight: 600;
    font-size: 45px;
    /* white-space: nowrap; */
}

.form-top {
    padding-top: 1.5rem;
}

.family-and-horscope {

    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 25px 40px;
    border-radius: 2px;
    background: var(--white-color);
    width: 100%;
    max-width: 33rem;
    margin: auto;
}

.from-reg-btn {
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 15px;
    color: var(--white-color);
    font-weight: 500;
    padding: 10px 25px;
    margin-right: 1rem;
    width: 40%;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

/* ================================================== hero-section end ================================================== */

.input-selected {
    display: flex;
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
    padding-bottom: 1rem;
}


.input-selected label {
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 5px;
}

.input-selected input[type=number] {
    border: 1px solid #ced4da;
    font-size: 1rem !important;
    width: 100% !important;
    font-weight: 400 !important;
    text-align: left !important;
}

.input-selected .wrapper {
    width: 100%;
}

.dob-feilds {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
}

.submit-btn-top {
    margin-top: 2rem;
    text-align: center;
}

.btn-submit {
    transition: all 300ms ease;
    padding: 0.5rem 2.2rem;
    border-radius: 15px;
    background: none;
    border: 2px solid var(--secondary-color);
    letter-spacing: 1px;
    box-shadow: 0px 8px 11px 0px #eeeced45;
}

.btn-submit:hover {
    background: var(--primary-color);
    border: 2px solid var(--hover-color);
    color: var(--white-color);
}

.top-heading h1 {
    color: var(--white-color) !important;
    font-size: 4rem;
    padding: 5rem 0;
    text-align: center;
    font-weight: 600;
}

.bottom-from {
    padding: 3rem 1.5rem;
    background: var(--primary-color);
}

.bottom-from label {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 5px;
}

.bottom-from span {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
}

.btn-submit-bottom {
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    background: none;
    border-radius: 13px;
    transition: all 300ms ease;
    width: 100%;
}

.btn-submit-bottom:hover {
    background-color: var(--secondary-color);
    transition: all 300ms ease;
    border-color: var(--secondary-color);
    color: var(--white-color);
}

@media(max-width:991px) {

    .btn-submit-bottom {}
}

.top-haed-Matrimony {
    padding: 6rem 1rem;
    text-align: center;
}

.top-haed-Matrimony h2 {
    font-size: 3rem;
    font-weight: 700;
    padding-bottom: 1rem;
}

.features-right-side {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.features-right-side .row {
    height: 100%;
    width: 100%;
}

.icon-img img {
    width: 4rem;
}

.card-fea {
    height: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding-bottom: 3.6rem;
    text-align: center;
}

.card-fea h3 {
    padding: 1rem 0;
    margin-bottom: 0;
}

.card-fea p {
    padding-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.owl-theme .owl-dots {
    margin-top: 4rem;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #1c3079;
}

/* 
.bg-footer {
    background-color: #33383c;
    padding: 50px 0 30px;
}

.footer-heading {
    letter-spacing: 2px;
}

.footer-link a {
    color: #acacac;
    line-height: 40px;
    font-size: 14px;
    transition: all 0.5s;
}

.footer-link a:hover {
    color: #1bbc9b;
}

.contact-info {
    color: #acacac;
    font-size: 14px;
}

.footer-social-icon {
    font-size: 15px;
    height: 34px;
    width: 34px;
    line-height: 34px;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
}

.facebook {
    background-color: #4e71a8;
    color: var(--white-color);
}

.twitter {
    background-color: #55acee;
    color: var(--white-color);
}

.google {
    background-color: #d6492f;
    color: var(--white-color);
}

.apple {
    background-color: #424041;
    color: var(--white-color);
}

.footer-alt {
    color: #acacac;
}

.footer-heading {
    position: relative;
    padding-bottom: 12px;
}

.footer-heading:after {
    content: '';
    width: 25px;
    border-bottom: 1px solid var(--white-color);
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    border-bottom: 1px solid #1bbc9b;
}
 */

.download-section {
    padding: 5rem 0 5rem;
    position: relative;
}

.download-heading {
    text-align: center;
}

.download-heading h2 {
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 57px;
    text-align: center;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    gap: 1rem;
}


.download-right {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-right .down-head {
    font-size: 2rem;
    font-weight: 500;
    line-height: 32px;
    padding-bottom: 2rem;
}

.app-img {
    width: 75%;
    margin: auto;
}

p.down-description {
    padding-bottom: 2rem;
}



.card-container {
    background-color: var(--primary-color);
    border-radius: 15px;
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.75);
    color: var(--white-color);
    padding-top: 30px;
    position: relative;
    /* width: 350px; */
    max-width: 100%;
    text-align: center;
}

.card-container .round {
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 10rem !important;
    margin: 0 auto 1rem;
    padding: 7px;
}

button.primary {
    background: none;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    color: #231E39;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    padding: 10px 25px;
}

button.primary.ghost {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

button.primary.ghost:hover {
    background-color: #1c3079;
    color: var(--white-color);
}

.skills {
    background-color: var(--primary-color);
    text-align: center;
    padding: 15px;
    margin-top: 15px 0 15px;
}

.skills ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.skills ul li {
    border: 1px solid #f9f9f9;
    border-radius: 2px;
    display: inline-block;
    font-size: 12px;
    margin: 0 7px 7px 0;
    padding: 7px;
}


.brides-section {
    padding: 8rem 0 4rem;
}

.slider-heading {
    text-align: center;
    padding-bottom: 4rem;
}

.slider-heading h3 {
    font-size: 40px;
    font-weight: 500;
    /* margin-bottom: 57px; */
    text-align: center;
}

.slider-heading p {
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    padding-top: 1rem;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}

.owl-theme .owl-nav {
    display: none;
}


.card-container h3,
h6 {
    color: var(--white-color) !important;
}

li.list-inline-item svg path {
    fill: var(--white-color);
}

li.list-inline-item svg path {
    fill: var(--white-color);
}

li.list-inline-item:hover svg path {
    fill: var(--hover-color);
}

/* login ,model */
.model-login {
    background: none;
}

.login-menu {
    display: flex;
    align-items: center;
}


.login-btn-model {
    border: 3px solid var(--inactive-btn);
    background: none;
    transition: all 300ms ease;
    padding: 0.2rem 1.2rem;
    border-radius: 25px;
    color: #000;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1rem;
    box-shadow: 0px 8px 11px 0px #eeeced45;
}

.model-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    gap: 1.5rem;
    width: 100%;
}

.model-btns button {
    width: 100%;
}

.resend-email {
    padding-top: 1.5rem;
    text-align: center;
}

.resend-email span {
    display: block;
    text-align: center;
    padding-bottom: 10px;
}

.resend-email.border-sign {
    border-top: 2px solid;
    padding-top: 0.5rem !important;
    margin-top: 1.5rem;
}

.resend-email.border-sign a {
    color: var(--secondary-color);
    font-weight: 700;
}

.otp-login {
    border: 2.5px solid #1c3079;
    border-radius: 15px;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0.5rem 1rem;
    transition: all .3s ease;
    background: none;
}

.otp-login:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
    transition: all .3s ease;
    color: var(--white-color) !important;
}

.close-btn-model {
    position: absolute;
    top: 5%;
    right: 10%;
    cursor: pointer;
}

.forkeem {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* model end */

/* breadcurm start */

.bradcrumb {
    text-align: center;
    padding: 12rem 0 7rem;
    background-image: url(https://qiupid.modeltheme.com/wp-content/uploads/2022/12/main-breadcrumb.jpg);
    background-position: center;
    background-size: cover;
}

.breadcrum-area span {
    color: #fff;
    font-size: 1.2rem;
}

.breadcrum-area svg {
    margin: 0 0.3rem;
}

.breadcrum-area svg path {
    color: #fff;
}

.breadcrum-area h3 {
    color: #fff !important;
    padding-top: .7rem;
    font-size: 3rem;
}

/* breadcurm end */


/* contact start */
.map-area iframe {
    height: 100%;
    width: 100%;
}

.map-area {
    height: 20rem;
    width: 100%;
}

.contact-content {
    padding: 5rem 0 10rem;
}

.conhead h2 {
    font-weight: 600;
    font-size: 45px;
}

.contact-from {
    box-shadow: 0px 0px 8px 2px rgb(0 0 0 / 20%) !important;
}

.cont-del-div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
}

.iconSvg {
    background: var(--secondary-color);
    min-width: 66px;
    min-height: 66px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-del {
    margin: 2rem 0;
}

p.con-del-head {
    font-weight: 700;
    font-size: 1.3rem;
}

.iconSvg svg {
    width: 2rem;
    height: 2rem;
}

/* contact end */


/* member start */
.center-heading {
    text-align: center;
}

.center-heading .section-title {
    line-height: 38px;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 500;
}

.center-heading.colored .section-title {
    color: #ffffff;
}

.center-text {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #6F8BA4;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.center-text.colored {
    color: #FFC0EB;
}

.center-text p {
    margin-bottom: 30px;
}


section#pricing-plans {
    padding: 4rem 1rem;
}

.pricing-tabel .pricing-div {
    max-width: 20rem;
    width: 100%;
}

.pricing-tabel {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.pricing-item {
    background: #FFFFFF;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.13);
    border-radius: 5px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.pricing-item {
    background: #FFFFFF;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.13);
    border-radius: 5px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.pricing-item.active .pricing-header {
    position: relative;
}

.pricing-item.active .pricing-header .pricing-title {
    color: #fff;
}

.pricing-item.active .pricing-body .price-wrapper {
    background-image: linear-gradient(135deg, #ff5485 0%, #ff548569 100%);
}

.pricing-item.active .pricing-body .price-wrapper .currency {
    color: #fff;
}

.pricing-item.active .pricing-body .price-wrapper .price {
    color: #fff;
}

.pricing-item.active .pricing-body .price-wrapper .period {
    color: #fff;
}

.pricing-item .pricing-header {
    text-align: center;
    display: block;
    position: relative;
    padding-bottom: 10px;
}

.pricing-item .pricing-header .pricing-title {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff !important;
    position: absolute;
    width: 180px;
    height: 40px;
    line-height: 40px;
    left: 0px;
    right: 0px;
    margin: auto;
    top: -20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-image: linear-gradient(135deg, #ff5485 0%, #ff5485 100%);
}

.pricing-item .pricing-body {
    margin-bottom: 40px;
}

.pricing-item .pricing-body .price-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 10px 0;
    background: #f6f6f6;
}

.pricing-item .pricing-body .price-wrapper .currency {
    height: 47px;
    font-weight: 600;
    font-size: 36px;
    color: var(--primary-color);
    position: relative;
    /* top: -15px; */
}

.pricing-item .pricing-body .price-wrapper .price {
    font-weight: 700;
    font-size: 34px;
    color: var(--primary-color);
    letter-spacing: 2.12px;
}

.pricing-item .pricing-body .price-wrapper .period {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    letter-spacing: 0.88px;
}

.pricing-item .pricing-body .list li {
    text-align: center;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 14px;
    color: #3B566E;
    letter-spacing: 0.88px;
}

.pricing-item .pricing-body .list li.active {
    color: #3B566E;
    text-decoration: none;
}

.pricing-item .pricing-footer {
    text-align: center;
}

.btn-primary-line {
    width: 160px;
    margin: auto;
    display: inline-block;
    height: 44px;
    line-height: 45px;
    text-align: center;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #fff;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    outline: none !important;
    cursor: pointer;
    text-decoration: none !important;
    position: relative;
}

.pricing-item .pricing-footer .btn-primary-line {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    height: 36px;
    line-height: 36px;
}

.pricing-item .pricing-footer .btn-primary-line:hover {
    background: var(--primary-color);
    color: var(--white-color) !important;
}


/* member end */

/* start-free start */

.start-free .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.start-free {
    border-top: 1.5px solid #e3e3e3;
    border-bottom: 1.5px solid #e3e3e3;
    padding: 6rem;
    background: #ff54858c;
}

.start-btn .secondary-btn {
    border: 2px solid var(--secondary-color);
    background: none;
    border-radius: 15px;
    color: var(--secondary-color);
    font-weight: 500;
    padding: 10px 25px;
    cursor: pointer;

}

.start-btn .secondary-btn:hover {
    color: var(--white-color) !important;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.start-btn {
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 1rem;
}


.start-btn .primary-btn {
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 15px;
    color: var(--white-color);
    font-weight: 500;
    padding: 10px 25px;
    /* margin-right: 1rem; */
}

.start-btn .primary-btn:hover {
    color: var(--white-color) !important;
}

.start-btn {
    text-align: end;
}

.start-content h3 {
    font-size: 2rem;
    font-weight: 700;
    /* color: #fff !important; */
}

.start-content p {
    font-weight: 500;
    font-size: 1.1rem;
    padding-top: 0.7rem;
}

/* start-free end */



/* footer start */

.foo-logo {
    width: 10rem;
}

.footer-container {
    padding-top: 5rem;
}

.foo-about p {
    padding: 1.5rem 4rem 2rem 0;
    font-weight: 400;
}

.company-social-links ul {
    display: flex;
    gap: 1.4rem;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
}

.copy-right {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--secondary-color);
}

.right-reserved p,
.right-reserved a {
    color: var(--white-color) !important;
}

.right-reserved a:hover {
    color: var(--hover-color) !important;
}


.company-social-links ul li a {
    color: var(--white-color);
}

.company-social-links ul li:hover a {
    color: var(--hover-color);
}

.foo-list li {
    padding-bottom: 10px !important;
}

.foo-list a {
    color: #000;
    font-weight: 400;
    padding-bottom: 10px !important;
}

.foo-list h4 {
    font-weight: 400;
    font-size: 1.4rem;
    padding-bottom: 1rem;
}

.links-foo {
    padding-top: 2rem;
}

h4.trusted-underline {
    font-weight: 400;
    font-size: 1.4rem;
    padding-bottom: 1rem;
}

.del-trusted ul li {
    padding-bottom: 10px !important;
}

.countrys ul li {
    padding-bottom: 10px !important;
}

a {
    color: #000;
    font-weight: 400;

}

/* footer end */

/* mulitstep from start */


/* register page */
.register-logo {
    width: 11rem;
    padding: 1rem;
}

.why-register {
    padding: 5rem 0;
}

.why-head h1 {
    text-align: center;
    padding-bottom: 3.5rem;
}

.img-why {
    text-align: center;
}

.img-why img {
    width: 4rem;
}

.why-con {
    text-align: center;
}

.why-con .why-head {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 0 0.1rem;
}


.why-con .why-desc {
    line-height: 1;
    font-size: 1rem;
}

.why-div {
    margin-bottom: 3rem;
}

.regi-container {
    padding: 2rem 0;
    background-image: linear-gradient(to right, rgb(255 161 188 / 88%) 0%, rgb(245 235 237) 100%);
}

.regi-form {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px;
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 5px;
    width: 100%;
    max-width: 880px;
    margin: auto;
    /* height: 48rem; */
}

.regi-form .form-area {
    box-shadow: none;
    padding: 0;
}

p.regis-heading {
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
    font-weight: 600;
}

.res-question {
    padding-bottom: 1.5rem;
}

.ques-div {
    display: flex;
    align-items: center;
    gap: 0.6rem 1rem;
    padding-top: 0.5rem;
    flex-wrap: wrap;
}

.ques-div label {
    display: inline-block;
    padding: 7px 15px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    /* padding: 4px; */
    border: solid 2px var(--secondary-color);
    transition: all 0.3s;
    border-radius: 20px;
    cursor: pointer;

}

.ques-div input[type="checkbox"] {
    display: none;
}

.ques-div input[type="checkbox"]:checked+label {
    background: var(--hover-color);
    color: var(--white-color);
    border: solid 2px var(--hover-color);
}

.ques-div input[type="radio"] {
    display: none;
}

.ques-div input[type="radio"]:checked+label {
    background: var(--hover-color);
    color: var(--white-color);
    border: solid 2px var(--hover-color);
}


.form-top .input-selected {
    padding-bottom: 1rem;
}

/* 
  /*form styles*/
#msform {
    /* width: 400px; */
    margin: 30px auto 0;
    text-align: center;
    position: relative;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 3px;
    /* box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4); */
    padding: 20px 30px;
    box-sizing: border-box;
    /* width: 80%;
	margin: 0 10%; */

    /*stacking fieldsets above each other*/
    /* position: absolute; */

}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*buttons*/
#msform .action-button {
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 15px;
    color: var(--white-color);
    font-weight: 500;
    padding: 10px 25px;
    margin-right: 1rem;
    width: 40%;
}

/*headings*/
.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 20px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    width: 33.33%;
    float: left;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: var(--white-color);
    background: var(--secondary-color);
    border-radius: 3px;
    z-index: 2;
    position: relative;
    margin: 0 auto 5px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: 1;
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--primary-color);
    color: white;
}

*/ .res-question p {
    text-align: left;
}

.profile-pic-wrapper {
    /* height: 100vh; */
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pic-holder {
    text-align: center;
    position: relative;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pic-holder .pic {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.pic-holder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.res-question p {
    text-align: left;
}

.pic-holder .upload-file-block,
.pic-holder .upload-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(90, 92, 105, 0.7);
    color: #f8f9fc;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pic-holder .upload-file-block {
    cursor: pointer;
}

.pic-holder:hover .upload-file-block,
.uploadProfileInput:focus~.upload-file-block {
    opacity: 1;
}

.pic-holder.uploadInProgress .upload-file-block {
    display: none;
}

.pic-holder.uploadInProgress .upload-loader {
    opacity: 1;
}

/* Snackbar css */
.snackbar {
    display: none;
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    transform: translateX(-50%);
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}


.upload-email {
    margin-top: 1.5rem;
}


a.via-email {
    border: 2px solid var(--secondary-color);
    background: none;
    border-radius: 15px;
    color: var(--secondary-color);
    font-weight: 500;
    padding: 10px 25px;
    cursor: pointer;
    margin-top: 1rem;
}

/* .upload-photo {
    display: none;
} */

p.orivacy-alter {
    padding-top: 1rem;
    font-size: .78rem;
}

p.orivacy-alter svg {
    width: 1rem;
}

.image-upload-div {
    position: relative;
    cursor: pointer;
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin: auto;
}

.upload-guidlines {
    margin-top: 3rem;
}

.head-guid p {
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
    font-weight: 600;
    /* font-size: 1.4rem; */
}

.face-show {
    display: block;
    margin-bottom: 3rem;
}

.face-show .do-image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

.face-show .do-image .do-img-text svg {
    width: 17px;
    margin-right: 5px;
}

ul.do-image li {
    text-align: center;
}


.face-show .do-image img {
    margin-top: 10px;
    border: 1px solid #e3e3e3;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.dos-text .konw-more {
    font-weight: 300;
    margin: 0.8rem 0 0.4rem;
}

.dos-text .dos {
    margin-bottom: 1rem;
}

p.do-topics {
    margin-bottom: 0.4rem;
}

.hobbies-interests {
    display: none;
}

.hobbies-interests .from-header {
    margin-bottom: 2rem;
}

.hobb-inter-div {
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .108895);
    box-shadow: -1px 0px 8px rgba(0, 0, 0, .108895);
    opacity: 1;
    background-color: #fff;
    width: 100%;
    max-width: 685px;
    margin: auto;
    /* width: 685px; */
    padding: 20px 30px 28px;
    margin: auto auto 16px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px; */
}

.next-btn-image {
    text-align: center;
}

.email-next {
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 15px;
    color: var(--white-color);
    font-weight: 500;
    padding: 10px 25px;
    margin-right: 1rem;
}

.hobb-inte {
    text-align: center;
    margin-top: 1rem;
}

.hobb-inte-btn {
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 15px;
    color: var(--white-color);
    font-weight: 500;
    padding: 10px 25px;
    margin-right: 1rem;
}

.fade:not(.show) {
    opacity: 1 !important;
}

.back-btn {
    position: absolute;
    top: 0;
    left: 0;
}

.model-step-main {
    box-shadow: 0px 0px 0px 15px rgba(153, 153, 153, 0.59);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 35px 35px 20px;
}

.model-step-main .modal-body {
    padding: 0 !important;
}

.model-step-main .modal-body .from-header p {
    font-size: 1.3rem;
    word-spacing: 2px;
    font-weight: 600;
    color: var(--secondary-color);
}

.modal-footer.model-step-footer {
    display: block;
}


.recommended-partner {
    display: none;
}

.wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.checkboxes {
    position: absolute;
    width: 100%;
    background: var(--white-color);
    z-index: 9;
}

.recom-div {
    margin-bottom: 2rem;
}

.toggle-next {
    border-radius: 0;
}

label {
    cursor: pointer;
}

.ellipsis {
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
    position: relative;
    z-index: 1;
}

.apply-selection {
    display: none;
    width: 100%;
    margin: 0;
    padding: 5px 10px;
    border-bottom: 1px solid #ccc;
}

.apply-selection .ajax-link {
    display: none;
}

.checkboxes {
    margin: 0;
    display: none;
    border: 1px solid #ccc;
    border-top: 0;
}

.checkboxes .inner-wrap {
    padding: 5px 10px;
    max-height: 140px;
    overflow: auto;
}

.checkboxes .inner-wrap label span {
    font-size: 1rem;
}

.recom-part-div {
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .108895);
    box-shadow: -1px 0px 8px rgba(0, 0, 0, .108895);
    opacity: 1;
    background-color: #fff;
    width: 100%;
    max-width: 685px;
    margin: auto;
    /* width: 685px; */
    padding: 20px 30px 28px;
    margin: auto auto 16px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px; */
}

.recom-part-div p {
    margin-bottom: 1rem;
}

.select-muti-option p {
    margin-bottom: .5rem !important;
    text-align: left;
}

.select-muti-option i {
    margin-bottom: 0.3rem;
    display: block;
    text-align: left;
    font-weight: 300;
    font-size: 14px;
}


.range-slider,
.range-slider2 {
    width: 100%;
    /* margin: auto; */
    text-align: center;
    position: relative;
    padding: 1rem;
    border: 1px solid #e3e3e3;
    margin-bottom: 1rem;
}

.range-slider svg,
.range-slider input[type=range] {
    position: absolute;
    left: 0;
    bottom: 0;
}

.range-slider2 svg,
.range-slider2 input[type=range] {
    position: absolute;
    left: 0;
    bottom: 0;
}

input[type=number] {
    border: none;
    text-align: center;
    font-size: 1.1em;
    -moz-appearance: textfield;
    width: 35px;
    font-weight: 700;
}

.input-range-value span {
    font-weight: 700;
    line-height: 1;
    width: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/*  input[type=number]:invalid,
 input[type=number]:out-of-range {
    border: 2px solid #ff6347;
} */

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: var(--secondary-color);
}

input[type=range]:focus::-ms-fill-lower {
    background: var(--secondary-color);
}

input[type=range]:focus::-ms-fill-upper {
    background: var(--secondary-color);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: #1c3079;
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}

input[type=range]::-webkit-slider-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid var(--primary-color);
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: var(--primary-color);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: var(--primary-color);
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}

input[type=range]::-moz-range-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid var(--primary-color);
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: var(--primary-color);
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-ms-fill-lower,
input[type=range]::-ms-fill-upper {
    background: var(--primary-color);
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}

input[type=range]::-ms-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid var(--primary-color);
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: var(--primary-color);
    cursor: pointer;
}

.input-range-value {
    text-align: left;
    /* margin-bottom: 0.2rem; */
    /* border: 1px solid #ddd; */
    padding: 0.2rem 0;
}

.range-slider-div {
    padding: 1rem 0 0;
    position: relative;
}

.preferences-div {
    text-align: center;
}

.preferences-div .preferences-btn {
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 15px;
    color: var(--white-color);
    font-weight: 500;
    padding: 10px 25px;
    margin-right: 1rem;
}

.logo-skip {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.skip-link a svg {
    width: 16px;
}

.skip-link a {
    font-size: 1.1rem;
    font-weight: 300;
}

.top-match-main-div {
    /* margin-bottom: 0rem; */
    padding: 2rem 0;
    box-shadow: 0 2px 4px #00000026;
    background-image: linear-gradient(to right, #ffa1bc 0%, #f19dd357 100%);
    /* background-image: linear-gradient(to right, rgb(255 161 188 / 88%) 0%, rgb(245 235 237) 100%); */
}

.top-match-div {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px;
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 5px;
    width: 100%;
    /* max-width: 880px; */
    margin: auto;
}

.top-match-text {
    color: var(--secondary-color);
    text-align: center;
    font: 500 24px Roboto;
    padding-bottom: 28px;
}

.all-match-cards {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-match-cards {
    width: 100%;
    max-width: 23%;
    /* margin: 0 8px 15px; */
    cursor: pointer;
    border: none;
    -webkit-user-select: none;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px #51505d33;
    border-radius: 6px;
    /* display: flex; */
}

.cards-match {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 13px;
}

.match-img img {
    width: 8rem;
    height: 8rem;
    object-fit: cover;
}

.match-contect {
    padding: 10px 0;
    width: 100%;
}

.match-check-head {
    display: flex;
    justify-content: space-between;
}

.match-check-head label {
    color: #51505d;
    font: 500 16px Roboto;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
}

p.extra-del {
    font: 400 12px Roboto;
    margin-top: 4px;
    color: #72727d;
}

.container {
    /* display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
}

/* Hide the browser's default checkbox */
.match-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    right: 10px;
    height: 25px;
    width: 25px;
    background-color: var(--primary-color);
}

/* On mouse-over, add a grey background color */
.match-label:hover input~.checkmark {
    background-color: var(--primary-color);
}

/* When the checkbox is checked, add a blue background */
.match-label input:checked~.checkmark {
    background-color: var(--primary-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.match-label input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.match-label .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--secondary-color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.finish0match a {
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 15px;
    color: var(--white-color);
    font-weight: 500;
    padding: 10px 25px;
    margin-right: 1rem;
}

.finish0match {
    margin-top: 3rem;
    text-align: center;
}

/* Search Options start */


/* .search-container {
    padding: 8rem 1rem;
} */

.search-opton-head {
    margin-bottom: 3rem;
    text-align: center;
}

.search-opton-head p {
    margin-top: 1rem;
}




.search-form-div,
.sidebar-search {
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    padding: 1rem;
    margin-bottom: 1rem;
}

.sidebar-search {
    padding: 10px;
}

.sidebar-search .tab-menu ul {
    margin: 0;
}

.sidebar-search .tab-menu ul li a {
    width: 100%;
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: block;
    margin: 0;
    padding: 7px 15px;
    border-radius: 0px;
    /* margin-bottom: 5px; */
}

.sidebar-search .tab-menu ul li a.active {
    background: var(--hover-color);
    color: var(--white-color) !important;
    border-radius: 6px;
}

.sidebar-search .tab-menu ul li a:hover {
    background: var(--hover-color);
    color: var(--white-color) !important;
    border-radius: 6px;
}

.sidebar-search .tab-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.sidebar-search .tab-menu ul li {
    /* width: 100%;
    max-width: 13rem; */
    /* text-align: center; */
}

.search-by-id {
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    padding: 1rem 1rem 3rem
}

.search-by-id .search-id-head p {
    font-size: 1.1rem;
    border-bottom: 1px solid #eeee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.tab-box {
    display: none;
}

.sbid-from .btn-search-id {
    text-align: center;
    margin-top: 1rem;
}

.sbid-from .btn-search-id a:hover {
    border: 2.5px solid var(--hover-color);
    color: var(--white-color) !important;
    background: var(--hover-color);
}


.sbid-from .btn-search-id a {
    border: 2.5px solid #1c3079;
    border-radius: 15px;
    text-align: center;
    margin: 0;
    line-height: 1;
    transition: all .3s ease;
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
    text-align: center;
}

.search-from-hed .sfh {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.search-from-hed .sfsh {
    font-size: 16px;
    font-weight: 500;
}

.search-from-hed {
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
}

.search-opton-head {
    margin-top: 5rem;
}

.search-from-main .wrapper .sele-input p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1c3079;
}

.input-selected p.search-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1c3079;
}

.search-from-main .search-from-btn button {
    border: 2.5px solid #1c3079;
    border-radius: 15px;
    text-align: center;
    margin: 0;
    line-height: 1;
    transition: all .3s ease;
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
    text-align: center;
    background: none;
    margin-top: 0.7rem;
}

.search-from-main .search-from-btn button:hover {
    border: 2.5px solid var(--hover-color);
    color: var(--white-color);
    background: var(--hover-color);
}

.search-from-main .text-label-range p,
.search-from-main .text-label-range i {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1c3079;
    text-align: left !important;
    display: block;
}

.loacation-del-div {
    margin-top: 2rem;
    border-bottom: 3px solid #1c308f;
    margin-bottom: 0.7rem;
}

.loacation-del-div p {
    font-size: 1.2rem;
    font-weight: 700;
    padding-bottom: 0.4rem;
    color: var(--secondary-color);

}

/*  profile-fliter */

.profile-fliter {
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    /* margin: 1rem 0; */
}

.profile-fliter .pro-fli-header p {
    padding: 1rem;
    border-bottom: 2px solid #eee;
    /* box-shadow: 0px 5px 16px -14px #111; */
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.profile-fliter .fli-div-hed p {
    padding: .5rem 1rem 0;
    font: 1.1rem;
}

.profile-fliter .fli-div-hed p {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.profile-fliter .all-fliter {
    padding: .3rem 1rem 1rem;
    border-bottom: 1px solid #eee;
}


.profile-fliter .all-fliter label {
    font-size: .9rem;
}

.profile-fliter .all-fliter input {
    margin-right: 5px;
}

/* ============================================================== */

.css-checkbox {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

#inputPreview {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.css-checkbox+label {
    position: relative;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    height: 22px;
    color: rgb(0, 0, 0);
    line-height: 1;
}

.css-checkbox+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    width: 21px;
    height: 21px;
    /* background-color: var(--primary-color); */
    border-width: 2px;
    border-style: solid;
    border-color: var(--primary-color);
    border-radius: 4px;
    box-shadow: none;
}

.css-checkbox:checked+label::after {
    content: " ";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath fill='%231c3079' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    left: 0px;
    top: 0px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 22px;
    width: 22px;
}

.profile-fliter .all-fliter .fil-div {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.fliter-div-pro .all-fliter .fil-div input[type="radio"] {
    /* remove standard background appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* create custom radiobutton appearance */
    display: inline-block;
    width: 21px;
    height: 21px;
    padding: 2px;
    /* background-color only for content */
    background-clip: content-box;
    border: 2px solid var(--primary-color);
    /* background-color: var(--secondary-color); */
    border-radius: 50%;
}

/* appearance for checked radiobutton */
.fliter-div-pro .all-fliter .fil-div input[type="radio"]:checked {
    background-color: var(--secondary-color)
}

.more-option .more-option-text {
    padding-bottom: .5rem;
}

.more-option .more-option-text p {
    text-decoration: underline;
}

.more-option .more-option-text p:hover {
    color: var(--primary-color);
}

.more-option .open-option {
    display: none;

}


/* search result profile */


.filter-card-profile {
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    /* height: 100%; */
    /* max-height: 200px; */
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    z-index: 1;
    width: 100%;
    max-width: 64.5rem;
}

.upgrade-now {
    display: none;
}

.upgrade-now p span {
    color: #ff5485;
    font-weight: 700;
}

.profile-div img {
    width: 10rem !important;
    cursor: pointer;
    border-radius: 3px 0px 0px 3px;
    object-fit: cover;
    margin: 1rem;
    border-radius: 50%;
}

a.proname {
    font-size: 20px;
    font-weight: 400;
    color: rgb(81, 80, 93);
    margin: 0;
}

a.chat-now {
    margin: 0;
}

a.chat-now {
    margin: 0;
    font-weight: 200;
    font-size: 16px;
}

a.chat-now span {
    padding-left: 5px;
}

.chat-now svg {
    display: inline-block;
}

.chat-now svg path {}

.prifile-inof {
    padding: 0.5rem 1rem .5rem;
    display: flex;
    gap: 1rem;
    width: 100%;
}

.profile-info-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* flex-direction: column; */
    margin-bottom: 0.4rem;
    border-bottom: 2px solid #eeee;
    padding-bottom: 0.4rem;
    gap: 1rem 1rem;
}

.chat-now svg {
    display: inline-block;
    width: 1.3rem;
    /* font-weight: 300; */
    height: 1.67rem;
}

.pro-details {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.basic-info span {
    display: block;
    font-weight: 300;
    font-size: 16px;
    white-space: pre-wrap;
    text-overflow: ellipsis;
}

.basic-info {
    width: 100%;
    max-width: 15rem;
}

.pro-bio p {
    padding-top: 0.5rem;
    font: 300 14px / 22px Roboto, sans-serif;
    color: rgb(114, 114, 125);
    /* width: 469px; */
    overflow-wrap: break-word;
    margin: 10px 0px 0px;
}

.like-pro {
    padding: 1rem;
    border-left: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 200px;
    width: 170px;
}

p.like-pro-head {
    display: block;
    font: italic 700 14px Roboto, sans-serif;
    color: rgb(149, 149, 157);
    white-space: normal;
    margin-bottom: 12px;
    text-align: center;
}

.like-check button {
    display: block;
    text-align: center;
    padding: 0;
    border: none;
    background: none;
    transition: color 0.5s ease 0s;
    font: 400 13px / 16px Roboto, sans-serif;
    color: rgb(149, 149, 157);
    text-align: center;
    margin: auto;
    padding-top: .5rem;
}

button.connect-btn {
    background: var(--secondary-color);
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 300ms;
}

button.connect-btn svg {
    fill: var(--white-color);
    transition: all 300ms;
}

button.connect-btn:hover svg {
    fill: var(--white-color);
    transition: all 300ms;
}

button.connect-btn:hover {

    background: var(--primary-color);
    transition: all 300ms;
}

.upgrade-now p {
    color: #51505d;
    font-size: 14px;
    font-style: italic;
    line-height: 17px;
    font-family: Roboto;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.6rem;
}

.upgrade-btn.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.upgrade-btn div {
    position: relative;
    width: 140px;
    line-height: 1;
    /* height: 34px; */
    padding: 6px;
    box-shadow: 0 4px 5px #0000001f;
    border-radius: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    margin-top: 8px;
    cursor: pointer;
    border: 1px solid #f1f1f2;
    transition: all 300ms;
    margin: 10px auto 0;
}

.upgrade-btn div:hover {
    background-color: var(--primary-color);
    transition: all 300ms;
    border-color: var(--primary-color);
    box-shadow: 0 0px 0px var(--primary-color);
}

.upgrade-btn div span {
    font-size: 11px;
    font-weight: 600;
    z-index: 4;
}

.upgrade-btn div:hover span {
    color: var(--white-color);
}

.upgrade-btn div span {
    font-size: 14px;
    font-weight: 500;
    z-index: 4;
}

.upgrade-btn div svg {
    margin-right: 5px;
}

.upgrade-btn div.call-btn svg path {
    fill: #0037ffb8;
}

.upgrade-btn div.chat-btn svg path {
    fill: var(--primary-color);
}

.upgrade-btn div.chat-btn:hover svg path {
    fill: var(--white-color);
}

.upgrade-btn div.call-btn:hover svg path {
    fill: var(--white-color);
}

/* match sections */

.some-match-text {
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.2rem;
}

.recently-view-card {
    flex-direction: column;
    align-items: center;
    width: 100% !important;
}

.recently-view-card .profile-div img {
    width: 13.5rem !important;
    cursor: pointer;
    border-radius: 18px;
    object-fit: cover;
    margin: auto;
    margin-top: 1rem;
}


.recently-view-card .prifile-inof {
    flex-direction: column;
}

.recently-view-card .like-pro {
    padding: 0;
    padding-top: 1rem;
    display: block;
    min-height: fit-content;
    width: 100%;
    border-left: 0;
}

.recently-view-card .like-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.recently-view-card .upgrade-now {
    display: none;
}

.recently-view-card .like-check p,
.recently-view-card .like-check button {
    margin: 0;
    padding: 0;
}

div#Recently-Viewed {
    margin-bottom: 5rem;
}

.more-see-pro {
    margin: 1rem;
    text-align: center;
}

.more-see-pro a {
    color: #1c3079;
    font-weight: 600;
    font-size: 1.3rem;
    /* border-bottom: 1.5px solid; */
}

.more-see-pro {
    margin: 1rem;
    text-align: center;
    border-bottom: 2px solid #b1b2b7;
    padding-bottom: 0.2rem;
}

.more-match-head {
    text-align: center;
    margin-bottom: 1rem;
}

.more-match-head p {
    font-size: 1.3rem;
    font-weight: 600;
}

.more-match-head {
    text-align: center;
    margin-bottom: 1rem;
    columns: var(--secondary-color);
}

.recent-visitor {
    margin: 2rem 0;
}

.taday-match-head p {
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.2rem;
    text-align: center;
}

#Today-Matchs .filter-card-profile {
    margin: auto;
}

.details-pro-main {
    width: 100%;
    max-width: 64.5rem;
    margin: 2rem auto;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    z-index: 1;
}

.del-pro-hea p {
    font: 600 18px / 22px Roboto, sans-serif;
    color: rgb(255 161 188);
    height: auto;
    background: rgb(255, 255, 255);
    overflow: hidden;
    /* text-align: center; */
    padding: 14px 17px;
    text-transform: capitalize;
    /* border-radius: 3px 3px 0px 0px; */
    border-bottom: 2px solid rgb(255 161 188);
}

.del-pro-body {
    padding: 1rem;
}

.del-pro-name p {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 0px;
    color: rgb(255 161 194);
}

.del-pro-name span {
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    /* padding: 4px; */
    border: solid 2px var(--secondary-color);
    transition: all 0.3s;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 0.4rem;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    width: fit-content;
    padding: .3rem 1rem !important;
}

.del-pro-name span:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

.del-pr-bio p {
    font-weight: 200;
    font-size: 1.1rem;
    margin-top: 1rem;
}

span.pro-cre-pro {
    padding: 0.7rem 1rem;
}

.about-copy {
    display: flex;
    flex-wrap: wrap;
}

.hobbies-span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.contact-div {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-div .consvg svg path {
    color: var(--secondary-color);
}

.contact-div .consvg svg {
    margin-top: 5px;
}

.contact-detailes-div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 0.7rem;
}

.upgrad-show-del {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 0px;
    color: var(--secondary-color);
    text-decoration: underline;
    transition: all 300ms;
}

.upgrad-show-del:hover {
    transition: all 300ms;
    color: var(--primary-color);
}

.del-pro-body ul {
    margin: 0;
}

.del-pro-body ul li svg {
    color: #1c3079;
    margin-right: 5px;
}

.del-pro-body ul li {
    margin-bottom: 10px;
}

.del-pro-body .whats-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 1rem 0 2rem;
}

.del-pro-body .whats-profile .what-pro img {

    display: inline-block;
    width: 100px;
    height: 100px;
    background-position: center top;
    box-sizing: border-box;
    position: relative;
    border-radius: 80px;
    border: 4px solid rgb(225, 225, 225);
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}

.whats-connects {
    margin: 0 3rem;
    position: relative;
}

.whats-connects span {
    display: inline-block;
    background: var(--secondary-color);
    text-align: center;
    padding: 0px 15px;
    border-radius: 25px;
    color: var(--white-color);
    font: 400 14px / 34px Roboto, sans-serif;
    position: relative;
    z-index: 999;
}

.whats-connects::before {
    content: '';
    position: absolute;
    border: 1px solid dotted;
    width: 4rem;
    left: -2rem;
    top: 50%;
    height: 2px;
    background: #ffc0c9;
    z-index: -1;
}

.whats-connects::after {
    content: '';
    position: absolute;
    border: 1px solid dotted;
    width: 4rem;
    right: -2rem;
    top: 50%;
    height: 2px;
    z-index: -1;
    background: #ffc0c9;
}



.match-check-left .mcl-h,
.match-check-right .mcl-h {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}


.what-match {
    width: 100%;
    margin-top: 1rem;
}

.what-match .match-check {
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;
}

.maticon img {
    width: 1.5rem;
}

.match-check.match-border {
    border-bottom: 2px solid #eee;
    padding: 0.5rem 0 0.5rem;
    margin-bottom: 9px;
}

.match-check-left .prematch .prematch-head {
    color: var(--primary-color);
    font: 300 16px / 22px Roboto, sans-serif;
}

.match-check-left .prematch p.prematchsubhead {
    padding-top: 3px;
    font-weight: 300;
}

.request-box {
    padding: 20px;
}

.request-box .tab-menu ul li {
    display: block;
    margin-bottom: 10px;
    WIDTH: 100%;
}

.request-box .tab-menu ul {
    gap: 0 !important;
}

.when-connect {
    background: var(--primary-color);
    font-size: 13px !important;
    font-weight: 300 !important;
    border-radius: 3px;
    color: #fff !important;
    padding: 10px;
    line-height: 19px !important;
}

.when-connect a {
    color: #1c3079;
    font-weight: 900;
}

li.fam-del-li {
    display: flex;
    max-width: 25rem;
    width: 100%;
}

li.fam-del-li span {
    width: 100%;
}

li.fam-del-li span.span-ques {
    font-weight: 500;
    color: var(--secondary-color);
}

/* model content upgrade start */

.user-profile ul {
    margin-bottom: 0 Im !important;
}

.upgrade-model-content {
    height: auto;
    border-radius: 4px;
    border: none !important;
    box-shadow: 0 11px 15px -7px #0003, 0 9px 46px 8px #0000001f, 0 24px 38px 3px #00000024;

    background-image: linear-gradient(to right, rgb(255 161 188 / 88%) 0%, rgb(254 171 194) 100%);
}

.profile-upgrade {
    position: relative;
    box-shadow: 0 11px 15px -7px #0003, 0 9px 46px 8px #0000001f, 0 24px 38px 3px #00000024;
    box-shadow: 0 4px 8px #0000001a;
    border-radius: 6px;
    background-color: #fff;
    padding: 1rem;
    width: 100%;
    margin: 0 auto 1.5rem;
    max-width: 23rem;
}

.profile-view-upgrade {
    text-align: center;
    position: relative;
}

.profile-view-upgrade img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    border-radius: 50%;
    /* margin: auto; */
}

.upgrade-model-heading h2 {
    font-size: 1.5rem;
    text-align: center;
    margin: 0.5rem 0 1.5rem;
}

.lock-sysupgrade {
    position: absolute;
    top: 8%;
    right: 3%;
}

.pro-uo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.prodel-upgrade p {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    /* text-align: center; */
}

.profile-upgrade .upgrade-btn.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 13px !important;
    border-top: 1px solid #eeee;
    margin-top: 1rem;
}

.upgrade-plane p.atg-line-upgrade {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1c3079;
}

.upgrade-plane {
    text-align: center;
}

.upgrade-plane a.view-plans {
    border-radius: 54px;
    border: 0px;
    /* width: 180px; */
    cursor: pointer;
    /* box-shadow: rgba(11, 226, 255, 0.39) 0px 5px 9px; */
    transition: all 10ms ease 0s;
    margin: 0px;
    -webkit-box-align: center;
    align-items: center;
    text-decoration: none;
    font: 700 17px Roboto, sans-serif;
    color: rgb(255, 255, 255);
    /* min-height: 36px; */
    /* min-width: 46px; */
    /* height: 46px; */
    text-transform: capitalize;
    display: block;
    background: #373f82;
    padding: 0.6rem 1rem;
    margin-top: 1rem !important;
    display: inline-block;
    margin: auto;
    text-align: center;
}

/* model content upgrade end */

.user-profile ul {
    margin-bottom: 0 !important;
}

.user-profile .dropdown-menu {
    padding: 0.7rem 0rem;
    font-size: 0.875rem;
    line-height: 22px;
    color: #5c5776;
    border: none;
    box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0.1);
    border-radius: 0.5rem;
    margin-top: 1rem;
    left: -159px;
}

.user-profile .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in;
}

.user-profile .dropdown:hover>.dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.user-profile .dropdown-submenu:hover>.dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

@media (min-width: 990px) {
    .user-profile .dropright-lg {
        position: relative;
    }

    .user-profile .dropright-lg .dropdown-menu {
        top: 0;
        right: auto;
        left: 100%;
        margin-top: 0;
        margin-right: 0.125rem;
    }
}

.user-profile .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: ">";
    border-top: 0rem;
    border-right: 0rem;
    border-bottom: 0;
    border-left: 0rem;
    float: right;
}

.user-profile .avatar-md {
    width: 56px;
    height: 56px;
}

.user-profile .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.user-profile .avatar {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
}

.user-profile .avatar-online:before {
    background-color: green;
}

.user-profile .avatar-indicators:before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 5%;
    width: 30%;
    height: 30%;
    border-radius: 50%;
    border: 2px solid #fff;
    display: table;
}



.your-partner-page {
    padding: 5rem 0;
}

.your-partner-page .perf-partner-btn{
    text-align: center;
    margin-top: 2rem;
}

.your-partner-page .perf-partner-btn a{
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 15px;
    color: var(--white-color);
    font-weight: 500;
    padding: 10px 25px;
    text-align: center;
}

.my-photo-div{
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px;
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 5px;
    width: 100%;
    max-width: 880px;
    margin: 4rem auto;
}

.dashbord .filter-card-profile{
    margin: 4rem auto 2rem;
    max-width: 100%;
}

.dashbord a.proname{
    line-height: 1;
}

.dashbord a.proname span.proid {
    font-size: 15px;
    color: #72727d;
    font-weight: 300;
}

.dashbord span.Accountt {
    display: block;
}
.dashbord span.Account-plan {
    font-weight: 600;
}


.action-graph {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.upgrade-info .upgrade-coun-fea p {
    padding: 5px 2px 12px;
    color: #1c3079;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .3px;
}

.upgrade-info .upgrade-coun-fea p a {
    color: #ffa1bc;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .3px;
    text-decoration: underline;
}

.activity-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

.activity-text {
    color: #000000;
    font-size: 17px;
    line-height: 12px;
    font-weight: 300;
}

span.count-activit {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2px;
    line-height: 25px;
    color: #1c3079;
    font-size: 20px;
    font-weight: 700;
}

span.count-activit span {
    display: inline-block;
    padding: 2px 5px;
    border-radius: 9px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    background-color: #ff5485;
    margin-left: 7px;
}

.slider-dash {
    width: 100%;

    margin: 0rem auto 2rem;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    z-index: 1;
}

.slider-heading-dash p {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem;
}

.visitor-dash {
    margin: 1rem;
}

.slider-dash .visitor-dash .item .filter-card-profile {
    margin: 0;
}

.slider-dash .visitor-dash .owl-dots{
    margin: 0;
}

.slider-dash .visitor-dash .owl-dots {
    margin: 2rem 0 0;
}

.slider-heading-dash p span {
    display: inline-block;
    padding: 3px 16px;
    border-radius: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 12px;
    background-color: #ff5485;
    margin-left: 7px;
}

.profile-viewwhole .filter-card-profile {
    margin: 4rem auto 0;
}

.pro-head-edit {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.pro-head-edit {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 2px solid rgb(255 161 188);
    padding: 14px 17px;
}

.pro-head-edit p{
    border-bottom: none;
    padding: 0;
}

.pro-head-edit a.edit-profile {
    color: #1c3079;
    font-weight: 600;
    margin: 0;
}

.pro-head-edit a.edit-profile svg{
    margin-right: 7px;
}

.edit-pro-head {
    margin: 3rem auto 1rem;
}

.edit-pro-head p {
    text-align: center;
}

p.proedithead {
    font-size: 1.3rem;
    font-weight: 600;
}


.edit-profile-page .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #ff5485;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.edit-profile-page .accordion-button:not(.collapsed)::after{
    transform: rotate(90deg);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cpath fill='white' d='M15.125 21.1L6.7 12.7q-.15-.15-.213-.325T6.425 12q0-.2.062-.375T6.7 11.3l8.425-8.425q.35-.35.875-.35t.9.375q.375.375.375.875t-.375.875L9.55 12l7.35 7.35q.35.35.35.863t-.375.887q-.375.375-.875.375t-.875-.375Z'/%3e%3c/svg%3e");
}

.main-edit-form-container {
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    padding: 1rem;
    margin-bottom: 1rem;
}

.main-edit-form-container .search-from-hed{
    padding-bottom: 0;    margin-bottom: 1rem;
}

#timepicker:before {
    content: 'Birth Time :';
    margin-right: .6em;
    color: #9d9d9d;
 }

 
 .display-none{
    display: none;
 }