@charset "utf-8";
* {
    --white-color: #fff;
    --blue-violet: #6f5a99;
    --header-height: 71px;
    --sidebar-width: 252px;
    --sidebar-width-collapse: 66px;
    --normal-fonts: "Mulish", sans-serif;
    --head-fonts: "Merriweather", serif;
    --body-fonts: Google Sans Flex,Google Sans,Helvetica Neue,sans-serif;
    --reset-fonts: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
*, *::after, *::before {
    box-sizing: border-box;
}
body {
    background-color: #f4f7f9;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: .875rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    font-family: var(--normal-fonts);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: scroll;
}
h1,h2,h3,h4,h5,h6,p {
    margin-top: 0;
}
h1,h2,h3,h4,h5,h6 {
    line-height: 1.2;
}
a {
    outline: none;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all .5s;
}
a:hover {
    color: var(--blue-violet);
}
button, textarea, input, select {
    border: 1px solid rgba(106,113,133,.3)
}
button, label, textarea, input, select {
    font: inherit;
    outline: none;
    line-height: 1.5;
    box-shadow: none;
    margin: 0;
    padding: 0;
    border-radius: .375rem;
}
[type=submit], [type=reset], button, html [type=button] {
    -webkit-appearance: button;
}
button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), [type=checkbox] {
    cursor: pointer;
}
select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-color: var(--white-color);
    background-repeat: no-repeat;
    background-position: right .5rem center;
    background-size: 16px 12px;
    font-size: 12px;
    display: block;
    padding: .375rem 2.25rem .375rem .75rem;
    border: 1px solid #dee2e6;
    outline: 0;
    appearance: none;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
p {
    font-size: 14px;
    line-height: 1.4;
}
svg:not(:root) {
    overflow: hidden;
}
g, path, circle, rect {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: 50% 50%;
    animation-duration: 18s;
    animation-direction: normal;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: none;
    outline: 0 none;
}
img:not([data-src]) {
    -webkit-animation: fadeInImages 1s ease;
    -moz-animation: fadeInImages 1s ease;
    animation: fadeInImages 1s ease;
}
@keyframes fadeInImages {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    vertical-align: top;
}
thead {
    background-color: #f4f7f9;
}
th, td {
    text-align: center;
    padding: 17px 10px;
    border-bottom: 1px dashed rgba(106,113,133,.3);
}
.fa-check {
    color: #62a83d;
}
.tomato {
    color: tomato;
}
.fa-times {
    color: red;
}
.nowrap {
    white-space: nowrap;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -.75rem;
    margin-right: -.75rem;
}
.row>div {
    position: relative;
}
.row>* {
    width: 100%;
    max-width: 100%;
    padding-left: .75rem;
    padding-right: .75rem;
}
.row .col {
    display: flex;
    flex-direction: column;
}
.col-4 {
    max-width: 40%;
}
.col-6 {
    max-width: 60%;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-end {
    text-align: right;
}
.text-gradient {
    background: linear-gradient(92deg, #6f5a99 2.7%, #e24175 53.71%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.loader-wrapper {
    position: fixed;
    background-color: var(--white-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
}
.loader {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}
.loader::before, .loader::after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    border: 1em solid var(--blue-violet);
    opacity: 0;
    animation: loader 2s linear infinite;
    content: "";
}
.loader::before {
    animation-delay: .5s;
}
.loader::after {
    opacity: 0;
}
@keyframes loader {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
.login-page, .nav-tabs, .app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li.sidebar-list .sidebar-link,
.form-group .login-remember, .app-sidebar .logo-wrapper, .page-row, .page, .page-arrow, .page-curent, .page-link,
.breadcrumb, .page-header, .nav-menus, .app-sidebar .logo-wrapper .toggle-sidebar,
.page-title, .nav-tabs .nav-item .nav-link {
    position: relative;
    display: flex;
    align-items: center;
}
.breadcrumb, .nav-menus, .nav-tabs, .project-team ul, .nav-menus>li.profile-nav .profile ul, .app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar, .sidebar-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.login-page {
    background: url("../images/login_bg.jpg") no-repeat center / cover;
    justify-content: center;
    padding: 30px 20px;
    min-height: 100vh;
}
.login {
    position: relative;
    background-color: var(--white-color);
    width: 100%;
    max-width: 450px;
    font-size: 14px;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 37px #0815420d;
}
.login h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.login .form-group input[type="text"], .login .form-group input[type="password"] {
    background-color: #f3f3ff;
    padding: 12px 10px;
    font-size: 14px;
    border: 1px dashed var(--blue-violet);
    transition: all .3s ease;
}
.form-group label {
    font-size: 14px;
    padding: 7px 0 4px;
}
.position-relative {
    position: relative;
}
.form-group .position-relative {
    display: flex;
    flex-direction: column;
}
.form-group .show-hide {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.form-group .show-hide span {
    display: inline-block;
    font-size: 13px;
    color: var(--blue-violet);
    cursor: pointer;
}
.form-group .show-hide span::before {
    content: "hide"
}
.form-group .show-hide span.show::before {
    content: "show"
}
.form-group .login-remembe input[type=checkbox] {
    padding: 0;
    opacity: 0;
}
.form-group .login-remember label {
    position: relative;
    font-size: 14px;
    padding: 0 0 0 10px;
    margin: 10px 0;
    cursor: pointer;
}
.form-group .login-remember label::before {
    background-color: #f9f9fa;
    border: 1px dashed #dfdfdf;
    display: inline-block;
    position: absolute;
    width: 19px;
    height: 19px;
    left: 0;
    color: #212529bf;
    text-align: center;
    border-radius: 3px;
    margin-left: -16px;
    content: "";
    transition: border .15s ease-in-out, color .15s ease-in-out;
}
.form-group .login-remember input[type=checkbox]:checked+label::before {
    font-family: FontAwesome;
    content: "\f00c"
}
.form-group .forgot-password {
    position: absolute;
    top: 10px;
    right: 0;
    color: var(--blue-violet);
}
.form-group [type=submit] {
    background-color: var(--blue-violet);
    border: 1px solid var(--blue-violet);
    width: 100%;
    display: inline-block;
    padding: .375rem 1.75rem;
    font-size: 14px;
    text-align: center;
    color: var(--white-color);
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.login-submit {
    position: relative;
    width: 100%;
    margin-top: 1rem;
}
.login p.text-center {
    margin-top: 1.5rem;
    margin-bottom: 0;
}
.login p.text-center a {
    margin-left: .5rem;
    color: var(--blue-violet);
}
/* ********************************* */
.app-header, .app-sidebar {
    position: fixed;
    background-color: var(--white-color);
    top: 0;
}
.app-header, .app-main {
    width: calc(100% - var(--sidebar-width));
}
.app-header {
    max-width: 100vw;
    height: var(--header-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 40px #786eb91c;
    padding: 0 15px;
    right: 0;
    transition: .5s;
    z-index: 8;
}
.app-header.active, .app-main.active {
    width: calc(100% - var(--sidebar-width-collapse));
}
.page-header {
    width: 100%;
    justify-content: space-between;
}
.page-header .header-welcome {
    position: relative;
    line-height: 1.4;
}
.page-header .header-welcome h4 {
    position: relative;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: -1px;
}
.page-header .header-welcome p {
    color: #9b9b9b;
    margin-bottom: 0;
}
.nav-menus {
    margin-left: auto;
    justify-content: flex-end;
}
.nav-menus>li {
    position: relative;
    background-color: #f4f7f9;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}
.nav-menus>li:last-child {
    margin-right: 0;
}
.nav-menus>li.profile-nav {
    background-color: transparent;
}
.nav-menus>li.profile-nav .profile {
    position: absolute;
    right: 0;
    top: 100%;
    padding-top: 18px;
    color: #2c323f;
    transform: translateY(30px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all linear .3s;
    z-index: 8;
}
.nav-menus>li.profile-nav:hover .profile {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transform: translateY(0);
}
.nav-menus>li.profile-nav .profile ul {
    background-color: var(--white-color);
    width: 160px;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    border-radius: 5px;
    box-shadow: 0 0 20px #59667a1a;
}
.nav-menus>li.profile-nav .profile ul li {
    padding: 10px;
}
.nav-menus>li.profile-nav .profile ul li a {
    display: block;
}
.nav-menus>li.profile-nav .profile ul li:hover a {
    color: blueviolet;
}
.nav-menus>li.profile-nav .profile ul li svg {
    width: 16px;
    vertical-align: bottom;
    margin-right: 10px;
}
.nav-menus>li .notification-box {
    position: relative;
}
.nav-menus>li .badge {
    position: absolute;
    right: -5px;
    top: -6px;
    padding: 2px 4px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50rem;
}
.nav-menus svg {
    width: 20px;
    height: 20px;
    stroke: #3d434ae6;
    fill: none;
    vertical-align: sub;
}
.nav-menus>li.profile-nav .profile-media {
    display: flex;
    align-items: center;
}
.nav-menus>li.profile-nav .profile-media img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--white-color);
}
.nav-menus>li.profile-nav .profile-user {
    flex: 1;
    flex-grow: 1;
    min-width: 87px;
    max-width: 120px;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-left: 15px;
    line-height: 1;
    overflow: hidden;
}
.nav-menus>li.profile-nav .profile-user .profile-username,
.nav-menus>li.profile-nav .profile-user p {
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.nav-menus>li.profile-nav .profile-user .profile-username {
    display: inline-block;
    font-weight: 600;
}
.nav-menus>li.profile-nav .profile-user p {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1;
    color: #3d434ab3;
}
.header-search {
    position: relative;
    width: 300px;
}
.header-search input {
    background-color: transparent;
    border-color: transparent;
    width: auto;
    cursor: pointer;
}
.header-search svg {
    width: 20px;
    height: 20px;
    stroke: #3d434ae6;
    fill: none;
    vertical-align: sub;
    margin-right: 8px;
}
.app-main {
    min-height: 100vh;
    align-self: flex-end;
    padding-top: var(--header-height);
    transition: .5s;
}
.page-title {
    position: relative;
    background-color: var(--white-color);
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px dashed rgba(0,0,0,.2);
}
.page-title .title-main {
    position: relative;
    font-family: var(--head-fonts);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    margin-left: .25rem;
}
.breadcrumb-item {
    font-weight: 600;
    color: #3d434ae6;
}
.breadcrumb-item::before {
    color: #3d434ae6;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem;
}
.breadcrumb-item+.breadcrumb-item::before {
    padding-right: .5rem;
    content: "/"
}
.breadcrumb .current {
    color: var(--blue-violet);
}
.breadcrumb-link svg {
    width: 16px;
    height: 16px;
    stroke: #3d434ae6;
    vertical-align: -2px;
}
.page-main {
    position: relative;
    padding: 0 15px;
}
.box-h-wrapper {
    position: relative;
    padding: 0 .75rem;
}
.project-h .project-h-header .row {
    margin: 15px;
}
.project-h .project-h-header .col {
    max-width: calc(100% / 2);
}
.project-h .project-h-header .col:last-child:not(:first-child) {
    align-items: flex-end;
}
.btn {
    padding: .375rem 1.75rem;
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: .375rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn svg {
    vertical-align: -3px;
    height: 16px;
    margin-right: 5px;
}
.btn .text {
    position: relative;
    font-weight: 700;
    display: inline-block;
    transform: translateY(-1px);
}
.btn-primary {
    background-color: var(--blue-violet);
    border-color: var(--blue-violet);
    color: var(--white-color);
}
.btn-primary:hover {
    color: var(--white-color);
}
.box-border {
    position: relative;
    background-color: var(--white-color);
    background-clip: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 17px;
    margin-bottom: 30px;
    word-wrap: break-word;
    box-shadow: 0 9px 20px #2e235e12;
    transition: all .3s ease;
}
.box-border:hover {
    box-shadow: 0 0 40px #0815420d;
    transition: all .3s ease;
}
.nav-tabs {
    flex-wrap: nowrap;
    margin-bottom: 0;
    gap: .5rem;
}
.nav-tabs .nav-item .nav-link {
    background-color: #f2f2f2;
    border: 1px dashed transparent;
    border-radius: 6px;
    padding: 5px 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}
.nav-tabs .nav-item.active .nav-link {
    background-color: var(--blue-violet);
    color: var(--white-color);
}
.nav-tabs .nav-item .nav-link svg {
    height: 18px;
    vertical-align: -3px;
    margin-right: 5px;
}
.box-h-wrapper .box-content {
    padding: 16px 24px;
}
.tabs-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.tabs-content .tab-content {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.tabs-content .tab-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.box-h-wrapper .box-content .tab-content {
    margin-bottom: -30px;
}
.project-h .project-body .col {
    max-width: calc(100% / 3);
}
.project-box {
    position: relative;
    border: 1px dashed var(--blue-violet);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}
.project-box.done {
    border-color: #0a7e43;
}
.badge {
    background-color: var(--blue-violet);
    padding: .44em .7em;
    font-size: .75em;
    font-weight: 500;
    color: var(--white-color);
    border-radius: .375rem;
    line-height: 1;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}
.project-box.done .badge {
    background-color: #0a7e43;
}
.project-box .badge {
    position: absolute;
    right: 30px;
    top: 15px;
    line-height: 13px;
}
.project-box .badge:after {
    position: absolute;
    background-color: #6f5a99;
    height: 20px;
    width: 1px;
    top: -15px;
    right: 20px;
    content: "";
}
.project-box.done .badge:after {
    background-color: #0a7e43;
}
.project-box .project-title {
    max-width: calc(100% - 50px);
    font-family: var(--head-fonts);
    line-height: 1.4;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    overflow: hidden;
}
.project-box.done .project-title a:hover {
    color: #0a7e43;
}
.project-box .project-categories {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    margin-top: 4px;
}
.project-box .project-categories img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: .375rem;
}
.project-box .project-categories span {
    flex: 1;
    flex-grow: 1;
}
.project-box .project-meta {
    background-color: #6f5a991a;
    padding: 7px;
    margin-left: -.75rem;
    margin-right: -.75rem;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
}
.project-box.done .project-meta {
    background-color: #0a7e431a;
}
.project-box .project-meta .meta-item {
    position: relative;
    width: 50%;
    padding-left: .75rem;
    padding-right: .75rem;
    margin-bottom: 5px;
}
.project-box .project-meta .meta-item:nth-child(2n) {
    font-weight: 500;
    color: var(--blue-violet);
}
.project-box.done .project-meta .meta-item:nth-child(2n) {
    color: #0a7e43;
}
.project-meta .meta-item:nth-last-child(-n+2) {
    margin-bottom: 0;
}
.project-team ul, .project-team li {
    display: inline-block;
}
.project-team li+li {
    margin-left: -7%;
}
.project-team li.last-child {
    margin-left: .5rem;
}
.project-team li.last-child p {
    margin-bottom: 0;
    font-size: 12px;
}
.project-team img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white-color);
    transition: .5s;
}
.project-team img:hover {
    transform: translateY(-4px) scale(1.02);
    transition: .5s;
}
.project-status {
    margin-top: 1.5rem;
}
.project-status .counter {
    margin-top: 4px;
    display: flex;
    align-items: flex-start;
}
.project-status .counter p {
    margin-bottom: 5px;
    font-weight: 800;
    letter-spacing: .7px;
}
.project-status .text-end {
    opacity: .5;
    flex: 1;
    flex-grow: 1;
}
.project-status .text-end span {
    display: inline-block;
}
.progess {
    background-color: #e9ecef;
    height: 5px;
    display: flex;
    border-radius: .375rem;
    overflow: hidden;
}
.progess .progressbar {
    background-color: var(--blue-violet);
    background-size: 1rem 1rem;
    width: 70%;
    /*
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    animation: 1s linear infinite progress-bar-stripes;
    */
}
.project-box.done .progess .progressbar {
    background-color: #0a7e43;
    width: 100%;
}
@keyframes progress-bar-stripes {
    0% {
        background-position: 40px 0;
    }
    100% {
        background-position: 0 0;
    }
}
.update-h {
    position: relative;
    border: 1px dashed var(--blue-violet);
    padding: 2em;
}
.update-h h3 {
    font-family: var(--head-fonts);
    margin-bottom: .75em;
}
.update-h p {
    margin-bottom: 0;
}
.table-row {
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-row th {
    font-size: 15px;
    font-weight: 600;
    padding: 12px 10px;
    white-space: nowrap;
}
.table-row tbody td {
    padding: 12px 10px;
    font-size: 15px;
}
.table-row .no-pad{padding-left: 0;padding-right: 0;min-width: 40px}
.cus-info{display: flex;flex-direction: column;flex-wrap: wrap;font-weight:600}
.table-row .svg-icon {
    position: relative;
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transform: translateY(5px);
}
.table-row tr td:last-child .svg-icon {
    transform: translateY(3px);
}
.table-row [type=checkbox] {
    position: relative;
    width: 16px;
    height: 16px;
    padding: 0;
    vertical-align: middle;
}
.table-row [type=checkbox]::before {
    position: absolute;
    left: .25rem;
    top: .225rem;
    width: .75rem;
    height: .375rem;
    border: 2px solid #6f5a99;
    border-top-style: none;
    border-right-style: none;
    transform: rotate(-45deg) scale(0);
    transition: transform .4s cubic-bezier(.45,1.8,.5,.75);
    content: "";
    z-index: 1;
}
.table-row [type=checkbox]:checked::before {
    transform: rotate(-45deg) scale(1);
}
.table-row [type=checkbox]::after {
    position: absolute;
    background-color: var(--white-color);
    top: -.125rem;
    left: 0;
    width: 1.3rem;
    height: 1.3rem;
    border: 2px solid rgba(106,113,133,.3);
    cursor: pointer;
    content: "";
}
.page-row {
    justify-content: space-between;
    margin-bottom: 20px;
}
.page-row .counters a {
    color: #0000ff;
    border-bottom: 1px solid;
    margin-left: .25rem;
}
.page {
    margin-left: auto;
    justify-content: flex-end;
    font-weight: 500;
    gap: .5rem;
}
.page-arrow, .page-curent, .page-link {
    background-color: var(--white-color);
    justify-content: center;
    height: 25px;
    min-width: 25px;
    border-radius: .25rem;
    border: 1px solid rgba(0 0 0 / 10%);
}
.page-curent {
    background-color: var(--blue-violet);
    color: var(--white-color);
    border-color: transparent;
}
.page-widget {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: .75em;
    margin-bottom: 30px;
}
.btn-secondary {
    background-color: #e24175;
    border-color: #e24175;
    color: var(--white-color);
}
.formaddnew {
    margin-bottom: 30px;
}
.formaddnew .row {
    margin-left: -.5rem;
    margin-right: -.5rem;
}
.formaddnew .form-group {
    margin-top: 1rem;
    padding-left: .5rem;
    padding-right: .5rem;
}
.formaddnew .form-group.col-2 {
    max-width: calc(100% - (40% + (100% / 3)))
}
.formaddnew .form-group.col-3 {
    max-width: calc(100% / 3);
}
.formaddnew .form-group.col-4 {
    max-width: 40%;
}
.formaddnew .form-group.col-5 {
    max-width: calc(100% / 2);
}
.formaddnew .form-group label {
    margin-bottom: 6px;
    margin-left: .375rem;
    padding: 0;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
}
.formaddnew .form-group input:not([type=checkbox]), .formaddnew .form-group select, .formaddnew .form-group textarea {
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
}
.formaddnew .form-group input:not([type=checkbox]), .formaddnew .form-group textarea {
    background-clip: padding-box;
    border: 1px dashed rgba(106,113,133,.3);
    padding: .375rem .75rem;
    cursor: pointer;
}
.formaddnew .form-group input::placeholder, .formaddnew .form-group textarea::placeholder {
    font-size: 14px;
}
.formaddnew .form-group input:focus, .formaddnew .form-group textarea:focus {
    border-color: #6f5a99;
    box-shadow: 0 8px 11px #6f5a991a;
    background-color: #6f5a9912;
}
.formaddnew .form-group select {
    background-position: right .75rem center;
    min-height: 37.6px;
    font-size: 14px;
}
.formaddnew .form-group select:focus {
    border-color: #6f5a99;
    box-shadow: 0 8px 11px #6f5a991a;
    background-color: #6f5a9912;
}
.formaddnew .form-group .form-border {
    padding: 14px;
    border-radius: .375rem;
    border: 1px solid #dee2e6;
}
.formaddnew .form-group .form-border h6 {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
}
.formaddnew .form-group .form-border .form-checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1;
    gap: 18px;
}
.formaddnew .form-group .form-border .form-item {
    display: flex;
    align-items: center;
    gap: .5em;
}
.formaddnew .form-group .form-border .form-item * {
    margin: 0;
    padding: 0;
    font-weight: 400;
    cursor: pointer;
}
.formaddnew .form-group .form-border .form-checkbox [type=checkbox] {
    background-color: var(--white-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    appearance: none;
    width: 1em;
    height: 1em;
    border: 1px solid rgba(0 0 0 / 30%);
    border-radius: .25em;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    box-sizing: border-box;
    transition: .3s;
}
.formaddnew .form-group .form-border .form-checkbox input:focus {
    border-color: #6f5a99;
}
.formaddnew .form-group .form-border .form-checkbox [type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.formaddnew .form-group .form-border .form-checkbox [type=checkbox]:checked {
    background-color: #6f5a99;
    border-color: #6f5a99;
}
.formaddnew .form-group .position-relative.upload a {
    position: absolute;
    background-color: rgba(0 0 0 / 5%);
    top: 50%;
    left: 2px;
    height: calc(100% - 4px);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-color: transparent;
    outline: 0 none;
    box-shadow: none;
    padding-left: 20px;
    padding-right: 20px;
}
.formaddnew .form-group .position-relative.upload input {
    padding-left: 120px;
}
.formaddnew .form-group.radio input[type=radio] {
    position: absolute;
    opacity: 0;
}
.formaddnew .form-group.radio label {
    position: relative;
    display: inline-block;
    font-size: 12px;
    padding-left: 25px !important;
}
.formaddnew .form-group.radio label::before {
    position: absolute;
    background-color: #fff;
    width: 19px;
    height: 19px;
    left: 20px;
    display: inline-block;
    margin-left: -20px;
    border: 1px solid #efefef;
    border-radius: 50%;
    transition: border .15s ease-in-out;
    content: "";
}
.formaddnew .form-group.radio [type=radio]+label:before {
    border-color: var(--blue-violet);
}
.formaddnew .form-group.radio label::after {
    position: absolute;
    background-color: #898989;
    display: inline-block;
    width: 9px;
    height: 9px;
    left: 25px;
    top: 5px;
    margin-left: -20px;
    border-radius: 50%;
    transform: scale(0);
    transition: transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    content: "";
}
.formaddnew .form-group.radio [type=radio]:checked+label:after {
    background-color: var(--blue-violet);
    transform: scale(1);
}
.formaddnew .form-heading {
    font-family: "Playfair Display", serif;
    margin-bottom: 0;
    font-weight: 700;
    color: #9C27B0;
}
.formaddnew .form-heading:not(:first-child) {
    margin-top: 1rem;
}
.m-b-20{margin-bottom: 20px;}
.pe-sm-3 {padding-right: 1rem !important;}
.common-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.common-space {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.common-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.common-project-header {
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.common-project-header > .common-align {
    gap: 16px;
}
ul.common-align {
    margin: 0;
    padding: 0;
    list-style: none;
}
.common-project-header .common-space {
    justify-content: flex-start;
    align-items: flex-start;
}
.common-project-header .common-align:last-child .common-align li:first-child {
    padding-right: 15px;
}
.common-project-header .common-align:last-child .common-align li + li {
    border-left: 1px solid rgba(82, 82, 108, 0.8);
    padding-left: 15px;
}
.common-align svg {
    width: 18px;
    height: 18px;
    stroke: #52526c;
    vertical-align: sub;
    margin-right: 6px;
    margin-left: 10px;
}
.common-project-header .common-align:last-child .common-align li span {
    display: inline-block;
}
.common-project-header .project-title {
    font-family: var(--reset-fonts);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0
}
.common-project-header .project-team img {
    width: 40px;
    height: 40px;
}
.common-project-header .project-team li.last-child p {
    font-size: 15px;
}
.common-project-header .badge {
    background-color: #6f5a9921;
    margin-left: .5rem;
    font-weight: 600;
    line-height: 1.1;
    padding: .675em 1em;
    font-size: 12px;
    color: var(--blue-violet);
}
.common-project-header .c-o-light {
    font-size: 15px;
}
.common-project-header .btn {
    min-height: inherit
}
.timeline-page {
    padding-left: 16px;
    padding-right: 16px;
}
.timeline {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}
/*
.timeline::before {
    position: absolute;
    border: 1px dashed #75758a;
    left: 2px;
    top: 24px;
    height: calc(100% - 44px);
    content: "";
}
*/
.timeline .timeline-item {
    background-color: #f4f7f9;
    display: flex;
    border-radius: .75rem;
    padding: .75rem 1rem;
    margin-bottom: 24px;
}
.timeline .timeline-item:first-child:not(:last-child) {
    margin-top: .5rem;
}
.timeline .activity-content {
    width: 100%;
}
.timeline .datetime {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.timeline .activity-profile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    font-size: 16px;
    font-weight: 700;
}
.timeline .activity-profile img {
    background-color: var(--while-color);
    padding: .25rem;
    border: 1px solid #e9edf1;
    width: 50px;
    height: 50px;
    margin-right: 6px;
    border-radius: 50%;
}
.timeline .activity-profile .activity-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    font-weight: 700;
    gap: .375em;
    color: #0000ff;
}
.timeline .activity-profile .activity-text.customer {
    color: #008000;
}
.timeline .activity-profile .activity-text span {
    font-weight: 400;
    color: #2b2b2b;
    font-size: 12px;
}
.timeline .activity-time {
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    color: #3f475a;
    box-shadow: inset 0 0 0 0em rgba(27, 139, 227, 0.1);
}
.timeline .activity-time a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: .5rem .375rem;
}
.timeline .activity-time a svg {
    position: relative;
    width: 18px;
    height: 18px;
    stroke: currentColor;
}
.mt-3 {
    margin-top: 1rem;
}
.timeline .activity-content .mt-3 {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(82, 82, 108, .8);
    border-top: 1px solid #ccc;
    padding: 1em;
    margin-top: .5rem;
}
.timeline .activity-content .mt-3 p {
    font-size: 15px;
    line-height: 1.7;
}
.activity-dot {
    position: relative;
    background-color: #345463;
    display: none;
    min-width: 10px;
    height: 10px;
    outline: 6px solid rgba(52, 84, 99, .1);
    transform: translateY(24px) translateX(-3px) rotate(45deg);
    z-index: 2;
}
.timeline .upload-doc {
    background-color: #F7F8F9;
    padding: 12px 15px;
    min-width: calc(234px + 71 * (100vw - 320px) / 1600);
    width: calc(234px + 71 * (100vw - 320px) / 1600);
}
.td-last-login {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #6b7280;
}
.td-date, .td-overdue, .td-status, .td-done, .td-cancel {
    display: inline-block;
    line-height: 1;
    font-size: 13px;
    border-radius: 4px;
    white-space: nowrap;
    text-wrap: nowrap;
    padding: .375rem .5em;
    border: 1px dashed transparent;
}
.td-date {
    border-color: currentColor
}
.td-overdue, .td-cancel {
    background-color: #FCE4EC;
    border-color: #E91E63;
    color: #E91E63;
}
.td-status {
    background-color: #EDE7F6;
    border-color: #512DA8;
    color: #512DA8;
}
.td-done {
    background-color: #E8F5E9;
    border-color: #4CAF50;
    color: #4CAF50;
}
.d-flex {
    display: flex !important;
}
.timeline .upload-doc .d-flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.timeline .upload-doc svg {
    width: 29px;
    height: 39px;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.timeline .upload-doc p {
    font-size: 15px;
    line-height: 1.5;
    color: #000;
}
.table-row .td-jobs {
    padding: .25em 0;
}
.table-row .td-jobs h3 {
    font-family: 'Merriweather', serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: .25em;
}
.table-row .td-jobs p {
    margin-bottom: 0;
    font-style: italic;
    color: #6b7280;
}
.team-leader, .table-row .team-leader, .common-project-header .team-leader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
}
.team-leader img {
    background-color: var(--white-color);
    border-radius: 50%;
    padding: 2px;
    width: 40px;
    height: 40px;
}
.common-project-header .team-leader img {
    width: 50px;
    height: 50px;
}
.team-leader .leader-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    font-weight: 700;
    gap: .25em;
}
.team-leader .leader-text span {
    font-weight: 400;
    color: #6b7280;
    font-size: 13px;
}
.table-row .td-action {
    position: relative;
    display: flex;
    gap: .75em;
    justify-content: center;
    align-items: center;
}
.table-row .td-action a {
    display: inline-block;
}
.table-row .td-action svg.svg-icon {
    transform: none !important;
}
.table-row .file-text {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.table-row .file-text svg {
    width: 20px;
    height: 20px;
}
.box-update, .box-update p {
    font-size: 16px;
    line-height: 1.7;
}
.profiles {
    background-color: #fff;
    border-radius: 1em;
    padding: 2em;
    margin-bottom: 2em;
}
.profiles .team-leader {
    gap: 1em;
}
.profiles .team-leader img {
    width: 110px;
    height: 110px;
    border: 2px solid #fff;
    margin-left: 1em;
    box-shadow: 0 9px 20px #2e235e12;
}
.profiles .team-leader .leader-text {
    font-size: 18px;
    font-weight: 800;
}
.profiles .team-leader .leader-text span {
    font-size: 15px;
}
.profile-general {
    background-color: #fff;
    margin: 0;
    padding: 1.25em 1.5em;
    list-style: none;
    border-radius: 1em;
    box-shadow: 0 9px 20px #2e235e12;
    overflow: hidden;
}
.profile-general li {
    font-family: var(--reset-fonts);
    font-size: 15px;
    padding: 10px;
}
.profile-general li:not(:last-child) {
    border-bottom: 1px dashed rgba(106,113,133,.3);
}
.profile-general li:nth-child(odd) {
    background-color: #f7f8f9
}
.profile-general li span {
    display: inline-block;
}
.profile-general li span:first-child:not(:last-child) {
    min-width: 180px;
}
.profile-general li span:last-child {
    font-weight: 500;
    color: #345463;
}
/* Sidebar */
.app-sidebar {
    width: var(--sidebar-width);
    min-height: 100vh;
    box-shadow: 0 0 21px #59667a1a;
    left: 0;
    z-index: 9;
}
.app-sidebar.active {
    max-width: var(--sidebar-width-collapse);
    transition: all .3s ease;
}
.app-sidebar .logo-wrapper {
    padding: 17px 24px;
    box-shadow: -9px 0 20px #59667a1a;
    height: 73px;
}
.app-sidebar .logo-wrapper .logo-link {
    display: flex;
    gap: .5rem;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all .3s ease;
}
.app-sidebar .logo-wrapper .text-gradient {
    font-size: 26px;
    font-weight: 700;
}
.app-sidebar .logo-wrapper svg {
    height: 36px;
    width: auto;
    opacity: .75;
}
.app-sidebar.active .logo-wrapper .logo-link {
    display: none;
}
.app-sidebar.active .logo-wrapper {
    justify-content: center;
}
.app-sidebar .logo-wrapper .toggle-sidebar {
    position: absolute;
    background-color: transparent;
    border: 1px solid transparent;
    top: 50%;
    right: 16px;
    color: var(--blue-violet);
    opacity: 1;
    border-radius: 6px;
    padding: 6px 8px;
    transform: translateY(-50%);
}
.app-sidebar.active .logo-wrapper .toggle-sidebar {
    right: 50%;
    transform: translate(50%, -50%);
    justify-content: center;
    width: 100%;
    height: 100%;
}
.app-sidebar .logo-wrapper .toggle-sidebar i {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all .5s ease;
}
.app-sidebar .logo-wrapper .toggle-sidebar i::before {
    content: "\f192"
}
.app-sidebar.active .logo-wrapper .toggle-sidebar i::before {
    content: "\f10c"
}
.app-sidebar.active .logo-wrapper .toggle-sidebar:hover i::before {
    content: "\f192"
}
.app-sidebar .sidebar-main {
    display: block;
}
.app-sidebar .sidebar-main .sidebar-scroll {
    display: block;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 90px);
    margin-bottom: 30px;
    transition: color 1s ease;
    overflow: auto;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar::-webkit-scrollbar {
    width: 0;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li {
    position: relative;
    width: 100%;
    display: block;
    transition: all .4s ease-in-out;
}
.app-sidebar.active .sidebar-main .sidebar-scroll .sidebar-scrollbar>li {
    max-width: var(--sidebar-width-collapse);
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li.sidebar-main-title {
    padding: 20px 0 12px 20px;
}
.app-sidebar.active .sidebar-main .sidebar-scroll .sidebar-scrollbar>li.sidebar-main-title {
    display: none;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li.sidebar-main-title div {
    padding: 6px 10px;
    width: -moz-fit-content;
    width: fit-content;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li.sidebar-main-title h6 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: .4px;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li.sidebar-list .sidebar-link {
    padding: 14px 20px;
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
    transition: all .4s ease-in-out;
}
.app-sidebar.active .sidebar-main .sidebar-scroll .sidebar-scrollbar>li.sidebar-list .sidebar-link {
    padding: 12px 14px;
    justify-content: center;
    transition: all .4s ease-in-out;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar .sidebar-list:hover .sidebar-link,
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar .sidebar-list.active .sidebar-link {
    background-color: var(--blue-violet);
    color: var(--white-color);
    transition: all .4s ease-in-out;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    display: inline-block;
    stroke: currentColor;
    transition: all .4s ease-in-out;
}
.app-sidebar.active .sidebar-main .sidebar-scroll .sidebar-scrollbar>li svg {
    margin: 0 10px;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li .text {
    text-transform: capitalize;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 140px;
    font-size: 15px;
    line-height: 1.2;
    transition: all .4s ease-in-out;
}
.app-sidebar.active .sidebar-main .sidebar-scroll .sidebar-scrollbar>li .text {
    display: none;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li .arrow {
    position: absolute;
    right: 20px;
    top: 14px;
    display: block;
}
.app-sidebar.active .sidebar-main .sidebar-scroll .sidebar-scrollbar>li .arrow {
    display: none;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li .arrow i {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all .4s ease-in-out;
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li .arrow i::before {
    content: "\f105";
}
.app-sidebar .sidebar-main .sidebar-scroll .sidebar-scrollbar>li.active .sidebar-link .arrow i::before {
    content: "\f107";
}
.sidebar-scrollbar .sidebar-list .sidebar-submenu {
    position: relative;
    width: 100%;
    max-height: 0;
    transition: all .4s ease-in-out;
    overflow: hidden;
}
.sidebar-scrollbar .sidebar-list.active .sidebar-submenu {
    transition: all .4s ease-in-out
}
.app-sidebar.active .sidebar-scrollbar .sidebar-list .sidebar-submenu {
    display: none;
}
.sidebar-scrollbar .sidebar-list .sidebar-submenu::before {
    position: absolute;
    background-color: currentColor;
    width: 1px;
    height: 0;
    top: 6px;
    left: 27px;
    transition: height .5s;
    content: "";
}
.sidebar-scrollbar .sidebar-list.active .sidebar-submenu::before {
    height: calc(100% - 12px);
}
.sidebar-submenu .sub-link {
    position: relative;
    display: block;
    padding: 7px 25px 7px 62px;
    font-weight: 500;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s ease;
    overflow: hidden;
}
.sidebar-submenu .sub-link::before {
    position: absolute;
    background-color: currentColor;
    width: 5px;
    height: 5px;
    left: 43px;
    top: 50%;
    border-radius: 100%;
    transform: translateY(-50%);
    content: "";
}
@media screen and (max-width:480px) {
    body {
    }
    .login-page {
        background: var(--white-color);
        align-items: flex-start;
    }
    .login {
        max-width: 100%;
    }
    .login {
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
        box-shadow: none;
    }
    .login h4 {
        font-size: 24px;
    }
    .form-group p, .form-group label {
    }
    .login .form-group [type=submit] {
        padding-top: .875rem;
        padding-bottom: .875rem;
    }
    .login h4, .login p.text-center {
        margin-top: 1rem;
    }
}


















