@font-face {
    font-family: "Somar";
    src: url("../assets/fonst/alfont_com_SomarGX.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Somar", sans-serif;
}


:root {
    --nav-width: 68px;
    --z-fixed: 100;
    --main-color: #002F2D;
    --red-color: #be0000;
    --second-color: #303030;
    --third-color: #CCA063;
    --bgcolor: #fff;
}

a {
    text-decoration: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


.body-con {
    position: relative;
    margin: 66px 0 0 0;
    padding: 1rem;
    transition: .5s
}

a {
    text-decoration: none
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--bgcolor);
    z-index: var(--z-fixed);
    transition: .5s;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    height: calc(50px + 1rem);


}

.header_toggle {
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

.header_img img {
    width: 40px
}

.l-navbar {
    position: fixed;
    top: 0;
    right: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--bgcolor);
    padding: 16px 14px;
    transition: .5s;
    z-index: var(--z-fixed);
    border-left: 1px solid rgba(224, 224, 224, 1);
}

.l-navbar .nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
}
@media (max-height:720px){
    .nav_link{
        margin-bottom: 0 !important;
  }
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo img {
    width: 200px;
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--bgcolor)
}

.nav_logo-name {
    font-weight: 700
}

.nav_link {
    transition: .3s;
    padding: 10px 0;
    border-radius: 5px;
    margin-bottom: 16px;
    font-weight: bold;
    color: rgba(118, 118, 118, 1);
}

.nav_link:hover,
.nav_link.active,
.nav_link:active {
    background-color: var(--main-color);
    color: var(--bgcolor);
}

.l-navbar.show {
    right: 0
}

.body-pd {
    padding-right: calc(var(--nav-width) + 1rem)
}

.samlllogo {
    width: 40px !important;
}

.l-navbar.show .mainlogo {
    display: none !important;
}

.header-left .dropdown>button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
}

.header-left .dropdown>button span {
    top: 4px;
    right: 5px;
    padding: 6px;

}

.header-left .notif-menu {
    width: 250px;
    transform: translate(0px, 42px) !important;
}

.header-left .notif-menu li {
    border-bottom: 1px solid #ccc;
}

.header-left .notif-menu li a {
    font-size: 14px;
}

.header-left .notif-menu li a p {
    color: var(--main-color);
    font-size: 12px;
}

.header-left .notif-menu .notfim-bottom a {
    color: var(--main-color);

}

.header-left .user-data img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: 10px;
}

.header-left .a-lang {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
    margin-right: 16px;
}


@media screen and (min-width: 768px) {
    .body-con {
        margin: calc(50px + 1rem) 0 0 0;
        padding-right: calc(var(--nav-width) + 1rem);
    }

    .header {
        padding: 0 calc(var(--nav-width) + 2rem) 0 2rem;
    }

    .header_img {
        width: 40px;
        height: 40px
    }

    .header_img img {
        width: 45px
    }

    .l-navbar {
        right: 0;
    }

    .l-navbar.show {
        width: calc(var(--nav-width) + 180px)
    }

    .l-navbar.show .samlllogo {
        display: none !important;
    }

    .l-navbar.show .mainlogo {
        display: block !important;
    }

    .body-pd {
        padding-right: calc(var(--nav-width) + 188px)
    }
}

/* ------------------- */
/* index page  */
.search-form {
    height: 45px;
    border-radius: 7px;
    border: 1px solid var(--grey, #D9D9D9);

}

.search-form button {
    background-color: transparent;
    border: none;
    color: var(--second-color);
    width: 40px;
    outline: none;
    box-shadow: none;
}

.search-form input {
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 0;
    background-color: transparent;
    border-radius: 7px;
}

.date-select:focus,
.search-form input:focus {
    outline: none;
    box-shadow: none;
}

.date-select {
    height: 45px;
    border-radius: 7px;
    border: 1px solid var(--grey, #D9D9D9);
    width: 150px;
    padding: 3px;

}

.projects-data .project-data {
    border-radius: 24px;
    border: 1px solid #E0E0E0;
    background: var(--third-color);
    padding: 20px;
    color: var(--bgcolor);
}

.projects-data .project-data .pr-img-con {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 16px auto;
    background: var(--bgcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--third-color);
}

.projects-data .project-data .pr-bottom .p-percent {
    border-radius: 30px;
    background: var(--white, #FFF);
    width: 60px;
    height: 30px;
    flex-shrink: 0;
    color: var(--third-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.projects-data .project-data.main-bg {
    background-color: var(--main-color);
}

.projects-data .project-data.main-bg .pr-img-con {
    color: var(--main-color);
}

.projects-data .project-data.main-bg .pr-bottom .p-percent {
    color: var(--main-color);
}

.box-con {
    border-radius: 24px;
    border: 1px solid #E0E0E0;
    background: var(--white, #FFF);
    margin-top: 16px;
    margin-bottom: 16px;
}

.all-link {
    color: #777;
}

.all-link:hover {
    color: var(--main-color);
}

.current-orders table thead th {
    border: none;
    color: rgba(130, 130, 130, 1);
    font-weight: 400;
    font-size: 16px;

}

.current-orders table tr td {
    vertical-align: middle;
}

.current-orders table tr td img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 auto;
}

.current-orders table tr td a {
    color: var(--main-color);
}

.current-orders table tr .str {
    color: rgba(130, 130, 130, 1);
}

.current-orders table tr .str.str-fill {
    color: var(--third-color);
}

.in-message {
    border-top: 1px solid #E0E0E0;
}

.in-message .in-m-con {
    position: relative;
    margin-left: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.in-message .in-m-con img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.in-message .in-m-con::after {
    width: 10px;
    display: block;
    content: "";
    position: absolute;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    bottom: 8px;
    right: -3px;
    border: 1px solid #fff;
}

.in-message .in-m-con.on-line::after {
    background-color: #00de94;
}

.formInput {
    height: 50px;
    width: 100%;
    padding: 16px;
    outline: none;
    box-shadow: none;
    border: 1px solid #D9D9D9;
    border-radius: 7px;
    color: #767676;
}

.formInput::placeholder {
    color: #D9D9D9;
}

.formInput:focus,
.formInput:hover {
    outline: none;
    box-shadow: none;
}

textarea.formInput {
    height: 200px;
    resize: none;
}

/* ------------------------- */

/* ------------------------- */
/* nontifications page  */

.notification {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.50);
    margin: 30px 0;
    padding: 16px;
    display: flex;
    align-items: center;
}

.notification>img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-left: 16px;
}

.notification span,
.notification b {
    color: var(--main-color);
}

.notification span {
    font-size: 14px;
}

/* -------------------------- */

/* ---------------------------------------- */
/* projectsearch page  */
.projectsearch-page .search-con {
    border: 1px solid #767676;
    border-radius: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projectsearch-page .search-con button {
    border: none;
    background-color: transparent;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #767676;
    border-radius: 5px;
}

.projectsearch-page .search-con input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 10px;
    border-radius: 5px;
}


.projectsearch-page .filter-group {
    max-height: 300px;
    overflow: auto;
}

.projectsearch-page .clear-all {
    text-decoration: underline;
    border: none;
    background-color: transparent;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.offer-con,
.project-con {
    border-radius: 4px;
    border: 1.063px solid var(--grey, #D9D9D9);
}

.advisor-data img,
.project-con img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 16px;
}

.project-con>div {
    width: 100%;
}

.left-select>a,
.left-select .dropdown-toggle {
    background-color: var(--main-color);
    color: var(--bgcolor);
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
}

.left-select>a {
    padding: 20px;
    border-left: 1px solid var(--bgcolor);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.left-select .dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 10px;
    border: none;
}

.left-select .dropdown-toggle::after {
    margin: 0;
}

.left-select .dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #767676;
    padding: 10px;
    background-color: transparent;
}

.P-rate span {
    margin-left: 5px;
}


.P-rate span.str-fill {
    color: #F59E0B;
}

.P-rate span.str-emp {
    color: #D8D8D8;
}

/* ------------------------------------------ */
/* project-details page  */
.project-accepted .box-con,
.project-details .box-con,
.advisor-profile .box-con {
    border-radius: 0;
}

.p-main-img {
    height: 300px;
    width: 100%;
}

.box-con .box-title {
    border-bottom: 1px solid #D9D9D9;
    padding: 12px;
}

.box-con .box-title a,
.box-con .box-title button {
    width: 120px;
    height: 40px;
    border-radius: 5px;
}

.skill {
    background-color: var(--main-color);
    color: var(--bgcolor);
    padding: 10px 16px;
    border-radius: 7px;
    margin: 10px;
}

.pro-status {
    width: 137px;
    height: 43px;
    border-radius: 5px;
    background: var(--main-color);
    margin-left: 10px;
    color: var(--bgcolor);
    display: flex;
    align-items: center;
    justify-content: center;


}

.pro-status.refuse {
    background-color: red;
}

/* ------------------------- */
/* projects page  */

.advisor-select {
    margin: 10px;
}

.advisor-select .soption {
    padding: 8px 20px;
    border: 1px solid #F1F1F1;
    border-radius: 7px;
    cursor: pointer;
    border: 1px solid #D9D9D9;
    color: #767676;
}

.advisor-select>input {
    width: 0;
    height: 0;
    position: absolute;
}

.advisor-select>input:checked~.soption,
.soption:hover {
    color: var(--main-color);
    border-color: var(--main-color)
}

.project-Info {
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 4px;
    border: 1.063px solid var(--grey, #D9D9D9);
}

.problem {
    color: #767676;
    border: 1px solid rgba(118, 118, 118, 0.65);
    padding: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.problem:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}

.project-card p {
    font-size: 18px;
    color: var(--second-color);
}

.project-card img {
    width: 100%;
    height: 200px;
}

.project-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--second-color);
}

.project-card:hover {
    box-shadow: 0px 0px 5px -1px rgb(0 0 0 / 35%);
}

.review {
    border-bottom: 1px solid #D9D9D9;
}

.review .user-Info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 16px;

}

/* =============================== */
/* create project page  */

.cvupload {
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    font-size: 18px;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #D9D9D9;
    padding: 20px;
    width: 100%;
    position: relative;
}

.cvupload span {
    position: absolute;
    left: 20px;
    color: var(--second-color);
    flex-direction: row;
}


.fileupload input,
.cvupload input {
    width: 0;
    height: 0;
    opacity: 0
}

.fileupload.dropimg {
    width: 100%;
    height: 100px;
    border: none;
    flex-direction: row;
    justify-content: flex-start;
}

.fileupload.dropimg p {
    background-color: #ECECEC;
    height: 80px;
    width: 150px;
    margin-left: 20px;
    color: #999;
}

/* ------------------------------- */
/* signup page  */

.signup-page .signup-logo {
    width: 150px;

}

.signup-page .form-container {
    border: 1px solid #D9D9D9;
    border-radius: 20px;
}

.signup-page .inputform {
    border: 1px solid #989898;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    outline: none;
    box-shadow: none;
    padding: 16px;
    font-size: 18px;

}

.signup-page .inputform:focus {
    outline: none;
    box-shadow: none;
}

.signup-page .input-group.inputform {
    padding: 0;
}

.signup-page .input-group.inputform input,
.signup-page .input-group.inputform select {
    border-radius: 10px;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 18px;
    padding-right: 0;

}

.signup-page textarea.inputform {
    border: 1px solid #989898;
    border-radius: 10px;
    height: 200px;
    width: 100%;
    outline: none;
    box-shadow: none;
    padding: 16px;
    font-size: 18px;
    resize: none;
}

.signup-page .input-group.inputform span {
    padding: 16px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border: none;
    background-color: transparent;
    color: #767676;
}

.signup-page .form-label {
    font-weight: bold;
    width: 100%;
    text-align: start;
    font-size: 20px;
    margin-bottom: 10px;
}

.signup-page form .forget {
    color: var(--third-color);
    text-decoration: underline;
}

.signup-page form .form-submit {
    width: 250px;
    height: 50px;
    background: var(--third-color);
    border-radius: 8px;
    color: var(--bgcolor);
    border: 1px solid var(--third-color);
    font-size: 18px;
}

.signup-page .tab-content .next-tab {
    width: 150px;
    height: 50px;
    background: var(--third-color);
    border-radius: 8px;
    color: var(--bgcolor);
    border: 1px solid var(--third-color);
    font-size: 18px;
}

.signup-page .tab-content .pre-btn {
    width: 150px;
    height: 50px;
    background: #ccc;
    border-radius: 8px;
    color: var(--bgcolor);
    border: 1px solid #ccc;
    font-size: 18px;
}

.signup-page .lines {
    position: relative;
}

.signup-page .lines .abs-line,
.signup-page .lines .abs-line2 {
    position: absolute;
    background: linear-gradient(270.02deg, #000000 0.07%, rgba(0, 0, 0, 0) 100.02%);
    height: 2px;
    width: 50%;
    left: 0;
    top: 50%;
    z-index: -1;
}

.signup-page .lines .abs-line2 {
    transform: rotate(180deg);
    right: 0;
}

.signup-page .lines p {
    font-size: 20px;
    background-color: var(--bgcolor) !important;
    display: inline-block;
    margin: 0;
    padding: 10px 20px;
    z-index: 2;
}

.signup-page .trans-link {
    width: 250px;
    height: 50px;
    background: var(--bgcolor);
    border-radius: 8px;
    color: var(--third-color);
    border: 1px solid var(--third-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-page .sing-soical a {
    width: 55px;
    height: 55px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-check {
    margin-left: 16px;
}

.form-check-label {
    cursor: pointer;
}

.form-check-input {
    cursor: pointer;
    outline: none;
    border-color: #ccc;
}

.form-check-input:focus {
    box-shadow: none;
    outline: none;
}

.form-check-input[type=checkbox],
.form-check-input[type=radio] {
    outline: none;
}

.form-check-input[type=checkbox]:checked,
.form-check-input[type=radio]:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);

}

.fileupload {
    border: 2px dashed #ddd;
    border-radius: 15px;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 20px;
    cursor: pointer;
    color: #ddd;
}

.multiselect-container>li {
    padding: 0;
    font-size: 14px;
    margin: 12px;
}

.multiselect-container>li.multiselect-group label {
    margin: 0;
    padding: 3px 20px 3px 20px;
    height: 100%;
    font-weight: 700;
}

.multiselect-container>li.multiselect-group-clickable label {
    cursor: pointer;
}

.multiselect-container>li>a {
    padding: 5px 0;
    color: #000;
    display: block;
}

.multiselect-container>li>a>label {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.multiselect-container>li>a>label:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 20px;
    width: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: transparent;
    margin-right: 15px;
    vertical-align: middle;
}

.multiselect-container>li.active>a>label:before {
    font-family: 'fontAwesome';
    content: "✓";
    color: #fff;
    background-color: #52de97;
    border: 0;
    display: inline-block;
    text-align: center;
    padding: 0;
    line-height: 1.2;
    padding-left: 2px;
}

.multiselect-container>li>a>label.radio,
.multiselect-container>li>a>label.checkbox {
    margin: 0;
}

.multiselect-container>li>a>label>input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


.form-inline .multiselect-container label.checkbox,
.form-inline .multiselect-container label.radio {
    padding: 3px 20px 3px 40px;
}

.form-inline .multiselect-container li a label.checkbox input[type=checkbox],
.form-inline .multiselect-container li a label.radio input[type=radio] {
    margin-left: -20px;
    margin-right: 0;
}

.signup-page .btn-group {
    width: 100% !important;
}

.signup-page .multiSelect .btn-group-vertical>.btn,
.btn-group>.btn {
    background-color: green;
    width: 100% !important;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signup-page .multiSelect .btn-group-vertical>.btn::after,
.signup-page .multiSelect .btn-group>.btn::after {
    left: 20px;
    top: 20px;
    position: absolute;
}

.signup-page .multiSelect .dropdown-menu {
    width: 100%;
}

.otpmodal .modal-content {
    border-radius: 10px;
}

.signup-page .otpmodal button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 50px;
    background: #CCA063;
    border-radius: 8px;
    color: var(--bgcolor);
    border: none;
}



.paymodal .modal-content {
    border-radius: 10px;

}


.mainbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgcolor);
    border-radius: 7px;
    height: 50px;
    padding: 0 30px;
    background-color: var(--main-color);
    border: none;
}

.mainbtn3 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgcolor) !important;
    border-radius: 7px;
    height: 50px;
    padding: 0 30px;
    background-color: var(--main-color) ;
    border: none;
}

.mainbtn3:hover {
    color: var(--bgcolor);
}

.mainbtn:hover {
    color: var(--bgcolor);
}
.mainbtn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgcolor) !important;
    border-radius: 7px;
    height: 50px;
    padding: 0 30px;
    background-color: var(--main-color);
    border: none;
    width: auto !important;
}

.mainbtn1:hover {
    color: var(--bgcolor);
}

.mainbtn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgcolor);
    border-radius: 7px;
    height: 50px;
    padding: 2px 30px;
    background-color: var(--main-color);
    border: none;
    width: auto !important;
}
.mainbtn2 a {
    color: var(--bgcolor) !important;
}
.mainbtn2:hover {
    color: var(--bgcolor);
}

/* ---------------------------- */


.project-finished .dropdown-toggle {
    background-color: var(--main-color);
    color: var(--bgcolor);
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
}

.project-finished .end-project .dropdown-toggle {
    padding: 20px;
    border-left: 1px solid var(--bgcolor);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.project-finished .end-project .dropdown-toggle::after {
    display: none;
}

.project-finished .problemdrop .dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 10px;
    border: none;
}


.project-finished .end-project .dropdown-menu {
    border-radius: 0px 4px 4px 4px;
    width: 400px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.50);
    padding: 20px 10px;

}

.project-finished .end-project .dropdown-menu button {
    height: 45px;
}

.project-finished .end-project .dropdown-menu .cancel {
    width: 90px;
    border-radius: 4px 4px 4px 5px;
    background: #767676;
    color: var(--bgcolor);
    border: none;
}

.project-finished .problemdrop .dropdown-toggle::after {
    margin: 0;
}

.project-finished .problemdrop a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #767676;
    padding: 10px;
    background-color: transparent;
}

@media (max-width:500px) {

    .project-finished .end-project .dropdown-menu {
        width: 320px;
    }

}


/* ------------------ */
/* chat page  */
.chat-list .in-chat {
    border-radius: 10px;
    border: 1px solid var(--grey, #D9D9D9);
    box-shadow: 0px 0px 8px rgba(4, 45, 44, 0.50);
    margin: 16px 0;
}

.chat-list .in-chat .in-chat-con {
    position: relative;
    margin-left: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.chat-list .in-chat .in-chat-con img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.chat-list .in-chat .in-chat-con::after {
    width: 10px;
    display: block;
    content: "";
    position: absolute;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    bottom: 8px;
    right: -3px;
    border: 1px solid #fff;
}

.chat-list .in-chat .in-chat-con.on-line::after {
    background-color: #00de94;
}

.chat-list .in-chat .message-coun {
    border-radius: 50%;
    background-color: #ccc;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-conv .chat-message {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.chat-conv .chat-message.inbox-mes {
    justify-content: flex-end;
}

.chat-conv .chat-message img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.chat-conv .chat-message .message-content {
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background-color: var(--main-color);
    color: var(--bgcolor);
}

.chat-conv .chat-message.inbox-mes .message-content {
    color: var(--main-color);
    background-color: transparent;
}

.message-content.file-mess {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-content.file-mess .download {
    color: var(--main-color);
    background-color: transparent;
    border: none;
}

.chat-conv .chat-messages {
    height: calc(100vh - 200px);
    overflow-y: auto;
}

.chat-conv .send-message {
    width: 100%;
    height: 50px;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 47, 45, 0.10);
    display: flex;
    align-items: center;

}

.chat-conv .send-message input {
    height: 100%;
    border: none;
    width: 100%;
    outline: none;
    box-shadow: none;
}

.chat-conv .send-message .file-upload {
    background-color: transparent;
    border: none;
    margin: 0 16px;
    color: var(--main-color);
    width: 45px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-conv .send-message .sub-message {
    background-color: var(--main-color);
    border: none;
    color: var(--bgcolor);
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;

}

/* -------------------------- */
/* setting page  */

/* -------------------------- */
.setting-page .nav-pills {
    margin: 16px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #D9D9D9;
}

.setting-page .nav-pills .nav-item {
    width: 50%;

}

.setting-page .nav-pills .nav-item .nav-link {
    font-size: 18px;
    color: #767676;
    border-radius: 0;
}

.setting-page .nav-pills .nav-item .nav-link.active {
    background-color: transparent;
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);

}

.fileupload {
    border: 2px dashed #ddd;
    border-radius: 15px;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 20px;
    cursor: pointer;
    color: #ddd;
}

.form-label {
    font-weight: bold;
    width: 100%;
    text-align: start;
    font-size: 16px;
    margin-bottom: 6px;
}

.form-submit {
    width: 250px;
    height: 50px;
    background: var(--main-color);
    border-radius: 8px;
    color: var(--bgcolor);
    border: 1px solid var(--main-color);
    font-size: 18px;
}


.passwordgroup {
    display: flex;
}

.passwordgroup input {
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
    outline: none;
}

.passwordgroup input::placeholder {
    color: #D9D9D9;
}

.passwordspan {
    color: #aaa;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.forge-pass {
    color: var(--third-color);
    background-color: transparent;
    border: none;
}

.otpmodal input {
    border: none;
    outline: none;
    box-shadow: none;
    width: 65px;
    height: 67px;
    background: #D9D9D9;
    border-radius: 10px;
    padding: 10px;
    font-size: 30px;
    text-align: center;

}

.pay-det-head {
    position: relative;

}

.pay-det-head button {
    position: absolute;
    padding: 8px;
    right: 0;
    border: none;
    background-color: transparent;
}

/* ---------------------- */

/* ---------------------- */
/* support page  */
.contact-link {
    display: block;
    margin: 10px 0;
    color: #767676
}

.contact-link:hover {
    color: var(--third-color);
}

/* ------------------------------- */
.mes-details-link,
.mes-details-link:hover {
    color: var(--main-color);
}


.Agree-refuse button {
    width: 130px;
    padding: 10px;
    color: var(--bgcolor);
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    border-radius: 5px;
}

.Agree-refuse a {
    width: 130px;
    padding: 10px;
    color: var(--bgcolor);
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    border-radius: 5px;
}

.Agree-refuse button.ref {
    background-color: transparent;
    color: var(--main-color);
}

.Agree-refuse a.ref {
    background-color: transparent;
    color: var(--main-color);
}

.basic_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 6px 16px;
    background-color: transparent;
    border-radius: 5px;
    margin: 2px;
}

.red_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-color);
    border: 1px solid var(--red-color);
    padding: 6px 16px;
    background-color: transparent;
    border-radius: 5px;
    margin: 2px;
}
.main_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgcolor) ;
    border: 1px solid var(--main-color);
    padding: 6px 16px;
    background-color: var(--main-color);
    border-radius: 5px;
    margin: 2px;

}
.rating-page form textarea {
    outline: none;
    box-shadow: none;
    height: 130px;
    width: 100%;
    resize: none;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #EFF0F6;

}

.rating-page form textarea::placeholder {
    color: #D9D9D9;
}
a {
    color: #000000;
    cursor: pointer;
}
a:hover {
    color: #cca063;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){
    width:  calc(100% - 50px) !important;


}
.multiselect-container{
    width: 100% !important;
    overflow: hidden;
}
.multiselect-selected-text{
    width: 100%;
    overflow: hidden;
    display: inline-block;
}

.mainbtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgcolor);
    border-radius: 10px;
    height: 50px;
    background-color: var(--main-color);
    border: none;
}

.redbtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgcolor);
    border-radius: 10px;
    height: 50px;
    background-color: var(--red-color);
    border: none;
}

.mainbtn:hover {
    color: var(--bgcolor);
}

.scond-btn {
    background-color: var(--bgcolor);
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.scond-btn:hover {
    color: var(--main-color);

}
.main-btn {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--bgcolor);
}

.main-btn:hover {
    color: var(--main-color);

}
.color-white{
    color: var(--bgcolor) !important;
}
.mainbtn.pro-finsh {
    width: 250px;
    height: 45px;
    border-radius: 5px;
}
