@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: "Aeroport";
    src: url(Aeroport/Aeroport/Aeroport-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "Aeroport";
    src: url(Aeroport/Aeroport/Aeroport-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "Aeroport";
    src: url(Aeroport/Aeroport/Aeroport.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "Aeroport";
    src: url(Aeroport/Aeroport/Aeroport-Light.ttf);
    font-weight: 300;
}

@font-face {
    font-family: "Normalidad UltraExtended";
    src: url(Normalidad/Normalidad/NormalidadUltraExtended-UExBd.otf);
    font-weight: 700;
}


* {
    margin: 0;
    padding: 0;
    font-family: "Aeroport";
}

ul,
ol {
    list-style-position: inside;
}


:root {
    --max-width: 992px;
    --bg-color-dark: #0D0D1B;
    --bg-color-light: #fff;
    --bg-color-light-a95: #fffffff4;
    --txt-color-dark: #1A1C1E;
    --txt-color-middle: #0D0D1B;
    --txt-color-light: #fff;
    --txt-color-label: #6C7278;
    --txt-color-label-green: #289B4F;
    --txt-color-label-red: #B83232;
    --txt-color-aside: #65658D;
    --link-color: #4D81E7;
    --btn-bg-color: #4D81E7;
    --field-shadow: inset 0px 0px 4px #b0b1b179;
    --outline-shadow: 2px solid #4d80e795;
    --input-size-txt: 500 14px "Montserrat";
    --input-border-dark: 1px solid #0d0d1b53;
    --table-bg-color: #D6D3E6;

}


body {
    background: var(--bg-color-dark);
    display: flex;
    flex-direction: column;
    max-width: var(--max-width);
    margin: 0 auto;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-color-dark) transparent;
}


h1 {
    color: var(--txt-color-light);
    margin: 24px 0px;
}

h2 {
    font-size: 40px;
    font-weight: 300;
}

h3 {
    font-size: 36px;
    text-align: center;
    padding: 10px 0px 30px;
}

h4 {
    text-align: left;
    font-size: 30px;
}

h5 {
    text-align: left;
    font-size: 22px;
    margin: 24px 0px 4px;
}

button:hover{
    filter: brightness(0.9);
    box-shadow: 0px 0px 10px currentColor;
}
input{
    cursor: pointer !important;
}

.body_full {
    min-height: 100vh;
}



.body_hor-split {
    flex-direction: row;
    min-height: 100vh;
    width: 100%;
    max-width: unset;

}

.body_hor-split>* {
    height: 100vh;
}

.body_full form,
.body_full main {
    flex: 1;
}



.body_full main {
    display: flex;
    flex-direction: column;
}

.main_login {
    align-items: center;
    justify-content: center;
    padding: 15px;
}


form {
    padding: max(5%, 24px);
    background-color: var(--bg-color-light);
    box-sizing: content-box;
}

.main_login form {
    flex: unset;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

input,
button {
    all: unset;
    font: var(--input-size-txt);
    display: block;
    box-sizing: border-box;
    width: 100%;
}

form label {
    color: var(--txt-color-label);
    line-height: 160%;
    margin-bottom: 3px;
}

label+input {
    padding: 12.5px 14px;
    border-radius: 10px;
    box-shadow: var(--field-shadow);
    margin-bottom: 16px;
    line-height: 140%;
    color: var(--txt-color-label);
}

label+input:focus,
label+input:hover {
    outline: var(--outline-shadow);
}

button {
    color: var(--bg-color-light);
    background: var(--btn-bg-color);
    padding: 5px 12px;
    margin: 32px 0px;
    height: 30px;
    width: max-content;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
}



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

    h1 {
        text-align: center;
    }

}



/* Dashboard */

.dashboard-aside {
    min-width: 300px;
    background-color: var(--bg-color-dark);
    position: relative;
}

.dashboard-aside__logo {
    display: block;
    margin: 50px 20px 20px auto;
    width: 200px;
}

.dashboard-aside__navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
}


.dashboard-aside button,
.dashboard-aside button a {
    all: unset;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 200px;
}



.dashboard-aside__navigation button {
    color: var(--bg-color-light);
    font-size: 20px;
    font-weight: 200;
    width: max-content;
    a{
        width: max-content;
    }
}

.dashboard-aside__navigation button:hover {
    font-weight: 400 !important;
    border-bottom: 2px solid #1B46F5 !important;
}

.dashboard-aside__navigation_selected {
    font-weight: 400 !important;
    padding-bottom: 5px;
    border-bottom: 2px solid #1B46F5 !important;
}


/* 
.dashboard-aside__navigation button:hover svg path,
.dashboard-aside__navigation_selected svg path {
    fill: var(--txt-color-aside);
} */

#dashboard-aside__log-out {
    color: var(--txt-color-aside);
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: var(--txt-color-aside);
    align-items: center;
}

#dashboard-aside__log-out:hover {
    color: var(--txt-color-light);
}

#dashboard-aside__log-out:hover svg path {
    stroke: var(--txt-color-light);
}

.dashboard-main {
    align-self: stretch;
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color-light);
    padding: 0px 50px;
}

.dashboard-main__info {
    display: flex;
    /* position: relative; */
    padding: 20px;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
}


.dashboard-main__info__invite {
    all: unset;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    width: 350px;
    display: none;
}

.dashboard-main__info__invite label{
    font-size: 32px;
}


.dashboard-main__info__invite__link {
    cursor: default;
}

.dashboard-main__info__invite{
    position: fixed !important;
    flex-direction: column;
    top: 0px;
    left: 0px;
    background-color: var(--bg-color-light-a95);
    width: 100%;
    height: 100%;
    z-index: 2;
    align-items: center;
    justify-content: center;

    /* display: none; */
}

.dashboard-main__info__invite__copy-block__close{
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: transparent;
    color: var(--txt-color-dark);
    font-weight: 900;
    user-select: none;
}
.dashboard-main__info__invite__copy-block__close:hover{
    box-shadow: none;
}

.dashboard-main__info__invite__copy-block {
    position: relative;
    flex-direction: column;
    display: flex;
}

.dashboard-main__info__invite__copy-block {
    align-items: center;
    display: flex;
    gap: 25px;
    text-align: center;
}

.dashboard-main__info__invite__copy-block input {
    margin: 0;
}

.dashboard-main__info__invite__copy-block__message {
    position: absolute;
    font-size: 15px;
    box-shadow: var(--field-shadow);
    padding: 20px;
    border: 1px solid var(--btn-bg-color);
    top: 20px;
    background-color: var(--bg-color-light);
    transition: opacity 1s;
    opacity: 0;
    cursor: default;
    user-select: none;
    font-weight: 200;
    border-radius: 4px;
    z-index: -1;
    width: 250px;
    right: -20px
}




#qrcode img {
    max-width: 400px;
    max-height: 400px;
    width: 80vmin;
    height: 80vmin;
    border: 5px solid var(--bg-color-dark);
}

.dashboard-main__info__invite__generate {
    margin: 0;
}


.dashboard-main__info img {
    width: 20px;
    height: 20px;
}

.dashboard-main__info__add-lesson {
    width: 200px;
    margin: 0;
}





.dashboard-main__table {
    max-width: calc(100vw - 400px);
    display: flex;
    box-sizing: border-box;
    /* padding: 5px; */
    max-height: 100%;
    align-items: start;
}

.dashboard-main__table_subtable {

    overflow-x: scroll;
    overflow-y: hidden;
    /* height: 100%; */
    scrollbar-width: thin;
    scrollbar-color: var(--bg-color-dark) transparent;

}

th {
    color: var(--txt-color-aside);
}



.dashboard-main__table {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-color-dark) transparent;
}


.dashboard-main__table_names {
    min-width: 400px;
}


.dashboard-main__table__row {
    border-bottom: var(--input-border-dark);
    display: flex;
}

.dashboard-main__table__row>div {
    padding: 8px;
    width: 150px;
    display: flex;

    flex-direction: column;
    justify-content: center;
}


.dashboard-main__table__row>div:nth-child(1) {
    width: 30px;
}

th,
td {
    min-width: 35px;
    height: 35px;

    padding: 3px;
    text-align: center;
    box-sizing: border-box;
}

th {
    height: 40px;
    padding: 0px;
}


.dashboard-main__table_names__body td,
.dashboard-main__table_names__header th {
    border-right: var(--input-border-dark);
}

.dashboard-main__table {
    border: var(--input-border-dark);
    color: var(--txt-color-label);
}

th {
    color: var(--txt-color-label);
}

td:first-child {
    font-variant: small-caps;
}

/*
.dashboard-main__table_names__body tr:nth-child(2n),
.dashboard-main__table_criterias__body tr:nth-child(2n), th{
    background-color: var(--table-bg-color);
}*/


td>input {
    display: block;
    margin: 0 auto;
}


.dashboard-main__table_names__header th {
    width: 400px;
}



.dashboard-main__table__header_first {
    min-width: 250px;
}

.dashboard-main__table__row>div:nth-child(n+3) span {
    display: flex;
    gap: 5px;
    margin: 5px 0px;
}

input[type="checkbox"] {

    width: 20px;
    height: 20px;
    border: var(--input-border-dark);
    position: relative;
    border-radius: 4px;
    background-color: transparent;
}

input[type="checkbox"]:checked {
    border: none;
}

input[type="checkbox"]:checked::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--txt-color-label-green);
    clip-path: polygon(17% 54%, 28% 43%, 38% 54%, 70% 22%, 81% 33%, 38% 75%, 17% 54%);
    transform: scale(1.5);
}


.dashboard-template__save-lesson {
    position: absolute;
    width: max-content;
    height: 40px;
    padding: 5px 12px;
    bottom: 20px;
    margin: 0px;

}

.dashboard-template__lesson thead {
    position: sticky;
    background-color: white;
    z-index: 2;
    top: 0px;
}

th,
td {
    width: 50px !important;
    overflow: hidden;
    text-align: center;
}

.table-container {
    max-height: 450px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--txt-color-middle) var(--table-bg-color);
    position: relative;
}

.dashboard-template__lesson_all-check {
    position: sticky;
    bottom: 0px;
    background-color: white;
    z-index: 2;
}

.dashboard-template {
    /* border: var(--input-border-dark); */
    display: flex;
    overflow-x: hidden;
    width: calc(100vw - 400px);
    align-items: start;
}

.dashboard-template_form {
    padding: 0px;
    width: max-content;
    overflow: unset;

}

.dashboard-template__names {
    display: flex;
    flex-direction: column;
    width: 450px;

}

.dashboard-template__names span {
    height: 25px;
    width: 300px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    border-bottom: 1px solid transparent;
}


.dashboard-template__lesson {
    padding-right: 30px;
}

.dashboard-template__lesson__criterias,
.dashboard-template__lesson__student-marks,
.dashboard-template__lesson__student-marks_all {
    display: flex;
    gap: 20px;
    margin: 0px;

}

.dashboard-template__lesson__student-marks {
    border-bottom: 1px solid transparent;

}



.dashboard-template__lesson__criterias,
.dashboard-template__names h4 {
    margin-bottom: 20px;
}

.dashboard-template_form .dashboard-template__names {
    width: max-content;
}


.dashboard-template__lessons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-template__lessons h4 {
    flex: 1;
    min-width: 100%;
}

.dashboard-template__lessons__lesson {
    display: flex;
    padding: 0px;

    align-items: center;
    justify-content: space-between;
}

.dashboard-template__lessons__lesson button {
    margin: 0;
}


.dashboard-template__lessons__lesson__student {
    display: flex;
    justify-content: space-evenly;
    height: 35px;
    align-items: center;
}

.dashboard-template__lessons__lesson__student_all {
    padding: 20px 0px 5px;
    background-color: var(--bg-color-light) !important;
}

.dashboard-template__lessons__lesson>* {
    text-align: center;
}

.dashboard-template__lessons__lesson__label {
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.dashboard-template__lesson__criterias__criteria,
.dashboard-template__lesson__student-marks__mark {
    font-weight: 300;
    margin: 0;
    /* display: flex; */
    /* align-items: end;
    justify-content: center; */
    width: 50px;
    font-size: 18px;
    height: 25px;
    text-align: center;
}

.dashboard-template__lesson__student-marks__mark {
    align-items: center;

}



.dashboard-template__lesson th,
.dashboard-template__lesson td {
    width: unset;
    height: unset;
}


.dashboard-template__lesson__student-name {
    width: 250px !important;
    text-align: left;

    overflow: unset !important;
}

.dashboard-template__lesson__student-name_all {
    text-align: right;
    font-size: 12px;
}

.dashboard-template__lesson tr {
    position: relative;
}


.dashboard-template__lesson__student-name__all-name {
    position: absolute;
    background: var(--bg-color-light);
    top: 0px;
    right: 0px;
    padding: 4px;
    z-index: 20;

}


.dashboard-template__lesson td {
    padding: 3px 15px;

}

.dashboard-template__lesson th {
    color: var(--txt-color-dark);
    font-size: 20px;
    font-weight: 300;
    font-variant: small-caps;
    padding-bottom: 10px;
}

.dashboard-template__lesson td {
    padding-top: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.193) !important;
    box-sizing: border-box;
}



.dashboard-main__content {
    flex: 1;
    position: relative;

}






.dashboard-main h2,
.dashboard-main h4 {
    text-align: left;
    font-weight: 300;
    color: var(--txt-color-middle);
    font-variant-caps: small-caps;
}


.dashboard-main__content>div {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    align-items: start;
}



.dashboard-main__content__groups__group {
    padding: 0px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.171);
    border-radius: 10px;

    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.dashboard-main__content__groups {
    padding: 50px;
    box-sizing: border-box;
    gap: 20px;

    flex-wrap: wrap;
}

.dashboard-main__content__groups__group button {
    margin: 0px;
    font-size: 20px;
    height: max-content;
    padding: 10px 24px;
    transition: 0.2s;
}

.dashboard-main__content__groups__group:hover button {
    filter: brightness(1.1)
}

.dashboard-main_split {
    display: flex;
    flex: 1;
}

.dashboard-main__students {
    min-width: 600px;
    max-width: 600px;
    padding: 40px;
    color: var(--txt-color-dark);
}

.dashboard-main__students__student-list li {
    padding: 7px;
    font-size: 18px;
}

.dashboard-main__students__add-student {
    width: max-content;
}


.transaction {
    display: flex;
    flex-direction: column;
    text-align-last: left;
    padding: 10px 0px;
    position: relative;
    border-bottom: var(--input-border-dark);
}

.transaction__date {
    font-weight: 400;
}

.transaction__value {
    position: absolute;
    right: 0%;
    font-size: 20px;
    top: calc(50% - 10px);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.transaction__value svg {
    margin-top: 2px;
    width: 13px;
}

.transaction__value_img {
    all: unset !important;
}

.transaction__value_plus {
    color: var(--txt-color-label-green);
}

.transaction__value_minus {
    color: var(--txt-color-label-red);
}

.student-main {
    color: var(--txt-color-light);
    padding: 24px;
    flex-direction: row !important;
    position: relative;
}

.student-main>div {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;

}


.student-main__top-ten,
.student-main__student-shop {
    align-items: center;
    justify-content: center;
}

.student-main__student-balance {
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.student-main__latest-transactions {
    flex: 1;
    background: var(--bg-color-light);
    width: 100%;
    color: var(--txt-color-dark);
    padding: 16px 24px;
    box-sizing: border-box;
}

.student-main__latest-transactions h5 {
    font-size: 22px;
    text-align: left;
    font-weight: 400;
}

.student-main__student-transaction {
    background: var(--bg-color-light);
    display: flex;
    flex-direction: column;
    color: var(--txt-color-dark);
    padding: 16px 24px;
    box-sizing: border-box;
    overflow-y: scroll;
}


.dashboard-template__lessons__lesson button {
    width: 135px;
}

.student-main__student-transaction h4 {
    margin-bottom: 40px;
}

.student-main__student-transaction__search {
    width: 100%;
    margin: 16px 0px 0px;
    padding: 8px 12px;
    border: var(--input-border-dark);
}

.student-main__student-balance img {
    width: 200px;
    animation: coin-move 1s linear infinite;
}

@keyframes coin-move {
    0% {
        transform: translateY(-3px);
    }

    50% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(-3px);
    }
}



.student-footer {
    display: flex;

    justify-content: center;
    background-color: white;
}

.student-footer img {
    width: 30px;
    height: 30px;
    transform: rotateY(180deg);

}

.student-footer button {
    margin: 0;
    background-color: transparent;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid var(--bg-color-light);
    max-width: 200px;
    color: var(--bg-color-dark) !important;

}

.student-footer__button_disabled {
    opacity: 0.3;
    cursor: default !important;
}


.student-footer button {
    height: max-content;
    width: 100%;
    max-width: 125px;
}

.student-footer button span {
    font-size: 12px;
}

.student-footer img {
    width: 30px;
}


header, footer{
    position: relative;
    z-index: 1000;
}

main{
    position: relative;
}

.error {
    height: 100%;
    width: 100%;
    max-width: 992px;
    box-sizing: border-box;
    top: 0px;
    left: 0px;
    background: rgba(255, 255, 255);
    z-index: 1;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
   
}

.error_visible {
    display: flex;
}

.error__data {
    padding: 20px;
    width: 100%;
    
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
}




.error__btn {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 0 auto;
    background: #0024FF;
    height: 36px;
    width: 240px;
    line-height: 1.2;
    font-size: 18px;
    border-radius: 10px;
}

.error h4 {
    margin: 20px 0px;
    font-size: 24px;
    font-weight: 300;
    
    text-align: center;
    font-family: "Normalidad UltraExtended";
    font-variant: small-caps;
    font-size: 32px;
    color: black !important;
}



.form-logout {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
}


.form-logout #dashboard-aside__log-out {
    color: white;
    left: 0px;
    top: 3px;
    margin: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 3px;
}

.reset-password-btn {
    margin: 20px auto 0px;
    background-color: transparent;
    color: var(--link-color);
    width: max-content;

    padding: 0;
}

.login-form {
    padding-bottom: 5px;
}


.register-btn {
    margin: 25px auto 0px;
    width: 50%;
    padding: 10px 20px;
    height: max-content;
    max-width: 200px;
}

.register-link {
    color: var(--txt-color-light);
}

.login-link {
    color: var(--bg-color-dark);
    width: max-content;
    display: block;
    margin: 20px auto;
}

.bread-crumbs {
    padding: 20px;
    font-size: 14px;
    color: var(--txt-color-dark) !important;
}

.bread-crumbs a {
    color: var(--txt-color-dark) !important;
}

.dashboard-info {
    position: absolute;
    right: max(calc(100vw - 1400px), 20px);
    width: 450px;
    max-height: 700px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: var(--field-shadow);
    top: calc(50% - 300px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-color-light);

}


.dashboard-info h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin: 20px 0px 10px;
}

.dashboard-info h5 {
    font-size: 26px;
    font-weight: 300;
}



.dashboard-info .dashboard-template__lesson__criterias__criteria {
    font: inherit;
    display: inline-block;
    padding: 0px;
    margin: 0px;
    text-align: left;
    width: max-content;
    height: max-content;
}

.show-student {
    display: flex;
    align-items: end;
    gap: 5px;
}





.student-main__student-balance h3 {
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.student-main__student-balance h3 img {
    width: 28px;
    animation: movaviCoinsRotate 3s infinite;
    filter: invert(1);
}

.button-confirm {
    position: absolute;
    margin: 0;
    top: 25px;
    right: 0px;
    height: unset;
    height: 45px;
    padding: 12px;
    border-radius: 0px 10px 10px 0px;
}

.button-confirm_disable {
    background: #1a1c1e76;
}

.email-timer {
    color: var(--txt-color-label);
    font-size: 12px;
    margin-top: -15px;
    text-align: right;
    margin-right: 5px;
}


.email-confirm-block {
    position: relative;
}


.email-reset-password-form {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--txt-color-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    display: none;
}

.email-reset-password-form__info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.email-reset-password-form__info h2 {
    margin: 10px 0px;
}

.email-reset-password-form__email {
    max-width: 330px;
    background-color: var(--bg-color-light);
    padding: 10px 20px;
}



.email-reset-password-form__close {
    position: absolute;
    top: -50px;
    right: -50px;
}

.email-reset-password-form__close {
    background: transparent;
    color: var(--btn-bg-color);
}


@keyframes movaviCoinsRotate {
    0% {
        transform: rotate(0deg);
    }

    70% {
        transform: rotate(0deg);
    }

    94% {
        transform: rotate(-10deg);
    }

    95% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}




.show-student__btn {
    all: unset;
    display: none;
}

.show-student__btn img {
    width: 11px;
}

.dashboard-info-btn {
    display: none;
    position: absolute;
    right: 10px;
    margin: 10px 0px;
}

.dashboard-template__names__choose-all {
    justify-content: end;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 600;
    font-variant: small-caps;
    margin-top: 3px;
}


.change-password-form h1 {
    color: var(--txt-color-dark) !important;
    padding: 20px 0px;
    margin: 0;
}

.change-password-form {
    display: flex;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    text-align: left;
}

.change-password-form button {
    margin-left: 0;
    width: max-content;
}

.change-password-form div {
    width: 100%;
}

.change-password-form .change-password {
    margin: 10px auto;
}



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

    .dashboard-info-btn {
        display: inline-block;
    }

    .dashboard-info {
        display: none;
    }
}




@media screen and (max-width: 576px) {
    .dashboard-info {
        z-index: 5;
        max-height: 400px;
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--bg-color-dark) transparent;
    }
}


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

    .dashboard-main__info__invite__show-copy-block{
        top: 160px !important;
    }


    .body_hor-split {
        flex-direction: column;
    }

    .button-confirm {
        width: 80px;
        font-size: 10px;
        padding: 2px;
    }


    .dashboard-aside {
        height: max-content;
        padding: 15px 20px 25px;
    }

    #dashboard-aside__log-out {
        top: 20px;
        left: 20px;
        height: max-content;
    }

    .dashboard-aside__navigation {
        margin-top: 20px;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .dashboard-aside__navigation button {
        width: max-content;
    }

    .dashboard-aside form {
        position: absolute;
        top: 0px;
        left: 0px;
    }

    .dashboard-aside__logo {
        margin-top: 20px;
    }

    .dashboard-main {
        padding: 0px 10px;
    }

    h2 {
        font-size: 30px;
    }

    .dashboard-main__info {
        padding: 10px 15px;
    }

    .dashboard-main__content__groups {
        padding: 10px 25px !important;
        flex-wrap: wrap;
    }

    .dashboard-main__content__groups__group {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .dashboard-main__content__groups__group button {
        font-size: 16px;
        width: 100%;
    }

    .dashboard-aside button,
    .dashboard-aside button a {
        width: max-content;
    }

    .dashboard-template {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding-left: 20px;
    }

    .dashboard-template h4 {
        font-size: 22px !important;
        margin-bottom: 0px;
    }

    .bread-crumbs {
        padding-bottom: 0px;
    }

    .show-student__btn {
        display: flex;
        height: 22px;
        width: 14px;
        align-items: center;
        justify-content: center;
    }

    .dashboard-info {
        display: none;
    }

    .dashboard-template_form {
        padding: 0px;
        width: max-content;
        flex-direction: row !important;
    }

    .dashboard-template__names span {
        font-size: 12px;
        line-height: 2;
        height: 25px;
        overflow: hidden;
        white-space: nowrap;
        width: 150px;

    }

    .dashboard-template_form h4 {
        font-size: 18px !important;
        height: 25px;
        line-height: 25px;
    }

    .dashboard-template__lesson__criterias__criteria {
        font-size: 18px;
        height: max-content;
        line-height: 25px;
        width: 25px;
    }

    .dashboard-template__lesson__criterias {
        margin-bottom: 0px;
    }

    .dashboard-template__lesson__student-marks__mark {
        width: 100%;
        height: 25px;
    }

    input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }

    .dashboard-template__lesson__student-marks,
    .dashboard-template__lesson__student-marks_all,
    .dashboard-template__lesson__criterias {
        gap: 12px;
    }

    .dashboard-info {
        height: max-content;
        width: 100vw;
        top: unset;
        left: 0px;
        bottom: 0px;
        box-sizing: border-box;
    }

    .dashboard-info-btn {
        display: inline-block;
    }

    .dashboard-template__lesson__student-name {
        width: 175px !important;
        overflow: hidden;
        white-space: nowrap;
    }


    .dashboard-template__save-lesson {
        right: 10px;
        height: 30px;

    }

    table {
        width: 100%;
    }


    .table-container {
        max-height: calc(100vh - 350px);
        width: 576px;
        padding-right: 0px;
    }

    .dashboard-info {
        z-index: 5;
    }

    td,
    th {
        width: 35px;
    }

}

.dashboard-main__info__invite__show-copy-block {
    position: absolute;
    right: 20px;
    top: 20px;
}



.reset-password-link {
    display: block;
    width: max-content;
    margin: 20px auto;
    color: var(--btn-bg-color);
}

.email-reset-password-form__info {
    gap: 20px;
    color: var(--txt-color-label);
}

.email-reset-password-form__info button {
    margin: 0;
}

.email-reset-password-form__info div {
    width: 100%;

}

.main_login__back-to-login {
    color: var(--txt-color-light);
}

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




    .dashboard-main__info__invite {
        position: absolute;
        right: 0;
    }

    .dashboard-main__info__invite__copy-block {
        position: absolute;

        flex-direction: column;
        align-items: center;
        top: -20px;
        width: 100%;
        background: var(--bg-color-light);
        padding: 30px;
        box-sizing: border-box;
        z-index: 3;
    }

    .dashboard-main__info__invite__show-copy-block {
        position: absolute;
        bottom: 90%;
    }



    .dashboard-info-btn {
        bottom: 20px;
        margin: 0px;
        left: 10px;
    }

    .dashboard-info {
        bottom: unset;
        top: 0px;
    }

    .dashboard-template__lesson td,
    .dashboard-template__lesson th {
        width: unset !important;
        padding: 5px 0px;

    }

    table {
        width: 100% !important;
    }


    .dashboard-template_form,
    .table-container {
        width: 100%;
    }



    .dashboard-template__lesson {
        padding-right: 10px;

    }

    .table-container {
        overflow-x: hidden;
    }

    .dashboard-aside {
        padding: 15px 0px 25px;
    }

    .dashboard-aside__navigation {
        gap: 0px;
    }

}


button:hover{
    box-shadow: none;
}


.transaction__value {

    line-height: 16.8px;
}