/* Imports */
/* Icons */
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap");

/* Root Styling */
:root {
    --c1: #00aaa1;
    --c2: linear-gradient(20.65deg, #ea4080 -9.99%, #ee805f 128.53%);

    --f1: "Montserrat", sans-serif;
    --f2: "Inter", sans-serif;
    /* --fbold: "lemon_milkbold";
  --flight: "lemon_milklight";
  --fmedium: "lemon_milkmedium";
  --fregular: "lemon_milkregular"; */
}
html {
    scroll-behavior: smooth;
}

/* General Styling */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: "Poppins", sans-serif;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    transition: all 300ms ease-in-out;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
}
ul,
ol,
dl {
    margin-bottom: 0;
    padding: 0;
}
img {
    width: 100%;
}

/* mobile menu start */
/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: -100%;
    top: 0;
    background-color: rgb(0 0 0 / 91%); /* Black fallback color */
    /* background-color: #f2682ade; */ /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 20%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    /* margin-top: 30px; */ /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px;
    }
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}
.menu-btn {
    float: right;
}

.menu-btn a i {
    font-size: 30px;
    color: var(--c1);
}
.responsive-menu-btn a {
    width: max-content;
    margin: 22px auto;
}

.responsive-logo a {
    width: 36%;
    margin: 0 auto;
}
.overlay.active {
    left: 0;
}

.responsive-logo {
    width: 80%;
    margin: 0 auto;
}

.login-images {
    background: var(--c2);
    /* transform: translatex(70px); */
    position: relative;
    width: 110%;
    height: 100%;
}
.login-pg-img {
    padding: 12px 12px;
}
.login-body {
    overflow: hidden;
    position: relative;
    height: 100vh;
}
.login-body:before {
    position: absolute;
    content: "";
    background-color: #000000c4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

form.login-form {
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    background: var(--c2);
    width: 55%;
    margin: auto;
    border-radius: 20px;
    padding: 80px 70px;
    height: max-content;
    top: 11%;
}

.form-content {
    position: relative;
    text-align: center;
}
.form-content input[type="text"],
.form-content input[type="password"] {
    width: 100%;
    height: 50px;
    border-radius: 30px;
    border: 0;
    padding-left: 20px;
    margin: 9px 0px;
}

.btn {
    width: 100%;
    background-color: #303030;
    border-radius: 30px;
    font-size: 20px;
    margin-top: 9px;
    color: #fff;
    font-weight: 600;
    border: 2px solid #303030;
    margin-bottom: 15px;
}

.form-content p a,
.form-content p {
    color: #fff;
    font-size: 16px;
    font-family: var(--f1);
}

.icons a {
    font-size: 25px;
    color: #fff;
}
.icons a .blue {
    background-color: #4267b2;
    font-size: 19px;
}
.login-form h3 {
    color: #fff;
    font-family: "Montserrat";
    font-size: 30px;
    text-align: left;
}
.logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 70px;
}
.form-content h5 {
    text-align: left;
    color: #fff;
    font-size: 19px;
    padding-left: 4px;
    padding-top: 10px;
}
.icons a {
    margin: 0 2px;
}
form.login-form img {
    width: 13%;
    position: relative;
}

.left-icon a {
    text-align: left;
}
.left-icon a {
    font-size: 31px;
    color: #777;
}
.new-account .login-form {
    background: #fff;
}
.left-icon {
    position: absolute;
    top: 35px;
    left: 45px;
}
.account-content {
    text-align: center;
}

.account-content h3 {
    color: #444142;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    padding-top: 0px;
    font-family: Inter;
}

.account-content p {
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
    font-weight: 600;
    color: #828693;
    padding: 15px 0;
}

.btn-1 {
    background: var(--c2);
    padding: 15px 35px;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    border: 2px solid #ea4080;
}

.left-icon a i {
    font-weight: 900;
}
.new-account:before {
    background: linear-gradient(90deg, #ea4080cc 0%, #ee805fc4 100%);
}
a:hover {
    color: #4e4d4d;
}
:focus-visible {
    outline: 0;
}
.my-number select,
input[type="text"],
input[type="tel"] {
    height: 40px;
    border: 0;
    border-bottom: 2px solid #777;
    margin: 0 6px;
}
.my-number select {
    width: 22%;
}

.my-number input[type="text"],
.my-number input[type="tel"] {
    width: 66%;
}
.my-number-content h3 {
    color: #000;
    font-family: Inter;
    font-size: 46px;
    font-weight: 600;
    line-height: 71px;
    text-align: left;
    margin: 0;
}

.my-number-content p {
    font-size: 16px;
    width: 100%;
    padding-top: 23px;
}

.my-number-content p span {
    color: #44414280;
    text-decoration: underline !important;
}
.my-number-btn a {
    width: 100%;
}
.my-number input::placeholder {
    font-size: 17px;
    color: #202020;
}
.my-number-content h5 {
    text-align: left;
}
.my-code-content input[type="number"] {
    width: 14% !important;
    margin: 40px 3px;
    text-align: center;
    font-size: 30px;
    border: 0;
    border-bottom: 2px solid #777;
}
.my-name input[type="text"] {
    width: 100%;
    margin: 31px 0px 20px;
}

.my-name p {
    padding: 0;
    text-align: left;
}

.my-name-btn a {
    margin-top: 40px;
}
.my-name {
    position: relative;
}

.gender input[type="text"] {
    width: 100% !important;
    text-align: center;
    border: 1px solid #c6c5c7;
    border-radius: 30px;
    margin: 30px 0 0;
    height: 50px;
}

.gender input[type="text"]::placeholder {
    font-size: 18px;
    color: #c6c5c7;
}

.checkbox {
    text-align: left;
}

.checkbox input {
    width: 25px;
    margin-top: 20px;
}

.gender h3 {
    padding: 10px 0 0;
}

.interested-list li input[type="checkbox"] {
    display: none;
}

ul.interested-list li {
    display: inline-block;
    margin: 4px 3px;
}

.interested-list li input[type="checkbox"]:checked + label {
    background: transparent;
    border-color: #ea5b6e;
    color: #ea5b6e;
}

.interested-list label {
    padding: 6px 10px;
    width: max-content;
    border-radius: 30px;
    border: 2px solid #bfc3cf;
    color: #bfc3cf;
}
ul.interested-list li label {
    font-size: 12px;
    font-weight: 600;
    color: #bfc3cf;
    cursor: pointer;
}
.btn-2 {
    background: #ebecef !important;
    color: #828491;
}
.interests p {
    font-size: 10px;
    color: #000;
    padding-bottom: 10px;
}

.box input {
}
.box input ::before {
    border-top: 20px solid #dfc8ca;
    border-left: 20px solid transparent;
}
.box inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.box {
    position: relative;
    /* display: flex; */
    flex: 0 0 25%;
    max-width: 25%;
    margin: 7px 0 30px;
}
.box i {
    font-size: 20px;
    background: var(--c2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    color: #fff;
}
.box .input-image-container {
    width: 100%;
    padding: 0 3px;
    height: 135px;
    border-radius: 17px;
    overflow: hidden;
}
.main-box {
    display: flex;
    flex-wrap: wrap;
}
.box img {
    width: 100% !important;
    height: 135px;
    object-fit: cover;
    border: 1px solid #e4e6ec;
    border-radius: 17px;
}
.flirtingsy-list ul li {
    text-align: left;
    padding-left: 10px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #0000009c;
}

.flirtingsy-list ul p {
    width: 100%;
    font-size: 12px;
    padding: 4px 6px;
    font-weight: 500;
    text-align: left;
}
.flirtingsy p {
    padding: 0;
    width: 100%;
    text-align: center;
    font-size: 15px;
    color: #0000009e;
}

.flirtingsy-list ul li:before {
    position: absolute;
    content: "\f00c";
    width: 20px;
    font-family: "Font Awesome 5 Pro";
    color: #ff5777;
    font-size: 19px;
    left: -15px;
    top: 0;
}
.flirtingsy {
    position: relative;
}
.flirtingsy-list {
    padding-top: 20px;
}
.flirtingsy:before,
.flirtingsy:after {
    position: absolute;
    top: -130px;
    left: -8px;
}
.start-tutorial {
    background-position: bottom !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 80% !important;
}

.start-tutorial:before {
    position: absolute;
    content: "";
    background-color: #000000cf;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 18px;
}
.start-tutorial-con {
    position: relative;
    padding-top: 37px;
}
.start-tutorial-con h3 {
    font-size: 45px;
}

.start-tutorial-con p {
    color: #fff;
    text-align: center;
}

.skip-btn {
    text-align: center;
}

.skip-btn a {
    color: #fff;
}

.start-tutorial-con .btn-1 {
    width: 100%;
    text-align: center;
    margin: 60px auto 26px;
}

.icons a i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 21px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
}

.btn:hover {
    background: transparent;
    color: #303030;
}
.btn-1:hover {
    background: transparent;
    color: #ea4080 !important;
}
.my-name input[type="text"]::placeholder {
    color: #999;
}
.cust-progress-bar {
    width: calc(100% - 80px);
    height: 5px;
    background-color: #b9b9b9;
    position: absolute;
    top: 30px;
    left: 0;
    margin: 0 auto;
    right: 0;
}

.cust-progress-bar-progress {
    background-color: #ea4080;
    height: 5px;
}
.gender-item label {
    width: 100% !important;
    text-align: center;
    border: 2px solid #c6c5c7;
    border-radius: 30px;
    margin: 30px 0 0;
    height: 50px;
    color: #9fa19f;
    font-size: 20px;
    padding: 8px 0;
    transition: 0.3s all;
    cursor: pointer;
}

.gender-item input {
    display: none;
}
.gender-item label.active {
    background: #ec666cf7;
    color: #fff;
}
ul.interested-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.plus-input {
    width: max-content;
    position: absolute;
    bottom: -18px;
    right: -4px;
}

.plus-input label {
    display: inline-block;
    background-image: url("https://cdn3.iconfinder.com/data/icons/basic-ui-elements/700/plus-512.png");
    background-repeat: no-repeat;
    background-position: center left;
    cursor: pointer;
}

.plus-input span {
    margin-left: 20px;
}

/* Hide the file input */
.hidden {
    position: absolute;
    top: -9999px;
    left: -9999px;
}
.sidebar-header {
    background: linear-gradient(20.65deg, #ea4080 -9.99%, #ee805f 128.53%);
    padding: 30px 14px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
}

.sidebar-profile-detail {
    display: flex;
    align-items: center;
}

.sidebar-profile-detail img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.sidebar-profile-detail select {
    background: transparent;
    border: 0;
    font-size: 17px;
    color: #fff;
}

.sidebar-profile-detail h4 {
    margin: 0;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-icons ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-icons ul li a {
    font-size: 16px;
    color: #fff;
    background: #0000008a;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-icons ul li a:hover {
    background: #fff;
    color: #000;
}

.sidebar-nav {
    padding: 10px 20px;
    margin-bottom: 10px;
}

.sidebar-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
}

.sidebar-nav ul li a {
    font-size: 18px;
    position: relative;
}

.sidebar-nav ul li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(20.65deg, #ea4080 -9.99%, #ee805f 128.53%);
    bottom: -2px;
    left: 0;
    width: 0;
    transition: 0.5s all;
}

.sidebar-nav ul li a:hover:before {
    width: 100%;
}

.sidebar-nav ul li a.active:before {
    width: 100%;
}

.matches-box {
    text-align: center;
}

.sidebar-content {
    padding: 15px 15px;
    min-height: 78vh;
    display: flex;
    /* align-items: center; */
    overflow-y: scroll;
}

.matches-img-container {
    width: 33%;
    height: 160px;
    background: linear-gradient(20.65deg, #ea4080 -9.99%, #ee805f 128.53%);
    margin: 0 auto;
    border-radius: 10px;
}

aside.sidebar {
    border-right: 1px solid #eaeaea;
    box-shadow: 0px 4px 34px;
    box-shadow: 0px 4px 34px 0px #00000026;
    height: 100vh;
}

.matches-con {
    margin-top: 30px;
    padding: 0 37px;
}
.matches-con p {
    font-size: 18px;
}

.sidebar-container {
    height: 100%;
}
.sidebar-container ::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.sidebar-container ::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 7px;
}

/* Handle */
.sidebar-container ::-webkit-scrollbar-thumb {
    background: #b4b4b4;
    border-radius: 10px;
}

/* Handle on hover */
.sidebar-container ::-webkit-scrollbar-thumb:hover {
    background: #8f8f8f;
}
.dashboard-header {
    background: #fff;
    padding: 27px 40px;
    box-shadow: 0px 4px 34px 0px #00000026;
    border: 1px solid #eaeaea;
}

.header-icons ul {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
}

.header-icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.header-con h3 {
    font-size: 25px;
    margin: 0;
}

.header-con p {
    margin: 0;
    font-size: 14px;
    color: #828282;
}

.header-icons ul li a {
    font-size: 22px;
}
.dashboard-body {
    padding: 40px 40px;
    height: 78vh;
    overflow-y: scroll;
    position: relative;
    z-index: 99;
    background: #ffff;
}

.profiles-main {
    display: flex;
    flex-wrap: wrap;
}

.profile-item {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.profile-inner {
    box-shadow: 0px 0px 21px 0px #00000026;
    border: 0.2px solid #ffffff;
    padding: 10px 4px 4px;
    position: relative;
    border-radius: 8px;
}

.profile-info-container {
    position: relative;
}

.profile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffff;
    padding: 10px 11px;
    z-index: 10;
}

.profile-info-inner h3 {
    font-size: 19px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-info-inner h3 span {
    font-size: 14px;
    font-weight: 300;
}

.profile-info-inner ul li {
    font-size: 10px;
}

.profile-info-container:before {
    width: 100%;
    height: 80%;
    background: #000;
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 50%, #000000 100%);
    border-radius: 6px;
    z-index: 9;
}

.profile-top-logo {
    padding: 2px 25px 13px;
}
.profile-detail-btn a {
    font-size: 13px;
    color: #fff;
    width: 15px;
    height: 15px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    padding: 0px 6px;
    font-weight: 600;
}
.slick-dots {
    position: absolute;
    width: 90%;
    top: 5px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slick-dots li {
    border-radius: 0.889224px;
    font-size: 0;
    width: calc(100% / 5);
    height: 3px;
    padding: 0 2px;
}

ul.slick-dots li button {
    border: 0;
    background: transparent;
}
ul.slick-dots li button {
    background: rgb(0 0 0 / 40%);
    height: 100%;
    width: 100%;
}

.slick-dots li.slick-active button {
    background: #fff;
    border: 0.59px solid #7d8490;
}

.profiles-detail-pg .profile-item {
    width: 45%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.profiles-detail-pg .profile-item .profile-inner {
    padding: 0;
}

.profiles-detail-pg .profile-info-inner h3 {
    font-size: 50px;
}

.profiles-detail-pg .profile-info-inner h3 span {
    font-size: 26px;
}

.profiles-detail-pg .profile-info-inner ul li {
    font-size: 16px;
    font-weight: 300;
}

.profiles-detail-pg .profile-detail-btn a {
    width: 30px;
    height: 30px;
    font-size: 20px;
    padding: 0 12px;
}

.profiles-detail-pg .slick-dots li {
    height: 4px;
}
.profiles-detail-pg .profile-info {
    bottom: 80px;
}

.profile-btns {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 41;
    padding: 18px 0;
}

.profile-btns ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-btns ul li {
    flex: 0 0 20%;
    max-width: 20%;
    text-align: center;
}

.profile-btns ul li a {
    color: #fff;
    font-size: 25px;
    width: 55px;
    height: 55px;
    border: 1px solid;
    margin: 0 auto;
    line-height: 55px;
    border-radius: 50%;
}

.profile-btns ul li:nth-child(even) a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
}

.profile-btns ul li a.undo {
    color: #f3d677;
}
.profile-btns ul li a.undo:hover {
    background-color: #f3d677;
    color: #fff;
}

.profile-btns ul li a.delete {
    color: #d94a38;
}
.profile-btns ul li a.delete:hover {
    background-color: #d94a38;
    color: #fff;
}

.profile-btns ul li a.favourite {
    color: #62baf3;
}
.profile-btns ul li a.favourite:hover {
    background-color: #62baf3;
    color: #fff;
}

.profile-btns ul li a.like {
    color: #6de5b5;
}
.profile-btns ul li a.like:hover {
    background-color: #6de5b5;
    color: #fff;
}

.profile-btns ul li a.fast {
    color: #aa54ea;
}
.profile-btns ul li a.fast:hover {
    background-color: #aa54ea;
    color: #fff;
}
.profile-pg-footer {
    background: linear-gradient(20.65deg, #ea4080 -9.99%, #ee805f 128.53%);
    padding: 25px 80px;
}

.profile-pg-footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.profile-pg-footer ul li a {
    color: #fff;
}

.profile-pg-footer ul li a.btn-light {
    color: #000;
    padding: 3px 17px;
    border-radius: 20px;
    color: #ea4c79;
    font-weight: 600;
}

.profile-pg-footer ul li a i {
    margin-right: 5px;
    font-size: 18px;
    vertical-align: middle;
    font-weight: 500;
}

.profile-pg-footer ul li a i.icon-border {
    transform: rotate(90deg);
    border: 2px solid #fff;
    position: relative;
    border: 2px solid;
    width: 18px;
    height: 18px;
    font-size: 10px;
    padding: 2px 4px;
}

.profile-pg-footer ul li a span {
    width: 40px;
    height: 16px;
    border: 2px solid;
    display: inherit;
    vertical-align: middle;
}
.safety-modal {
    background: linear-gradient(20.65deg, #ea4080 -9.99%, #ee805f 128.53%);
    border-radius: 35px;
}

.safety-modal .modal-footer {
    padding: 0;
}

.safety-modal .modal-footer .btn {
    margin: 0;
    background: transparent;
    border: 0;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 22px;
    padding: 11px 0;
}

.safety-modal .modal-body {
    padding: 0;
}

.safety-modals-list ul li a {
    color: #fff;
    font-size: 20px;
    border-bottom: 1px solid #fff;
    display: block;
    padding: 10px 20px;
    font-weight: 400;
}

.safety-modals-list ul li:last-child a {
    border: 0;
}

.safety-modals-list ul li a i {
    margin-right: 10px;
}

.safety-modal .modal-title {
    color: #fff;
    font-size: 27px;
}
.blogs-sidebar {
    display: none;
    padding: 20px 15px;
}

.blog-sidebar .blogs-sidebar {
    display: block;
    height: 100vh;
    overflow-y: scroll;
}

.blog-sidebar :is(.sidebar-nav, .sidebar-content) {
    display: none;
}

.verification-box {
    position: relative;
}

.verifivation-con {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
}

.verifivation-con h4 {
    font-size: 15px;
    margin: 0px 0 4px;
}

.verifivation-con h5 {
    font-size: 13px;
    margin: 0;
    font-weight: 400;
}

.verifivation-con .btn-light {
    color: #ff009c;
    font-size: 15px;
    padding: 4px 16px;
    border-radius: 20px;
}

.blog-title h4 {
    font-size: 18px;
    font-weight: 600;
}

.blog-title h5 {
    font-size: 15px;
}

.blog-box {
    position: relative;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.blog-con {
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 8px 10px;
}

.blog-con h3 {
    font-size: 24px;
}

.blog-con p {
    margin: 0;
    font-size: 13px;
}

.blog-con a {
    color: #fff;
    text-decoration: underline !i;
}
.code-inputs {
    display: flex;
}

.my-number select option,
.my-number select {
    text-transform: uppercase !important;
}

.ptofile-img-main .profile-img-item img {
    height: 260px;
    object-fit: cover;
}
.profiles-detail-pg .ptofile-img-main .profile-img-item img {
    height: 670px;
    object-fit: cover;
}
.favourites-profiles {
    flex: 0 0 100%;
    max-width: 100%;
}

.favourites-profiles .profile-item {
    width: 50%;
    max-width: 50%;
    padding: 0 5px;
    float: left;
}

.profile-img-item img .profile-item .profile-img-item img {
    height: 180px;
}

.favourites-profiles .profile-info-inner h3 {
    font-size: 12px;
    margin-bottom: 5px;
}

.favourites-profiles .profile-info-inner ul li {
    font-size: 8px;
}

.favourites-profiles .profile-img-item img {
    height: 200px;
}
.profile-btns ul li a.like.active {
    background-color: #6de5b5;
    color: #fff;
}
.message-sidebar {
    padding: 15px 15px;
    height: 81vh;
    display: flex;
    /* align-items: center; */
    position: relative;
    overflow-y: auto;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 20px;
}

.chat-msg span {
    width: max-content;
    background: #e93f3f;
    color: #fff;
    padding: 5px 22px;
    display: block;
    border-radius: 18px;
}

.chat-msg {
    margin-bottom: 11px;
}

.chat-msg.send {
    text-align: right;
}

.chat-msg.send span {
    margin-left: auto;
    background: #3a1b1b;
    overflow-wrap: break-word;
    width: 327px;
    text-align: left;
}

.message-box-inner input {
    background: #fff;
    border: 1px solid #bdbdbd;
    padding: 11px 10px;
    font-size: 12px;
    width: 75%;
    margin: 0;
    border-radius: 5px;
}

.message-box-inner button {
    background: var(--c2);
    border: 0;
    color: #fff;
    font-size: 16px;
    padding: 8px 11px;
    border-radius: 5px;
}
.chat-message {
    position: sticky;
    bottom: 0;
    background: #fff;
}
.full-width .blog-img img {
    height: 220px;
    object-fit: cover;
}

.blog-box.half-width .blog-img img {
    height: 240px;
    object-fit: cover;
}
.blog-detail-image img {
    height: 330px;
    object-fit: cover;
}

.blog-detail-image {
    border-radius: 15px;
    overflow: hidden;
}
.blog-box.active {outline: 2px solid #747474;box-shadow: 0 0 21px 2px #999;}

.blog-box.active:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffffbf;
    opacity: 0.7;
    z-index: 99;
}
.blog-single-pg h4 {
    font-size: 60px;
}

.blog-single-pg h5 {
    font-size: 50px;
}
.user-profile-options {
    position: relative;
}

.user-profile-option-menu {
    position: absolute;
    top: 28px;
    background: #fff;
    min-width: 140px;
    box-shadow: -1px 1px 6px -4px;
    padding: 5px 10px;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s all;
}

.user-profile-option-menu ul li a {
    font-size: 14px;
    margin: 6px 0;
}

.user-profile-options:hover .user-profile-option-menu {
    opacity: 1;
    visibility: visible;
}
.edit-form-item label {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0px 0 7px;
}

.edit-form-item select {
    width: 140px;
    border: 1px solid #999;
    padding: 7px 16px;
}

.edit-form-item :is(input[type="tel"],input[type="text"],textarea) {
    border: 1px solid #999;
    padding: 1px 20px;
}

.edit-form-item {
    margin: 20px 0;
}

.edit-form-item .gender-item {
    width: max-content;
    float: left;
    margin-right: 15px;
}

.edit-form-item .gender-item label {
    padding: 9px 19px;
    height: max-content;
    font-size: 12px;
}

.gender-items {
    display: table;
}

.edit-form-item .checkbox label {
    font-size: 15px;
    font-weight: 400;
}

.edit-form-item p {
    font-size: 13px;
}
.edit-profile .input-image-container {
    position: relative;
    height: 270px;
}

.edit-profile  .input-image-container .delete_user_img {
    position: absolute;
    top: 9px;
    left: 9px;
}

.edit-profile .box img {
    height: 100%;
}
.edit-form-item .bio {
    min-width: 100%;
    min-height: 170px;
}
.profile-detail-item span {
    font-weight: 600;
}

.profile-detail-item {
    margin: 8px 0;
}

.profile-detail-item ul li {
    font-size: 14px;
    border: 1px solid var(--c1);
    padding: 7px 19px;
    width: max-content;
    border-radius: 20px;
    background: transparent;
    border-color: #ea5b6e;
    color: #ea5b6e;
}

.profile-detail-item ul {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.msgs-sidebar-item-inner a {
    display: flex;
    align-items: center;
}

.msgs-sidebar-item-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 21px;
}

.msgs-sidebar-item-inner {
    border: 1px solid #e7e7e7;
    padding: 10px 12px;
    border-radius: 3px;
    box-shadow: 0 0 5px -3px;
}

.msgs-sidebar-item {
    padding: 5px 13px;
}

.msgs-sidebar-item-con h4 {
    font-size: 16px;
    margin: 0;
}

.msgs-sidebar-item-con p {margin: 0;font-size: 11px;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;overflow: hidden;}
.back-to-msgs {
    position: sticky;
    top: -10px;
    font-size: 16px;
    background: #fff;
    z-index: 99;
    padding: 6px 0;
}

.chat-view {
    position: relative;
    padding-top: 30px;
}
.msgs-sidebar-item.not-read .msgs-sidebar-item-inner {
    padding: 10px 12px;
    border-radius: 3px;
    box-shadow: 0 0 9px -3px;
}
.msgs-sidebar-item.not-read .msgs-sidebar-item-con h4 {
    font-weight:700;
}
.msgs-sidebar-item.not-read .msgs-sidebar-item-con p {
    font-weight:700;
}
.notification-content a {
    display: flex;
    align-items: center;
    gap: 10px;
}
 
 
button.d_openbtn img {
    width: 26px;
}

button.d_openbtn {
    padding: 2px;
    background: #fff;
    border: navajowhite;
    position: absolute;
    top: 8px;
    left: 6px;
    z-index: 9999;
}
a.d_closebtn img {
    width: 16px;
}

a.d_closebtn {
    position: absolute;
    top: -1px;
    right: 5px;
}

.gender-item input:checked + label {
    background: #ec686b;
    color: #fff;
}

.gender-item label {
    padding: 7px 10px;
}