body {
    font-family: 'Poppins', serif;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
    background: #008349;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #008349;
    border-radius: 4px;
}

.login-screen-body {
    background-image: url('../Images/login-screen-bg.png');
    background-color: #F4EEE9;
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    width: 100%;
    min-height: 100vh;
    /* height: fit-content; */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

@media (max-width: 900px) {
    .login-screen-body {
        padding: 24px 35px;
    }

    .login-form-grid img {
        max-width: 380px;
    }
}


.container-fluid.body-part {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login-form-grid {
    width: fit-content;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 10px 0px 0px 0px;
    margin-top: 18px;
}

.login-img-grid {
    width: fit-content;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 0px 10px;
}

.login-form-box {
    padding: 20px 45px;
}

.txt-login-frm-head {
    font-weight: 600;
    font-size: 24px;
    color: #C52F33;
}

.login-form-box form {
    padding: 10px 0px;
}

#frmLoginForm .form-control,
#frmForgotPassword .form-control,
#frmVerificationCode .form-control,
#frmSetPassword .form-control {
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    padding: 10px 15px;
    color: #9C9C9C;
    font-weight: 400;
    font-size: 14px;
}

#frmLoginForm .form-control.error,
#frmForgotPassword .form-control.error,
#frmVerificationCode .form-control.error,
#frmSetPassword .form-control.error {
    border: 1px solid #C52F33;
}

/* #frmForgotPassword .form-control {
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    padding: 10px 15px;
    color: #9C9C9C;
    font-weight: 400;
    font-size: 14px;
}

#frmForgotPassword .form-control.error {
    border: 1px solid #C52F33;
} */

.btn-login {
    background-color: #008349;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    border: none;
    width: 100%;
}

.login-form-box span {
    display: flex;
    justify-content: flex-end;
    text-decoration: none;
    color: #297CCA;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.3s ease;
}

.login-form-box span:hover {
    cursor: pointer;
}

.horizotal-line {
    border: 1px solid #acaeb1;
    /* original #E2E8F0 */
    margin-bottom: 0px !important;
}

.new-reg-txt {
    width: 100%;
    padding: 15px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #676767;
}

.new-reg-txt .span1 {
    font-weight: 700;
    color: #008349;
}

.new-reg-txt .span2 {
    font-weight: 700;
    color: #C52F33;
}

.bg-C52F33 {
    background-color: #C52F33;
}

.col-6.bg-C52F33 {
    border-bottom-right-radius: 20px;
}

.btn-new-reg {
    background-color: #C52F33;
    padding: 15px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .container-fluid.body-part {
        padding: 20px !important;
    }
}

.navbar {
    padding: 18px 20px;
    height: 75px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-mobile .navbar {
    height: 100px;
}

.navbar-brand img {
    height: 35px;

}

/* .navbar-brand {
    margin-right: 32px;
} */

.navbar-collapse {
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 10px;
}

.nav-item {
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    padding: 3px 5px;
    margin-right: 5px;
}

.nav-item.active {
    background-color: #F9EAEA;
    border-radius: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #C52F33;
    margin-right: 10px;
    padding: 3px 5px;
}

.nav-item.active .nav-link {
    color: #C52F33 !important;
}

.nav-item .nav-link {
    color: #000000 !important;
}

.active-icon {
    display: none;
}

.nav-item.active .default-icon {
    display: none;
}

.nav-item.active .active-icon {
    display: inline-block;
}

.navbar .container-fluid {
    max-width: 1440px;
}

.nav-web {
    display: block;
}

.navbar-mobile {
    display: none;
}

.custom-toggler {
    border: none;
    padding: 0.5rem;
    outline: none;
}

.custom-toggler:active,
.custom-toggler:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.custom-toggler .navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after,
.custom-toggler .navbar-toggler-icon span {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
}

.custom-toggler .navbar-toggler-icon::before {
    transform: translateY(0) rotate(0);
}

.custom-toggler .navbar-toggler-icon::after {
    transform: translateY(0) rotate(0);
}

.custom-toggler .navbar-toggler-icon span {
    opacity: 1;
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(7.5px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-7.5px) rotate(-45deg);
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
}

.btn-offcanvas-close {
    border: none;
    border-radius: 26px;
    padding: 8px 20px;
    background-color: #C52F33;
    color: #FFFFFF;
    font-family: 'Poppins', serif;
    font-weight: 700;
    font-size: 13px;
}

.offcanvas-overfloe-grid {
    padding: 0px 30px;
}

@media (max-width: 992px) {

    .nav-web {
        display: none;
    }

    .navbar-mobile {
        display: block;
    }

}

.footer-content {
    text-align: center;
    background-color: #F4EEE9;
    padding: 15px;
    font-size: 12px;
    font-weight: 500;
    line-height: 30px;
    color: #524747;
}

.btn-premium {
    background-color: #008349;
    border-radius: 70px;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 12px;
    color: #FFFFFF;
    border: none;
    margin-right: 25px;
}

.btn-notity-icon {
    border: none;
    background-color: #FFFFFF;
    margin-right: 25px;
}

.btn-profile-info {
    border: none;
    background-color: #C52F33;
    border-radius: 50%;
    padding: 10px 15px;
}

.main-body-container {
    background-color: #F4EEE9;
}

.body-part-container {
    padding: 20px 100px;
    max-width: 1440px;
}

.matches-grid-mobile,
.matches-table-mobile,
.interests-grid-mobile {
    display: none;
}


@media (max-width: 900px) {
    .body-part-container {
        padding: 18px 20px;
    }

    .matches-grid-web,
    .matches-table-web,
    .interests-grid-web {
        display: none;
    }

    .matches-grid-mobile,
    .matches-table-mobile,
    .interests-grid-mobile {
        display: block;
    }
}

.page-heading-txt {
    font-weight: 600;
    font-size: 28px;
    color: #C52F33;
}


@media (max-width: 900px) {
    .page-heading-txt {
        font-size: 20px;
        margin-bottom: 25px !important;
    }

    .col-6.col-lg-6.mb-3 {
        margin-bottom: 45px !important;
    }
}

.dashboard-tile {
    border-radius: 10px;
    padding: 18px 23px;
}

.dashboard-tile-num {
    font-weight: 700;
    font-size: 26px;
    color: #FFFFFF;
}

.dashboard-tile-txt {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
}

a .dashboard-tile-txt {
    text-decoration: none;
}

.bg-C52F33 {
    background-color: #C52F33;
}

.bg-39B3C2 {
    background-color: #39B3C2;
}

.bg-C98788 {
    background-color: #C98788;
}

.bg-2560CC {
    background-color: #2560cc;
}

.bg-F7971D {
    background-color: #F7971D;
}

.advt-space {
    background-color: #F3F4F6;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    color: #6B728F;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.matches-meet-grid {
    padding: 25px 0px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.matches-meet-grid-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0px 25px;
}

.txt-18-600 {
    font-weight: 600;
    font-size: 18px;
    color: #000000;
}

.txt-16-500,
.txt-16-500 a {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.text-start {
    text-align: start;
}

.text-end {
    text-align: end;
}

.matches-meet-grid-nav-item {
    background-color: #E7E7E7;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px 15px;
    margin-right: 10px;
    /* font-size: 13px; */
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
}



.matches-meet-grid-nav-item.active {
    background-color: #C52F33;
    color: #FFFFFF;
}

.matches-meet-grid-nav-item:hover {
    background-color: #C52F33;
    color: #FFFFFF;
}

.matches-meet-grid-nav {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    padding: 0px 25px;
}

@media (max-width: 900px) {
    .matches-grid-mobile .matches-meet-grid-nav-item {
        border-radius: 5px;
        margin-right: 4px;
        padding: 8px 8px;
        width: fit-content;
    }

    .matches-grid-mobile .matches-meet-grid-nav-item:hover {
        background-color: #C52F33;
        color: #FFFFFF;
    }
}

.px-14 {
    padding-left: 14px !important;
    padding-right: 14px !important;
}

.fit-width {
    width: fit-content;
}

.custom-matches-hr {
    border: 2px solid #C52F33 !important;
    margin-top: 0px;
    opacity: 1;
}

.matches-profiles-grid {
    padding: 0px 30px;
}

.matches-profiles-grid-item {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .matches-profiles-grid-item {
        margin-bottom: 10px;
    }

}

.matches-profiles-grid-item img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


.matches-profiles-grid-item-box {
    padding: 18px 4px 18px 10px;
}

.profile-grid-head-txt {
    font-weight: 500;
    /* font-size: 19px; */
    font-size: 20px;
    line-height: 30px;
    color: #000000;
}

.profile-grid-body-txt {
    font-weight: 400;
    /* font-size: 13px; */
    font-size: 14px;
    line-height: 30px;
    color: #4B5C70;
}

.profile-grid-body-txt .date-txt {
    font-size: 12px;
    color: #9EADBE;
}

.profile-grid-body-txt .id-txt {
    font-weight: 600;
    color: #C52F33;
}

.btn-view-prf {
    border-radius: 10px;
    background-color: #C52F33;
    border: none;
    padding: 9px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    width: 95%;
    margin-top: 13px;
}

.myprofile-grid {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 0px;
}

.myprofile-grid-head {
    padding: 0px 25px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.l-height-27 {
    line-height: 27px !important;
}

.myprofile-grid hr {
    border: 1px solid #E2E8F0;
    opacity: 1;
}

.myprofile-grid-body {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
}

.myprofile-grid-body span {
    font-size: 12px;
    color: #6B7284;
}

.available-grid {
    background-color: #DCFCE7;
    border-radius: 70px;
    color: #008349;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    padding: 3px 9px;
}

.available-grid .inactive {
    color: #C52F33;
    background-color: #F3A4A4;
}

.btn-view-full-prf {
    background-color: #C52F33;
    border-radius: 10px;
    border: none;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    width: 100%;
    color: #FFFFFF;
}


.quick-links-grid {
    display: flex;
    flex-direction: column;
    padding: 0px 25px;
}

.quick-links-grid-item {
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    padding: 9px 15px;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 24px;
}

.quick-links-grid-item:hover {
    text-decoration: none;
    color: #000000;
}

.quick-links-grid-item img {
    margin-right: 15px;
}

.noftn-count {
    background-color: #F04141;
    border: none;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    line-height: 19.5px;
    color: #FFFFFF;
    padding: 2px 11px;
    width: fit-content;
}

.btn-call-button {
    background-color: #008349;
    border-radius: 10px;
    border: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    text-align: start;
    padding: 9px 18px;
}

.matches-tabs {
    background-color: #FFFFFF;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    padding: 9px 15px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.matches-tabs:hover {
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.matches-tabs:hover {
    text-decoration-color: currentColor;
}

.matches-grid-mobile .matches-tabs {
    margin-right: 0px !important;
    font-size: 14px !important;
    padding: 9px 5px !important;
}

.interests-grid-mobile .matches-tabs {
    font-size: 13px !important;
    padding: 7px 13px !important;
}

.matches-tabs img {
    height: 24px;
    width: 24px;
    margin-right: 5px;
}

/* Text Colors */
.txt-cl-FF8819 {
    color: #FF8819;
}

.txt-cl-25BD18 {
    color: #25BD18 !important;
}

.txt-cl-FF0000 {
    color: #FF0000 !important;
}

.txt-cl-000000 {
    color: #000000 !important;
}

.txt-cl-00AAFF {
    color: #00AAFF !important;
}

/* Text Colors */

/* background Colors */
.bg-2F9FC5 {
    background-color: #2F9FC5;
}

.bg-E2E8F0 {
    background-color: #E2E8F0;
}


.bg-008349 {
    background-color: #008349;
}

/* background Colors */


/* font weights */

.fw-500 {
    font-weight: 500 !important;
}

/* font weights */


/* matches Tabs */
.tab-1.active {
    border: 2px solid #FFA227;
}

.tab-2.active {
    border: 2px solid #25BD18;
}

.tab-3.active {
    border: 2px solid #FF0000;
}

.tab-4.active {
    border: 2px solid #000000;
}

/* matches Tabs */

.pending-profiles {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 25px 30px 25px;
}

.profile-head-section {
    display: flex;
    justify-content: space-between;
    align-items: start;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
}

.profile-head-section span {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #105DE2;
    display: flex;
    align-items: center;
}

.font-wght-700 {
    font-weight: 700 !important;
}

.profile-head-section img {
    margin-right: 5px;
}

.prf-srch-bar .form-control {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #9F9696;
}

.prf-srch-bar .form-control::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #9F9696;
}

.prf-srch-bar .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}

.full-width-hr {
    margin-left: -25px;
    margin-right: -25px;
    margin-top: 5px;
    border: 1px solid #E2E8F0;
    opacity: 1;
}

.start-align {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: start;
}

.center-align {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.end-align {
    display: flex;
    justify-content: flex-end;
    text-align: end;
}

.profiles-tbl-head-txt {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #676767;
}

.tbl-profile-pic {
    width: 78px;
    height: 78px;
    border: none;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    object-position: top center;
    image-rendering: -webkit-optimize-contrast;
    will-change: transform;

}

.matches-table-mobile .tbl-profile-pic {
    width: 113px !important;
    height: 113px !important;
}

.tbl-name-txt {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #C52F33;
    min-height: 130px;
}

.tbl-name-txt .view-full-dtls-tooltip.txt {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #C52F33;
    min-height: 130px;
}

.tbl-name-txt span {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.matches-table-web .row.p-0 .col-1,
.matches-table-web .row.p-0.mt-4.mb-4 .col-1 {
    width: 10.333333% !important;
}

.matches-table-web .row.p-0 .col-6,
.matches-table-web .row.p-0.mt-4.mb-4 .col-6 {
    width: 48% !important;
}

.show-cnt-mr-ls-txt {
    font-weight: 700 !important;
    color: #2F90E0 !important;
    cursor: pointer;
}

.txt-condit-gen-dtls {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.pending-prfs-actn-btns {
    height: 38px;
    width: 38px;
    border: none;
    border-radius: 50%;
    margin-left: 10px;
}

.matches-table-mobile .pending-prfs-actn-btns {
    margin-right: 10px;
    margin-left: 0px !important;
}

.pending-prfs-actn-btns.bg-E2E8F0 .active-icon {
    display: none;
}

.pending-prfs-actn-btns.bg-E2E8F0.active {
    background-color: #2F9FC5 !important;
}

.pending-prfs-actn-btns.bg-E2E8F0.active .active-icon {
    display: inline;
}

.pending-prfs-actn-btns.bg-E2E8F0.active .normal-icon {
    display: none;
}

.pagination-sliders {
    width: 31px;
    height: 31px;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 9px;
}

.pagination-numbers-grid {
    width: 31px;
    height: 31px;
    border: 1px solid #E2E8F0;
    background-color: #E2E8F0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #000000;
    margin-right: 8px;
}

.pagination-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ml--10 {
    margin-left: -10px;
}

.ml--15 {
    margin-left: -15px;
}

.ml--20 {
    margin-left: -20px;
}

.ml--25 {
    margin-left: -25px;
}

.both-accepted-txt {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #25BD18;
}

.both-accepted-txt span {
    font-weight: 400;
}

.they-declined-txt {
    font-weight: 700;
    font-size: 13px;
    line-height: 21px;
    color: #FF0000;
}

.they-declined-txt span {
    font-weight: 400;
}

.tbl-actn-col {
    width: 12.5% !important;
}

.tbl-status-col {
    width: 25% !important;
}

.tbl-acpt-dt-col {
    width: 12% !important;
}

.btn-re-acpt {
    border: none;
    border-radius: 70px;
    background-color: #008349;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
    padding: 11px 16.6px;
    text-align: center;
}

.advt-block-grid {
    background-color: #F3F4F6;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #6B728F;
    padding: 23px 0px 7px 0px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 17px;
    height: 79px;

}

.change-password-grid {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 22px 37px 51px 37px;
    width: 76.1%;
    margin: auto;
    margin-top: 23px !important;
}

#frmChangePassword .form-control {
    border: none;
    padding: 5px;
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: #000000;
}

#frmChangePassword .form-control:focus {
    outline: none;
    box-shadow: none;
}

#frmChangePassword .form-control.error-border {
    border: none;
    border-bottom: 1px solid #FF0000;
}

#frmChangePassword label.error {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #FF0000;
}

#frmChangePassword .form-control::placeholder {
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: #000000;
}

.btn-change-password {
    background-color: #C52F33;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 9px 24.2px;
    margin-top: 38px;
}

.btn-change-password:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#frmChangePassword a {
    text-decoration: none;
    color: #2F90E0;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    margin-top: 38px;
}

@media (max-width: 900px) {
    .change-password-grid {
        width: 100% !important;
    }

    #frmChangePassword a {
        margin-top: 10px;
    }

    .tbl-name-txt {
        min-height: 0px !important;
    }
}


.meetings-tab-1.active {
    border: 2px solid #25BD18;
}

.meetings-tab-2.active {
    border: 2px solid #00AAFF;
}

.meetings-tab-3.active {
    border: 2px solid #FF0000;
}

.meeting-dtls-grid {
    background-color: #E1F8EE;
    margin-top: -24px;
    height: 100%;
}

.mb--48 {
    margin-bottom: -48px;
}

.ml--45 {
    margin-left: -45px;
}

.ml--10 {
    margin-left: -10px;
}

.txt-cal-pstive {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #25BD18;
}

.w-21 {
    width: 21% !important;
}

.w-20 {
    width: 20% !important;
}

.w-29 {
    width: 29% !important;
}

.w-30 {
    width: 30% !important;
}

.txt-prf-updt {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #8E8E8E;
}

.header-btn {
    background-color: #FFFFFF;
    border: none;
    padding: 10px 13px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #000000;
    border-radius: 10px;
    margin-right: 5px;
}

.prfl-dtls-grid {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px 13px 15px;
    border-radius: 10px;
}

.prfl-dtls-grid-head {
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.down-side-arrow {
    height: 10px;
    width: 13px;
}

.txt-dtls {
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: #000000;
}

.txt-dtls span {
    font-weight: 400;
}

.txt-abt-dtls {
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: #000000;
}

.txt-abt-dtls span {
    font-weight: 400;
    font-size: 13px;
    line-height: 10px !important;
}

.down-side-arrow.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.round-10 {
    overflow: hidden;
    border-radius: 10px;
}

.bg-FAF7F7 {
    background-color: #FAF7F7;
}

.h-160 {
    height: 160px;
}

.h-350 {
    height: 350px;
}

.registration-dtls-grid {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 22px 37px 51px 37px;
    width: 76.1%;
    margin: auto;
    margin-top: 23px !important;
}


@media (max-width: 900px) {
    .registration-dtls-grid {
        width: 100% !important;
    }
}

.restrn-dtls-btn {
    border: none;
    border-radius: 10px;
    background-color: #008349;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
    margin-left: 7px;
    padding: 5px 11px;
    height: 35px;
}

#frmRegistrationDetails .form-control {
    border: none;
    padding: 5px;
    border-bottom: 1px solid #DEDEDE;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: #000000;
}

.registration-dtls-grid-item {
    padding: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: #000000;
}

.registration-hr {
    border: 1px solid #DEDEDE;
    opacity: 0.5;
    margin-bottom: 0px;
}

.mt-12 {
    margin-top: 12px;
}

#frmRegistrationDetails .form-control:focus {
    outline: none;
    box-shadow: none;
}

#frmRegistrationDetails .form-control::placeholder {
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: #000000;
}

.alert-txt-message {
    font-weight: 400;
    font-size: 10px;
    line-height: 26px;
    color: #C52F33;
    font-style: italic;
}

.custom-dropdown-menu {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #CFCFCF;
    border-radius: 10px;
    padding: 15px 20px;
}

.custom-dropdown-up {
    top: auto !important;
    bottom: 100% !important;
    margin-bottom: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-content-wrapper {
    padding: 10px;
}

#notification-dropdown {
    min-width: 290px;
}

#myprofile-dropdown {
    min-width: 175px;
    padding: 10px 15px !important;
}

.notiftn-txt-head {
    font-weight: 700;
    font-size: 12px;
    line-height: 17px;
    color: #000000;
}

.notiftn-txt-head span {
    font-weight: 400;
}

.notiftn-txt-head a {
    text-decoration: none;
    color: #000000;
}


.notiftn-txt-head .notiftn-time {
    font-weight: 400;
    font-size: 10px;
    line-height: 17px;
    color: #8D8D8D;
}

.custom-dropdown-menu .full-width-hr {
    margin-left: -20px !important;
}

.txt-view-all-notiftn {
    font-weight: 700;
    font-size: 11px;
    line-height: 17px;
    color: #008349;
    text-align: center;
}

.myprfl-txt {
    font-weight: 400;
    font-size: 12px;
    line-height: 34px;
    color: #000000;
}

.myprfl-txt a {
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 34px;
    color: #000000;
}

.myprfl-txt hr {
    border: 1px solid #DEDEDE;
    margin-top: 0px;
    margin-bottom: 0px;
}

.edit-info-grid {
    background-color: #EFF6FF;
    padding: 7px 17px;
    color: #2A6BBF;
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
    line-height: 26px;
    border-radius: 10px;
}

.ml-12 {
    margin-left: 12px !important;
}

.prfl-dtls-grid .form-label {
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 1px;
    margin-top: 18px;
}

.prfl-dtls-grid .form-control {
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    font-weight: 400;
    font-size: 13px;
    line-height: 26px;
    color: #000000;
}

.prfl-dtls-grid .form-select {
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    font-weight: 400;
    font-size: 13px;
    line-height: 26px;
    color: #000000;
}

.prfl-dtls-grid::placeholder {
    font-weight: 400;
    font-size: 13px;
    line-height: 26px;
    color: #000000;
}

.prfl-dtls-grid .form-control:focus {
    outline: none;
    box-shadow: none;
}

.prfl-dtls-grid textarea {
    resize: vertical;
    -webkit-appearance: none;
    appearance: none;
    overflow: hidden;
}

.mt-27 {
    margin-top: 27px;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}


.view-full-dtls-tooltip {
    position: relative;
    cursor: pointer;
}

.view-full-dtls-tooltip::after {
    content: attr(data-title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    display: none;
    z-index: 1000;
    width: 250px;
    text-wrap: wrap;
    height: fit-content;
}

.view-full-dtls-tooltip.active::after {
    display: block;
}

#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.loader-spinner {
    border-top: 3px solid #C52F33;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin 0.5s linear infinite, changeColor 1.5s linear infinite;
    margin: 0 auto;
}

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

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

@keyframes changeColor {
    0% {
        border-top-color: #C52F33;
    }

    50% {
        border-top-color: #008349;
    }

    100% {
        border-top-color: #C52F33;
    }
}

.loader-space {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.pending-profiles.loader-space {
    min-height: 200px;
}

.spinner-grow {
    width: 1rem;
    height: 1rem;
    margin-right: 10px;
}

.truncated-text {
    cursor: pointer;
    position: relative;
}

.truncated-text::after {
    content: "Click to view full address";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.truncated-text:hover::after {
    opacity: 1;
    visibility: visible;
}


.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 24px;
}

.btn-load-more {
    background-color: #C52F33;
    border-radius: 70px;
    border: none;
    padding: 9.5px 100.4px;
    color: #FFFFFF;
    font-family: 'Poppins', serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
}

@media only screen and (max-width:991px) {
    .mobile-hd {
        position: absolute;
        left: 6%;
        transform: translateX(-50%);
        top: 0%;
    }
}

/* 25-04-2025 */

.btn-header-profile {
    background-color: #FFFFFF;
    border: none;

}

/* 17-06-2025 */
.light-peach-bg {
    background: #FCF4F4;
}

.prf-srch-bar.light .form-control {
    background-color: #FFFFFF;
    padding: 10px 20px;
    border-color: transparent;
}

.msg-search-container {
    position: relative;
}

.msg-search-container .msg-search-icon {
    position: absolute;
    bottom: 21px;
    left: 10px;
    transform: translateY(-50%);
}

.msg-search-container .search-input {
    padding-left: 40px !important;
}

.col-4.light-peach-bg {
    position: relative;
    height: 100vh;
}

.col-4.light-peach-bg .red-hover:hover {
    background: #e9b7c2;
}

.red-hover .alinmnt:hover {
    padding-left: 12px;
    padding-right: 20px;
}

.msg-side-hd {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
}

.msg-side-para {
    color: #676767;
    font-size: 14px;
    font-weight: 500;
}

.msg-side-time {
    color: #000000;
    font-size: 12px;
    font-weight: 400;
}

.top-banner {
    height: 95px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
}

.msg-search-banner {
    position: relative;
}

.msg-search-banner .msg-search {
    position: absolute;
    bottom: -5px;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}

.msg-search-banner .search-input {
    padding-right: 40px !important;
}

.form-control.msg-input-show {
    border-radius: 10px !important;
}

.message-container {
    display: inline-block;
    background: #e8f4fe;
    border-radius: 8px;
    padding: 6px 10px;
    position: relative;
    margin: 10px;
    z-index: 1;
}

.message-container::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -22px;
    width: 20px;
    height: 20px;
    border: 10px solid transparent;
    border-right: 20px solid #e8f4fe;
    transform: rotate(32deg);
    z-index: 2;
}

.message-container-right {
    display: inline-block;
    background: #FCF4F4;
    border-radius: 8px;
    padding: 6px 10px;
    position: relative;
    margin: 10px;
    z-index: 1;
}

.message-container-right::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -6px;
    width: 20px;
    height: 20px;
    border: 10px solid transparent;
    border-right: 20px solid #FCF4F4;
    transform: rotate(22deg);
    z-index: 2;
}

.msg.message-container-right::before {
    display: none;
}

.message-text {
    display: inline-block;
    font-size: 14px;
    color: #000000;
    font-weight: 400;
}

.message-time {
    display: inline-block;
    font-size: 10px;
    color: #666;
    margin-left: 20px;
}

.msg-date-dsply {
    color: #676767;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.bottom-banner {
    height: 48px;
    width: 66.66666667%;
}

.chat-input-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #D7D9DD;
}

.chat-input-container i {
    font-size: 1.2rem;
    color: #888;
    cursor: pointer;
}

.chat-input-container input {
    border: none;
    outline: none;
    flex: 1;
    margin: 0 0.5rem;
    font-size: 1rem;
    background: transparent;
}

.chat-input-container input::placeholder {
    color: #999;
}

.messages-page-design {
    height: calc(100vh - 300px) !important;
    overflow-y: auto !important;
}

.messages-page-design::-webkit-scrollbar {
    width: 4px;
}

.messages-page-design::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 4px;
}

.messages-page-design::-webkit-scrollbar-thumb {
    background: #EAEAEA;
    border-radius: 4px;
}

.messages-page-design::-webkit-scrollbar-thumb:hover {
    background: #008349;
    border-radius: 4px;
}

.msg-back-arrow {
    display: none;
}

@media (max-width: 1100px) {
    .msg-side-hd {
        font-size: 20px;
    }

    .msg-side-para {
        font-size: 14px;
    }

    .msg-side-time {
        font-size: 12px;
    }

    .message-text {
        font-size: 14px;
    }

    .message-time {
        font-size: 12px;
    }
}

@media (max-width: 1000px) {
    .msg-side-hd {
        font-size: 18px;
    }

    .msg-side-para {
        font-size: 12px;
    }

    .msg-side-time {
        font-size: 10px;
    }

    .message-text {
        font-size: 12px;
    }

    .message-time {
        font-size: 10px;
    }
}

@media (max-width: 825px) {
    .light-peach-bg {
        width: 100%;
    }

    .top-banner {
        width: 100% !important;
        flex: 0 0 100%;
        max-width: 100%;
        display: none;
    }

    .bottom-banner {
        width: 100% !important;
        z-index: 999;
        background: #fff;
    }

    .messages-page-design {
        height: calc(100vh - 95px) !important;
        overflow-y: auto !important;
    }

    .msg-back-arrow {
        display: inline-block !important;
        cursor: pointer;
    }
}

@media (max-width: 825px) and (min-width: 545) {
    .red-hover .alinmnt:hover {
        padding-right: 25px;
    }

    .col-4.light-peach-bg .red-hover:hover {
        cursor: pointer;
    }

}

/* 17-06-2025 */

/* 25-06-2025 */
.ball-pulse-sync {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.ball-pulse-sync div {
    width: 15px;
    height: 15px;
    margin: 2px;
    border-radius: 50%;
    background-color: #fff;
    display: inline-block;
    animation-fill-mode: both;
}

.ball-pulse-sync div:nth-child(1) {
    animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}

.ball-pulse-sync div:nth-child(2) {
    animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
}

.ball-pulse-sync div:nth-child(3) {
    animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}

@keyframes ball-pulse-sync {
    33% {
        transform: translateY(10px);
    }

    66% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}


.tooltip-wrapper {
    position: relative;
    cursor: not-allowed;
}

.tooltip-wrapper::after {
    content: attr(data-title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 16px;
    white-space: normal;
    display: none;
    z-index: 1000;
    width: 200px;
    height: fit-content;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tooltip-wrapper:hover::after {
    display: block;
    opacity: 1;
}

.disabled-tile {
    pointer-events: none;
    opacity: 0.6;
}

.image-properties {
    object-fit: cover;
    object-position: top center;
    image-rendering: -webkit-optimize-contrast;
    will-change: transform;
}

/* 25-06-2025 */

/* 04-07-2025 */
.header-name-tooltip {
    position: relative;
    cursor: pointer;
}

.header-name-tooltip::after {
    content: attr(data-title);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: normal;
    display: none;
    z-index: 1000;
    width: 250px;
    box-sizing: border-box;
    margin-top: 6px;
    height: fit-content;
}

.header-name-tooltip:hover::after {
    display: block;
}


/* 04-07-2025 */