.page[name='editProfile'] > .header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 64px;
}
.page[name='editProfile'] > .header > .side {
    width: 64px;
}
.page[name='editProfile'] > .header > .side > .button {
    padding: 20px;
}
.page[name='editProfile'] > .header > .side > .button > img {
    display: block;
    height: 24px;
}
.page[name='editProfile'] > .header > .center {
    display: table;
    width: calc(100% - 128px);
    height: 100%;
    text-align: center;
}
.page[name='editProfile'] > .header > .center > div {
    display: table-cell;
    font-size: 18px;
    font-weight: 600;
    vertical-align: middle;
}
.page[name='editProfile'] > .content {
    position: absolute;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px;
    overflow-y: auto;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}
.page[name='editProfile'] > .content > .info {
    position: relative;
    margin-bottom: 32px;
}
.page[name='editProfile'] > .content > .info > .image {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
}
.page[name='editProfile'] > .content > .info > .image > img {
    position: absolute;
    object-fit: cover;
    border-radius: 50%;
}
.page[name='editProfile'] > .content > .info > .image > img[src='img/defaultProfile.png'] {
    top: 50%;
    left: 50%;
    width: 35%;
    height: 35%;
    transform: translate(-50%, -50%);
}
.page[name='editProfile'] > .content > .info > .image > img:not([src='img/defaultProfile.png']) {
    top: 0;
    width: 100%;
    height: 100%;
}
.page[name='editProfile'] > .content > .info > .button {
    position: absolute;
    top: 19px;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 400;
}
.page[name='editProfile'] > .content > .info > .button > input {
    display: none;
}
.page[name='editProfile'] > .content > .formWrapper {
    margin-bottom: 32px;
}
.page[name='editProfile'] > .content > .formWrapper > .fForm > .fields > .field:not(:last-child) {
    margin-bottom: 16px;
}
.page[name='editProfile'] > .content > .formWrapper > .fForm > .fields > .field > label {
    margin-bottom: 8px;
    display: block;
}
.page[name='editProfile'] > .content > .formWrapper > .fForm > .fields > .field > input,
.page[name='editProfile'] > .content > .formWrapper > .fForm > .fields > .field > select {
    width: 100%;
    border-radius: 36px;
    padding: 16px;
}
.page[name='editProfile'] > .content > .formWrapper > .fForm > .fields > .field > select {
    border: 0;
}
.page[name='editProfile'] > .content > .button {
    border-radius: 36px;
    font-weight: 600;
    font-size: 16px;
    padding: 16px;
    text-align: center;
}