/*--dashboard-nav--*/
.dashboard-nav-list li {
    display: block;
}

.dashboard-nav-list a {
    position: relative;
    display: block;
    font-size: 14px;
    text-decoration: none;
    color: var(--black);
    padding: 8px 8px 8px 34px;
    border-radius: 6px;
}

.dashboard-nav-list a span {
    position: absolute;
    top: 10px;
    left: 8px;
    z-index: 1;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    opacity: 0.6;
}

.dashboard-nav-list a svg {
    width: 100%;
    height: 100%;
}

.dashboard-nav-list a:hover {
    background-color: #e8e8e8;
}

.dashboard-nav-list li.active a {
    color: #5a43d6;
    background-color: #e5e6ff;
}
.navigation-box.dashboard-navigation-box .project-create-btn-box .btn {
    border: none;
}

.logout-btn-box {
    padding: 10px;
    background-color: #FFF;
    border-top: var(--bordercolor) 1px solid;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.logout-btn-box .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: none;
}
.logout-btn-box .btn svg {
    width: 20px;
    height: 20px;
}
/*--dashboard-nav-end--*/


/*--profile-page--*/
.profile-content {
    min-height: 100%;
    padding: 30px;
}
.profile-photo {
	padding-bottom: 22px;
}
.profile-photo .user-photo {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
}

.profile-photo .user-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.profile-photo .user-photo input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
}
.profile-photo .user-photo span.edit-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background-color: hsl(0deg 0% 0% / 40%);
}

.profile-photo .user-photo span.edit-icon svg {
    width: 25px;
    height: 25px;
    opacity: 0;
    transform: scale(0);
    transition: all .3s ease;
}
.profile-photo .user-photo:hover span.edit-icon svg{
	opacity: 1;
	transform: scale(1);
}
.details-content-main .submit-box {
    text-align: right;
}

.details-content-main .submit-box button {
    width: auto;
    padding: 0 25px;
    min-width: 160px;
    text-align: center;
}
/*--profile-page-end--*/