.circular-progress {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: conic-gradient(#624E32 3.6deg, #E8DEC8 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-progress::before {
    content: "";
    position: absolute;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background-color: #FFFBF2;
}

.progress-value {
    position: relative;
    font-size: 40px;
    font-weight: 800;
    color: #624E32;
}

.text {
    font-size: 20px;
    font-weight: 500;
    color: #624E32;
}

.title_table {
    color: #45361F;
}

.title_table {
    position: relative;
}

.title_table::after {
    content: "";
    border: 1px solid #45361F;
    width: 60px;
    position: absolute;
    top: 100%;
    margin-top: 4px;
}

.projectDetails table {
    border: 1px solid #624E32;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    /* table-layout: fixed; */
}

.projectDetails th {
    background-color: #F1EBDE;
    color: #624E32;
    font-weight: 600;
    padding: 10px 20px;
    text-wrap: nowrap;
}

.projectDetails td {
    background-color: #F4F0E7;
    color: #624E32;
    padding: 20px 20px;
    text-wrap: nowrap;
}

.status_pending {
    background-color: #F0DFB3;
    color: #E8BB46;
    font-weight: 600;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status_pending span {
    background-color: #E8BB46;
    border-radius: 50%;
    width: 7px;
    height: 7px;
}

.documents .status_pending span {
    background-color: transparent;
    width: 23px;
    height: 23px;
}

.status_inprogress {
    background-color: #B3DAF0;
    color: #44A8E0;
    font-weight: 600;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status_inprogress span {
    background-color: #44A8E0;
    border-radius: 50%;
    width: 7px;
    height: 7px;
}

.status_complete {
    background-color: #D9F0B3;
    color: #94D94E;
    font-weight: 600;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status_complete span {
    background-color: #94D94E;
    border-radius: 50%;
    width: 7px;
    height: 7px;
}

.documents .status_complete span {
    background-color: transparent;
    width: 23px;
    height: 23px;
}

.status_past {
    background-color: #F0B3B3;
    color: #E04444;
    font-weight: 600;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status_past span {
    background-color: #E04444;
    border-radius: 50%;
    width: 7px;
    height: 7px;
}

.documents .status_past span {
    background-color: transparent;
    width: 23px;
    height: 23px;
}

.status_normal {
    background-color: #CCCCCC;
    color: #524C4C;
    font-weight: 600;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status_normal span {
    background-color: #524C4C;
    border-radius: 50%;
    width: 7px;
    height: 7px;
}

.bills_table {
    table-layout: fixed;
}

.bills_table th {
    width: 182px;
}

.talktous_table {
    table-layout: fixed;
}

.talktous_table th {
    width: 202px;
}


.send_reply .user-box {
    position: relative;
    margin-bottom: 10px;
}

.send_reply .user-box input {
    width: 100%;
    padding: 3px 30px;
    padding-top: 20px;
    font-size: 16px;
    color: #775536;
    margin-bottom: 5px;
    border: 0px;
    outline: none;
    background: #F4F0E7;
    border-radius: 15px;
}

.send_reply .user-box label {
    position: absolute;
    top: 0;
    left: 30px;
    padding: 14px 0;
    font-size: 16px;
    color: #A18061;
    pointer-events: none;
    transition: .5s;
}

.send_reply .user-box input:focus~label,
.send_reply .user-box input:valid~label {
    top: -10px;
    left: 30px;
    color: #A18061;
    font-size: 12px;
}

.send_reply .user-box select {
    width: 100%;
    padding: 3px 30px;
    padding-top: 20px;
    font-size: 16px;
    color: #775536;
    margin-bottom: 5px;
    border: 0;
    outline: none;
    background: #F4F0E7;
    border-radius: 15px;
}

.send_reply .user-box label {
    position: absolute;
    top: 0;
    left: 30px;
    padding: 14px 0;
    font-size: 16px;
    color: #A18061;
    pointer-events: none;
    transition: .5s;
}

.send_reply .user-box select option:first-child {
    display: none;
}

.send_reply .user-box select:focus+label,
.send_reply .user-box select:valid+label {
    top: -10px;
    left: 30px;
    color: #A18061;
    font-size: 12px;
}

.send_reply .user-box textarea {
    width: 100%;
    padding: 3px 27px;
    padding-top: 20px;
    font-size: 16px;
    color: #775536;
    margin-bottom: 5px;
    border: 0px;
    outline: none;
    background: #F4F0E7;
    border-radius: 15px;
}

.send_reply .user-box textarea+label {
    position: absolute;
    top: 10px;
    left: 30px;
    padding: 0px 0;
    font-size: 16px;
    color: #A18061;
    pointer-events: none;
    transition: .5s;
    background-color: #f4f0e7;
    width: 90%;
}

.send_reply .user-box textarea:focus+label,
.send_reply .user-box textarea:valid+label {
    top: 5px;
    left: 30px;
    color: #A18061;
    font-size: 12px;
}

/* .projectDetails input,
.projectDetails select,
.projectDetails textarea {
    background-color: #F4F0E7 !important;
    color: #A18061 !important;
    border: none !important;
    margin-top: 20px;
    font-weight: 600;
    padding-left: 28px;
    box-shadow: none !important;
}

.projectDetails input,
.projectDetails select {
    height: 50px !important;
}

.projectDetails input::placeholder,
.projectDetails select::placeholder,
.projectDetails textarea::placeholder {
    color: #A18061;
    font-weight: 600;
}

.projectDetails input::-ms-input-placeholder,
.projectDetails select::-ms-input-placeholder,
.projectDetails textarea::-ms-input-placeholder {
    color: #A18061;
    font-weight: 600;
}

.projectDetails .custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    background-image: url("../images/workWithAlmadanyForm/arrow.png");
    background-size: 23px 12px;
    background-position: right 32px center;
}

.projectDetails .custom-select::-ms-expand {
    display: none;
}


.user-box select,
.user-box textarea {
    width: 100%;
    padding: 3px 30px;
    padding-top: 20px;
    font-size: 16px;
    color: #775536;
    margin-bottom: 5px;
    border: 0px;
    outline: none;
    background: #F4F0E7;
    border-radius: 15px;
}

.projectDetails .user-box select + label,
.projectDetails .user-box textarea + label {
    position: absolute;
    top: 0;
    left: 30px;
    padding: 14px 0;
    font-size: 16px;
    color: #A18061;
    pointer-events: none;
    transition: .5s;
}

.projectDetails .user-box select:focus + label,
.projectDetails .user-box textarea:focus + label,
.projectDetails .user-box select:valid + label,
.projectDetails .user-box textarea:valid + label {
    top: 10px;
    left: 30px;
    color: #A18061;
    font-size: 12px !important;
}

.user-box label {
    left: 30px;
} */

.billsInvoiceView td {
    color: #A18061;
}

.d_none_menu {
    display: inline;
}

.project_details_main {
    padding: 5px 85px;
}

.info_note {
    width: 75%;
}

.project_billsInvoice_main {
    padding: 5px 85px;
}

.project_manager {
    width: 35%;
}

.table-responsive::-webkit-scrollbar {
    width: 3px;
    height: 13px;
}

.table-responsive::-webkit-scrollbar-track {
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #715A40;
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #645039;
}



textarea::-webkit-scrollbar {
    width: 5px;
    margin-right: 10px;
}

textarea::-webkit-scrollbar-track {
    border-radius: 10px;
}

textarea::-webkit-scrollbar-thumb {
    background: #D8BB7E;
    border-radius: 10px;
}

textarea::-webkit-scrollbar-thumb:hover {
    background: #c4aa72;
}

.talktous_table {
    margin-bottom: 5px;
}

.notification {
    background: #fffbf2;
    width: 500px;
    max-height: 500px;
    overflow-y: scroll;
}

.notification h6 , .notification h5, .notification span{
    color: #45361F;
}

.notification .paid{
    color: #94D94E;
}

.notification .unpaid{
    color: #E04444;
}

.notification .Payment{
    color: #44A8E0;
}
.notification p{
    color: #978466;
}

@media (max-width: 768px) {
    .title_project_details {
        margin-top: 10px;
    }

    .project_details_main {
        padding: 5px 50px;
    }

    .m_b_small {
        margin-bottom: 20px;
    }

    .info_note {
        width: 50%;
    }

    .project_billsInvoice_main {
        padding: 5px 50px;
    }

    .project_manager {
        width: 100%;
        margin-top: 20px;
    }
    .notification {
        width: 300px;
        max-height: 300px;
    }
}