.dash-aside-navbar {
    position: fixed;
    z-index: 1000;
    left: 0;
    top:0;
    bottom: 0;
    min-height: 100vh;
    overflow-y: auto;
    width: 320px;
    background: #fff;
    padding: 30px 0 30px;

    &::-webkit-scrollbar{ width: 5px; }
    &::-webkit-scrollbar-track { background: #fff;}
    &::-webkit-scrollbar-thumb { background: #fff; border-radius: 0;}
    .plr {
        padding-left: 30px;
        padding-right: 30px;
    }
    .bottom-line {
        border-bottom: 1px solid #E9E9E9;
    }
    
    .dasboard-main-nav li {
        a {
            font-size: 16px;
            font-weight: 500;
            color: #000;
            padding: 13px 5px 13px 20px;
            border-radius: 10px;
            @include transition(0.25s);
            span {
                padding-left: 15px;
            }
            &:hover {
                text-decoration: underline;
            }
            &.active {
                background: #000;
                color: #fff;
            }
            img {
                max-width: 20px;
            }
        }
        .nav-title {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.26px;
            text-transform: uppercase;
            padding-left: 50px;
            color: rgba($color: #000000, $alpha: 0.3);
            margin-bottom: 10px;
        }
    }
    .profile-complete-status {
        margin: 30px 0 20px 0;
        .progress-value {
            font-size: 16px;
            letter-spacing: -0.16px;
            color: #000;
        }
        .progress-line {
            height: 5px;
            border-radius: 5px;
            background: rgba($color: #000000, $alpha: 0.1);
            overflow: hidden;
            margin: 9px 0 3px;
            .inner-line {
                position: absolute;
                height: 100%;
                left: 0;
                top:0;
                background: $color-one;
            }
        }
        p {
            font-size: 11px;
            font-weight: 500;
            margin: 0;
            color: rgba($color: #244034, $alpha: 0.5);
        }
    }
    .logout-btn {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: -0.16px;
        color: #000;
        @include transition(0.25s);
        .icon {
            width: 42px;
            height: 42px;
            background: #000;
        }
        span {
            padding-left: 10px;
        }
        &:hover {
            color: $color-two;
            .icon {
                background: $color-two;
            }
        }
    }
    .close-btn {
        font-size: 28px;
        color: #000;
        &:hover {
            color: $color-one;
        }
    }
}
// Dashboard Body
.dashboard-body {
    min-height: 100vh;
    background: #F9F3EF;
    margin-left: 320px;
    padding: 180px 45px 50px;
    .plr {
        padding-left: 30px;
        padding-right: 30px;
    }
    .border-15 {border-radius: 15px;}
    .border-20 {border-radius: 20px;}
    .border-30 {border-radius: 30px;}
    .card-box {padding: 45px 60px 50px;}
    .main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .dash-title-two {
        padding-top: 25px;
        padding-bottom: 25px;
        margin: 0;
    }
    .dash-title-three {
        font-size: 24px;
        margin: 0 0 30px;
    }
    .dash-btn-one {
        font-size: 15px;
        font-weight: 500;
        letter-spacing: -0.15px;
        color: #fff;
        border-radius: 7px;
        line-height: 40px;
        padding: 0 15px;
        min-width: 135px;
        text-align: center;
        background: #000;
        @include transition(0.2s);
        i {
            font-size: 1.5em;
            font-weight: bold;
            vertical-align: -3px;
            margin-right: 2px;
        }
        &:hover {
            background: $color-one;
        }
        input[type="file"] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
    }
    .dash-btn-two {
        font-weight: 500;
        color: #fff;
        min-width: 125px;
        font-size: 16px;
        text-align: center;
        padding: 0 25px;
        line-height: 45px;
        border-radius: 10px;
        background: $color-one;
        &:hover {
            background: #000;
        }
    }
    .dash-cancel-btn {
        font-size: 16px;
        font-weight: 500;
        color: #000;
        &:hover {
            color:$color-two;
        }
    }
    // Dashboard Header
    .dashboard-header {
        position: fixed;
        top:0;
        right: 45px;
        left: 365px;
        background: #F9F3EF;
        padding: 30px 0;
        z-index: 999;
        .search-form {
            position: relative;
            height: 55px;
            width: 318px;
            input {
                width: 100%;
                height: 100%;
                font-size: 16px;
                border: 1px solid #000;
                border-radius: 30px;
                padding: 0 45px 0 20px;
                background: transparent;
            }
            button {
                position: absolute;
                top:0;
                right: 0;
                bottom: 0;
                width: 50px;
                border-radius: 0 30px 30px 0;
            }
        }
        .user-data {
            .user-avatar {
                width: 65px;
                height: 65px;
                border: 5px solid #fff;
                img {
                    border-radius: 50%;
                }
                &:after {
                    display: none;
                }
                &.online:before {
                    content: '';
                    position: absolute;
                    width: 15px;
                    height: 15px;
                    border-radius: 50%;
                    background: #29D259;
                    border: 3px solid #fff;
                    right: -6px;
                    bottom: 3px;
                    z-index: 1;
                }
            }
            .user-name-data .dropdown-menu {
                width: 220px;
                border: none;
                border-radius: 15px;
                box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
                padding: 12px 0;
                &:before {
                    content: url(../dashboard/images/icon/icon_42.svg);
                    position: absolute;
                    right: 23px;
                    top:-17px;
                }
                .dropdown-item {
                    text-transform: capitalize;
                    line-height: 45px; 
                    padding: 0 5px 0 20px;
                    color: #000;
                    font-size: 16px;
                    font-weight: 500;
                    letter-spacing: -0.16px;
                    background: transparent;
                    position: relative;
                    letter-spacing: -0.1px;
                    @include transition(0.2s);
                    i {
                        font-weight: 700;
                        font-size: 1.1em;
                    }
                    &:hover {
                        color:$color-one;
                        background: rgba($color: #000000, $alpha: 0.01);
                    }
                    img {
                        width: 19px;
                    }
                }
            }
            .user-name {
                width: 100%;
                font-size: 18px;
                font-weight: 500;
                color: $color-one;
                margin: 15px 0 45px;
                &:after {
                    vertical-align: 3px;
                }
            }
        }
        .profile-notification {
            .noti-btn {
                height: 45px;
                position: relative;
                &:after {
                    display: none;
                }
                .badge-pill {
                    position: absolute;
                    width: 7px;
                    height: 7px;
                    border-radius: 50%;
                    background: #FF2730;
                    top:4px;
                    right:-7px;
                }
            }
            .dropdown-menu {
                width: 325px;
                border: none;
                border-radius: 15px;
                box-shadow: 0px 50px 100px rgba(0, 0, 0, 0.12);
                padding: 25px 18px 30px 22px;
                h4 {
                    font-size: 18px;
                    margin-bottom: 20px;
                }
                .notify-list li {
                    position: relative;
                    padding-right: 10px;
                    cursor: pointer;
                    margin-top: 20px;
                    &:before {
                        content: '';
                        position: absolute;
                        width: 8px;
                        height: 8px;
                        background: #D8D8D8;
                        border-radius: 50%;
                        right: 0;
                        top:5px;
                    }
                    &.unread:before {
                        background: #FF2730;
                    }
                    h6 {
                        font-size: 15px;
                        margin-bottom: 3px;
                        color: rgba($color: #000, $alpha: 0.5);
                        width: 85%;
                        text-overflow: ellipsis;
                        overflow: hidden;
                        white-space: nowrap;  
                    }
                    &.unread h6 {
                        color: #000;
                    }
                    .time {
                        font-size: 14px;
                        color: rgba($color: #000, $alpha: 0.5);
                    }
                    &:hover {
                        h6 {
                            text-decoration: underline;
                        }
                    }
                }
                
            }
        }
        .job-post-btn {
            font-weight: 500;
            color: #fff;
            text-align: center;
            width: 135px;
            line-height: 45px;
            border-radius: 50px;
            background: $color-one;
            &:hover {
                background: $color-two;
                color: $color-one;
            }
        }
        .dash-mobile-nav-toggler {
            width: 44px;
            height: 38px;
            padding: 0;
            box-shadow: none;
            position: relative;
            z-index: 99;
            border: none;
            border-radius: 5px;
            
        }
        .dash-mobile-nav-toggler:focus {box-shadow: none;}
        .dash-mobile-nav-toggler::before,
        .dash-mobile-nav-toggler::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 26px;
            height: 2px;
            pointer-events: none;
            -webkit-transition: -webkit-transform 0.25s;
            transition: transform 0.25s;
            -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
            background: $color-one;
        }
        .dash-mobile-nav-toggler span {
            position: absolute;
            left: 0;
            overflow: hidden;
            width: 26px;
            height: 2px;
            margin-top: -1px;
            text-indent: 200%;
            -webkit-transition: opacity 0.25s;
            transition: opacity 0.25s;
            background: $color-one;
        }
        .dash-mobile-nav-toggler::before {
            -webkit-transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
            transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
        }
        .dash-mobile-nav-toggler::after {
            -webkit-transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
             transform: translate3d(0, 8px, 0) scale3d(1, 1, 1); 
        }
    }
    // Card One
    .dash-card-one {
        padding: 35px 30px 15px;
        z-index: 1;
        &:before {
            content: '';
            position: absolute;
            height: 95px;
            width: 1px;
            transform: rotate(20deg);
            top:25%;
            left: -12px;
            background: rgba($color: #000000, $alpha: 0.13);
        }
        &.skew-none:before {
            display: none;
        }
        .icon {
            width: 65px;
            height: 65px;
            background: #000;
        }
        .value {
            font-size: 42px;
            letter-spacing: -0.42px;
            color: #000;
        }
        span {
            font-size: 17px;
            letter-spacing: -0.17px;
            color: rgba($color: #0000, $alpha: 0.5);
        }
    }
    .user-activity-chart {
        .job-list {
            padding: 25px 20px;
            max-width: 700px;
            margin: 0 auto;
        }
        .short-filter .nice-select {
            min-width: auto;
            width: 126px;
            height: 35px;
            line-height: 33px;
            border: 1px solid #3F634D;
            border-radius:30px;
            font-size: 15px;
            &:after {
                right: 12px;
            }
            .option {
                line-height: 32px;
                font-size: 0.9em;
            }
            .current {
                display: block;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
                max-width: 80%;
            }
        }
    }
    // Recent Job Tab
    .recent-job-tab .wrapper {
        padding: 0 25px 8px 30px;
        .job-item-list {
            position: relative;
            padding-right: 25px;
            margin: 40px 0;
            &:first-child {
                margin-top: 30px;
            }
            .logo {
                width: 40px;
            }
            .job-title {
                width: calc(100% - 40px);
                padding-left: 22px;
                h6 a {
                    
                    font-size: 16px;
                    color: $color-one;
                    display: block;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    white-space: nowrap;
                    @include transition(0.2s);
                    &:hover {
                        text-decoration: underline;
                        color: $color-five;
                    }
                }
                .meta {
                    font-size: 14px;
                    color: rgba($color: #244034, $alpha: 0.5);
                }
            }
            .job-action {
                position: absolute;
                top:0;
                right: 0px;
                .dropdown-menu {
                    min-width: 120px;
                    border: none;
                    border-radius: 10px;
                    box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.1);
                    padding: 10px 0;
                    .dropdown-item {
                        font-weight: 500;
                        font-size: 13px;
                        padding: 5px 15px;
                        margin: 4px 0;
                        color: rgba($color: #000, $alpha: 0.55);
                        background: #fff;
                    }
                    li:last-child .dropdown-item {
                        color: #ff5b5b;
                    }
                }
                .action-btn {
                    padding: 8px;
                    span {
                        display: block;
                        position: relative;
                        width: 4px;
                        height: 4px;
                        border-radius: 50%;
                        background: rgba($color: #2B2B2B, $alpha: 0.35);
                        &:before, &:after {
                            content: '';
                            position: absolute;
                            top:0;
                            left: -7px;
                            margin: 0;
                            padding: 0;
                            width: 4px;
                            height: 4px;
                            border: none;
                            border-radius: 50%;
                            background: rgba($color: #2B2B2B, $alpha: 0.35);
                        }
                        &:after {
                            left: auto;
                            right: -7px;
                        }
                    }
                    &:after {
                        display: none;
                    }
                    &:hover span {
                        background: $color-three;
                        &:before, &:after {
                            background: $color-three;
                         }
                    }
                }
            }
        }
    }

    // User Avatar
    .user-avatar-setting {
        .user-img {
            width: 68px;
            height: 68px;
            border-radius: 50%;
        }
        .upload-btn {
            font-size: 15px;
            letter-spacing: -0.15px;
            font-weight: 500;
            width: 175px;
            line-height: 40px;
            height: 42px;
            text-align: center;
            border-radius: 7px;
            color: $color-one;
            border: 1px solid $color-one;
            cursor: pointer;
            &:hover {
                background: #000;
                border-color: #000;
                color: #fff;
            }
            input {
                position: absolute;
                opacity: 0;
                width: 100%;
                height: 100%;
                top:0;
                left: 0;
            }
        }
        .delete-btn {
            font-size: 15px;
            letter-spacing: -0.15px;
            font-weight: 500;
            color: #000;
            &:hover {
                color: #ff5b5b;
            }
        }
    }

    // Input Style
    .dash-input-wrapper {
        label {
            display: block;
            font-size: 15px;
            font-weight: 500;
            color: #000;
            margin-bottom: 10px;
        }
        .alert-text {
            font-size: 14px;
            letter-spacing: -0.14px;
            color: rgba($color: #000, $alpha: 0.5);
        }
        input {
            width: 100%;
            height: 55px;
            letter-spacing: -0.16px;
            border: 1px solid #E5E5E5;
            border-radius: 8px;
            padding: 0 20px;
            font-size: 16px;
        }
        textarea {
            border: 1px solid #E5E5E5;
            border-radius: 8px;
            padding: 15px 20px;
            max-width: 100%;
            width: 100%;
            resize: none;
            font-size: 16px;
            &.size-lg {
                height: 230px;
                max-height: 200px;
            }
        }
        .nice-select {
            height: 55px;
            line-height: 55px;
            letter-spacing: -0.16px;
            border: 1px solid #E5E5E5;
            border-radius: 7px;
            padding: 0 25px 0 20px;
            font-size: 16px;
            .option {
                line-height: 38px;
            }
        }
        .map-frame {
            height: 290px;
            border-radius: 8px;
            overflow: hidden;
        }
        .location-pin {
            position: absolute;
            right: 0;
            top:0;
            bottom: 0;
            width: 60px;
            opacity: 0.18;
            &:hover {
                opacity: 1;
            }
        }

        .attached-file {
            height: 60px;
            width: 100%;
            border-radius: 10px;
            background: #EDF2F7;
            padding: 0 20px;
            span {
                font-size: 14px;
            }
            .remove-btn {
                font-size: 22px;
                font-weight: 700;
                color: #000;
                &:hover {
                    color: #ff5b5b;
                }
            }
        }
        .skills-wrapper {
            padding: 15px 20px 10px;
            background: #F7F7F7;
            border-radius: 15px;
            ul {
                margin: 0 -5px;
                li {
                    padding: 0 5px 15px;
                    &.is_tag button {
                        font-size: 15px;
                        color: $color-five;
                        line-height: 42px;
                        padding: 0 40px 0 22px;
                        background: #FFFFFF;
                        box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.0363735);
                        border-radius: 30px;
                        position: relative;

                        i {
                            position: absolute;
                            font-size: 20px;
                            right: 10px;
                            top:0;
                            &:hover {
                                color: #ff5b5b;
                            }
                        }
                    }
                    &.more_tag button {
                        font-size: 21px;
                        width: 42px;
                        height: 42px;
                        border-radius: 50%;
                        background: $color-two;
                    }
                }
            }
        }
        .info-text {
            font-size: 14px;
            p {
                color: rgba($color: #000, $alpha: 0.5);
                a {
                    color: $color-one;
                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
            .chng-pass {
                color: $color-one;
                text-decoration: underline; 
            }
        }
    }
    
    .remove-portfolio-item {
        width: 30px;
        height: 30px;
        background: rgba($color: #000, $alpha: 0.1);
        position: absolute;
        right: 15px;
        top:15px;
        font-size: 22px;
        color: #000;
        &:hover {
            background: #fff;
        }
    }

    .short-filter {
        .nice-select {
            min-width: 125px;
            height: 35px;
            line-height: 33px;
            font-size: 15px;
            padding: 0 15px 0 15px;
            background: transparent;
            border: 1px solid #000;
            border-radius: 30px;
            &:after {
                right: 14px;
            }
            .list {
                padding: 0;
            }
            .option {
                font-size: 1em;
            }
        }
    }

    .property-list-table {
        margin: 0;
        th {
            border: 0;
            padding: 13px 15px;
            font-size: 13px;
            font-weight: normal;
            text-transform: uppercase;
            color: #fff;
            background: #000;
            letter-spacing: 1px;
            &:first-child {
                border-radius: 7px 0 0 7px;
            }
            &:last-child {
                border-radius: 0 7px 7px 0;
                text-align: right;
            }
        }
        td {
            font-size: 16px;
            vertical-align: middle;
            box-shadow: none;
            padding: 34px 15px;
            border: none;
            color: rgba($color: #000000, $alpha: 0.6);
            border-bottom: 1px solid rgba($color: #000, $alpha: 0.1);
            &:nth-child(1) {padding-left: 0;}
            &:hover {
                .property-name {
                    color: $color-one;
                }
            }
            .p-img {
                width: 105px;
                border-radius: 15px;
            }
            .address {
                font-size: 15px;
                margin: 10px 0;
                color: rgba($color: #000000, $alpha: 0.5);
            }
            .price {
                font-size: 18px;
                sub {
                    font-size: 0.9em;
                    font-weight: normal;
                    bottom: 0px;
                }
            }
            .property-status {
                display: inline-block;
                line-height: 35px;
                border-radius: 40px;
                font-size: 15px;
                padding: 0 25px;
                color: #29A54C;
                background: #D0F3DA;
                &.pending {
                    background: #FEE9E9;
                    color: #D06767;
                }
                &.processing {
                    background: #F9EEC8;
                    color: #B5A367;
                }
            }
        }
        tbody tr:last-child td {
            border: none;
        }
    }
    .saved-search-table {
        margin: 0;
        th {
            border: 0;
            padding: 13px 25px;
            font-size: 13px;
            font-weight: normal;
            text-transform: uppercase;
            color: #fff;
            background: #000;
            letter-spacing: 1px;
            &:first-child {
                border-radius: 7px 0 0 7px;
            }
            &:last-child {
                border-radius: 0 7px 7px 0;
                text-align: right;
            }
        }
        td {
            font-size: 16px;
            vertical-align: middle;
            box-shadow: none;
            padding: 30px 25px;
            border: none;
            color: rgba($color: #000000, $alpha: 0.6);
            border-bottom: 1px solid rgba($color: #000, $alpha: 0.1);
            .property-name {
                font-size: 18px;
                letter-spacing: -0.18px;
                &:hover {
                    color: $color-one;
                }
            }
            .btns-group {
                a {
                    font-size: 19px;
                    color: #000;
                    margin-left: 22px;
                    @include transition(0.2s);
                    &:hover {
                        color: $color-two;
                    }
                    &:first-child:hover {
                        color: #5dc378;
                    }
                }
            }
        }
        tbody tr:last-child td {
            border: none;
        }
    }


    .filter-input {
        margin: 0 -10px;
        li {
            margin: 25px 10px 0;
            position: relative;
            width: calc(20% - 20px);
        }
        label {
            display: block;
            position: relative;
            font-size: 16px;
            padding-left: 24px;
            color: #000;
            @include transition(0.1s);
            &::before {
                content: '';
                width: 14px;
                height: 14px;
                border-radius: 3px;
                line-height: 12px;
                background: #fff;
                border: 1px solid #000;
                font-size: 12px;
                font-weight: 900;
                text-align: center;
                position: absolute;
                left:0;
                top:4px;
                font-family: "bootstrap-icons";
                @include transition(0.1s);
            }
        }
        input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
            left: 0;
            cursor: pointer;
        }
        input[type="checkbox"]:checked + label:before {
            content: "\f633";
            background: #000;
            color: #fff;
            border-color:  #000;
        }
    }


    .action-dots {
        .dropdown-menu {
            min-width: 140px;
            border: 1px solid #F1F1F1;
            border-radius: 5px;
            box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            .dropdown-item {
                padding: 0 15px;
                line-height: 34px;
                font-size: 14px;
                color: #6a6a6a;
                background: #fff;
                img {
                    display: inline-block;
                    vertical-align: -1px;
                    margin-right: 5px;
                }
                &:hover {
                    color: #000;
                }
            }
            li:last-child .dropdown-item:hover {
                color: #ff5b5b;
            }
        }
        .action-btn {
            padding: 8px;
            span {
                display: block;
                position: relative;
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background: rgba($color: #2B2B2B, $alpha: 0.35);
                &:before, &:after {
                    content: '';
                    position: absolute;
                    top:-7px;
                    left: 0;
                    margin: 0;
                    padding: 0;
                    width: 4px;
                    height: 4px;
                    border: none;
                    border-radius: 50%;
                    background: rgba($color: #2B2B2B, $alpha: 0.35);
                }
                &:after {
                    top: auto;
                    bottom: -7px;
                }
            }
            &:after {
                display: none;
            }
            &:hover span {
                background: $color-one;
                &:before, &:after {
                    background: $color-one;
                 }
            }
        }
    }

    // Meassage Page
    .new-message-compose {
        width: 45px;
        line-height: 45px;
        text-align: center;
        font-size: 28px;
        color: #fff;
        background: $color-one;
    }
    .message-pagination a {
        color: #000;
    }
    .message-pagination span {
        color: #000;
        font-size: 14px;
        margin: 0 8px;
    }
    .message-wrapper {
       .message-sidebar {
            border-right: 1px solid #E3E1E1;
            max-height: 1000px;
            overflow-y: auto;
            .page-title {
                font-size: 18px;
                color: #000;
            }
            .action-btn {
                span {
                    &:before, &:after {
                        top:0;
                        left: -7px;
                    }
                    &:after {
                        left: auto;
                        right: -7px;
                    }
                }
            }
            .search-form {
                height: 50px;
                border-radius: 30px;
                position: relative;
                input {
                    width: 100%;
                    height: 100%;
                    border-radius: 30px;
                    background: transparent;
                    border: 1px solid #E3E3E3;
                    padding: 0 50px 0 15px;
                    font-size: 15px;
                }
                button {
                    position: absolute;
                    top:0;
                    right: 0;
                    bottom: 0;
                    width: 50px;
                    border-radius: 30px 0 0 30px;
                }
            }
            .message_filter button {
                font-size: 15px;
                font-weight: 500;
                color: #000;
                line-height: 28px;
                border-radius: 30px;
                padding: 0 12px;
                margin: 0 2px;
                position: relative;
                span {
                    width: 7px;
                    height: 7px;
                    border-radius: 50%;
                    position: absolute;
                    left: -5px;
                    top:10px;
                }
                &.active {
                    background: #000;
                    color: #fff;
                    span {
                        opacity: 0;
                    }
                }
            }

            .email-list-item {
                border-top: 1px solid #F3F3F3;
                padding-top: 28px;
                padding-bottom: 28px;
                cursor: pointer;
                position: relative;
                &.selected {
                    background: #F9F3EF;
                    border-left: 4px solid #000;
                    .email-short-preview .file {
                        background: #fff;
                    }
                }
                &.read .email-short-preview:before {
                    background: #FF4545;
                }
                &.primary .email-short-preview:before {
                    background: #52C1FF;
                }
                .email-short-preview {
                    padding-left: 24px;
                    &:before {
                        content: '';
                        width: 8px;
                        height: 8px;
                        border-radius: 50%;
                        position: absolute;
                        left: 0;
                        top:7px;
                        background: #3BDA84;
                    }
                    .sender-name {
                        font-size: 15px;
                        font-weight: 500;
                        color: rgba($color: #000, $alpha: 0.4);
                    }
                    .date {
                        font-size: 12px;
                        text-transform: uppercase;
                        color: rgba($color: #000, $alpha: 0.5);
                    }
                    .mail-sub {
                        font-weight: 500;
                        font-size: 16px;
                        color: #000;
                        margin: 7px 0 10px;
                        text-overflow: ellipsis;
                        overflow: hidden;
                        white-space: nowrap;
                    }
                    .mail-text {
                        font-size: 15px;
                        line-height: 25px;
                        color: rgba($color: #000, $alpha: 0.5);
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                    }
                    .file {
                        padding: 3px 10px;
                        border-radius: 4px;
                        font-size: 12px;
                        letter-spacing: -0.3px;
                        color: rgba($color: #000, $alpha: 0.5);
                        background: #F0F5F3;
                    }
                }
            }
        }

        .open-email-container {
            .divider {
                border-bottom: 1px solid #EEEEEE;
            }
            .email-header {
                padding-top: 30px;
                padding-bottom: 30px;
                .logo {
                    width: 45px;
                    height: 45px;
                    border-radius: 50%;
                }
                .sender-name {
                    font-size: 20px;
                    font-weight: 500;
                    color: #000;
                    margin-bottom: -4px;
                }
                .sender-email {
                    font-size: 17px;
                    color: rgba($color: #000, $alpha: 0.4);
                }
                .time {
                    font-size: 13px;
                    color: rgba($color: #000, $alpha: 0.6);
                    margin-bottom: 15px;
                }
            }
            .email-body {
                padding-top: 35px;
                padding-bottom: 15px;
                font-size: 15px;
                h2 {
                    font-size: 24px;
                    margin-bottom: 25px;
                }
                p a {
                    color: #000;
                }
            }
            .email-footer {
                padding-top: 20px;
                .attachments {
                    h6 {
                        font-size: 15px;
                    }
                    .all-download {
                       font-size: 14px;
                       font-weight: 500;
                       color:$color-one; 
                    }
                    .file {
                        padding: 9px 15px;
                        border: 1px solid rgba($color: #000000, $alpha: 0.1);
                        border-radius: 10px;
                        margin-right: 15px;
                        &:hover {
                            background: rgba($color: $color-five, $alpha: 0.03);
                        }
                        .icon {
                            width: 37px;
                            height: 37px;
                            background: #F1F1F1;
                        }
                        .file-name {
                            font-size: 15px;
                            letter-spacing: -0.3px;
                            color: #000;
                        }
                        .file-size {
                            font-size: 13px;
                            letter-spacing: -0.3px;
                            color: rgba($color: #000, $alpha: 0.4); 
                        }
                    }
                }
            }
            
        }
    }
    .candidate-profile-card {
        overflow: visible;
    }
    .membership-plan-wrapper {
        border-radius: 10px;
        border: 1px solid #000;
        .column {
            padding: 38px 40px;
            &.border-left {
                border-left: 1px solid #000;
            }
        }
        h4 {
            
            font-size: 20px;
            color: #000;
        }
        p {
            letter-spacing: -0.17px;
            line-height: 30px;
            margin: 0;
        }
        h3 {
            font-size: 58px;
        }
        h6 {
            font-size: 18px;
        }
        .text1 {
            font-size: 14px;
            letter-spacing: -0.14px;
            margin: -4px 0 22px;
            span {
                color: #000;
            }
        }
        .cancel-plan {
            font-size: 15px;
            font-weight: 500;
            color: $color-one;
            text-decoration: underline;
            &:hover {
                color: #ff2730;
            }
        }
    }
}

// New Message Container
.compose-new-email-container {
    border: 1px solid rgba($color: #000, $alpha: 0.1);
    border-radius: 10px;
    background: #fff;
    .new-email-header {
        border-bottom: 1px solid rgba($color: #000, $alpha: 0.1);
        .btn-group {
            position: absolute;
            top:6px;
            right: 10px;
            z-index: 1;
            a {
                font-size: 15px;
                padding: 2px;
                color: #000;
                margin-left: 8px;
                &[aria-expanded="true"] {
                    text-decoration: underline;
                }
            }
        }
        .input-group {
            padding: 10px 0;
            font-size: 14px;
            color: #000;
            input {
                border: none;
                padding: 0 15px 0 0;
            }
        }
    }
    .compose-body textarea {
        width: 100%;
        max-width: 100%;
        height: 125px;
        max-height: 125px;
        border: none;
        font-size: 15px;
        padding: 15px 22px;
    }
    .compose-email-footer {
        padding: 15px 22px;
        .insert-file {
            position: relative;
            cursor: pointer;
            input {
                position: absolute;
                opacity: 0;
                width: 100%;
                height: 100%;
                top:0;
                left: 0;
            }
        }
    }
    .reply-btn {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        min-width: 90px;
        text-align: center;
        padding: 0 15px;
        line-height: 35px;
        border-radius: 10px;
        background: #000;
        &:hover {
            background: $color-one;
        }
    }
}
.compose-mail-offcanvas {
    right: 55px;
    bottom: 0;
    max-width: 700px;
    background: #fff;
    padding: 50px 15px 15px;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
    border: 1px solid rgba($color: #000, $alpha: 0.04);
    display: none;
    &.show {
        display: block;
    }

    .btn-close {
        position: absolute;
        top:10px;
        right: 10px;
        box-shadow: none;
    }
}



// Account Delete Popup
.remove-account-popup {
    background: #fff;
    margin: 0 auto;
    max-width: 630px;
    border-radius: 10px !important;
    padding: 50px 20px;
    h2 {
        
        font-size: 36px;
        color: #000;
        margin: 20px 0;
    }
    .confirm-btn {
        width: 80px;
        line-height: 40px;
        border-radius: 6px;
        text-align: center;
        font-size: 16px;
        color: #fff;
        background: $color-one;
        &:hover {
            background: #ff5b5b;
        }
    }
    .btn-close {
        background: none;
        border-radius: 0;
        width: auto;
        height: auto;
        padding: 0;
        font-size: 16px;
        color: #000;
        opacity: 1;
        box-shadow: none;
    }
}