@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&family=Commissioner:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*    font-family: 'Comfortaa', sans-serif;*/
    font-family: 'Commissioner', sans-serif;
}
.inner-page {
    background: #EFEDFF;
}
.login-page {
    background: url(login-bg.svg) center/contain no-repeat #EFEDFF;
    height: 100vh;
    width: 100%;
}

.login-logo {
    text-align: center;
    margin-top: 80px;
}

.login-page h1 {
    margin-top: 80px;
    text-align: center;
    font-weight: 700;
    font-size: 55px;
    font-family: 'Comfortaa', sans-serif;
    color: #000;
}

.login-form {
    max-width: 500px;
    margin: 80px auto 0 auto;
}

.login-form input {
    background: #fff;
    color: #595968;
    display: block;
    width: 100%;
    padding: 15px 15px 15px 55px;
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 18px;
    outline: none;
    border-radius: 10px;
    border: 2px solid #BDBDCC;
}
.login-form .input-wrapper {
    position: relative;
}
.login-form .input-wrapper svg {
    position: absolute;
    top: 12px;
    left: 12px;
    height: 32px;
    width: 32px;
}
.login-form button {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    border-radius: 10px;
    background: #8269A5;
    padding: 15px;
    cursor: pointer;
}
.login-form button svg {
    height: 32px;
    width: 32px;
}
/**********************************/
.inner-header {
    background: url(inner-header-bg.png) center/cover no-repeat;
    border-radius: 0px 0px 70px 70px;
    box-shadow: 0px 4px 52.3px 0px rgba(0, 0, 0, 0.24);
    padding: 26px 0;
    text-align: center;
}
.logo img {
    max-width: 290px;
    height: auto;
    width: 100%;
}
.rating-title-img {
    margin-top: 24px;
}
.rating-img img {
    width: 100%;
}
.inner-header__avatar {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.inner-header__avatar .avatar {
    margin-right: 16px;
}
.inner-header__avatar .avatar img {
    border-radius: 50%;
}
.inner-header__avatar .description {
    max-width: 240px;
    
}
.inner-header__avatar .description h2 {
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    font-family: 'Comfortaa', sans-serif;
}
.inner-header__avatar .description h3 {
    margin-top: 16px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.50);
    font-weight: 600;
    font-family: 'Comfortaa', sans-serif;
}
.inner-header__img {
    margin-bottom: -3px;
    text-align: right;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: flex-end;
    height: 100%;
    justify-content: flex-end;
}
.inner-header__img img {
    height: 220px;
    width: auto;
}

.flows {
    margin-top: 36px;
}
.flow-item {
    background: #fff;
    border-radius: 15px;
    border: 3px solid #592CC6;
    margin-bottom: 16px;
}

.flow-item .head {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;

}

.flow-item .head p {
    font-size: 24px;
    font-weight: 500;
    transition: all .30s;
}

.flow-item .head span {
    transition: all .30s;
}

.rotate-flow-svg {
    transform: rotate(-45deg);
    transition: all .30s;
}

.flow-item .head span svg path {
    transition: all .30s;
}
.flow-item .head:hover svg path {
    transition: all .30s;
    fill: #F66962;
}

.flow-item .content {
    padding: 0 24px 14px 24px;
    display: none;
}

.flow-header {
    display: flex;
    justify-content: space-between;
}
.flow-header__name {
    flex: 1 1 49%;
    background: #8269A5;
    border-radius: 15px;
    color: #fff;
    font-size: 22px;
    padding: 20px;
    text-align: center;
}
.flow-header__level {
    flex: 1 1 24%;
    background: #8269A5;
    border-radius: 15px;
    color: #fff;
    font-size: 22px;
    padding: 20px;
    text-align: center;
    margin: 0 15px;
}
.flow-header__points {
    flex: 1 1 24%;
    background: #8269A5;
    border-radius: 15px;
    color: #fff;
    font-size: 22px;
    padding: 20px;
    text-align: center;
    margin-left: 6px;
}
.flow-body {
    margin-top: 24px;
}
.flow-body__item {
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.flow-body__item-name {
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #004851;
    flex: 1 1 49%;
}
.flow-body__item-level {
    flex: 1 1 24%;
    margin: 0 15px;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #004851;

}
.flow-body__item-points {
    flex: 1 1 24%;
    padding: 15px;
    border-radius: 10px;
    background: #fff; 
    border: 1px solid #004851;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
}
.flow-body__item-points img {
    height: 24px;
    width: 24px;
    margin-left: 4px;
}
.flow-body__item > a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}
.flow-body__item > a svg {
    margin-top: 3px;
}
.flow-body__item-green > div, .flow-body__item-green > a {
    background: #8ff42245;
}
.student {
    margin-top: 36px;
    margin-bottom: 100px;
}
.student-single__head {
    display: flex;
    justify-content: space-between;
}
.student-single__head-name {
    flex: 1 1 75%;
    background: #8269A5;
    border-radius: 15px;
    color: #fff;
    font-size: 22px;
    padding: 20px;
    text-align: center;
    margin-right: 15px;
}
.student-single__head-points {
    flex: 1 1 24%;
    background: #8269A5;
    border-radius: 15px;
    color: #fff;
    font-size: 22px;
    padding: 20px;
    text-align: center;
}
.student-single__body {
    margin-top: 16px;
}
.student-single__body-item {
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}
.student-single__body-item-name {
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #8269A5;
    flex: 1 1 75%;
    margin-right: 15px;
}
.student-single__body-item-points {
    flex: 1 1 24%;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #8269A5;
}
.student-single__total {
    display: flex;
    justify-content: space-between;
}
.student-single__total-name {
    flex: 1 1 75%;
    background: #8269A5;
    border-radius: 15px;
    color: #fff;
    font-size: 22px;
    padding: 20px;
    margin-right: 15px;
}
.student-single__total-points {
    flex: 1 1 24%;
    background: #8269A5;
    border-radius: 15px;
    color: #fff;
    font-size: 22px;
    padding: 20px;
    text-align: center;
}



@media only screen and (max-width: 768px) {
    .flow-item .head {
        padding: 14px;
    }
    .flow-item .content {
        padding: 0 5px 14px 5px;
    }
    .flow-item .head p {
        font-size: 18px;
    }
    .flow-body {
        margin-top: 12px;
    }
    .flow-header__name {
        flex: 1 1 80%;
    }
    .flow-header__name, .flow-header__level, .flow-header__points {
        font-size: 14px;
        padding: 6px;
        border-radius: 6px;
    }
    .flow-header__level {
        margin: 0 6px;
    }
    .flow-body__item-name {
        flex: 1 1 80%;
    }
    .flow-body__item-name, .flow-body__item-level, .flow-body__item-points {
        padding: 6px;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 6px;
    }
    .flow-body__item-level {
        margin: 0 6px;
    }
    .student-single__head-name {
        font-size: 14px;
        padding: 6px;
        border-radius: 6px;
        flex: 1 1 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 6px;
    }
    .student-single__head-points {
        font-size: 14px;
        padding: 6px;
        border-radius: 6px;
         display: flex;
        align-items: center;
        justify-content: center;
    }
    .student-single__body-item-name {
        padding: 6px;
        font-size: 14px;
        border-radius: 6px;
        margin-right: 6px;
         display: flex;
        align-items: center;
    }
    .student-single__body-item-points {
        font-size: 14px;
        padding: 6px;
        border-radius: 6px;
         display: flex;
        align-items: center;
        justify-content: center;
    }
    .student-single__total-name {
        font-size: 14px;
        padding: 6px;
        border-radius: 6px;
        flex: 1 1 74%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 6px;
    }
    .student-single__total-points {
        font-size: 14px;
        padding: 6px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}