body > header {
    padding: 40px 0;
}

body > header > .container {
    height: 340px;
    background-image: url("../../../assets/img/Index/homepic.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

body > .content {
    min-height: calc(100vh - 80px - 420px - 295px);
    padding-bottom: 20px;
}

body > .content > .container > .block-middle {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: calc(100% - 338px) 318px;
    color: #fff;
}

body > .content > .container > .block-middle h1 {
    font-weight: normal;
    font-size: 48px;
}

body > .content > .container > .block-middle p {
    padding-top: 20px;
    font-size: 20px;
    line-height: 36px;
}



.profile-form-wrapper > .profile-form {
    display: none;
}

.profile-form-wrapper > .profile-form.active {
    display: block;
}

.profile-form-wrapper > .profile-form > .form-name {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: normal;
}

.profile-form-wrapper > .profile-form.success-form {
    text-align: center;
    line-height: 24px;
}

.profile-form-wrapper > .profile-form.success-form .icon {
    font-size: 100px;
    line-height: 240px;
    color: #8bc34a;
}

.profile-form-wrapper > .profile-form input {
    margin: 0;
}

.profile-form-wrapper > .profile-form .remember-forgot {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding-top: 20px;
}

.profile-form-wrapper > .profile-form .remember-forgot > .block-right {
    text-align: right;
    font-size: 12px;
}

.profile-form-wrapper > .profile-form .remember-forgot .input-block {
    padding: 0;
    min-height: 0;
}

.profile-form-wrapper > .profile-form label {
    padding: 0;
    line-height: 16px;
}

.profile-form-wrapper > .profile-form .btn {
    display: block;
    width: 100%;
}

.profile-form-wrapper > .profile-form .register-requirements {
    padding-top: 20px;
}

.profile-form-wrapper > .profile-form .register-requirements .input-block {
    padding: 0;
    min-height: 0;
}

.profile-block-wrapper {
    padding-top: 56px;
}

.profile-block-wrapper > .profile-wrapper {
    padding: 76px 0 0 0;
    position: relative;
}

.profile-block-wrapper > .profile-wrapper > .login {
    font-size: 20px;
    text-align: center;
    color: #212121;
    padding: 0 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-block-wrapper > .profile-wrapper > .name {
    color: #bdbdbd;
    text-align: center;
    padding: 8px 20px 0 20px;
}

.profile-block-wrapper > .profile-wrapper > .avatar {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    width: 112px;
    height: 112px;
    padding: 8px;
    position: absolute;
    top: -56px;
    left: calc(50% - 56px);
}
.profile-block-wrapper > .profile-wrapper > .profile-stats {
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    height: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin-top: 20px;
    text-align: center;
}

.profile-block-wrapper > .profile-wrapper > .profile-stats > a {
    transition: all 450ms cubic-bezier(.23,1,.32,1) 0s;
    height: 100%;
    padding-top: 14px;
}

.profile-block-wrapper > .profile-wrapper > .profile-stats > a:hover {
    background-color: #eee;
}

.profile-block-wrapper > .profile-wrapper > .profile-stats .icon {
    font-size: 24px;
    color: #9e9e9e;
}

.profile-block-wrapper > .profile-wrapper > .profile-stats .value {
    padding-top: 4px;
    color: #bdbdbd;
}


.profile-block-wrapper > .profile-wrapper > .profile-info {
    padding: 20px;
    height: 100%;
    border-radius: 0 0 2px 2px;
}

.profile-block-wrapper > .profile-wrapper > .profile-info > li {
    list-style: none;
    line-height: 40px;
}

.profile-block-wrapper > .profile-wrapper > .profile-info > li > a {
    color: #757575;
    display: grid;
    grid-gap: 8px;
    grid-template-columns: 40px calc(100% - 60px);
    align-items: center;
    transition: all 450ms cubic-bezier(.23,1,.32,1) 0s;
}

.profile-block-wrapper > .profile-wrapper > .profile-info > li > a:hover {
    color: #03a9f4;
}

.profile-block-wrapper > .profile-wrapper > .profile-info > li > a > .icon {
    text-align: center;
}





/* Light theme + */

body.theme-color-light > .content > .container > .block-middle {
    color: #424242;
}

body.theme-color-light > header > .container {
    background-image: url("../../../assets/img/Index/homepic-light-theme.webp");
}

body.theme-color-light .profile-block-wrapper > .profile-wrapper > .profile-info > li > a:hover {
    color: #212121;
}

/* Light theme */




/* Dark theme + */

body.theme-color-dark .profile-block-wrapper > .profile-wrapper > .login {
    color: #9E9E9E;
}

body.theme-color-dark .profile-block-wrapper > .profile-wrapper > .profile-stats {
    background-color: #616161;
    border-top: 1px solid rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(0,0,0,0.4);
}

body.theme-color-dark .profile-block-wrapper > .profile-wrapper > .profile-stats > a:hover {
    background-color: rgba(0,0,0,0.2);
}

body.theme-color-dark .profile-block-wrapper > .profile-wrapper > .profile-info > li > a:hover {
    color: #fafafa;
}

/* Dark theme */