.wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.wrapper.login .login-form {
    max-width: 500px;
    width: 100%;
    max-height: 500px;
    height: 100%;
    border: 1px solid var(--clr-gray-primary);
    padding: 30px 80px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-40%);
    transition: transform .5s, opacity .5s;
    opacity: 0;
    overflow: hidden;
}

.wrapper.login .login-form form {
    transform: translateY(-60%);
    transition: transform .5s;
}

.wrapper.login .logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 30px;
    transform: translateY(-60%);
    transition: transform .5s;
}

.wrapper.login .logo .logo-anim {
    width: 95px;
    height: 88px;
    overflow: hidden;
    transform: translateY(-60%);
    transition: transform .5s;
}

.wrapper.login .logo .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    transform: translateY(-60%);
    transition: transform .5s;
}

.wrapper.login .logo .logo-text img {
    width: 155px;
    transform: translateY(-60%);
    transition: transform .5s;
}

.wrapper.login .logo .logo-text span {
    color: var(--clr-gray-primary);
    font-weight: 300;
    font-size: 16px;
}

.wrapper .sidebar {
    height: 100%;
    border-right: 1px solid var(--clr-gray-primary);
    width: 250px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wrapper .sidebar .logo {
    border-bottom: 1px solid var(--clr-gray-primary);
    height: 65px;
    max-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 25px;
}

.wrapper .sidebar .logo .logo-anim {
    width: 55px;
}

.wrapper .sidebar .logo .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.wrapper .sidebar .logo .logo-text img {
    width: 95px;
}

.wrapper .sidebar .logo .logo-text span {
    color: var(--clr-gray-primary);
    font-weight: 300;
    font-size: 12px;
}

.wrapper .sidebar .nav-menu {
    padding: 40px 30px;
}

.wrapper .sidebar .nav-menu .menu-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.wrapper .sidebar .nav-menu .menu-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.wrapper .sidebar .nav-menu .menu-list li.active a {
    color: var(--clr-primary);
    font-weight: 500;
}

.wrapper .sidebar .nav-menu .menu-list li a:hover {
    color: var(--clr-primary);
}

.wrapper .sidebar .nav-menu .menu-list li:first-child {
    margin-bottom: 20px;
}

.wrapper .sidebar .nav-menu .menu-list .nav-title {
    color: var(--clr-secondary);
    font-weight: 400;
    font-size: 14px;
}

.wrapper .sidebar .nav-menu .menu-list li a {
    color: var(--clr-gray-secondary);
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color .2s;
}

.wrapper .sidebar .nav-menu .menu-list li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
}


.wrapper .sidebar .school-details {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 30px;
    margin-top: auto;
    margin-bottom: 30px;
}

.wrapper .sidebar .school-details .school-image {
    width: 26px;
}

.wrapper .sidebar .school-details .school-name {
    font-size: 14px;
}

.wrapper .content .header {
    width: 100%;
    height: 65px;
    min-height: 65px;
    max-height: 65px;
    border-bottom: 1px solid var(--clr-gray-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background-color: #ffffff;
}

.wrapper .content .header .page-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wrapper .content .header .page-title h2 {
    font-size: 18px;
    font-weight: 500;
    color: var(--clr-primary);
}

.wrapper .content .header .page-title i {
    font-size: 18px;
}

.wrapper .content .header .header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.wrapper .content .header .header-right .user-settings {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-primary);
    gap: 15px;
    cursor: pointer;
    position: relative;
}


.wrapper .content .header .header-right .user-settings .user-image {
    width: 30px;
}

.wrapper .content .header .header-right .user-settings .user-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    margin-top: 2px;
}

.wrapper .content .header .header-right .user-settings .user-details .name {
    font-size: 14px;
}

.wrapper .content .header .header-right .user-settings .user-details .user-type {
    font-size: 12px;
    color: var(--clr-gray-secondary);
}

.wrapper .content .header .header-right .user-settings i {
    font-size: 12px;
    margin-top: 5px;
    transition: transform .2s;
}

.wrapper .content .header .header-right .user-settings:hover i::before,
.wrapper .content .header .header-right .user-settings.active i::before {
    color: var(--clr-secondary);
}

.wrapper .content .header .header-right .user-settings .settings-menu {
    position: absolute;
    top: calc(100% + 17px);
    width: 100%;
    padding: 20px 15px;
    border: 1px solid #d3d3d3;
    background-color: #ffffff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    transform: translateY(-120%);
    z-index: -2;
    transition: transform .2s;
}

.wrapper .content .header .header-right .user-settings .settings-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.wrapper .content .header .header-right .user-settings .settings-menu ul li a {
    color: var(--clr-text);
    font-size: 14px;
}

.wrapper .content .inner-content .statistics {
    max-width: 1290px;
    width: 100%;
}

.wrapper .content .inner-content .statistics .swiper-wrapper {
    display: flex;
    align-items: center;
    max-width: 1269px;
    width: 100%;
}

.wrapper .content .inner-content .statistics .swiper-slide {
    max-width: 300px;
    margin-right: 23px;
}

.wrapper .content .inner-content .statistics .swiper-slide:last-child {
    margin-right: 0;
}

.wrapper .content .inner-content .statistics .statistics-box {
    width: 100%;
    height: 120px;
    border-radius: var(--radius-primary);
    color: #ffffff;
    position: relative;
    padding: 15px 20px;
}

.wrapper .content .inner-content .statistics .statistics-box h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.wrapper .content .inner-content .statistics .statistics-box .count {
    font-weight: 300;
    font-size: 18px;
}

.wrapper .content .inner-content .statistics .swiper-wrapper .swiper-slide:nth-child(1) .statistics-box {
    background: var(--clr-tertiary);
}

.wrapper .content .inner-content .statistics .swiper-wrapper .swiper-slide:nth-child(2) .statistics-box {
    background: var(--clr-fourth);
}

.wrapper .content .inner-content .statistics .swiper-wrapper .swiper-slide:nth-child(3) .statistics-box {
    background: var(--clr-secondary);
}

.wrapper .content .inner-content .statistics .swiper-wrapper .swiper-slide:nth-child(4) .statistics-box {
    background: var(--clr-primary);
}


.wrapper .content .inner-content .list {
    max-width: 1290px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}

.wrapper .content .inner-content.dashboard .list .table {
    display: none;
}

.wrapper .content .inner-content .list .list-header {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    position: relative;
}

.wrapper .content .inner-content .list .list-header .sm-teacher.active,
.wrapper .content .inner-content .list .list-header .sm-student.active {
    display: none;
}

.wrapper .content .inner-content .list .list-header .list-change-menu {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--clr-gray-primary);
    background-color: #ffffff;
    position: absolute;
    top: calc(100% + 20px);
    z-index: 33;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: visibility .3s, transform .3s, opacity .4s;
}

.wrapper .content .inner-content .list .list-header .change-menu-item {
    padding: 10px;
    display: flex;
    align-items: center;
}

.wrapper .content .inner-content .list .list-header .change-menu-item.active .text {
    color: var(--clr-primary);
    font-weight: 500;
}

.wrapper .content .inner-content .list .list-header .change-menu-item i {
    font-size: 20px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .content .inner-content .list .list-header .change-menu-item .text {
    font-size: 18px;
    font-weight: 400;
    color: var(--clr-gray-primary);
}

.wrapper .content .inner-content .list .list-header button {
    border: 0;
    background-color: transparent;
}

.wrapper .content .inner-content .list .list-header button i {
    transition: transform .3s;
}

.wrapper .content .inner-content .list .list-header i.active {
    font-size: 22px;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .content .inner-content .list .list-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

.wrapper .content .inner-content .list .change-text {
    font-size: 14px;
    color: var(--clr-gray-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.wrapper .content .inner-content .list .change-text i {
    font-size: 9px;
    margin-top: 3px;
    transition: transform .2s;
}

.wrapper .content .inner-content.dashboard .inner-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 333;
    background-color: #ffffff;
    max-width: 417.5px;
    height: 100%;
    flex-shrink: 0;
    transform: translateX(110%);
    transition: transform .4s;
}

.wrapper .content .inner-content.dashboard .inner-right .close-inner-right {
    transform: rotate(45deg);
    position: absolute;
    top: 15px;
    left: 20px;
    transition: transform .3s;
}

.wrapper .content .inner-content.dashboard .inner-right .close-inner-right::before {
    color: var(--clr-text);
    cursor: pointer;
}

.wrapper .content .inner-content.dashboard .inner-right .close-inner-right:hover {
    transform: rotate(135deg);
}

.wrapper .content .inner-content .inner-left {
    height: 100%;
    width: 75%;
    padding: 50px 40px 0 55px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper .content .inner-content .inner-left .inner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
    width: 100%;
    max-width: 1290px;
}

.general-add-form {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    max-width: 575px;
    max-height: 550px;
    z-index: 335;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transform: translate(-50%, 110%);
    transition: transform .6s;
}

.general-add-form .form-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0 65px 0;
}

.general-add-form .form-wrapper form {
    width: 80%;
}

.general-add-form .form-wrapper .form-description {
    margin-top: 20px;
    width: 100%;
    padding: 0;
    display: flex;
    align-self: flex-end;
    padding-right: 57px;
    padding-left: 175px;
}

.class-list {
    width: 100%;
    max-width: 1290px;
    margin-top: 30px;
    position: relative;
}

.list .class-list {
    margin-top: 15px;
}

.class-list .class-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    overflow-y: scroll;
    position: relative;
    padding-right: 12px;
}

.class-list .class-list-wrapper {
    max-height: 610px;
}

.class-list .class-box {
    height: 190px;
    border-radius: 10px;
    border: 1px solid var(--clr-gray-fourth);
    padding: 20px;
    cursor: pointer;
    transition: border-color .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.class-list .class-box:hover .class-box-bottom .student-images i {
    transform: translateX(10px);
}

.class-list .class-box:hover {
    border-color: var(--clr-gray-primary);
}

.class-list .class-box .class-box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 241px;
    width: 100%;
}

.class-list .class-box .class-box-top .class-img {
    width: 54px;
}

.class-list .class-box .class-box-top .class-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.class-list .class-box .class-box-top .class-details .class-name {
    font-size: 24px;
    font-weight: 500;
}

.class-list .class-box .class-box-top .class-details .teacher-details {
    display: flex;
    align-items: center;
    gap: 6px;
}

.class-list .class-box .class-box-top .class-details .teacher-details .teacher-name {
    color: var(--clr-gray-primary);
    font-size: 14px;
    font-weight: 400;
}

.class-list .class-box .class-box-top .class-details .teacher-details .total-teacher {
    color: var(--clr-fourth);
    font-weight: 600;
    font-size: 12px;
}

.class-list .class-box .class-box-bottom {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
    max-width: 241px;
    width: 100%;
}

.class-list .class-box .class-box-bottom .title {
    font-size: 18px;
    font-weight: 600;
}

.class-list .class-box .class-box-bottom .student-images {
    display: flex;
    align-items: center;
    padding-left: 7px;
}

.class-list .class-box .class-box-bottom .student-images .student-image {
    width: 32px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    margin-left: -10px;
}

.class-list .class-box .class-box-bottom .student-images .total-students {
    font-size: 14px;
    margin-left: 10px;
    margin-top: 3px;
    font-weight: 500;
    color: var(--clr-secondary);
}

.class-list .class-box .class-box-bottom .student-images i {
    margin-left: 20px;
    margin-top: 4px;
    font-size: 21px;
    transition: transform .3s;
    transform: translate(0);
}

.class-list .class-box .class-box-bottom .student-images i::before {
    color: var(--clr-text);
}

.wrapper .content .inner-content .inner-right {
    width: 25%;
    height: 100%;
    border-left: 1px solid var(--clr-gray-primary);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.wrapper .content .inner-content .inner-right .chart {
    margin-top: 40px;
    padding: 0 10px;
}

.wrapper .content .inner-content .inner-right .top-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.wrapper .content .inner-content .inner-right .top-content .delete-confirmation {
    position: absolute;
    width: 100%;
    z-index: 55;
    background-color: #ffffff;
    height: 100%;
    border: 1px solid var(--clr-gray-primary);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    gap: 10px;
    transition: transform .3s;
    transform: translateX(110%);
}

.wrapper .content .inner-content .inner-right .top-content .delete-confirmation .close-confirmation {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 14px;
    transform: rotate(135deg);
    transition: transform .3s;
    cursor: pointer;
}

.wrapper .content .inner-content .inner-right .top-content .delete-confirmation .close-confirmation:hover {
    transform: rotate(225deg);
}

.wrapper .content .inner-content .inner-right .top-content .delete-confirmation .close-confirmation:before {
    color: var(--clr-text);
}

.wrapper .content .inner-content .inner-right .top-content .delete-confirmation form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wrapper .content .inner-content .inner-right .top-content .delete-confirmation button {
    font-size: 14px;
    height: auto;
    padding: 6px 20px;
}

.wrapper .content .inner-content .inner-right .top-content .image-div {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.wrapper .content .inner-content .inner-right .top-content .image-div img {
    width: 80px;
    height: 80px;
}

.wrapper .content .inner-content .inner-right .top-content .image-div .bg-color {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    position: absolute;
    z-index: -1;
    transition: transform .3s;
}

.wrapper .content .inner-content .inner-right .top-content .image-div .bg-color.first {
    left: 0;
    bottom: 0;
    /* transform: translate(5px, -5px); */
    background-color: var(--clr-secondary);
}

.wrapper .content .inner-content .inner-right .top-content .image-div .bg-color.secondary {
    right: 0;
    top: 0;
    /* transform: translate(-5px, 5px); */
    background-color: var(--clr-tertiary);
}

.wrapper .content .inner-content .inner-right .top-content .user-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80px;
}

.wrapper .content .inner-content .inner-right .top-content .user-details .name {
    font-size: 26px;
    font-weight: 500;
}

.wrapper .content .inner-content .inner-right .top-content .user-details .classes {
    font-size: 14px;
    color: var(--clr-gray-secondary);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: -8px;
}

.wrapper .content .inner-content .inner-right .top-content .user-details .classes span {
    color: var(--clr-fourth);
    font-weight: 600;
    font-size: 12px;
}

.wrapper .content .inner-content .inner-right .top-content .user-details .edit-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.wrapper .content .inner-content .inner-right .top-content .user-details .edit-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .content .inner-content .inner-right .top-content .user-details .edit-buttons i {
    cursor: pointer;
}

.wrapper .content .inner-content .inner-right .details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.detail-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-box.column {
    flex-direction: row;
    gap: auto;

}

.detail-box.column .column-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 75px;
    width: 100%;
}

.detail-box .detail-name {
    font-size: 18px;
    font-weight: 600;
}

.detail-box.column .detail-name {
    font-size: 14px !important;

}

.detail-box .text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-box .detail-text {
    font-size: 14px;
    color: var(--clr-gray-secondary);
    line-height: 20px;
}

.detail-box .text b {
    font-size: 13px;
    font-weight: 600;
}

.detail-box .classes {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.detail-box .image-detail,
.detail-box .teacher-detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-box .image-detail .image-box,
.detail-box .teacher-detail .teacher-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-box .image-detail .image-box img,
.detail-box .teacher-detail .teacher-box img {
    width: 30px;
    border-radius: 50px;
}

.detail-box .student-images {
    display: flex;
    align-items: center;
    padding-left: 7px;
}

.detail-box .student-images img {
    width: 26px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    margin-left: -10px;
}

.detail-box .student-images .total-students {
    font-size: 14px;
    margin-left: 10px;
    margin-top: 3px;
    font-weight: 500;
    color: var(--clr-secondary);
}

.wrapper .content .inner-content .inner-right .buttons {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 30;
    transition: border-radius .1s, transform .5s;
    z-index: 30;
    transform: translateY(110%);
}

.overlay.main {
    background-color: rgba(0, 0, 0, .8);
    transform: translateY(0);
    z-index: 999;

}

.overlay.main .form-box-header .form-box-header-content {
    cursor: default;
}

.overlay.main .general-add-form {
    transform: translate(-50%, -50%);
    max-height: 500px;
    height: 100%;
}

.overlay.main .general-add-form form {
    padding: 0 45px;
}

.overlay.main .general-add-form .sm-eye-dash {
    display: none;
}

.overlay.main .general-add-form form button {
    width: 100%;
}

.overlay.main .general-add-form .form-description {
    max-width: 60%;
    padding: 0;
    align-self: center;
}



.inner-right .overlay {
    border-radius: 20px;
}

.inner-left .overlay {
    z-index: 334;
}


.wrapper .content .inner-content .inner-right .form-box {
    width: 100%;
    height: 80%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 32;
    background-color: #ffffff;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: transform .5s;
    transform: translateY(110%);
}

.form-box-header {
    border-bottom: 1px solid var(--clr-gray-primary);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 500;
}

.form-box-header .success,
.form-box-header .danger {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
}

.form-box-header .form-box-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 4px;
    cursor: pointer;
}

.form-box-header .form-box-header-content i {
    font-size: 12px;
    transition: transform .3s;
    -webkit-font-smoothing: subpixel-antialiased;
    transform: rotate(0deg) translate3d(0) translateZ(0) translateY(0) translateX(0) scale(0);
    zoom: 0;
}

.form-box-header .form-box-header-content:hover i {
    transform: rotate(90deg);
    zoom: 0;
}

.form-box-header .form-box-header-content i:before {
    color: var(--clr-text);
}

.wrapper .content .inner-content .inner-right .form-box .form-box-content {
    padding: 90px 70px 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.wrapper .content .inner-content .inner-right .form-box .form-box-content.edit {
    display: none;
}

.wrapper .content .inner-content .inner-right .form-box .form-box-content .form-slide {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.wrapper .content .inner-content .inner-right .form-box .form-box-content .buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: unset;
    width: 100%;
    margin-bottom: 20px;
}

.wrapper .content .inner-content .inner-right .form-box .form-box-content .buttons button {
    width: 100%;
}

.wrapper .content .inner-content .inner-right .form-box .form-box-content .buttons .description {
    color: var(--clr-gray-primary);
    position: absolute;
    top: -23px;
    left: 0;
    font-size: 13px;
    font-weight: 300;
}

.form-description {
    padding: 0 70px;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    color: var(--clr-gray-primary);
}

.wrapper .content .inner-content.profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 50px 0 50px;
    height: 100%;
}

.wrapper .content .inner-content.profile .profile-details {
    width: 100%;
    max-width: 1269px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover {
    width: 100%;
    height: 220px;
    background-color: red;
    border-radius: 15px;
    position: relative;
    flex-shrink: 0;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover {
    background: rgb(0, 171, 133);
    background: -moz-linear-gradient(32deg, rgba(0, 171, 133, 1) 24%, rgba(96, 200, 183, 1) 63%, rgba(179, 225, 227, 1) 86%);
    background: -webkit-linear-gradient(32deg, rgba(0, 171, 133, 1) 24%, rgba(96, 200, 183, 1) 63%, rgba(179, 225, 227, 1) 86%);
    background: linear-gradient(32deg, rgba(0, 171, 133, 1) 24%, rgba(96, 200, 183, 1) 63%, rgba(179, 225, 227, 1) 86%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ab85", endColorstr="#b3e1e3", GradientType=1);
    /* background-image: url(../img/default-profile.svg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update input[type=file] {
    opacity: 0;
    position: absolute;
    z-index: -1;
    visibility: hidden;
    pointer-events: none;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update label {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update label i {
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 24px;
    transform: translateY(200%);
    transition: transform .3s;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update:hover i {
    transform: translateY(0);
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update.active i {
    transform: translateY(200%);
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update label i:before {
    color: #ffffff;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update .buttons {
    position: absolute;
    right: 25px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(-200%);
    transition: transform .4s;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update.active .buttons {
    transform: translateY(0);
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update .buttons button {
    background-color: rgba(255, 255, 255, .8);
    color: rgba(0, 0, 0, .8);
    font-weight: 500;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .cover-image-update .buttons button:hover {
    background-color: rgba(255, 255, 255, .6);
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image {
    width: 152px;
    height: 152px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 5px solid #ffffff;
    left: 50px;
    top: 70%;
    background-color: #ffffff;
    overflow: hidden;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update input[type=file] {
    opacity: 0;
    position: absolute;
    z-index: -1;
    visibility: hidden;
    pointer-events: none;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update label {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update label i {
    position: absolute;
    right: 15px;
    bottom: 13px;
    font-size: 20px;
    transform: translateY(200%);
    transition: transform .3s;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update i:before {
    color: #ffffff;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update:hover i {
    transform: translateY(0);
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update.active i {
    transform: translateY(200%);
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update .buttons {
    position: absolute;
    top: 0;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateY(-120%);
    transition: transform .4s;
    width: 100%;
    background-color: rgba(0, 0, 0, .4);
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update .buttons i {
    transform: rotate(45deg);
    cursor: pointer;
    transition: transform .4s;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update .buttons i:hover {
    transform: rotate(135deg);
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update.active .buttons {
    transform: translateY(0);
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update .buttons button {
    background-color: rgba(255, 255, 255, .8);
    color: rgba(0, 0, 0, .8);
    font-weight: 500;
    transform: scale(.9);
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .profile-image .profile-image-update .buttons button:hover {
    background-color: rgba(255, 255, 255, .6);
}

/*  */


.wrapper .content .inner-content.profile .profile-details .profile-cover .user-details {
    position: absolute;
    left: 217px;
    top: calc(100% + 19px);
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .user-details .user-name {
    font-size: 26px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .user-details .user-id {
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-secondary);
    margin-top: 3px;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .user-details .user-type {
    color: var(--clr-gray-secondary);
    font-size: 16px;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .detail-box {
    gap: 8px;
    margin-right: 10px;
}

.wrapper .content .inner-content.profile .profile-details .profile-cover .detail-box.students {
    position: absolute;
    right: 0;
    top: calc(100% + 21px);
}


.wrapper .content .inner-content.profile .profile-details .profile-column {
    display: flex;
    height: 100%;
    margin-top: 120px;
    padding-left: 54px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-sidebar {
    max-width: 300px;
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 30px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-sidebar .detail-box {
    margin-bottom: 30px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-sidebar .detail-box.column {
    margin-bottom: 15px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-sidebar .detail-box:last-child {
    margin-bottom: 0;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-sidebar .detail-box:first-child {
    gap: 10px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-sidebar .detail-box .detail-name {
    font-size: 16px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-sidebar .detail-box .image-detail img {
    width: 26px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content {
    width: calc(100% - 300px);
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings {
    border: 1px solid var(--clr-gray-primary);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings .settings-header {
    width: 100%;
    border-bottom: 1px solid var(--clr-gray-primary);
    display: flex;
    align-items: center;

}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings .settings-header ul {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    width: 100%;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings .settings-header ul li .settings-button {
    border: 0;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color .2s;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content .form-wrapper {
    padding: 30px;
    padding-bottom: 0;
    max-width: 600px;
    width: 100%;
    display: none;
    flex-direction: column;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings .form-wrapper .form-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--clr-secondary);
    margin-bottom: 22px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content .form-wrapper button {
    width: 100%;
    max-width: 355px;
    align-self: flex-end;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings .form-wrapper form {
    margin-bottom: 20px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings .form-wrapper form input {
    height: 36px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings .form-wrapper form .double-input {
    margin-bottom: 12px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings .form-wrapper form .input-box:last-child {
    margin-bottom: 0;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings .settings-header ul li .settings-button:hover {
    color: var(--clr-secondary);
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.settings .settings-header ul li .settings-button.active {
    color: var(--clr-secondary);
    font-weight: 600;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.profile .profile-content-wrapper {
    display: flex;
    height: 100%;
    align-items: center;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.profile .profile-content-wrapper .left-content,
.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.profile .profile-content-wrapper .right-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.profile .profile-content-wrapper .left-content {
    width: 50%;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.profile .profile-content-wrapper.list-column .left-content {
    padding-left: 15px;
}

.profile-content.profile .profile-content-wrapper .list {
    margin-top: 0;
}

.profile-content.profile .profile-content-wrapper .list .table.scroll {
    display: none;
}

.profile-content.profile .profile-content-wrapper .list .custom-list-title {
    width: 100%;
    max-width: 407.75px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--clr-gray-fourth);
    position: relative;
}

.profile-content.profile .profile-content-wrapper .list .custom-list-title .multiple-class-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 99;
    background-color: #ffffff;
    padding: 20px 30px;
    border: 1px solid var(--clr-gray-primary);
    border-radius: 5px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, transform .3s, visibility .3s;
}

.profile-content.profile .profile-content-wrapper .list .custom-list-title .multiple-class-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-content.profile .profile-content-wrapper .list .custom-list-title .multiple-class-menu ul li .class-menu-item {
    font-size: 15px;
    font-weight: 500;
    transition: color .2s;
    cursor: pointer;
}

.profile-content.profile .profile-content-wrapper .list .custom-list-title .multiple-class-menu ul li .class-menu-item.active,
.profile-content.profile .profile-content-wrapper .list .custom-list-title .multiple-class-menu ul li .class-menu-item:hover {
    color: var(--clr-secondary);
}

.profile-content.profile .profile-content-wrapper .list .custom-list-title h4 {
    font-size: 17px;
    font-weight: 600;
}

.profile-content.profile .profile-content-wrapper .list .custom-list-title .change-student {
    color: var(--clr-gray-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 600;
}

.profile-content.profile .profile-content-wrapper .list .custom-list-title .change-student i {
    font-size: 10px;
    transform: rotate(0);
    transition: transform .2s;
}

.profile-content.profile .profile-content-wrapper .list .custom-list-title .change-student.active i {
    transform: rotate(-180deg);
}

.profile-content.profile .profile-content-wrapper .list .custom-list-title .change-student i:before {
    color: var(--clr-gray-secondary);
}

.profile-content.profile .profile-content-wrapper .list tr td:first-child {
    width: 155px;
}

.profile-content.profile .profile-content-wrapper .list .table.scroll .inner-scroll {
    height: 100%;
}

.profile-content.profile .profile-content-wrapper .chart {
    padding: 20px;
}


.profile-content.profile .profile-content-wrapper .left-content .content-box {
    margin-right: 15px;
}

.content-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--clr-gray-primary);
    overflow: hidden;
    border-radius: 10px;
}

.content-box .content-box-header {
    font-size: 17px;
    font-weight: 600;
    padding: 18px 20px;
    border-bottom: 1px solid var(--clr-gray-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: #ffffff;
}

.content-box .content-box-header .success-rate {
    font-size: 15px;
}

.content-box .content-box-header .success-rate b {
    font-weight: 700;
}

.content-box .content-box-header .success-rate b.successful {
    color: var(--clr-secondary);
}

.content-box .content-box-header .success-rate b.unsuccessful {
    color: var(--clr-danger);
}

.content-box .content-box-header .success-rate b.average {
    color: var(--clr-fourth);
}

.content-box .content-box-header .change-type {
    color: var(--clr-gray-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.content-box .content-box-header .change-type i {
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0);
    transition: transform .2s;
}

.content-box .content-box-header .change-type.active i {
    transform: rotate(180deg);
}

.content-box .content-box-header .change-type i:before {
    color: var(--clr-gray-secondary);
}

.content-box .content-box-header .course-menu {
    position: absolute;
    right: 18px;
    top: 100%;
    min-width: 150px;
    background-color: #ffffff;
    z-index: 99;
    border: 1px solid var(--clr-gray-primary);
    padding: 15px 20px;
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transform: translateY(-30px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s, opacity .3s, visibility .3s;
}

.content-box .content-box-header .course-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-box .content-box-header .course-menu ul li .course-menu-item {
    font-size: 15px;
    font-weight: 500;
    transition: color .2s;
    cursor: pointer;
}

.content-box .content-box-header .course-menu ul li .course-menu-item.active,
.content-box .content-box-header .course-menu ul li .course-menu-item:hover {
    color: var(--clr-secondary);
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.profile .profile-content-wrapper .right-content {
    width: 50%;
    margin-left: 30px;
}

.wrapper .content .inner-content.profile .profile-details .profile-column .profile-content.profile .profile-content-wrapper .right-content .content-box {
    margin-bottom: 35px;
}

.detail-box.average-points {
    flex-direction: row;
    align-items: center;
    border-radius: 6px;
    border: 1px solid var(--clr-gray-fourth);
    padding: 15px 20px;
    transition: background-color .3s;
}

.detail-box.average-points:hover {
    background-color: var(--clr-gray-fourth);
}

.detail-box.average-points .point {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d3d3d3;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: color .3s, background-color .3s;
}

.detail-box.average-points .point.success {
    background-color: var(--clr-success-soft);
    color: var(--clr-success);
}

.detail-box.average-points .point.failure {
    background-color: var(--clr-danger-soft);
    color: var(--clr-danger);
}

.detail-box.average-points .point.average {
    background-color: var(--clr-information-soft);
    color: var(--clr-information);
}

.detail-box.average-points .details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 10px;
}

.detail-box.average-points .details .title {
    font-size: 16px;
    font-weight: 600;
}

.detail-box.average-points .details .total {
    font-size: 16px;
    font-weight: 500;
}

.detail-box.average-points:hover .point.success {
    background-color: var(--clr-success);
    color: #ffffff;
}