#AppPageProfile .top {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 60px;
    min-height: 340px;
}

#AppPageProfile .top .image {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    margin-bottom: 20px;
}

#AppPageProfile .name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    margin-top: 5px;
    letter-spacing: 2px;    
}

#AppPageProfile .usergroup_names {
    font-weight: normal;
    font-style: italic;
    margin-top: 5px;
}

#AppPageProfile .boxes {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 20px;
}

#AppPageProfile .box {
    background: #D61317;
    border-radius: 10px;
    min-height: 80px;
    text-align: center;
    align-content: center;
    color: #FFFFFF;
}

#AppPageProfile .item {
    border-radius: 10px;
    background: #FFFFFF;
    margin-bottom: 15px;
    padding: 15px;
    display: flex;
}

#AppPageProfile .item .title {
    display: block;
    font-weight: 600;
    font-size: 13px;
    padding-top: 6px;
    letter-spacing: 1px;
    flex: 1;
}

#AppPageProfile .item .image {
    width: 30px;
    height: 30px;
    line-height: 28px;
    margin-right: 15px;
    background: #F5F1F9;
    border-radius: 4px;
    text-align: center;
}

#AppPageProfile .item .image img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    opacity: 0.5;
}

#AppPageProfile .item .icons {
    display: none;
}

#AppPageProfile .item .next {
    width: 22px;
    height: 28px;
    /*margin-right: 5px;*/
    background: url("../_img/next2-red.svg") left center no-repeat;
    background-size: contain;
}

#AppPageProfile .item.locked .next {
    width: 22px;
    height: 28px;
    /*margin-right: 5px;*/
    background: url("../_img/lock.svg") left center no-repeat;
    background-size: contain;
}

#AppPageProfile_Version {
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 90px;
    font-size: 12px;
    font-style: italic;
    opacity: 0.5;
}

.platform_ios #AppPageProfile_Version {
    margin-top: 20px;
}