@charset "utf-8";
/* CSS Document */

/* css by vineesh (VK) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: "Plus Jakarta Sans", sans-serif;
    height: 100vh;
    background: #F6F8FB;
    font-size: 15px;
}

main {
    border-radius: 20px;
    /* background: #F6F8FB;
    padding: 24px 20px */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

a {
    outline: none;
    text-decoration: none !important;
    -webkit-transition: 300ms ease-in-out;
    -moz-transition: 300ms ease-in-out;
    -ms-transition: 300ms ease-in-out;
}

p {
    font-size: 14px;
}

button {
    cursor: pointer;
}

button:focus-visible {
    outline: none !important;
}

button:hover {
    -webkit-transition: 300ms ease-in-out;
    -moz-transition: 300ms ease-in-out;
    -ms-transition: 300ms ease-in-out;
}

a:hover {
    -webkit-transition: 300ms ease-in-out;
    -moz-transition: 300ms ease-in-out;
    -ms-transition: 300ms ease-in-out;
}

:focus {
    outline: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.clearfix:after, before {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}

html[xmlns] .clearfix {
    display: block;
}

.reset {
    clear: both;
}

.h_100 {
    height: 100%;
}

/*----------------------------------------------------*/

/* main_header_area css
==============================================*/
/* logon page */
.sign_in {
    padding: 15px 0px;
    display: inline-block;
    width: 100%;
    /* height: -webkit-fill-available; */
    height: 100%;
}

.logo svg {
    width: 100%;
}

@media screen and (min-height: 780px) {
    .sign_in {

        height: -webkit-fill-available;
    }
}

.login_left {
    height: 100%;
    float: left;
    width: 100%;
    background: url(../images/login_left_img.png) top left no-repeat;
    background-size: cover;
    border-radius: 15px;
    position: relative;
    min-height: 200px;
}

.login_logo {
    max-width: 447px;
    height: auto;
    width: 100%;
    padding: 15px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.error_box {
    margin: 10px 0px;

}


.login_right {
    display: flex;
    width: 100%;
    align-items: center;
    margin: auto;
    /* overflow-y: auto; */
    justify-content: center;
    /* overflow-x: hidden; */
    height: 100%;
}

.login_rightform {
    flex: 1;
    max-width: 500px;
    max-height: 94vh;
}

.login_head {
    margin-bottom: 20px;
}

.login_head h1 {
    color: #283340;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.pass_show {
    position: relative
}

.form-group {
    margin-bottom: 20px !important;
}

.pass_show .ptxt {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 1;
    color: #f36c01;
    margin-top: -10px;
    cursor: pointer;
    transition: .3s ease all;
}

.pass_show .ptxt:hover {
    color: #333333;
}

body .form-control {
    border-radius: 10px;
    border: 1px solid var(--Input-stroke, #CACFD6);
    background: #FFF;
    height: 50px !important;
    padding: 12px 16px;
    color: #000000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    box-shadow: none;
}

.form-control::placeholder {
    color: #757575 !important;
    font-weight: 500;
}

.form-group label {
    color: var(--Dark-text, #283340);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}

.password_form {
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--Input-stroke, #CACFD6);
    background: #FFF;
    height: 50px;
    padding: 0px 16px;
    position: relative;
}

.password_form .form-control {
    display: flex;
    align-items: center;
    border: none;
    height: auto !important;
    padding: 0;
    background: #FFF;
    box-shadow: none;
    border-radius: 0px;
}

.password_form .fa-eye:before {
    content: "";
    background: url(../images/show.png);
    width: 24px;
    height: 24px;
    position: absolute;
    cursor: pointer;
    right: -2px;
    top: -10px;
}

.password_form .fa-eye-slash:before {
    content: "";
    background: url(../images/eye_hide.png);
    width: 24px;
    height: 24px;
    position: absolute;
    cursor: pointer;
    right: -2px;
    top: -10px;
}

.forgot_link {
    width: 100%;
    display: block;
    text-align: right;
}

.forgot_link a {
    color: var(--Primary, #0F67D3);
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    white-space: nowrap;
}

.login_btn_out {
    margin-top: 20px;
}

.login_btn_out .gray_btn {
    border-radius: 10px;
    border: 1px solid var(--Input-stroke, #CACFD6);
    background: var(--Input-stroke, #CACFD6);
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--Light-Text, #5F6772);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    cursor: auto;
}

.login_btn_out .blue_btn {
    border-radius: 10px;
    border: 1px solid var(--Primary, #0F67D3);
    background: var(--Primary, #0F67D3);
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    cursor: pointer;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.login_btn_out .blue_btn:hover {
    border: 1px solid var(--Primary, #0b59b8);
    background: var(--Primary, #0b59b8);
}

.blue_btn {
    border-radius: 10px;
    border: 1px solid var(--Primary, #0F67D3);
    background: var(--Primary, #0F67D3);
    display: inline-block;
    width: auto;
    height: 50px;
    padding: 13px 30px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #FFF;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.blue_btn:hover {
    border: 1px solid var(--Primary, #0b59b8);
    background: var(--Primary, #0b59b8);
}

.blue_brdr {
    display: inline-block;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 13px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--Primary, #0F67D3);
    background: var(--white, #FFF);
    color: var(--Primary, #0F67D3);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.blue_brdr:hover {
    border: 1px solid #e4eefa;
    background: #e4eefa;
}

.gray_br_bt {
    border-radius: 70px;
    border: 1px solid var(--Dark-text, #283340);
    background: #FFF;
    color: var(--Dark-text, #283340);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.gray_br_bt:hover {
    border: 1px solid var(--Dark-text, #283340);
    background: #283340;
    color: var(--Dark-text, #ffffff);

}

.ext_profile_info a {
    margin-bottom: 5px;
}

.or_line {
    margin: 30px 0px;
    width: 100%;
    display: block;
    position: relative;
    background: #E9ECF0;
    height: 1px;
}

.or_line span {
    color: #283340;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    position: absolute;
    left: 0;
    right: 0;
    top: -9px;
    background: #fff;
    width: 85px;
    margin: auto;
}

.login_share {
    display: block;
    text-align: center;
}

.login_share a {
    color: #283340;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    border-radius: 8px;
    border: 1px solid #CACFD6;
    text-align: center;
    display: inline-flex;
    gap: 10px;
    padding: 15px;
    /* 157.143% */
}

.login_share a:hover {
    border: 1px solid #0f67d328;
    background: #0f67d328;
}

.login_btm {
    display: block;
    margin: 20px 0px;
    padding-bottom: 10px;
}

.login_btm p {
    color: var(--Dark-text, #283340);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.login_btm p a {
    color: var(--Primary, #0F67D3);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 157.143% */
    margin-left: 5px;
}

.error {
    color: var(--Error, #B50000) !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    margin-top: 5px;
    display: block;
}

/* profile setup */

.profile_setup_left {
    padding: 69px 15px;
    text-align: center;
    max-width: 353px;
    display: block;
    margin: auto;
}

.pro_setup_logo {
    max-width: 300px;
    width: 100%;
}

.profile_setup_left p {
    color: var(--white, #FFF);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 20px 0px 30px;
}

.profile_setup_left ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: inline-block;
}

.profile_setup_left .active::after {
    content: '';
    position: absolute;
    height: 100%;
    border-right: 1px dashed #FFF;
    left: 20px;
    top: 37px;
    z-index: -1;
}

.profile_setup_left .active::before {
    display: none;
}

.profile_setup_left li::before {
    content: '';
    position: absolute;
    height: 100%;
    border-right: 1px dashed #757575;
    left: 20px;
    top: 37px;
    z-index: -1;
}

.profile_setup_left li:last-child:before {
    display: none;
}

.profile_setup_left li {
    color: var(--Input-stroke, #CACFD6);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.profile_setup_left li p {
    display: none;
}

.profile_setup_left .active {
    font-weight: 700 !important;
    color: #ffffff !important;
}

.profile_setup_left .active span {
    display: none !important;
}

.profile_setup_left .active p {
    display: block !important;
    margin: 0;
}

.profile_setup_left li:last-child {
    color: var(--Input-stroke, #CACFD6);
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.right_profile {
    display: block;
    width: 100%;
}

.right_profileform {
    margin: auto;
    display: inline-block;
    max-width: 80%;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
}

.right_profileform h4 {
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.right_profileform h4 span {
    color: var(--Dark-text, #283340);
    font-weight: 700;
}

.right_profileform h1 {
    color: var(--Dark-text, #283340);
    font-weight: 700;
    margin-bottom: 10px;
}

.right_profileform p {
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.right_profileform_btn {
    text-align: right;
}

.threebox .profile_choose_box {

    padding: 39px 20px;
    display: inline-grid;
    align-items: center;
    text-align: center;
    justify-content: center;

}

.threebox .profile_choose_box img {

    margin: auto;

}

.threebox .profile_choose_box svg {
    margin-bottom: 8px;
    margin: auto;
}

.profile_choose_box {
    border-radius: 20px;
    background: #EEF3F9;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #EEF3F9;
    width: 100%;
    height: 100%;
}

.profile_choose_box:hover {
    cursor: pointer;
    background: #cedae7;
    border: 1px solid #cedae7;
}

.profile_choose_box svg {
    margin-bottom: 8px;
}

.profile_choose_box input[type="radio"] {
    display: none;
}



.profile_choose_box p {
    color: #5F6772;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px !important;
    margin: 0;
}

.login_right .profile_choose_box h5 {
    color: #283340;
    text-align: center !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin: 0 !important;
    display: block;
}


.buttons_outer_box {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.buttons_outer_box button {
    min-width: 160px;
}

.buttons_outer_box a {
    min-width: 160px;
}

.buttons_outer_box input {
    min-width: 160px;
}

.active_choose {
    border-radius: 20px;
    border: 1px solid var(--Primary, #0F67D3) !important;
    background: var(--Light-background, #EEF3F9) !important;
}

.active_choose h5 {
    color: #0F67D3 !important;
}

.active_choose p {
    color: #0F67D3 !important;
}

.active_choose svg {
    stroke: #0F67D3 !important;
}

.active_choose svg path {
    stroke: #0F67D3 !important;
}

.search_use_button span {
    color: #283340;
    text-align: center;
    font-size: 14px;
    display: inline-block;
    margin: 0px 10px 10px 0px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 10px;
    background: #EEF3F9;
    padding: 10px 15px;
    border: 1px solid var(--Primary, #EEF3F9) !important;
    cursor: pointer;
}

.area_error span {
    margin: auto;
}

.search_use_button .select_item {
    border-radius: 10px;
    border: 1px solid var(--Primary, #0F67D3) !important;
    background: #EEF3F9 !important;
    color: var(--Primary, #0F67D3) !important;
}

/* Create a custom checkbox */
.checkhead {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    color: #283340;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

/* Hide the browser's default checkbox */
body .checkhead input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

body .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 4px;
    border: 2px solid #0f67d3;
}

/* On mouse-over, add a grey background color */
.checkhead:hover input~.checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkhead input:checked~.checkmark {
    background-color: #0F67D3;
    border: 1px solid #0F67D3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkhead input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkhead .checkmark:after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* radio */

/* radiio end */
.primery_textarea {
    margin-bottom: 20px;
}

.primery_textarea .textarea {
    border-radius: 10px;
    border: 1px solid #CACFD6;
    background: #FFF;
    padding: 10px 16px;
    width: 100%;
    min-height: 100px;
    font-size: 14px;
    color: #000;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.primery_textarea h5 {
    color: #757575 !important;
    text-align: right !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: normal !important;
}

textarea {
    resize: none;
}

.profile_choose_outer h5 {
    color: #283340;
    font-size: 18px;
    font-style: normal;
    display: block;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.profile_choose_outer h5 span {
    color: #757575;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    float: left;
}

.check_your_email {
    text-align: center;
    display: inline-block;
    width: 100%;
}

.check_your_email svg {
    margin-bottom: 20px;
}

.check_your_email h4 {
    color: var(--Dark-text, #283340);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.check_your_email p {
    color: var(--Dark-text, #283340);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.check_your_email p span {
    color: var(--Dark-text, #283340);
    font-weight: 700;
}

.check_your_email .login_btm {
    display: inline-block;
    margin: 0;
}

.profile_choose_outer .col-md-4, .col-md-3, .col-md-5, .col-md-6 {
    padding-left: 12px;
    padding-right: 12px;
}

.profile_choose_outer .row {
    margin-right: -12px;
    margin-left: -12px;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
    border-radius: 20px;
    font-size: 15px;

    border-radius: 10px;
    border: 1px solid var(--Primary, #0F67D3) !important;
    background: #EEF3F9 !important;
    color: var(--Primary, #0F67D3) !important;
}

.tag .remove-tag {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
}


.tag .removetag {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
}

.skillbutton.select_item {
    background-color: #0F67D3;
    color: white;
}

.tag-container {
    border: 1px solid #CACFD6;
    border-radius: 10px;
    padding: 12px 16px;
    min-height: 50px;
}

/*Select Dropdowns*/
.dropdown {
    position: relative;
    width: 200px;
}

.inner-header-grid-right .dropdown {
    position: relative;
    width: auto;
}

.dropdown-toggle {
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    cursor: pointer;
    user-select: none;
}

.dropdown-options {
    display: none;
    position: absolute;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    background: #fff;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-options label {
    display: block;
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-options input[type="radio"] {
    margin-right: 8px;
}

.dropdown.open .dropdown-options {
    display: block;
}



/* body {
    font-family: Arial, sans-serif;
    padding: 50px;
} */

.multiselect {
    position: relative;
    width: 300px;
}

.selectBox {
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-height: 40px;
}

.selectBox .tag {
    background-color: #e0e0e0;
    border-radius: 12px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
}

.selectBox .tag span {
    margin-left: 6px;
    cursor: pointer;
}

.options-container {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.options-container input[type="text"] {
    width: 100%;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    outline: none;
}

.option {
    padding: 10px;
    cursor: pointer;
}

.option:hover {
    background: #f0f0f0;
}

.multiselect.open .options-container {
    display: block;
}

.checkbox {
    margin-right: 8px;
}

/*****************************/
.multi-box {
    position: relative;
    width: 280px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    background-color: #fff;
    cursor: pointer;
}

.multi-box .placeholder {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.multi-box .arrow {
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.multi-box.open .arrow {
    transform: rotate(-135deg);
}

.multi-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 0 0 6px 6px;
    z-index: 10;
    display: none;
}

.multi-box.open .multi-options {
    display: block;
}

.multi-options input[type="text"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
}

.multi-options .option-item {
    padding: 8px 10px;
    display: flex;
    align-items: center;
}

.multi-options .option-item:hover {
    background-color: #f0f0f0;
}

.multi-options .option-item label {
    margin-left: 8px;
    cursor: pointer;
}

/*//////////////////////////////*/
.custom-multiselect-wrapper {
    position: relative;
    width: 250px;
    margin-bottom: 20px;
}

.custom-multiselect {
    border: 1px solid #ccc;
    padding: 10px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}

.custom-multiselect .arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.custom-options-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-options-container input[type="text"] {
    width: 100%;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

.custom-options {
    max-height: 180px;
    overflow-y: auto;
}

.checkbox-item {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
}

.checkbox-item:hover {
    background-color: #f1f1f1;
}



.modalnotbox h6 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.socialiconshare {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.socialiconshare a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.socialiconshare a:hover img {
    transform: scale(1.2);
}

.modalnotbox p {
    margin: 20px 0;
    color: #888;
}

.formsty {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.formsty input {
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    min-width: 250px;
}

.btnprimary {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btnprimary:hover {
    background-color: #0056b3;
}



/* Custom vertical tabs styles */
.nav-tabs {
    border-right: 1px solid #ddd;
}

.nav-tabs>li {
    float: none;
    /* stack vertically instead of horizontal */
    margin-bottom: 2px;
}

.nav-tabs>li>a {
    margin-right: 0;
    /* remove the right margin */
    border-radius: 0 4px 4px 0;
    /* round only right corners */
    border: 1px solid transparent;
    border-left: none;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    border-color: #ddd transparent #ddd #ddd;
    /* make active tab appear connected to content */
    background-color: #fff;
    font-weight: bold;
}

/* Tab content styling - fill height */
.tab-content {
    border: 1px solid #ddd;
    border-left: none;
    padding: 20px;
    background-color: #fff;
    min-height: 250px;
}

/* Adjust container for spacing */
.settings-container {
    margin-top: 30px;
}



.chat-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    height: 500px;
    display: flex;
    overflow: hidden;
}

.nav-pills {
    border-right: 1px solid #ddd;
    overflow-y: auto;
    height: 100%;
    flex-shrink: 0;
    width: 250px;
    flex-direction: column;
}

.nav-pills .nav-link {
    border-radius: 0;
    padding: 15px 20px;
    color: #333;
}

.nav-pills .nav-link.active {
    background-color: #007bff;
    color: white;
}

.chat-content {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #f1f1f1;
}

.message {
    margin-bottom: 15px;
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.message.sent {
    background-color: #007bff;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.message.received {
    background-color: #e4e6eb;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.chat-header {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    background-color: #fff;
}

.rdio_none {
    display: none;
}

.profile_choose_box_out {
    height: 100%;
    width: 100%;
}

.header-filter-container .filter-item .dropdown-toggle::after {
    display: none !important;
}

.view_profilecard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid var(--Line-stroke, #E9ECF0);
    background: #FFF;
    margin-bottom: 10px;
    padding: 15px;
}

.view_profilecard .profile-image {
    width: 52px;
    height: 52px;
    border-radius: 26px;
}

.view_profilecard .picpost_left_pic {
    width: 52px;
    height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.view_profilecard_content {
    padding: 0px;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    flex: 1;

}

.viewprofile-info h2 {
    color: #181818;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 3px;
}

.viewprofile-info h4 {
    color: #181818;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    margin-bottom: 0px;
}

.viewprofile-info {
    text-align: left;
}

.viewprofile-info p {
    color: var(--Light-Text, #5F6772);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 21px */
    /* 18px */
    margin-bottom: 0px;
}

.viewprofile_btn .follow_bt {
    width: 160px;
    height: 33px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid var(--Primary, #0F67D3);
    background: var(--Primary, #0F67D3);
    color: var(--white, #FFF);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.view_head {

    color: var(--black-1, #071B2A);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.right_bt_mob {

    display: none;
}

.accepted_tap {
    border-radius: 10px;
    background: #fff;
    padding: 23px 14px;
    width: 100%;
    display: inline-block;
}

.accepted_tap h2 {
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 10px;
    word-break: break-all;
}

.accepted_tap h2 a {
    color: var(--Dark-text, #283340);
}

.view_profile .viewprofile-info h2 a {
    color: #181818;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.accepted_tap .nav-tabs {
    margin: 12px 0px 19px;
    width: 100%;
    display: flex;
    background: #FFF;
    border-radius: 0px 4px 4px 0px;
    border: 1px solid #E7E7E7;
    background: #FFF;
    justify-content: space-around;
    overflow: hidden;
    border-radius: 4px;
    min-width: 398px;
}

::-webkit-scrollbar {
    height: 2px;
}

.tab_scroll {
    width: 100%;
    overflow: auto;
}

.accepted_tap .nav-tabs>li {
    float: left;
    flex: 1;
    text-align: center;
    color: var(--Dark-text, #283340);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    border-right: 1px solid #E7E7E7;
}

.accepted_tap .viewprofile_btn {
    min-width: 285px;
    /* flex: 1.0; */
}

.accepted_tap .nav-tabs>li:last-child {

    border-right: none !important;
}

.accepted_tap .nav-tabs>li>a {
    margin-right: 0 !important;
}

.accepted_tap .nav-tabs>li>a:focus {
    background-color: transparent;

}

.accepted_tap .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    border-radius: 4px 0px 0px 4px !important;
    background: var(--Primary, #0F67D3) !important;
    color: #FFF !important;
    border: none !important;
    text-align: center;
    font-size: 14px;
    margin-right: 0 !important;
    font-style: normal;
    font-weight: 500;
    cursor: pointer !important;
    line-height: normal !important;
    padding: 12px;
}

.accepted_tap .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    border-radius: 0px !important;
    background: var(--Primary, #0F67D3) !important;
    color: #FFF !important;
    border: none !important;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    border: none !important;
    line-height: normal !important;
}

.accepted_tap .nav>li>a {
    padding: 10px 5px;
}

.accepted_tap .tab-content {
    border: none;
}

.accepted_tap .tab-content .btn-primary {
    background: #0f67d3 !important;
}

.accepted_tap .tab-content .btn {
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
}




.setting_tab {
    padding: 0px;
    width: 100%;
    display: flex;
    border-radius: 22px;
    background: #FFF;
}

.setting_tab .checkbox label {

    font-size: 14px;
}

.setting_tab h2 {
    color: var(--black-1, #071B2A);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.setting_tab .nav-tabs {
    margin: 0px 0px;
    width: 100%;
    display: inline-block;
    /* background: #FFF; */
    /* border-radius: 0px 4px 4px 0px; */
    border-right: 1px solid #E7E7E7 !important;
    border: none;
    background: #FFF;
    justify-content: space-around;
    overflow: hidden;
    /* border-radius: 4px; */
    max-width: 202px;
}

.setting_tab .nav-tabs>li {
    float: left;
    flex: 1;
    text-align: left;
    color: var(--Dark-text, #283340);
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    /* border-right: 1px solid #E7E7E7; */
    width: 100%;
    padding: 0px;
}

.setting_tab .nav-tabs>li:last-child {

    border-right: none !important;
}

.setting_tab .nav-tabs>li>a {
    margin-right: 0 !important;
}

.setting_tab .nav-tabs li a {
    color: var(--Dark-text, #283340);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    text-align: left !important;
    line-height: normal;
    padding: 20px 15px !important;
    border: none !important;
}

.setting_tab .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    border-radius: 0px !important;
    background: #EEF3F9 !important;
    color: var(--Dark-text, #283340) !important;
    border: none !important;
    border: none !important;
    line-height: normal !important;
}

.setting_tab .nav-tabs li a:hover {
    border-radius: 0px !important;
    background: #EEF3F9 !important;
    color: var(--Dark-text, #283340) !important;
    padding: 20px 15px;
    text-align: left;
    border: none !important;
}

.setting_tab .nav-tabs>li.active>a {
    border-color: #EEF3F9 !important;
    background: #EEF3F9 !important;
    color: var(--Primary, #0F67D3);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.setting_tab .nav-tabs>li.active>a:hover {
    border-color: #EEF3F9 !important;
    background: #EEF3F9 !important;
    color: var(--Primary, #0F67D3) !important;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.setting_tab .nav-tabs>li.active>a:focus {
    border-color: #EEF3F9 !important;
    background: #EEF3F9 !important;
    color: var(--Primary, #0F67D3) !important;

}

.setting_tab .tab-content {
    border: none;
    padding: 40px;
}

.setting_tab .tab-content .btn-primary {
    background: #0f67d3 !important;
}

.setting_tab .tab-content .btn-primary:hover {
    background: #0090FF !important;
    color: #fff !important;
}

.setting_tab .tab-content .btn {
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
}

.dongle_top {
    margin-top: 4px;
}

.red_text {
    color: #E16868 !important;
}

.chatBoxes {
    position: fixed;
    bottom: 0;
    right: 10px;
    z-index: 155555;
    min-width: 260px;
}

.chatboxinput {}

.chatboxinput_flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatboxattachments a {
    color: rgb(20, 20, 20);
    font-size: 24px;
}

.chatboxinput .chatboxtextarea {
    color: #000 !important;
}

.chatboxoptions {
    display: flex;
    gap: 13px;
    align-items: center;
    font-size: 19px;
    line-height: 18px;
}

.chatboxtitle {
    float: left;
    font-size: 14px;
}

.message_search {
    display: flex;
    background-color: #ffff;
    border: 1px solid var(--Input-stroke, #CACFD6);
    background: #FFF;
    border-radius: 4px;
    margin-bottom: 15px;
}

.message_search .form_control {
    border: none;
    background: none;
    height: 41px !important;
    padding: 8px 15px;
    color: #000000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    box-shadow: none;
    flex: 1;
    border-radius: 4px;
}

.message_search .msg_btn {
    border: none;
    background: #0090ff;
    padding: 4px 12px;
    color: #fff;
    font-size: 21px;
    margin: 0;
    height: 100%;
}

/* mobile menu */
.menu {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 21;
    right: 1%;
    top: 9px;
    z-index: 188888 !important
}

.menu span {
    position: relative;
    margin-top: 9px;
    margin-bottom: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -1.5px;
}

.menu span, .menu span::before, .menu span::after {
    display: block;

    width: 26px;
    right: 0;
    height: 3px;
    background-color: #0090FF;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.menu span::before, .menu span::after {
    position: absolute;
    content: "";
}

.menu span::before {
    top: -9px;
    width: 20px
}

.menu span::after {
    top: 9px;
    width: 33px;

}

.menu.clicked span {
    background-color: transparent;
}

.menu.clicked span::before {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
    width: 25px;
}

.menu.clicked span::after {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
    width: 25px;
}

.menu.clicked span:before, .menu.clicked span:after {
    background-color: #0090FF;
}

.menu:hover {
    cursor: pointer;
}

/*  NAV
========================================== */

#nav {
    background: #fff;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    height: 100%;
    max-width: 100%;
    width: 100%;
    padding: 100px 40px 60px 40px;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

#nav.show {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}

#nav.show ul.main li {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}

.menu.clicked {
    position: fixed;
    z-index: 188888 !important;
}

#nav.show ul.main li:nth-child(1) {
    transition-delay: 0.15s;
}

#nav.show ul.main li:nth-child(2) {
    transition-delay: 0.3s;
}

#nav.show ul.main li:nth-child(3) {
    transition-delay: 0.45s;
}

#nav.show ul.main li:nth-child(4) {
    transition-delay: 0.6s;
}

#nav.show ul.main li:nth-child(5) {
    transition-delay: 0.75s;
}

#nav.show ul.main li:nth-child(6) {
    transition-delay: 0.9s;
}

#nav.show ul.main li:nth-child(7) {
    transition-delay: 1.05s;
}

#nav.show ul.main li:nth-child(8) {
    transition-delay: 1.2s;
}

#nav.show ul.main li:nth-child(9) {
    transition-delay: 1.35s;
}

#nav.show .about, #nav.show .social, #nav.show ul.sub {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: .85s;
}

/* @media (min-width: 667px) {
    #nav {
        padding: 120px 30px 70px 20px;
    }
} */

#nav ul.main {
    list-style-type: none;
}

#nav ul.main li {
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    float: none;
    list-style: circle;
    color: #0090ff;
}

#nav ul.main li:last-of-type {
    margin-bottom: 0px;
}

#nav ul.main li a {
    color: #000;

    text-decoration: none;
    text-transform: capitalize;
    font-size: 14px;
    display: block;
    padding: 10px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#nav ul.main li a span {
    color: #b7ac7f;
}

#nav ul.main li a:hover {
    color: #0090ff;
}

#nav ul.sub {
    list-style-type: none;
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#nav ul.sub li {
    margin-bottom: 10px;
}

#nav ul.sub li:last-of-type {
    margin-bottom: 0px;
}

#nav ul.sub li a {
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#nav ul.sub li a:hover {
    color: #b7ac7f;
}

.menu:hover span {}

/*  OVERLAY
========================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: #000000ad;
    /* semi-transparent black */
    transition: all 0.3s ease-in-out;
}

.overlay.show {
    opacity: 0.8;
    visibility: visible;
    background-color: #000000ad;
    visibility: hidden;
}



.respmenu {
    display: none !important;
}

.webblok {
    display: block;
}

.inner-header-grid .dropdown-toggle::after {
    display: none !important;
}

.notification .dropdown-menu {
    min-width: 248px !important;
}

span.picpost_left_pic h3 {
    background: #edf5ff;
    border-radius: 100px;
    height: 110px;
    width: 110px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 0;
}

.viewprofile_btn .msg-unfriend {
    display: flex;
    gap: 10px;
    align-items: baseline;
    justify-content: flex-end;
}

.view_profilecard .red_br_bt {
    color: var(--Error, #B50000);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    padding: 11px 22px;
    font-weight: 600;
    line-height: normal;
    border-radius: 70px;
    border: 1px solid var(--Error, #B50000);
    background: #FFF;
}

.view_profilecard .red_br_bt:hover {
    color: var(--Error, #ffffff);
    border: 1px solid var(--Error, #c20202);
    background: #c20202;
}

.view_profilecard .follow_bt {
    color: var(--Primary, #0F67D3);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    padding: 11px 22px;
    line-height: normal;
    border-radius: 70px;
    border: 1px solid var(--Primary, #0F67D3);
    background: #FFF;
    height: auto;
    display: inline-block;
    max-width: fit-content;
}

.view_profilecard .follow_bt:hover {
    color: #ffffff;
    border: 1px solid #0090FF;
    background-color: #0090FF;

}

.view_profilecard .picpost_left_pic h3 {
    background: #edf5ff;
    border-radius: 125%;
    height: 52px;
    width: 52px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 19px;
    margin: 00;
    border: solid 2px #88bdff;
    text-transform: capitalize;
}

.accepted_tap .card_follow {
    color: #0275B1 !important;
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 18px */
    /* 15px */
}

.accepted_tap .viewprofile-info h4 {
    color: var(--Light-Text, #5F6772);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    word-break: break-all;
    /* 21px */
    /* 15px */
}

.cover-image {
    background-color: #aeaeae !important;
}


.share_popup .modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
}

.popup_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.popup_head .title {
    font-weight: 600;
    font-size: 14px;
    color: #17272F;
}

.popup_head .close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.popup_head .close-button:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icons a {
    border: solid 1px #EEF3F9;
    border-radius: 100px;
    padding: 5px;
    height: 45px;
    width: 45px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
}

.social-icons a svg {
    width: 100%;
    height: auto;
}

.divider {
    height: 1px;
    background-color: #DEDEDE;
    margin: 20px 0;
}

.profile-link-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link-label {
    font-weight: 500;
    font-size: 14px;
    color: #283340;
}

.link-input-container {
    display: flex;
    align-items: center;
    padding: 5px 16px;
    border: 1px solid #CACFD6;
    border-radius: 10px;
    background: #FFFFFF;
    height: 50px;
}

.link-input-container img {
    margin-right: 8px;
}

.link-input-container input {
    border: none;
    outline: none;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    color: #283340;
    background: transparent;
}

.copy-button {
    background: #0F67D3;
    border: 1px solid #0F67D3;
    border-radius: 10px;
    height: 50px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-transform: capitalize;
}

.copy-button:hover {
    background: #0D5BBF;
}

.copy-button:active {
    background: #0B4FA6;
}

.share_popup .modal-dialog {
    max-width: 326px;


}

.edit_popup .modal-dialog {
    max-width: 641px
}

.edit_popup .modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
}

.upload_popup .modal-dialog {
    max-width: 641px
}

.upload_popup .modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
}

.modal-open .modal {
    z-index: 1666666 !important;
    background: #00000085;
}


.logout_popup .modal-dialog {
    max-width: 336px;
    margin: auto;


}

.logout_popup .modal-content {

    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;

}

.logout_popup .icon {
    margin-bottom: 16px;
}

.logout_popup .text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #e35151;
    margin: 0;
}

.logout_popup .text p {
    font-size: 16px;
    font-weight: 500;
    color: #17272f;
    margin: 8px 0 24px;
}

.logout_popup .logfoot {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.logout_popup button {
    border-radius: 8px;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 400;
    width: 114px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

.logout_popup a {
    border-radius: 8px;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 400;
    width: -webkit-fill-available;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

.logout_popup .cancel_bt {
    border: 1px solid #283340;
    background-color: #ffffff;
    color: #283340;
}

.logout_popup .cancel_bt:hover {
    background-color: #f0f0f0;
}

.logout_popup .logoutbt {
    border-radius: 8px;
    background: var(--Error, #B50000);
    color: #ffffff;
    border: none;
}

.logout_popup .logoutbt:hover {
    background-color: #a00000;
}

.profile_box_top {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 21px;
}

.profile_box_top .profile_box_edit {
    border-radius: 70px;
    border: 1px solid var(--Primary, #0F67D3);
    background: var(--white, #FFF);
    display: flex;
    width: 85px;
    height: 36px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--Primary, #0F67D3);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.bio_popup textarea.form-control {
    height: auto !important;
}

.noti_cnt .noti_cnt_innr h2 {
    width: 100%;
    display: block;
    color: #000000;
    font-size: 16px;
}

.noti_cnt .noti_cnt_innr span {
    width: 100%;
    display: block;
    color: #777777;
    font-size: 11px;
}

.user-profile-left .user-profile-head {
    border-radius: 4px;
}

.other_prfile {}

.other_prfile h3 {
    color: #17272F;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.other_prfile h4 {
    color: #AAA;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.other_prfile p {
    color: #AAA;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.other_prfile_inner {
    display: flex;
    justify-content: space-between;
}

.other_prfile_inner_r {
    display: inline-flex;
    align-items: end;
}

.other_prfile_inner_r .ext_profile_info {
    display: inline-flex;
    gap: 10px;
}

.blue_b_bt {
    color: var(--Primary, #0F67D3);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 74px;
    border: 1px solid var(--Primary, #0F67D3);
    background: var(--white, #FFF);
    display: inline-flex;
    padding: 8.5px 25px 8.5px 25px;
    align-items: center;
}

.blue_b_bt:hover {

    background: #0090FF;
    border: solid 1px #0090FF;
    color: #fff;
}

.privet_account {
    padding: 90px 10px;
    text-align: center;
    border-radius: 10px;
}

.privet_account h3 {

    width: 100%;
    text-align: center;
}

.privet_account svg {
    margin: 15px auto;
    display: block;
}

.privet_account h3 {
    color: var(--Dark-text, #283340);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.privet_account p {
    color: var(--Dark-text, #283340);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.profile_right_box {
    background: #fff;
    padding: 24px 24px 12px;
    width: 100%;
    display: block;
    border-radius: 6px;
    border: 1px solid #EEF3F9;
}

.profile_choose_outer label {
    width: 100%;
    height: 100%;
}

.profile_choose_outer label .radio_none {
    display: none;
}

.profile_choose_outer label input {
    display: none;
}

.bg_white {
    background-color: #fff;
}

/* width */
.bizcomlisting::-webkit-scrollbar {
    width: 0px;
}

/* Track */
.bizcomlisting::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(255, 255, 255);
    border-radius: 15px;
}

/* Handle */
.bizcomlisting::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 15px;
}

/* Handle on hover */
.bizcomlisting::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
    border-radius: 15px;
}


/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(255, 255, 255);
    border-radius: 15px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #E9ECF0;
    border-radius: 15px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #E9ECF0;
    border-radius: 15px;
}

.notification span {
    position: absolute;
    background: #f00;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    border-radius: 100px;
    top: -1px;
    right: 2px;
    font-weight: 700;
}

.information {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
}

.user-profile-left .information p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #000000;
    font-weight: 500;
}

.user-profile-left .information p:last-child {
    margin-bottom: 0px;

}

.chatboxfilepreview {
    width: 100%;
    padding: 2px 0px;
    background: #fff;
}

.btn_w_tb {

    width: 105px;
    height: 40px;
    display: inline-block;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 21px;
    padding: 8px 10px;
}

.follow_rqst {
    border-radius: 70px;
    border: 1px solid var(--Primary, #0F67D3);
    background: var(--Primary, #0F67D3);
    color: var(--white, #FFF);
}

.follow_rqst:hover {
    border: 1px solid var(--Primary, #0a58b8);
    background: var(--Primary, #0a58b8);
    color: var(--white, #FFF);
}

.setting_pwd h3 {
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.setting_pwd p {
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 15px;
    /* 157.143% */
}

.setting_pwd .form-group {
    margin-bottom: 20px;
}

.setting_pwd label {
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pwd_info ul {
    padding: 0;
    margin-bottom: 20px;
    list-style: none;
}

.pwd_info ul li {
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.setting_doggle {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.setting_doggle_left {
    flex-grow: 4;
}

.setting_doggle_left h4 {
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.setting_doggle #doggle {
    width: 100%;
    margin: 0;
    flex: 1;
}

.setting_doggle p {
    margin-bottom: 0px;
}

.setting_doggle .toggle-button-container {
    position: relative;
    box-sizing: border-box;
}

.setting_doggle .toggle-button {
    position: relative;
    text-align: right;
}

.setting_doggle .toggle-button:before {
    counter-increment: button-counter;
    content: counter(button-counter);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}

.knob,
.btn-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.setting_doggle .btn {
    position: relative;
    top: 0;
    width: 39px;
    height: 24px;
    margin: 0px;
    overflow: hidden;
}

.btn.btn-pill,
.btn.btn-pill>.btn-bg {
    border-radius: 100px;
}

.setting_doggle .btn.btn-rect {
    border-radius: 2px;
}

.setting_doggle .checkbox {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
    left: 0;
    top: 0;
}

.setting_doggle .knob {
    z-index: 2;
}

.setting_doggle .btn-bg {
    width: 100%;
    transition: 0.3s ease all;
    z-index: 1;
    border-radius: 75px;
    background: #B0B7C0;
}

/* Button 1 */
.setting_doggle #button-1 .knob:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 3px;
    width: 17px;
    height: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    border-radius: 18px;
    background: var(--white, #FFF);
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

.setting_doggle #button-1 .checkbox:checked+.knob:before {
    content: "";
    left: 17px;
    background-color: #fff;
}

.setting_doggle #button-1 .checkbox:checked~.btn-bg {
    background-color: #32705B;
}

.setting_doggle #button-1 .knob,
#button-1 .knob:before,
#button-1 .btn-bg {
    transition: 0.3s ease all;
}

.profil_box {
    margin-bottom: 20px;
    min-height: 68px;
}

.profil_box h5 {
    color: #17272F;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
    margin-bottom: 10px;
    overflow: hidden;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.profil_box p {
    color: #17272F;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.accepted_tap .nav-tabs>li>a:hover {
    border-color: #0090FF;
    background: #0090FF;
    color: #fff;
    border-radius: 0px;
}

.accepted_tap .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    border-color: #0F67D3 !important;
    background: #0F67D3 !important;
    color: #fff !important;
}


.profile_tab .btn.btn-outline-primary {
    border-radius: 29px;
    font-size: 15px;
}

.success {
    margin: 5px 0px;
    display: block;
    font-size: 14px;
}

.notfount img {
    max-width: 188px;
}

.new_search_section {
    border-radius: 10px;
    background: #FFF;
    padding: 15px 15px !important;
    margin-bottom: 10px;
}

/* .listin {
    overflow-y: auto;
    height: 100vh;
} */

.left_userouter {
    text-align: center;
    margin: 10px 0px 20px;
}

.left_userouter h3 a {
    color: #17272F;
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.left_userouter h4 {
    color: var(--Light-Text, #5F6772);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.leftbar_count {
    border-top: solid 1px #EDF0F5 !important;
    border: none;
    padding: 17px 0px 0px;
}

.leftbar_count_box {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.leftbar_count_box:last-child {

    margin-bottom: 0;
}

.leftbar_count_box a {
    display: flex;
    gap: 10px;
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.leftbar_count_box a:hover svg path {
    fill: #0F67D3;
}

.leftbar_count_box a:hover svg circle {
    stroke: #0F67D3 !important;
}

.leftbar_count_box a:hover svg ellipse {
    stroke: #0F67D3 !important;
}

.count {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    color: #FFF;
    border-radius: 100px;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 14.478px;
    /* 95.648% */
    background-color: var(--Primary, #0F67D3);
    text-align: center !important;
    padding: 4px 1px 0px;
}

.new_card h2 a {
    color: var(--black-1, #071B2A);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.new_card p {
    color: var(--black-1, #071B2A);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.user-profile-right {
    border-radius: 20px;
    background: #F6F8FB;
    /* padding: 20px; */
}

.people_left {
    display: flex;
    flex: 1;
}

.right_feople {
    justify-content: space-between;
}

.people_right .connect_bt {
    color: var(--Primary, #0F67D3);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 90px;
    border: 1px solid var(--Primary, #0F67D3);
    background: #FFF;
    padding: 7px 15px;
}

.people_right_cnt p {
    font-size: 14px !important;
}

.people_right .connect_bt:hover {
    background: #0090FF;
    border: solid 1px #0090FF;
    color: #fff;

}

.msg-unfriend {

    margin-bottom: 0px;
}

.card_bottm p {
    margin-bottom: 0;
}

.search_box_outer {
    width: 100%;
    border-radius: 20px;
    background: #F6F8FB;
    padding: 15px 0px;
    margin-bottom: 25px;
    /*border-top: 3px solid #e7eaec!important;
	border: 1px solid #e7eaec;*/
    border-radius: 10px;
    /* box-shadow: 0 3px 10px rgba(0, 0, 0, .1); */
    position: relative;
}

.view_profile {
    border-radius: 10px;
    background: #fff;
    padding: 15px;
    display: inline-block;
}

.border_profile_bt {
    border-radius: 70px;
    border: 1px solid var(--Primary, #0F67D3);
    background: #FFF;
    height: 33px;
    padding: 10px 10px;
    color: var(--Primary, #0F67D3);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    width: 140px;
    display: inline-block;
}

.border_profile_bt:hover {
    border: 1px solid var(--Primary, #0F67D3);
    background: #0F67D3;
    color: var(--Primary, #fff);

}

.view_profile .follow-button {

    border-radius: 70px;
    border: 1px solid var(--Primary, #0F67D3);
    /* background: var(--Primary, #0F67D3); */
    color: var(--white, #FFF);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 8px 40px 8px;
    height: auto;
}

.follow-button:hover {
    background: #0090FF;
    border: solid 1px #0090FF;
    color: #fff;

}

.search_box_outer h3 {
    margin-bottom: 14px;
}

.user-profile-left {
    border-radius: 20px;
    background: #F6F8FB;
    margin-left: 70px;
}

.cover_change {
    width: 39px;
    height: 39px;
    float: right;
    border-radius: 80px;
    border: 1px solid var(--white, #FFF);
    background: rgba(0, 0, 0, 0.50);
    cursor: pointer;
}

.cover_change_inner {
    display: inline-block;
    /* padding: 10px 14px 10px 11px; */
    color: var(--white, #FFF);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    justify-content: space-between;
    gap: 2px;
    align-items: center;
}


.user_left_head {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}

.user_left_head .u-profile-img {
    width: 100px;
    height: 100px;
    position: relative;
}

.user_left_head .u-profile-img img {
    border-radius: 100%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: solid 2px #ebebeb !important;

}

.user_left_head_right h3 a {
    color: #17272F;
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.user-profile-left .user-profile-body .user_left_head_right h4 {
    color: var(--Light-Text, #5F6772);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.user_left_head_right p {
    color: var(--Placeholder, #757575);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.user_pro_change {
    position: absolute;
    right: -4px;
    bottom: 0px;
    background: #fff;
    padding: 6px;
    border-radius: 20px;
    font-size: 15px !important;
    border: solid 1px #EEF3F9;
    width: 30px;
    object-fit: contain;
    height: auto;
}

.user_right_head .blue_bt {
    border-radius: 70px;
    border: 1px solid var(--Primary, #0F67D3);
    background: var(--Primary, #0F67D3);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.user_right_head .blue_bt:hover {
    border: 1px solid var(--Primary, #0090FF);
    background: var(--Primary, #0090FF);
}

.user_right_head .blue_border_bt {
    border-radius: 70px;
    border: 1px solid var(--Primary, #0F67D3);
    background: var(--white, #FFF);
    color: var(--Primary, #0F67D3);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    padding: 8px 13px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.user_right_head .blue_border_bt:hover {
    border: 1px solid var(--Primary, #0090FF);
    background: var(--Primary, #0090FF);
    color: #fff;
}

.user_right_head .blue_border_bt:hover path {
    stroke: #fff;
}

.user_right_head {
    display: grid;
    gap: 10px;
    float: right;
}

.startup {
    display: flex;
    justify-content: space-between;
    gap: 77px;
}

.profil_box_bottom_left {
    flex: 1;
}

.profil_box_bottom_right {
    position: relative;
}

.profil_box_bottom_right::after {
    background: #EAEAEA;
    position: absolute;
    content: '';
    left: -46px;
    height: 100%;
    width: 1px;
    top: 0;
}

.profil_box_bottom_right h4 {
    color: #17272F;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;

}

.profil_box_bottom_right h5 {
    color: #17272F;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #555;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 30%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.user-profile-left .user-profile-head .other_profile_image .u-profile-img {
    width: 100px;
    height: 100px;
    top: 78px;
    left: 22px;
    border: 2px solid #f1f1f1;
}

.user-profile-left .user-profile-head .other_profile_image .u-profile-img .timeline_left_pic h4 {
    font-size: 35px;
    line-height: 25px;
    font-weight: 500;
}

.other_prfile_inner .other_prfile_inner_l {
    padding: 14px 0px 0px 18px;
}

.other_profile_outer .user-profile-left .user-profile-body {
    padding: 20px;
}

.other_profile_outer .user-profile-left .user-profile-body h3 a {
    color: #17272F;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.other_profile_outer .user-profile-left .user-profile-body h4 {
    color: #606060;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}



/* chat */

::-webkit-scrollbar {
    width: 2px;
}


::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 5px;
}

.chat-list-box {
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    background: var(--white, #FFF);
    height: 91%;
}

.flat-icon li {
    display: inline-block;
    padding: 0px 8px;
    vertical-align: middle;
    position: relative;
    top: 7px;
}

.flat-icon a img {
    width: 22px;
    border-radius: unset !important;
}

ul.list-inline.text-left.d-inline-block.float-left {
    margin-bottom: 0;
}

.chat-list-box ul li img {
    border-radius: 50px;
}

.message-box {
    /* display: none; */
    display: inline-block;
    width: 100%;
    background: #fff;
    height: calc(100vh - 196px);
    border-radius: 10px;
}

.msg-box li {
    display: inline-block;
    padding-left: 10px;
}

.message-box .head-box-1 img {
    border-radius: 50px;
    border-radius: 50px;
    width: 46px;
    height: 46px;
}

.message-box .picpost_left_pic {
    border-radius: 50%;
}

.message-box .head-box-1 h3 {
    color: var(--black1, #191816);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.msg-box li span {
    padding-left: 8px;
    color: #545454;
    font-weight: 550;
}

.head-box {
    display: flow-root;
    padding: 10px;
    background: #007bff;
}

.head-box ul li a {
    color: #fff;
}

.chat_active {
    padding: 14px;
    position: relative;
}

.chat_active::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background: #0F67D3;
    left: 4px;
    top: 0;
}

.chat-person-list ul li img {
    border-radius: 26px;
    width: 40px;
    height: 40px;
    object-fit: cover;
}


.chat-person-list ul li {
    width: 100%;
    border-bottom: solid 1px #F4F4F4;
    padding: 20px;
}

.chat-person-list ul li:last-child {
    border-bottom: none;
}

.head-box-1 {
    display: flex;
    padding: 12px 23px 12px 15px;
    border-radius: 10px 10px 0 0;
    background: var(--Line-stroke, #f6faff);
    justify-content: space-between;
    align-items: center;
}

.msg_box {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 0;
}

.head-box-1 .msg_box li i {
    color: #000000;
    cursor: pointer;
    font-size: 16px;
}

.msg_box li {
    display: flex;
    gap: 10px;
}

.msg_history {
    /* padding: 10px;
    height: 280px;
    overflow: overlay; */
    padding: 10px;
    height: calc(100% - 150px);
    overflow: overlay;

}

.incoming_msg_img {
    display: inline-block;
    width: 46px;
}

.timee {
    position: absolute;
    left: 115px;
    top: 30px;
    color: #fff;
}

.received_msg {
    display: inline-block;
    /* padding: 0 0 0 10px; */
    vertical-align: top;
    width: 84%;
}

.received_withd_msg {
    width: 57%;
}

.cnt_bt {
    margin: 5px 0px;
    font-size: 13px;
    display: block;
    font-weight: 600;
    color: #0F67D3;
}

.received_withd_msg p {
    border-radius: 0 22.5px 22.5px 15px;
    background: #EAF5FE;
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    padding: 12px 20px 12px 15px;
    width: auto;
    margin-bottom: 0;
    display: inline-block;
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 18px */
}

.time_date {
    color: var(--grey1, #7C8092);
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 6px 0 0;
    display: block;
}

.time_date_r {
    color: var(--grey1, #7C8092);
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 6px 0 0;
    display: block;
    text-align: right;
}

.incoming_msg_img img {
    width: 100%;
    border-radius: 50px;
    float: left;
    min-width: 40px;
}

.incoming_msg {
    margin-bottom: 15px;
}

.outgoing_msg {
    overflow: hidden;
    margin: 10px 0 10px;
}

.sent_msg {
    float: right;
    width: 46%;
    text-align: end;
}

.sent_msg p {
    border-radius: 22px 22px 0 22px;
    background: #3F85DC;
    color: var(--white, #FFF);
    font-family: "Plus Jakarta Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    padding: 12px 20px 12px 15px;
    width: auto;
    margin-bottom: 0;
    display: inline-block;
}

.chat-person-list ul li a {
    display: flex;
    gap: 15px;
}

.attachement {
    background: #777;
    position: absolute;
    width: 220px;
    right: 30%;
    top: 42px;
    display: none;
}

.attachement ul li {
    display: -webkit-inline-box;
    margin: 0px 19px 15px 20px;
}

.attachement ul li a {
    color: #fff;
}

.sent_msg img {
    border-radius: 4px;
}

.chat-person-list {
    height: calc(100vh - 192px);
    overflow: auto;
}

.setting-drop {
    display: none;
    position: absolute;
    width: 140px;
    height: 148px;
    right: 32px;
    top: 49px;
    background: #ffffff;
    color: #545454;
    box-shadow: 1px 1px 15px 1px #0000001f;
    padding: 10px;
    border-radius: 5px;
}

.send-message {
    padding: 15px;
    background: #fff;
    height: auto;
    border-top: solid 1px #F4F4F4;
}

.send-message textarea:focus {
    box-shadow: none;
    outline: none;
    border-color: #ddd;
}

.send-message ul li i {
    color: #0056b3;
}

.send-message ul li a {
    color: #0056b3;
}

.send-message .form-control {
    color: #AAA;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    resize: none;
}

.message_chat_outer {
    border-radius: 20px;
    /* background: #F6F8FB; */
    /* padding: 20px 10px; */
    height: calc(100vh - 153px);
    margin-left: 70px;
}

.msg_head {
    font-size: 22px;
    font-weight: 600;
    margin-left: 71px;
}

.chat_cnt h4 {
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    gap: 10px;
    align-items: baseline;
    justify-content: space-between;
}

.chat_cnt h4 span {
    color: var(--grey1, #7C8092);
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    flex: 1;
    text-align: right;
}

.chat_cnt p {
    opacity: 0.6;
    background: linear-gradient(90deg, #181818 82.32%, rgba(24, 24, 24, 0.00) 96.96%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0;
    line-height: normal;
}

.chat_cnt {
    flex: 1;
}

.online {
    position: relative;
    color: var(--grey1, #7C8092);
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 16px;
}

.online::after {
    position: absolute;
    content: '';
    left: 0;
    top: 3px;
    background: #02B033;
    width: 10px;
    height: 10px;
    border-radius: 50px;
}

.offline {
    position: relative;
    color: var(--grey1, #7C8092);
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 16px;
}

.offline::after {
    position: absolute;
    content: '';
    left: 0;
    top: 2px;
    background: #f00000;
    width: 10px;
    height: 10px;
    border-radius: 50px;
}

.setting-drop ul {
    margin: 0;
    /* padding: 10px; */
}

.setting-drop li {
    width: 100%;
    text-align: left;
    padding: 10px;
    font-size: 14px;
    color: #000;
}

.setting-drop li a {
    color: #000;
}

.setting-drop li a:hover {
    color: #0068c9;
}

.msg_bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;

    text-align: center;
}

.msg_bottom_text {
    flex: 1;
}

.msg_bottom_attached {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom:
        0;
}

.send_bt {
    border-radius: 4px;
    background: var(--Primary, #0F67D3);
    border: navajowhite;
    padding: 8px;
    display: flex;
}

.msg_search {
    max-width: 100% !important;
    float: right;
}

.message_find {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background: #FFF;
    height: 100%;
}

.message_find svg {
    margin-bottom: 28px;
}

.message_find h3 {
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.message_find p {
    color: #000;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 28px;
}

.message_find .blue_bt {

    width: 354px;
    padding: 13px 9px;
    color: #FFF;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    border-radius: 70px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.head_left {
    flex: 0 0 25%;
    max-width: 25%;
    align-items: center;
    justify-content: center;
}

.head_center {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.inner-header .inner-header-grid .head_center .header-form {
    margin-right: 0 !important;
    width: 100%;
    max-width: 400px;
}

.inner-header .inner-header-grid .head_center .header-form form input {

    width: 100% !important;
}

.head_right {
    flex: 0 0 25%;
    max-width: 25%;
    justify-content: end;
}

.chat-person-list ul li .mediapost_pic {
    width: 40px;
    height: 40px;
    border: 1px solid #e4e4e4;
}

.message-box .picpost_left_pic {
    width: 46px;
    height: 46px;
}

.message-box .picpost_left_pic h3 {
    width: 46px;
    height: 46px;
}

.message_chat_outer .tab-content {
    border: none;
    border-left: none;
    padding: 0px;
    background-color: transparent;
    min-height: 250px;
    height: 100%;
}

.msg_bottom_attached li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.msg_bottom_attached li .chatboxfilepreview img {
    max-width: 39px;
    max-height: 39px;
    border-radius: 4px;
    object-fit: contain;
}

.msg_bottom_attached li .chatboxfilepreview .chatbox_remove_file {
    position: absolute;
    top: -6px;
    right: -5px;
    background: #fff;
    border-radius: 50%;
    font-size: 9px;
    padding: 1px;
    cursor: pointer;
    width: 17px;
    height: 17px;
    border: solid 1px #ebebeb;
}

.send-message .form-control {
    color: #000 !important;
}

.u-profile-img .timeline_left_pic {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border-radius: 50%;
    margin: 0px;
}

.top_user .setting path {
    stroke: #1b1b1b;
}

ul.dropdown-menu.top_user svg {
    max-width: 20px;
}

.message_find svg {
    max-width: 146px;
    height: auto;
}

.cancel_request {
    background: #fff;
    border-radius: 70px;
    border: solid 1px #0F67D3;
    color: #0F67D3;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    padding: 8px 11px 8px;
    height: auto;
}

.other_prfile_inner_r .cancel_request:hover {
    border: solid 1px #1a8ecc;
    color: #ffffff;
}

.view_profilecard button {
    min-width: 140px;
}

.notification_icon {
    height: 22px;
    width: auto;
}

.chat-date {
    padding: 10px;
    text-align: center;
    color: #989898;
    position: relative;
}

.chat-date::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #f3f3f3;
    color: #989898;
    top: 17px;
    z-index: 1;
}

.left_userouter p {
    margin-bottom: 2px;
    font-size: 15px;
    color: #161616;
}

.chat-date span {
    background: #fff;
    /* color: #000; */
    position: relative;
    z-index: 2;
    padding: 0px 12px;
}

.msg_right_m {
    margin-top: 90px;
}
.filter-item .custom-options-container {
    left: -11px !important;
}
.header-filter-container .filter-item .dropdown-options {
    left: -11px;
}

.user_left_head .dltbtn {
    bottom: -13px;
    position: absolute;
    right: 34px;
    background: #fff;
    padding: 5px;
    border-radius: 70px;
    width: 31px;
    height: 31px;
    text-align: center;
    border: solid 1px #eeeeee;
    color: #000;
}

.other_profile_outer .user-profile-left {
    margin-left: 0px;
}

.forgot_link {
    font-size: 14px;
}

.form-control:focus {
    color: #000 !important;
}

.popup_redicon svg {
    width: 50px;
    fill: #e35151;
}

.info {
    font-size: 13px;
    padding: 5px 0px;
    display: block;
}

.right_profileform textarea.form-control {
    height: auto !important;
    /* overflow-y: unset; */
}

.form-group label span {
    color: #f00;
}

.textarea {
    border-radius: 10px;
    border: 1px solid #CACFD6;
    background: #FFF;
    min-height: 50px !important;
    padding: 12px 16px;
    color: #000000;
    font-size: 14px;
    font-style: normal;
    width: 100%;
}

.right_pad {
    margin-left: 68px;

}

.back_bt_out {
    padding-bottom: 18px;
}

.pop_uplode_center button {
    font-size: 14px;
}

.back_bt {
    background: #fff;
    display: inline-block;
    padding: 4px 16px;
    border-radius: 109px;
    line-height: 8px;
}

.view_profilecard_outer {
    background: #fff;
    padding: 15px 15px 0px;
    border-radius: 10px;
}

.card_out {
    margin: 1%;
    float: left;
    width: calc(94% / 3);
}

.pad_5 {
    margin-right: -11px;
    margin-left: -11px;
}

.notification_no_data svg {
    max-width: 110px;
}

.notification_no_data svg path {
    fill: rgb(146, 184, 253);
}

.custom-options-container {
    position: relative;
}

.custom-options-container .clear-filter {
    position: absolute;
    right: 14px;
    left: unset;
    width: 19px !important;
    height: 20px;
    top: 22px;
    font-size: 12px !important;
}

.noti_bt_box li {

    margin-top: 10px;
}

.noti_bt_box li {
    display: inline-block;
    justify-content: left;
    margin-right: 10px;
}

.header-row #messageBox {

    font-size: 12px;
    right: initial;
    top: 2px;
    font-size: 12px;
    position: relative;

}

.back_outer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}

.onbrd_back_bt a {
    background: #eef3f9;
    padding: 6px 17px;
    display: inline-block;
    border-radius: 10px;
    /* line-height: 15px; */
    height: 36px;
}

.back_outer a {
    color: #0f67d3;
    font-size: 15px;
    font-weight: 600;
}

.header-filter-container .filter-content .open .dropdown-toggle span {
    color: #0f67d3 !important;
}

.header-filter-container .filter-content .open .dropdown-toggle svg path {
    fill: #0f67d3;
}

.header-filter-container .filter-content .open .dropdown-toggle .dropdown-icon path {
    fill: none;
    stroke: #0f67d3;
}

.head_sign {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: 10px;
}

.head_sign a {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.h_j_c {
    color: #283340;
}

.inner-header .inner-header-grid .inner-header-grid-right .headerdropdown .dropdown-toggle img {
    min-width: 40px;
}

.hd_lbt {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 90px;
    border: 1px solid var(--Primary, #0F67D3);
    background: #FFF;
    padding: 7px 15px;
}

.hd_lbt:hover {
    background: #0090FF;
    border: solid 1px #0090FF;
    color: #fff;
}

.leftbar_count_box .active {
    color: #0056b3;
}

.leftbar_count_box .active svg path {
    fill: #0F67D3;
}

.sweet-alert {
    width: 336px;
    padding: 20px;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 20px;
    background: #FFF;
}

.sweet-alert .sa-button-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.sweet-alert .cancel {
    border-radius: 8px;
    border: 1px solid var(--Dark-text, #283340);
    color: var(--Dark-text, #283340);
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: -webkit-fill-available;
    background-color: transparent !important;
    height: 46px;
    padding: 3px 10px;
    display: inline-block !important;
    min-height: auto;
    margin: 10px 0;
}

.sweet-alert .cancel:hover {
    border: 1px solid var(--Dark-text, #040505);
}

.sweet-alert .confirm {
    border-radius: 8px;
    background: var(--Error, #B50000) !important;
    color: #FFF;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: -webkit-fill-available;
    height: 46px;
    padding: 0px 20px;
    margin: 10px 0;
}

.sweet-alert .confirm:hover {
    background: var(--Error, #810101) !important;
}

.sweet-alert .sa-confirm-button-container {
    width: -webkit-fill-available;
}

.sa-button-container {
    margin-top: 8px;
}

.right_profileform h1 .red {
    color: #f00;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    position: relative;
    top: -6px;
}
.msg_search  .job-search
{
    flex: 1;
}
.msg_search input {
    padding-right: 39px;
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .sticky-top {
        top: 64px !important;
    }
}

@media only screen and (max-width: 991px) {

    .message-box {
        height: 87%;
        bottom: 0;
        max-width: 100%;
        right: 0px !important;
        margin: auto;
        position: fixed;
        width: 95%;
        left: 0;
    }

    .tabhide {
        display: none !important;
    }

    .chat-person-list {
        height: auto;
    }

    .message_find .blue_bt {
        width: 100%;
    }

    .message_chat_outer {
        height: auto;
    }

    .message_chat_outer .tab-content {
        min-height: auto;
    }

    .chat_cnt h4 span {
        font-size: 10px;
    }

    .chat-person-list ul li {
        padding: 10px;
    }

    .right_pad {
        margin-left: 0px;

    }


}

@media (min-width:992px) and (max-width: 1100px) {
    .chat-person-list ul li {
        padding: 13px;
    }

    .chat-person-list ul li a {
        gap: 9px;
    }

    .chat_cnt h4 span {
        font-size: 9px;
    }
}


@media (min-width:320px) and (max-width: 480px) {

    .inner-header .inner-header-grid .inner-header-grid-left .header-form form input {
        max-width: 100% !important;
    }

    .logo svg {
        width: 240px;
    }

    .accepted_tap .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
        font-size: 12px !important;
        padding: 12px 1px;
    }

    .accepted_tap .nav-tabs {

        min-width: 228px;
    }

    .accepted_tap .nav-tabs>li {
        font-size: 12px;
    }

    .accepted_tap .nav>li>a {
        padding: 10px 3px;
    }
}

@media (min-width:320px) and (max-width: 767px) {
    .msg_rt {
        padding: 0px 15px;
    }

    .chat-list-box {
        width: auto;
        margin: 15px;
    }

    .login_left {
        margin-bottom: 20px;
        height: auto;
    }

    .buttons_outer_box {
        display: block;
        gap: 10px;
    }

    .buttons_outer_box button {
        width: 100%;
        margin-bottom: 10px;
    }

    .buttons_outer_box a {
        width: 100%;
        margin-bottom: 10px;
    }

    .buttons_outer_box input {
        width: 100%;
        margin-bottom: 10px;
    }

    .login_btm {
        padding-bottom: 10px;
    }

    .right_profileform {
        max-width: 100%;
    }

    .respmenu {
        display: block !important;
    }

    .webblok {
        display: none !important;
    }

    .notification {
        position: relative;
        width: auto !important;
        right: 45px;
    }

    body .left-section .sidebox {
        display: none !important;
    }

    .userprofile {
        display: flex !important;
        justify-content: flex-start !important;
    }

    .logo img {
        width: 50px;
        object-fit: none;
        background-position: left;
        height: 48px;
        object-position: left;
        min-width: 50px;
    }


    .msg_search {
        float: left;
    }

    .inner-header .inner-header-grid .inner-header-grid-left {
        gap: 15px !important;
    }

    .head_left {
        max-width: max-content;
    }

    .message_chat_outer {
        border-radius: 20px;
        background: #F6F8FB;
        padding: 20px 0px;
    }

    .other_profile_outer .user-profile-left .user-profile-body {
        padding: 20px 0px;
    }

    .blue_b_bt {
        padding: 8.5px 6px 8.5px 6px;
    }

    .mobile-hide {

        display: none;
    }

    .profile_tab {
        margin-bottom: 15px;
    }

    .cancel_request {
        padding: 9px 13px !important;
    }

    .user_right_head {
        float: left;
    }

    .login_left {
        display: none;
    }

    .threebox .profile_choose_box {
        padding: 17px 20px;
    }

    .login_left {

        min-height: 94px;
    }

    .card_out {
        margin: 1%;
        float: left;
        width: calc(98% / 1);
    }

    .head_right .head_sign {
        display: none;
    }

    .respmenu .head_sign {
        gap: 15px;
        margin-right: 0px;
        text-align: center;
    }
}

@media (min-width:320px) and (max-width: 991px) {
    .user-profile-left {
        margin-left: 0px;
    }

    .view_profilecard button {
        min-width: 100%;
    }

}


@media (min-width:768px) and (max-width: 991px) {
    .profilesec_left {
        padding: 4px;
    }

    .profilesec_left li a {
        font-size: 12px;
        padding: 10px 5px;
    }

    .other_prfile_inner_r .ext_profile_info {
        display: grid;
        gap: 10px;
        text-align: left;
    }

    .head_center {
        max-width: 200px;
    }

    .inner-header-grid-right .dropdown {
        position: relative;
        min-width: 61px;
    }

    .head_sign a {
        white-space: nowrap;
    }

    .head_right .flaticon-down-arrow:before {
        display: none;
    }

    .head_right {
        max-width: 41%;
    }
}

@media (min-width:320px) and (max-width: 1024px) {
    .view_profilecard {
        display: grid;
        align-items: center;
        justify-content: space-between
    }

    .right_bt_mob {

        display: block;
    }

    .right_bt_web {
        display: none;
    }

    .other_prfile_inner {
        display: block;
    }

    .other_prfile_inner_r {
        padding: 14px 0px 0px 18px;
    }

    .accepted_tap .nav-tabs {
        margin: 20px 0px 11px;
    }

    .tab_scroll {
        margin-bottom: 10px;
    }
}

@media (min-width:320px) and (max-width: 1200px) {

    .right_bt_mob {

        display: block;
    }

    .right_bt_web {
        display: none;
    }

    .setting_tab {
        display: inline-block;
    }

    .setting_tab .nav-tabs {
        max-width: 100%;
    }

    .viewprofile_btn .msg-unfriend {
        display: grid;
        gap: 10px;
        justify-content: start;
    }

    .setting_tab .tab-content {
        padding: 30px 15px;
    }

    .head_right .flaticon-down-arrow:before {
        display: none;
    }
}

@media (min-width:1400px) and (max-width: 1920px) {
    .message_find {

        padding: 100px 20px;
        min-height: 642px;

    }

}

@media (min-width:320px) and (max-width: 1300px) {
    .accepted_tap .viewprofile_btn {
        min-width: auto;
        /* flex: 1.0; */
    }

    .accepted_tap .view_profilecard .follow_bt {

        min-width: 140px;
    }

    .msg_out_head .right_pad {
        margin-left: 0px;
    }

    .header-row #messageBox {
        position: absolute;
    right: 31px;
    top: 29px;
    font-size: 12px;
    }
}

@media (min-width:1300px) and (max-width: 1450px) {
    /* .people_right_cnt {
        max-width: 78px;
    } */

    /* .new_card {
        padding-left: 10px !important;
        padding-right: 10px !important;
    } */

    .pad_5 {
        padding: 8px;
    }
}

@media (min-width:320px) and (max-width: 1299px) {
    .conect_outer {
        display: grid !important;
    }

    .msg_head {
        font-size: 22px;
        margin-left: 0px;
    }

    .message_chat_outer {
        margin-left: 0px;
    }
}

@media (min-width:1024px) and (max-width: 1199px) {
    span.picpost_left_pic h3 {
        height: 74px;
        width: 74px;
    }

    .profile-image {
        width: 74px;
        height: 74px;
    }

    .profile-card span.picpost_left_pic h3 {
        height: 110px;
        width: 110px;
    }
}

@media (min-width:768px) and (max-width: 1199px) {
    .card_out {
        margin: 1%;
        float: left;
        width: calc(96% / 2);
    }
}