@charset "utf-8";

/* ==========================================================================
   Design System Variables
   ========================================================================== */
:root {
    /* Primary Colors */
    --color-brand: #F97316;
    --color-text-primary: #424b6a;
    --color-text-secondary: #666666;
    --color-text-muted: #898fa2;
    --color-background: #ffffff;
    --color-background-light: #f8f9fa;
    --color-background-alt: #f5f7fa;

    /* Status Colors */
    --color-success: #00bc70;
    --color-error: #ec6060;
    --color-warning: #eca260;
    --color-danger: #ff5252;
    --color-invalid: #f44336;
    --color-info: #424b6a;

    /* UI Colors */
    --color-border: #dee2e6;
    --color-border-light: #eee;
    --color-border-dashed: #d2d2d2;
    --color-switch-off: #94a3b8;
    --color-checkbox-off: #aaaaaa;

    /* Typography */
    --font-family: 'Open Sans', sans-serif;
    --font-size-base: 14px;
    --font-size-sm: 13px;
    --font-size-xs: 12px;
    --font-size-lg: 15px;
    --line-height-base: 26px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-card: 0px 10px 30px rgba(66, 75, 106, 0.1);
    --shadow-light: 0 1px 15px 1px rgba(62, 57, 107, 0.07);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-base: all 0.3s ease;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

/* Card Styles */
.lms-card {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-card);
}

.lms-card-table {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

/* Text Colors */
.text-brand { color: var(--color-brand) !important; }
.text-primary { color: var(--color-text-primary) !important; }
.text-secondary { color: var(--color-text-secondary) !important; }
.text-muted { color: var(--color-text-muted) !important; }
.text-success { color: var(--color-success) !important; }
.text-error { color: var(--color-error) !important; }
.text-warning { color: var(--color-warning) !important; }
.text-danger { color: var(--color-danger) !important; }

/* Background Colors */
.bg-brand { background-color: var(--color-brand) !important; }
.bg-light { background-color: var(--color-background-light) !important; }
.bg-white { background-color: var(--color-background) !important; }
.bg-success { background-color: var(--color-success) !important; }
.bg-error { background-color: var(--color-error) !important; }
.bg-warning { background-color: var(--color-warning) !important; }

/* Table Header */
.lms-thead {
    background: var(--color-background-light);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

body, input, button, select, textarea {
    font-size: 13px;
    line-height: 18.2px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #424b6a;
}
body {
    overflow-x: hidden;
}
a:focus, button:focus, select:focus, input:focus, textarea:focus, .form-control:focus {
    outline: none !important;
    box-shadow: none;
    color: #424b6a;
}
a {
    color: #F97316;
}
a:hover {
    color: #424b6a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}
button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
img {
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    color: #424b6a;
    margin-bottom: 25px;
}
h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
}
h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
}
h3, .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
}
h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
}
h5 {
    font-size: 17px;
    font-weight: 700;
    line-height: 135%;
}
h6 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin: 0;
    line-height: 18px;
}
p {
    color: #424b6a;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}
.loading-state {
    position: relative;
    min-height: 50px;
}
.loading-state:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
    border: 2px solid #f7f6f6;
    border-top-color: #F97316;
    animation: spinner 0.6s linear infinite;
}

.msgbox {
    position: fixed;
    top: 10px;
    left: 0;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    width: 100%;
    z-index: 999999999;
    line-height: 1;
}
.msgbox.overlay:before {
    content: '';
    top: 0;
    left: 0;
    position: fixed;
    background: #fff;
    opacity: 0.78;
    height: 100%;
    width: 100%;
}
.msgbox a.close {
    color: #fff;
    font-size: 18px;
    height: 100%;
    line-height: 34px;
    position: absolute;
    right: 0;
    text-decoration: none;
    top: 0;
    width: 30px;
}
.msgbox>div {
    display: inline-block;
    min-height: 35px;
    border-radius: 3px;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.msgbox>div span {
    display: inline-block;
    vertical-align: middle;
}
.msgbox .error {
    background: #EC6060;
}
.msgbox .warnings {
    background: #eca260;
}
.msgbox .success {
    background: #F97316;
}
.msgbox .info {
    background: #000000;
}

.btn {
    box-shadow: none;
    text-shadow: none;
    padding: 14.2px 48px;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    transition: all 0.15s linear;
    display: inline-block;
    position: relative;
    box-shadow: none;
    border-radius: 10px;
    border: 1px solid transparent;
    line-height: 18px;
}
.btn:focus {
    box-shadow: none;
    outline: none;
    text-decoration: none;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-primary.dropdown-toggle:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-primary,
.btn-primary:disabled {
    color: #fff;
    background-color: #F97316;
    border-color: #F97316;
}
.btn.btn-primary:focus{
    color: #fff;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.btn-primary:not(:disabled):hover {
    background-color: transparent;
    color: #F97316;
    border-color: #F97316;
}
.btn.btn-primary:hover:focus{
    color: #F97316;
}
.btn-outline-primary {
    border: 1px solid #F97316;
    color: #F97316;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle, .btn-outline-primary:hover {
    background-color: #F97316;
    border-color: #F97316;
    color: #fff;
}
.btn.btn-link {
    padding: 0;
    text-transform: none;
    letter-spacing: inherit;
}
@keyframes spinner {
  to {transform: rotate(360deg);}
}
.btn[disabled] {
    position: relative;
}
.btn[disabled] {
    color: transparent;
}
.btn[disabled]:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-top-color: transparent;
  animation: spinner .6s linear infinite;
}
.text-green {
    color: #F97316;
}
.alert-danger {
    color: #ffffff;
    background-color: #dc3545;
    border-color: #dc3545;
}

label{
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin: 0;
}
.form-control{
    height: 48px;
    border-radius: 10px;
    border: 1px solid #d2d7e9;
    color: #424b6a;
    font-size: 13px;
}
.form-control:hover,
.form-control:focus{
    border-color: #F97316;
}
.form-control::-webkit-input-placeholder {
    color: #424b6a;
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: #424b6a;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #424b6a;
    opacity: 1;
}
.form-control:-moz-placeholder {
    color: #424b6a;
    opacity: 1;
}
.form-control:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    color: #424b6a !important;
}
.form-control.is-invalid~.invalid-feedback {
    font-size: 12px;
    text-align: left;
    font-weight: 400;
}
.form-group {
    margin-bottom: 26px;
}
.btn-link{
    color: #F97316;
    font-weight: 600;
}
.btn-link:hover{
    color: #424b6a;
}

.step-instruction {
    color: #F97316;
}
.step-instruction span {
    text-decoration: underline;
}
.popover-link {
    position: absolute;
    top: 8px;
    right: 12px;
}
.popover-link.top-0 {
    top: 0;
}
.popover-link.top-15 {
    top: 15px;
}
.popover-link img {
    height: 30px;
}



.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background-color: #F97316;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 16px;
}
.topbar ~ .header-part {
    position: absolute;
}
.topbar ~ .header-part.fixed-header {
    position: fixed;
}
.topbar ~ .header-part:not(.fixed-header) {
    margin-top: 58px;
}
.topbar ~ .header-part:not(.fixed-header) + #primary-content {
    margin-top: 120px;
}


.header-small{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 40px 25px;
}
.left-part{
    width: 40%;
    padding: 130px 30px 100px;
    min-height: 100vh;
}
.right-part{
    width: 60%;
    background-color: #F97316;
    padding: 80px 60px 30px;
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
}
.right-part img{
    height: 85%;
    display: block;
    margin: 0 auto;
}
.login-section .right-part{
    background-color: #1148b0;
}
.form-part{
    display: block;
    width: 100%;
}
.form-part form{
    max-width: 320px;
    margin: 0 auto;
}
.login-form-btn{
    margin: 24px 0 80px;
}
form .form-group label{
    text-align: left;
    display: block;
    margin-bottom: 10px;
}
.form-part h1{
    margin-bottom: 30px;
}
.form-part .btn{
    width: 100%;
}
.form-part p{
    font-size: 13px;
    line-height: 18.2px;
}
.title-right{
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 7.2px;
    line-height: 86.4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.header-part{
    position: fixed;
    background-color: #ffffff;
    border-bottom: 1px solid #d2d7e9;
    top: 0;
    left: 0;
    padding: 0 0 0 40px;
    width: 100%;
    z-index: 2;
}

.menu-part ul{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-part ul li{
    list-style-type: none;
}
.menu-part ul li a{
    padding: 28.8px 40px;
    color: #424b6a;
    font-size: 17px;
    font-weight: 700;
    line-height: 135%;
    display: flex;
    align-items: center;
}
.menu-part ul li.active a,
.menu-part ul li a:hover{
    background: #F97316;
    text-decoration: none;
    color: #fff;
}
.menu-part ul li.active a svg path,
.menu-part ul li a:hover svg path{
    stroke: #fff;
}
.menu-part ul li.active a svg#assignments path,
.menu-part ul li a:hover svg#assignments path{
    stroke: inherit;
    fill: #fff;
}
.menu-part ul li.active a svg#students path,
.menu-part ul li a:hover svg#students path{
    stroke: inherit;
    fill: #fff;
}
.menu-part ul li a svg{
    margin-right: 20px;
}
.header-breadcrumb{
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 15px;
    color: #888;
}
.header-breadcrumb a{
    color: #F97316;
    text-decoration: none;
    font-weight: 600;
}
.header-breadcrumb a:hover{
    text-decoration: underline;
}
.header-breadcrumb .breadcrumb-sep{
    margin: 0 8px;
    color: #ccc;
}
.header-breadcrumb .breadcrumb-current{
    color: #424b6a;
    font-weight: 700;
}
.right-menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.user-profile a{
    display: flex;
    align-items: center;
    color: #424b6a;
    font-size: 17px;
    font-weight: 700;
    line-height: 80px;
    padding:0px 40px 0px 25px;
}
.user-profile a:hover,
.user-profile a.active{
    background: #F97316;
    color: #fff;
    text-decoration: none;
}
.user-profile span{
    width: 41px;
    height: 41px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 12px;
    line-height: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.toggle-icon{
    display: none;
}

body{
    padding-top: 80px;
}
.content-wrapper{
    margin: 44px 0;
}
.card-box{
    border-radius: 10px;
    border: 1px solid #d2d7e9;
    background-color: #ffffff;
}
.info-title-box{
    padding: 20px 48px;
    position: relative;
    background: url(../img/title-info-vector.svg) no-repeat right center;
    margin-bottom: 35px;
    border-radius: 10px;
    border: 1px solid #d2d7e9;
    background-color: #ffffff;
}
.class-code-part{
    display: flex;
    max-width: 400px;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6D738A;
    margin-bottom: 20px;
}
.class-code-part span{
    margin: 0 10px 0 0;
    color: #424B6A;
}
.class-code-part .user{
    margin-bottom: 0;
}
.user{
    display: flex;
    align-items: center;
}
.user-img{
    border-radius: 100%;
    width: 25px;
    height: 25px;
    overflow: hidden;
    margin-right: 15px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.user-name h5{
    color: #424b6a;
    font-size: 17px;
    font-weight: 700;
    line-height: 135%;
    margin-right: 12px;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    display: inline-block;
}
.user-name .tt-students-info {
    display: inline-block;
    vertical-align: text-top;
    margin-left: 5px;
    cursor: pointer;
}
.user-name a:hover{
    color: #F97316;
    text-decoration: none;
}
.sidebar-category{
    padding:30px;
    margin-bottom: 45px;
}
.sidebar-category h3{
    margin-bottom: 13px;
}
.sidebar-category ul{
    padding: 0;
    margin: 0 0 16px;
}
.sidebar-category ul li{
    list-style-type: none;
    margin-bottom: 5px;
}
.sidebar-category ul li a{
    color: #6d738a;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
}
.sidebar-category ul li a:hover{
    color: #F97316;
}
.sidebar-category-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sidebar-category .btn-link{
    font-weight: 700;
    font-size: 15px;
    line-height: 140%;
}
.user-info-list{
    margin-bottom: 26px;
}
.user-info-box{
    padding: 20px 24px;
}
.user-info-list .user-img{
    width: 48px;
    height: 48px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.user-name .date{
    margin-top: 4px;
    color: #6d738a;
}
.user-info-list p{
    margin-bottom: 5px;
    color: #6d738a;
    margin-top: 20px;
}
.user-info-list .user-name p{
    margin: 0;
}
.comment-user-title{
    margin-bottom: 2px;
}
.comment-user-title .date{
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.comment-part{
    border-top: 1px solid #d2d7e9;
}
.comment-part .comments-list{
    /*border-bottom: 1px solid #d2d7e9;*/
}
.user-name .comment-user-title h5{
    font-size: 15px;
    line-height: 140%;
}
.comment-part h6{
    margin: 20px 24px 0;
    font-weight: 700;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0;
    text-transform: none;
}
.comment-user{
    padding: 16px 24px;
    border-bottom: 1px solid #d2d7e9;
}
.comment-user .user{
    margin-bottom: 0;
}
.comment-part .comment-user:last-child{
    border-bottom: 0;
}
.comment-part .user-img{
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}
.add-comment{
    padding: 15px 24px;
    display: flex;
    align-items: center;
    border-top: 1px solid #d2d7e9;
}
.add-comment .user-img {
    width: 32px;
    height: 32px;
}
.add-comment-form{
    width: calc(100% - 50px);
}
.add-comment-form form{
    position: relative;
    border-radius: 10px;
    background-color: #f6f7f9;
    height: 48px;
}
.add-comment-form form input{
    padding: 13px 50px 13px 16px;
    background: transparent;
    border: 0;
    color: #6d738a;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    width: 100%;
}
.add-comment-form form input::-webkit-input-placeholder {
    color: #6d738a;
    opacity: 0.5;
}
.add-comment-form form input::-moz-placeholder {
    color: #6d738a;
    opacity: 0.5;
}
.add-comment-form form input:-ms-input-placeholder {
    color: #6d738a;
    opacity: 0.5;
}
.add-comment-form form input:-moz-placeholder {
    color: #6d738a;
    opacity: 0.5;
}
.add-comment-form form button{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: url(../img/answer-icon.svg) no-repeat center center;
    background-size: 23px;
    border: 0;
    width: 45px;
    padding: 0;
}
.add-comment-form form button:hover{
    background: url(../img/answer-icon-hover.svg) no-repeat center center;
    background-size: 23px;
}
.user-profile-part{
    margin-bottom: 96px;
}
.management-box{
    padding: 32px;
    min-height: 237px;
    margin-bottom: 45px;
}
.management-box:hover{
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.engagement-chart-box {
    padding: 0;
}
.engagement-chart-box h5 {
    font-size: 24px;
    padding: 15px 15px 0;
    margin: 0;
}
.engagement-chart-box .top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px;
}
.engagement-chart-box .top-header .legends span {
    display: inline-block;
    padding: 8px 16px;
    background-color: #F97316;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 400;
    transition: all .3s linear;
}
.engagement-chart-box .top-header .legends .comprehension-legend {
    margin-left: 10px;
    background-color: #F97316;
}
.engagement-chart-box .top-header .legends span:hover {
    opacity: 0.7;
}
.engagement-chart-box .top-header .legends span.active {
    opacity: 0.3;
}
.engagement-chart-box .top-header .filters select {
    width: 80%;
}
.engagement-chart-box .select2-container--default .select2-selection--single {
    height: 38px;
}
.engagement-chart-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}

.progress-report{
    margin-bottom: 32px;
}
.progress-report:last-child{
    margin-bottom: 0;
}
.management-box p{
    margin-bottom: 11px;
    font-weight: 700;
}
.progress{
    height: 4px;
    border-radius: 50px;
    background-color: #d2d7e9;
    width: 100%;
}
.personal .progress-bar{
    background-color: #21aeed;
}
.career .progress-bar{
    background-color: #3cce6d;
}
.life .progress-bar{
    background-color: #9e62e5;
}
.progress-report .progress-count{
    float: right;
}
.graph-info{
    max-width: 139px;
    padding-left: 25px;
    display: none;
}
.graph-info p{
    margin-bottom: 15px;
    padding-left: 32px;
    position: relative;
}
.graph-info p:before{
    position: absolute;
    top: 9px;
    left: 0;
    width: 16px;
    height: 4px;
    border-radius: 3px;
    content: '';
    background-color: #d2d7e9;
}
.graph-info p.personal:before{
    background-color: #21aeed;
}
.graph-info p.career:before{
    background-color: #3cce6d;
}
.graph-info p.life:before{
    background-color: #9e62e5;
}
/*.graph{
    width: 55%;
    max-width: 200px;
}*/
/*#assignment-chart svg .apexcharts-legend{
    display: none;
}*/
.graph{
    width: 100%;
}
.graph #assignment-chart svg path{
    stroke: transparent;
}
.graph #assignment-chart svg .apexcharts-legend-series{
    margin:6px 0 6px !important;
    display: flex;
}
.graph #assignment-chart svg .apexcharts-legend-text{
    color: #424b6a !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 21px !important;
    width: calc(100% - 32px);
    max-width: 100px;
}
.graph #assignment-chart svg .apexcharts-legend{
    top: 0 !important;
    /*display: grid !important;*/
    align-content: center !important;
    width: 170px;
    padding-left: 20px;
}
.graph #assignment-chart svg .apexcharts-legend-series .apexcharts-legend-marker{
    border-radius: 3px !important;
    margin-right: 16px;
    top: 10px !important;
}
.graph #assignment-chart svg .apexcharts-datalabels-group text{
    color: #424b6a !important;
    font-family: "Open Sans" !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 36px !important;
}
.graph #assignment-chart{
    max-width: 350px;

}
.graph #assignment-chart,
.graph #assignment-chart .apexcharts-canvas,
.graph #assignment-chart svg,
.graph #assignment-chart svg foreignObject{
    height: 170px !important;
    min-height: 170px !important;
}
.graph-box{
    padding: 32px 20px;
}


.profile-wrapper{
    position: relative;
    padding-left: 380px;
}
.profile-left{
    position: fixed;
    left: 0;
    top: 80px;
    height: calc(100vh - 80px);
    border-right: 1px solid #d2d7e9;
    padding: 0 0px 100px;
    background: #fff;
    width: 380px;
}
.profile-right{
    padding: 50px 35px;
    width: 100%;
}
.main-info{
    padding: 50px 40px 0;
    height: 100%;
    display: block;
    overflow-y: scroll;
    overflow: auto;
}
.main-info .user-img{
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.main-info .change-photo{
    margin: 10px 0;
    display: inline-block;
}
.main-info h1{
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 50px;
}
.main-info h6{
    margin-bottom: 8px;
}
.main-info .btn{
    margin-bottom: 40px;
    width: 100%;
}
.main-info p{
    font-size: 17px;
    font-weight: 700;
    line-height: 22.95px;
    margin-bottom: 40px;
}
.sidebar-nav{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.sidebar-nav a{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #eef0f5;
    transition: color 0.15s ease;
}
.sidebar-nav a:last-child{
    border-bottom: none;
}
.sidebar-nav a:hover{
    color: #F97316;
    text-decoration: none;
}
.sidebar-nav a.active{
    color: #F97316;
}
.sidebar-nav a svg{
    flex-shrink: 0;
}
.profile-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    width: 100%;
}
.profile-link a{
    text-transform: uppercase;
}
.profile-discretion{
    padding-left: 0px;
    position: relative;
    margin-bottom: 25px;
}
.profile-discretion p{
    font-weight: normal;
    font-size: 15px;
    line-height: 140%;
    color: #6D738A;
    margin-bottom: 0;
    max-height: 189px;
    overflow-y: scroll;
    overflow:auto;
    max-width: 277px;
    position: relative;
}
/*.profile-discretion p .ps__scrollbar-y-rail{
    left: 0;
    right: auto;
}*/

/* Teacher Panel - Header & Sidebar Layout */
.teacher-panel .header-part{
    padding: 15px 30px;
}
.teacher-panel .header-part .logo img{
    width: 130px;
}
.teacher-layout .profile-left{
    top: 60px;
    height: calc(100vh - 60px);
    z-index: 50;
}
.teacher-layout .profile-right{
    padding: 30px 35px;
}
.teacher-layout .main-info h1{
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 25px;
}
.sidebar-class-info{
    background: #f0f4fa;
    border-radius: 8px;
    padding: 12px 14px;
    margin: -10px 0 20px;
    text-align: left;
}
.sidebar-class-name{
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.3;
}
.sidebar-class-code{
    font-size: 12px;
    color: #6b7280;
}
.sidebar-class-code-label{
    font-weight: 500;
}
.sidebar-class-code-value{
    font-weight: 700;
    color: #F97316;
    letter-spacing: 0.5px;
}
.sidebar-programs{
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #eef0f5;
}
.sidebar-programs h6{
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    margin-bottom: 10px;
}
.sidebar-program-list{
    display: flex;
    flex-direction: column;
}
.sidebar-program-list a{
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s ease;
    margin-bottom: 2px;
    line-height: 1.4;
}
.sidebar-program-list a:hover{
    background: #f0f4fa;
    color: #F97316;
    text-decoration: none;
}
.sidebar-program-list a.active{
    background: #F97316;
    color: #fff;
    font-weight: 600;
}
.sidebar-program-group{
    margin-bottom: 6px;
}
.sidebar-program-category{
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    padding: 8px 12px 4px;
    margin-top: 4px;
}
.sidebar-program-group a{
    padding-left: 20px;
    font-size: 13px;
}


.student-assignments-page .assignment-accordion{
    max-width: 996px;
    margin: 0 auto;
}
.assignment-list{
    padding:0;
    border-radius: 15px;
    border: 1px solid #d2d7e9;
    background-color: #ffffff;
    /*margin-bottom: 30px;*/
    margin-bottom: 16px;
}
.assignment-list.active,
.assignment-list:hover{
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.assignment-list h2{
    margin-bottom: 0;
    padding:28px 30px;
    font-size: 24px;
    line-height: 130%;
    cursor: pointer;
}
.accordion-content{
    padding: 0 30px;
    display: none;
}
.accordion-content h6{
    margin-bottom: 30px;
}
.accordion-content p{
    color: #424b6a;
    margin: 0 0 42px;
}
.activity-progress-box{
    border-radius:10px;
    border: 1px solid #d2d7e9;
    border-left-width: 4px;
    background-color: #ffffff;
    margin-bottom: 22px;
    padding: 19px 20px 19px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.activity-progress-box .activity-title{
    padding-right: 15px;
}
.activity-progress-box h5{
    margin-bottom: 7px;
}
.activity-progress-box p{
    color: #6d738a;
    font-size: 13px;
    font-weight: 600;
    letter-spacing:0.1em;
    text-transform: uppercase;
    margin: 0;
    line-height: 18px;
}

.activity-progress-box .activity-btn .btn.btn-primary{
    border: 0;
    color: #fff;
}
.activity-progress-box .btn:hover{
    opacity: 0.8;
}
.activity-progress-box.personal{
    border-color: #21aeed;
}
.activity-progress-box.career{
    border-color: #3cce6d;
}
.activity-progress-box.life{
    border-color: #9e62e5;
}
.activity-progress-box.personal .btn{
    background-color: #21aeed;
}
.activity-progress-box.career .btn{
    background-color: #3cce6d;
}
.activity-progress-box.life .btn{
    background-color: #9e62e5;
}

.activity-progress-box .activity-btn{
    width: 245px;
    text-align: center;
}
.activity-progress-box.completed{
    opacity: 0.35;
}
.profile-settings{
    margin-top: 20px;
}
.profile-settings form{
    max-width: 660px;
    margin: 0;
}
.profile-settings h2{
    margin-bottom: 30px;
    margin-top: 5px;
}
.back-link{
    color: #F97316;
    font-size: 15px;
    font-weight: 700;
    line-height: 140%;
}
.back-link:before{
    content: '';
    background: url(../img/back-icon.svg) no-repeat center center;
    background-size: 16px;
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 15px;
    vertical-align: -0.2rem;
}
.profile-settings .btn{
    width: auto;
    padding: 13.4px 48px;
}
.profile-settings .form-row{
    margin-right: -9px;
    margin-left: -9px;
}
.profile-settings .form-row>.col,
.profile-settings .form-row>[class*=col-]{
    padding-right: 9px;
    padding-left: 9px;
}

/*all-popup style*/
/*.mfp-bg{
    background: #fff;
    opacity: 1;
}*/
.all-popup{
    max-width: 384px;
    margin: auto;
    box-shadow: 0 20px 50px rgba(66, 75, 106, 0.15);
    background: #fff;
    position: relative;
}
.all-popup h3{
    text-align: center;
    background-color: #f6f7f9;
    padding: 20px;
    margin: 0;
}
.all-popup .popup-wrapper{
    padding: 28px 32px;
}
.all-popup .form-control{
    font-weight: normal;
    font-size: 15px;
}
.all-popup textarea.form-control{
    height: 150px;
    resize: none;
    padding: 13px 16px;
    line-height: 140%;
}
.all-popup .mfp-close{
    background: url(../img/close-icon.svg) no-repeat center center;
    background-size: 12px;
    font-size: 0;
    opacity: 1;
}
.all-popup .mfp-close:hover{
    opacity: 0.8;
}
.popover-popup .mfp-close {
    display: none;
}
.log-out-popup{
    text-align: center;
}
.log-out-popup h5{
    margin-bottom: 32px;
}
.edit-bio-popup {
    max-width: 500px;
}
.student-group-popup {
    max-width: 550px;
}
.teaceher-account-popup {
    max-width: 550px;
}
.student-group-popup .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #F97316;
    border-color: #F97316;
    color: #ffffff;
}
.student-group-popup .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: #F97316;
    color: #ffffff;
}
.student-group-popup .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: #F97316;
    color: #ffffff;
    opacity: 0.5;
}
.manage-groups-popup{
    max-width: 948px;
    border-radius: 10px;
    overflow: hidden;
}
.student-login-link-popup {
    max-width: 650px;
}
.student-login-link-popup .link {
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.student-login-link-popup .or-seperator {
    padding: 30px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.student-login-link-popup .line {
    border-top: 1px solid #ddd;
    width: 20%;
}
.student-login-link-popup .qr {
    text-align: center;
    margin-bottom: 20px
}
.manage-groups-table{
    border: 1px solid #6D738A;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 35px;
}
.manage-groups-table .table{
    margin-bottom: 0;
}
.manage-groups-table .table thead th{
    border: 0;
    border-left: 1px solid #D2D7E9;
}
.manage-groups-table .table td{
    border-color: #D2D7E9;
    border-left: 1px solid #D2D7E9;
}
.manage-groups-table .table thead th:first-child,
.manage-groups-table .table tr td:first-child{
    border-left: 0;
}
.add-new-group,
.select-students{
    font-weight: normal;
    font-size: 15px;
    line-height: 140%;
    color: #424B6A;
    display: flex;
    align-items: center;
    padding-left: 32px;
    position: relative;
    margin: 5px 0;
}
.add-new-group span,
.select-students span{
    width: 25px;
    height: 25px;
    border-radius: 100%;
    display: block;
    background: url(../img/add-new-group-icon.svg) no-repeat center center #6D738A;
    background-size: 13px;
    position: absolute;
    left: 0;
    top: -2px;
}
.add-new-group:hover,
.select-students:hover{
    color: #F97316;
}
.add-new-group:hover span,
.select-students span{
    background-color: #F97316;
}
.manage-groups-popup .btn{
    min-width: 252px;
    margin: 0 auto;
    display: block;
}
.group-close{
    border-radius: 10px;
    padding: 3px 9px;
    font-weight: bold;
    font-size: 17px;
    line-height: 135%;
    color: #FFFFFF;
    display: inline-block;
}
.close-icon{
    background: url(../img/close-group.svg) no-repeat center center;
    background-size: 17px;
    width: 13px;
    height: 13px;
    margin-right: 3px;
    display: inline-block;
    vertical-align: -0.05rem;
}
.group-tags-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.group-tags-list .group-close{
    margin: 5px 15px 0 0;
}
.all-popup h3 .back-link{
    float: left;
    color: #424B6A;
}
.all-popup h3 .back-link:before{
    background: url(../img/back-icon-dark.svg) no-repeat center center;
    background-size: 16px;
}
.all-popup h3 .back-link:hover{
    color: #F97316;
}
.all-popup h3 .back-link:hover:before{
    background: url(../img/back-icon.svg) no-repeat center center;
    background-size: 16px;
}


.assignments-list-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #d2d7e9;
    padding-bottom: 32px;
    margin: 20px 0 14px;
}
.assignments-list-title h5{
    margin-bottom: 0;
}
.assignments-unit small {
    color: #6d738a;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    display: block;
}
.assignments-unit small.chars-limit-text {
    color: #F97316 !important;
    font-weight: 600;
    text-align: right;
}
.assignments-question-list .assignments-question[data-type="fill_blank"] h5.ans-text {
    display: inline-block;
    padding: 0 6px 2px;
    border-bottom: 1px solid #000;
}
.assignments-question{
    margin-bottom: 60px;
}
.assignments-question h2{
    margin-bottom: 14px;
    flex-wrap: wrap;
    display: flex;
}
.assignments-question .question-box{
    margin-top: 12px;
}
.assignments-question .question-box textarea{
    margin: 0;
    font-size: 17px;
    line-height: 135%;
    height: 140px;
    resize: none;
}
/*.assignments-question .question-box textarea:hover{
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-color: #d2d7e9;
}
.assignments-question .question-box textarea:focus{
    border-color: #d2d7e9;
}*/
.answer-checkbox{
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.answer-checkbox .custom-checkbox{
    margin-right: 35px;
    margin-bottom: 20px;
}
.answer-checkbox .custom-checkbox:last-child{
    margin-right: 0;
}
.custom-control-label{
    font-size: 17px;
    font-weight: 700;
    line-height: 135%;
    text-transform: none;
    letter-spacing: 0;
}
.add-assignment-page .answer-checkbox .custom-control-label{
    font-weight: 500;
}
.custom-control-label::before{
    width: 24px;
    height: 24px;
    border: 1px solid #D2D7E9;
    border-radius: 3px !important;
    top: 0rem;
    left: -2.3rem;
}
.custom-checkbox{
    padding-left: 37px;
}
.custom-control-label::after{
    left: -2rem;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after{
    background: url(../img/checkbox-checked.svg) no-repeat center center;
    background-size: 14px;
}
.custom-control-input:focus~.custom-control-label::before{
    box-shadow: none;
}
.custom-control-input:focus:not(:checked)~.custom-control-label::before{
    border-color: #F97316;
}
.custom-control-input:checked~.custom-control-label::before {
    border-color: #F97316;
    background-color: #F97316;
}

.good-doing-text{
    font-size: 17px;
    font-weight: 700;
    line-height: 135%;
    padding: 0;
    border: 0;
    border-radius: 0;
    margin-top: 14px;
}
.good-doing-text span{
    margin: 0 5px;
}
.good-doing-text .form-control{
    border: 0;
    border-bottom: 1px solid #424b6a;
    width: 80px;
    border-radius: 0;
    height: auto;
    padding: 5px;
    display: inline;
    vertical-align: text-bottom;
}
.download-box{
    margin: 28px 0;
    position: relative;
    max-width: 325px;
}
.download-box.pdf{
    max-width: 150px;
}
.lightbox-list{
    margin: 28px 0;
    position: relative;
}
.lightbox-list a{
    margin-right: 10px;
}
.btn-secondary{
    background-color: rgba(0, 0, 0, 0.49);
}
.btn-secondary:focus{
    color: #fff;
}
.download-box .btn{
    position: absolute;
    top: -10px;
    right: -10px;
    background: #F97316;
    border-radius: 100%;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download-box .btn:hover{
    background: #F97316;
}
.download-box .btn svg{
    position: relative;
    top: -1px;
}
.upload-file{
    position: relative;
}
.upload-file input{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.assignments-unit .btn-primary{
    background-color: #21aeed;
}
.upload-file .btn{
    background-color: #21aeed;
}
.upload-file:hover .btn{
    border-color: #F97316;
    background-color: #F97316;
    color: #fff;
}
.upload-file .btn svg{
    margin-right: 10px;
}
.assignments-question .upload-file{
    margin-top: 25px;
    display: inline-block;
}
.assignments-question .upload-user-file:not(.upload-answer-file) {
    margin-top: 20px;
}
.assignments-unit .activity-btn{
    text-align: center;
    padding-top: 20px;
}
.assignments-unit .activity-btn .btn{
    min-width: 243px;
    display: inline-block;
}
.assignments-unit .activity-btn .btn:hover{
    border-color: #F97316;
    background-color: #F97316;
    color: #fff;
}
.assignments-question h2 span{
    margin-left: 10px;
}
.answer-icon:before{
    content: '';
    background: url(../img/answer-question-icon.svg) no-repeat center center;
    background-size: 100%;
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: -0.3rem;
}
.forget-answer-icon:before{
    content: '';
    background: url(../img/forget-answer-icon.svg) no-repeat center center;
    background-size: 100%;
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: -0.6rem;
    margin-right: 10px;
}
.forget-answer-icon{
    color: #eb5757;
    font-size: 13px;
    font-weight: 600;
    line-height: 18.2px;
}
.activity-questions .forget-answer-icon{
    line-height: 39px;
}
.scroll-top-btn{
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 48px;
}
.scroll-top-btn a{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #d2d7e9;
    margin-top: 16px;
    background: #fff;
}
.scroll-top-btn a:first-child{
    margin-top: 0;
}
.scroll-top-btn a:hover{
    border-color: #F97316;
}
.scroll-top-btn a:hover svg path{
    stroke: #F97316;
}

.user-info-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.students-right-info{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /*margin-bottom: 20px;*/
}
.students-right-info .form-control{
    width: 300px;
    margin-right: 39px;
}

.share-link:hover svg path{
    stroke: #F97316;
}
/*.add-class-comment{
    padding-right: 60px;
}*/
.add-class-comment{
    margin-top: 20px;
}
.add-class-comment .form-control{
    background: #F6F7F9;
    height: 146px;
    resize: none;
    margin-bottom: 12px;
    padding: 13px 16px;
    border:1px solid transparent;
}
.add-class-comment .form-control.is-invalid {
    border-color: #dc3545;
}
.edit-link{
    color: #F97316;
    font-weight: normal;
    font-size: 15px;
    line-height: 140%;
}
.delete-link{
    color: #820909;
    font-weight: normal;
    font-size: 15px;
    line-height: 140%;
    margin-left: 21px;
}
.students-right-info .select2-container--default .select2-selection--single{
    position: relative;
}
.select2-container--default .select2-selection--single:focus {
    box-shadow: none;
    outline: none;
}
/*.students-right-info .select2-container{
    margin-right: 39px;
}*/
.select2-container--default .select2-selection--single {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #d2d7e9;
    color: #424b6a;
    font-weight: normal;
    font-size: 15px;
    line-height: 140%;
}
.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--multiple:hover{
    border-color: #F97316;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #424b6a;
    line-height: 48px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    background: url(../img/select-arroe.svg) no-repeat center center;
    background-size: 8px;
    width: 40px;
    height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background-color: #F97316;
}
/**/
.select2-container--default .select2-selection--multiple{
    min-height: 48px;
    border-radius: 10px;
    border: 1px solid #d2d7e9;
    color: #424b6a;
    font-weight: normal;
    font-size: 14px;
    line-height: 34px;
    padding: 6px 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered{
    color: #424b6a;
    line-height: 24px;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
    font-size: 14px;
    font-weight: 500;
}
.select2-container--default .select2-selection--multiple .select2-search--inline {
    display: inline-block;
    padding: 0 8px;
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
    margin: 0;
}
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple:focus {
    border-color: #F97316;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #fff;
    border-color: #ccc;
    margin-left: 8px;
    margin-top: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    border-right: none;
    background-color: #fff;
}

.teacher-assignments-page{
    max-width: none;
}
.create-assignement-list{
    margin-top: 32px;
}
.create-assignement{
    margin-bottom: 42px;
    padding: 24px 32px;
    box-shadow: 0px 20px 50px rgba(66, 75, 106, 0.15);
}
.create-assignement h3{
    margin-bottom: 20px;
    padding-right: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.create-assignement h3 .edit-link{
    position: absolute;
    right: 0;
    top: 5px;
}
.edit-link:hover svg path{
    fill: #424b6a;
}
.assignement-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    flex-wrap: wrap;
}
.assignement-footer .btn{
    padding-right: 28px;
    padding-left: 28px;
    font-weight: 700;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0;
    text-transform: none;
}
.assignement-footer p{
    margin:5px 0;
    font-weight: 700;
    color: #6D738A;
}
.teacher-category{
    margin-bottom: 30px;
}
.teacher-category h3{
    margin: 0 0 10px;
}
.teacher-category .select2-selection{
    margin-top: 8px;
}
.main-info .teacher-category p{
    font-weight: normal;
    font-size: 15px;
    line-height: 140%;
}
.teacher-category .answer-checkbox{
    display: block;
    margin-top: 16px;
}
.teacher-category .custom-control-label{
    margin-right: 0;
}
.teacher-category .answer-checkbox .custom-checkbox{
    min-height: auto;
}
.activities-checkbox .custom-control-label::before{
    border-color:#21AEED;
}
.activities-checkbox .custom-control-input:not(:disabled):active~.custom-control-label::before,
.activities-checkbox .custom-control-input:checked~.custom-control-label::before {
    border-color: #21AEED;
    background-color:#21AEED;
}
.activities-checkbox .custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #21AEED;
}
.assign-activity-part{
    max-width: 847px;
}
.assign-activity-part h2{
    margin-bottom: 36px;
}
.assign-activity-part .btn{
    float: right;
    margin-top: -77px;
}
.assign-activity-part textarea.form-control{
    height: 160px;
    resize: none;
}


.tabs,
.main-tabs{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.tabs li,
.main-tabs li{
    list-style-type: none;
}
.main-tabs{
    margin-bottom: 16px;
}
.main-tabs li {
    border-radius: 10px;
    margin-right: 20px;
}
.main-tabs li a{
    font-weight: 700;
    font-size: 17px;
    line-height: 135%;
    color: #424B6A;
    display: block;
    padding: 12px 24px;
    border-radius: 10px;
    background-color: transparent;
    text-align: center;
}

.main-tabs li.current.personal a,
.main-tabs li.personal a:hover{
    background-color: #21aeed;
    color: #fff;
}
.main-tabs li.current.career a,
.main-tabs li.career a:hover{
    background-color: #3cce6d;
    color: #fff;
}
.main-tabs li.current.life a,
.main-tabs li.life a:hover{
    background-color: #9e62e5;
    color: #fff;
}
h3.main-link{
    display: none;
}
.management-unit-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #21AEED;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 11px;
    padding-right: 12px;
    padding-left: 57px;
    position: relative;
}
.management-unit-list h5{
    margin: 10px 0;
}
.group-assignment-list .management-unit-list h5 a {
    color: #424b6a;
}
.management-unit-list .unit-title{
    display: flex;
    align-items: center;
    width: calc(100% - 350px);
}
.management-unit-list .unit-title .custom-checkbox{
    padding: 0;
}
.management-unit-list .unit-title .custom-control-label{
    top: 50%;
    position: absolute;
    left: -10px;
    margin-top: -12px;
    border-radius: 4px;
    padding: 0;
}
.management-unit-list .unit-title h5 {
    display: flex;
    align-items: center;
}
.management-unit-list .unit-title label {
    font-weight: inherit;
    letter-spacing: normal;
    text-transform: none;
}
.management-unit-list .unit-title h5 a{
    color: #424b6a;
    margin-left: 10px;
}
.management-unit-list .unit-title h5 a img{
    max-width: 24px;
}
.unit-category-list span{
    margin-left: 9px;
    font-weight: normal;
    font-size: 15px;
    line-height: 140%;
}
.personal-management-unit.personal .custom-control-label::before{
    border-color: #21AEED;
    background: #21AEED;
    opacity: 0.2;
}
.personal-management-unit.personal .custom-control-input:checked~.custom-control-label::before {
    border-color: #21AEED;
    background-color: #21AEED;
    opacity: 1;
}
.personal-management-unit.career .custom-control-label::before{
    border-color: #3cce6d;
    background: #3cce6d;
    opacity: 0.2;
}
.personal-management-unit.career .custom-control-input:checked~.custom-control-label::before {
    border-color: #3cce6d;
    background-color: #3cce6d;
    opacity: 1;
}
.personal-management-unit.life .custom-control-label::before{
    border-color: #9e62e5;
    background: #9e62e5;
    opacity: 0.2;
}
.personal-management-unit.life .custom-control-input:checked~.custom-control-label::before {
    border-color: #9e62e5;
    background-color: #9e62e5;
    opacity: 1;
}
/*.personal-management-unit.personal .management-unit-list.active{
    background: #21AEED;
}*/
/*.management-unit-list.active,
.management-unit-list.active h5{
    color: #fff;
}
.management-unit-list.active .unit-title span{
    background: url(../img/unit-check.svg) no-repeat center center #fff;
    background-size: 14px;
    opacity: 1;
    border: 2px solid #21AEED;
}*/
.tab-content,
.main-content{
    display: none;
}
.tab-content.current,
.main-content.current{
    display: block;
}
.unit-content-tabs{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.tabs li a{
    font-weight: bold;
    font-size: 17px;
    line-height: 135%;
    color: #424B6A;
    opacity: 0.5;
    position: relative;
}
.tabs li a:after{
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    content: '';
}
.tabs li{
    margin-left: 64px;
}
.tabs li:first-child{
    margin-left: 0;
}
.tabs li.current a,
.tabs li a:hover{
    opacity: 1;
}
.tabs li.current a:after,
.tabs li a:hover:after{
    background-color: #21AEED;
}
.search{
    position: relative;
}
.search .form-control{
    padding-left: 48px;
    width: 260px;
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
}
.search .form-control::-webkit-input-placeholder {
    color: #6D738A;
    opacity: 1;
}
.search .form-control::-moz-placeholder {
    color:#6D738A;
    opacity: 1;
}
.search .form-control:-ms-input-placeholder {
    color: #6D738A;
    opacity: 1;
}
.search .form-control:-moz-placeholder {
    color: #6D738A;
    opacity: 1;
}
.search button{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
}
.search button:hover svg path{
    stroke: #F97316;
}

.main-content.career .tabs li.current a:after,
.main-content.career .tabs li a:hover:after{
    background-color: #3cce6d;
}
.main-content.career .management-unit-list{
    border-color: #3cce6d;
}
/*.main-content.career .management-unit-list .unit-title span{
    background-color: #3cce6d;

}*/
.main-content.career .management-unit-list.active .unit-title span{
    border-color:#3cce6d;
    background-color: #fff;
    background: url(../img/unit-check-career.svg) no-repeat center center #fff;
    background-size: 20px;
}
.main-content.career .management-unit-list.active {
    background: #3cce6d;
}
.main-content.life .tabs li.current a:after,
.main-content.life .tabs li a:hover:after{
    background-color: #9e62e5;
}
.main-content.life .management-unit-list{
    border-color: #9e62e5;
}
/*.main-content.life .management-unit-list .unit-title span{
    background-color: #9e62e5;

}*/
.main-content.life .management-unit-list.active .unit-title span{
    border-color:#9e62e5;
    background-color: #fff;
    background: url(../img/unit-check-life.svg) no-repeat center center #fff;
    background-size: 20px;
}
.main-content.life .management-unit-list.active {
    background: #9e62e5;
}
.group-title{
    border-radius: 10px;
    border-radius: 10px;
    padding: 3px 20px;
    max-width: 260px;
    color: #fff;
    margin-bottom: 15px;
}
.group-assignment-list{
    margin-bottom: 26px;
}
.group-assignment-list h2{
    margin-bottom: 14px;
}
.view-assignment-part .management-unit-list {
    padding-left: 12px;
}
.view-assignment-part .title{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.view-assignment-part .title a{
    margin-right: 10px;
}
.activity-view-header{
    display: flex;
    justify-content: space-between;
    border-bottom: 4px solid #E7E9EF;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.activity-view-header p{
    margin-bottom: 15px;
}
.activity-progress{
    text-align: right;
}
.activity-progress h2{
    display: flex;
    align-items: center;
}
.print-link{
    border: 1px solid #D2D7E9;
    box-sizing: border-box;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.print-link:hover{
    background-color: #F97316;
    border-color: #F97316;
}
.print-link:hover svg path{
    fill: #fff;
}
.assignments-question-list{
    border-bottom: 4px solid #E7E9EF;
    margin-bottom: 30px;
}
.assignments-question-list .assignments-question h2{
    margin-bottom: 35px;
}
.assignments-question-list .assignments-question p{
    margin-bottom: 16px;
}
.assignments-question-list .assignments-question h2 span{
    margin-left: 115px;
}
.assesment-range-slider{
    text-align: center;
    margin-bottom: 47px;
}
.assesment-range-slider h2{
    margin-bottom: 16px;
}
.assesment-range-slider p{
    max-width: 444px;
    margin: 0 auto 36px;
}

.assesment-range-slider .noUi-target {
    border: 0;
    box-shadow: none;
    background: #424B6A;
    height: 2px;
}
.assesment-range-slider .noUi-connect {
    background: #F97316;
}
.assesment-range-slider .noUi-horizontal .noUi-handle {
    width: 12px;
    height: 12px;
    background: #F97316;
    border-radius: 100%;
    box-shadow: none;
    opacity: 1;
    border: 0;
    right: -6px;
    top: -5px;
    z-index: 2;
}
.assesment-range-slider .noUi-horizontal .noUi-handle:before, .price-range-slider .noUi-horizontal .noUi-handle:after {
    display: none;
}
.range-slider .noUi-handle:after{
    display: none;
}
.assesment-range-slider .noUi-touch-area {
    display: none;
}
.assesment-range-slider .noUi-horizontal .noUi-handle:focus {
    outline: none;
}
.range-slider .noUi-pips-horizontal .noUi-marker{
    display: none;
}
.range-slider .noUi-pips-horizontal .noUi-marker-large,
.range-slider .noUi-pips-horizontal .noUi-value-large {
    cursor: pointer;
}
.range-slider .noUi-pips-horizontal .noUi-marker.noUi-marker-large{
    display: block;
    width: 10px;
    height: 10px;
    background: #424B6A;
    border-radius: 100%;
    box-shadow: none;
    opacity: 1;
    border: 0;
    right: -5px;
    top: -5px;
    z-index: 1;
    margin: -1px -5px;
}
.range-slider .noUi-pips-horizontal {
    padding: 0px 0;
    height: 0;
    width: 100%;
    font-weight: 700;
    font-size: 17px;
    line-height: 135%;
    color: #424B6A;
}
.range-slider .noUi-base, .range-slider .noUi-connects{
    z-index: inherit;
}
.range-slider .noUi-base{
    z-index: 0;
}
.not-started,
.in-progress,
.instructor-review,
.unit-complete{
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    min-width: 215px;
}
.not-started:before,
.in-progress:before,
.instructor-review:before,
.unit-complete:before{
    background: #FF0000;
    width: 15px;
    height: 15px;
    content: '';
    display: block;
    margin-right: 11px;
    border-radius: 100%;
}
.in-progress:before{
    background: #FE8B03;
}
.instructor-review:before{
    background: #FECA03;
}
.unit-complete:before{
    background: #3CCE6D;
}
.student-lesting-add{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 32px;
    margin-bottom: 24px;
}
.student-lesting-add .btn{
    margin-left: 20px;
}
.teacher-add-lesting{
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #D2D7E9;
    box-sizing: border-box;
    border-radius: 15px;
    margin-bottom: 16px;
    padding: 19px 32px;
}
.teacher-add-lesting h3{
    margin-bottom: 0;
    flex: 1;
}
.teacher-add-lesting .user-img{
    width: 48px;
    height: 48px;
    margin:0 20px;
}
.teacher-add-lesting h3 a{
    color: #424b6a;
}
.student-top-part{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 30px;
}
.student-top-part .user{
    margin-bottom: 0;
}
.student-top-part .user-img{
    width: 80px;
    height: 80px;
    margin-right: 32px;
}
.student-top-part .user-name h5{
    font-size: 30px;
}
.print-portfolio{
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: #424B6A;
}
.print-portfolio svg{
    margin-right: 10px;
}
.print-portfolio:hover{
    color: #F97316;
}
.students-profile-page hr{
    border-color: #D2D7E9;
    margin-bottom: 48px;
}
.portfolio-send-form{
    padding-top: 20px;
}

textarea.form-control{
    resize: none;
    font-weight: normal;
}
.portfolio-send-form textarea.form-control{
    height: 160px;
    padding: 13px 16px;
    font-size: 15px;
    line-height: 140%;
    color: #424B6A;
}

.portfolio-send-form .btn{
    float: right;
}

.teacher-classes-page .assignment-accordion,
.student-classes-page .assignment-accordion{
    max-width: 996px;
    margin: 0 auto;
}
.teacher-classes-page .assignment-list .acco_tab a,
.student-classes-page .assignment-list .acco_tab a {
    color: inherit;
    text-decoration: none;
}

.assignments-question .embed-responsive {
    width: 50%;
}
.assignments-question .upload-preview {
    position: relative;
    max-width: 150px;
}
.assignments-question .upload-preview .upload-preview-inner {
    margin-top: 20px;
    border: 1px solid #ededed;
}
.assignments-question .upload-preview .delete {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 18px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    cursor: pointer;
}

.view-assignment-page .profile-left {
    height: 100vh;
}

.report-issue p {
    color: #424b6a;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
}

.learning-materials-page .pin {
    width: 10px;
    margin-right: 10px;
}
.learning-materials-page .copy {
    width: 18px;
    height: 18px;
    margin-top: -4px;
    margin-left: 5px;
    cursor: pointer;
    color: #F97316;
}
.learning-materials-page .copy:hover {
    color: #424B6A;
}

/* school */
.school-panel .header-small {
    background-color: #FFF;
}
.school-panel .auth-page .left-part {
    width: 50%;
    background-color: #F7F7F7;
    padding: 160px 30px 100px;
}
.school-panel .auth-page .left-part .form-control {
    background: transparent;
}
.school-panel .auth-page .right-part {
    position: relative;
    width: 50%;
    padding: 160px 30px 100px;
    background-color: #FFF;
}
.school-panel .profile-wrapper .details h3 {
    font-size: 15px;
}
.school-panel .teacher-licences-popup {
    max-width: 800px;
}
.school-panel .teachers-page .active {
    color: #F97316;
}
.school-panel .teachers-page .teachers-list .btn {
    padding: 5px 10px;
    font-size: 12px;
    text-transform: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.school-panel .teachers-page .teachers-list .btn-danger:focus {
    color: #fff;
}
.school-panel .teachers-page .teachers-list .btn-danger:hover {
    background-color: #fff;
    color: #dc3545;
}
.school-panel .teachers-page .teachers-list .btn-secondary:hover {
    background-color: #fff;
    color: #5a6268;
    border-color: #5a6268;
}
.school-panel .teachers-page .invitation-share-link,
.teacher-panel .teacher-assignments-page .invitation-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
    padding: 10px;
    border: 1px dashed #424b6a;
    border-radius: 8px;
}
.school-panel .teachers-page .invitation-share-link .share-link,
.teacher-panel .teacher-assignments-page .invitation-share-link .share-link {
    word-break: break-word;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
}
.school-panel .teachers-page .invitation-share-link .copy,
.teacher-panel .teacher-assignments-page .invitation-share-link .copy {
    width: 26px;
    height: 26px;
    margin-left: 18px;
    cursor: pointer;
    color: #F97316;
}
.school-panel .teachers-page .invitation-share-link .copy:hover,
.teacher-panel .teacher-assignments-page .invitation-share-link .copy:hover {
    color: #424B6A;
}
.school-panel .verify-email-page p {
    font-size: 15px;
    line-height: 26px;
}
.school-panel .licences-page [x-cloak] {
    display: none !important;
}
.school-panel .licences-page .search-licences form svg {
    width: 18px;
    position: absolute;
    top: 15px;
    left: 30px;
    color: #d2d7e9;
}
.school-panel .licences-page .search-licences form .form-control {
    padding-left: 45px;
}
.school-panel .licences-page .program-group {
    margin-bottom: 20px;
}
.school-panel .licences-page .program-group > h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}
.school-panel .licences-page .program-group .program {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #F97316;
    border-radius: 10px;
    margin-bottom: 12px;
    padding-right: 12px;
    padding-left: 57px;
    position: relative;
}
.school-panel .licences-page .program-group .program .left {
    display: flex;
    align-items: center;
    width: calc(100% - 200px);
}
.school-panel .licences-page .program-group .program .left .custom-checkbox {
    padding: 0;
}
.school-panel .licences-page .program-group .program .left .custom-control-label {
    top: 50%;
    position: absolute;
    left: -10px;
    margin-top: -12px;
    border-radius: 4px;
    padding: 0;
    font-weight: inherit;
    letter-spacing: normal;
    text-transform: none;
}
.school-panel .licences-page .program-group .program .left h5 {
    /*display: flex;
    align-items: center;*/
    margin: 10px 0;
    font-size: 14px;
}
.school-panel .licences-page .program-group .program .left label {
    font-weight: inherit;
    letter-spacing: normal;
    text-transform: none;
}
.school-panel .licences-page .program-group .program .left .bundle-programs {
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
}
.school-panel .licences-page .program-group .program .left .custom-control-label::before {
    border-color: #F97316;
    background: #F97316;
    opacity: 0.2;
}
.school-panel .licences-page .program-group .program .left .custom-control-label::after {
    left: -2rem;
}
.school-panel .licences-page .program-group .program .left .custom-control-input:checked~.custom-control-label::before {
    opacity: 1;
}
.school-panel .licences-page .program-group .program .right {
    display: flex;
    justify-content: flex-end;
    width: 180px;
}
.school-panel .licences-page .program-group .program .right span {
    font-size: 15px;
    font-weight: bold;
}
.school-panel .licences-page .basket > h3,
.school-panel .licences-page .basket .payment > h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.school-panel .licences-page .basket .seleceted-programs .program {
    margin-bottom: 20px;
}
.school-panel .licences-page .basket .seleceted-programs .program .title {
    display: flex;
    justify-content: space-between;
}
.school-panel .licences-page .basket .seleceted-programs .program .title h5 {
    font-size: 15px;
    margin-bottom: 4px;
}
.school-panel .licences-page .basket .seleceted-programs .program .title .programs-titles {
    font-style: italic;
    color: #424B6A;
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;
}
.school-panel .licences-page .basket .seleceted-programs .program .title a.remove {
    flex: 0 0 20px;
    height: 20px;
    line-height: 1;
    color: #dc3545;
    transition: all .3s linear;
}
.school-panel .licences-page .basket .seleceted-programs .program .title a.remove:hover {
    opacity: 0.5;
}
.school-panel .licences-page .basket .seleceted-programs .program .qty-price,
.school-panel .licences-page .basket .seleceted-programs .program .qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.school-panel .licences-page .basket .seleceted-programs .program .qty .icon {
    width: 12px;
    color: #F97316;
    cursor: pointer;
}
.school-panel .licences-page .basket .seleceted-programs .program .qty input {
    border: none;
    text-align: center;
    width: 30px;
}
.school-panel .licences-page .basket .seleceted-programs .program .qty .text {
    margin-right: 10px;
}
.school-panel .licences-page .basket .seleceted-programs .program .price {
    font-size: 18px;
    font-weight: bold;
}
.school-panel .licences-page .basket .payment-and-totals {
    margin-top: 40px;
    font-size: 18px;
    font-weight: bold;
}
.school-panel .licences-page .basket .payment-and-totals .price {
    color: #F97316;
}
.school-panel .licences-page .basket .payment {
    margin-bottom: 15px;
    font-weight: 400;
}
.school-panel .licences-page .basket .StripeElement {
    height: 44px;
    padding: 12px;
    border: 1px solid #F97316;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    transition: box-shadow 150ms ease;
}
.school-panel .licences-page .basket .StripeElement.StripeElement--invalid {
    border-color: #dc3545;
}
.school-panel .licences-page .basket #card-errors {
    font-size: 14px;
    color: #dc3545;
    margin-top: 6px;
}
.school-panel .licences-page .basket .payment-and-totals .btn.disable {
    opacity: 0.5;
    pointer-events: none;
}

.view-videos-page .profile-left ul li {
    margin-top: 10px;
}
.view-videos-page .profile-left ul a {
    font-size: 16px;
    font-weight: 600;
    line-height: 135%;
    letter-spacing: 0;
    color: #424b6a;
}
.view-videos-page .profile-left ul a:hover {
    color: #F97316;
}
.view-videos-page .profile-left ul a.active {
    font-weight: 700;
    color: #F97316;
}
.view-videos-page .profile-right .video-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 16px 0 8px;
}
.view-videos-page .profile-right .video-box p {
    font-size: 13px;
}

/* Toggle Switch Component */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: 0.3s;
}
.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
    background-color: #28a745;
}
.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

/* ==========================================================================
   Auth Page Styles
   ========================================================================== */
.auth-page-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 150px 20px 60px;
    background: var(--color-background-light);
}
.auth-page-container {
    width: 100%;
    max-width: 480px;
}
.auth-card {
    background: var(--color-background);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    background: var(--color-background);
    z-index: 10;
}
.auth-tab {
    flex: 1;
    padding: var(--spacing-lg);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition-base);
}
.auth-tab.active {
    background: #EBF4FF;
    color: var(--color-brand);
    border-bottom-color: var(--color-brand);
}
.auth-form {
    padding: var(--spacing-xl);
}
.auth-form-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}
.auth-form-header p {
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    margin: 0;
}
.auth-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
}
.auth-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-lg);
    transition: var(--transition-base);
}
.auth-input:focus {
    outline: none;
    border-color: var(--color-brand);
}
.auth-btn {
    width: 100%;
    padding: 14px;
    background: var(--color-brand);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition-base);
}
.auth-btn:hover {
    background: #053d83;
}
.auth-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
}
.auth-link {
    color: var(--color-brand);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
}
.auth-link:hover {
    text-decoration: underline;
}
.auth-warning {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 12px;
    padding: var(--spacing-lg);
    margin-top: var(--spacing-md);
}
.auth-warning-icon {
    background: #FEE2E2;
    border-radius: 50%;
    padding: var(--spacing-sm);
    flex-shrink: 0;
}
.auth-warning-title {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: #991B1B;
}
.auth-warning-text {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: var(--font-size-base);
    color: #7F1D1D;
    line-height: 1.5;
}
.auth-warning-link {
    color: #DC2626;
    font-weight: var(--font-weight-semibold);
    text-decoration: underline;
}
.auth-warning-btn {
    background: transparent;
    border: 1px solid #DC2626;
    color: #DC2626;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 6px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition-base);
}
.auth-warning-btn:hover {
    background: #DC2626;
    color: #fff;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .main-tabs li a{
        font-size: 14px;
    }
}
@media (min-width: 992px) and (max-width: 1024px) {

}
@media screen and (min-width: 1200px) {
    .students-profile-page .container{
        max-width: 980px;
    }
    .school-panel .auth-page .right-part {
        min-height: 100vh;
    }
}
@media screen and (max-width: 1199px) {
    .title-right{
        font-size: 44px;
        line-height: 44px;
    }
    .profile-wrapper{
        padding-left: 300px;
    }
    .profile-left{
        width: 300px;
        padding-bottom: 50px;
    }
    .main-info{
        padding: 40px 15px 0;
    }
    .profile-link{
        padding: 15px 15px;
    }
    .profile-right{
        padding: 50px 15px;
    }
    .students-right-info .form-control {
        margin-right: 20px;
    }
    .main-tabs li a{
        font-size: 13px;
        padding: 12px 15px;
    }
    .tabs li {
        margin-left: 34px;
    }
}
@media (min-width: 991px) and (max-width: 1199px) {

}
@media screen and (min-width: 992px) {

}
@media screen and (max-width: 991px) {
    .info-title-box{
        background-position: right -200px center;
    }
    .menu-part ul li a {
        padding: 28.8px 20px;
        font-size: 15px;
    }
    .header-part{
        padding: 0 0 0 15px;
    }
    .user-profile a{
        font-size: 15px;
        padding: 0px 20px 0px 20px;
    }
    .user-profile span{
        width: 30px;
        height: 30px;
        vertical-align: -0.65rem;
    }

    .profile-wrapper{
        padding: 0;
    }
    .profile-left{
        position: static;
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #d2d7e9;
        height: auto;
        padding-bottom: 15px;
    }
    .main-info{
        max-width: 720px;
        margin: 0 auto;
    }
    .profile-link{
        position: static;
    }
    h2 {
        font-size: 24px;
        font-weight: 700;
        line-height: 31.2px;
    }
    .assignment-list h2{
        padding: 15px 20px;
    }
    .accordion-content{
        padding: 0 20px;
    }
    .activity-progress-box{
        display: block;
    }
    .activity-progress-box .activity-btn{
        width: 100%;
        margin-top: 15px;
        text-align: left;
    }
    .assignments-question h2{
        font-size: 22px;
        line-height: 30px;
    }
    .scroll-top-btn{
        right: 10px;
        bottom: 10px;
    }
    .user-info-wrapper{
        flex-wrap: wrap;
    }
    .students-right-info{
        justify-content: space-between;
    }
    .add-class-comment {
        padding-right: 0px;
    }
    .class-code-part{
        max-width: 360px;
    }
    .profile-discretion p{
        max-width: 100%;
        margin-bottom: 0 !important;
    }
    .engagement-chart-box .top-header .filters {
        margin-top: 15px;
    }
}
@media (min-width: 767px) and (max-width: 991px) {
    h1, .title {
        font-size: 34px;
        line-height: 40px;
    }
    .student-lesting-add .btn{
        padding: 14.2px 20px;
    }

}
@media screen and (min-width: 768px) {
    .menu-part{
        display: block !important;
    }
}
@media screen and (max-width: 767px) {
    body {
        padding-top: 50px;
    }
    .header-part {
        padding: 0 15px;
    }
    .user-profile a{
        padding: 10px 0;
        font-size: 0;
        line-height: inherit;
    }
    .user-profile a:hover{
        background: transparent;
    }
    .menu-part{
        display: none;
    }
    .header-part .col-md-8{
        position: inherit;
    }
    .menu-part{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
    }
    .menu-part ul{
        display: block;
    }
    .menu-part ul li a {
        padding: 16px 20px;
    }
    .toggle-icon{
        display: block;
    }
    .menu-toggle {
        width: 20px;
        display: block;

    }
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2.5px;
        background: #424b6a;
        margin: 4px 0 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .menu-toggle span:first-child{
        margin-top: 0;
    }
    .menu-toggle.active span:nth-of-type(1) {
        transform: rotate(45deg);
        margin-bottom: -6.5px;
    }
    .menu-toggle.active span:nth-of-type(2) {
        display: none;
    }
    .menu-toggle.active span:nth-of-type(3) {
        transform: rotate(-45deg);
    }
    .menu-toggle.active span{
        background: #F97316;
    }
    .header-small{
        padding: 20px 0px;
    }
    h1 {
        font-size: 30px;
        line-height: 38px;
    }
    .login-form-btn {
        margin: 24px 0 30px;
    }
    .main-info{
        max-width: 540px;
    }
    .left-part {
        width: 100%;
        padding: 110px 15px 40px;
        min-height: 100%;
    }
    .right-part {
        width: 100%;
        padding: 40px;
        position: static;
    }
    .right-part img{
        height: auto;
    }
    .title-right {
        font-size: 36px;
        line-height: 36px;
        letter-spacing: 0;
    }
    .sidebar-category{
        margin-bottom: 20px;
    }
    .user-profile-part {
        margin-bottom: 55px;
    }
    .info-title-box {
        background-position: right -360px center;
    }
    .info-title-box {
        padding: 20px 20px;
    }
    .main-info h1{
        margin-bottom: 30px;
    }
    .main-info p{
        margin-bottom: 30px;
    }
    .profile-right {
        padding: 30px 0px;
    }
    .assignment-list h2{
        font-size: 16px;
    }
    .activity-progress-box .btn{
        min-width: 100%;
    }
    .activity-progress-box{
        padding: 15px;
    }
    .graph #assignment-chart svg .apexcharts-datalabels-group text{
        font-size: 20px !important;
        line-height: 26px !important;
    }
    .answer-checkbox .custom-checkbox {
        margin-right: 15px;
    }
    .custom-control-label {
        font-size: 15px;
    }
    .assignments-question h2 span{
        display: block;
        margin: 5px 0 0;
        width: 100%;
    }
    .assignments-question {
        margin-bottom: 50px;
    }
    .assignments-list-title{
        padding-bottom: 20px;
    }
    .assignments-question h2 {
        font-size: 18px;
        line-height: 26px;
    }
    .assignments-question .embed-responsive {
        width: 100%;
    }
    .scroll-top-btn a{
        width: 38px;
        height: 38px;
        margin-top: 10px;
    }
    .scroll-top-btn a img{
        width: 10px;
    }
    .good-doing-text{
        font-size: 13px;
    }
    .btn{
        padding: 14.4px 20px;
    }
    .answer-checkbox .custom-checkbox{
        margin-bottom: 10px;
    }
    .create-assignement {
        margin-bottom: 30px;
        padding: 24px 24px;
    }
    h3.main-link{
        display: block;
        text-align: center;
    }
    h3.main-link a{
        font-weight: 700;
        font-size: 17px;
        line-height: 135%;
        color: #424B6A;
        display: block;
        padding: 12px 24px;
        border-radius: 10px;
        background-color: transparent;
        border: 1px solid #d2d7e9;
    }
    h3.main-link.current.personal a{
        background-color: #21aeed;
        color: #fff;
        border-color: #21aeed;
    }
    h3.main-link.current.career a{
        background-color: #3cce6d;
        color: #fff;
        border-color: #3cce6d;
    }
    h3.main-link.current.life a{
        background-color: #9e62e5;
        color: #fff;
        border-color: #9e62e5;
    }
    .unit-content-tabs{
        display: block;
    }
    .unit-content-tabs .tabs{
        margin-bottom: 25px;
    }
    .unit-category-list{
        display: flex;
        flex-wrap: wrap;
        max-width: 190px;
    }
    .unit-category-list span{
        margin: 5px 0;
        width: 50%;
        display: block;
    }
    .management-unit-list .unit-title{
        width: calc(100% - 190px);
    }
    .main-tabs{
        display: none;
    }
    .management-unit-list h5{
        font-size: 15px;
    }
    .tabs li {
        margin-left: 20px;
    }
    .tabs li a{
        font-size: 15px;
    }
    .assign-activity-part .btn{
        float: none;
        margin: 0 0 15px;
    }
    .assignments-question-list .assignments-question h2 span {
        width: auto;
        margin: 0 0 0 10px;
    }
    .assignments-question-list .assignments-question h2 {
        margin-bottom: 15px;
    }
    .student-lesting-add{
        display: block;
        text-align: right;
        padding-left: 0px;
    }
    .student-lesting-add .d-flex{
        flex-wrap: wrap;
    }
    .teacher-add-lesting{
        padding: 10px 15px;
    }
    .teacher-add-lesting .user-img{
        margin: 0 10px 0 0;
    }
    .teacher-add-lesting h3{
        font-size: 18px;
        width: calc(100% - 100px);
    }
    .student-lesting-add .btn{
        margin: 5px 0 5px 0px;
        width: 100%;
    }
    .student-top-part{
        display: block;
        margin-bottom: 15px;
    }
    .student-top-part .user {
        margin-bottom: 15px;
    }
    .student-top-part .user-name h5 {
        font-size: 22px;
    }
    .student-top-part .user-img {
        width: 48px;
        height: 48px;
        margin-right: 15px;
    }
    .print-portfolio{
        font-size: 14px;
    }
    .school-panel .auth-page .left-part {
        width: 100%;
        padding: 100px 30px 60px;
    }
    .school-panel .auth-page .right-part {
        width: 100%;
        padding: 60px 30px;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 24px;
        line-height: 30px;
    }
    .graph-box {
        padding: 32px 0px;
    }
    .good-doing-text .form-control{
        width: 65px;
    }
    .class-code-part{
        display: block;
        margin-bottom: 0;
    }
    .class-code-text{
        margin-top: 20px;
        letter-spacing: 0;
    }
    .students-right-info{
        width: 100%;
        justify-content: space-between;
    }
    .management-unit-list{
        display: block;
    }
    .management-unit-list .unit-title{
        width: 100%;
    }
    .activity-progress{
        width: 100%;
        text-align: left;
    }
    .unit-category-list{
        margin-bottom: 10px;
    }
    .manage-groups-table{
        overflow-x: scroll;
    }
    .manage-groups-table .table {
        white-space: nowrap;
        width: 575px;
    }
    .all-popup h3{
        font-size: 20px;
    }

}
@media screen and (max-width: 481px) {

}
