.container-header {
    width: 90%;
    max-width: 500px;
    height: 120px;
    position: absolute;
    top: -76px;
    left: 50%;
    translate: -50% 0;
    display: flex;
    flex-direction: row;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

/* kiri */

.container-profile-picture {
    background-color: transparent;
    height: 100%;
    aspect-ratio: 1/1;
    border: solid 3px #ffffff;
    border-radius: 1000px;
    box-sizing: border-box;
}

.container-profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
    border-radius: 1000px;
    box-sizing: border-box;
}

/* kanan */

.container-profile-info {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* kanan atas */

.container-profile-info-top {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-sizing: border-box;
    padding: 12px 0px 0px 0px;
    overflow: hidden;
}

.container-profile-info-top .user-profile-name {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    width: 184px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    line-height: 20px;
    max-height: 40px;
    white-space: normal;
    word-break: break-word;
}

.container-profile-info-top .user-profile-id {
    line-height: 1;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    overflow: hidden;
    width: 184px;
    height: 14px;
}

/* kanan bawah */

.container-profile-info-bottom {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    gap: 18px;
    box-sizing: border-box;
    padding: 4px 0px;
    overflow: hidden;
}

.container-profile-info-bottom .user-profile-detail {
    display: flex;
    flex-direction: column;
}

.user-profile-detail span {
    overflow: hidden;
}

.user-profile-detail .count {
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
}

.user-profile-detail .type {
    line-height: 1.2;
    font-size: 10px;
    font-weight: 400;
    color: #555555;
}