

/* Start:/local/templates/leikozu_bustlers/components/bitrix/news.detail/detail/style.css?1772047149155*/
div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	float:left;
	margin:0 8px 6px 1px;
}
.news-date-time
{
	color:#486DAA;
}

/* End */


/* Start:/css/check_list_form.css?17737588805856*/
:root {
		--red: #DA352C;
		--red-soft: rgba(218, 53, 44, 0.08);
		--dark-red: #AA1D1D;
		--grey-line: #E0E0E0;
		--text-main: #141412;
		--text-light: #888;
		--white: #FFF;

		--radius-xl: 24px;
		--radius-sm: 12px;
		--anim-speed: 0.2s;

		--focus-glow-color: var(--red-soft);
		--font-family: 'Inter', system-ui, -apple-system, sans-serif;
		--bg-page: #F4F4F4;
	}

	.fbl_sform,
	.fbl_sform * {
		box-sizing: border-box;
	}

	.fbl_sform {
		background: var(--white);
		width: 100%;
		max-width: 500px;
		padding: 2.5rem;
		border-radius: var(--radius-xl);
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
		position: relative;
		margin: 0 auto;
		color: var(--text-main);
		font-size: 16px;
		/* Фиксируем базу шрифта внутри формы */
		line-height: 1.5;
	}

	/* Заголовок */
	.fbl_sform__title {
		font-weight: 600;
		font-size: 1.8rem;
		text-align: center;
		margin: 0 0 0.5rem 0;
		color: var(--text-main);
		line-height: 1.2;
	}

	/* Подзаголовок */
	.fbl_sform__subtitle {
		text-align: center;
		color: var(--text-light);
		margin: 0 0 2rem 0;
		font-size: 1rem;
	}

	/* Обертка поля */
	.fbl_sform__field-group {
		position: relative;
		margin-bottom: 1.2rem;
	}

	/* Инпут */
	.fbl_sform__input {
		width: 100%;
		height: 3.5rem;
		padding: 1.2rem 1.2rem 0.4rem 1.2rem;
		border: 1px solid var(--grey-line);
		border-radius: var(--radius-sm);
		font-size: 1rem;
		font-family: inherit;
		background: #F9F9F9;
		transition: all var(--anim-speed) ease;
		color: var(--text-main);
		appearance: none;
		/* Убираем нативные стили браузеров */
	}

	.fbl_sform__input:focus {
		outline: none;
		border-color: var(--red);
		background: var(--white);
		box-shadow: 0 0 0 4px var(--focus-glow-color);
	}

	/* Плавающий лейбл */
	.fbl_sform__label {
		position: absolute;
		top: 1.1rem;
		left: 1.2rem;
		font-size: 1rem;
		color: var(--text-light);
		pointer-events: none;
		transition: var(--anim-speed) ease all;
		background-color: transparent;
		padding: 0;
		margin: 0;
		border: none;
		line-height: 1;
	}

	/* Логика подъема лейбла */
	.fbl_sform__input:focus~.fbl_sform__label,
	.fbl_sform__input:not(:placeholder-shown)~.fbl_sform__label {
		top: 0.6rem;
		font-size: 0.75rem;
		color: var(--red);
		font-weight: 500;
	}

	/* Кнопка отправки */
	.fbl_sform__btn {
		width: 100%;
		background: var(--red);
		color: var(--white);
		height: 3.8rem;
		border: none;
		border-radius: 50px;
		font-size: 1rem;
		font-weight: 600;
		text-transform: uppercase;
		cursor: pointer;
		margin-top: 1rem;
		transition: transform var(--anim-speed), box-shadow var(--anim-speed);
		position: relative;
		overflow: hidden;
		box-shadow: 0 10px 25px rgba(218, 53, 44, 0.4);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
	}

	.fbl_sform__btn:hover {
		background: var(--dark-red);
		transform: translateY(-2px);
		box-shadow: 0 15px 35px rgba(170, 29, 29, 0.4);
	}

	.fbl_sform__btn:disabled {
		background: #ccc;
		cursor: not-allowed;
		box-shadow: none;
		transform: none;
	}

	/* Блик на кнопке */
	.fbl_sform__btn::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
		transition: 0.5s;
	}

	.fbl_sform__btn:hover::before {
		left: 100%;
	}

	/* Дисклеймер */
	.fbl_sform__disclaimer {
		margin-top: 1.5rem;
		font-size: 0.75rem;
		color: var(--text-light);
		text-align: center;
		line-height: 1.4;
		border-top: 1px solid var(--grey-line);
		padding-top: 1rem;
	}

	/* Лоадер (внутри кнопки) */
	.fbl_sform__loader {
		width: 20px;
		height: 20px;
		border: 2px solid var(--white);
		border-bottom-color: transparent;
		border-radius: 50%;
		display: inline-block;
		animation: fbl_rotation 1s linear infinite;
	}

	@keyframes fbl_rotation {
		0% {
			transform: rotate(0deg);
		}

		100% {
			transform: rotate(360deg);
		}
	}

	/* Утилитарный класс для скрытия */
	.fbl_sform__hidden {
		display: none !important;
	}

	/* --- ОКНО УСПЕХА (MODAL) --- */
	.fbl_sform__overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.96);
		backdrop-filter: blur(4px);
		border-radius: var(--radius-xl);
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 10;
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s ease;
	}

	.fbl_sform__overlay--active {
		opacity: 1;
		visibility: visible;
	}

	.fbl_sform__modal-content {
		text-align: center;
		padding: 20px;
		transform: translateY(20px);
		transition: transform 0.4s ease;
		width: 100%;
	}

	.fbl_sform__overlay--active .fbl_sform__modal-content {
		transform: translateY(0);
	}

	.fbl_sform__icon {
		width: 64px;
		height: 64px;
		background: var(--red-soft);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 1.5rem auto;
		color: var(--red);
	}

	.fbl_sform__modal-title {
		font-size: 1.5rem;
		font-weight: 600;
		margin: 0 0 0.5rem 0;
		color: var(--text-main);
	}

	.fbl_sform__modal-text {
		color: var(--text-light);
		margin: 0 0 2rem 0;
		line-height: 1.5;
	}

	.fbl_sform__modal-btn {
		background: transparent;
		border: 1px solid var(--text-main);
		color: var(--text-main);
		padding: 0.8rem 2rem;
		border-radius: 50px;
		cursor: pointer;
		font-weight: 500;
		transition: all var(--anim-speed);
		font-size: 1rem;
	}

	.fbl_sform__modal-btn:hover {
		background: var(--text-main);
		color: var(--white);
	}

	/* Адаптив */
	@media (max-width: 480px) {
		.fbl_sform {
			padding: 1.5rem;
		}

		.fbl_sform__title {
			font-size: 1.5rem;
		}
	}
/* End */


/* Start:/local/templates/.default/components/sprint.editor/blocks/.default/_style.css?17720471493514*/
/* Общие стили для блоков */
.sp-block-table table {
    width: 100%;
    border-collapse: collapse;
}

.sp-block-table table tr {
    background: #f7f7f7;
    color: #8a8a8a;
}

.sp-block-table table tr:nth-child(odd) {
    background: #e7e6e6;
}

.sp-block-table table tr:hover {
    background: #d4d4d4;
    color: #000;
}

.sp-block-table table td {
    text-align: left;
    border: 1px solid #ccc;
    padding: 5px;
}

.sp-block-table p {
    margin: 0;
}

.sp-image img {
    width: 100%;
}

.sp-video iframe,
.sp-video-gallery iframe {
    border-width: 0;
}

.sp-iblock-sections {
    padding: 10px;
    border: 1px solid #c3c3c3;
    margin: 10px 0;
}

.sp-iblock-elements {
    padding: 10px;
    border: 1px solid #c3c3c3;
    margin: 10px 0;
}

.sp-properties {
    width: 400px;
    border-collapse: collapse;
}

.sp-properties_title {
    border: 1px solid #ccc;
    padding: 0 5px;
    font-weight: bold;
}

.sp-properties_text {
    border: 1px solid #ccc;
    padding: 0 5px;
}

.sp-gallery-items {
    overflow: hidden;
}

.sp-gallery-item {
    float: left;
    height: 220px;
    padding: 5px;
    /*width: 20%;*/
}

.sp-gallery-item-img-wrapper {
    float: left;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: block;
    color: inherit;
}

.sp-gallery-item img {
    display: block;
    max-width: 100%;
    left: 50%;
    max-height: 100%;
    max-width: none;
    position: relative;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    -moz-transform: translate(-50%, -50%) translateZ(0);
    -o-transform: translate(-50%, -50%) translateZ(0);
    -ms-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0);
}

.sp-gallery-item-text {
    background-color: rgba(255, 255, 255, .7);
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    width: 100%;
}

.sp-gallery-item-text:hover {
    opacity: 1;
}

.sp-gallery-item-text::after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.sp-gallery-item-text-content {
    display: inline-block;
    vertical-align: middle;
    width: 90%;
}

.sp-button_link,
.sp-button_link:link,
.sp-button_link:visited {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 20px;
    text-decoration: none;
    background: #ccc;
    color: #333;
}

.sp-button_link:hover {
    text-decoration: none;
    background: #333;
    color: #ccc;
}

/*accordion*/
.sp-accordion {
    border: 1px solid #ccc;
    border-radius: 5px;
}

.sp-accordion-title {
    border-top: 1px solid #ccc;
    color: #444;
    cursor: pointer;
    padding: 10px;
    text-align: left;
}

.sp-accordion-title:first-child {
    border-top: none;
}

.sp-accordion-container {
    padding: 0 10px 10px;
    display: none;
    overflow: hidden;
}

.sp-accordion-title:after {
    content: '\02795';
    font-size: 12px;
    color: #777;
    float: right;
    margin: 2px 5px;
}

.sp-accordion-title__active:after {
    content: "\2796";
}

.sp-complex-table {
    display: table;
    table-layout: fixed;
    border-spacing: 10px;
}

.sp-complex-row {
    display: table-row;
}

.sp-complex-col {
    display: table-cell;
    vertical-align: top;
}

/* End */
/* /local/templates/leikozu_bustlers/components/bitrix/news.detail/detail/style.css?1772047149155 */
/* /css/check_list_form.css?17737588805856 */
/* /local/templates/.default/components/sprint.editor/blocks/.default/_style.css?17720471493514 */
