.side-block {
    transform: translateX(100%);
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 300px;
}
.profile-block {
    width: 100%;
    height: 70px;
    display: flex;
    border: none;
    padding: 7px;
    background-color: #fff;
    border-radius: 9px;
    margin-bottom: 13.5px;
    cursor: pointer;
    overflow: hidden;
}
.profile-block:hover {
    background-color: #ECF2D7;
}
.profile-block__avatar {
    flex: 0 0 54px;
}
.avatar__img {
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}
.profile-block__data {
    width: 100%;
    height: 100%;
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.name {
    margin: 11px 0 3px;
    font-size: 16px;
    font-weight: 700;
    color: #424F4B;
    line-height: 100%;
}
.email {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #70827D;
    line-height: 100%;
}
.side-link__container {
    border-bottom: 1px solid #CAD5E0;
    padding: 10px 0;
}
.side-link__container:last-child {
    border-bottom: none;
}
.side-link {
    display: flex;
    padding: 7px;
    text-decoration: none;
    align-items: center;
    border-radius: 9px;
    height: 36px;
    cursor: pointer;
}
.sl-active {
    width: 100%;
    background-color: #ECF2D7;
}
.side-link > svg > path {
    fill: #70827D;
}
.side-link:hover {
    background-color: #ECF2D7;
    svg > path {
        fill: #7B9429;
    }
    .side-link__text {
        font-weight: 600;
    }
}
.side-link__text {
    margin: 0 6px 0 13px;
    font-size: 16px;
    font-weight: 400;
    color: #424F4B;
    line-height: 100%;
}
.pale-number {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #9FAAA7;
    line-height: 100%;
}
