:root {
    --offwhite: #f9f9f9;
    --bordercolor: #e9ebf0;
    --black: #333333;
    --offwhite1: #f2f2f2;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
}

.logo-box {
    display: flex;
}

body {
    overflow-x: hidden;
    font-family: "Open Sans", serif;
    font-weight: 400;
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", serif;
}

.complete {
    background-color: #299764 !important;
    color: #FFF;
}

.done {
    background-color: #3cd382 !important;
    color: #FFF;
}

.open {
    background-color: #e4e4e4 !important;
    color: var(--textcolor);
}

.inprogress {
    background-color: #8b13b7 !important;
    color: #FFF;
}

.input {
    background-color: #2493dc !important;
    color: #FFF;
}

.explanation {
    background-color: #cb1d63 !important;
    color: #FFF;
}

.qa {
    background-color: #fcc624 !important;
    color: #FFF;
}

.qaissue,
.highpriority {
    background-color: #f44336 !important;
    color: #FFF;
}

.sharewithclient {
    background-color: #7c4dff !important;
    color: #FFF;
}

.onhold {
    background-color: #646464 !important;
    color: #FFF;
}

.opinion {
    background-color: #a18072 !important;
    color: #FFF;
}

.hidden {
    display: none;
}

.tiitle-h3 {
    font-size: 18px;
    font-family: 'Poppins';
    color: var(--black);
}

.btn {
    border: #CCC 1px solid;
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: var(--black);
}

.btn-small {
    border: #CCC 1px solid;
    padding: 2px 10px;
    font-size: 12px;
    font-family: 'Poppins';
    border-radius: 100px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: var(--black);
}

.btn-small:hover {
    background-color: var(--offwhite1);
}

/*--header-sec--*/
.header-sec {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    /* background-color: #00a5b4; */
    background-color: #000000;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.header-sec .logo-box img {
    filter: brightness(0) invert(1);
    width: auto;
    height: 20px;
}

.search-box-in-d {
    position: relative;
    width: 100%;
    min-width: 600px;
}

.search-box-in-d input {
    width: 100%;
    padding: 8px 8px 8px 32px;
    border-radius: 5px;
    border: none;
}

.search-box-in-d span.search-icon {
    position: absolute;
    height: 31.5px;
    top: 0;
    left: 0;
    width: 31.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box-in-d span.search-icon svg {
    width: 20px;
    height: 20px;
}

.header-sec .user-box-btn {
    background-color: #232721;
    border-radius: 5px;
    overflow: hidden;
    padding: 5px 15px 5px 5px;
    position: relative;
    cursor: pointer;
}

.header-sec .user-box-btn span {
    width: 22px;
    height: 22px;
    display: block;
    border-radius: 100px;
    overflow: hidden;
}

.header-sec .user-box-btn span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-sec .user-box-btn svg {
    position: absolute;
    right: 5px;
    top: 12px;
    width: 7px;
    height: 7px;
    fill: #FFF;
}

.user-box-dropcontent {
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .25);
    background-color: #FFF;
    border-radius: 6px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 9;
    min-width: 200px;
}

.user-box-in {
    position: relative;
}

.user-box-dropcontent .user-box-dropcontent-name {
    padding: 10px;
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 7px;
}

.user-box-dropcontent .user-box-dropcontent-name .user-icon {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    overflow: hidden;
    background-color: #FFF;
}

.user-box-dropcontent .user-box-dropcontent-name .user-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-box-dropcontent-item-list {
    padding: 10px;
    border-top: var(--bordercolor) 1px solid;
    display: flex;
    flex-flow: column;
}

.user-box-dropcontent-item-list a {
    display: block;
    font-size: 14px;
    padding: 5px 5px 5px 30px;
    text-decoration: none;
    color: #333333;
    position: relative;
    margin: 2px 0;
    border-radius: 4px;
}

.user-box-dropcontent-item-list a:hover {
    background-color: var(--offwhite1);
}

.user-box-dropcontent-item-list a span {
    position: absolute;
    left: 5px;
    top: 5px;
    line-height: 1;
    width: 18px;
}

.user-box-dropcontent-item-list a svg {
    height: auto;
    width: 18px;
    opacity: 0.6;
}

/*--header-sec-end--*/


.main-content-sec-in {
    display: flex;
    height: 100%;
}

.main-content-sec {
    height: calc(100vh - 42px);
    margin-top: 42px;
}

/*--for user permission ui ---*/

/* Card Styling */
.role-card,
.parent-card,
.child-card {
    cursor: pointer;
    transition: 0.1s ease-in-out;
    background-color: #d5dadc;
    padding: 5px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.role-card:hover,
.parent-card:hover,
.child-card:hover {
    background-color: #c2ddf9;
}

.role-card .card-body,
.parent-card .card-body,
.child-card .card-body {
    font-size: 1.1rem;
}

.role-card .role-arrow,
.parent-card .role-arrow {
    font-size: 1.2rem;
    margin-left: 10px;
}

.parent-card label,
.child-card label {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* NEW FLEX LAYOUT FOR TWO COLUMNS */
.row.g-4.mb-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Each Role Card */
.roleCard {
    flex: 1 1 calc(50% - 10px);
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Child/Parent Cards */
.parent-card,
.child-card {
    width: 90%;
    margin-left: 20px;
    margin-top: 10px;
}

.parent-card+.child-card {
    margin-top: 8px;
}

.ms-4 {
    margin-left: 30px;
}

/* Submit Button Styling */
.submitrolebtn {
    background: linear-gradient(135deg, #00a5b4, #00d2df);
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 165, 180, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submitrolebtn:hover {
    background: linear-gradient(135deg, #008d9b, #00c1cc);
    box-shadow: 0 6px 16px rgba(0, 165, 180, 0.5);
}

.submit-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/*--for user permission ui end---*/

/*--navigation-box---*/
.navigation-box {
    background-color: var(--offwhite);
    width: 260px;
    border-right: var(--bordercolor) 1px solid;
    position: relative;
    padding: 118px 0 0;
}

.navigation-box-in {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 10px;
}

.navigation-box .project-create-btn-box {
    padding: 10px;
    background-color: #FFF;
    border-bottom: var(--bordercolor) 1px solid;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.navigation-box .project-search {
    position: relative;
    padding: 10px;
    border-bottom: var(--bordercolor) 1px solid;
    background-color: var(--bordercolor);
    position: absolute;
    top: 59px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.navigation-box .project-search input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: var(--offwhite1) 1px solid;
    border-radius: 6px;
    position: relative;
}

.navigation-box .project-search .project-search-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.navigation-box .project-search .project-search-icon svg {
    width: 20px;
    height: 20px;
}


.navigation-box .project-create-btn-box .btn svg {
    width: 20px;
    height: 20px;
}

.navigation-box .project-create-btn-box .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
}

.navigation-box .space-head {
    display: flex;
    align-items: center;
    position: relative;
    padding: 5px 0;
    gap: 5px;
}

.navigation-box .space-head .space-icon {
    width: 22px;
    height: 22px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #FFF;
}

.navigation-box .space-head .space-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation-box .space-head .space-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navigation-box .space-head .state-icon {
    width: 22px;
    height: 22px;
    background-color: var(--bordercolor);
    border-radius: 5px;
    text-align: center;
    line-height: 22px;
    cursor: pointer;
}

.navigation-box .space-body {
    display: none;
    padding: 5px 0 0;
}

.navigation-box ul.project-list li {
    display: flex;
    margin: 0 0 2px;
}

.project-item {
    display: flex;
    gap: 6px;
    align-items: center;
    width: 100%;
    padding: 4px 8px;
    background-color: transparent;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.project-item .project-status {
    width: 8px;
    height: 8px;
    background-color: #c6cddd;
    border-radius: 100px;
}

.project-item .pr-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #202020;
}

.project-item .pr-details-icon {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-color: var(--offwhite);
    text-align: center;
    line-height: 20px;
    font-style: italic;
    opacity: 0;
}

.project-item:hover {
    background-color: var(--offwhite1);
}

.project-item:hover .pr-details-icon {
    background-color: var(--offwhite);
    opacity: 1;
}

.project-item.active {
    background-color: #e5e6ff;
}

.project-item.active .pr-name {
    color: #5a43d6;
}

.project-item.active .pr-details-icon {
    opacity: 1;
}

/*--navigation-box-end--*/


/*--details-content--*/
.details-content {
    flex: 1;
    width: 100%;
    min-height: 0;
    flex-grow: 1;
    display: grid;
    grid: "sidebar body right" / auto 1fr 0;
}

.details-content-main {
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    grid-area: body;
}


.details-content-header {
    border-bottom: var(--bordercolor) 1px solid;
    padding: 5px 15px;
}

.details-content-header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.details-content-header {
    border-bottom: var(--bordercolor) 1px solid;
    padding: 6px 15px;
}

.details-content-header-in .space-name-pr-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.space-name-pr-name .details-space-name {
    display: flex;
    align-items: center;
    gap: 5px;
}

.space-name-pr-name .details-space-name span.space-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #FFF;
}

.space-name-pr-name .details-space-name span.space-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-space-name span.space-name {
    color: #8c8c8c;
    font-size: 14px;
}

.space-name-pr-name .blank-line {
    padding: 0;
}

.space-name-pr-name .details-pr-name {
    display: flex;
    align-items: center;
    gap: 5px;
}

.space-name-pr-name .details-pr-name span.details-pr-name-i {
    font-size: 14px;
}

.space-name-pr-name .details-pr-name span.details-pr-info svg {
    width: 18px;
    height: 18px;
}

.space-name-pr-name .details-pr-name span.details-pr-info {
    line-height: 1;
    cursor: pointer;
}

.details-pr-status {
    margin-left: 5px;
    position: relative;
}

.details-pr-status .task-prop-status .drop-content {
    top: calc(100% + 7px);
}

.details-pr-status .task-prop-status .drop-btn {
    background-color: #f44336;
    color: #FFF;
}

.details-pr-status .task-prop-status .drop-btn svg {
    fill: #FFF;
}

.space-name-pr-name .details-pr-name span.details-pr-info:hover svg {
    fill: #5a43d6;
}

.space-pr-share {
    display: flex;
    align-items: center;
    gap: 10px;
}


.details-prs-content {
    position: relative;
    flex-grow: 1;
    min-height: 0;
}

.details-prs-content-in {
    position: relative;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    padding: 12px;
    overflow-y: scroll;
}

.details-prs-content-header-in .btn-small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px 2px 6px;
    position: relative;
}

.details-prs-content-header-in .btn-small svg {
    width: 12px;
    height: 12px;
}

.details-prs-content-header-in {
    display: flex;
    justify-content: flex-end;
    padding: 0 0 5px;
}

.details-prs-content-header-in .btn-small span.close-icon {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: #e5e6ff;
    line-height: 1;
    border-radius: 0;
    padding-left: 3px;
    display: none;
}

.details-prs-content-header-in .btn-small svg {
    width: 12px;
    height: 12px;
}

.details-prs-content-header-in .btn-small.active {
    background-color: #e5e6ff;
    color: #5a43d6;
    border-color: #5a43d6;
}

.details-prs-content-header-in .btn-small.active:hover span.close-icon {
    display: block;
}

span.prs-table-toggle-icon svg {
    width: 20px;
}

.prs-table .prs-table-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.prs-table .prs-table-head .prs-table-toggle-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
    background-color: transparent;
}

.prs-table .prs-table-head .prs-table-toggle-icon:hover {
    background-color: var(--offwhite1);
}

.prs-table .prs-table-head .prs-table-toggle-icon:after {
    content: '';
    width: 8px;
    height: 12px;
    background-image: url(../img/caret_down_icon.svg);
    position: absolute;
    top: 6px;
    left: 8px;
    background-size: cover;
    z-index: 1;
    transform: rotate(-90deg);
}

.prs-table .prs-table-head .prs-table-toggle-icon:has(.active):after {
    transform: rotate(0deg);
}

.prs-table .prs-table-head span.prs-table-head-status {
    background-color: #eaebf1;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}


.prs-table-head-task-count {
    font-size: 14px;
    color: #8c8c8c;
}

.prs-table-body-h {
    display: grid;
    gap: 10px;
    position: relative;
    padding: 0 30px 15px 58px;
    grid-template-columns: repeat(10, 1fr);
    border-bottom: var(--bordercolor) 1px solid;
}

.task-label,
.task-label-output {
    grid-column: span 4 / span 4;
}

.prs-table-body-h .prs-table-body-h-name {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #8c8c8c;
    font-weight: 600;
}

.prs-table-body-h .prs-table-body-h-assign {
    display: inline-flex;
    align-items: flex-start !important;
    align-items: center;
    height: 100%;
    font-size: 12px;
    color: #8c8c8c;
    font-weight: 600;
    /* position: absolute; */
    top: 0;
    right: 100px;
    width: 100px;
}

.prs-table-body-h .prs-table-body-h-action {
    display: inline-flex;
    align-items: flex-start !important;
    align-items: center;
    height: 100%;
    font-size: 12px;
    color: #8c8c8c;
    /* position: absolute; */
    top: 0;
    right: 0;
    width: 60px;
    font-weight: 600;
    justify-content: end;
}

.prs-table-body-tasks-task div {
    font-weight: 500;
}

.prs-table-body {
    padding: 10px;
    display: none;
}

.prs-table-body-tasks-task {
    gap: 10px;
    display: grid;
    width: 100%;
    border-bottom: var(--bordercolor) 1px solid;
    height: 35px;
    background-color: #FFF;
    position: relative;
    padding-left: 60px;
    padding-right: 30px;
    grid-template-columns: repeat(10, 1fr);
}

.prs-table-body-tasks-task:hover {
    background-color: var(--offwhite1);
}

.prs-table-body-tasks-task .task-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #444;
    word-wrap: break-word;
    word-break: break-word;
    padding: 0 10px 0 0;
    line-height: 35px;
    cursor: pointer;
    width: 100%;
}

.prs-table-body-tasks-task .task-assign,
.assign-avtar {
    /* position: absolute; */
    right: 100px;
    top: 0;
    height: 100%;
    width: 100px;
    display: flex;
    align-items: center;
}

.task-label-output {
    font-weight: 700;
}

.copy-url {
    display: flex;
    align-items: center;
}

.drop-back {
    display: none;
    background-color: transparent;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 6;
}

.drop-back.show {
    display: block;
}

.file-item {
    position: relative;
    margin: 10px;
    display: inline-block;
    width: 120px;
}

.attachment-preview {
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.generic-file {
    background: #f0f0f0;
    padding: 10px;
    text-align: center;
}

.file-actions {
    position: absolute;
    top: 5px;
    right: 5px;
}

.file-actions button {
    background: white;
    border: none;
    cursor: pointer;
    margin: 0 2px;
    font-size: 16px;
}

.prs-table-body-tasks-task .task-action,
.prs-table-body-h-action {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.prs-table-body-tasks-task .task-action .task-action-btn {
    width: 24px;
    height: 24px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.prs-table-body-tasks-task .task-action .task-action-btn svg {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.prs-table-body-tasks-task .task-action .task-action-btn:hover {
    background-color: #CCC;
}

.task-actiond_dropdown_content {
    display: none;
    position: absolute;
    min-width: fit-content;
    z-index: 9;
    right: 20px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .25);
    background-color: #FFF;
    border-radius: 6px;
    top: 34px !important;
}

.task-actiond_dropdown_content.show {
    display: block;
}

.task-actiond_dropdown_content .actiond_dropdown_content-in {
    padding: 15px;
}

.task-actiond_dropdown_content .actiond_dropdown_content-in a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-decoration: none;
    color: var(--black);
    padding: 6px;
    border-radius: 6px;
    margin: 2px 0;
}

.task-actiond_dropdown_content .actiond_dropdown_content-in span {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.task-actiond_dropdown_content .actiond_dropdown_content-in svg {
    width: 100%;
    height: 100%;
}

.task-actiond_dropdown_content span.close-btn {
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .25);
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: -15px;
    right: -15px;
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 91;
    background-color: #FFF;
    cursor: pointer;
    transition: all .3s ease;
}

.task-actiond_dropdown_content span.close-btn svg {
    width: 20px;
    height: 20px;
    transition: all .3s ease;
}

.task-actiond_dropdown_content span.close-btn:hover svg {
    transform: rotate(-90deg);
}

.task-actiond_dropdown_content .actiond_dropdown_content-in a:hover {
    background-color: var(--offwhite1);
}

.task-actiond_dropdown_content .actiond_dropdown_content-in a.delete-icon.task-delete {
    color: #f44336;
}

.task-actiond_dropdown_content .actiond_dropdown_content-in a.delete-icon.task-delete svg g {
    fill: #f44336;
}

.prs-table-body-tasks-task .task-assign .task-assign-btn {
    width: 22px;
    height: 22px;
    display: inline-block;
    border-radius: 100px;
    overflow: hidden;
}

.prs-table-body-tasks-task .task-assign .task-assign-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prs-table-body-tasks-task .task-status {
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.prs-table-body-tasks-task .task-status span {
    width: 14px;
    height: 14px;
    display: block;
    border: #CCC 1px solid;
    border-radius: 100px;
}

.prs-table-body-tasks-task .task-number {
    width: 30px;
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    ];
    font-size: 14px;
}

.prs-table {
    margin-bottom: 25px;
}

/*--details-content-end--*/


/*--task-popup--*/
.task-popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: hsl(0deg 0% 39.22% / 56%);
    top: 0;
    left: 0;
    padding: 20px;
    overflow: hidden;
    z-index: 9;
}

.task-popup.active {
    display: block;
}

.task-popup-in {
    background-color: #FFF;
    height: 100%;
    border-radius: 10px;
    border: var(--bordercolor) 1px solid;
    overflow: hidden;
}

.task-popup-head {
    border-bottom: var(--bordercolor) 1px solid;
    padding: 8px;
}

.task-popup-head-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.task-popup-close svg {
    width: 20px;
    height: 20px;
}

.task-popup-close .task-popup-close-btn {
    display: flex;
    border: none;
    padding: 5px;
}

.task-popup-head-in .space-name-pr-name {
    display: flex;
    gap: 8px;
}


.drop-btn span.arrow-icon svg {
    width: 20px;
    height: 20px;
}

.task-popup-body-in {
    display: flex;
    height: 100%;
}

.task-popup-body {
    height: calc(100% - 47px);
}

.task-popup-body-in .task-popup-body-details {
    width: 60%;
    padding: 20px;
    height: 100%;
    overflow: hidden;
    overflow-y: scroll;
}

.task-popup-body-comments {
    border-left: var(--bordercolor) 1px solid;
    background-color: var(--offwhite);
    width: 40%;
    min-width: 400px;
}

.task-popup-body-details-in .task-name {
    padding: 0 0 20px;
}

.task-popup-body-details-in .task-name h1 {
    background-color: var(--offwhite);
    border: transparent 1px solid;
    padding: 6px;
    width: 100%;
    min-height: 50px;
    resize: none;
    font-family: "Poppins", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    border-radius: 6px;
}

.task-popup-body-details-in .task-name h1[contenteditable="true"] {
    border: var(--bordercolor) 1px solid;
    outline: none;
}

.task-popup-body-details-in .task-prop {
    border-top: var(--bordercolor) 1px solid;
    border-bottom: var(--bordercolor) 1px solid;
    padding: 10px 0;
    display: flex;
}

.task-prop .task-prop-status {
    flex: 1;
    position: relative;
}

.task-prop .task-prop-assign {
    flex: 1;
    position: relative;
}

.task-prop-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #989797;
    padding: 0 0 10px;
    text-align: justify;
}

.task-prop-status .drop-btn {
    background-color: #e4e4e4;
    padding: 8px 49px 8px 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

.task-prop-status .drop-btn:hover {
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .25);
}

.task-prop-status .drop-btn span.arrow-icon {
    position: absolute;
    right: 0;
    width: 40px;
    height: 100%;
    border-left: 1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-prop-status .drop-content {
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .25);
    border-radius: 6px;
    min-width: 150px;
    position: absolute;
    top: 65px;
    left: 0;
    overflow: hidden;
    background-color: #FFF;
    z-index: 1;
    display: none;
}

.task-prop-status .drop-content.show {
    display: block;
}

.task-prop-status .drop-content li {
    display: flex;
    position: relative;
    padding: 5px;
    font-size: 12px;
    align-items: center;
    cursor: pointer;
}

.task-prop-status .drop-content span {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 4px;
    margin-right: 6px;
}

.task-prop-status .drop-content li.selected {
    background-color: #e5e6ff;
    color: #5a43d6;
}

.task-prop-status .drop-content li:hover {
    background-color: var(--offwhite1);
}

.task-prop-assign .drop-btn {
    background-color: var(--offwhite1);
    padding: 6px 60px 6px 6px;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
}

.task-prop-assign .drop-btn .assigned-members {
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
}

.task-prop-assign .drop-btn .assigned-members .assigned-member {
    display: flex;
    align-items: center;
    height: 26px;
    position: relative;
}

.task-prop-assign .drop-btn .assigned-members .assigned-member:before {
    content: '';
    width: 26px;
    height: 26px;
    background-image: url(../img/user-account.png);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.5;
}

.task-prop-assign .drop-btn .assigned-members .assigned-member img {
    width: 26px;
    height: 26px;
    object-fit: cover;
    object-position: top center;
    border-radius: 100px;
    z-index: 1;
    margin-left: -5px;
}

.task-prop-assign .drop-btn .assigned-members .assigned-member img:first-child {
    margin-left: 0;
}

.task-prop-assign .drop-btn .assigned-members .assigned-member span.close-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 14px;
    height: 14px;
    background-color: red;
    border-radius: 100px;
    border: #FFF 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.task-prop-assign .drop-btn .assigned-members .assigned-member span.close-icon svg {
    width: 8px;
    height: 8px;
    fill: #FFF;
}

.task-prop-assign .drop-btn .arrow-icon {
    position: absolute;
    right: 0;
    width: 40px;
    height: 100%;
    border-left: 1px solid #cdcdcd;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

.task-prop-assign .drop-btn .arrow-icon svg {
    width: 20px;
    height: 20px;
}

.task-prop-assign .drop-content {
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .25);
    border-radius: 6px;
    min-width: 100%;
    position: absolute;
    top: 73px;
    left: 0;
    overflow: hidden;
    background-color: #FFF;
    z-index: 1;
    padding: 10px;
}

.task-prop-assign .drop-content .member-search {
    position: relative;
    padding-bottom: 10px;
}

.task-prop-assign .drop-content .member-search input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: var(--offwhite1) 1px solid;
    border-radius: 6px;
    position: relative;
}

.task-prop-assign .drop-content .member-search .member-search-icon {
    position: absolute;
    top: 9px;
    left: 9px;
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.task-prop-assign .drop-content .member-search .member-search-icon svg {
    width: 20px;
    height: 20px;
}

.task-prop-assign .drop-content li {
    display: block;
    padding: 6px 5px;
    cursor: pointer;
    margin: 6px 0;
    border-radius: 6px;
}

.task-prop-assign .member-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.task-prop-assign .member-box .member-box-photo {
    width: 24px;
    height: 24px;
    position: relative;
}

.task-prop-assign .member-box .member-box-photo img {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background-color: #FFF;
}

.task-prop-assign .member-box .member-box-photo span.close-icon {
    width: 14px;
    height: 14px;
    position: absolute;
    right: -4px;
    top: -4px;
    background-color: red;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #FFF 1px solid;
    opacity: 0;
    transform: scale(0);
}

.task-prop-assign .member-box .member-box-photo span.close-icon svg {
    width: 8px;
    height: 8px;
    fill: #FFF;
}

.task-prop-assign .drop-content ul {
    padding: 0;
    height: 270px;
    overflow: hidden;
    overflow-y: auto;
    will-change: scroll-position;
}

.task-prop-assign .drop-content li:hover {
    background-color: var(--offwhite1);
}

.task-prop-assign .drop-content li.assigned {
    background-color: #e5e6ff;
    color: #5a43d6;
}

.task-prop-assign .drop-content li.assigned span.close-icon {
    opacity: 1;
    transform: scale(1);
}

.task-description-in div#editor-container {
    height: 300px;
}

.task-attachments-in {
    padding: 20px 0 0;
}

.task-popup-body-details-in {
    height: 100%;
}

.upload-box-input {
    border: #CCC 1px solid;
    position: relative;
    padding: 5px;
    border-radius: 5px;
}

.upload-box-input:after {
    content: "Drop your files here upload";
    font-size: 12px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 5px 0;
}

.upload-box-input:hover {
    background-color: var(--offwhite1);
}

.upload-box-input:hover:after {
    text-decoration: none;
    color: #5a43d6;
}

.task-attachments-in .upload-container {
    padding: 0 0 20px;
}

.file-grid {
    display: flex;
    column-gap: 20px;
    padding: 20px 0 0;
    flex-flow: wrap;
}

.file-grid .file-item {
    border-radius: 6px;
    border: #CCC 1px solid;
    overflow: hidden;
    position: relative;
    width: calc(100% / 4 - 15px);
    margin-bottom: 20px;
}

.file-grid .file-item img.file-thumbnail {
    width: 100%;
    height: auto;
}

.file-grid .file-item .file-thumbnail-box {
    height: 126px;
    overflow: hidden;
    position: relative;
    border-bottom: #CCC 1px solid;
}

.file-grid .file-item button.remove-btn {
    position: absolute;
    height: 24px;
    right: 5px;
    top: 5px;
    width: 24px;
    background-color: #d30e0e;
    z-index: 2;
    border-radius: 100px;
    border: #FFF 1px solid;
    box-shadow: 0 0 5px hsl(0deg 0% 0% / 37%);
    cursor: pointer;
    padding: 4px;
    opacity: 0;
    transform: scale(0);
}

.file-grid .file-item button.remove-btn img {
    width: 14px;
    height: 14px;
}

.file-grid .file-item:hover button.remove-btn {
    opacity: 1;
    transform: scale(1);
}

.file-grid .file-item .filename-ext .file-name {
    text-align: center;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-grid .file-item .filename-ext .file-ext {
    font-size: 11px;
    position: relative;
}

.file-grid .file-item .filename-ext .file-ext:before {
    content: ".";
}

.file-grid .file-item .filename-ext {
    display: flex;
    gap: 5px;
    padding: 8px;
}




.task-popup-body-comments-in .top-title {
    padding: 10px;
    border-bottom: #eaebf1 1px solid;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.task-popup-body-comments-in {
    position: relative;
    height: 100%;
}

.task-popup-body-comments-in .commetns-main-box {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 50px 0 81px;
}

.task-popup-body-comments-in .comments-editor {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: var(--offwhite);
    padding: 15px;
    border-top: var(--bordercolor) 1px solid;
}

.task-popup-body-comments-in .comments-editor-box {
    position: relative;
}

.comments-editor-box-msg {
    /* border: #e8e8e8 1px solid; */
    /* border-radius: 10px; */
    /* box-shadow: 0 3px 5px hsl(0deg 0% 0% / 14%); */
    overflow: hidden;
    line-height: 1;
    max-width: calc(100% - 69px);
    position: relative;
}

.comment-icons {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.icon-label {
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

.comments-editor-box-msg textarea {
    width: 100%;
    border: none;
    height: 43px;
    resize: none;
    padding: 12px 80px 0px 11px;
    font-family: 'Open Sans';
    background: #0000;
}

.task-popup-body-comments-in .comments-editor-box button.end-btn {
    background-color: #00a5b4;
    color: #FFF;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Poppins';
    font-size: 14px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    cursor: pointer;
    z-index: 1;
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 5px;
    vertical-align: middle;
    border-radius: 19%;
}

.comment-send {
    background-color: #00a5b4;
    color: #FFF;
    border: none;
    padding: 8px 16px;
    box-shadow: 0 3px 5px hsl(0deg 0% 0% / 14%);
    border-radius: 6px;
    font-family: 'Poppins';
    font-size: 14px;
    position: absolute;
    bottom: 20px;
    right: 5px;
    cursor: pointer;
    bottom: 0;
    top: 0;
    height: fit-content;
    margin: auto;
}

.comments-editor-in {
    position: relative;
    border: #e8e8e8 1px solid;
    border-radius: 10px;
    box-shadow: 0 3px 5px hsl(0deg 0% 0% / 14%);
    overflow: hidden;
    line-height: 1;
}

.comments-editor-box-msg textarea:focus,
.comments-editor-box-msg textarea:focus-visible {
    outline: none;
}

.task-popup-body-comments-in .commetns-main-box-in {
    padding: 15px;
    padding-bottom: 30px;
}

.commetns-main-box-in .activity-box li {
    font-size: 11px;
    color: #646464;
    position: relative;
    padding: 5px 110px 5px 15px;
    display: block;
    margin: 5px 0;
}

.commetns-main-box-in .activity-box li span.comment-time {
    position: absolute;
    right: 0;
    top: 5px;
}

.commetns-main-box-in .activity-box li:before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #acacac;
    position: absolute;
    border-radius: 100px;
    top: 11px;
    left: 5px;
}

.task-popup-body-comments-in .comment-msg-box {
    border: var(--bordercolor) 1px solid;
    background-color: #FFF;
    border-radius: 6px;
    overflow: hidden;
    margin: 8px 0;
}

.task-popup-body-comments-in .comment-msg-box .comment-msg-box-header {
    display: flex;
    align-items: center;
    border-bottom: var(--bordercolor) 1px solid;
    padding: 10px;
    gap: 20px;
    justify-content: space-between;
}

.task-popup-body-comments-in .comment-msg-box-header .user-name-box {
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 6px;
}

.task-popup-body-comments-in .comment-msg-box-header .user-name-box span.user-pic {
    width: 24px;
    height: 24px;
    border-radius: 100px;
    overflow: hidden;
    background-color: #FFF;
}

.task-popup-body-comments-in .comment-msg-box-header .user-name-box span.user-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.task-popup-body-comments-in .comment-msg-box-header .comment-msg-box-header-time {
    font-size: 12px;
    color: #646464;
}

.task-popup-body-comments-in .comment-msg-box-details {
    padding: 15px;
}

.task-popup-body-comments-in .comment-msg-box-details p {
    font-size: 13px;
    line-height: 20px;
}

.task-popup-body-comments-in .comment-msg-box-details a {
    color: #0b68cb;
}

.task-popup-body-comments-in .comments-editor:before {
    content: '';
    width: 100%;
    height: 20px;
    position: absolute;
    top: -21px;
    left: 0;
    background: linear-gradient(180deg, transparent, #f9f9f9);
    z-index: 1;
}

/*--task-popup-end--*/


/*--project-details-popup--*/
.project-details-popup {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: hsl(0deg 0% 39.22% / 56%);
    top: 0;
    left: 0;
    padding: 0;
    overflow: hidden;
    z-index: 9;
}

.project-details-popup-in {
    background-color: #FFF;
    height: 100%;
    border-radius: 0;
    width: 100%;
    max-width: 450px;
    right: -450px;
    margin: 0 0 0 auto;
    transition: all .3s ease;
    position: relative;
}

.project-details-popup.active {
    visibility: visible;
    opacity: 1;
}

.project-details-popup.active .project-details-popup-in {
    right: 0;
}

.project-details-popup-head {
    border-bottom: var(--bordercolor) 1px solid;
    padding: 15px;
}

.project-details-popup-close svg {
    width: 20px;
    height: 20px;
}

.project-details-popup-close .task-popup-close-btn {
    display: flex;
    border: none;
    padding: 5px;
}

.project-details-popup-close {
    position: absolute;
    left: -50px;
    top: 10px;
}

.project-details-popup-close .btn {
    background-color: #FFF;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: #FFF;
    box-shadow: 2px 3px 10px #858181;
}

.project-details-popup-close .btn svg {
    transition: all .3s ease;
}

.project-details-popup-close .btn:hover svg {
    transform: rotate(-90deg);
}

.project-details-comments-editor {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: var(--offwhite);
    padding: 15px;
    border-top: var(--bordercolor) 1px solid;
}

.project-details-comments-editor .project-details-comments-editor-msg {
    border: #e8e8e8 1px solid;
    border-radius: 10px;
    box-shadow: 0 3px 5px hsl(0deg 0% 0% / 14%);
    overflow: hidden;
    line-height: 1;
}

.project-details-comments-editor .project-details-comments-editor-msg textarea {
    width: 100%;
    border: none;
    min-height: 43px;
    resize: none;
    padding: 10px 80px 10px 10px;
    font-family: 'Open Sans';
}

.project-details-comments-editor button.end-btn {
    background-color: #00a5b4;
    color: #FFF;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Poppins';
    font-size: 14px;
    position: absolute;
    bottom: 22px;
    right: 22px;
    cursor: pointer;
    z-index: 1;
}

.project-details-comments-editor:before {
    content: '';
    width: 100%;
    height: 20px;
    position: absolute;
    top: -21px;
    left: 0;
    background: linear-gradient(180deg, transparent, #f9f9f9);
    z-index: 1;
}

.project-details-popup-body-in {
    padding: 15px;
    height: 100%;
    position: relative;
}

.project-details-popup-body-in .pd-comments {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 0 100px;
}

.project-details-popup-body {
    height: calc(100% - 53px);
}

.pd-comment-box {
    position: relative;
    padding: 0 0 0 30px;
    margin: 5px 0 20px;
}

.pd-comment-box span.user-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.pd-comment-box span.user-icon img {
    width: 100%;
    height: 100%;
    border-radius: 100px;
}

.pd-comment-box .pd-comment-box-msg {
    border: var(--bordercolor) 1px solid;
    border-radius: 10px;
    overflow: hidden;
}

.pd-comment-box-msg-footer {
    padding: 5px 10px;
    border-top: var(--bordercolor) 1px solid;
    display: flex;
    justify-content: flex-end;
}

.pd-comment-box-msg-body {
    padding: 15px;
    font-size: 14px;
    line-height: 28px;
}

.pd-comment-box-msg-head {
    border-bottom: var(--bordercolor) 1px solid;
    padding: 10px 140px 10px 10px;
    position: relative;
}

.pd-comment-box-msg-head .comment-date-time {
    font-size: 11px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.pd-comment-box-msg-head .user-name {
    font-size: 13px;
    padding-right: 10px;
}

.pd-comment-box-msg-head .user-name span {
    font-size: 12px;
    color: #8d8d8d;
}

.pd-comment-box-msg-footer .comment-delete svg {
    width: 16px;
    height: 16px;
}

.pd-comment-box-msg-footer .comment-delete {
    line-height: 1;
    cursor: pointer;
    width: 16px;
    opacity: 0.5;
}

.pd-comment-box-msg-body a {
    color: #0b68cb;
    display: block;
}

/*--project-details-popup-end--*/


/*--project-share-popup--*/
.project-share-popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: hsl(0deg 0% 39.22% / 56%);
    top: 0;
    left: 0;
    padding: 20px;
    overflow: hidden;
    z-index: 9;
}

.project-share-popup.active {
    display: block;
}

.project-share-popup-in {
    background-color: #FFF;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.project-share-popup-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: var(--bordercolor) 1px solid;
    padding: 10px 20px;
}

.project-share-popup-close svg {
    width: 20px;
    height: 20px;
}

.project-share-popup-close .project-share-popup-close-btn {
    display: flex;
    border: none;
    padding: 5px;
}

.project-share-popup-head-in .space-name-pr-name {
    display: flex;
    gap: 8px;
}

.project-share-popup-body {
    padding: 20px;
}

.project-share-popup-body .drop-content,
.project-share-popup-body .drop-content.hidden {
    display: block !important;
    position: relative;
    top: 25px;
    box-shadow: none;
    padding: 0;
}

/*--project-share-popup-end--*/


/*--New-project-popup--*/
.new-project-popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: hsl(0deg 0% 39.22% / 56%);
    top: 0;
    left: 0;
    padding: 20px;
    overflow: hidden;
    z-index: 9;
}

.new-project-popup.active {
    display: block;
}

.new-project-popup-in {
    background-color: #FFF;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.new-project-popup-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: var(--bordercolor) 1px solid;
    padding: 10px 20px;
}

.new-project-popup-close svg {
    width: 20px;
    height: 20px;
}

.new-project-popup-close .new-project-popup-close-btn {
    display: flex;
    border: none;
    padding: 5px;
}

.new-project-popup-body {
    padding: 20px;
}

.new-project-popup-body label {
    padding: 0 0 5px;
    display: block;
    font-size: 12px;
    color: #6d6d6d;
}

.new-project-popup-body input,
.new-project-popup-body select {
    width: 100%;
    padding: 10px;
    border: #CCC 1px solid;
    border-radius: 6px;
    font-family: 'Open Sans';
    font-size: 14px;
    margin: 0 0 20px;
}

.new-project-popup-body .addProject-btn {
    text-align: right;
}

.new-project-popup-body .addProject-btn .btn {
    background-color: #00a5b4;
    color: #FFF;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Poppins';
    font-size: 14px;
}

/*--New-project-popup-end--*/


.member-foot {
    margin-top: 1rem;
}

.get-greeting {
    padding: 10px;
}

.project-name span select {
    width: 100%;
    padding: 5px;
    border: #CCC 1px solid;
    border-radius: 6px;
    font-family: 'Open Sans';
    font-size: 14px;
    margin: 0 0 20px;
}

.project-name span select:focus {
    outline: none;
}


.priority-flag {
    margin-right: 19px;
    text-align: left;
    cursor: pointer;
}


.priority-flag svg {
    margin-top: 7px;
    vertical-align: bottom;
}

.priority-flag:hover {
    opacity: 0.8;
}

.flag-icon {
    width: 20px;
    height: 20px;
    /* margin-left: 8px; */
}

.priority-label {
    color: #666;
}

.prs-table-body-h .w-120,
.prs-table-body-tasks .w-120 {
    width: 120px;
}

.prs-table-body-h .w-30,
.prs-table-body-tasks .w-30 {
    width: 30px;
}

/* =================== */
/* =================== */
.task-props-header {
    display: flex;
    width: 100%;
    gap: 18px;
    align-items: flex-start;
    padding: 15px 0;
    justify-content: space-between;
}

.task-props-header .task-due-date {
    width: auto;
}

.task-props-header .task-prop {
    width: 100%;
    border: none;
    padding: 0 12px;
    gap: 18px;
}

.task-props-header .task-prop-assign {
    width: 50%;
    max-width: 260px;
    position: relative;
}

.task-props-header .task-prop-status span.arrow-icon svg {
    fill: #fff;
}

.task-props-header>* {
    min-width: 85px;
}
.upload-box-input input {
    position: absolute;
    height: 100%;
    width: 100%;
    appearance: none;
    opacity: 0;
    cursor: pointer;
}
/* =================== */
/* =================== */