.fd-panel-page .fd-breadcrumb-item.last{
    font-size: 14px;
}
.fd-panel-wrap {
    background-color: #F4F5F780;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 24px;
    border: 1px solid #1C2F5726;
    position: relative;
    overflow: hidden;
    margin-bottom: 145px;
}
/* Start General Header styles */
.fd-panel-content-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1C2F571A;
    margin-bottom: 24px;
    padding-bottom: 19px;
}
.fd-panel-content-header .fd-section-title{
    font-size: 24px;
}
.fd-panel-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.fd-panel-header-left .fd-panel-alert {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fd-panel-header-left .fd-panel-alert .fd-panel-bell{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 6px;
    height: 6px;
    background-color:#C52F32;
    border-radius: 50%;
}
.fd-panel-header-user {
    display: none;
    background-color: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #1C2F571A;
    padding: 6px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.fd-panel-header-user .fd-profile-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fd-panel-header-user .fd-profile-meta img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}
.fd-panel-header-user .fd-profile-meta p {
    color: #222222;
    font-size: 14px;
    font-weight: 500;
}
.fd-panel-header-user i {
    font-size: 14px;
}
@media (min-width: 768px) {
    .fd-panel-header-user {
        display: flex;
    }
}
/* END General Header styles */

/* Start Navigation styles */
.fd-panel-brand {
    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: center;
    margin: 40px 0 32px;
}
.fd-panel-brand p{
    font-size: 20px;
    color: #222222;
    font-weight: 700;
}
.fd-panel-brand svg{
    width: 26px;
    height: 26px;
    color:#C52F32;
}
.fd-panel-text{
    font-size: 14px;
    font-weight: 500;
    color: #AAAAAA;
    margin-bottom: 8px;
}
#fd-panel-navigation {
    background-color: #FFFFFF;
    width: 100%;
    padding: 24px;
}
#fd-panel-navigation ul {
    padding: 0;
}
#fd-panel-navigation li {
    position: relative;
    display: flex;
    padding: 16px 12px;
    align-items: center;
    margin-bottom: 8px;
}
#fd-panel-navigation li.is-active {
    background-color: #C52F32;
    border-radius: 6px;
}
#fd-panel-navigation li.is-active::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 48px;
    background-color: #C52F32;
    top: 50%;
    right: 0;
    transform: translate(31px, -50%);
    z-index: 10;
    border-radius: 4px;
}
#fd-panel-navigation .fd-panel-nav-link {
    font-weight: 500;
    color: #555555;
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
#fd-panel-navigation .fd-panel-nav-link .fd-rec-line {
    --theme-rec-line-radius:1px;
    --theme-rec-line-width:12px;
    --theme-rec-line-height:3px;
    background-color: #CCCCCC;
}
#fd-panel-navigation li.is-active .fd-rec-line{
    background-color: #FFFFFF;
}
#fd-panel-navigation li.is-active a {
    color: #FFFFFF;
}
/* END Navigation styles */



#fd-panel-content-wrap {
    width: 100%;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(28, 47, 87, 0.1);
    -webkit-box-shadow: inset -15px 0 20px -3px rgba(28, 47, 87, 0.1);
    -moz-box-shadow: 0 8px 32px rgba(28, 47, 87, 0.1);
    min-width: 0;
    box-sizing: border-box;
}

/* Start Edit account styles */
.fd-panel-edit-image {
    height: 100px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 2px dashed #C52F32;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:12px;
}
.fd-panel-edit-image img{
    width: 72px;
    height: 72px;
    border-radius: 50%;
}
.fd-panel-edit-image input[type="file"] {
    display: none;
}
#fd-upload-avatar{
    color: #C52F32;
    font-weight: 500;
}
.fd-panel-edit-form {
    padding: 24px;
    background-color: #FFFFFF;
    border-radius: 12px;
    margin: 16px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.fd-panel-submit-account-form{
    direction: ltr;
}
@media(min-width: 768px){
    #fd-panel-content-wrap {
        padding: 32px;
    }
    .fd-panel-edit-form {
        grid-template-columns: 1fr 1fr;
    }
}
@media(min-width: 992px){
    .fd-panel-wrap {
        grid-template-columns: 1fr 4fr;
    }
}
/* End Edit account styles */

/* Start Order account styles */
#fd-panel-orders-table{
    font-size: 16px;
    background-color: white;
    border-radius: 16px;
    border: 1px solid #1C2F571A;
}
#fd-panel-orders-table thead th {
    color: #AAAAAA;
    font-weight: 600;
    padding: 16px 0;
}
#fd-panel-orders-table thead th:first-child{
    padding-right: 24px;
}
#fd-panel-orders-table thead th:last-child{
    padding-left: 24px;
}
#fd-panel-orders-table tbody tr {
    padding: 16px;
}
#fd-panel-orders-table tbody tr td {
    padding: 12px 0;
}
.fd-panel-orders-view, .fd-panel-order-download-link{
    display: flex;
    align-items: center;
    gap: 4px;
    color: #C52F32;
    font-weight: 500;
    justify-content: flex-end;
}
@media(min-width: 768px){
    #fd-panel-orders-table tbody tr:nth-child(odd){
        background-color:#F4F5F7;
    }
    #fd-panel-orders-table tbody tr td {
        padding: 12px 0;
        border: none;
        color: #555555;
        font-weight: 500;
    }
    #fd-panel-orders-table tbody tr td:first-child {
        padding-right: 24px;
    }
    #fd-panel-orders-table tbody tr td:last-child {
        padding-left: 24px;
    }
    .fd-panel-orders-view, .fd-panel-order-download-link{
        justify-content: flex-start;
    }
}
/* End Order account styles */

#fd-panel-pagination {
    display: flex;
    justify-content: end;
}
#fd-panel-pagination .fd-panel-pagination-link {
    background-color: #F9EAEA;
    color: #c52f32;
    padding: 12px 16px;
    border-radius: 6px;
}
#fd-panel-pagination .fd-panel-pagination-link.woocommerce-button--previous {
    margin-left: 8px;
}
#fd-panel-pagination .fd-panel-pagination-link:hover {
    color: #FFFFFF;
    background-color: #c52f32;
}

/* Start Filters Styles */
.fd-panel-filters {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 16px;
}
.fd-panel-filter {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ffffff;
}
.fd-panel-filter-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.fd-panel-filter {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ffffff;
    padding: 4px 12px 4px 4px;
    border-radius: 6px;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
}
.fd-panel-filter span {
    background-color: #EEEEEE;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fd-panel-filter.active,.fd-panel-filter:hover {
    background: #F9EAEA;
    cursor: pointer;
}
.fd-panel-filter.active p,.fd-panel-filter:hover p{
    color:#C52F32;
}
.fd-panel-filter.active span,.fd-panel-filter:hover span{
    background-color: #FFFFFF;
    color:#C52F32;
}
.fd-panel-filter-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fd-panel-sort-label {
    display: none;
    align-items: center;
    gap: 4px;
}
.fd-panel-sort-label .fd-rec-line{
    background-color: #C52F32;
    --theme-rec-line-width: 12px;
    --theme-rec-line-height: 4px;
    --theme-rec-line-radius: 20px;
}
.fd-panel-sort-label p{
    font-size: 14px;
    font-weight: 500;
    color: #222222;
}
@media(min-width: 380px){
    .fd-panel-sort-label {
        display: flex;
    }
}
@media(min-width: 992px){
    #fd-panel-dropdown .fd-dropdown-selected{
        justify-content: center;
    }
    #fd-panel-dropdown .fd-dropdown-list{
        left: 0;
        right: unset;
        width: 200px;
        margin-top: 8px;
    }
}
@media(min-width: 1200px){
    .fd-panel-filters {
        flex-direction: row;
        align-items: center;
    }
}
/* End Filters Styles */

/* Error panel styles */
.fd-panel-error {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    flex-direction: column;
    gap: 16px;
}
.fd-panel-error p{
    margin-top: 8px;
}


/* Request & meeting card styles */
.fd-event-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 16px 24px 24px;
    margin-bottom: 24px;
    border:1px solid transparent;
}
.fd-event-card.hover:hover{
    border:1px solid #C52F32;
}
.fd-event-card-header {
    border-bottom: 1px solid #1C2F571A;
    padding-bottom: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fd-event-card-header .header-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.fd-event-card-header .header-right p {
    font-size: 16px;
    font-weight: 600;
    color: #555555;
}
.fd-event-card-status {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    padding: 2px 16px;
    border-radius: 8px;
    background-color: #F4F5F7;
    color: #555555;
}
.fd-event-card-status.pending, .fd-event-card-status.pending-payment {
    background-color: #E89D261A;
    color: #E89D26;
}
.fd-event-card-status.completed {
    background-color: #118E621A;
    color: #118E62;
}
.fd-event-card-status.current, .fd-event-card-status.in-progress  {
    background-color: #F9EAEA;
    color: #C52F32;
}
.fd-event-card-status.publish {
    background-color: #118E621A;
    color: #118E62;
}
.fd-event-card-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.event-card-meta {
    display: flex;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-direction: column;
}
.event-card-meta p, .event-card-attachment p {
    display: flex;
    align-items: center;
    gap: 4px;
}
.event-card-meta small {
    font-size: 14px;
    font-weight: 500;
    color: #C52F32;
}
.event-card-attachment {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    gap: 12px;
}
.event-card-attachment .attachments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.event-card-attachment .attachments a, .fd-phase-card-attachments .attachments a {
    display: flex;
    align-items: center;
    gap: 8px;
    color:#555555;
}
.event-card-attachment .attachments a i, .fd-phase-card-attachments .attachments a i {
    color:#C52F32;
}
.hide-event-card-element {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
}
.hide-event-card-element.show {
    max-height: 500px;
    opacity: 1;
}
.hide-event-card-element.hide {
    max-height: 0;
}
.fd-event-card-content {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #1C2F571A;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 16px;
}
.fd-event-card-content.post-content {
    display: block;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    border: none;
    border-radius: 12px;
}
.fd-event-card-content.post-content strong,.fd-event-card-content.post-content ul{
    display: block;
}
.fd-event-card-content span {
    color: #AAAAAA;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-left: 12px;
}
.fd-event-card-content p {
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-left: 12px;
}
.fd-event-card-link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.fd-event-card-link .link-text {
    display: flex;
    gap: 10px;
    margin-left: 40px;
}
.fd-event-card-link .link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    border-radius: 6px;
    background-color: #F4F5F7;
    padding: 4px 4px 4px 16px;
}
.fd-cory-event-url {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fd-cory-event-url i {
    background-color: #FFFFFF;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
}
.fd-event-card-toggle, .fd-event-card-hide-content{
    display: inline-block;
    color: #C52F32;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 8px;
}
.fd-event-card-toggle p, .fd-event-card-hide-content p {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.fd-event-card-toggle i {
    transition: transform 0.3s ease;
}
.fd-event-card-note {
    border-radius: 12px;
    background-color: #F4F5F7;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #555555;
    margin-top: 16px;
}
.fd-event-card-note .title {
    font-weight: 600;
    color: #C52F32;
}
.event-card-divider {
    width: 100%;
    height: 1px;
    background-color: #1C2F571A;
    margin: 8px 0;
}
.fd-event-card-note .detail {
    color: #AAAAAA;
    font-weight: 400;
    line-height: 28px;
}
.fd-event-meet-result {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    line-height: 24px;
    border-radius: 12px;
}

@media(min-width: 380px){
    .event-card-meta {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    .fd-event-card-body {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* panel form styles */
.fd-panel-form-wrap{
    background-color: #FFFFFF;
    border-radius:12px;
}
.fd-panel-form-textarea{
    padding: 0 24px;
}
.fd-panel-form-attachment{
    padding: 24px;
}
.fd-panel-form-wrap #fd-panel-form-submit-btn{
    float: left;
    margin-top: 16px;
}
.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.fd-panel-view-input {
    padding: 8px;
    border: 1px solid #1C2F5726;
    border-radius: 8px;
    color:#555555;
    font-weight: 400;
    min-height: 42px;
    cursor: not-allowed;
}
.fd-input-label,.fd-panel-view-label {
    font-weight: 600;
    color: #555555;
    font-size: 16px;
}
.fd-input-label.optional{
    display: flex;
    align-items: center;
}
.fd-input-label.optional small{
    font-size: 14px;
    color: #C52F32;
    margin-right: 6px;
}
.file-upload-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px dashed #c7c7c7;
    border-radius: 10px;
    background: #fafafa;
    transition: 0.2s ease;
}
.file-upload-wrap:hover {
    border-color: #7c3aed;
    background: #f8f5ff;
}
.file-input {
    display: none;
}
.file-upload-btn {
    display: inline-block;
    padding: 10px 16px;
    background: #7c3aed;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s ease;
    white-space: nowrap;
}
.file-upload-btn:hover {
    background: #6d28d9;
}
.file-name {
    color: #666;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fd-new-ticket input[type="number"]::placeholder, .fd-input-field[type="email"]::placeholder{
    text-align: right;
}
/* Notification Styles */
.fd-panel-notification{
    position: relative;
    border-radius: 12px;
    background-color: #FFFFFF;
    padding: 18px 24px 16px 24px;
    margin-bottom: 16px;
}
.fd-panel-notification .event-card-title{
    font-size: 16px;
    color: #222222;
    font-weight: 600;
    margin-bottom: 16px;
}
.fd-panel-notification .content{
    position:relative;
    font-size: 14px;
    color: #555555;
    font-weight: 400;
    line-height: 24px;
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.fd-panel-notification .content.expanded{
    max-height: none;
    overflow: visible;
}
.fd-panel-notification .content.expanded .cover-text{
    display: none;
}
.fd-panel-notification .content .cover-text {
    position: absolute;
    content: '';
    height: 50px;
    width: 100%;
    background: linear-gradient(to bottom, #ffffff00 0%, rgb(255 255 255) 50%);
    bottom: 0;
}
.fd-panel-notification .detail {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    color: #55555580;
    font-weight: 400;
}
.fd-panel-notification .status-badge {
    position: absolute;
    content: '';
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    background-color: #C52F32;
    border-radius: 50%;
}

/*ticket style*/
.ticket-single-wrap {
    background: white;
    padding: 16px;
    border-radius: 16px;
}
.fd-panel-ticket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.fd-panel-ticket-back {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4F5F7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #555555;
}
.ticket-content-wrap{
    margin-bottom: 16px;
}
.fd-panel-ticket-text {
    border: 1px solid #1C2F5726;
    padding: 12px;
    border-radius: 8px;
    font-weight: 400;
    color: #555555;
    line-height: 32px;
    margin-top: 12px;
}
.ticket-content-wrap.admin .fd-panel-ticket-text {
    border: 1px solid #1C2F5726;
    padding: 12px;
    border-radius: 8px;
    font-weight: 400;
    background-color: #F4F5F766;
}
.fd-panel-ticket-text .date {
    color: #AAAAAA;
}
@media (min-width: 992px) {
    .ticket-single-wrap {
        padding: 16px 24px;
    }
    .ticket-content-wrap.admin{
        padding-right: 40px;
    }
}

/*project Styles*/
.fd-panel-project-card-body{
    border-radius: 12px;
    background-color: #F4F5F7;
    padding: 24px;
    margin-bottom: 16px;
}
.fd-event-card-header .header-right .project-single-card {
    font-size: 24px;
    font-weight: 700;
    color: #222222;
}
.fd-panel-project-card-title {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}
.fd-panel-project-card-title .fd-rec-line {
    background-color: #C52F32;
    --theme-rec-line-width: 12px;
    --theme-rec-line-height: 6px;
    --theme-rec-line-radius: 6px;
}
.fd-panel-project-card-title .fd-section-title{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.fd-panel-project-card-item{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.fd-panel-project-card-inner {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 16px 24px 24px;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
}
.fd-panel-project-card-inner.project-content p{
    line-height: 28px;
}
.fd-panel-project-card-inner .project-plan-title{
    font-size: 16px;
    font-weight: 600;
    color: #555555;
}
@media (min-width: 992px){
    .fd-panel-project-card-item{
        grid-template-columns: 1fr 1fr;
    }
}

/* panel card list styles */
.fd-panel-card-list {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    /*gap: 10px;*/
}
.fd-panel-event-card-row {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 20px;
    align-items: center;
    margin-bottom: 12px;
}
.fd-panel-col.name {
    display: flex;
    align-items: center;
    gap: 4px;
}
.fd-panel-col.status {
    justify-self: start;
}

.fd-panel-col.status .date-remaining {
    font-size: 14px;
    font-weight: 500;
    color: #C52F32;
}
@media (min-width: 420px) {
    .fd-panel-event-card-row {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 768px) {
    .fd-panel-event-card-row.project-scope {
        grid-template-columns: 1fr 3fr;
    }
}

/*timeline styles*/
.fd-panel-phase-overview{
    padding: 24px;
    border: 1px solid #1C2F570D;
    border-radius: 12px;
}
.timeline-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 12px;
    -webkit-overflow-scrolling: touch;
    cursor: grabbing;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    -webkit-user-select: none;
}
.timeline-wrapper::-webkit-scrollbar {
    display: none;
}
.timeline-item .phase-wrap {
    position: relative;
    overflow: visible;
}
.timeline-item:not(:last-child) .phase-wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 4px;
    background: #1C2F571A;
    width: 100%;
    transform: translateY(-50%);
    z-index:0;
}
.timeline-wrapper .timeline {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    min-width: max-content;
    position: relative;
}
.timeline-wrapper .timeline-item {
    z-index: 1;
    min-width: 170px;
    overflow: visible;
}
.timeline-wrapper .phase {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E8EAEE;
    color: #E8EAEE;
    box-shadow: 0 0 0 4px rgb(255 255 255);
    -webkit-box-shadow: 0 0 0 4px rgb(255 255 255);
    -moz-box-shadow: 0 0 0 4px rgb(255 255 255);
}
.timeline-wrapper .phase i{
    font-size: 18px;
}
.timeline-wrapper .content {
    background: #FFFFFF;
}
.timeline-wrapper .phase-number {
    font-size: 14px;
    color: #AAAAAA;
    display: block;
    font-weight: 500;
    margin-top: 16px;
}
.timeline-wrapper .phase-title {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-top: 8px;
    color: #555555;
}
.timeline-item.completed .phase-wrap::before{
    background: #C52F32;
}
.timeline-item.completed .phase {
    background-color: #C52F32;
}
.timeline-item.in-progress .phase {
    border: 1px solid #C52F32;
    color: #C52F32;
    box-shadow: 0 0 0 4px rgba(194, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 0 4px rgba(194, 0, 0, 0.25);
    -moz-box-shadow: 0 0 0 4px rgba(194, 0, 0, 0.25);
}
.fd-panel-timeline-text{
    font-size: 14px;
    font-weight: 500;
    color: #AAAAAA;
}


.fd-phase-attachment-wrap {
    border-radius: 12px;
    background-color: #F4F5F7;
    padding: 16px 24px;
    margin: 12px 0 24px 0;
}

.fd-phase-card-attachments{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
}


.fd-phase-card-meet p{
    margin-bottom: 12px;
}
.fd-phase-meeting-details {
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    padding: 9px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 16px;
}
.fd-phase-meeting-details .status{
    color:#C52F32;
}
.fd-phase-meeting-details .status.publish{
    color:#118E62;
}

.phase-completed{
    border: 1px solid #118E62;
}
.phase-in-progress{
    border: 1px solid #C52F32;
}


/*responsive table styles*/
.fd-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #1C2F571A;
    border-radius: 12px;
}
.fd-project-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    direction: rtl;
    background: #FFFFFF;
    border-style: hidden;
}
.fd-project-table th, .fd-project-table td {
    padding: 12px 16px;
    text-align: right;
    white-space: nowrap;
    color: #555555;
    font-weight: 500;
    border: none;
    border-bottom: 1px solid #1C2F571A;
}
.fd-project-table tbody tr:last-child td {
    border-bottom: none;
}
.fd-project-table thead th {
    background: #FFFFFF;
    font-weight: 600;
    color: #AAAAAA;
    border-bottom: 1px solid #1C2F571A;
}
.fd-project-table tbody tr:nth-child(odd) {
    background: #F4F5F7B2;
}


.fd-event-project-payment{
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.fd-event-project-payment-detail{
    border-radius: 12px;
    border: 1px solid #1C2F571A;
    padding: 16px 24px 24px;
}


.fd-event-project-payment-detail .fd-panel-payment-text{
    font-weight: 500;
    line-height: 32px;
    color: #555555;
}

.fd-event-project-payment .fd-panel-project-payment-box{

}

.fd-event-project-payment .fd-panel-project-payment-box-detail{
    border-radius: 8px;
    background-color: #F4F5F7;
    margin-bottom: 8px;
}

.fd-event-project-payment .payment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.fd-event-project-payment .payment-item p{
    font-size: 14px;
    color: #55555580;
}
.fd-event-project-payment .payment-item span{
    font-size: 14px;
    color: #555555;
}

.fd-event-project-payment .payment-item.subtotal p{
    font-size: 16px;
    color: #555555;
}
.fd-event-project-payment .payment-item.subtotal span{
    font-size: 16px;
    color: #C52F32;
    font-weight: 700;
}

@media (min-width: 992px) {
    .fd-event-project-payment{
        grid-template-columns: 3fr 1fr;
    }
}



/*dashboard styles*/
.fd-panel-dashboard-wrap {
    padding: 24px;
    border-radius: 16px;
    background-color: #FFFFFF;
    margin-bottom: 24px;
}
.fd-panel-dashboard-wrap .dashboard-card-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.fd-panel-dashboard-wrap .dashboard-card-header p{
    font-weight: 600;
    color: #AAAAAA;
}

.fd-panel-dashboard-project-cards{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.fd-panel-dashboard-project-cards .service-card{
    margin-bottom: 0;
    padding: 16px;
}
.fd-panel-dashboard-project-cards .service-card-title-wrap{
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
}
.fd-panel-dashboard-project-cards .service-card .service-card-title{
    font-size: 16px;
}

@media (min-width: 768px){
    .fd-panel-dashboard-project-cards{
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px){
    .fd-panel-dashboard-project-cards{
        grid-template-columns: repeat(4,1fr);
    }
}