.profile__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 20px 20px 0;
    background-color: #222028;
    margin-top: 20px;
    margin-bottom: 6px;
    position: relative;
    border-radius: 8px;
}
.profile__user {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}
.profile__meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 40px;
}
.profile__meta h3 {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 20px;
}
.profile__meta span {
    color: #c0c0c0;
    font-size: 14px;
    line-height: 20px;
}
.profile__meta--green h3 span {
    color: #29b474;
}
.profile__meta--red h3 span {
    color: #eb5757;
}
.profile__avatar {
    display: block;
    position: relative;
    width: 40px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #1a191f;
}
.profile__avatar img {
    width: 100%;
}
.profile__tabs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    border: none;
}
.profile__tabs li {
    margin-right: 20px;
}
.profile__tabs li:last-child {
    margin-right: 0;
}
.profile__tabs button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}
.profile__tabs button:hover {
    color: #f9ab00;
}
.profile__tabs button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    display: block;
    background: #f9ab00;
    box-shadow: none;
    transition: 0.4s ease;
    border-radius: 2px 2px 0 0;
}
.profile__tabs button.active {
    color: #f9ab00;
}
.profile__tabs button.active:before {
    height: 2px;
}
.profile__actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
}
.profile__action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.05);
    margin-right: 10px;
}
.profile__action i {
    font-size: 20px;
}
.profile__action:last-child {
    margin-right: 0;
}
.profile__action--delete {
    background-color: rgba(235,87,87,0.1);
}
.profile__action--delete i {
    color: #eb5757;
}
.profile__action--delete:hover {
    background-color: rgba(235,87,87,0.2);
}
.profile__action--delete:hover i {
    color: #eb5757;
}
.profile__action--edit {
    background-color: rgba(55,150,246,0.1);
}
.profile__action--edit i {
    color: #3796f6;
}
.profile__action--edit:hover {
    background-color: rgba(55,150,246,0.2);
}
.profile__action--edit:hover i {
    color: #3796f6;
}
.profile__action--banned {
    background-color: rgba(41,180,116,0.1);
}
.profile__action--banned i {
    color: #29b474;
}
.profile__action--banned:hover {
    background-color: rgba(41,180,116,0.2);
}
.profile__action--banned:hover i {
    color: #29b474;
}
.profile__action--view {
    background-color: rgba(255,195,18,0.1);
}
.profile__action--view i {
    color: rgba(255,195,18,0.8);
}
.profile__action--view:hover {
    background-color: rgba(255,195,18,0.2);
}
.profile__action--view:hover i {
    color: #ffc312;
}
@media (min-width: 768px) {
    .profile__content {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px;
        height: 80px;
        margin-top: 24px;
    }
    .profile__user {
        width: auto;
        margin-bottom: 0;
        margin-right: 40px;
    }
    .profile__tabs button {
        height: 80px;
    }
    .profile__actions {
        position: relative;
        top: auto;
        right: auto;
        margin-left: auto;
    }
}
@media (min-width: 1200px) {
    .profile__tabs li {
        margin-right: 40px;
    }
    .profile__tabs li:last-child {
        margin-right: 0;
    }
    .profile__user {
        margin-right: 60px;
    }
}

.profile-list{

}
.profile-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222028;
    padding: 20px 0;
}
.profile-item .profile-label{
    font-weight: 600;
}
.profile-item .profile-value{
    color: #c0c0c0;
}