.page[name='profile'] > .header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 64px;
}
.page[name='profile'] > .header > .side > .button {
    padding: 20px;
}
.page[name='profile'] > .header > .side > .button > img {
    display: block;
    height: 24px;
}
.page[name='profile'] > .header > .center {
    display: table;
    width: calc(100% - 128px);
    height: 100%;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}
.page[name='profile'] > .header > .center > div {
    display: table-cell;
    font-size: 18px;
    vertical-align: middle;
    font-weight: bold;
}
.page[name='profile'] > .content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
}
.page[name='profile'] > .content > .gradient {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 320px;
}
.page[name='profile'] > .content > .top {
    position: absolute;
    right: 50%;
    width: calc(100% - 64px);
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    max-width: 600px;
    transform: translateX(50%);
}
.page[name='profile'] > .content > .top > .information > .image {
    width: 104px;
    height: 104px;
    margin: -60px auto 16px auto;
    border-radius: 50%;
}
.page[name='profile'] > .content > .top > .information > .image > img {
    width: 104px;
    height: 104px;
}
.page[name='profile'] > .content > .top > .information > .image > img[src='img/defaultProfile.png'] {
    padding: 15px;
}
.page[name='profile'] > .content > .top > .information > .image > img:not([src='img/defaultProfile.png']) {
    border-radius: 50%;
}
.page[name='profile'] > .content > .top > .information > .name {
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 16px;
}
.page[name='profile'] > .content > .cards {
    max-width: 600px;
}
.page[name='profile'] > .content > .cards > div {
    display: inline-table;
    width: calc(50% - 20px);
    margin-bottom: 20px;
    border-radius: 24px;
    text-align: center;
    padding: 16px;
    min-height: 148px;
}
.page[name='profile'] > .content > .cards > div:not(:last-child) {
    margin-right: 20px;
}
.page[name='profile'] > .content > .cards > div > .title {
    margin-bottom: 10px;
    min-height: 63px;
}
.page[name='profile'] > .content > .cards > div > .title > span {
    font-size: 12px;
}
.page[name='profile'] > .content > .cards > div > .price {
    font-size: 20px;
    margin-bottom: 13px;
    overflow: hidden;
}
.page[name='profile'] > .content > .cards > div > .price > .stars {
    text-align: center;
    width: 100%;
    height: 25px;
}
.page[name='profile'] > .content > .cards > div > .price > .stars > div {
    display: inline-block;
    width: 19px;
    height: 18px;
    background-size: cover;
    margin: 4px;
}
.page[name='profile'] > .content > .cards > div > .description {
    font-size: 11px;
    padding-right: 10px;
    padding-left: 10px;
}
@media (max-width: 799px) {
    .page[name='profile'] > .content > .cards {
        margin-right: 32px;
        margin-left: 32px;
    }
}
@media (min-width: 800px) { 
    .page[name='profile'] > .content > .cards {
        margin-right: auto;
        margin-left: auto;
    }
}