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

body {
    font-family: "Montserrat", sans-serif !important;
    min-height: 100vh !important;
    height: 100% !important;
}

select,
button,
a,
input,
textarea,
img {
    outline: none !important;
    box-shadow: none !important;
}

a,
button {
    text-decoration: none !important;
    transition: .3s all !important;
}

img {
    max-width: 100% !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
}

h3 {
    font-size: 2rem !important;
    line-height: 130% !important;
    font-weight: 600 !important;
    color: #0E0D11;
}

h4 {
    font-size: 1.5rem !important;
    line-height: 130% !important;
    font-weight: 600 !important;
    color: #0E0D11;
}

.form__block__1 {
    background-color: #EEF2FF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: 100%;
    gap: 1.5rem;
    padding: 3rem 0;
}

.form__block__1 form {
    margin: 2rem auto 0;
    display: flex;
    align-items: start;
    width: 100%;
    max-width: 350px;
    flex-direction: column;
    gap: 1rem;
}

.form__block__1 > div {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.form__block__1 > div h3 {
    margin: 1rem 0 0 0;
}

.pending {
    padding: 1.5rem;
    font-size: 1rem;
    border-radius: 1.5rem;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inner__allert {
    text-align: center;
    z-index: 9;
}

.inner__allert span {
    padding: 1.5rem;
    border-radius: 1.5rem;
}

form input,
form select {
    padding: 1.5rem !important;
    border-radius: 1.5rem !important;
    font-size: 1rem !important;
    background-color: #fff !important;
    width: 100% !important;
    border-color: transparent !important;
    height: auto !important;
    line-height: 1.25rem !important;
    transition: .3s all !important;
    -moz-appearance: none;
    -webkit-appearance: none;
    color: #0E0D11;
}

form select {
    padding: 1.455rem 1.4rem !important;
    font-weight: 500;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.country__select {
    position: relative !important;
    width: 100%;
}

.country__select label {
    height: 100%;
    top: 0;
    position: absolute;
    right: 1.5rem;
    color: #0E0D11;
    transition: .3s all;
}

.country__select:hover label {
    transform: scale(1.3);
}

.country__select label picture {
    display: inline-flex;
    width: 15.5px;
    height: 100%;
}

form input:hover,
form select:hover {
    background-color: rgba(255,255,255,.7) !important;
}

form input:focus {
    background-color: #fff !important;
    border-color: #375EE1 !important;
}

form input:focus ~ label {
    padding-top: .75rem !important;
    font-size: .9rem !important;
}

.form-floating {
    width: 100%;
}

.form-floating label {
    padding: 1.3rem 1.5rem !important;
    font-weight: 500;
    font-size: 1rem;
    color: #0E0D11;
}

.form__block__1 form a {
    color: #0E0D11;
    font-size: 1rem;
    font-weight: 500
}

.form__block__1 form a:hover {
    color: #375EE1;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    background-image: none !important;
    border-color: #ff0000 !important;
}

.send {
    padding: 1.5rem;
    background-color: #3EFF97 !important;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 1.5rem;
    color: #0E0D11;
    border: 1px solid transparent !important;
}

.send:hover,
.send:focus {
    color: #fff;
    background-color: #375EE1 !important;
}

.registration {
    padding: 1.5rem;
    border: 1px solid #375EE1;
    color: #375EE1 !important;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25rem;
}

.registration:hover {
    color: #fff !important;
    background-color: #375EE1 !important;
}

#message__alert {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    font-size: .75rem;
    font-weight: 500;
    animation: invisible_block 3s;
}

.alert__success {
    background: #3EFF97;
}

.alert__error {
    background-color: #C30707;
    padding: 1.5rem;
    border-radius: 1.5rem;
    color: #fff;
}

header {
    margin: 2rem 0;
}

header .col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

header .col > div:first-child img {
    width: 86px !important;
}

header .col > div:last-child {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header img {
    cursor: pointer;
}

header .col > div:last-child > div:last-child picture {
    display: block;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 4.5rem;
    overflow: hidden;
}

header .col > div:last-child > div:last-child picture img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    transition: .3s all;
}

header .col > div:last-child > div:last-child picture:hover img {
    transform: scale(1.1);
}

footer .container {
    margin-top: 4.5rem;
    margin-bottom: 3rem;
}

footer .col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-size: .8rem;
    color: #0E0D11;
}

footer .col a {
    color: #777;
}

footer .col a:hover {
    color: #0E0D11;
}

footer .col > div:last-child {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

footer .cpy {
    position: relative;
}

.module {
    position: relative;
    margin-bottom: 3rem;
}

.module span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 9;
    font-size: .68rem;
    font-weight: 500;
    color: #fff;
    padding: .75rem;
    border-radius: .75rem;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
    background-color: rgba(0, 0, 0, .3);
}

.module a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.25rem;
    color: #0E0D11;
    font-weight: 600;
}

.module a:hover {
    color: #375EE1;
}

.module .ratio picture {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
}

.module .ratio picture img {
    object-fit: cover:
    width: 100% !important;
    height: 100% !important;
    transition: .3s all;
}

.module a:hover .ratio picture img {
    transform: scale(1.1);
}

.header__block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header__block h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0E0D11;
    margin: 0;
}

.header__block p {
    color: #0E0D11;
    font-size: 1rem;
    font-weight: 500;
    line-height: 130%;
}

.statusbar__header {
    margin: 2rem 0 4rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #375EE1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.statusbar__header .progress {
    background: #EEF2FF;
    height: .5rem;
    border-radius: .5rem;
}

.statusbar__header .progress-bar {
    background: #375EE1;
    border-radius: .5rem;
}

.aside__block {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.aside__block > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aside__block > div p {
    font-size: .875rem;
    color: #0E0D11;
    line-height: 130%;
    margin: 0;
}

.aside__block .ratio picture {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
}

.aside__block .ratio picture img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.aside__block .progress {
    background: #EEF2FF;
    height: .5rem;
    border-radius: .5rem;
}

.aside__block .progress-bar {
    background: #375EE1;
    height: .5rem;
    border-radius: .5rem;
}

.aside__block span {
    font-size: .75rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: .75rem;
    text-align: center;
}

.back__arrow {
    display: flex;
    border: 1px solid #375EE1;
    color: #375EE1;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    gap: .5rem;
    padding: 1.3rem 0;
    width: 100%;
    font-size: .875rem;
    font-weight: 500;
}

.back__arrow svg path {
    fill: #375EE1;
}

.back__arrow:hover {
    background: #375EE1;
    color: #fff;
}

.back__arrow:hover svg path {
    fill: #fff;
}

.lessons__page h3 {
    color: #0E0D11;
    font-size: 2rem;
    line-height: 130%;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.lesson {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.lesson .ratio picture {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
}

.lesson .ratio picture img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    transition: .3s all;
}

.lesson .ratio picture:hover img {
    transform: scale(1.1)
}

.lesson a {
    color: #0E0D11;
}

.lesson a:hover {
    color: #375EE1;
}

.lesson h2 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 130%;
    margin-top: 1rem;
}

.lesson em {
    position: absolute;
    padding: .68rem;
    border-radius: .75rem;
    font-size: .75rem;
    font-weight: 500;
    top: .75rem;
    left: .75rem;
    font-style: normal;
}

.is_done {
    position: absolute;
    border-radius: .75rem;
    font-size: .75rem;
    font-weight: 500;
    top: .75rem;
    left: .75rem;
    font-style: normal;
    z-index: 9;
}

.in_process {
    background: #EEF2FF;
    color: #375EE1;
}

.lesson__title h3 {
    margin-bottom: 1.5rem;
}

.lesson__title .back__arrow {
    width: auto;
    padding: 1.3rem 1rem;
}

.lesson__title .lesson__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
}

.lesson__video iframe {
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
}

.lesson__video picture {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
}

.lesson__video picture img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.lesson__description {
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #F0F0F0;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    margin: 1.5rem 0;
}

.lesson__description p {
    font-size: 1rem;
    line-height: 160%;
    color: #0E0D11;
}

.lesson__description p:last-child {
    margin-bottom: 0;
}

.download__file {
    font-size: 1rem;
    font-weight: 500;
    color: #375EE1;
    border: 1px solid #375EE1;
    padding: 1.05rem 1.5rem;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.download__file path {
    stroke: #375EE1;
    transition: .3s all;
}

.download__file:hover {
    color: #fff;
    background: #375EE1;
}

.download__file:hover path {
    stroke: #fff;
}

.send__home__work__form {
    padding: 2rem;
    border-radius: 1.5rem;
    background: #EEF2FF;
    margin: 1.5rem 0;
}

.send__home__work__form h4 {
    color: #375EE1;
    font-size: 1.5rem;
    font-weight: 600 !important;
    line-height: 130%;
    margin-bottom: 1.5rem;
}

.send__home__work__form textarea {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: #fff;
    font-size: 1rem;
    font-weight: 500;
    color: #0E0D11;
    border-color: transparent;
    height: 172px;
    margin-bottom: 1.5rem;
}

.send__home__work__form textarea:focus {
    border-color: #375EE1;
}

#file__upload {
    display: none;
}

.send__home__work__form form > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.send__home__work__form form > div button {
    width: auto;
    background: #3EFF97;
    padding: 1.43rem 3rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #0E0D11;
    border: 0;
}

.send__home__work__form form > div button:hover {
    background: #375EE1;
    color: #fff;
}

.input-file span {
    padding: 1.35rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #375EE1;
    color: #375EE1;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: .3s all;
}

.input-file span:hover {
    color: #fff;
    background: #375EE1;
}

.input-file span path {
    transition: .3s all;
}

.input-file span:hover path {
    stroke: #fff;
}

.input-file input[type=file] {
	display: none;
}

.notification__homework {
    padding: 2rem;
    background: #EEF2FF;
    border-radius: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.notification__homework > div:first-child picture {
    display: block;
    width: 5rem;
    height: 5rem;
    border-radius: 100%;
    overflow: hidden;
}

.notification__homework > div:first-child picture img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.notification__homework > div:last-child {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
}

.notification__homework > div:last-child > div {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
    width: 100%;
}

.notification__homework > div:last-child > div:last-child {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.notification__homework > div:last-child > div b {
    font-size: 1.25rem;
    color: #7E8088;
    font-weight: 500 !important;
}

.notification__homework > div:last-child > div span {
    font-size: .75rem;
    color: #7E8088;
    font-weight: 500;
}

.notification__homework p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%;
}

.notification__homework p:last-child {
    margin: 0;
}

.homework__status {
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    background: #EEF2FF;
    font-size: 1rem;
    font-weight: 500;
    color: #0E0D11;
    margin-top: 1.5rem;
}

.comment__by__admin {
    background: #375EE1;
    color: #fff;
}

.comment__by__admin > div:last-child > div b,
.comment__by__admin > div:last-child > div span {
    color: rgba(255,255,255,.5);
}

.pay__info {
    display: flex;
    gap: 4.5rem;
    align-items: center;
    margin-top: 1.5rem !important;
}

.pay__info > div:first-child {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 525px;
}

.pay__info > div:first-child picture {
    display: block;
    width: 100%;
    max-width: 200px;
}

.pay__info > div:first-child h4 {
    margin: 0;
}

.pay__info > div:first-child p {
    font-size: 1rem;
    line-height: 160%;
    color: #0E0D11;
    margin: 0;
}

.pay__info p b {
    font-weight: 600;
    color: #375EE1;
}

.pay__info > div:first-child > div {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: start;
}

.pay__info > div:first-child a {
    font-size: 1rem;
    color: #0E0D11;
    font-weight: 500;
    padding: 1.42rem 3rem;
    border-radius: 1.5rem;
    background: #3EFF97;
}

.pay__info > div:first-child a:hover {
    background: #375EE1;
    color: #fff;
}

.pay__info > div:last-child {
    width: 100%;
}

.pay__info > div:last-child video {
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
}

.plyr {
    border-radius: 1rem;
}

.not__found__template picture {
    max-width: 214px;
}

.not__found__template a {
    color: #375EE1;
    font-size: 1rem;
    font-weight: 500;
    padding: 1.35rem 3rem;
    border: 1px solid #375EE1;
    border-radius: 1.5rem;
}

.not__found__template a:hover {
    background: #375EE1;
    color: #fff;
}

header svg path {
    stroke: #000;
    transition: .3s all;
}

header svg:hover path {
    stroke: #375EE1;
}

header .user__menu {
    border-radius: 1rem;
    margin-top: .5rem !important;
    padding: 1rem .5rem;
}

header .user__menu > div:first-child {
    padding: 0 1rem 1rem 1rem;
}

header .user__menu > div:first-child b {
    font-size: 1.2rem;
    font-weight: 600 !important;
}

header .user__menu > div:first-child span {
    font-size: .8rem;
    color: #375EE1;
    font-weight: 500;
}

header .user__menu > div {
    display: flex;
    flex-direction: column;
}

header .user__menu > div a {
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    font-size: 1rem;
    gap: .5rem;
    color: #0E0D11;
}

header .user__menu > div a:hover {
    color: #375EE1;
}

header .user__menu path {
    stroke: #0E0D11;
    transition: .3s all;
}

header .user__menu > div a:hover path {
    stroke: #375EE1;
}

header .notifications__menu {
    border-radius: 1.5rem;
    margin-top: 2.25rem !important;
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
}

header .notifications__menu h3 {
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin: 0;
}

.profile__form {
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: #EEF2FF;
    display: flex;
    gap: 2rem;
}

.profile__photo {
    position: sticky;
    top: 2rem;
}

.profile__photo picture {
    display: block;
    width: 10rem;
    height: 10rem;
    border-radius: 100%;
    overflow: hidden;
}

.profile__photo picture img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.profile__photo input {
    display: none;
}

.profile__photo label {
    position: relative;
    cursor: pointer;
}

.profile__photo label:hover::after {
    opacity: 1;
}

.profile__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.reset__passwords__profile {
    padding: 2rem;
    flex-direction: column;
    border-radius: 1.5rem;
    background-color: #EEF2FF;
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.reset__passwords__profile form {
    display:flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reset__passwords__profile div:last-child {
    display: flex;
    gap: 1.5rem;
}

.profile__info > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
}

.profile__info > div:last-child > div {
    width: 100%;
    padding: 0 !important;
}

.profile__info label {
    margin: 0 0 .5rem 1.5rem;
    font-size: .8rem;
}

.profile__info span {
    color: #375EE1;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1.5rem;
}

.profile__info textarea {
    border-radius: 1.5rem;
    height: 150px;
    border-color: transparent;
    padding: 1.5rem;
}

.profile__info button {
    border: 0;
    padding: 1.41rem 3rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    color: #0E0D11;
    font-weight: 500;
    background: #3EFF97;
}

.profile__info button:hover {
    color: #fff;
    background: #375EE1;
}

.profile__info > div:last-child > div:last-child {
    padding-top: 2rem !important;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.profile__info > div:last-child > div h4 {
    margin: 0;
}

.profile__info > div:last-child > div p {
    font-size: 1rem;
    color: #0E0D11;
    font-weight: 500;
    margin: 0;
}

.reset__password {
    padding: 1.35rem 3rem;
    border-radius: 1.5rem;
    color: #375EE1;
    border: 1px solid #375EE1;
    font-size: 1rem;
    font-weight: 500;
}

.reset__password:hover {
    background: #375EE1;
    color: #fff;
}

.modules_tabs {
    background: #375EE1;
    padding: .25rem !important;
    border-radius: 26px;
    gap: .25rem;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    overflow-x: scroll;
}

.modules_tabs .nav-link {
    padding: 1.5rem;
    width: 100%;
    line-height: 130%;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 1.5rem !important;
    white-space: nowrap;
    color: rgba(255,255,255,.5);
    border: 0 !important;
}

.modules_tabs .active {
    color: #375EE1 !important;
}

.modules_tabs .nav-link:hover {
    color: #fff;
}

.modules_tabs_content {
    align-items: start;
}

.modules_tabs_content > div {
    gap: 1.5rem;
    align-items: start;
    margin-top: 1.5rem;
    display: flex !important;
    flex-direction: row !important;
    display: none !important;
}

.modules_tabs_content > .active {
    display: flex !important;
}

.modules_tabs_content > div > div:first-child {
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    gap: .75rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 330px;
}

.modules_tabs_content > div > div:first-child button {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.5rem;
    font-size: .75rem;
    font-weight: 500;
    border: 1px solid #EEF2FF;
    color: #0E0D11;
    border-radius: 1.5rem;
    background: transparent;
    justify-content: space-between;
    transition: .3s all;
    text-align: start;
}

.modules_tabs_content > div > div:first-child button:hover {
    color: #375EE1;
    border-color: #375EE1;
}

.modules_tabs_content > div > div:first-child .active {
    background: #375EE1;
    border: 1px solid #375EE1;
    color: #fff;
}

.modules_tabs_content > div > div:first-child .active:hover {
    color: #fff;
}

.modules_tabs_content > div > div:first-child path {
    fill: #375EE1;
}

.modules_tabs_content > div > div:first-child .active path {
    fill: #fff;
}

.modules_tabs_content .tab-content {
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    gap: .75rem;
    padding: 1.5rem;
    width: 100%;
}

.lesson_header {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #EEF2FF;
    gap: .5rem;
    font-size: 1rem;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.lesson_header h4 {
    font-size: 1.5rem;
    font-weight: 600 !important;
    line-height: 130% !important;
    margin: 0 !important;
}

.user_chat_content {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.user_chat_content .mt-3 {
    display: inline-block;
}

.user_chat_content > div:first-child picture {
    display: block;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 100%;
    overflow: hidden;
}

.user_chat_content > div:first-child picture img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.user_chat_content > div:last-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: .5rem 1.5rem 1.5rem 1.5rem;
    background: #f7f7f7;
}

.user_chat_content > div:last-child > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user_chat_content > div:last-child > div:last-child p {
    margin: .5rem 0 0 0;
}

.user_chat_content > div:last-child > div:first-child div:first-child {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user_chat_content > div:last-child > div:first-child div:first-child span {
    font-size: .75rem;
    font-weight: 500;
    padding: .75rem;
    border-radius: .5rem;
    background: #3EFF97;
}

.user_chat_content > div:last-child > div:first-child div:last-child {
    font-size: .75rem;
}

.go_to_lesson {
    width: 100%;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #0E0D11;
    background: #3EFF97;
    border-radius: 1.5rem;
    display: block;
    text-align: center;
}

.go_to_lesson:hover {
    color: #fff;
    background: #375EE1;
}

.lesson_is_done {
    display: block;
    padding: 1.5rem;
    line-height: 130%;
    font-weight: 500;
    font-size: 1rem;
    background: #EEF2FF;
    border-radius: 1.5rem;
    text-align: center;
}

.user__notifications {
    top: 1.75rem !important;
    min-height: auto !important;
    width: 100%;
    max-width: 330px;
    padding: .75rem !important;
    max-height: 500px;
    overflow: scroll;
    display: block;
}

.user__notifications div {
    padding: .25rem !important;
}

.user__notifications div > div {
    padding: 0 !important;
    background: #f7f7f7;
    padding: .75rem !important;
    border-radius: .75rem;
    transition: .3s all;
    color: #0E0D11 !important;
}

.user__notifications div > div:hover {
    background: #3EFF97;
}

.user__notifications span {
    color: #000 !important;
    font-weight: 400 !important;
    font-size: .75rem;
}

.user__notifications p {
    font-size: .9rem;
    font-weight: 500;
    margin: 0;
}

.user__notifications i {
    font-style: normal;
    font-size: .6rem;
}

.user__notifications > div > div a {
    flex-direction: column;
    gap: 0;
    color: #0E0D11 !important;
    align-items: start;
    padding: .25rem;
}

.user__notifications em {
    font-size: .5rem;
    border-radius: .25rem;
    padding: .25rem .5rem;
    color: #fff;
    background: #C30707;
    font-style: normal;
    font-weight: 500;
    margin-bottom: .5rem;
    top: 0;
}

@keyframes invisible_block {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        display: none;
    }
}

.cpy {
    margin: 0;
    padding: 0;
    font-size: .75rem;
    margin: 1.5rem 0;
    bottom: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    left: 0;
}

.cpy li {
    display: inline-block;
    margin: .5rem 1rem;
}

.cpy a {
    color: #777777;
}

.requisites_page table {
    border: 0;
    width: 100% !important;
}

.requisites_page table tr {
    margin: .25rem 0 !important;
}

.requisites_page table tr:first-child {
    font-size: 1.5rem;
}

.requisites_page table tr strong {
    font-weight: 600 !important;
}

.requisites_page table td {
    width: 50%;
    padding: 1.5rem;
    margin: .25rem !important;
    border-radius: 1.5rem 0 0 1.5rem;
}

.requisites_page table td:nth-child(2n) {
    border-radius: 0 1.5rem 1.5rem 0;
}

.requisites_page table tr:nth-child(2n) {
    background: #f7f7f7;
}

.requisites_page table tr:nth-child(2n) td {
    background: transparent;
}

.contacts_me > div {
    display: flex;
    background: #EEF2FF;
    padding: 2rem;
    border-radius: 1.5rem;
    gap: 1.5rem;
}

.contacts_me > div > div:first-child img {
    max-width: 160px !important;
}

.contacts_me h2 {
    font-size: 1.125rem;
    font-weight: 500 !important;
    margin: 0;
}

.contacts_me > div > div > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacts_me > div > div > div > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: .5rem;
    font-weight: 500;
    font-size: 1rem;
}

.contacts_me > div > div > div > div:first-child a {
    color: #0E0D11;
}

.contacts_me > div > div > div > div:first-child a:hover {
    color: #375EE1;
}

.contacts_me > div > div > div > div:first-child a:last-child {
    font-size: 1.125rem;
}

.contacts_me > div > div > div > div:last-child {
    display: flex;
    gap: 1rem;
}

.contacts_me > div > div > div > div:last-child img {
    transition: .3s all
}

.contacts_me > div > div > div > div:last-child img:hover {
    transform: scale(1.1);
}

@media (min-width: 1440px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1300px;
    }
}

@media (max-width: 1400px) {

}

@media (max-width: 1200px) {
    .back__arrow {
        padding: 1rem 0;
        font-size: .6rem;
    }

    .aside__block > div p {
        font-size: .7rem;
    }

    .send__home__work__form form > div {
        flex-direction: column;
        gap: 1.5rem;
        align-items: start;
    }

    .input-file span {
        font-size: .875rem;
    }

    .input-file span svg {
        display: block;
        width: 2rem !important;
    }
}

@media (max-width: 992px) {
    .back__arrow {
        padding: 1.3rem 0;
        font-size: .875rem;
    }

    .aside__block > div p {
        font-size: .875rem;
    }

    .notification__homework {
        flex-direction: column;
    }

    .notification__homework > div:last-child > div {
        flex-direction: column-reverse;
        gap: .25rem;
        align-items: start;
    }

    .pay__info {
        flex-direction: column;
    }

    .profile__form {
        flex-direction: column;
        padding: 1.5rem;
    }

    .profile__photo picture {
        width: 7rem;
        height: 7rem;
    }

    .modules_tabs {
        overflow-x: scroll;
    }

    .modules_tabs::-webkit-scrollbar { width: 0; height: 0;}

    .modules_tabs_content > div {
        flex-direction: column !important;
    }

    .modules_tabs_content > div > div:first-child {
        max-width: 100%;
        flex-direction: row;
        padding: .25rem;
        gap: .25rem;
        flex-wrap: nowrap;
        overflow-x: scroll;
        white-space: nowrap;
    }

    .modules_tabs_content > div > div:first-child::-webkit-scrollbar { width: 0; height: 0;}

    .modules_tabs_content > div > div:first-child button {
        border: 0 !important;
    }

    .modules_tabs_content > div > div:first-child button svg {
        display: none;
    }
}

@media (max-width: 768px) {
    footer .col {
        flex-direction: column-reverse;
    }
}

@media (max-width: 576px) {
    header {
        margin: .75rem 0 2rem 0;
    }

    .form__block__1 form {
        margin-top: 1.5rem;
        display: flex;
        align-items: start;
        width: calc(100% - 2rem);
        flex-direction: column;
        gap: 1rem;
    }

    footer .container {
        margin-top: 3rem;
        margin-bottom: 2rem;
    }

    footer .col {
        gap: 1.5rem;
    }

    footer .col > div:last-child {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .header__block h2 {
        font-size: 2rem;
    }

    .statusbar__header {
        margin-top: 2rem;
    }

    .pay__info {
        gap: 2rem;
    }

    .pay__info > div {
        flex-direction: column;
    }

    .not__found__template h3 {
        font-size: 1.5rem !important;
    }

    header .user__menu {
        width: calc(100% - 1.5rem);
    }

    header .user__menu > div a {
        font-size: 1.2rem;
    }

    .notification__homework {
        padding: 1.5rem;
    }

    .send__home__work__form {
        padding: 1.5rem;
    }

    .send__home__work__form span {
        font-size: .75rem;
        gap: .5rem;
    }

    .profile__form {
        gap: .75rem;
    }

    .reset__passwords__profile {
        padding: 1.5rem;
    }

    .reset__passwords__profile div:last-child {
        flex-direction: column;
        text-align: center;
        gap: .75rem;
    }

    .user_chat_content > div:last-child {
        gap: .5rem;
    }

    .user_chat_content > div:last-child > div:first-child {
        flex-direction: column-reverse;
        align-items: start;
        gap: .5rem;
    }

    .user_chat_content > div:last-child > div:first-child span {
        font-size: .5rem !important;
        padding: .5rem !important;
    }

    .user_chat_content > div:last-child > div:first-child > div:last-child {
        font-size: .6rem;
    }

    .user_chat_content {
        gap: .75rem;
        flex-direction: column;
    }

    .user_chat_content > div:first-child picture {
        width: 3rem;
        height: 3rem;
    }

    .user_chat_content p {
        font-size: .75rem;
        margin: .25rem 0 !important;
    }

    .modules_tabs_content > div {
        margin-top: .75rem;
    }

    .modules_tabs_content > div > div:first-child button {
        border: 0 !important;
        font-size: .75rem;
        padding: 1rem;
    }

    .modules_tabs {
        border-radius: 1.7rem;
    }

    .modules_tabs button {
        font-size: 1rem !important;
        padding: 1rem !important;
    }

    .user_chat_content > div:first-child {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }

    .user_chat_content > div:first-child div:first-child {
        font-size: .6rem;
    }

    .user_chat_content > div:first-child div:last-child {
        font-weight: 500;
    }

    .user_chat_content span {
        background: #3EFF97;
        font-size: .5rem;
        padding: .5rem;
        border-radius: .5rem;
    }

    .user_chat_content > div:first-child > div > div:last-child {
        display: flex;
        align-items: center;
        gap: .5rem;
        justify-content: space-between;
        width: 100%;
    }

    .user__notifications {
        margin-left: .75rem !important;
        max-width: 100% !important;
    }

    .contacts_me > div {
        flex-direction: column;
    }
}