.page-profile {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 190px);
    overflow-y: auto;
    padding: 0 16px 30px;
    color: #606060;
}

/* ====================== */
/* HEADER */
/* ====================== */
.profile-header {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 25px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
    background:
        linear-gradient(135deg,
            #82D6D6,
            #4EA7E3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, .2);
}

.profile-avatar i {
    font-size: 45px;
    color: white;
}

.profile-header h3 {
    margin-top: 15px;
    font-weight: 700;
}

.profile-header p {
    margin-top: -5px;
    color: grey;
}

/* ====================== */
/* CARD */
/* ====================== */
.profile-card {
    background: white;
    border-radius: 25px;
    padding: 20px;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, .1);
}

.profile-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.profile-item:last-child {
    margin-bottom: 0;
}

.profile-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
}

.profile-icon i {
    font-size: 18px;
}

.profile-content {
    flex: 1;
}

.profile-label {
    font-size: 12px;
    color: grey;
}

.profile-content h6 {
    margin: 0;
    font-weight: 700;
}

/* ====================== */
/* BRAND */
/* ====================== */
.profile-brand-wrapper {
    margin-top: 25px;
}

.profile-title {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 700;
}

.profile-brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-brand-item {
    padding:
        10px 18px;
    border-radius: 30px;
    background:
        linear-gradient(135deg,
            #4EA7E3,
            #82D6D6);
    color: white;
    font-size: 13px;
    font-weight: 600;
    box-shadow:
        0 4px 10px rgba(0, 0, 0, .15);
}

/* ====================== */
/* LOGOUT */
/* ====================== */
.profile-logout {
    margin-top: 30px;
    margin-bottom: 30px;
}