.main_seminars_cl {

    width: 100vw;
    height: auto;

    padding-top: 15vh;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 20vh;

}

@media (max-width: 700px) {
    .main_seminars_cl {
        padding-left: 2.5vw;
        padding-right: 2.5vw;
    }
}

/* =============== ФАЙЛОВАЯ СИСТЕМА =============== */

.seminar_file_system_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.seminar_file_system_cl {
    font-size: 2vh;
    color: var(--gray_text_color);
    gap: 0.5vw;
}

/* =============== ТИТУЛНЫЙ ТЕКСТ =============== */

.seminar_title_text_cl {
    width: calc(100vw - 20vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5vh;
}

.seminar_title_text_cl>span {
    font-size: 6vh;
    font-weight: 700;
    color: white;
    text-align: center;
    text-shadow: 0 0 2px white, 0 0 4px white;
}

@media (max-width: 700px) {
    .seminar_title_text_cl>span {
        width: 100%;
        text-align: center;
        font-size: 4vh;
        margin-top: 5vh;
    }

    .seminar_title_text_cl {
        width: 100%;
        margin-bottom: 0;
    }
}

.cou_anim_1_cl>svg {
    position: absolute;
    left: 10vw;
    width: 7vh;
    height: 7vh;
    color: #554b19;
    transform: rotateZ(0deg);
    animation: cou_anim_1 5s infinite ease-in-out;
}

@keyframes cou_anim_1 {
    0% {
        transform: rotateZ(0deg);
    }

    50% {
        transform: rotateZ(180deg);
    }

    100% {
        transform: rotateZ(0deg);
    }
}

.cou_anim_2_cl>svg {
    position: absolute;
    right: 47vw;
    width: 6vh;
    height: 6vh;
    color: #4169e1;
    transform: translateY(5vh);
    animation: cou_anim_2 3s infinite ease-in-out;
}

@keyframes cou_anim_2 {
    0% {
        transform: translateY(5vh);
    }

    50% {
        transform: translateY(7vh);
    }

    100% {
        transform: translateY(5vh);
    }
}

.cou_anim_3_cl>svg {
    position: absolute;
    right: 10vw;
    width: 7vh;
    height: 7vh;
    color: #2a418e;
    transform: rotateZ(0deg);
    animation: cou_anim_3 5s infinite ease-in-out;
}

@keyframes cou_anim_3 {
    0% {
        transform: rotateZ(0deg);
    }

    50% {
        transform: rotateZ(-180deg);
    }

    100% {
        transform: rotateZ(0deg);
    }
}

/* =============== ПАНЕЛЬ УПРАВЛЕНИЯ =============== */

.seminar_dashboard_cl {
    width: 100%;
    height: 10vh;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.tab_button_seminar_cl {
    width: 48%;
    height: 100%;
    border-radius: 1vw;
    background: linear-gradient(90deg, var(--accent), blueviolet);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    font-size: 3vh;
    font-weight: bold;
    color: white;
    transition: 300ms all;
}

.tab_button_seminar_cl:hover {
    cursor: pointer;
    filter: brightness(150%);
    box-shadow: 4px 4px 8px blueviolet;
}

.no_tab_button_seminar_cl {
    width: 48%;
    height: 100%;
    border-radius: 1vw;
    background: var(--secondary);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    font-size: 3vh;
    font-weight: bold;
    color: white;
    transition: 300ms all;
}

.no_tab_button_seminar_cl:hover {
    cursor: pointer;
    filter: brightness(150%);
    box-shadow: 4px 4px 8px blueviolet;
}

/* =============== КАТАЛОГ =============== */


/* =============== ОТЗЫВЫ =============== */



/* =============== ПОДРОБНОЕ ОПИСАНИЕ =============== */

#detailed_course_description_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding-top: 15vh;
    padding-bottom: 5vh;
    padding-left: 12.5vw;
    padding-right: 12.5vw;
    height: 100vh;
    background-color: var(--primary);
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: scroll;
    display: none;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: 500ms all;
}

/* === информационная зона === */

.block_course_desc_block_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

/* === инф.блок №1 === */

.block_course_desc_block_cl>div:nth-child(1) {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 4vh;
}

.what_do_you_think_course_cl {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2vh;
}

.what_do_you_think_course_cl>span {
    font-size: 3.25vh;
    font-weight: bold;
    color: white;
}

.what_do_you_think_course_cl>ul>li {
    margin-left: 1vw;
    font-size: 2.5vh;
    color: var(--gray_text_color);
}

.program_course_cl {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2vh;
}

.program_course_cl>span {
    font-size: 3.25vh;
    font-weight: bold;
    color: white;
}

.program_course_cl>div {
    width: 100%;
}

.program_course_cl>div>span {
    font-size: 3vh;
    font-weight: bold;
    color: var(--accent);
}

.program_course_cl>div>ul>li {
    margin-left: 1vw;
    font-size: 2.5vh;
    color: var(--gray_text_color);
}

/* === инф.блок №2 === */

.block_course_desc_block_cl>div:nth-child(2) {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 4vh;
}

.block_course_desc_block_cl>div:nth-child(2)>section {
    width: 100%;
    height: auto;
    border-radius: 1vw;
    padding: 2vw;
    background-color: var(--secondary);
}

/* === Стоимость === */

.sub_course_desc_value_cl {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0.75vh;
}

.sub_course_desc_value_cl>span:nth-child(1) {
    font-size: 3vh;
    font-weight: bold;
    color: white;
}

.sub_course_desc_value_cl>span:nth-child(2) {
    font-size: 3vh;
    font-weight: bold;
    color: var(--accent);
}

.sub_course_desc_value_cl>span:nth-child(3) {
    margin-top: 1vh;
    font-size: 3vh;
    font-weight: bold;
    color: white;
}

.sub_course_desc_value_cl>span:nth-child(4) {
    font-size: 2.5vh;
    color: white;
}

.sub_course_desc_value_cl>div:nth-child(5) {
    margin-top: 2vh;
    width: 100%;
    height: 6vh;
    border-radius: 0.5vw;
    background-color: var(--accent);
    font-size: 2.5vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms all;
}

.sub_course_desc_value_cl>div:nth-child(5):hover {
    width: 105%;
    height: 6.5vh;
    cursor: pointer;
    transform: translateX(-2.5%);
}

/* === кому подходит? === */

.sub_course_whom_suits_cl {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0.75vh;
}

.sub_course_whom_suits_cl>span {
    font-size: 3vh;
    color: white;
}

.sub_course_whom_suits_cl>ul>li {
    margin-left: 1vw;
    font-size: 2.25vh;
    color: var(--gray_text_color);
    margin-bottom: 1.5vh;
}

/* === инструктор === */

.sub_course_instructor_cl {
    display: flex;
    align-items: start;
    gap: 1vw;
}

.sub_course_instructor_cl>div {
    width: 8vh;
    height: 8vh;
    border-radius: 50%;
    border: 2px solid blueviolet;
    background-image: url(../static/specialists/specialist_1.png);
    background-size: cover;
}

.sub_course_instructor_cl>section {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.sub_course_instructor_cl>section>span:nth-child(1) {
    font-size: 2.5vh;
    color: var(--accent);
}

.sub_course_instructor_cl>section>span:nth-child(2) {
    color: var(--accent);
    font-size: 2vh;
    color: white;
}

@media (max-width: 1000px) {
    #detailed_course_description_id {
        padding-left: 2.5vw;
        padding-right: 2.5vw;
    }
}

@media (max-width: 800px) {
    .block_course_desc_block_cl {
        flex-direction: column;
        align-items: center;
        gap: 4vh;
    }

    .block_course_desc_block_cl>div:nth-child(1) {
        width: 90%;
    }

    .block_course_desc_block_cl>div:nth-child(2) {
        width: 95%;
    }

    .block_course_desc_block_cl>div:nth-child(2)>section {
        border-radius: 2vw;
        padding: 5vw;
    }
}

#seminars_renderer_rest_id,
#seminars_renderer_id {
    width: 100%;
}

/* --- смотреть далее --- */

#further_thanks_id, #further_texts_id, #further_video_id {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    padding-top: 25px;
}

#further_thanks_id > div, #further_texts_id > div, #further_video_id > div {
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border: 2px dashed gray;
    border-radius: 10px;
    font-size: 3vh;
    color: gray;
    transition: 300ms all;
}

#further_thanks_id > div:hover, #further_texts_id > div:hover, #further_video_id > div:hover {
    cursor: pointer;
    border-color: var(--accent);
    color: var(--accent);
}