

/* Start:/bitrix/components/custom/contact.form/css/style.css?17422094229004*/
.consent-label {
    display: flex;
    align-items: center; /* Выровняет текст по центру чекбокса */
    gap: 8px; /* Добавит небольшой отступ между чекбоксом и текстом */

}

.consent-label input {
    margin: 0; /* Убирает лишние отступы у чекбокса */
}

.detail_text {
margin-bottom: 25px;
font-size: 13px;
line-height: 22px;
}

.detail_text ul {
list-style: none;
margin-bottom: 30px;
padding-left: 10px;
}

.detail_text li {
margin-bottom: 8px;
padding-left: 10px;
position: relative;
color: #3b3b3b;
font-size: 13px;
line-height: 18px;
}

.detail_text li:before {
content: "";
width: 5px;
height: 5px;
position: absolute;
top: 8px;
left: 0px;
}

.detail_text h2 {
margin-bottom: 20px;
}

.detail_text h4 {
margin-bottom: 15px;
color: #494949;
font-size: 16px;
text-align: center;
}

.order-form-title {
    color: #333; /* Замените на нужный вам цвет */
    margin-top: 10px; /* Отступ под заголовком */
}
label {
    color: #333; /* Замените на нужный вам цвет */
    margin-top: 5px; /* Отступ под каждым label */
    display: block; /* Чтобы отступы работали корректно */
}
h3 {
    text-align: center; /* Центрирует текст */
}

/* Стили для кнопки отправки заказа */
#order-form button[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    background: green;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

/* Эффект при наведении на кнопку */
#order-form button[type="submit"]:hover {
    background-color: darkgreen;
}

/* Фокус при клике на кнопку */
#order-form button[type="submit"]:focus {
    outline: none;
    background-color: #004d00; /* темно-зеленый цвет при фокусе */
}

/* Стили для всех полей ввода и текстовых областей */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Учитывает padding при расчете ширины */
    margin-bottom: 20px; /* Отступ между полями */
}

/* Стили для обязательных полей (например, ИНН, телефон и т.д.) */
input[required], textarea[required] {
    border-color: #ff6666; /* Красный цвет для обязательных полей */
}

/* Стили для контейнера с дополнительными полями для компании (ИНН, реквизиты) */
#company_fields {
    margin-bottom: 20px; /* Отступ между блоками для компании */
}

/* Стили для меток перед полями ввода */
label {
    display: block;
   /* font-weight: bold;*/
    margin-bottom: 5px; /* Отступ между меткой и полем */
}

/* Псевдоклассы для полей при фокусе */
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: #4a90e2; /* Синий цвет рамки при фокусе */
    outline: none; /* Убирает стандартный фокус */
}

/* Стили для textarea (текстовых областей) */
textarea {
    height: 100px; /* Высота для текстовых полей */
    resize: vertical; /* Разрешает изменять размер только по вертикали */
}


/* Общие отступы для всех блоков с выбором */
.order-section {
    margin-bottom: 20px; /* Отступ между секциями */
}

/* Стили для элементов в "Выберите ПО" */
.software-category {
    margin-bottom: 20px; /* Отступ между категориями ПО */
}

.category-title {
    cursor: pointer;
    padding: 10px;
    background: #f1f1f1;
    border-radius: 5px;
    margin-bottom: 10px; /* Отступ между заголовком категории и списком */
}

.category-content {
    margin-left: 20px;
}

/* Добавить отступы для чекбоксов в "Выберите ПО" */
.software-category label {
    display: block;
    margin-bottom: 10px; /* Отступ между чекбоксами */
}

/* Дополнительные стили для улучшения внешнего вида */
.software-category input[type="checkbox"] {
    margin-right: 10px; /* Отступ между чекбоксом и текстом */
}

.content .inner {
    padding-top: 0px;
}
.order-form-title {
    text-align: center;  /* Центрирует текст */
    margin-bottom: 50px;     /* Добавляет отступ снизу */
    font-size: 24px;      /* размер шрифта*/
    font-weight: bold;    /* выделить заголовок */
}

/* каждый чекбокс с лейблом будет в новой строке */
.software-category label {
    display: block;  /* Каждый элемент будет отображаться в новой строке */
    margin-bottom: 5px;  /* тступ между элементами */
}
/* Стили для секции с фоном */
.order-section {
	cursor: pointer;
	align-items: center;
    background-color: #f5f5f5;  /* фон */
    padding: 10px;
    border-radius: 5px;  /* кругление углов */
    border-bottom: 1px solid #ddd;

}
.order-section_col {
	width: 150px;
    margin-bottom: 15px;
    background-color: #f5f5f5;  /* фон */
    padding: 10px 15px;
    border-radius: 5px;  /* скругление углов */
    border: 1px solid #ddd;  /* Легкая рамка */
}

#license-type label,
#customer-type-section label,
#order-type-section label {
    margin-bottom: 5px; /* значение отступа */
}

/* Заголовок секции, для отображения кнопки */
.order-title {
    background: none;
    border: none;
	color: #333;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-start;
}

/* Иконка "+" или "✖" */
.faq-icon {
    font-size: 18px;
    font-weight: bold;
    color: green;
    order: -1; /* Перемещаем крестик в начало */
    margin-right: 8px;
}

/* Контент секции */
.order-content {
    display: none;
    padding: 10px;
    border-left: 3px solid green;
    margin-top: 5px;
    transition: all 0.3s ease-in-out;
    background-color: #f8f8f8;  /* Цвет фона */
    border-radius: 5px;  /* Скругление углов */
}

/* Убираем дубляж в коде: комбинируем .order-title */
.order-title {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-start;
}

/* Заголовки категорий ПО */
.category-title {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #333;
    padding: 10px;
    background: #f5f5f5;  /* Фон для заголовков категорий */
    border-radius: 5px;
    border-bottom: 1px solid #ddd;
}

.category-title .faq-icon {
    color: green;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Контент внутри категории ПО */
.category-content {
    display: none;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
}

/* Активный стиль для категории */
.category-title.active .faq-icon {
    color: green;
    content: "✖";
}

/* Стили для отступов */
.order-type-container {
    margin-top: 10px; /* Отступ сверху */
}

.order-type-container div {
    margin-bottom: 10px; /* Отступ между вариантами */
}

/* Дополнительные пункты (сворачиваемые категории) */
.additional-title {
    cursor: pointer;
    padding: 10px;
    background-color: #f0f0f0;
    margin-top: 5px;
    border-radius: 5px;
    font-weight: bold;
}

.additional-content {
    display: none; /* По умолчанию скрыто */
    padding-left: 20px; /* Отступ слева для подкатегорий */


.additional-content label {
    display: block; /* Располагаем чекбоксы вертикально */
    margin-left: 10px; /* Отступ слева для элементов */
}

/* Иконка для раскрытия */
.faq-icon {
    font-size: 18px;
    font-weight: bold;
    color: green;
}

/* End */
/* /bitrix/components/custom/contact.form/css/style.css?17422094229004 */
