

/* Start:/local/components/first-top/new.template/templates/.default/style.css?177495721437403*/
/* =========================================
   СОДЕРЖАНИЕ:
   0. СБРОС БАЗОВЫХ СТИЛЕЙ
   1. Базовые стили и переменные
   2. Шапка (header) и навигация
   3. Основной блок курса (ownd-course-top)
   4. Панель с информацией (ownd-course-panel)
   5. Блок "О курсе"
   6. Предварительные требования
   7. Блок "Кому будет полезен"
   8. Преимущества
   9. Программа курса (аккордеон)
   10. Документы (bpla-document)
   11. Блок Заявка на ближайшуб дату
   12. Как вы будете учиться
   13. Формы и секция оффера
   14. Попапы
   15. Адаптив (медиа-запросы)
   ========================================= */

/* -----------------------------------------
   0. СБРОС БАЗОВЫХ СТИЛЕЙ
   ----------------------------------------- */
/* ==================== RESET STYLES ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

/* 2. HTML5 display-role reset */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

/* 3. Типографика */
body {
    font-family: sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
}

/* 4. Списки */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 5. Ссылки */
a {
    text-decoration: none;
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* 6. Медиаэлементы */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

img {
    vertical-align: top;
}

/* 7. Формы и интерактивные элементы */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background-color: transparent;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* 8. Таблицы */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 9. Прочее */
address {
    font-style: normal;
}

/* 10. Убираем стандартные стили для диалоговых окон */
dialog {
    padding: 0;
    border: none;
    background: none;
}

/* -----------------------------------------
   1. БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ
   ----------------------------------------- */
:root {
    --color-primary: #7AD10A;
    --color-primary-hover: #6AC100;
    --color-primary-dark: #5fa308;
    --color-text-dark: #231F20;
    --color-text-light: #FFFFFF;
    --color-text-gray: #3E3D3D;
    --color-bg-light: #F3F4F6;
    --color-bg-white: #FFFFFF;
    --color-border: rgba(35, 31, 32, 0.2);
    --shadow-default: 0px 4px 36px rgba(0, 0, 0, 0.09);
    --border-radius-default: 24px;
    --transition-default: all 0.3s ease;
}


body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'OpenSans-ExtraBold';
    line-height: 123%;
    text-transform: none;
}

h2, h3, h4, h5, h6 {
    font-family: 'OpenSans-Semibold';
    line-height: 150%;
    text-transform: none;
}

p {
    font-family: 'OpenSans-Regular';
    line-height: 150%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.section-wrapper {
    padding: 65px 0;
}

.header-title {
	font-size: 50px
}

.section-title {
	text-align: center;
    font-size: 50px;
	color: #202020;
	margin-bottom: 74px;
}


/* Кнопки */
.primary-btn {
	display: block;
    max-width: 425px;
    width: 100%;
	text-align: center;
	background-color: #7ed321;
	color: white;
	padding: 12px 74px;
	border: none;
	border-radius: 57px;
	font-size: 20px;
	margin-bottom: 12px;
	cursor: pointer;
}

.search-panel {
	margin-top: 20px;
}

/* -----------------------------------------
   2. ШАПКА (HEADER) И НАВИГАЦИЯ
   ----------------------------------------- */
.screen-menu-card-element.ownd-course-header {
    min-height: 690px;
    padding: 51px 0 140px !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.ownd-course-breadcrumb {
    margin-top: 32px;
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}

.ownd-course-breadcrumb a {
    font-size: 14px;
    color: var(--color-text-light);
    margin-right: 8px;
    text-decoration: none;
    transition: var(--transition-default);
}

.ownd-course-breadcrumb a:hover {
    color: #8CD50B;
}

.ownd-course-breadcrumb a:first-child {
    background: url('/local/templates/infosystems/img/breadcrumb_home.svg') 0 50% no-repeat;
    padding-left: 28px;
    background-size: 16px;
}

.ownd-course-breadcrumb a:last-child {
    margin-right: 0;
}

.ownd-course-breadcrumb span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('/local/templates/infosystems/img/breadcrumb_arrow.svg') 50% 50% no-repeat;
    margin-right: 8px;
    vertical-align: top;
    background-size: contain;
}

.ownd-course-share {
    width: 18px;
    height: 18px;
    background: url('/local/templates/infosystems/img/course_share.svg') 50% 50% no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    background-size: contain;
}

/* -----------------------------------------
   3. ОСНОВНОЙ БЛОК КУРСА (ownd-course-top)
   ----------------------------------------- */
.ownd-course-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
	padding-top: 42px;
}

.ownd-course-top-offer {
    max-width: 678px;
}

.ownd-course-top-offer__title {
    font-weight: 700;
    font-size: 46px;
    line-height: 123%;
    color: var(--color-text-light);
}

.ownd-course-top-offer__text {
    font-size: 18px;
    line-height: 150%;
    color: var(--color-text-light);
    margin-top: 20px;
}

.regform {
    background-color: white;
    padding: 25px;
    border-radius: 24px;
    flex-shrink: 0;
    margin-left: 30px;
    box-shadow: var(--shadow-default);
}

.regform__title {
    color: black;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.regform form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.regform form input {
    background-color: white;
    border: 1px solid #D2D5DA;
    padding: 16px;
    border-radius: 32px;
    width: 100%;
    font-size: 16px;
}

.form-submit {
    background-color: var(--color-primary) !important;
    color: white !important;
    border: 0 !important;
    margin: 12px 0;
    cursor: pointer;
    transition: var(--transition-default);
    font-weight: 600;
}

.form-submit:hover {
    background-color: var(--color-primary-hover) !important;
}

.form-checkbox {
    display: flex;
    gap: 15px;
    align-items: center;
}

.privacy-policy__checkbox {
    width: 20px !important;
}

.form-checkbox label {
    font-size: 12px !important;
}

.form-checkbox a {
    color: var(--color-primary);
    text-decoration: none;
}

/* -----------------------------------------
   4. ПАНЕЛЬ С ИНФОРМАЦИЕЙ (ownd-course-panel)
   ----------------------------------------- */
#ownd-course-panel {
    z-index: 600;
    position: relative;
    top: -100px;
}

#ownd-course-panel .container {
    background: #fff;
    box-shadow: var(--shadow-default);
    border-radius: 12px;
    padding: 32px 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#ownd-course-panel .ownd-course-panel-item {
    padding: 44px 0 0 24px;
    position: relative;
    min-width: 120px;
}

#ownd-course-panel .ownd-course-panel-item:first-child {
    padding-left: 0;
}

#ownd-course-panel .ownd-course-panel-item:last-child {
    padding-right: 0;
}

#ownd-course-panel .ownd-course-panel-item + .ownd-course-panel-item {
    border-left: 1px solid rgba(217, 217, 217, 0.5);
}

#ownd-course-panel .ownd-course-panel-item-name {
    font-family: 'OpenSans-Semibold', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin-bottom: 6px;
}

#ownd-course-panel .ownd-course-panel-item-text {
    font-family: 'OpenSans-Regular', sans-serif;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-text-gray);
    position: relative;
}

#ownd-course-panel .ownd-course-panel-item-text a {
    display: block;
    font-size: 14px;
    line-height: 33px;
    color: #1F2A37;
    width: 201px;
    height: 37px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    text-align: center;
    margin-top: 12px;
    padding-right: 24px;
    background: url('/local/templates/infosystems/img/course_date_arrow.svg') calc(100% - 46px) 50% no-repeat;
    transition: var(--transition-default);
    cursor: pointer;
}

#ownd-course-panel .ownd-course-panel-item-text a:hover {
    background-color: #f5f5f5;
}

/* Стили для меню выбора дат */
#ownd-course-panel .ownd-course-panel-dates {
    position: absolute;
    top: 73px;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.09);
    border-radius: 8px;
    padding: 16px;
    display: none;
    z-index: 1000;
    min-width: 200px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ownd-course-panel-dates-list {
    font-size: 14px;
    line-height: 14px;
    color: #111928;
    white-space: nowrap;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.ownd-course-panel-dates-list:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding-left: 24px;
    box-shadow: 0 4px 12px rgba(122, 209, 10, 0.3);
}

.ownd-course-panel-dates-list:hover::before {
    content: '→';
    position: absolute;
    left: 8px;
    opacity: 1;
    color: white;
}

.ownd-course-panel-dates-list::before {
    content: '';
    position: absolute;
    left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ownd-course-panel-dates-list + .ownd-course-panel-dates-list {
    margin-top: 8px;
}

/* Иконки для пунктов панели */
#ownd-course-panel .ownd-course-panel-item:nth-child(1) {
    width: 208px;
    background: url('/local/templates/infosystems/img/course_panel_1.svg') 0 0 no-repeat;
}

#ownd-course-panel .ownd-course-panel-item:nth-child(2) {
    width: 124px;
    background: url('/local/templates/infosystems/img/course_panel_2.svg') 24px 0 no-repeat;
}

#ownd-course-panel .ownd-course-panel-item:nth-child(3) {
    width: 175px;
    background: url('/local/templates/infosystems/img/course_panel_3.svg') 24px 0 no-repeat;
}

#ownd-course-panel .ownd-course-panel-item:nth-child(4) {
    width: 171px;
    background: url('/local/templates/infosystems/img/course_panel_4.svg') 24px 0 no-repeat;
}

#ownd-course-panel .ownd-course-panel-item:nth-child(5) {
    width: 175px;
    background: url('/local/templates/infosystems/img/course_panel_5.svg') 24px 0 no-repeat;
}

/* -----------------------------------------
   6. БЛОК "О КУРСЕ"
   ----------------------------------------- */
#about-course {
    
}

.about-course-info {
    display: flex;
    justify-content: space-between;
}

.about-course-info-preview {
	font-family: 'OpenSans-Regular';
    font-size: 18px;
    max-width: 632px;
    min-width: 402px;
	width: 100%;
	margin-right: 32px;
}

.about-course-info-preview__text {
    font-size: 20px;

}

.about-course-info__picture {
    max-width: 632px;
	min-width: 400px;
	width: 100%;
    height: 425px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* -----------------------------------------
   6. БЛОК "Предварительные требования"
   ----------------------------------------- */
.section-requirements {
    background-color: #F9FAFB;
    padding: 65px 0;
}
.requirements__title {
    text-align: center;
    font-size: 50px;
    color: #202020;
    margin-bottom: 74px;
}
.requirements-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.requirements-list__item {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 280px;
	max-width: 350px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.requirements-list__item:not(:last-child) {
    margin-bottom: 15px;
}
.requirements-list__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.requirements-list__icon {
    width: 53px;
    height: 53px;
    margin-right: 20px;
    flex-shrink: 0;
}
.requirements-list__text {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* -----------------------------------------
   7. БЛОК "Кому будет полезен курс"
   ----------------------------------------- */
.target-audience-wrapper {
	display: block;
}

.target-audience-list {
	justify-content: space-around;
	display: flex;
}

.target-audience-list__item {
	align-items: center;
	background-color: white;
	margin-bottom: 15px;
}

.target-audience-list__icon {
	width: 79px;
	height: 79px;
	margin-top: 6px;
	margin-right: 23px;
}

.target-audience-list__text {
	margin: 0;
	font-size: 28px;
	max-width: 402px;
	word-wrap: break-word;
}

/* -----------------------------------------
   8. ПРЕИМУЩЕСТВА
   ----------------------------------------- */
#course-advantages {
    background-color: #F3F4F6;
}

.course-advantages-list {
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.course-advantages-list__item {
    padding-left: 64px;
    width: 511px !important;
    margin-bottom: 41px;
    background-size: 47px 47px !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
}

.course-advantages-list__text {
    font-size: 21px;
}

/* -----------------------------------------
   9. ПРОГРАММА КУРСА (АККОРДЕОН)
   ----------------------------------------- */
.program-container {
    max-width: 1200px;
    margin: 100px auto 30px;
    padding: 20px;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    transition: var(--transition-default);
}

.accordion-header {
    color: black;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header__title {
    font-size: 22px;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-arrow {
    width: 30px;
    height: 30px;
    background-color: var(--color-primary);
    border-radius: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    overflow: hidden;
    display: none;
    padding: 20px 25px;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-list {
    margin: 0;
    padding-left: 20px;
}

.accordion-list li {
	font-family: 'OpenSans-Regular';
	font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
}

.accordion-list li:before {
    content: "•";
    color: var(--color-primary);
    font-size: 20px;
    position: absolute;
    left: -15px;
    top: -2px;
}

.final-attestation {
    margin-top: 30px;
    padding: 10px 30px;
    background: white;
    color: #313131;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0px 5px 16px rgba(8, 15, 52, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.final-attestation img {
    max-width: 50px;
}

/* -----------------------------------------
   10. ДОКУМЕНТЫ (bpla-document)
   ----------------------------------------- */
.bpla-document {
    display: flex;
    margin: 100px auto;
    background: rgba(236, 250, 231, 1);
    max-width: 1200px;
    padding: 30px;
    justify-content: space-between;
    border-radius: 30px;
}

.document-info {
    flex: 1;
    padding-right: 30px;
}

.document-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.single-document {
	font-size: 20px;
}

.document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-list li {
    padding: 12px 18px;
    margin-bottom: 10px;
    background-color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-default);
    border: 2px solid transparent;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.document-list li:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 209, 10, 0.3);
}

.document-list li.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary-dark);
    box-shadow: 0 4px 12px rgba(122, 209, 10, 0.4);
}

.document-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 24px;
    padding: 20px;
    max-width: 350px;
}

.document-image {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 12px;
}

/* -----------------------------------------
   11. БЛОК ЗАЯВКА НА БЛИЖАЙШУЮ ДАТУ
   ----------------------------------------- */
#application-form {
    background-color: #ECFAE7;
    padding: 68px 0;
}

.course-left {
	flex: 1;
	min-width: 480px;
	max-width: 600px;
}

.ownd-course-top-right {
	background-color: white;
	padding: 25px;
	margin: 0 auto;
	border-radius: 24px;
}

.course-bpla {
	width: 100%;
	background: rgba(236, 250, 231, 1);
	padding: 50px;
	margin-top: 175px;
	margin-bottom: 150px;
}

.course-info-container {
	display: flex;
	background: #ffffff;
	padding: 45px 5px 68px 68px;
	border-radius: 25px;
	gap: 24px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.application-form-price__item {
    display: block;
    font-family: 'OpenSans-Semibold';
    font-size: 44px;
    margin-bottom: 30px;
}

.secondary-btn {
	background-color: white;
	color: #3c3c3c;
	border: 2px solid #7ed321;
	border-radius: 999px;
	padding: 12px 24px;
	font-size: 16px;
	margin-top: 25px;
	cursor: pointer;
}

.divider-course {
	width: 1px;
	background-color: #e2e2e2;
	height: auto;
	align-self: stretch;
}

.course-right {
	flex: 2;
	min-width: 280px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
}

.feature-item img {
	
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	color: #3c3c3c;
	padding: 19px 0;
}

/* -----------------------------------------
   12. КАК ВЫ БУДЕТЕ УЧИТЬСЯ
   ----------------------------------------- */
#order-training {
    background: var(--color-bg-light);
    padding: 142px 0;
}

.order-training-list {
    margin-top: 66px;
    display: flex;
    justify-content: space-between;
    background: url('/local/templates/infosystems/img/course_how_line_1.svg?1') 219px 110px no-repeat, 
                url('/local/templates/infosystems/img/course_how_line_2.svg?1') 654px 110px no-repeat;
}

.order-training-list__item {
    width: 261px;
    padding-top: 228px;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
}

.order-training-list__item:nth-child(1) {
    background: url('/local/templates/infosystems/img/course_how_1.png') 0 0 no-repeat;
}

.order-training-list__item:nth-child(2) {
    background: url('/local/templates/infosystems/img/course_how_2.png') 0 0 no-repeat;
}

.order-training-list__item:nth-child(3) {
    background: url('/local/templates/infosystems/img/course_how_3.png?1') 0 0 no-repeat;
}

.order-training-list__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.8);
}

.order-training-list__text {
    font-size: 16px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 8px;
}

/* -----------------------------------------
   13. ФОРМЫ И СЕКЦИЯ ОФФЕРА
   ----------------------------------------- */
.offer-section {
    background: linear-gradient(to right, #07364c, #37b519);
    background-image: url('/local/components/first-top/new.template/header_bg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.offer-section p {
    font-size: 24px;
    margin-bottom: 45px;
}

.offer-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 20px;
	color: black;
}

.offer-form input {
	background-color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 40px;
    min-width: 220px;
    font-size: 14px;
    outline: none;
}

.offer-form button {
    padding: 14px 30px;
    background-color: white;
    color: #1a1a1a;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-default);
}

.offer-form button:hover {
    background-color: #f0f0f0;
}

.offer-checkbox {
    margin-top: 10px;
    font-size: 12px;
    color: #1E1E1E;
}

.offer-checkbox label {
    display: block;
    margin: 5px 0;
}

.offer-checkbox input {
    vertical-align: middle;
    margin-right: 6px;
}

/* -----------------------------------------
   14. ПОПАПЫ
   ----------------------------------------- */
/* Стили для попапа формы регистрации */
.custom-course-popup {
    border-radius: 24px !important;
    overflow: hidden !important;
    max-width: 500px !important;
    width: 90% !important;
}

.custom-course-popup .popup-window-content {
    padding: 0 !important;
}

/* Стили формы в попапе */
#popup-course-form {
    background: white;
    border-radius: 24px;
    padding: 40px 35px 10px 35px;
    box-sizing: border-box;
}

#popup-course-form .regform__title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: black;
    margin-bottom: 25px;
}

#popup-course-form .popup-subtitle {
    font-size: 14px;
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

#popup-course-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#popup-course-form form input {
    background-color: white;
    border: 1px solid #D2D5DA;
    padding: 16px 18px;
    border-radius: 32px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
}

#popup-course-form form input:focus {
    border-color: #7AD10A;
}

#popup-course-form .form-submit {
    background-color: #7AD10A;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 12px 0;
}

#popup-course-form .form-submit:hover {
    background-color: #6AC100;
}

#popup-course-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

#popup-course-form .form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

#popup-course-form .form-checkbox label {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

#popup-course-form .form-checkbox a {
    color: #7AD10A;
    text-decoration: none;
}

#popup-course-form .form-checkbox a:hover {
    text-decoration: underline;
}


.popup-kp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-kp-content {
    background: #fff;
    padding: 20px 31px;
    border-radius: 16px;
    max-width: 650px;
    width: 90%;
    margin-top: 80px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: fadeIn 0.3s ease-in forwards;
}

.popup-success {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 526px;
    max-width: 90%;
    padding: 48px;
    gap: 32px;
    border-radius: 20px;
    border: 1px solid #E0E0E0;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(122, 209, 10, 0.39), 0px 0px 6px 2px rgba(122, 209, 10, 0.50);
    text-align: center;
}

.close-kp-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Попап уведомлений */
.notification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.notification-popup-content {
    max-width: 526px;
    width: 90%;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: 0px 0px 4px 0px rgba(122, 209, 10, 0.39), 
                0px 0px 6px 2px rgba(122, 209, 10, 0.50);
    animation: slideIn 0.3s ease;
}

.notification-popup-icon {
    width: 130px;
    height: 140px;
    margin: 0 auto 32px;
    background-image: url('/local/components/first-top/new.template/pop-up-icon.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.notification-popup-icon img {
    width: 130px;
    height: 140px;
    margin: 0 auto;
    display: block;
}

.notification-popup-title {
    font-size: 24px;
    font-weight: bold;
    color: #030F0F;
    margin-bottom: 32px;
    text-align: center;
}

.notification-popup-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.5;
}

.notification-popup-button {
    background-color: #7AD10A;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-bottom: 0;
}

.notification-popup-button:hover {
    background-color: #00c070;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* -----------------------------------------
   15. АДАПТИВ (МЕДИА-ЗАПРОСЫ)
   ----------------------------------------- */
/* Планшеты 992px */
@media (max-width: 992px) {
	.ownd-course-top {
        flex-wrap: wrap;
		justify-content: center;
    }

	.ownd-course-top-offer,
    .ownd-course-about-text,
    .ownd-course-about-picture {
        width: 100%;
    }
    
    .ownd-course-top-regform {
        width: 100%;
        max-width: 445px;
        margin: 30px auto 0;
    }
    
    #ownd-course-panel .container {
        padding: 32px;
        height: auto;
    }
    
    #ownd-course-panel .ownd-course-panel-item {
        padding: 44px 0 0 15px;
    }
    
    #ownd-course-panel .ownd-course-panel-item:nth-child(1) { width: 206px; }
    #ownd-course-panel .ownd-course-panel-item:nth-child(2) { width: 110px; background-position-x: 15px; }
    #ownd-course-panel .ownd-course-panel-item:nth-child(3) { width: 133px; background-position-x: 15px; }
    #ownd-course-panel .ownd-course-panel-item:nth-child(4) { width: 153px; background-position-x: 15px; }
    #ownd-course-panel .ownd-course-panel-item:nth-child(5) { width: 150px; }
    
    #ownd-course-advantages .ownd-course-advantage {
        width: 100% !important;
    }

	.about-course-info {
    	flex-wrap: wrap;
    	justify-content: center;
	}

	.about-course-info-preview {
		margin: 0 0 20px 0;
    	padding: 0 20px;
	}

	.target-audience-list {
		flex-wrap: wrap;
	}

    .order-training-list {
        flex-wrap: wrap;
        background: none !important;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

	.order-training-list__item {
        width: 100%;
        min-height: 200px;
        padding-top: 0;
        padding-left: 220px;
        min-height: 200px;
        margin-bottom: 30px;
    }

	.target-audience-list__icon {
		width: 53px;
		height: 53px;
	}
    
    .ownd-course-how-item {
        width: 100%;
        padding: 228px 0 0;
        margin-bottom: 40px;
    }
    
    #ownd-offer-form .ownd-offer-form-fields {
        flex-direction: column;
        width: 300px;
        margin: auto;
    }
    
    #ownd-offer-form .ownd-offer-form-fields input {
        width: 100%;
    }
    
    #ownd-offer-form .ownd-offer-form-fields input + input {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* Маленькие планшеты 768px */
@media (max-width: 768px) {
    .ownd-course-top-offer__title {
        font-size: 36px;
    }

	.section-title {
        font-size: 36px;
    }

    #ownd-course-panel .container .ownd-course-panel-item {
        display: flex;
    	flex-direction: column;
    	align-items: center;
    	text-align: center;
    	margin: 0 auto 40px auto !important;
    	padding: 45px 0 0 0 !important;
    	background-position: center top !important;
        width: 100% !important;
    }
    
    #ownd-course-panel .ownd-course-panel-item + .ownd-course-panel-item {
        margin-top: 30px;
        border-left: none;
    }

	.ownd-course-panel-item__price {
		font-size: 18px;
    	color: #3E3D3D;
	}

    .requirements-list__item {
        flex: 0 0 calc(50% - 30px);
    }
    .requirements-list__text {
        font-size: 16px;
    }
    
    .target-audience-wrapper {
        flex-direction: column;
    }


	.target-audience-list {
		justify-content: start;
		padding: 0px 45px;
	}
	.target-audience-list__icon {
		width: 53px;
	}

	.target-audience-list__text {
		font-size: 19px;
	}

	.course-advantages-list__text {
		font-size: 15px;
	}

    .course-info-container {
        flex-direction: column;
		align-items: stretch;
		padding: 30px 20px;
    }

	.course-advantages-list {
		justify-content: center;
	}
    
    .course-left {
        min-width: auto;
    }
.course-left .ownd-course-panel-item {
    padding-left: 40px !important;
    background-size: 32px !important;
    background-position: 0 5px !important;
}
    
.course-left .ownd-course-panel-item .other-dates-link {
    width: 100% !important;
    max-width: 280px;
    background-position: calc(100% - 20px) 50% !important;
    padding-right: 30px !important;
    font-size: 13px !important;
}
    
.course-left .ownd-course-panel-dates {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
    width: 90% !important;
    max-width: 300px !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
}
    
.course-left .ownd-course-panel-dates-list {
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
}

.feature-item {
	padding: 0;
}

	.about-course-info-preview__text {
		font-size: 18px;
	}

	.block-banner img {
		margin: 0 auto !important;
	}

	.custom-course-popup {
        width: 95% !important;
    }
    
    #popup-course-form {
        padding: 30px 25px;
    }
    
    #popup-course-form .regform__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    #popup-course-form form input {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    #popup-course-form .form-submit {
        padding: 14px;
        font-size: 15px;
    }

}

/* Мобильные 576px */
@media (max-width: 576px) {
    /* Bootstrap сетка */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    .col, [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    body {
        overflow-x: hidden !important;
    }

	.section-title {
        font-size: 30px;
    }
    
    /* Шапка */
    .screen-menu-card-element.ownd-course-header {
        padding-bottom: 69px;
    }
    
    .ownd-course-breadcrumb {
        width: calc(100% - 30px);
        margin-top: 15px;
    }
    
    .ownd-course-breadcrumb a {
        font-size: 12px;
    }
    
    .ownd-course-share {
        right: 15px;
    }
    
    .ownd-course-top-offer__title {
    }
    
    .ownd-course-top-offer__text {
        font-size: 14px;
    }
    
    .ownd-course-top-regform {
        padding: 20px;
    }
    
    /* Панель с информацией */
    /* Основной контейнер панели */
	#ownd-course-panel {
        top: 0 !important;
    }
    
    #ownd-course-panel .container {
        flex-direction: column;
        align-items: center;
        padding: 25px 20px !important;
    }
    
    #ownd-course-panel .ownd-course-panel-item {
        width: 100% !important;
        max-width: 280px;
        margin: 0 auto 48px auto !important;
        padding: 40px 0 0 0 !important;
        border-left: none !important;
        text-align: center;
        background-position: center top !important;
        background-size: 32px !important;
    }
    
    #ownd-course-panel .ownd-course-panel-item:last-child {
        margin-bottom: 0 !important;
    }
    
    #ownd-course-panel .ownd-course-panel-item-text a {
        min-width: 250px;
        margin: 12px auto 0;
    }
    
    /* Меню выбора дат на мобильных */
    #ownd-course-panel .ownd-course-panel-dates {
        position: fixed;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 300px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .ownd-course-panel-dates-list {
        white-space: normal;
        word-break: break-word;
        text-align: center;
        padding: 15px;
    }

    /* Предварительные требования */
    .requirements-list__item {
        flex: 0 0 100%;
    }

	.target-audience-list {
		padding: 0;
	}
    
    /* Документы */
    .bpla-document {
        flex-direction: column;
        padding: 20px;
    }

    .document-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .document-image-container {
        max-width: 100%;
    }

	.primary-btn {
		margin: 0 auto;
		margin-bottom: 15px;
		text-align: center;
		font-size: 13px !important;
		padding: 12px 20px !important;
	}
    
    /* Как вы будете учиться */
    .order-training-list__item {
        padding-left: 120px;
        background-size: 100px !important;
        min-height: 100px;
    }
    
    /* Цены */
    .course-price {
        font-size: 28px;
    }
    
    .ownd-course-cost-price {
        font-size: 32px;
    }
    
    .ownd-course-buttons a {
        display: block;
        width: 250px;
        margin: 0 auto 20px;
    }
    
    .ownd-course-buttons a + a {
        margin: 20px auto 0;
    }

    .accordion-arrow {
        max-width: 14px !important;
        max-height: 14px !important;
    }

	.offer-checkbox {
		text-align: start;
	}

	.offer-form input {
		min-width: 350px;
	}

	.custom-course-popup {
        width: 98% !important;
        max-width: calc(100% - 20px) !important;
    }
    
    #popup-course-form {
        padding: 25px 20px;
    }
    
    #popup-course-form .regform__title {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    #popup-course-form .popup-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    #popup-course-form form input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    #popup-course-form .form-checkbox label {
        font-size: 11px;
    }
}

/* -----------------------------------------
   ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ
   ----------------------------------------- */
.no-scroll {
    overflow: hidden !important;
    height: 100%;
}

.error-message {
    color: red;
    display: none;
    margin: 0 auto;
    max-width: 280px;
    font-size: 13px;
}

.success-message {
    color: #00ff00;
    display: none;
    margin: 0 auto;
    max-width: 280px;
    font-size: 13px;
}
/* End */
/* /local/components/first-top/new.template/templates/.default/style.css?177495721437403 */
