

/* Start:/news/add-news/style.css?17796975085405*/
.add-news-intro {
	padding: 20px 0 60px;
	font-size: 17px;
	line-height: 1.6;
	color: #2b2b3a;
}
.add-news-intro .lead {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
}
.add-news-intro p {
	margin: 0 0 16px;
}
.add-news-note {
	position: relative;
	background: #f5f5fa;
	border-left: 4px solid #e86026;
	border-radius: 8px;
	padding: 22px 26px 8px;
	margin: 28px 0 36px;
}
.add-news-note .info-icon-block {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #e86026;
}
.add-news-note .info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #e86026;
	color: #fff;
	font-weight: 700;
	font-style: normal;
}
.add-news-actions {
	text-align: center;
	margin-top: 32px;
}
.add-news-actions .btn {
	display: inline-block;
}
@media (max-width: 600px) {
	.add-news-intro {
		font-size: 15px;
		padding: 10px 0 40px;
	}
	.add-news-intro .lead {
		font-size: 17px;
	}
	.add-news-note {
		padding: 18px 18px 4px;
	}
}

/* ===== Форма подачи новости ===== */
.add-news-form {
	max-width: 900px;
	margin: 0 auto 60px;
	padding: 30px 32px;
	background: #fff;
	border: 1px solid #e6e6ef;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.add-news-form[hidden] { display: none !important; }

.add-news-form.is-submitted .add-news-form__grid,
.add-news-form.is-submitted .add-news-form__optional,
.add-news-form.is-submitted .add-news-form__agree,
.add-news-form.is-submitted .add-news-form__actions {
	display: none !important;
}
.add-news-form.is-submitted .add-news-form__result {
	margin-top: 0;
}

.add-news-form__grid {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 22px;
}
.add-news-form__row {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.add-news-form__row--full {
	grid-column: 1 / -1;
}
.add-news-form__row label {
	font-size: 14px;
	font-weight: 600;
	color: #2b2b3a;
	margin-bottom: 6px;
	line-height: 1.35;
}
.add-news-form__row label small {
	display: inline;
	font-weight: 400;
	color: #7a7a8c;
	margin-left: 4px;
}
.add-news-form__row .req {
	color: #e86026;
}
.add-news-form input[type="text"],
.add-news-form input[type="url"],
.add-news-form input[type="tel"],
.add-news-form input[type="date"],
.add-news-form input[type="file"],
.add-news-form select,
.add-news-form textarea {
	/* сброс глобальных стилей шаблона */
	flex: none !important;
	margin-bottom: 0 !important;
	/* наши стили */
	display: block;
	width: 100%;
	box-sizing: border-box;
	height: auto;
	min-height: 0;
	padding: 10px 14px;
	font-size: 15px;
	line-height: 1.4;
	font-family: inherit;
	color: #2b2b3a;
	background: #f5f5fa !important;
	border: 1px solid #dcdce8 !important;
	border-radius: 8px;
	outline: none;
	transition: border-color .15s, background .15s;
}
.add-news-form input[type="text"]:hover,
.add-news-form input[type="url"]:hover,
.add-news-form input[type="tel"]:hover,
.add-news-form input[type="date"]:hover,
.add-news-form select:hover,
.add-news-form textarea:hover {
	background: #f5f5fa !important;
	padding-left: 14px !important;
}
.add-news-form input[type="file"] {
	padding: 8px 10px;
	background: #fff !important;
	height: auto;
	cursor: pointer;
}
.add-news-form textarea {
	display: block;
	resize: vertical;
	min-height: 100px;
	height: auto;
}
.add-news-form input:focus,
.add-news-form select:focus,
.add-news-form textarea:focus {
	border-color: #e86026 !important;
	background: #fff !important;
}
.add-news-form .counter {
	font-size: 12px;
	color: #7a7a8c;
	margin-top: 4px;
	text-align: right;
}
.add-news-form .files-hint {
	font-size: 13px;
	color: #7a7a8c;
	margin-top: 6px;
}
.add-news-form .files-hint.is-error {
	color: #c8341b;
}

.add-news-form__optional {
	width: 100%;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px dashed #dcdce8;
}
.add-news-form__optional h3 {
	font-size: 18px;
	font-weight: 600;
	color: #2b2b3a;
	margin: 0 0 16px;
}

.add-news-form__agree {
	margin-top: 22px;
	font-size: 14px;
	line-height: 1.5;
	color: #2b2b3a;
}
.add-news-form__agree label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}
.add-news-form__agree input[type="checkbox"] {
	display: inline-block !important;
	margin-top: 3px;
	margin-bottom: 0 !important;
	flex: none !important;
	width: 18px !important;
	height: 18px !important;
	min-height: 0 !important;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: #e86026;
}

.add-news-form__actions {
	margin-top: 28px;
	text-align: center;
}
.add-news-form__actions .btn {
	display: inline-block;
}
.add-news-form__actions .btn.is-loading {
	opacity: .7;
	cursor: wait;
}

.add-news-form__result {
	margin-top: 20px;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 15px;
	line-height: 1.5;
	display: none;
}
.add-news-form__result.is-info,
.add-news-form__result.is-success,
.add-news-form__result.is-error {
	display: block;
}
.add-news-form__result.is-info {
	background: #eef2fb;
	color: #2b2b3a;
}
.add-news-form__result.is-success {
	background: #e6f6ea;
	color: #1f7a3a;
	border: 1px solid #b6e2c3;
}
.add-news-form__result.is-error {
	background: #fdecea;
	color: #c8341b;
	border: 1px solid #f5b8b0;
}

@media (max-width: 700px) {
	.add-news-form {
		padding: 22px 18px;
	}
	.add-news-form__grid {
		grid-template-columns: 1fr;
	}
}

/* End */
/* /news/add-news/style.css?17796975085405 */
