.user-profile h1,
.user-profile h4 {
    display: grid;
    margin: 50px auto;
    position: relative;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding-top: 0em;
    margin: 0em;
}

#top-pad {
    padding-top: 2em;
}

.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 50px auto;
}

.avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}

.avatar-edit input {
    display: none;
}

.avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all .2s ease-in-out;
}

.avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-edit input+label:after {
    content: "\f040";
    font-family: 'FontAwesome';
    color: #757575;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.profile-subnav {
    display: flex;
    border-bottom: 1px solid rgb(231, 231, 233);
}

.profile-subnav-menu {
    flex-grow: 1;
    margin: 0px;
    padding: 0px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}

.scrolling-subnav {
    position: relative;
    width: 100%;
}

.scrolling-subnav-list,
.scrolling-subnav-list a {
    justify-content: center;
    display: flex;
    width: 100%;
    gap: 16px;
    white-space: nowrap;
    color: #000;
    font-weight: 500;
}

li.is-active {
    color: #0000ff !important;
}

.profile-subnav-socials {
    flex-grow: 1;
    margin: 0px;
    padding: 0px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}

.socials-subnav {
    position: relative;
    width: 100%;
}

.socials-subnav-list {
    justify-content: center;
    display: flex;
    width: 100%;
    gap: 16px;
    white-space: nowrap;
}

.socials-icon-active {
    color: #000;
    font-size: 20px;
}

.socials-icon-inactive {
    color: #b0b0b0;
    font-size: 20px;
}

.notifications {
    padding-top: 4rem;
}