@font-face {
    font-family: "Gilroy";
    src: url('/fonts/Gilroy-Semibold.ttf') format("truetype");
}
@font-face {
    font-family: "Neue Machina";
    src: url('/fonts/NeueMachina-Ultrabold.ttf') format("truetype");
}
@font-face {
    font-family: "Noteworthy";
    src: url('/fonts/NoteworthyLight.ttf') format("truetype");
}
/* Для браузеров на базе WebKit (Chrome, Safari, Opera) */
::-webkit-scrollbar {
    width: 2px; /* Ширина вертикального скроллбара */
    height: 2px; /* Высота горизонтального скроллбара */
}
html {
    scroll-behavior: smooth;
}

* {
    outline: none;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Цвет трека скроллбара */
}

::-webkit-scrollbar-thumb {
    background: #d4d4d4; /* Цвет ползунка скроллбара */
    border-radius: 10px; /* Скругленные углы ползунка */
}

::-webkit-scrollbar-thumb:hover {
    background: #555; /* Цвет ползунка при наведении */
}
/* Для Firefox */
html {
    scrollbar-width: thin; /* Устанавливает тонкий скроллбар */
    scrollbar-color: #d4d4d4 #f1f1f1; /* Цвет ползунка и трека */
}
:root{
    --first-font: "Gilroy", sans-serif;
    --second-font: "Neue Machina", sans-serif;
}
body{
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    background: #ece8ff;
    font-family: var(--first-font);
    height: 100%;
}
a,svg,div {
    outline: none; /* Убирает обводку */
}
.link_menu,.link_menu_active, a{
    -webkit-tap-highlight-color: transparent;
}
a:focus,
select:focus,
svg:focus,
div:focus,
select:active,
svg:active,
div:active,
a:active {
    outline: none; /* Убирает обводку для активного и фокусного состояния */
    /* box-shadow: none; Если обводка создается тенями */
}
a{
    text-decoration: none;
}
button:active, button:focus {
	outline: none;
}
button::-moz-focus-inner {
	border: 0;
}
a:active, a:focus {
	outline: none;
}
a::-moz-focus-inner {
	border: 0;
}
input, textarea {border:0;outline:0;}
input:focus,textarea:focus {outline:none!important;}
.main-block{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}
.main-block-upd{
    flex-direction: column;
}
.page_rew{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}
.top_rew{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.left_rew{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.file_full_dz_from_homework{
    border: 1px solid rgba(88, 47, 179, 0.2);
    display: flex;
    align-items: center;
    color: #cfc6e4;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    word-wrap: anywhere;
    margin-bottom: 5px;
    cursor: pointer;
}
.left_rew>span{
    font-family: var(--second-font);
    font-weight: 800;
    font-size: 32px;
    color: #121212;
}
.left_rew>div{
    font-size: 18px;
    color: #737373;
}
.left_rew>div>span{
    color: #9078ff;
    font-weight: bold;
}
.right_rew{
    border-radius: 8px;
    padding: 20px;
    width: 365px;
    height: 76px;
    background: linear-gradient(180deg, rgba(119, 39, 174, 0.1), #9078ffa3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 48px;
    color: #9078ff;
}
.rews_all{
    display: flex;
    gap: 20px;
    align-items: start;
    margin-bottom: 80px;
}
.column_rew{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.banner_tg{
    width: 100%;
    height: auto;
    aspect-ratio: 3120 / 300;
    background-image: url(/banners/banner_tg.jpg);
    background-position: center;
    background-size: contain;
    max-height: 150px;
    border-radius: 12px;
    margin-bottom: 16px;
}
.right_rew>svg{
    position: absolute;
}
.showInp{
    position: absolute;
    right: 20px;
    cursor: pointer;
}
.span_msg{
    position: relative;
    display: flex;
    flex-direction: column;
}
.restart_homework_btn{
    cursor: pointer;
}
.img_in_chat{
    width: 250px;
}
.open_img_chat{
    color: white;
    background: #6350bd;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    transform: translateY(33px);
    position: absolute;
    bottom: 0;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.calendar{
    margin-bottom: 100px;
}
.date_lesson_{
    border-radius: 8px;
    padding: 10px;
    background: rgba(18, 18, 18, 0.1);
    font-size: 15px;
    color: #121212;
    display: flex;
    align-items: center;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.list-tasks-today{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: end;
    margin-top: 10px;
    margin-right: 10px;
}
.on_notification{
    display: flex;
    align-items: center;
    background: rgba(34, 158, 217, 0.1);
    color: #229ed9;
    padding: 5px 10px 5px 5px;
    border-radius: 10px;
    font-family: var(--first-font);
    font-size: 13px;
    margin-left: 15px;
}
.top_not_pl_lab{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.cont_off_not{
    display: flex;
    gap: 3px;
    color: #c22a2a;
    background: rgba(255, 120, 120, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    width: fit-content;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.round-lesson{
    width: 6px;
    height: 6px;
    display: none;
    border-radius: 50%;
}
.content_material{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.list_materials{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 20px;
}
.material>svg{
    min-width: 20px;
}
.material{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #9078ff;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(143, 120, 255, 0.1);
    width: fit-content;
}
.lend_contain_r{
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: end;
    position: absolute;
    bottom: 0;
    transform: translate(-75px, 175px);
}
.lend_str_bea{
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    background: #6c45ff;
    padding: 30px;
    align-items: center;
    position: relative;
    gap: 20px;
    overflow: hidden;
    flex-grow: 1;
    justify-content: center;
}
.lend_str_icon_m{
    display: none;
}

.lend_str_icon_m.l_size_110{
    right: -20px;
    height: 100px;
    width: 100px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 10px solid #c4b9fc;
    transform: rotate(-15deg);
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    top: 58px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 1px solid #c4b9fc;
}

.lend_str_icon_m.l_size_85{
    left: 110px;
    height: 90px;
    top: 70px;
    width: 90px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 8px solid #c4b9fc;
    transform: rotate(-15deg);
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    z-index: 1;
    border-top: 1px solid #c4b9fc;
    border-bottom: 1px solid #c4b9fc;
}

.lend_str_icon_m.l_size_120{
    right: 45px;
    height: 85px;
    width: 85px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 8px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    top: -31.5px;
    transform: rotate(25deg);
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
}

.lend_str_icon.l_size_105{
    left: -15px;
    height: 105px;
    width: 105px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 10px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    bottom: -30px;
    transform: rotate(-15deg);
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
}

.lend_str_icon_m.l_size_105{
    right: 110px;
    height: 80px;
    width: 80px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 5px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    bottom: -25px;
    transform: rotate(-25deg);
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
}

.lend_str_icon.l_size_75{
    height: 75px;
    width: 75px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 8px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    top: -25px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
    left: 130px;
    transform: rotate(15deg);
}

.lend_str_icon_m.l_size_75{
    height: 85px;
    width: 85px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 6px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    top: -30px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 1px solid #c4b9fc;
    right: 85px;
    transform: rotate(15deg);
}

.lend_str_icon_m.l_size_111{
    right: 102px;
    height: 100px;
    width: 100px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 6px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    bottom: -36px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
    transform: rotate(-20deg);
}

.lend_str_icon.l_size_111{
    left: -20px;
    height: 100px;
    width: 100px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 10px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    bottom: 85px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
    transform: rotate(-20deg);
}

.lend_str_icon_m.l_size_84{
    right: -12px;
    height: 100px;
    width: 100px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 8px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    top: 35px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
    transform: rotate(20deg);
    z-index: 1;
}
.lend_str_icon.l_size_84{
    right: -20px;
    height: 115px;
    width: 115px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 12px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    top: -20px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
    transform: rotate(20deg);
    z-index: 1;
}

.lend_str_icon_m.l_size_121{
    right: 87px;
    height: 80px;
    width: 80px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 8px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    top: -30px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
    transform: rotate(20deg);
}
.lend_str_icon.l_size_121{
    right: -20px;
    height: 80px;
    width: 80px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 12px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    top: 85px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
    transform: rotate(20deg);
}
.lend_str_icon.l_size_86{
    right: -15px;
    height: 90px;
    width: 90px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 10px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    bottom: 15px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
}

.lend_str_icon_m.l_size_86{
    right: -10px;
    height: 100px;
    width: 100px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 6px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    bottom: -15px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
}

.lend_str_icon.l_size_110{
    left: -15px;
    height: 100px;
    width: 100px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 10px solid #c4b9fc;
    transform: rotate(-15deg);
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    top: 45px;
    border-top: 1px solid #c4b9fc;
    border-bottom: 1px solid #c4b9fc;
}
.lend_str_icon.l_size_120{
    right: -10px;
    height: 105px;
    width: 105px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 10px solid #c4b9fc;
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    top: 45px;
    transform: rotate(10deg);
    border-top: 1px solid #c4b9fc;
    border-bottom: 2px solid #c4b9fc;
}
.lend_str_icon.l_size_120>svg{
    background: #6c45ff;
    border-radius: 100%;
    fill: white;
    padding: 8px;
}

.lend_str_icon_m.l_size_120>svg{
    background: #6c45ff;
    border-radius: 100%;
    fill: white;
    padding: 4px;
}
.lend_str_icon.l_size_85{
    right: 45px;
    height: 80px;
    top: 20px;
    width: 80px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 7px solid #c4b9fc;
    transform: rotate(-15deg);
    font-weight: 700;
    font-size: 35px;
    color: #6c45ff;
    position: absolute;
    z-index: 1;
    border-top: 1px solid #c4b9fc;
    border-bottom: 1px solid #c4b9fc;
}
.lend_str_icon.l_size_85>svg{
    background: #6c45ff;
    border-radius: 100%;
    padding: 6px;
}
.lend_str_icon_m.l_size_85>svg{
    background: #6c45ff;
    border-radius: 100%;
    padding: 6px;
}
.lend_str_icon_m.l_size_85>svg{
    background: #6c45ff;
    border-radius: 100%;
    padding: 8px;
}
.lend_str_val{
    font-weight: 700;
    font-size: 105px;
    text-align: center;
    color: #fff;
    transform: rotate(-6deg);
    font-family: Noteworthy;
    line-height: 1;
}
.lend_str_name{
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    text-align: center;
}
.lend_play_str_video{
    position: absolute;
    bottom: 35px;
    right: 55px;
    cursor: pointer;
}
.modal_len_vid, .modal_len_text_full{
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    overflow: auto;
}
.modal_lend_v_cont{
    top: 50%;
    margin-top: 0px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    width: calc(100% - 70px);
    max-width: 350px;
    width: 350px;
    display: flex;
    justify-content: center; 
}
.modal_lend_full_t_cont{
    background: #ebebeb;
    padding: 30px;
    border-radius: 30px;
    top: 50%;
    margin-top: 0px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    max-width: 550px;
    width: 550px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.lend_t_r_cont_header{
    display: flex;
    justify-content: space-between;
}
.lend_t_r_cont_header_left{
    display: flex;
    align-items: center;
    gap: 20px;
}
.lend_t_r_cont_header_avatar{
    width: 75px;
    height: 75px;
    border-radius: 100%;
}
.lend_t_r_cont_header_name{
    font-size: 28px;
    font-family: "Inter", serif;
    font-weight: 700;
}
.lend_t_r_cont_close{
    font-size: 50px;
    opacity: 0.5;
    transform: rotate(45deg);
    display: flex;
    cursor: pointer;
}
.lend_t_r_cont_modal{
    max-height: 500px;
    overflow: auto;
    font-size: 22px;
}
.lend_video_modal{
    width: 300px;
    border-radius: 20px;
}
.lend_str_video{
    padding: 20px;
    background: #a3a3a3;
    border-radius: 30px;
    height: 500px;
    background-size: cover;
    position: relative;
}
.arrow_dop{
    transform: rotate(-75deg);
}
.lend_contain_r>div{
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    color: #fff;
    font-family: Noteworthy;
    display: flex;
    flex-direction: column;
    transform: rotate(-10deg);
}
.no_courses_materials{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff7878;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(255, 120, 120, 0.1);
    width: fit-content;
    margin-left: 20px;
}
.no_courses_materials>svg{
    min-width: 20px;
}
.name_subject{
    font-family: var(--second-font);
    font-size: 20px;
}
.materials_block{
    background: white;
    padding: 20px;
    border-radius: 12px;
    flex-direction: column;
    display: flex;
    gap: 20px;
}
.file_hw{
    width: 400px;
    cursor: pointer;
    border-radius: 12px;
}
._upd_comm_kura {
    padding: 20px;
    display: flex;
    flex-wrap: wrap; /* Позволяет тексту переноситься */
    align-items: baseline;
    gap: 10px;
    border-radius: 16px 10px 10px 16px;
    background: #ffbe7824;
    border: 1px solid #fc7600;
    color: #fc7600;
    word-wrap: break-word; /* Переносит длинные слова */
    overflow-wrap: break-word;
}

.comment-label {
    flex-shrink: 0; /* Фиксированная ширина для метки */
    color: #fc7600;
}

.comment-text {
    flex-grow: 1; /* Позволяет тексту расширяться */
    white-space: pre-wrap; /* Сохраняет переводы строк */
    max-width: 100%;
}
._upd_your_mark{
    padding: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-radius: 16px 10px 10px 16px;
    background: #ff787824;
    border: 1px solid #e30501;
    color: #e30501;
}
._upd_corr_answ {
    padding: 20px;
    display: flex;
    flex-wrap: wrap; /* Позволяет тексту переноситься */
    align-items: baseline; /* Выровнять текст сверху */
    gap: 10px;
    border-radius: 16px 10px 10px 16px;
    background: #9cff7824;
    border: 1px solid #32b727;
    color: #32b727;
    word-wrap: break-word; /* Перенос длинных слов */
    overflow-wrap: break-word;
}

.correct-answer-label {
    flex-shrink: 0; /* Запрещает сжимать заголовок */
    color: #32b727;
}
.water_info_task{
    display: flex;
    gap: 10px;
    align-items: center;
}
.who_check_is_kurator_finished,.who_check_is_kurator_deadline{
    padding: 5px 10px;
    background: #ff787845;
    border-radius: 5px;
    color: #e30501;
    font-size: 12px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.group_task{
    padding: 5px 10px;
    background: #9078ff;
    border-radius: 5px;
    color: white;
    font-size: 12px;
}
.who_check_is_bot{
    padding: 5px 10px;
    background: #9cff7866;
    border-radius: 5px;
    color: #32b727;
    font-size: 12px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.who_check_is_kurator{
    padding: 5px 10px;
    background: #ffbe785e;
    border-radius: 5px;
    color: #fc7600;
    font-size: 12px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.correct-answer-text {
    flex-grow: 1; /* Тексту разрешено расширяться */
    white-space: pre-wrap; /* Сохраняет переносы строк */
}

.testik{
    border-radius: 12px;
    padding: 13px 30px;
    background: rgba(18, 18, 18, 0.1);
    font-size: 15px;
    color: #121212;
    text-align: left;
    cursor: pointer;
}
.block_test_hw{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
}
.block_bonuses{
    padding: 20px;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    background-image: url(/img/pattern.png);
    justify-content: center;
    align-items: center;
    background-size: 100%;
}
.wrap_prizes{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.wrap_prizes{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-top: 20px;
  gap: 20px;
}
.img_prize{
    width: 100%;
    border-radius: 12px;
}
.block_prize>span{
    background: #9078ff;
    width: 100%;
    border-radius: 0px 0px 12px 12px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-align: center;
}
.block_prize{
    width: 243px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 12px;
}
.wheel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #f1c40f; /* Yellow background color */
    position: relative;
    animation: spin 5s linear infinite;
}

.wheel-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.segment {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d9cfff; /* Blue segment color */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.btn_get_prize{
    background: #9078ff;
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
@keyframes spin {
    100% {
        transform: rotate(360deg); /* Rotate the wheel 360 degrees */
    }
}

.segment:nth-child(odd) {
    background-color: #9078ff; /* Red segment color for odd segments */
}
.flexxxxx{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bl_fl_test{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 5px;
}
.bl_fl_test > div {
    border: 1px solid rgba(18, 18, 18, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    width: calc(100% - 40px);
    font-family: var(--first-font);
    background: transparent;
    display: flex;
    align-items: center;
    font-size: 14px;
    justify-content: space-between;
}
.sale_price{
    position: absolute;
    left: 0;
    transform: translate(0px, 17px);
    font-size: 16px;
    color: black;
}
.chat-kur{
    position: relative;

    display: none !important;
}
.catrt_pagee{
    flex-direction: column;
}
.btn_call_for_buy{
    border-radius: 12px;
    padding: 15px;
    background: #9078ff;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: fit-content;
}
.counter_messages{
    color: white;
    position: absolute;
    top: 0;
    right: 0;
    background: #ff0000c9;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(5px, -5px);
    font-size: 14px;
    display: none;
}
.lbl-homework>b{
    color: #9078ff;
}
.lb-prog{
    margin-top: 20px;
}
.hw-img-cont{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.content-error-page{
    top: 50%;
    margin-top: 0px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.error-banner{
    background-image: url('/assets/404.png');
    width: 700px;
    height: 350px;
    background-size: 100%;
    background-repeat: no-repeat;
}
.header_landing{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.left_header_landing{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.right_header_landing{
    width: 100%;
}
.block_stud{
    width: 100%;
}
.block_rewies{
    display: flex;
    background: #9078ff;
    width: fit-content;
    padding: 10px;
    border-radius: 12px;
    gap: 10px;
}
.bottom_rew{
    font-size: 14px;
    color: rgba(56, 56, 56, 0.28);
}
.block_rew{
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 20px;
    width: calc(100% - 40px);
}
.top_block_rew{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    justify-content: space-between;
}
.compact_rew_infa{
    display: flex;
    gap: 10px;
    align-items: center;
}
.rew_img{
    border-radius: 16px;
    width: 64px;
    height: 64px;
}
.medium_font{
    font-size: 64px;
    color: #222;
}
.big_font{
    font-size: 90px;
    font-family: var(--second-font);
    color: #222;
    display: contents;
}
.infograma_landing{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.middle_font{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-family: var(--second-font);
    color: #222;
}
.group_infograma{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.line_inforgama{
    width: 20px;
    background: #9078ff;
    border-radius: 12px;
}
.inforgama_content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.teachers_landing{
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 20px;
}
.content_teachers{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.block_image_teacher{
    position: relative;
    background: white;
    border-radius: 12px;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(18, 18, 18, 0.2);
}
.teacher_image{
    width: 250px;
    z-index: 1;
    position: relative;
}
.block_grid_skills_teachers{
    padding: 10px;
    width: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.block_stat_tacher{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgb(144, 120, 255);
    color: rgb(144, 120, 255);
}
.btn_go_buy_subject_course{
    display: flex;
    background: #9078ff;
    width: calc(100% - 24px);
    justify-content: center;
    padding: 10px 12px 8px 12px;
    border-radius: 0px 0px 12px 12px;
    font-family: var(--second-font);
    color: white;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    position: relative;
    overflow-x: hidden;
}
.flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    animation: flareAnimation;
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: flareAnimation 2s infinite linear; 
}

@keyframes flareAnimation {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}
.line_teacher{
    display: flex;
    gap: 10px;
}
.text-st{
    display: flex;
    background: #9078ff;
    width: calc(100% - 24px);
    justify-content: center;
    padding: 10px 12px 8px 12px;
    font-family: var(--second-font);
    color: white;
    align-items: center;
    font-size: 20px;
}
.wrap_stars {
    width: 100%;
    position: relative;
    z-index: 1;
    color: #9078ff;
}

.wrap_stars span {
    position: absolute;
    animation: twinkling 3s infinite linear;
}

@keyframes twinkling {
    0%, 100% { opacity: 0; } /* Звезда тухнет */
    50% { opacity: 1; } /* Звезда загорается */
}
#wrap_stars_gefest{
    color: firebrick;
}
#wrap_stars_masha{
    color: #32cd67;
}
.name_teacher_font{
    display: flex;
    background: #9078ff;
    width: calc(100% - 24px);
    justify-content: center;
    padding: 10px 12px 8px 12px;
    border-radius: 12px 12px 0px 0px;
    font-family: var(--second-font);
    color: white;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}
.naming_block_font{
    text-align: center;
    font-size: 25px;
    font-family: var(--second-font);
    color: #222;
}
.header_infograma{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 20px;
    font-family: var(--second-font);
    color: #222;
}
.text_infograma{
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
}
.btn-go-main-error{
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    font-size: 15px;
    color: #fff;
}
.error-text{
    font-size: 32px;
    text-align: center;
    font-family: var(--second-font);
}
.btn-teachers{
    background: #9078ff;
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 15px;
    color: #fff;
    margin-right: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;

    display: none;
}

.lesson-sch{
    display: flex;
    align-items: center;
    gap: 5px;
}
.blank-subj{
    border-radius: 16px;
    padding: 30px;
    background: white;
    width: 705px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}
.wrap-banks-subjects{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}
.name-blank-subj{
    font-size: 32px;
    font-family: var(--second-font);
}
.name-blank-subj{
    font-size: 32px;
    font-family: var(--second-font);
}
.btn-redir-to-bank-subj{
    border-radius: 12px;
    padding: 16px 30px;
    background: #8f78ff;
    font-size: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    width: fit-content;
}
.blank-subj>span{
    width: 100%;
    display: flex;
    justify-content: right;
}
.cnt-lesson{
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 19px;
    height: 19px;
    font-size: 11px;
}
.name-od-less-sch{
    border-radius: 8px;
    padding: 2px 5px;
    font-size: 11px;
    display: flex;
    align-items: center;
}
.calendar-header {
    display: contents;
}

.calendar-header > div {
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    color: #666;
    font-family: var(--first-font);
}
.date-sch{
    font-size: 15px;
    color: #666;
    position: absolute;
    top: 16px;
    left: 0;
    margin-left: 16px;
}
.calendar-body {
    display: contents;
}
#avatar{
    position: absolute;
    left: -999999px;
}
.block_upload_avatar{
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 1px solid rgba(18, 18, 18, 0.2);
}
.edit_ava{
    display: none;
    cursor: pointer;
    transition: 1s linear;
    backdrop-filter: blur(5px);
    padding: 16px;
    border-radius: 50%;
    border: 1px solid #9078ff;
}
.block_upload_avatar:hover>label>.edit_ava{
    display: flex;
}
.calendar-cell {
    min-height: 100px;
    padding: 5px;
    text-align: center;
    margin: 2px;
    background: #fff;
    border-radius: 10px;
    position: relative;
}
.active-day{
    color: #8f78ff;
    border: 1px solid #8f78ff;
}
.active-day>span{
    color: #8f78ff;
}
.month-container{
    padding: 2px;
    background: rgba(176, 172, 195, 0.2);
    border-radius: 10px;
}
.calendar-cell.empty {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
}


.remove-auth{
    font-size: 13px;
    text-align: right;
    color: #8f78ff;
    cursor: pointer;
    margin-top: 10px;
}
.veref-pass{
    display: none;
}
.video_and_chat{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.page_schedule{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 30px;
}
#canvas{
    display: none;
    position: fixed;
    z-index: 1;
}
.img_win_prize{
    width: 180px;
    border-radius: 50%;
    animation: speenWheel infinite 0.1s linear;
    display: none;
    filter: blur(5px);
}
@keyframes speenWheel {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@keyframes speenWheelSlow {
    0%{
        filter: blur(3px);
        transform: rotate(0deg);
    }
    100%{
        filter: blur(0px);
        transform: rotate(360deg);
        width: 210px;
    }
}

.lb-sch-name{
    font-size: 24px;
    color: #222;
    font-family: var(--second-font);
}
#nextMonth, #prevMonth{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.gameplay-month{
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #121212;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.modal-reset{
    margin-top: 10px;
    border-radius: 12px;
    padding: 20px;
    background: white;
    font-size: 20px;
    font-family: var(--second-font);
    display: none;
}
.new-code{
    text-align: right;
    display: none;
    color: #8f78ff;
    font-size: 13px;
    font-family: var(--first-font);
    margin-top: 10px;
    cursor: pointer;
}
.btn-get-code{
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    font-size: 15px;
    color: #fff;
    font-family: var(--first-font);
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
}
.under-inp{
    display: flex;
    justify-content: right;
}
.compacts-label, .compacts-label-np{
    font-size: 13px;
    color: #000;
    margin-top: 20px;
    font-family: var(--first-font);
    margin-bottom: 10px;
}
.page_profile{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.personal-info{
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: calc(100% - 40px);
    background: white;
    border-radius: 16px;
}
.lb-pers{
    font-size: 20px;
    color: #222;
    font-family: var(--second-font);
}
.info-pers{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
    align-items: end;
}
.name-edit-pr{
    font-size: 13px;
    color: #000;
}
.editInpPr{
    border: 1px solid rgba(18, 18, 18, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
}
.block-edit-pr{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
.btn-save-prof--inf{
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    font-size: 15px;
    cursor: pointer;
    color: #fff;
}
.hide-inp{
    display: flex;
    position: relative;
    align-items: center;
}
.inpAuth{
    border: 1px solid rgba(18, 18, 18, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    width: calc(100% - 40px);
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
}
.notification{
    border-radius: 12px;
    padding: 16px 30px;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    left: 50%;
    transform: translate(-50%, 0%);
    animation: slideNotification 3s ease 1;
    z-index: 999;
}
.free-course-block{
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    position: relative;
    width: 732px;
    flex-direction: column;
}
.banner{
    background-image: url(https://185.252.147.75/img/banner.jpg);
    width: 100%;
    height: 320px;
    background-position: center;
    border-radius: 12px;
}
.context-text{
    font-size: 24px;
    font-family: var(--second-font);
    display: flex;
    align-items: center;
}
.date-tasks{
    border-radius: 8px;
    padding: 8px 10px;
    background: #fff;
    font-size: 15px;
    color: #666;
    font-family: var(--first-font);
    margin-left: 10px;
}
.page_my_courses, .page_welcome{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.page-homeworks{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.homeworks-top{
    display: flex;
    justify-content: space-between;
}
.lbl__{
    font-size: 24px;
    font-family: var(--second-font);
}
.btn_results{
    border-radius: 12px;
    padding: 16px 30px;
    background: rgba(144, 120, 255, 0.1);
    cursor: pointer;
    font-size: 15px;
    color: #9078ff;
}
.flex-d>span>b, .modal-desciption-course-descr>b{
    color: #9078ff;
}
.homeworks-subjects{
    display: flex;
    margin-top: 30px;
    overflow-x: auto;
}
.h_subj_{
    border-radius: 8px;
    padding: 16px 30px;
    background: rgba(144, 120, 255, 0.1);
    font-size: 15px;
    color: #9078ff;
    cursor: pointer;
    margin-right: 10px;
}
.h_subj_act{
    background: #9078ff;
    color: white;
}
.page-homework{
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    display: flex;
    align-items: start;
}
.wrap-homeworks{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 15px;
    margin-bottom: 80px;
}
.name_dop{
    font-size: 20px;
    font-family: var(--second-font);
    margin-top: 20px;
}
.bll__acti{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
    gap: 15px;
}
.check_lesson_btn{
    border-radius: 12px;
    padding: 16px 30px;
    background: rgba(144, 120, 255, 0.1);
    font-size: 15px;
    width: 100%;
    color: #9078ff;
    justify-content: center;
     display: flex;
}
.go_lesson_homework_btn{
    border-radius: 12px;
    justify-content: center;
    display: flex;
    padding: 16px 30px;
    background: #9078ff;
    font-size: 15px;
    color: #fff;
    width: 100%;
}
.homework_bl > span{
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 15px;
    font-family: var(--first-font);
}
.homework_bl{
    border-radius: 16px;
    padding: 20px;
    background: white;
    width: 470px;
}
.have-answered{
    border: 1px dashed rgb(143, 120, 255);
    border-radius: 12px;
    font-size: 15px;
    padding: 10px;
    display: flex;
    justify-content: center;
    color: #8f78ff;
    margin-top: 10px;
}
.btn-auth-md{
    background: #9078ff;
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.line{
    margin-top: 20px;
    margin-bottom: 20px;
    background: rgba(18, 18, 18, 0.1);
    height: 1px;
}
.mod-auth-lab{
    font-size: 13px;
    color: #000;
    text-align: center;
}
.homework_lesson_bl{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: calc(100% - 40px);
    margin-bottom: 80px;
}
.lessonFile{
    display: flex;
    gap: 10px;
    align-items: center;
    background: #f4f1ff;
    width: fit-content;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    color: #8f78ff;
    font-size: 14px;
}
.name_files{
    font-family: var(--second-font);
    font-size: 25px;
}
.metchods-auth{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-direction: row;
    gap: 10px;
}
#hidenBTN{
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #54a9eb;
    border-radius: 12px;
    color: white;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-vk{
    border-radius: 12px;
    padding: 5px 30px;
    background: rgba(0, 119, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #07f;
    width: calc(100% - 60px);
    min-height: 40px;
}
.auth-tg{
    border-radius: 12px;
    padding: 16px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    width: 100%;
    margin-left: 5px;
    background: rgba(34, 158, 217, 0.1);
    color: #229ed9;
}
.page_games{
    display: flex;
    margin-bottom: 80px;
    width: 100%;
    flex-direction: column;
    gap: 15px;
}
.game_block{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    width: 260px;
}
.game_preimg{
    width: 100%;
    border-radius: 12px;
}
.btn_go_play{
    background: #9078ff;
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    justify-content: center;
}
.wrap_games{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.download_btn{
    display: flex;
    align-items: center;
    background: rgba(144, 120, 255, 0.1);
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 15px;
    margin-top: 30px;
    cursor: pointer;
    color: #9078ff;
}
.download_btn > svg{
    margin-left: 10px;
}
.fileAnsw{
    position: absolute;
    transform: translateX(-9999px);
}
.flex-inp{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    text-align: center;
    color: #222;
}
.label_for_answer_file{
    border: 1px dashed rgba(34, 34, 34, 0.2);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 40px 0px;
}
.actions_btns_homework{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}
.lend_page{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 50px;
    max-width: 1900px;
    margin: 0 auto;
}
.lend_main_banner{
    padding: 100px 80px;
    border-radius: 30px;
    background: #bf6cff;
    display: flex;
    position: relative;
    padding-bottom: 160px;
    transition: background ease-in-out 0.5s;
    min-height: calc(872px - 260px);
    max-height: calc(872px - 260px);
    overflow: hidden;
}
.floating-item{
    transition: transform 2s ease-in-out;
    display: none;
}

.lend_menu_banner{
    font-weight: 600;
    font-size: 64px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 50px;
    line-height: 25px;
}
.lend_names{
    display: flex;
    gap: 10px;
}
.lend_name{
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 11px 21px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    font-size: 20px;
    text-align: center;
    color: #fff;
    transition: opacity ease-in-out 0.5s;
    opacity: 0.5;
}
.lend_info_prepod{
    border-radius: 30px;
    box-shadow: 3px 4px 18px -2px rgba(0, 0, 0, 0.17);
    background: #fff;
    padding: 30px;
    gap: 22px;
    display: flex;
    flex-direction: column;
}
.lend_info_label{
    font-weight: 600;
    font-size: 34px;
    color: #272727;
    display: flex;
    flex-direction: column;
}
.lend_stats_shows{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lend_stats_shows>div{
    border-radius: 10px;
    padding: 14px 19px;
    background: #6c45ff;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #fff;
    width: fit-content;
}
.lend_m_b_left{
    display: flex;
    flex-direction: column;
    gap: 55px;
    width: 100%;
    align-items: start;
    height: fit-content;
    z-index: 1;
    position: relative;
}
.lend_contain_l{
    position: absolute;
    bottom: 0;
    display: flex;
    transform: translate(50px, 160px);
    align-items: center;
    gap: 5px;
}
.lend_contain_l>div{
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: Noteworthy;
    line-height: 24px;
    transform: rotate(-10deg);
}
#star_lend, #heart_lend{
    border-radius: 100%;
    background: #fff;
    height: 135px;
    width: 135px;
    justify-content: center;
    align-items: center;
}
.lend_contain_flying{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 30px;
}
.arrow_dop_2{
    -webkit-transform: scale(-1, 1) rotate(-65deg);
    transform: scale(-1, 1) rotate(-65deg);
    width: 100px;
}
.lend_m_b_right{
    display: flex;
    flex-direction: column;
    gap: 55px;
    width: 100%;
    align-items: end;
    position: relative;
    z-index: 1;
    height: fit-content;
}
.lend_form_free_lesson{
    border-radius: 30px;
    background: #fff;
    box-shadow: 3px 4px 18px -2px rgba(0, 0, 0, 0.17);
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.lend_f_f_l_label{
    font-weight: 600;
    font-size: 34px;
    color: #000;
    display: flex;
    flex-direction: column;
}
.lend_from_inputs{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.lend_def_inp{
    border: 1px solid #dadada;
    border-radius: 10px;
    padding: 0px 16px;
    width: calc(100% - 32px);
    height: 50px;
    min-width: 200px;
    background: #f5f5f5;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.73);
}
.lend_f_span>a{
    font-weight: 700;
    font-size: 24px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-align: center;
    color: #cbcbcb;
}
.lend_img_prepod{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: center;
}
.lend_prepod_{
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease-in-out;
}

.lend_prepod_.active {
    opacity: 1;
}
.lend_location{
    position: absolute;
    bottom: 30px;
    gap: 8px;
    display: flex;
    left: 0;
    width: 100%;
    justify-content: center;
}
.dot_lend_loc{
    border-radius: 100%;
    opacity: 0.5;
    background: white;
    padding: 6px;
    cursor: pointer;
}
.dot_lend_loc.active{
    opacity: 1 !important;
}
.lend_form_btn_cont{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.upd_all_courses{
    display: flex;
    overflow-x: hidden;
    width: 100%;
    flex-wrap: wrap;
    overflow-x: hidden;
    justify-content: space-between;
}
.upd_all_courses>.courses{
    margin-top: 0px !important;
}
.cont_filter_market{
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    justify-content: space-between;
}
.bl_select_cl{
    display: flex;
    gap: 5px;
    align-items: center;
}
.bl_select_cl_val.active{
    background: #8f78ff;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    border: none;
    font-size: 12px;
}
.bl_select_cl_val{
    color: #121212d6;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 12px;
    border: 1px solid #121212d6;
    cursor: pointer;
}
.upd_list_courses{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 90px;
}
.lend_btn_callback_form{
    border-radius: 10px;
    background: #bf6cff;
    padding: 15px;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.lend_f_span{
    font-weight: 400;
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-align: center;
    color: #000;
}
.lend_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lend_header_left{
    display: flex;
    align-items: center;
    gap: 140px;
}
.lend_naw{
    display: flex;
    gap: 48px;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #595959;
}
.lend_select_subject{
    color: #595959;
}
.lend_header_right{
    display: flex;
    align-items: center;
    gap: 10px;
}
.lend_btn_auth{
    border-radius: 10px;
    padding: 14px 19px;
    cursor: pointer;
    background: #171617;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #fff;
    display: flex;
    gap: 6px;
    align-items: center;
}
.lend_btn_lesson_first{
    border-radius: 10px;
    padding: 14px 19px;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #fff;
    background: #6c45ff;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.homework-skip{
    width: 100%;
    background: rgba(144, 120, 255, 0.1);
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 15px;
    color: #9078ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btns_role_tasks{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    width: 300px;
}
.btn_back_bank__, .btn_next_bank__{
    background: #eee;
    display: flex;
    border-radius: 12px;
    width: 100%;
    cursor: pointer;
    justify-content: center;
    padding: 5px 0px;
}
.homework-do, .homework-go-next{
    width: 100%;
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    font-size: 15px;
    color: #fff;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.redirect-to-task{
    border-radius:
    12px;
      padding:
    2px 5px;
      background:
    rgba(18, 18, 18, 0.1);
      cursor: pointer;
      min-width: 30px;
      width: 100%;
      display: flex;
      justify-content: center;
      font-size: 14px;
      align-items: center;
      color: #f4f1ff;
}
.finished_red{
    background: #8f78ff8c !important;
}
.btn_edit_answ_for_old_passed{
    background:
    #9078ff;
      display: flex;
      border-radius:
    12px;
      padding:
    16px 30px;
      position: relative;
      color: white;
      gap:
    8px;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      margin-top: 20px;
}

.redirect-to-task-active{
    border-radius: 12px;
    padding: 2px 5px;
    display: flex;
    justify-content: center;
    font-size: 14px;
    align-items: center;
    color: #f4f1ff;
    cursor: pointer;
    width: 100%;
    background: #8f78ff !important;
    min-width: 30px;
    color: #f4f1ff;
}
.about-task{
    font-size: 15px;
    color: #666;
    margin-top: 16px;
}
.comment_full_dz_from_homework{
    border: 1px solid rgba(88, 47, 179, 0.2);
    /* display: flex; */
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 0px;
    border-radius: 12px 12px 0px 0px;
    word-wrap: anywhere;
}
.comment_full_dz_from_homework>svg{
    padding: 10px;
    border-radius: 12px;
    fill: rgba(88, 47, 179, 0.2);
    transform: translate(-11px, -11px);
    float: left;
    border: 1px solid rgba(88, 47, 179, 0.2);
    border-left: none;
  border-top: none;
}
.lbl-homework{
    font-weight: 800;
    font-size: 24px;
    color: #222;
    -webkit-touch-callout: none;
  -webkit-user-select:
none;
  -khtml-user-select: none;
  -moz-user-select:
none;
  -ms-user-select: none;
  user-select: none;
}
.located-homework{
    display: flex;
    margin-top: 15px;
    gap: 4px;
    justify-content: space-between;
    margin-bottom: 80px;
    overflow-x: auto;
    max-width: 1205px;
}
.task-homework{
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    width: 1165px;
    display: none;
    flex-direction: column;
    gap: 20px;
}
.my-answer{
    margin-top: 20px;
    border: 1px solid rgba(18, 18, 18, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    width: calc(100% - 40px);
    font-family: var(--first-font);
    background: transparent;
    display: flex;
    align-items: center;
    font-size: 14px;
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
    max-height: 200px;
}
.info-homework{
    border-radius: 16px;
    padding: 20px;
    background: white;
    width: 300px;
}
.btns-homework-inf{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.refuseHomeWork{
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
}
.finishHomeWork{
    border-radius: 12px;
    background: rgba(144, 120, 255, 0.1);
    font-size: 15px;
    color: #9078ff;
    padding: 16px 30px;
    cursor: pointer;
}
.content-homework{
    display: flex;
    flex-direction: column;
}
.lab-homeles{
    color: #222;
    font-size: 24px;
    font-family: var(--second-font);
}
.author-free-course{
    backdrop-filter: blur(20px);
    background: rgba(18, 18, 18, 0.1);
    border-radius: 8px;
    padding: 8px 10px;
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 15px;
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
}
.label-free-course{
    margin-top: 20px;
    color: #222;
    font-size: 20px;
    font-family: var(--second-font);
    margin-bottom: 20px;
}
.left-bottom-fc{
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: #121212;
}
.left-bottom-fc > span{
    font-size: 20px;
    font-family: var(--second-font);
    color: #222;
}
.bottom-free-courses{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btn-go-free-course{
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}
.btn-go-free-course-not{
    border-radius: 12px;
    padding: 16px 30px;
    background: #bfbfbf;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}
.img-free-course{
    width: 732px;
    height: 234px;
    border-radius: 12px;
}
.btn_go_to_market{
    border-radius: 12px;
    padding: 16px 30px;
    background: #8f78ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin-top: 40px;
    font-size: 15px;
}
.block-cart-empty{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 104px);
    height: 100%;
    justify-content: center;
    display: none;
}
.cart-content{
    padding: 20px;
    display: flex;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    width: 960px;
    height: 200px;
}
.wrap-cart{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.list-to-do{
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 16px;
}
.block_today_deadlines{
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.label_deadline{
    color: #fc4547;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--second-font);
}
.btn_rule_block{
    display: flex;
    padding: 4px 10px;
    background: #9078ff;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    font-family: var(--first-font);
    font-size: 12px;
    gap: 5px;
}
.filter_modal{
    color: white;
    position: absolute;
    margin-top: 245px;
    padding: 10px;
    background: #9078ff;
    z-index: 2;
    border-radius: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--first-font);
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    display: none;
}
.block_filter_{
    display: flex;
    gap: 5px;
    align-items: center;
}
.icon_move{
    background: white;
    color: #9078ff;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.none-tasks{
    margin: auto;
    margin-bottom: auto;
    color: #9078ff;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    background: white;
    border: 1px dashed;
    width: calc(100% - 80px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container_c_bl_days{
    background: #ffffffa6;
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
#auth{
    margin-top: 100px;
    z-index: 9;
    padding: 20px 40px;
    font-size: 20px;
    position: absolute;
}
.lesson-in-to-do{
    border-radius: 12px;
    padding: 20px;
    background: #fff;
}
.lesson-in-to-do_dd{
    border-radius: 12px;
    background: whitesmoke;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}
/* .lesson-in-to-do_dd>.name-to-do{
    color: #fc4547 !important;
} */
.lesson-in-to-do_dd>.bottom-to-do>.btn-go-to-do{
    background: #fc4547 !important;
}
.list_dd_todo{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.name-to-do{
    color: #222;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--second-font);
}
.name-to-do>span, .time-s{
    font-size: 14px;
    color: gray;
    font-family: var(--first-font);
    padding: 2px 5px;
    background: #22222230;
    border-radius: 5px;
}
.description-to-do{
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    margin-bottom: 20px;
}
.bottom-to-do{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.subject-to-do{
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 15px;
}
.btn-go-to-do{
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    font-size: 15px;
    color: #fff;
}
.go-to-shop{
    border-radius: 12px;
    padding: 16px 30px;
    background: rgba(144, 120, 255, 0.1);
    font-size: 15px;
    color: #9078ff;
    display: flex;
    align-items: center;
}
.cart___{
    width: 100%;
    display: flex;
    justify-content: space-between;
    display: none;
    margin-bottom: 20px;
}
.btn_buyed{
    border-radius: 12px;
    padding: 16px 30px;
    background: #1be6272e;
    font-size: 15px;
    color: #37c174;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.content_wheel{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle_wheel_content{
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.buy_content_head{
    display: flex;
    justify-content: space-between;
    font-size: 32px;
    font-family: var(--second-font);
}
.buy_content_head > span{
    font-family: var(--first-font);
}
.buy_content{
    padding: 20px;
    background: white;
    display: flex;
    margin-left: 20px;
    flex-direction: column;
    border-radius: 12px;
    width: 505px;
}
.def-buy-con{
    font-size: 15px;
    color: #666;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.btn-go-inp-promo{
    font-size: 15px;
    color: #8f78ff;
    margin-top: 15px;
    cursor: pointer;
}
.btn-email-inp-promo{
    font-size: 15px;
    color: #ff7878;
    margin-top: 15px;
}
.is_email{
    margin-top: 20px;
    color: #00000036;
    font-size: 10px;
}
.is_email>span>a{
    color: #9078ff;
}
.email-buy{
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 15px;
    color: #f00;
    width: calc(100% - 40px);
}
.promocode-buy{
    border: 1px solid rgba(18, 18, 18, 0.2);
    border-radius: 10px;
    padding: 16px 20px;
      padding-right: 20px;
    font-size: 15px;
    color: #121212;
    width: calc(100% - 180px);
    padding-right: 180px;
}
.notif-inp{
    position: absolute;
    right: 20px;
    font-size: 15px;
    color: #ff7474;
}
.promo-inp-bl{
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 15px;
    display: none;
}
.go-order{
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #9078ff;
    padding: 16px 30px;
    color: white;
    font-size: 15px;
    cursor: pointer;
}
.right-block-cart{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}
.del_cart{
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #ff7474;
    cursor: pointer;
    margin-top: 5px;
}
.del_cart >img{
    margin-right: 5px;
}
.left-block-cart{
    position: relative;
}
.info-author-cart{
    position: absolute;
    display: flex;
    top: 10px;
    left: 10px;
}
.type-course-cart{
    position: absolute;
    right: 10px;
    border-radius: 0 0 12px 12px;
    padding: 5px 16px;
    backdrop-filter: blur(3px);
    box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.25);
    background: linear-gradient(189deg, rgba(255, 241, 129, 0.8) 0%, rgba(226, 93, 86, 0.8) 100%);
    top: -20px;
    font-size: 20px;
    color: white;
    font-family: var(--second-font);
}

.block-cart-empty > span{
    font-size: 20px;
    font-family: var(--second-font);
    margin-top: 40px;
}
.text-notification{
    font-family: var(--first-font);
    font-size: 15px;
    color: #fff;
}
.notification > svg{
    margin-right: 10px;
    display: none;
}
.notification-success{
    box-shadow: 0 4px 24px 0 #34b41f;
    background: #34b41f;
}
.notification-success > .svg_succes_notification{
    display: inline;
}
.notification-success > .svg_error_notification{
    display: none;
}
.notification-sucess{
    box-shadow: 0 4px 24px 0 #34b41f;
    background: #34b41f;
}
.notification-sucess > .svg_succes_notification{
    display: inline;
}
.notification-sucess > .svg_error_notification{
    display: none;
}
.notification-error > .svg_succes_notification{
    display: none;
}
.notification-error > .svg_error_notification{
    display: inline;
}
.notification-error{
    box-shadow: 0 4px 24px 0 #f55;
    background: #f55;
}
@keyframes slideNotification {
    0% {
      top: -100px; /* начальное положение за пределами экрана */
    }
    10% {
      top: 0; /* всплытие до указанной высоты */
    }
    90% {
      top: 0; 
    }
    100% {
      top: -100px;
    }
}
.mobile_menu{
    width: 100%;
    position: fixed;
    bottom: 0;
    display: none;
    justify-content: space-between;
    border-radius: 12px 12px 0 0;
    background: white;
    z-index: 10;
}
.cart_num{
    color: white;
    border-radius: 50%;
    font-size: 9px;
    position: absolute;
    top: -2px;
    right: 9px;
    background: #8f78ff;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-1px);
}
.svg_cart, .svg_support{
    display: flex;
    align-items: center;
    position: relative;
}
.link_mobile_menu {
  width: 25%;
  padding: 16px 0px 16px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #666;
  fill: #666;
  border-top: 1px solid rgba(18, 18, 18, 0.2);
  font-size: 14px;
}
.first_mob_menu {
    border-radius: 12px 0px 0px 0px;
}
.link_mobile_menu_active {
    background: #8f78ff;
    color: white;
    fill: white;
    position: relative;
}
.last_mob_menu {
    border-radius: 0px 12px 0px 0px;
}
.page-tasks-train{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.page-tasks-train>span{
    font-size: 24px;
    color: #222;
    font-family: var(--second-font);
}
.info______{
    font-size: 15px;
    color: rgba(18, 18, 18, 0.5);
}
.blank-progress{
    border-radius: 12px;
    padding: 20px;
    background: white;
    width: 490px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
#ggg_{
    font-size: 15px;
    color: #666;
    display: flex;
    justify-content: space-between;
}
.blank-progress>div>span{
    color: #121212;
}
.btn-start-tasks-bl{
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    font-size: 15px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}
.block-blank-tasks{
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    padding: 20px;
    background: white;
    gap: 10px;
    width: 960px;
}
.block-blank-tasks>div{
    display: flex;
    justify-content: space-between;
    border: 1px solid rgba(18, 18, 18, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    align-items: center;
}
.blank-tasks__name{
    font-size: 15px;
    color: #121212;
}
.blank-tasks__management{
    display: flex;
    gap: 10px;
}
#minuse___, #pluse___{
    background: rgba(18, 18, 18, 0.05);
    border-radius: 6px;
    color: #8f78ff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 25px;
}
#counterTasks{
    font-size: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.data-subj-blank{
    align-items: start;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.wrap_my_courses, .wrap_course_lesson{
    margin-top: 20px;
}
.all-subjects, .wrap_my_courses, .wrap_course_lesson{
    display: flex;
    overflow-x: hidden;
    width: 100%;
    flex-wrap: wrap;
    overflow-x: hidden;
    justify-content: space-between;
    margin-bottom: 86px;
}
.container-about{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}
.art-landing{
    min-width: 300px;
    height: 300px;
    position: relative;
}
.teacher-stat{
    width: 365px;
    background: white;
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(34, 60, 80, 0.2);
    position: relative;
}
.btn-go-buy-teacher-kurs{
    border-radius: 12px;
    padding: 16px 30px;
    background-image: linear-gradient(90deg, #1fd1f9, #b621fe);
    position: relative;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-size: 200% 200%;
	animation: gradient 3s ease infinite;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.freeCourseBlock{
    margin-top: 20px;
    background: white;
    border-radius: 12px;
    height: 40px;
    background-image: url('/assets/gems.png');
    background-size: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.getFreeCourse{
    border-radius: 12px;
    padding: 16px 30px;
    background: #fff;
    position: relative;
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    border: 2px solid black;
    backdrop-filter: blur(10px);
}
.freeCourseBlock>span{
    background: #ffffffd1;
    border-radius: 12px;
    font-family: var(--second-font);
    font-size: 25px;
    backdrop-filter: blur(10px);
    padding: 10px;
    -webkit-backdrop-filter: blur(10px);
}
.wrap-teachers>div{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.name-teacher-stats{
    font-family: var(--second-font);
    color: white;
    text-align: center;
    background: #9078ff;
    width: fit-content;
    padding: 10px;
    border-radius: 10px;
    position: absolute;
    left: 16px;
    top: 16px;
}
.photo-teacher{
    width: 100%;
}
.callMe{
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    position: relative;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-wel{
    margin-top: 50px;
    background: white;
    padding: 20px;
    border-radius: 12px 12px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-wel>div{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
    font-size: 14px;
    color: #5a5a5a;
}
.footer-wel>div>a{
    color: #5a5a5a;
}
.stats-of-blur{
    position: absolute;
    display: flex;
    background: #00000057;
    width: calc(100% - 32px);
    padding: 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    bottom: 0;
    gap: 5px;
}
.stats-of-blur>a{
    border: 1px solid white;
    border-radius: 8px;
    color: white;
    padding: 8px 10px;
    font-size: 15px;
    width: fit-content;
    text-align: center;
}
.wrap-teachers{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.star_1{
    width: 80px;
    position: absolute;
    transform: translate(-40px,-35px);
}
.star_2{
    width: 80px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(40px,35px);
}
.photo-student{
    width: 300px;
    height: 300px;
    /* background-position: revert; */
    background-position: center;
    background-size: 150%;
    border-radius: 50%;
    border-right: 6px dashed #010101;
}
.answ_user_test{
    color: #9078ff;
    display: none;
}
.block_teachers{
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    margin-top: 60px;
    border-radius: 12px;
    gap: 20px;
}
.block_teachers>span{
    font-family: var(--second-font);
    text-align: center;
    font-size: 30px
}
.text-about-lending{
    gap: 15px;
    display: flex;
    flex-direction: column;
}
.big-text{
    font-family: var(--second-font);
    font-size: 35px;
    color: #9078ff;
}
.airplane{
    width: 300px;
    transform: scale(-1, 1) translate(200px, -200px);
    position: absolute;
}
.little-text{
    font-size: 20px;
}
.wrap_course_lesson{
    justify-content: flex-start;
    gap: 15px;
    justify-content: flex-start;
    margin-bottom: 0px;
}
.doesnt_buy_blocks_in_course{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 20px;
}
.photo-student{
    /* background-image: url('https://avatars.mds.yandex.net/i?id=42121ecd68955e5933f0255db0803a19_l-9262149-images-thumbs&n=13'); */
    background-image: url(/img/teachers/banner.webp);
}
.block_block{
    display: flex;
    justify-content: space-between;
    background: white;
    border-radius: 12px 12px 0px 0px;
    padding: 20px;
    font-family: var(--second-font);
    align-items: center;
    font-size: 25px;
}
.info_razdel{
    background: #9078ff;
    padding: 16px;
    border-radius: 0px 0px 12px 12px;
    display: flex;
    gap: 10px;
}
.info_razdel>span{
    background: #7558ff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}
.block_block>div{
    font-family: var(--first-font);
}
.lesson_{
    border-radius: 16px;
    padding: 20px;
    background: white;
    display: flex;
    flex-direction: column;
    width: 470px;
}
.lesson-stat-time, .lesson-stat-duration{
    background: rgba(18, 18, 18, 0.1);
    border-radius: 8px;
    padding: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.bottom_lesson{
    display: flex;
}
.go-home-work, .go-watch{
    background: #9078ff;
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 15px;
    color: #fff;
    width: 100%;
    justify-content: center;
    display: flex;
}
.modal-kurators{
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: white;
    padding: 20px;
    z-index: 3;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    margin-top: 90px;
    margin-right: 250px;
    width: 240px;
    display: none;
}
.modal-kurators>a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sibject-kurator{
    font-size: 15px;
    color: #121212;
}
.avatar-kurator{
    background-image: url(/assets/logo.png);
    width: 30px;
    height: 30px;
    background-size: 70%;
    background-repeat: no-repeat;
    background-color: #9078ff63;
    border-radius: 50%;
    background-position: center;
    min-width: 30px;
}
.flex-block-kurator>div{
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.flex-block-kurator{
    cursor: pointer;
}
.top_content_chat{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_content_chat>span{
    font-size: 20px;
    font-family: var(--second-font);
}
.history_chat{
    max-height: 400px;
    min-height: 400px;
    background: rgba(102, 102, 102, 0.1);
    margin-top: 20px;
    padding: 15px;
    overflow: auto;
    border-radius: 12px 12px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.messages_from_user{
    width: 100%;
    display: flex;
    justify-content: end;
}
.message_from_user{
    display: flex;
    align-items: self-start;
    gap: 10px;
}
.img_chat_user{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9078ff;
    color: white;
    border-radius: 50%;
    border: 2px solid #7459f4;
    min-width: 30px;
}

.text_message{
    padding: 15px;
    background: white;
    border-radius: 6px;
    color: #666;
    overflow-wrap: break-word;
  max-width: calc(100% - 70px);
    font-size: 15px;
}
.date_message{
    margin-top: 15px;
    display: flex;
    justify-content: end;
    color: rgba(102, 102, 102, 0.5);
    font-size: 12px;
}
.messages_from_admin{
    width: 100%;
    display: flex;
    justify-content: start;
}
.message_from_admin{
    display: flex;
    align-items: self-start;
    gap: 10px;
}
.tools_chat{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #efefef;
    border-radius: 0px 0px 12px 12px;
    padding: 15px;
    gap: 15px;
}
.msg_inp_chat{
    border-radius: 12px;
    padding: 15px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
}
.btn_send_msg_chat{
    border-radius: 12px;
    width: 46px;
    height: 46px;
    background: #9078ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-width: 46px;
}
.btn_chat_add_file{
    cursor: pointer;
}
.modal-line{
    margin-top: 20px;
    margin-bottom: 20px;
    height: 1px;
    background: rgba(18, 18, 18, 0.1);
    width: calc(100% + 40px);
    transform: translateX(-20px);
}
.blackScreen{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1; /* Черный экран поверх видео */
}
.video-ff{
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    height: 574px;
    width: 100%;
    max-width: 1025px;
}
.top-watch-flex{
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.flex-d > span{
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
}
.btn-video-homework{
    border-radius: 12px;
    padding: 19px 30px;
    background: #9078ff;
    font-size: 15px;
    color: #fff;
    display: flex;
    min-width: 141px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.descr-video{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: self-start;
    gap: 10px;
}
.contents-lessons{
    border-radius: 16px;
    padding: 20px;
    background: white;
    width: 435px;
    display: flex;
    flex-direction: column;
    height: 574px;
}
.lbl-les{
    font-size: 24px;
    font-family: var(--second-font);
    margin-bottom: 20px;
}
.lesson-work{
    background: rgba(144, 120, 255, 0.1);
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 15px;
    color: #9078ff;
    cursor: pointer;
    margin-bottom: 10px;
}
.active-lesson-work{
    background: #9078ff;
    color: white;
}
.wrap-video-lessons{
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.flex-d{
    display: flex;
    flex-direction: column;
}
.name-video{
    font-size: 24px;
    font-family: var(--second-font);
}
.content-video{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.video-ff > iframe{
    width: 100%;
    height: 100%;
}
.btn-back{
    background: rgba(144, 120, 255, 0.1);
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 15px;
    color: #9078ff;
    display: flex;
    align-items: center;
}
.btn-back > svg{
    margin-right: 10px;
}
.lesson-stat-duration > svg, .lesson-stat-time > svg{
    margin-right: 10px;
}
.stats_lesson{
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}
.label_lesson{
    font-family: var(--second-font);
    font-size: 20px;
}
.all_courses{
    display: flex;
    overflow-x: hidden;
    width: 100%;
    flex-wrap: wrap;
    overflow-x: hidden;
    justify-content: space-between;
    margin-bottom: 86px;
}
.banner_final{
    padding:
    16px;
      background:
    saddlebrown;
        background-position-x: 0%;
        background-position-y: 0%;
        background-repeat: repeat;
        background-image: none;
        background-size: auto;
      margin-bottom: 16px;
      border-radius:
    12px;
      background-image: url(/img/final.jpg);
      height: 150px;
      background-repeat: no-repeat;
      background-size: cover;
      background-position:
    center;
    position: relative;
}
.btn_go_mark{
    background:
    #1acb0b;
      border-radius:
    12px;
      padding:
    14px 30px;
      font-size: 15px;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap:
    10px;
      position: relative;
      width: fit-content;
      position: absolute;
      bottom: 16px;
      right: 20px;
      transition:
    transform ease-in 0.1s, box-shadow ease-in 0.25s;
      box-shadow: 0 2px 15px #1acb0b;
}
.combo_banner_in_cart{
    border-radius:
    12px;
      background:
    #6c45ff;
      background-position-x: 0%;
      background-position-y: 0%;
      background-repeat: repeat;
      background-image: none;
      background-size: auto;
      padding:
    45px 60px;
      background-image: url(/assetsv2/gift_combo_banner.webp);
      background-size: 65% auto;
      background-repeat: no-repeat;
      background-position:
    right;
      display: none;
      flex-direction: column;
      justify-content: space-between;
      margin-top: 15px;
      position: relative;
}
.info_combo_hover{
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
}
.info_combo_hover_block {
    flex-direction: column;
    position: absolute;
    background: #1e1e1ecc;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    top: 0;
    left: 0;
    transform: translate(-90px, -90px);
    backdrop-filter: blur(1px);
    color: #ffffffc4;
    font-weight: lighter;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, display 1s linear;
    pointer-events: none; /* чтобы мышь не цеплялась за невидимый блок */
    z-index: 2;
}
.text_cart_vombo{
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 24px;
    left:45px;
}
.sale_count_in_cart_combo{
    width: fit-content;
    border-radius:
  10px;
    background:
  #1c1c1c;
    font-weight: 600;
    text-align: center;
    color: #fff;
    cursor: pointer;
    padding:
  10px 20px;
      padding-bottom: 10px;
    font-size: 14px;
    position: absolute;
    left: 10px;
    display: flex;
    align-items: center;
    line-height: 1;
    padding-bottom: 8px;
}
.combo_banner_in_cart:hover .info_combo_hover_block {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: flex;
}

.course{
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 470px;
    height: 408px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* .carousel-wrapper {
    perspective: 2000px;
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
  }

  .slider_lend_screens_cont {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform 1s ease-in-out;
  }
  

  .slider_lend_screens_cont_block {
    background: #6c45ff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: absolute;
    width: 645px;
    height: 545px;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    margin: -272.5px 0 0 -322.5px; 
    transition: transform 1s ease, opacity 1s ease;
  }

  
  .slider_lend_screens_cont_block_lbl {
    font-weight: 600;
    font-size: 44px;
    line-height: 121%;
    text-align: center;
    color: #fff;
  }
  
  .slider_lend_screens_cont_block_descr {
    font-weight: 400;
    font-size: 21px;
    line-height: 121%;
    color: #fff;
  }
  
  .slider_lend_screens_cont_block_img {
    position: absolute;
    bottom: 0;
    max-height: 300px;
  }
  
  .slider_lend_screens_cont_block_t_pro {
    position: absolute;
    border-radius: 8px;
    padding: 15px 45px;
    opacity: 0.5;
    bottom: 5px;
    left: 0;
    font-weight: 600;
    font-size: 19px;
    text-align: center;
    color: #fff;
  }
  
  .slider_lend_screens {
    display: flex;
    flex-direction: column;
    gap: 16px;
  } */



  .slider_lend_screens {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .carousel-wrapper {
    width: 100%;
    height: 750px;
    position: relative;
    perspective: 3000px;
    overflow: hidden;
  }
  
  .slider_lend_screens_cont {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform 1s ease-in-out;
  }
  
  .slider-card {
    position: absolute;
    width: 450px;
    height: 425px;
    top: 50%;
    left: 50%;
    background: #6c45ff;
    border-radius: 24px;
    text-align: center;
    color: #fff;
    padding: 30px 16px;
    box-sizing: border-box;
    transform-style: preserve-3d;
    transition: transform 1s ease;
    overflow: hidden;
  }
  
  .slider-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0px;
  }
  
  .slider-card p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 32px;
    margin-top: 0;
  }
  
  .slider-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .slider-card span {
    display: block;
    margin-top: 16px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
  }
  
  
.courses._10grade{
    display: none;
}
.card-content {
    transition: visibility 0.3s ease;
  }
  
.type-curse{
    position: absolute;
    right: 30px;
    border-radius: 0 0 12px 12px;
    padding: 8px 15px 8px 15px;
    backdrop-filter: blur(3px);
    box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.25);
    background: linear-gradient(189deg, rgba(255, 241, 129, 0.8) 0%, rgba(226, 93, 86, 0.8) 100%);
    top: 0px;
    font-size: 20px;
    color: white;
    font-family: var(--second-font);
}
.info_author{
    position: absolute;
    display: flex;
    top: 30px;
    left: 30px;
}
.author_curse{
    backdrop-filter: blur(20px);
    background: rgba(18, 18, 18, 0.1);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px;
    color: #fff;
    font-family: var(--first-font);
}
.author__curse{
    backdrop-filter: blur(20px);
    background: rgba(18, 18, 18, 0.1);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px;
    color: #fff;
    margin-left: 10px;
}
.tag_course{
    border-radius: 8px;
    padding: 10px;
    background: rgba(18, 18, 18, 0.1);
    font-size: 15px;
    color: #121212;
    font-family: var(--first-font);
    font-weight: 300;
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
}
.tags{
    display: flex;
    flex-wrap: wrap;
}
.svg_tag{
    margin-right: 10px;
}
.panel_course{
    display: flex;
    justify-content: space-between;
}
.btn_more_info_course{
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 16px 30px;
    cursor: pointer;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
}
.btn_add_to_cart{
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    font-size: 15px;
    color: #fff;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.price_course{
    font-size: 20px;
    font-family: var(--second-font);
    color: #222;
    position: relative;
}
.left_course_panel{
    font-size: 15px;
}
.right_course_panel{
    display: flex;
}
#msg_deleted{
    font-style: italic;
}
#msg_deleted>.date_message{
    display: none;
}
.courses{
    margin-top: 30px;
    display: flex;
    overflow-x: hidden;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
}
.freecourses{
    display: flex;
    overflow-x: hidden;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px; 
}
.block-hist-hw{
    margin-top: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}
.type_file_ans{
    padding: 5px;
    background: #9078ff;
    font-size: 12px;
    color: #fff;
    font-weight: 300;
    border-radius: 6px;
}
.bl_fl_test>div>svg{
    opacity: 0.2;
}
.data-task-pr{
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    /* background: #d6d0f457; */
    border-radius: 10px;
    /* padding: 10px; */
}
/* .data-task-pr>div>span{
    width: 30px;
    height: 30px;
    min-width: 30px;
} */
._upd_my_answ {
    padding: 20px;
    display: flex;
    flex-wrap: wrap; /* Позволяет тексту переноситься */
    align-items: baseline; /* Выровнять текст сверху */
    gap: 10px;
    border-radius: 16px 10px 10px 16px;
    background: #9078ff24;
    border: 1px solid #9078ff;
    color: #9078ff;
    word-wrap: break-word; /* Перенос длинных слов */
    overflow-wrap: break-word;
}

.answer-label {
    flex-shrink: 0; /* Запрещает сжимать заголовок */
    color: #9078ff;
}

.answer-text {
    flex-grow: 1; /* Тексту разрешено расширяться */
    white-space: pre-wrap; /* Сохраняет переносы строк */
}

#namingg_{
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 16px 10px 10px 16px;
    background: white;
    border: 1px solid #9078ff;
}
.task__name{
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9078ff;
    color: white;
}
.block-hm-pr>.lb-pers{
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(144, 120, 255);
    width: calc(100%);
    transform: translate(-10px, -10px);
    border-radius: 16px 16px 0px 0px;
    padding: 10px;
}
.points{
    font-family: var(--first-font);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    background: rgb(116, 93, 223);
    color: white;
    text-align: center;
}
.block-hm-pr{
    padding: 10px;
    border: 1px solid rgba(88, 47, 179, 0.2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 20px);
    min-width: calc(100% - 20px);
    gap: 10px;
    padding-bottom: 0px;
}
.course_img{
    width: 470px;
    border-radius: 12px;
    height: 200px;
}
.no_ans_ans{
    text-decoration: underline;
    font-weight: 300;
}
.tittle-course{
    font-size: 20px;
    color: #222;
    font-family: var(--second-font);
    margin-top: 5px;
    margin-bottom: 13px;
}
.label_subject_list{
    font-size: 24px;
    color: #222;
    display: flex;
    align-items: center;
    font-family: var(--second-font);
}
.svg_arrow_course{
    margin-left: 5px;
}
.subject_market{
    border-radius: 16px;
    padding: 30px;
    width: 705px;
    margin-bottom: 30px;
    height: 190px;
    background: white;
    position: relative;
}
.btn-go-my-course{
    background: #8f78ff;
    border-radius: 12px;
    padding: 16px 30px;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
}
.btn_start_sale{
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    font-size: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    animation: rgbBackground 3s infinite;
}

@keyframes rgbBackground {
    0% { background-color: #9078ff; }
    25% { background-color: #6345e6; }
    50% { background-color: #cf4867; }
    75% { background-color: #6345e6; }
    100% { background-color: #9078ff; }
}
.btn-go-my-course>svg{
    margin-left: 10px;
}
.bottom-my-courses{
    align-items: self-end;
    display: flex;
  justify-content: space-between;
}
.count-les{
    background: rgba(0, 0, 0, 0.1);
    font-size: 15px;
    color: rgba(18, 18, 18, 0.8);
    border-radius: 8px;
    padding: 8px 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.my_crs{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tittle-my-course{
    color: #222;
    font-family: var(--second-font);
    margin-top: 5px;
    margin-bottom: 13px;
    max-width: 50%;
    font-size: 32px;
}
.flex-subject{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.label-subject{
    font-family: var(--second-font);
    font-weight: 800;
    font-size: 32px;
    color: #121212;
}
.top-info-subject{
    display: flex;
    flex-direction: column;
}
.stats-subject{
    margin-top: 20px;
    display: flex;
}
.count-subject-students{
    border: 1px solid #121212;
    border-radius: 8px;
    color: #121212;
    padding: 8px 10px;
    font-size: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.count-subject-100_points_students{
    border: 1px solid #121212;
    border-radius: 8px;
    color: #121212;
    padding: 8px 10px;
    margin-left: 10px;
    font-size: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.bootom-info-subject{
    display: flex;
    justify-content: space-between;
    align-items: self-end;
}
.btn-choose-curse{
    border-radius: 12px;
    padding: 16px 30px;
    background: #8f78ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #fff;
}
.count-courses-subject{
    border-radius: 8px;
    padding: 8px 10px 10px 10px;
    background: rgba(0, 0, 0, 0.1);
    font-size: 15px;
    color: rgba(18, 18, 18, 0.8);
    padding: 8px 10px;
}

#telegram-login-stepnbotbotbot{
    display: none;
}
.main-menu{
    border-right: 1px solid #eee;
    width: 300px;
    background: #fff;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    z-index: 2;
}
.content-app{
    height: 100%;
    display: flex;
}
.logo{
    margin: 30px;
    width: 80px;
}
.link-menu{
    display: flex;
    align-items: center;
    border-radius: 0 12px 12px 0;
    padding: 16px 30px;
    margin-bottom: 10px;
    border-bottom: 1px solid #8f78ff00;
    border-right: 1px solid #8f78ff00;
    border-top: 1px solid #8f78ff00;
    transition: 0.1s linear all;
    position: relative;
}
.link-popup{
    position: relative;
}
.new_status{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    background: #9078ff;
    color: white;
    padding: 3px 5px;
    border-radius: 5px;
    transform: translate(20px, -10px);
    background: linear-gradient(149deg, rgb(144, 120, 255) 0%, rgb(108, 85, 214) 42%, rgb(144, 120, 255) 72%, rgb(100, 79, 197) 100%);
    animation: gradient_new 3s infinite linear;
    background-size: 400%;
}
.links_filters{
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
}
.link_filt{
    border-radius: 8px;
    padding: 16px 30px;
    background: rgba(144, 120, 255, 0.1);
    font-size: 15px;
    color: #9078ff;
    cursor: pointer;
    min-width: 141px;
    text-align: center;
}
.link-popup>.new_status{
    transform: translate(30px, 13px);
}
@keyframes gradient_new {
    0% {
        background-position: 80% 0%;
    }
    50% {
        background-position: 20% 100%;
    }
    100% {
        background-position: 80% 0%;
    }
}
.menu-name{
    font-size: 15px;
    color: #666;
}
.svg-menu{
    fill: #666;
    margin-right: 10px;

}
.menu-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.page_bonuses{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}
.container_chest{
    position: relative;
}
.light_chest{
    position: absolute;
    width: 400px;
    height: 400px;
    background: #e9c194;
    filter: blur(70px);
    z-index: -1;
    border-radius: 50%;
}
.block_girl{
    position: fixed;
    bottom: -10px;
    display: flex;
    right: 0;
}
.message_girl{
    width: 100px;
    height: 60px;
    background: #9078ff;
    border-radius: 35px/35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--second-font);
    font-size: 14px;
    color: white;
    transform: translateX(20px);
}
.girl_little{
    width: 150px;
}
.arrow_ratated{
    transform: rotate(180deg);
}
.arrow_{
    width: 200px;
}
.chest_img{
    width: 400px;
    height: 400px;
}
.bonuses_block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(88, 47, 179, 0.2);
    border-radius: 16px;
    background: white;
    z-index: 1;
}
.key_img{
    width: 300px;
}
.girl_bonuses{
    width: 400px;
    height: 400px;
}
.link-menu_active{
    background: #9078ff;
    display: flex;
    align-items: center;
    border-radius: 0 12px 12px 0;
    padding: 16px 30px;
    position: relative;
    margin-bottom: 10px;
}
.link-menu_active > .menu-name{
    color: #fff;
}

.link-menu_active > .svg-menu{
    fill: #fff;
}
.link-menu:hover{
    border-bottom: 1px solid #8f78ff;
    border-right: 1px solid #8f78ff;
    border-top: 1px solid #8f78ff;
    border-radius: 0 12px 12px 0;
}
.link-menu:hover > .menu-name{
    color: #8f78ff;
}
.link-menu:hover > .svg-menu{
    fill: #8f78ff;
}
.content-main{
    width: 1560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    position: relative;
}
.header{
    margin-top: 30px;
    display: flex;
    justify-content: end;
    width: 100%;
}
#namingg_>div{
    padding: 20px;
}
.logo_mob{
    height: 44px;
    display: none;
}
.btn-auth{
    border-radius: 12px;
    padding: 16px 30px;
    background: #9078ff;
    position: relative;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.svg__{
    margin-right: 20px;
}
.user-avatar{
    border-radius: 12px;
    width: 44px;
    height: 44px;
    margin-left: 10px;
    background: #eedced;
    display: flex;
    align-items: center;
    justify-content: center;
}
.svg_arrow_menu{
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s linear all;
}
.modal-promocode-body{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.name_modal{
    font-family: var(--second-font);
    font-size: 18px;
}
.window_game{
    width: 100%;
    height: 600px;
    border: none;
}
.window_game>.game_iframe{
    width: 100%;
    height: 600px;
    border: none;
}
.inp-promo-bonus{
    border: 1px solid rgba(18, 18, 18, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    width: calc(100% - 40px);
    font-family: var(--first-font);
    background: transparent;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.get_bonuses_from_promocode{
    background: #9078ff;
    border-radius: 12px;
    padding: 16px 30px;
    cursor: pointer;
    color: white;
    display: flex;
    justify-content: center;
    font-size: 15px;
}
.modal-profile, .modal-promocode-input{
    background: #fff;
    border-radius: 12px;
    width: 235px;
    height: auto;
    right: 0;
    margin-top: 80px;
    position: absolute;
    flex-direction: column;
    display: none;
    z-index: 3;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
}
.modal-desciption-course{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
}
.modal-desciption-course-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    padding: 20px;
    width: 600px;
    height: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.modal-desciption-course-header{
    font-size: 20px;
    font-family: var(--second-font);
    justify-content: space-between;
    display: flex;
}
.modal-desciption-course-descr{
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}
.modal-raspisanie{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
.label-rasp{
    font-size: 15px;
    color: #666;
}
.wrap-work-days{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2px;
}
.day-course{
    border-radius: 10px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #666;
}
.active-day-course {
    background: #8f78ff;
    color: white;
}
.modal-desciption-course-bottom{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.left-course-modal{
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: #121212;
}
.mod-pr-course{
    font-size: 20px;
    font-family: var(--second-font);
}
.right-course-modal{
    background: #9078ff;
    border-radius: 12px;
    padding: 14px 28px;
    color: white;
    cursor: pointer;
}
.modal-profile-header{
    padding: 20px;
    display: flex;
    height: 44px;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.block_progress_lessons{
    margin-top: 20px;
    border: 1px solid rgba(18, 18, 18, 0.2);
    height: 20px;
    border-radius: 12px;
    position: relative;
}
.modal-profile-body{
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
}
.modal-profile-btn{
    margin-top: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #666;
    fill: #666;
}
.modal-profile-btn >svg{
    margin-right: 10px;
}
.exit_btn{
    color: #ff7474;
    fill: #ff7474;
}
.text_pre{
    white-space: preserve-breaks;
}
.modal-profile-left{
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background-color: #eedced;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-profile-right{
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    font-size: 15px;
    font-family: var(--second-font);
}
.modal-profile-right > span{
    font-size: 13px;
    color: #666;
    font-family: var(--first-font);
}
.logo_new{
    margin: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    color: #222;
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
    width: fit-content;
}
.logo_new_mob{
    display: none;
    flex-direction: column;
    position: relative;
    color: #222;
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
    width: fit-content;
}
.logo_new_mob>span{
    z-index: 1;
    line-height: 21.5px;
}
.logo_new_mob>svg{
    position: absolute;
    top: -11px;
    right: -10.7px;
}
.logo_new_mob>.white_hidden{
    background: #ece8ff !important;
}
.white_hidden{
    position: absolute;
    width: 11px;
    height: 12px;
    background: white;
    right: 18px;
    top: 2px;
}
.logo_new>span{
    z-index: 1;
    line-height: 21.5px;
}
.logo_new>svg{
    position: absolute;
    top: -11px;
    right: -10.7px;
}
.svg-actions{
    display: flex;
    align-items: center;
}
.fl-modal{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    margin-top: 25px;
    width: 430px;
}
.info-pass{
    display: none;
}
.lb-ps----v{
    font-size: 13px;
    color: #121212;
    margin-top: 20px;
}
.rules-pass{
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: rgba(18, 18, 18, 0.5);
    gap: 10px;
    margin-top: 10px;
}
.about_bank{
    display: none;
}
.stats_bank_user{
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    display: none;
}
.another-variant{
    margin-top: 10px;
    border-radius: 12px;
    padding: 20px;
    background: white;
    font-size: 20px;
    font-family: var(--second-font);
}
.btn-another{
    background: rgba(144, 120, 255, 0.1);
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 15px;
    color: #9078ff;
    display: flex;
    justify-content: center;
    font-family: var(--first-font);
    margin-top: 20px;
    cursor: pointer;
}
.list-schedule{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.list-schedule>div>a{
    color: #9078ff;
}
.list-schedule>div>span{
    padding: 5px;
    border-radius: 10px;
    font-size: 11px;
}
.list-schedule>div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.modal-auth, .modal-schedule, .window_chat_modal, .window_image{
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
    overflow: auto;
}
.chat_block{
    border-radius: 12px;
    padding: 20px;
    background: #fff;
}
.chat_block{
    top: 50%;
    margin-top: 0px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    width: calc(100% - 70px);
    max-width: 600px;
}
.about_bonuses>svg{
    min-width: 15px;
    margin-right: 5px;
  float: left;
}
.doublePASS{
    display: none;
}
.about_bonuses{
    color: #9078ff;
    background: rgba(143, 120, 255, 0.1);
    padding: 10px 16px;
    border-radius: 12px;
    gap: 5px;
    font-size: 15px;
}
.modal-auth-content{
    border-radius: 12px;
    padding: 20px;
    height: auto;
    background: #fff;
}
.header-modal{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    color: #222;
    font-family: var(--second-font);
}
.svg-close-modal{
    cursor: pointer;
}
.left_mob_round, .right_mob_round{
    display: none;
}
.author_curse_mob{
    display: none;
    margin-top: 15px;
    margin-bottom: 15px;
}
.auth_course_mob{
    border: 1px solid #121212;
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #121212;
}
.auth__course_mob{
    border: 1px solid #121212;
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #121212;
    margin-left: 10px;
}
.popup_modal_menu{
    display: flex;
    padding: 16px;
    background: white;
    width: calc(100% - 64px);
    margin: 0 auto;
    position: fixed;
    border-radius: 12px;
    bottom: 80px;
    z-index: 1;
    margin-left: 16px;
    flex-direction: column;
    align-items: center;
}
.bg-free-course{
    width: 733px;
    height: 234px;
    border-radius: 12px;
}
.pre_{
    white-space: preserve-breaks;
}
.count_keys{
    padding: 16px 30px;
    font-size: 15px;
    border-radius: 12px;
    color: #9078ff;
    background: rgba(143, 120, 255, 0.1);
    display: flex;
    align-items: center;
    fill: #9078ff;
}
.bankImgInTask{
    width: 250px;
    margin: 0 auto;
}
.link-popup{
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #666;
    fill: #666;
    cursor: pointer;
    padding: 16px 30px;
    border-radius: 12px;
}
.link-popup > svg{
    margin-right: 10px;
}
#lendshow750{
    display: none;
}
.les___{
    margin-bottom: 20px;
}
.link-popup-active{
    background: #9078ff;
    color: white;
    fill: white;
}
.contain_blocks_role_dz{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}
.counter_progress_lesson{
    font-size: 13px;
    text-align: center;
    margin-top: 3px;
    color: #cfcfcf;
    z-index: 1;
    position: relative;
}
.line_progress_lessons{
    position: absolute;
    height: 100%;
    border-radius: 12px;
    background: #9078ff;
    z-index: 1;
}
.lb-prog_{
    font-size: 14px;
    color: black;
    font-family: var(--first-font);
    margin-top: 0px;
}
.lb-fllllx{
    display: flex;
    gap: 5px;
}
.svg_op_{
    margin-top: 5px;
    cursor: pointer;
}
.block_generate_combo{
    border-radius: 12px;
    background: #6c45ff;
    padding: 45px 60px;
    margin-bottom: 30px;
    background-image: url(/assetsv2/gift_combo_banner.webp);
    height: calc(300px - 90px);
    background-size: 65% auto;
    background-repeat: no-repeat;
    background-position: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.btn_genetare_combo{
    width: fit-content;
    border-radius: 10px;
    background: #1c1c1c;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: #fff;
    padding: 20px 50px;
    cursor: pointer;
}
.c_b_text{
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 35px;
    line-height: 118%;
    color: #fff;
}
.flexim_{
    display: flex;
    align-items: center;
    gap: 5px;
}
.svg_cl_{
    margin-top: 5px;
    cursor: pointer;
    display: none;
}
.popup{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
}
.stats_bank_user>div>span{
    color: #9078ff;
}
.name_stats_text{
    display: flex;
    gap: 5px;
    font-family: var(--second-font);
    align-items: center;
    font-size: 20px;
}
.img_in_cart{
    width: 470px;
    border-radius: 16px;
}
.marafon{
    background: linear-gradient(189deg, rgba(255, 241, 129, 0.8) 0%, rgba(226, 93, 86, 0.8) 100%);
}
.godovoi{
    background: linear-gradient(189deg, rgba(129, 143, 255, 0.8) 0%, rgba(86, 219, 226, 0.8) 100%);
}
.polugodovoi{
    background: linear-gradient(189deg, rgba(255, 129, 234, 0.8) 0%, rgba(133, 86, 226, 0.8) 100%);
}
.intensin{
    background: linear-gradient(189deg, rgba(255, 129, 246, 0.8) 0%, rgba(226, 86, 123, 0.8) 100%);
}
.itogovoeSochinenie{
    background: linear-gradient(189deg, rgba(151, 227, 44, 0.8) 0%, rgba(206, 190, 125, 0.8) 100%);
}

.fuschia {
    color: #ff0081;
}

.button-bg {
    background-color: #ff0081;
}

.button-text-color {
    color: #fff;
}

.baby-blue {
    background-color: #f8faff;
}
.image_block_trans{
    top: 50%;
    margin-top: 0px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    width: calc(100% - 70px);
    max-width: 700px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.your_prepods_block{
    position: relative;
}
.your_prepods_podlojka{
    box-shadow: 3px 4px 18px -2px rgba(0, 0, 0, 0.17);
    background: #6c45ff;
    border-radius: 30px;
    width: calc(100% - 30px);
    height: 100%;
    top: 0;
    position: absolute;
    transform: translate(30px,30px);
}
.your_prepods_content{
    z-index: 1;
    position: relative;
    box-shadow: 3px 4px 18px -2px rgba(0, 0, 0, 0.17);
    background: #f0f0f0;
    border-radius: 30px;
    padding: 80px;
    display: flex;
    width: calc(100% - 160px - 30px);
    gap: 90px;
}
.left_your_prepods{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.right_your_prepods{
    background: url("/lending/prepods/vera.webp");
    background-size: auto;
    background-size: 100%;
    border-radius: 30px;
    height: 650px;
    width: 40%;
    position: relative;
}
.your_prepods_bottom_links{
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 60px);
    align-items: center;
    padding: 30px;
}
.links_prepod_lend{
    display: flex;
    gap: 16px;
}
.your_prepods_bottom_btn_social{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #ff8fd3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.your_prepods_bottom_btn_course{
    background: #6c45ff;
    color: white;
    border-radius: 10px;
    padding: 16px 32px;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #fff;
}
.lend_mob_hrefer_block{
    display: none;
    justify-content: center;
    gap: 16px;
    align-items: center;
    margin-top: 10px;
}
.lend_mob_hrefer_num_pages{
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    color: #000;
}
.lend_mob_hrefer_left, .lend_mob_hrefer_right{
    background: black;
    width: 21px;
    height: 21px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.your_prepods_name{
    font-weight: 600;
    font-size: 89px;
    color: #1c1c1c;
}
.s_p_l_top, .s_p_l_bottom{
    display: flex;
    gap: 15px;
    width: 100%;
}
.your_prepods_stata_val{
    font-weight: 600;
    font-size: 81px;
    color: white;
    width: 100%;
    line-height: 1;
}
.val_every_ball_lnd.gefest{
    font-weight: revert-layer;
    font-size: 22px;
}
.your_prepods_hrefs{
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
}
.your_prepods_href.active{
    background: #ff8fd3 !important;
    color: white !important;
}
.your_prepods_href{
    border: 2.15px solid #fff;
    border-radius: 11px;
    padding: 11px 22px;
    background: white;
    font-weight: 500;
    font-size: 21px;
    text-align: center;
    color: #000;
}
.your_prepods_hrefs{
    display: flex;
    gap: 20px;
    align-items: center;
}
.your_prepods_stats{
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.your_prepods_stata_name{
    font-weight: 600;
    font-size: 24px;
    color: #fff;
}
.your_prepods_stata{
    display: flex;
    width: 100%;
    flex-direction: column;
    background: #6c45ff;
    border-radius: 10px;
    padding: 16px;
}
.your_prepods_citata{
    font-weight: 600;
    font-size: 22px;
    line-height: 144%;
    color: #1c1c1c;
    margin-top: -20px;
}
.lend_grid_info{
    display: flex;
    gap: 30px;
}
.lend_grid_column_1, .lend_grid_column_2, .lend_grid_column_3{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.lend_read_pers_inf{
    display: flex;
    align-items: center;
    gap: 20px;
}
.lend_read_pers_inf_avatar{
    height: 45px;
    width: 45px;
    border-radius: 100%;
}
.lend_read_pers_inf_name{
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #fff;
}
.lend_read_msg{
    font-weight: 400;
    font-size: 20px;
    line-height: 141%;
    color: #fff;
}
.lend_str_read{
    background: #bf6cff;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hiden_lend_mob_stats_bl{
    display: none;
}
.lend_read_btn_read{
    font-weight: 500;
    font-size: 15px;
    line-height: 141%;
    color: #171617;
    border-radius: 23px;
    background: white;
    width: fit-content;
    padding: 12px 16px;
    cursor: pointer;
}
.bubbly-button {
    font-family: 'Helvetica', 'Arial', sans-serif;
    display: inline-block;
    font-size: 17px;
    -webkit-appearance: none;
    appearance: none;
    background-color: #1acb0b;
    color: #fff;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
    box-shadow: 0 2px 25px #15cf4c91;
}
.lesson_not_founds_{
    padding: 16px;
    border: 1px dashed rgba(18, 18, 18, 0.37);
    border-radius: 12px;
    flex-direction: column;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: rgba(18, 18, 18, 0.53);
    display: none;
    margin-bottom: -33px;
}
.bubbly-button:focus {
    outline: 0;
}

.bubbly-button:before, .bubbly-button:after {
    position: absolute;
    content: '';
    display: block;
    width: 140%;
    height: 100%;
    left: -20%;
    z-index: -1000;
    transition: all ease-in-out 0.5s;
    background-repeat: no-repeat;
}
.izm_back{
    display: none;
}
.edddit{
    background: #fff0;
    padding: 5px 10px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    color: #d1d1d1;
    border: 1px dashed;
    font-size: 12px;
    cursor: pointer;
}
.bubbly-button:before {
    display: none;
    top: -75%;
    /* background-image: radial-gradients here */
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}

.bubbly-button:after {
    display: none;
    bottom: -75%;
    /* background-image: radial-gradients here */
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}

.bubbly-button:active {
    transform: scale(0.9);
    background-color: #1acb0b; /* darken($button-bg [not supported in plain CSS], 5%); */
    box-shadow: 0 2px 25px #15cf4c91;
}

.bubbly-button.animate:before {
    display: block;
    animation: topBubbles ease-in-out 0.75s forwards;
}

.bubbly-button.animate:after {
    display: block;
    animation: bottomBubbles ease-in-out 0.75s forwards;
}
.lend_btns_ctm{
    display: flex;
    justify-content: center;
    gap: 65px;
    margin-top: 45px;
}
.btn_get_free_course_lnd{
    border-radius: 10px;
    background: #171617;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #fff;
    padding: 30px 85px;
    cursor: pointer;
    max-width: 500px;
    min-width: 330px;
}
.btn_order_course_lnd{
    border-radius: 10px;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #fff;
    padding: 30px 85px;
    cursor: pointer;
    background: #ff8fd3;
    max-width: 500px;
    min-width: 330px;
}
.mob_btn_lend_hzhh_buy_course{
    border-radius: 7px;
    background: #171617;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #fff;
    display: none;
    justify-content: center;
    padding: 20px;
}
.lend_logo_t_{
    font-weight: 600;
    font-size: 80px;
    line-height: 118%;
    color: #0b0b0b;
    display: flex;
    justify-content: center;
    margin-top: 70px;
    align-items: end;
    gap: 10px;
    line-height: 1;
}
.lend_logo_t_>span{
    line-height: 50px;
}
.video-slider-mob {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: saddlebrown;
    border-radius: 17px;
    height: 550px;
    display: flex;
    align-items: center;
}

.slider-mob {
    display: flex;
    transition: transform 0.3s ease-out;
    will-change: transform;
    height: 100%;
}
.name_lend_your_prepods_t_rever_mob{
    display: none;
}

.slide-mob {
    min-width: 100vw; /* Каждый слайд занимает всю ширину */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slide-mob .ifr_video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Вписывает видео в контейнер */
    border-radius: 17px; /* Убирает возможные края */
}
.mob_your_prepodp{
    display: none;
}
  
  /* Основная обёртка свайпера */
  .custom-swiper{
    width: calc(100% - 32px);
    overflow: hidden;
    position: relative;
    padding: 0px 16px;
  }

  .custom-swiper-text {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0px 16px;
    box-sizing: border-box;
  }
  
  .open_size{
    width: calc(100% + 32px);
    transform: translateX(-16px);
  }
  
  /* Наша «лента» слайдов */
  .custom-swiper-wrapper, .custom-swiper-wrapper-text {
    display: flex;
    gap: 16px; /* Расстояние между видео. Можно 24px, 32px и т.д. */
    will-change: transform; 
  }
  
  /* Каждый слайд – не на 100%, а чуть уже, 
     чтобы слева/справа было видно следующий слайд */
  .custom-slide{
    flex: 0 0 80%; /* Можешь менять 80 -> 85 -> 90, чем больше, тем шире слайд */
  }

  .custom-slide-com {
    flex: 0 0 68%; /* Можешь менять 80 -> 85 -> 90, чем больше, тем шире слайд */
  }
  
  /* Видео сохраняет соотношение сторон постера 
     (допустим 9:16, можно подогнать под твой реальный постер).
     Не станет меньше/больше, чем нужно, благодаря max-width и auto-height. */
  .custom-slide > video {
    display: block;
    width: 100%;       /* Заполняет всю ширину этого слайда (80% контейнера) */
    aspect-ratio: 9/16;/* Соотношение сторон (вертикальное) 
                          или 16/9, если горизонтальное */
    object-fit: cover; /* Чтобы картинка аккуратно обрезалась, без искажений */
    
    /* Если хочешь ограничить реальную ширину/высоту 
       (чтобы не раздувалось на очень больших экранах):
     max-width: 500px;   
     max-height: 900px; 
     */
  
    border-radius: 20px; /* Скруглённые углы, если надо */
  }

.custom-slide-com-ava{
    width: 30px;
    height: 30px;
    border-radius: 100%;
}
.header-custom-slide-com{
    display: flex;
    gap: 16px;
    align-items: center;
}
.custom-slide-com-name {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #171617;
}
.custom-slide-com{
    display: flex;
    background: #ebebeb;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
}
.lend_mob_rew_text{
    width: calc(100% + 32px);
    transform: translateX(-16px);
}
.custom-slide-com-short-rew{
    font-weight: 400;
    font-size: 13px;
    color: #171617;
}
  
@keyframes topBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }
    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }
    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

@keyframes bottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
    }
    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
    }
    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.lend_mob_rows{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.lend_info_hzhzhz{
    margin-top: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    background: #bf6cff;
    padding: 60px;
    gap: 45px;
    align-items: start;
}
.lend_info_hzhzhz>span{
    font-weight: 600;
    font-size: 64px;
    line-height: 118%;
    color: #fff;
    max-width: 850px;
}
.info_banner_hzhzh{
    position: absolute;
    right: 0;
    bottom: 0;
    height: 550px;
}
.btn_lend_hzhh_buy_course{
    font-weight: 600;
    font-size: 26px;
    text-align: center;
    color: #fff;
    background: #1c1c1c;
    border-radius: 10px;
    padding: 30px 100px;
    cursor: pointer;
}

.lend_mob_row{
    background: #ede8ff;
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 50px;
}
.l_r_val{
    font-weight: 700;
    font-size: 64px;
    text-align: center;
    color: #6c45ff;
    transform: rotate(-6deg);
    font-family: Noteworthy;
    line-height: 1;
}
.lend_footer__left_list{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.lend_footer__right, .lend_footer__left{
    width: 100%;
}
.lend_t_t_little_sdflkxzc{
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}
.lend_footer__left{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.lend_footer__left_name{
    font-weight: 600;
    font-size: 64px;
    line-height: 121%;
    color: #1c1c1c;
}
.lend_footer__left_el{
    font-weight: 400;
    font-size: 27px;
    color: #676363;
    gap: 25px;
    display: flex;
    align-items: center;
}
.lend_footer__{
    padding: 80px;
    background: white;
    box-shadow: 3px 4px 18px -2px rgba(0, 0, 0, 0.17);
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.table_HW{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    width: fit-content;
}
.headerTableHW{
    display: flex;
}
.headerTableHW > span{
    background: #9078ff;
    font-weight: bold;
    border-right: 1.5px solid #7661d7;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    color: white;
    border-top: 1.5px solid #7661d7;
    border-bottom: 1.5px solid #7661d7;
}
.headerTableHW > span:first-child {
    border-radius: 10px 0px 0px 0px;
    border-left:  1.5px solid #7661d7;
}

.headerTableHW > span:last-child {
    border-radius: 0px 10px 0px 0px;
}
.inputsTableHW > input:first-child {
    border-radius: 0px 0px 0px 10px;
    border-left: 1.5px solid black;
}

.inputsTableHW > input:last-child {
    border-radius: 0px 0px 10px 0px;
}
.inputsTableHW{
    display: flex;
}
.cont_tog_select_dropdown{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.selected_subj{
    border: 1px solid #dadada;
    border-radius: 10px;
    padding: 0px 16px;
    width: 100%;
    height: 50px;
    min-width: 200px;
    background: #f5f5f5;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    z-index: 1;
}
.cont_tog_select_dropdown_list{
    position: absolute;
    width: 100%;
    padding: 30px 0px 10px 0px;
    box-shadow: 0 24px 48px 0 rgba(230, 235, 245, 0.4), 0 1px 4px 0 #e3ebfc;
    background: #fff;
    border-radius: 10px;
    margin-top: 180px;
    display: none;
    flex-direction: column;
}
.cont_tog_select_dropdown_element[data-active="0"]>.cont_tog_select_dropdown_element_cheker>.______not_elected{
    display: flex;
}
.cont_tog_select_dropdown_element[data-active="0"]>.cont_tog_select_dropdown_element_cheker>.______selected{
    display: none;
}
.cont_tog_select_dropdown_element[data-active="1"]>.cont_tog_select_dropdown_element_cheker>.______not_elected{
    display: none;
}
.cont_tog_select_dropdown_element[data-active="1"]>.cont_tog_select_dropdown_element_cheker>.______selected{
    display: flex;
}
.dop_courses_list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-x: auto;
}
.dop_courses_block{
    background:
    #fff;
      border-radius:
    12px;
      padding:
    20px;
      width: 400px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      gap:
    16px;
}
.btn_add_dop_course_to_cart{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:
  12px;
    background:
  #9078ff;
    padding:
  16px 30px;
    color: white;
    font-size: 15px;
    cursor: pointer;
    gap:
  5px;
}
.dop_courses_list>div{
    display: flex;
    align-items: center;
    overflow:
  auto;
    gap:
  16px;
  width: 100%;
}
.dop_courses_list_block{
    padding:
  20px;
    background:
  #9078ff;
    margin-bottom: 80px;
    border-radius:
  12px;
  display: none;
}
.dop_courses_list>span{
    font-size: 23px;
    color: white;
    font-family: var(--second-font);
}
.dop_courses_block_img{
    border-radius: 12px;
}
.cont_tog_select_dropdown_element{
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #000;
}
.cont_tog_select_dropdown>svg{
    position: absolute;
    right: 16px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s linear;
}

.ip_text{
    text-align: center;
    color: #676363 !important;
    color: inherit !important;
    font-size: 14px;
    text-decoration: none !important;
    pointer-events: none !important;
    cursor: default !important;
}
.inputsTableHW > input{
    background: white;
    font-weight: bold;
    border-right: 1.5px solid black;
    width: 36px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border-top: 0;
    text-align: center;
    border-bottom: 1.5px solid black;
    border-radius: 0;
}
.lend_problems_space_more {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    overflow: hidden; /* важно для обрезки */
    position: relative;
    width: 100%;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  
  .lend_problems_space {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
  }
  
  .lend_problems__line {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 160px; /* фиксируем высоту под блоки */
  }
  
  /* Абсолютное позиционирование блоков */
  .pain_block {
    position: absolute; 
    top: 50%;  
    transform: translateY(-50%);
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #fff;
    padding: 35px 55px;
    border-radius: 20px;
    white-space: nowrap;
    flex-direction: column;
    display: flex;
    background: #666; /* этот цвет будет заменён на фиксированный через JS */
  }
  
.cont_t_hid{
    width: 135px;
    display: flex;
}
.l_r_name{
    font-weight: 700;
    font-size: 18px;
    line-height: 135%;
    color: #6c45ff;
}
.lend_grid_info_mob{
    display: none;
}
.name_lend_your_prepods{
    display: flex;
    position: relative;
    justify-content: center;
    margin-top: 70px;
    font-weight: 600;
    font-size: 84px;
    color: #0b0b0b;
    align-items: center;
}
.name_lend_your_prepods_t_revert{
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #242424;
    position: absolute;
    display: flex;
    flex-direction: column;
    transform: rotate(-13deg) translate(475px,60px);
}

@media screen and (max-width: 1900px) {
    .content-main{
        width: 1300px;
    }
    .dop_courses_block{
        width: 410px;
    }
    .block_generate_combo{
        padding: 20px 50px;
    }
    .c_b_text{
        font-size: 30px;
    }
    .video-ff{
        max-width: 820px;
    }
    .game_block{
        width: 273px;
    }
    .block_prize{
        width: 244px;
    }
    .bg-free-course{
        background-size: 100%;
        background-repeat: no-repeat;
        height: 195px;
    }
    .located-homework{
        max-width: 946px;
    }
    .teacher-stat{
        width: 406px;
    }
    .stats-of-blur > a{
        font-size: 15px;
    }
    .blank-subj{
        width: 575px;
        gap: 90px;
    }
    .homework_bl{
        width: 602px;
    }
    .task-homework{
        width: 906px;
    }
    .video-ff{
        height: 470px;
    }
    .contents-lessons{
        height: 470px;
        width: 380px;
    }
    .lesson_{
        width: 383px;
    }
    .label_lesson{
        font-size: 18px;
    }
    .tittle-my-course{
        font-size: 25px;
    }
    .bg-free-course{
        width: 100%;
        background-position: center;
    }
    .free-course-block{
        width: 602px;
    }
    .img-free-course{
        width: 602px;
        height: auto;
    }
    .buy_content{
        width: 465px;
    }
    .cart-content{
        width: 735px;
    }
    .type-course-cart{
        font-size: 16px;
    }
    .subject_market{
        width: 575px;
        background-position: top;
    }
    .course, .course_img{
        width: 383px;
        height: auto;
    }
    .left_course_panel{
        font-size: 14px;
    }
    .price_course{
        font-size: 15px;    
    }
    .btn_add_to_cart, .btn_more_info_course, .btn_buyed{
        padding: 16px 25px;
    }
    .panel_course{
        margin-top: 20px;
    }
    .type-curse{
        font-size: 18px;
    }
}

@media screen and (max-width: 1800px) {
    .right_your_prepods, .left_your_prepods{
        width: 50%;
    }
}

@media screen and (max-width: 1650px) {
    .lend_main_banner{
        padding: 75px 50px;
    }
    .dop_courses_list > span{
        font-size: 18px;
    }
    .dop_courses_block {
        width: 300px;
      }
    .banner_final{
        height: 100px;
    }
    .info_combo_hover_block{
        transform: translate(0, -90px);
    }
    .carousel-wrapper{
        height: 550px;
    }
    .slider-card{
        width: 350px;
        height: 350px;
    }
    .lend_footer__{
        padding: 60px;
    }
    .lend_footer__left_name{
        font-size: 50px;
    }
    .lend_info_hzhzhz{
        padding: 40px;
        gap: 30px;
    }
    .lend_info_hzhzhz > span{
        font-size: 55px;
        max-width: 730px;
    }
    .info_banner_hzhzh{
        height: 475px;
    }
    .your_prepods_content{
        padding: 50px;
        gap: 50px;
        width: calc(100% - 100px - 30px);
    }
    .name_lend_your_prepods{
        font-size: 75px;
        margin-top: 20px;
    }
    .name_lend_your_prepods_t_revert{
        transform: rotate(-13deg) translate(440px,70px);
        font-size: 22px;
    }
    .btn_get_free_course_lnd, .btn_order_course_lnd{
        padding: 25px 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .lend_btns_ctm{
        gap: 50px;
         margin-top: 30px;
    }
    .lend_logo_t_{
        margin-top: 20px;
        font-size: 60px;
    }
    .lend_prepod_{
        width: 790px;
    }
    .lend_form_free_lesson{
        padding: 45px;
    }
    .lend_menu_banner{
        font-size: 54px;
        line-height: 10px;
    }
    .lend_name{
        padding: 18px 21px;
    }
    .lend_info_prepod{
        padding: 25px;
    }
    .lend_info_label{
        font-size: 30px;
    }


    .content-main{
        width: 900px;
    }
    .block_generate_combo{
        height: calc(265px - 90px);
        background-size: 80% auto;
    }
    .btn_genetare_combo{
        padding: 15px 35px;
        font-size: 16px;
    }
    .video_and_chat{
        flex-direction: column;
    }
    .game_block{
        width: 250px;
    }
    .block_prize{
        width: 210px;
    }
    .bg-free-course{
        height: 130px;
    }
    .author-free-course{
        top: 10px;
        left: 10px;
    }
    .located-homework{
        max-width: 596px;
    }
    .wrap-teachers{justify-content: center;}
    .stats_bank_user{
        width: 250px;
    }
    .btns_role_tasks{
        width: 250px;
    }
    .teacher-stat {
        width: 420px;
    }
    .stats-of-blur > a {
        font-size: 17px;
    }
    .stats-of-blur{
        justify-content: space-between;
    }
    .error-text{
        font-size: 25px;
    }
    .error-banner{
        width: 500px;
        height: 250px;
        background-size: 100%;
    }
    .blank-subj{
        padding: 20px;
        width: 395px;
    }
    .name-od-less-sch, .cnt-lesson{
        display: none;
    }
    .round-lesson{
        display: flex;
    }
    .list-tasks-today{
        flex-direction: row;
        justify-content: center;
        bottom: 0;
        position: relative;
        height: 100%;
        margin-top: 0px;
        margin-right: 0px;
    }
    .homework_bl{
        width: 402px;
    }
    .refuseHomeWork, .finishHomeWork{
        padding: 16px 20px;
    }
    .info-homework{
        width: 250px;
    }
    .lab-homeles{
        font-size: 20px;
    }
    .lbl-homework{
        font-size: 20px;
    }
    .task-homework{
        width: 556px;
    }
    .top-watch-flex{
        flex-direction: column;
    }
    .video-ff{
        width: calc(100% - 40px);
        max-width: 100%;
    }
    .contents-lessons{
        width: calc(100% - 40px);
        height: auto;
        max-height: 500px;
    }
    .lesson_{
        width: 402px;
    }
    .img-free-course, .free-course-block{
        width: 402px;
    }
    .cart___{
        flex-direction: column-reverse;
    }
    .wrap-cart{
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: row;
    }
    .cart-content{
        width: 400px;
        flex-direction: column;
        height: auto;
    }
    .img_in_cart{
        width: 400px;
    }
    .right-block-cart{
        margin-left: 0px;
    }
    .buy_content{
        width: calc(100% - 40px);
        margin-left: 0px;
        margin-bottom: 16px;
    }
    .subject_market{
        width: 100%;
        background-position: top;
        background-size: cover;
    }
    .course, .course_img {
        width: 402px;
        height: auto;
    }
}

@media screen and (max-width: 1500px) {
    .your_prepods_name{
        font-size: 75px;
    }
    .your_prepods_citata{
        font-size: 20px;
        margin-top: -25px;
    }
    .your_prepods_stata_val{
        font-size: 60px;
    }
    .right_your_prepods{
        height: auto;
    }
}
@media screen and (max-width: 1400px) {
    .lend_page{
        padding: 16px;
        gap: 16px;
    }
    .lend_t_t_little_sdflkxzc{
        font-weight: 300;
        font-size: 16px;
        color: #fff;
        padding: 10px;
    }
    .lend_f_span > a{
        font-size: 18px;
    }
    .lend_footer__left_el{
        gap: 15px;
        font-size: 24px;
    }
    .lend_footer__left_list{
        gap: 20px;
    }
    .lend_footer__left_name{
        font-size: 45px;
    }
    .lend_info_hzhzhz > span{
        font-size: 45px;
        max-width: 600px;
    }
    .info_banner_hzhzh {
        height: 400px;
      }
    .lend_str_icon{
        display: none !important;
    }
    .lend_str_icon_m{
        display: flex !important;
    }
    .lend_logo_t_{
        font-size: 50px;
    }
    .name_lend_your_prepods {
        font-size: 65px;
        margin-top: 30px;
    }
    .name_lend_your_prepods_t_revert {
        transform: rotate(-13deg) translate(360px,65px);
        font-size: 18px;
    }
    .lend_header_left{
        gap: 50px;
    }
    .lend_main_banner{
        padding: 30px;
    }
    .lend_menu_banner{
        font-size: 40px;
        line-height: normal;
        gap: 20px;
    }
    .lend_name{
        padding: 10px 15px;
    }
    .lend_menu_banner>span{
        line-height: 35px;
    }
    .lend_m_b_left{
        gap: 20px;
    }
    .lend_info_prepod{
        padding: 20px;
    }
    .lend_form_free_lesson{
        padding: 20px;
        gap: 20px;
    }
    .lend_f_f_l_label{
        font-size: 30px;
    }
    .lend_prepod_{
        width: 696px;
    }
    .lend_btn_callback_form{
        font-size: 20px;
    }
}

@media screen and (max-width: 1375px) {
    .left_your_prepods{
        width: 60%;
    }
    .right_your_prepods{
        width: 40%;
    }
}

@media screen and (max-width: 1250px) {
    .content-main{
        width: 700px;
    }
    .dop_courses_block {
        width: 330px;
      }
    .btn_get_free_course_lnd, .btn_order_course_lnd{
        justify-content: center;
        font-size: 20px;
        padding: 25px 30px;
        min-width: 300px;
    }
    .lend_btns_ctm{
        gap: 30px;
        margin-top: 25px;
    }
    .lend_grid_info{
        gap: 20px;
    }
    .lend_grid_column_1, .lend_grid_column_2, .lend_grid_column_3{
        gap: 20px;
    }
    .lend_str_bea, .lend_str_read{
        padding: 20px
    }
    .lend_str_val{
        font-size: 75px;
    }
    .lend_str_name{
        font-size: 18px;
    }
    .lend_read_pers_inf_avatar{
        width: 40px;
        height: 40px;
    }
    .lend_read_pers_inf_name{
        font-size: 20px;
    }
    .lend_read_pers_inf{
        gap: 10px;
    }
    .lend_read_msg{
        font-size: 16px;
    }
    .lend_read_btn_read{
        font-size: 14px;
    }
    .block_generate_combo{
        height: calc(215px - 90px);
        border-radius: 12px;
    }
    .btn_genetare_combo{
        font-weight: 599;
        font-size: 14px;
        padding: 10px 20px;
    }
    .c_b_text{
        font-weight: 599;
        font-size: 22px;
    }
    .lesson_not_founds_{
        margin-bottom: -25px;
    }
    .filter_modal{
        width: 240px;
    }
    .game_block{
        width: 302px;
    }
    .block_prize{
        width: 220px;
    }
    .bg-free-course{
        height: 215px;
    }
    .located-homework{
        max-width: 1250px;
    }
    .stats_bank_user{
        width: calc(100% - 32px);
        padding: 16px;
        gap: 16px;
    }
    .teacher-stat {
        width: 320px;
    }
    .stats-of-blur > a {
        font-size: 12px;
    }
    .footer-wel > div{
        width: 33%;
        align-items: safe;
    }
    .block_block{
        padding: 16px;
    }
    .homework_lesson_bl, .btns_role_tasks{
        padding: 16px;
        width: calc(100% - 32px);
    }
    .blank-subj{
        width: 100%;
        padding: 16px;
    }
    .name-blank-subj{
        font-size: 25px;
    }
    .wrap-banks-subjects,.btns_role_tasks{
        gap: 16px;
    }
    .calendar-cell{
        min-height: 50px;
    }
    .date-sch{
        top: 5px;
        left: 0;
        margin-left: 5px;
    }
    .block-hist-hw{
        gap: 16px;
        padding: 16px;
    }
    .personal-info, .btns_role_tasks{
        padding: 16px;
    }
    .info-pers{
        margin-top: 16px;
    }
    .homework_bl{
        width: 100%;
    }
    .video-ff{
        height: 400px;
    }
    .name-video{
        font-size: 20px;
    }
    .video-ff, .contents-lessons{
        padding: 16px;
        width: calc(100% - 32px);
    }
    .page-homework{
        flex-direction: column;
    }
    .content-homework{
        width: 100%;
    }
    .task-homework{
        padding: 16px;
        width: calc(100% - 32px);
    }
    .refuseHomeWork, .finishHomeWork{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .btns-homework-inf{
        gap: 16px;
    }
    .info-homework{
        padding: 16px;
        width: calc(100% - 32px);
    }
    .lesson_{
        width: 100%;
    }
    .img-free-course, .free-course-block{
        width: 100%;
    }
    .img_in_cart{
        width: 300px;
    }
    .cart-content{
        width: 300px;
    }
    .subject_market{
        width: 100%;
        background-position: top;
    }
    .course_img{
        display: none;
    }
    .type-curse{
        position: relative;
        right: 0;
        border-radius: 8px;
        padding: 8px 10px;
        width: 100px;
        font-size: 13px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .info_author{
        display: none;
    }
    .tittle-course{
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .course{
        width: 310px;
        padding: 16px;
    }
    .panel_course{
        flex-direction: column;
    }
    .les___{
        margin-bottom: 16px;
    }
    .left_course_panel{
        font-size: 13px;
    }
    .price_course{
        font-size: 18px;
    }
    .right_course_panel{
        margin-top: 20px;
    }
    .author_curse_mob{
        display: flex;
    }
    .tag_course{
        font-size: 11px;
        margin-right: 4px;
        margin-bottom: 4px;
        border-radius: 8px;
    }
    .panel_course{
        margin-top: 0px;
    }
    .btn_add_to_cart, .btn_more_info_course, .btn_buyed{
        padding: 16px 30px;
    }
    .lend_naw{
        display: none;
    }
    .lend_menu_banner{
        font-size: 45px;
    }
}

@media screen and (max-width: 1200px) {
    .lend_m_b_right, .lend_contain_l, .lend_names{
        display: none;
    }
    .your_prepods_podlojka{
        transform: translate(10px,10px);
        width: calc(100% - 10px);
    }
    .btn_lend_hzhh_buy_course{
        font-size: 20px;
        padding: 20px 60px;
    }
    .info_banner_hzhzh{
        height: 370px;
    }
    .your_prepods_content{
        padding: 20px;
        gap: 16px;
        width: calc(100% - 40px - 10px);
    }
    .your_prepods_stata{
        padding: 12px;
    }
    .your_prepods_stata_val{
        font-size: 45px;
    }
    .your_prepods_stata_name{
        font-size: 16px;
    }
    .your_prepods_href{
        border: 2.15px solid #fff;
        border-radius: 11px;
        padding: 6px 12px;
        background: white;
        font-size: 18px;
        text-align: center;
        color: #000;
    }
    .left_your_prepods{
        gap: 16px;
    }
    .your_prepods_citata {
        font-size: 16px;
        margin-top: -16px;
    }
    .right_your_prepods, .left_your_prepods{
        width: 50%;
    }
    .your_prepods_bottom_btn_course{
        padding: 12px 24px;
    }
    .your_prepods_bottom_links{
        width: calc(100% - 30px);
        align-items: center;
        padding: 20px;
    }
    .your_prepods_name{
        font-size: 60px;
    }
    .lend_logo_t_>span{
        line-height: 45px;
    }
    .lend_main_banner{
        padding-top: 180px;
        padding-bottom: 59px;
    }
    .lend_img_prepod{
        top: auto;
    }
    .lend_m_b_left{
        align-items: center;
        gap: 350px;
        transform: translateY(-150px);
    }
}

@media screen and (max-width: 1050px) {
    .mobile_menu {
      display: flex;
    }
    .slider-card {
        width: 250px;
        height: 250px;
    }
    .carousel-wrapper{
        height: 500px;
    }
    .btn-go-to-do{
        padding: 10px 20px;
        font-size: 14px;
    }
    .cont_tog_select_dropdown_list{
        box-shadow:none;
    }
    .lend_footer__{
        flex-direction: column;
        padding: 30px;
        width: calc(100% - 60px + 32px);
        transform: translateX(-16px);
        border-radius: 15px 15px 0px 0px;
        margin-top: 25px;
        padding-bottom: 0;
    }
    .lend_footer__right{
        width: calc(100% + 60px);
        transform: translateX(-30px);
    }
    .lend_form_free_lesson_btm{
        background: #262626;
        padding: 40px !important;
        border-radius: 0 !important;
    }
    .btn_lend_hzhh_buy_course{
        display: none;
    }
    .lend_info_hzhzhz{
        padding: 20px;
        gap: 16px;
        justify-content: center;
        border-radius: 10px;
        align-items: center;
        box-sizing: border-box;
        overflow: hidden;
        margin-top: 30px;
    }
    .mob_btn_lend_hzhh_buy_course{
        display: flex;
    }
    .lend_info_hzhzhz > span{
        font-weight: 600;
        font-size: 33px;
        line-height: 118%;
        color: #fff;
        max-width: none;
        text-align: center;
    }
    .info_banner_hzhzh{
        position: relative;
        height: auto;
        width: 155%;
        transform: translateY(20.5px);
    }
    .pain_block{
        font-size: 20px;
        padding: 25px 40px;
    }
    .lend_problems__line{
        height: 115px;
    }
    .your_prepods_hrefs{
        gap: 8px;
    }
    .name_lend_your_prepods{
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .name_lend_your_prepods_t_rever_mob{
        display: flex;
        flex-direction: column;
        font-weight: 700;
        font-size: 13px;
        text-align: center;
        color: #242424;
        transform: rotate(-2deg);
    }
    .name_lend_your_prepods{
        font-size: 41px;
    }
    .name_lend_your_prepods_t_revert{
        display: none;
    }
    .lend_t_r_cont_close{
        font-size: 35px;
    }
    .lend_t_r_cont_modal{
        font-size: 14px;
    }
    .modal_lend_full_t_cont{
        border-radius: 20px;
    }
    .modal_lend_full_t_cont{
        padding: 20px;
        width: calc(100% - 72px);
        gap: 16px;
    }
    .lend_t_r_cont_header_avatar{
        width: 40px;
        height: 40px;
    }
    .lend_t_r_cont_header_left{
        gap: 16px;
    }
    .lend_t_r_cont_header_name{
        font-weight: 700;
        font-size: 18px;
        text-align: center;
        color: #000;
    }
    .lend_read_btn_read{
        color: #171617;
        font-size: 13px;
        padding: 6px 12px;
    }
    .lend_grid_info_mob{
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .lend_grid_info{
        display: none;
    }
    .none-tasks{
        padding: 10px 20px;
        font-size: 14px;
        width: calc(100% - 40px);
    }
    .block_generate_combo{
        background-size: 100% auto;
        height: auto;
        padding: 16px;
        gap: 16px;
        background-size: cover;
    }
    .c_b_text{
        font-size: 18px;
        width: fit-content;
        backdrop-filter: blur(10px);
        border-radius: 12px;
    }
    .btn_genetare_combo{
        font-size: 12px;
        padding: 10px 16px;
    }
    .upd_list_courses{
        gap: 23px;
    }
    .filter_modal{
        width: 240px;
    }
    .block_today_deadlines, .lesson-in-to-do_dd{
        padding: 16px;
        gap: 16px;
    }
    .image_block_trans{
        max-width: calc(100% - 70px);
    }
    .game_block{
        width: calc(50% - 40px);
        padding: 16px;
    }
    .block_progress_lessons{
        margin-top: 16px;
    }
    .block_prize {
        width: calc(50% - 10px);
      }
      .wrap_prizes{
        margin-top: 0px;
      }
      .block_prize > span{
        font-size: 15px;
      }
    .block_girl{
        bottom: 70px;
    }
    .located-homework{
        max-width: 100%;
    }
    .container-about{
        flex-direction: column;
    }
    .text-about-lending{
        align-items: center;
    }
    .wrap-teachers > div{
        width: calc(50% - 10px);
    } .teacher-stat {
        width: 100%;
      }
    .img_in_chat{
        width: 200px;
    }
    .modal-kurators{
        z-index: 100;
        right: auto;
        margin-right: 0px;
        margin-top: 20px;
    }
    .btn-teachers{
        display: none;
    }
    .date-tasks{
        font-size: 13px;
    }
    .lesson-in-to-do{
        padding: 16px;
    }
    .description-to-do{
        margin-top: 16px;
        margin-bottom: 16px;
    }
    .lb-prog{
        margin-top: 16px;
    }
    .context-text{
        font-size: 16px;
        align-items: center;
    }
    .homeworks-subjects, .wrap-homeworks{
        margin-top: 20px;
    }
    .homework_bl{
        padding: 16px;
    }
    .name_dop{
        font-size: 16px;
    }
    .btn-back{
        display: none;
    }
    .lesson_{
        padding: 16px;
    }
    .label_lesson{
        font-size: 20px;
    }
    .stats_lesson{
        margin-top: 16px;
        margin-bottom: 16px;
    }
    .my_crs{
        padding: 16px;
    }
    .wrap_my_courses{
        margin-top: 16px;
    }
    .bg-free-course{
        background-repeat: round;
    }
    .wrap-cart{
        flex-direction: column;
    }
    .buy_content{
        padding: 16px;
        width: calc(100% - 32px);
    }
    .btn-go-inp-promo{
        margin-top: 15px;
    }
    .cart-content{
        padding: 16px;
        width: calc(100% - 32px);
        flex-direction: row;
        margin-bottom: 16px;
    }
    .go-to-shop{
        margin-top: -6px;
    }
    .info-author-cart{
        top: 5px;
        left: 5px;
    }
    .type-course-cart{
        font-size: 14px;
    }
    .right-block-cart{
        margin-left: 16px;
    }
    .main-menu {
        display: none;
    }
    .content-main {
        width: calc(100% - 32px);
    }
    .subject_market{
        margin-bottom: 16px;
    }
    .header{
        margin-top: 20px;
    }
    .main-block{
        margin-top: 20px;
    }
    .logo_mob, .logo_new_mob{
        display: flex;
    }
    .header{
        justify-content: space-between;
    }
    .courses{
        margin-top: 20px;
    }
    .freecourses{
        margin-top: 0px;
    }
    .course{
        width: calc(50% - 40px);
    }
    .wrap_my_courses, .wrap_course_lesson{
        margin-top: 16px;
    }
    .btns-homework-inf{
        margin-top: 16px;
    }
    .lbl-homework, .my-answer, .actions_btns_homework{
        margin-top: 16px;
    }
}
@media screen and (max-width: 975px) {
    .left_your_prepods, .right_your_prepods{
        display: none;
    }
    .your_prepods_stats{
        width: 100%;
    }
    .your_prepods_stata_name{
        font-size: 14px;
    }
    .val_every_ball_lnd.gefest{
        font-size: 14px;
    }
    .lend_mob_hrefer_block{
        display: flex;
    }
    .mob_your_prepodp_body{
        height: 500px;
        overflow: hidden;
        position: relative;
        border-radius: 15px;
    }
    .mob_your_prepodp_bottom{
        position: absolute;
        top: 0;
        display: flex;
        align-items: center;
        width: calc(100% - 32px);
        justify-content: space-between;
        margin-top: 440px;
        padding: 16px;
    }
    .mob_your_prepodp_dop{
        background: #fff;
        border-radius: 6px;
        padding: 6px 12px;
        font-weight: 500;
        font-size: 12px;
        text-align: center;
        cursor: pointer;
    }
    .your_prepods_bottom_btn_social{
        width: 30px;
        height: 30px;
    }
    .links_prepod_lend{
        gap: 8px;
    }
    .your_prepods_bottom_btn_social>svg{
        width: 15px !important;
        height: 15px !important;
    }
    .mob_your_prepodp{
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    .mob_your_prepodp_header{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mob_your_prepodp_name{
        font-weight: 600;
        font-size: 28px;
        color: #000;
    }
    .mob_your_prepodp_subject{
        border: 1px solid #000;
        border-radius: 5px;
        padding: 5px 11px;
        font-weight: 500;
        font-size: 10px;
        text-align: center;
        color: #000;
    }
    .mob_your_prepodp_img{
        width: 100%;
        border-radius: 15px;
    }
}
@media screen and (max-width: 850px) {
    .lend_btns_ctm{
        gap: 9px;
        margin-top: 0px;
        flex-direction: column;
        width: 100%;
    }
    .btn_get_free_course_lnd, .btn_order_course_lnd{
        font-weight: 700;
        font-size: 16px;
        text-align: center;
        color: #fff;
        padding: 20px 0px;
        width: 100%;
        min-width: auto;
        max-width: none;
    }
}
@media screen and (max-width: 750px) {
    .lend_prepod_{
        width: 100%;
    }
    #lendshow750{
        display: inline;
    }
    #lenddel750{
        display: none;
    }
    .lend_stats_shows > div{
        width: auto;
    }
    .lend_stats_shows{
        gap: 8px;
    }
    .left_mob_round{
        position: absolute;
        background: white;
        height: 130px;
        width: 130px;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
        left: -15px;
        top: 120px;
        transform: rotate(-35deg);
    }
    .right_mob_round{
        position: absolute;
        background: white;
        height: 140px;
        width: 140px;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        right: -10px;
        top: 155px;
        transform: rotate(35deg);
        z-index: 0;
    }
    .lend_prepod_{
        z-index: 1;
    }
    .lend_main_banner{
        height: 600px;
        max-height: 600px;
        padding: 20px;
        
    }
    .lend_m_b_left{
        justify-content: space-between;
        height: 100%;
        gap: normal;
        transform: none;
    }
    .lend_img_prepod{
        height: 652px;
        top: 0;
        align-items: end;
    }
    .lend_menu_banner > span{
        line-height: normal;
    }
    .lend_menu_banner{
        font-size: 35px;
        gap: 0px;
    }
    .lend_info_prepod{
        width: calc(100% - 60px);
    }
    .lend_img_prepod{
        overflow: hidden;
    }
    .lend_prepod_{
        transform: scale(1.27);
    }
    .lend_img_prepod{
        border-radius: 30px;
    }
    .lend_info_prepod{
        gap: 16px;
    }
    .lend_info_prepod{
        width: calc(100% - 60px);
        padding: 16px;
        border-radius: 16px;
    }
    .lend_stats_shows > div{
        padding: 10px 15px;
        font-size: 16px;
    }
    .lend_info_label{
        font-size: 18px;
    }
}
@media screen and (max-width: 700px) {
    .label-subject{
        font-size: 25px;
    }
    .slider_lend_screens{
        width: calc(100% + 32px);
        transform: translateX(-16px);
    }
    .slider-card p{
        font-size: 8px;
        font-weight: 400;
        margin-bottom: 30px;
        margin-top: 0;
    }
    .slider-card h3{
        font-size: 12px;
    }
    .slider-card {
        width: 200px;
        padding: 16px;
        height: 200px;
        border-radius: 12px;
    }
    .carousel-wrapper {
        height: 400px;
    }
    .your_prepods_stata_val{
        font-size: 30px;
    }
    .pain_block {
        font-size: 16px;
        padding: 18px 32px;
    }
    .image_block_trans>.top_content_chat>span{
        font-size: 17px;
    }
    .lend_problems__line{
        height: 90px;
    }
    .file_hw{
        width: 100%;
    }
    .metchods-auth{
        flex-direction: column;
    }
    .izm_back{
        display: flex;
    }
    .izm_pc{
        display: none;
    }
    .info-pers{
        align-items: center;
    }
    .block_upload_avatar{
        width: 150px;
        height: 150px;
        min-width: 150px;
        min-height: 150px;
        max-width: 150px;
        max-height: 150px;
    }
    .bg-free-course{
        height: 100px;
    }
    .footer-wel{
        transform: translateX(-20px);
        width: 99%;
        border-radius: 0px;
    }
    .footer-wel > div{
        align-items: center;
        gap: 10px;
    }
    .airplane{
        display: none;
    }
    .big-text{
        font-size: 30px;
    }
    .little-text{
        text-align: center;
    }
    .text-about-lending>.btn-auth{
        margin-bottom: 15px;
    }
    .wrap-teachers > div{
        width: 100%;
    }

    .chat_block{
        width: calc(100% - 32px);
        height: calc(100% - 32px);
        border-radius: 0px;
        padding: 16px;
    }
    .history_chat{
        max-height: calc(100% - 175px);
        padding: 16px;
        margin-top: 16px;
        min-height: calc(100% - 175px);
    }
    .error-text{
        font-size: 20px;
    }
    .error-banner{
        width: 400px;
        height: 200px;
        background-size: 100%;
    }
    .data-subj-blank{
        flex-direction: column;
        gap: 16px;
    }
    .block-blank-tasks{
        width: calc(100% - 32px);
        padding: 16px;
    }
    .blank-progress{
        flex-direction: column;
        width: calc(100% - 32px);
        padding: 16px;
        gap: 16px;
        margin-bottom: 80px;
    }
    .page-tasks-train{
        gap: 16px;
    }
    .block-blank-tasks > div{
        padding: 16px;
    }
    .info-pers{
        flex-direction: column;
        gap: 16px;
    }
    .btn-save-prof--inf{
        width: calc(100% - 60px);
        display: flex;
        justify-content: center;
    }
    .lb-pers{
        font-size: 18px;
    }
    .banner{
        background-size: cover;
        background-repeat: no-repeat;
        height: 164px;
    }
    .video-ff{
        height: 300px;
    }
    .block_block{
        font-size: 16px;
    }
    .lesson-stat-time, .lesson-stat-duration{
        font-size: 11px;
    }
    .label_subject_list{
        font-size: 18px;
    }
    .tittle-my-course{
        font-size: 22px;
    }
    .bg-free-course{
        background-repeat: revert;
    }
    .left-bottom-fc{
        font-size: 14px;
    }
    .free-course-block{
        padding: 16px;
    }
    .label-free-course{
        margin-top: 16px;
        margin-bottom: 16px;
    }
    .bottom-free-courses{
        margin-top: 16px;
    }
    .author-free-course{
        top: 20px;
        left: 20px;
    }
    .left-bottom-fc > span{
        font-size: 18px;
    }
    .cart-content{
        flex-direction: column;
        align-items: flex-start;
    }
    .right-block-cart{
        margin-left: 0px;
    }
    .buy_content_head{
        font-size: 20px;
    }
    .def-buy-con{
        font-size: 13px;
    }
    .inf___C{
        display: none;
    }
    .img_in_cart{
        display: none;
    }
    .type-course-cart{
        border-radius: 8px;
        padding: 10px;
        position: relative;
        right: 0px;
        top: 0px;
    }
    .modal-desciption-course-content{
        width: calc(100% - 72px);
        padding: 16px;
    }
    .modal-desciption-course-header{
        font-size: 18px;
    }
    .modal-desciption-course-descr{
        font-size: 13px;
        margin-top: 16px;
    }
    .modal-raspisanie{
        margin-top: 16px;
    }
    .label-rasp{
        font-size: 13px;
    }
    .wrap-work-days{
        margin-top: 16px;
    }
    .day-course{
        font-size: 11px;
        height: 50px;
    }
    .modal-desciption-course-bottom{
        margin-top: 16px;
    }
    .left-course-modal{
        font-size: 13px;
    }
    .mod-pr-course{
        font-size: 18px;
    }
    .stats-subject{
        flex-direction: column;
        width: 240px;
    }
    .count-subject-100_points_students{
        margin-left: 0px;
        font-size: 15px;
        margin-top: 10px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    .count-subject-students{
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    .count-courses-subject{
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    .course{
        width: 100%;
    }
    .svg_arrow_course{
        margin-top: 0px;
    }
    .bottom-my-courses{
        align-items: self-start;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .my_crs{
        height: auto;
    }
    .btn-go-my-course{
        margin-top: 16px;
    }
    .author-free-course {
        top: 5px;
        left: 5px;
        font-size: 12px;
      }
}

@media screen and (max-width: 550px) {
    .lend_mob_row{
        padding: 20px;
        border-radius: 15px;
    }
    .dop_courses_list_block{
        padding: 16px;
        gap: 16px;
    }
    .dop_courses_list{
        gap: 16px;
    }
    .dop_courses_list > span {
        font-size: 14px;
        text-align: center;
      }
      .dop_courses_block {
        width: 275px;
        padding:
    16px;
      }
    .banner_final{
        height: 60px;
    }
    .btn_go_mark{
          border-radius:
        5px;
          padding:
        8px 16px;
          font-size: 13px;
          color: #fff;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap:
        10px;
          position: relative;
          width: fit-content;
          position: absolute;
          bottom: 8px;
          right: 8px;
    }
    .text_cart_vombo{
        font-weight: 600;
        font-size: 14px;
        color: #fff;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 40px;
        left: 7px;
        backdrop-filter: blur(3px);
        border-radius:
      5px;
        padding:
      5px;
        background:
      #42424247;
    }
    .combo_banner_in_cart{
        background-size: 100%;
    }
    .ip_text{
        font-size: 10px;
    }
    .headerTableHW > span,.inputsTableHW > input{
        width: 100%;
    }
    .lend_footer__left_name{
        font-size: 35px;
    }
    .lend_footer__left_el{
        gap: 10px;
        font-size: 17px;
    }
    .mob_your_prepodp_bottom{
        margin-top: 240px;
    }
    .lend_btn_callback_form_btm{
        padding: 20px !important;
    }
    .mob_your_prepodp_body{
        height: 300px;
    }
    .lend_str_icon_m.l_size_84{
        right: 0;
        height: 90px;
        width: 90px;
        top: 20px;
    }
    .lend_str_icon_m.l_size_121{
        right: 80px;
        height: 65px;
        width: 65px;
        align-items: center;
        border-right: 6px solid #c4b9fc;
        top: -30px;
    }
    .lend_str_icon_m.l_size_111{
        right: 102px;
        height: 80px;
        width: 80px;
        border-right: 5px solid #c4b9fc;
        border-bottom: 1px solid #c4b9fc;
        bottom: -50px;
    }
    .lend_str_icon_m.l_size_86{
        right: -15px;
        height: 80px;
        width: 80px;
        bottom: -15px;
        border-bottom: 1px solid #c4b9fc;
    }
    .lend_str_icon_m.l_size_75{
        height: 70px;
        width: 70px;
        border-right: 5px solid #c4b9fc;
        top: -35px;
        right: 50px;
    }
    .lend_str_icon_m.l_size_105{
        bottom: -60px;
        right: 85px;
    }
    .l_r_val{
        font-size: 50px;
    }

    .lend_mob_row{
        gap: 5px;
    }

    .lend_str_icon_m.l_size_110{
        right: -20px;
        height: 75px;
        width: 75px;
        font-size: 25px;
        top: 40px;
        border-right: 8px solid #c4b9fc;
    }

    .lend_str_icon_m.l_size_85{
        left: 90px;
        height: 60px;
        top: 55px;
        width: 60px;
        border-right: 4px solid #c4b9fc;
    }

    .lend_str_icon_m.l_size_85 > svg{
        padding: 6px;
    }

    .l_r_name{
        font-size: 15px;
        z-index: 1;
        backdrop-filter: blur(3px);
        border-radius: 10px;
    }
    .cont_t_hid{
        width: 110px;
    }


    .check_lesson_btn, .go_lesson_homework_btn{
        font-size: 14px;
    }

    .big-text {
        font-size: 25px;
        text-align: center;
    }
    .little-text{
        font-size: 18px;
    }
    .star_1{
        width: 50px;
        position: absolute;
        transform: translate(-20px,-15px);
    }
    .block_teachers > span{
        font-size: 20px;
    }
    .btn-go-buy-teacher-kurs{
        font-size: 16px;
    }
    .freeCourseBlock > span{
        font-size: 18px;
    }
    .footer-wel{
        flex-direction: column;
    }
    .footer-wel > div{
        width: 100%;
        gap: 15px;
    }
    .callMe{
        margin-top: 15px;
    }
    .getFreeCourse{
        font-size: 16px;
        padding: 10px 10px;
    }
    .stats-of-blur {
        transform: translateY(0px);
        bottom: 0;
    }
      .stats-of-blur > a {
        font-size: 11px;
      }
    .star_2{
        width: 50px;
        position: absolute;
        bottom: 0;
        right: 0;
        transform: translate(20px,15px);
    }
    .homework_bl > span{
        font-size: 12px;
    }
    .h_subj_{
        min-width: 130px;
        display: flex;
        justify-content: center;
    }
    .bootom-info-subject{
        margin-top: 30px;
    }
    .refuseHomeWork, .finishHomeWork{
        font-size: 14px;
    }
    .lab-homeles{
        font-size: 16px;
    }
    .lbl-homework{
        font-size: 16px;
    }
    .about-task{
        font-size: 13px;
    }
    .video-ff{
        height: 240px;
    }
    .lbl-les{
        font-size: 15px;
    }
    .descr-video{
        margin-top: 20px;
        flex-direction: column;
    }
    .flex-d > span{
        font-size: 11px;
        margin-top: 10px;
    }
    .lesson-work{
        font-size: 13px;
    }
    .btn-video-homework{
        margin-top: 20px;
    }

    .tittle-my-course{
        font-size: 20px;
    }
    .subject_market{
        background-position: bottom;
        background-size: cover;
        height: auto;
    }
    .fl-modal{
        width: calc(100% - 42px);
    }
    .label-subject{
        font-size: 22px;
    }
}

@media screen and (max-width: 450px) {
    .lend_btn_lesson_first, .lend_btn_auth{
        padding: 10px 16px;
        font-size: 14px;
    }
    .banner_final {
        height: 50px;
      }
    .lend_logo_t_{
        margin-top: 10px;
        font-size: 40px;
    }
    .lend_main_banner{
        padding: 16px;
    }
    .lend_menu_banner{
        font-size: 28px;
    }
    .lend_main_banner{
        height: 550px;
        max-height: 550px;
        min-height: auto;
    }
    .lend_info_prepod{
        width: calc(100% - 32px);
    }
    .lend_stats_shows > div{
        font-size: 14px;
    }
    .lend_img_prepod{
        height: 582px;
    }
    img[src="/lending/masha.webp"]{
        margin-bottom: 65px;
    }

    .lend_prepod_{
        transform: scale(1.5);
        margin-bottom: 15px;
    }


    .error-banner{
        width: 300px;
        height: 150px;
        background-size: 100%;
    }
    /* .auth-tg, .auth-vk{
        padding: 10px;
    } */
    .block-hist-hw{
        gap: 16px;
        padding: 8px;
        padding-top: 8px;
        width: calc(100% + 16px);
        border-radius: 16px;
        transform: translateX(-16px);
        padding-top: 16px;
        align-items: center;
    }
}

.lbl-homework__, .bank___, .actions_btns_homework__{
    margin-top: 0px;
    margin-bottom: 0px;
}
.task__hw{
    gap: 0px;
}
.about_bank{
    margin-top: 0px;
    white-space: preserve-breaks;
}
.lb-prog_{
    margin-top: 3px;
}