

/* Start:/local/templates/rotado/components/bitrix/news.list/knowledge.detail/style.css?176897868319601*/
:root {
	--heading: #2A2A2A;
	--text: #595959;
	--blue: #0090E3;
	--blueLight: #2FA4E8;
	--sidebar: #F7FAFB;
	--accordionLine: #D9D9D9;
	--textlink: #6787AD;
	--checkbox: #A6D8F5;
	--textgray: #A6A6A6;
}

.mt-35 {
	margin-top: 34px;
}

.mb-175 {
	margin-bottom: 175px;
}

.search-field {
	display: flex;
	height: 48px;
}

.search-input {
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #D9D9D9;
	border-radius: 2px 0 0 2px;
	padding: 12px 16px;
}

.search-button {
	width: 48px;
	height: 48px;
	background-color: var(--blue);
	min-width: 48px;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.053 15.053C15.5412 14.5649 16.3326 14.5649 16.8208 15.053L21.6339 19.8661C22.122 20.3543 22.122 21.1457 21.6339 21.6339C21.1457 22.122 20.3543 22.122 19.8661 21.6339L15.053 16.8208C14.5649 16.3326 14.5649 15.5412 15.053 15.053Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.125 17C13.922 17 17 13.922 17 10.125C17 6.32804 13.922 3.25 10.125 3.25C6.32804 3.25 3.25 6.32804 3.25 10.125C3.25 13.922 6.32804 17 10.125 17ZM18.25 10.125C18.25 14.6123 14.6123 18.25 10.125 18.25C5.63769 18.25 2 14.6123 2 10.125C2 5.63769 5.63769 2 10.125 2C14.6123 2 18.25 5.63769 18.25 10.125Z' fill='white'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px;
	border-radius: 0 2px 2px 0;
	transition: background-color .3s ease;
}

.search-button.search-clear {
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 5L5 19M19 19L5 5' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

.search-button:hover,
.search-button:focus {
	background-color: var(--blueLight);
}

.custom-checkbox {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
	opacity: 0;
	height: 0;
	width: 0;
	line-height: 0;
	font-size: 0;
}

.custom-checkbox__checker {
	width: 18px;
	height: 18px;
	display: block;
	border-radius: 2px;
	border: 1px solid var(--checkbox);
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: border-color, background-color;
	background-position: center;
	background-size: 14px 11px;
	background-repeat: no-repeat;
}

.custom-checkbox input[type="checkbox"]:checked+.custom-checkbox__checker {
	border-color: var(--blue);
	background-color: var(--blue);
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L5.8 9L13 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.custom-checkbox__checker+.custom-checkbox__text {
	margin-left: 15px;
}

.knowledge-title__result {
	font-size: 22px;
	line-height: 136%;
	font-weight: 600;
}

.knowledge-categories {
	display: flex;
	margin: 50px -15px 0;
	flex-wrap: wrap;
	justify-content: center;
}

.knowledge-category {
	margin: 15px;
	flex-basis: calc(20% - 30px);
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #FFFFFF;
	border: 1px solid #E9F1F4;
	border-radius: 4px 0px 0px 0px;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: border-color, border-radius, box-shadow;
	cursor: pointer;
	min-width: 230px;
}

.knowledge-category__image {
	width: 90px;
	height: 90px;
}

.knowledge-category__image+.knowledge-category__name {
	margin: 38px 0 0;
}

.knowledge-category__name {
	text-align: center;
	font-weight: 500;
	color: #2A2A2A;
	transition: color .3s ease;
}

.knowledge-category:hover {
	border-color: #AAD9EC;
	box-shadow: 0px 4px 20px rgba(0, 76, 179, 0.08);
	border-radius: 4px;
}

.knowledge-category:hover .knowledge-category__name {
	color: var(--blue);
}

.knowledge-top {
	height: 300px;
	position: relative;
}

.knowledge-top__title {
	margin: 0 0 40px;
	color: #FFFFFF;
}

.knowledge-top__background {
	position: absolute;
	height: 100%;
	object-fit: cover;    
	width: 100%;
}

.knowledge-top__inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px;
	max-width: 660px;
	margin: auto;
}

.knowledge-inner {
	display: grid;
	grid-template-columns: 310px 1fr;
	gap: 0 50px;
	margin: 50px 0 0;
}

.knowledge-sidebar {
	background-color: var(--sidebar);
	padding: 16px 0;
}

.knowledge-sidebar__wrap {
	position: sticky;
	top: 60px;
}

.knowledge-sidebar__link {
	display: flex;
	align-items: center;
	padding: 7px 15px;
	transition-timing-function: ease;
	transition-duration: .3s;
	transition-property: background-color, color;
	color: var(--heading);
	background-color: var(--sidebar);
}

.knowledge-sidebar__link:not(:last-child) {
	margin: 0 0 5px;
}

.knowledge-sidebar__link_active {
	color: var(--blue);
	background-color: #fff;
}

.knowledge-sidebar__image {
	width: 32px;
	height: 32px;
	margin: 0 15px 0 0;
	min-width: 32px;
}

.knowledge-rows {
	margin: 30px 0 0;
}

.knowledge-accordion:not(:last-child) {
	margin: 0 0 18px;
}

.knowledge-accordion__head {
	font-weight: 600;
	font-size: 22px;
	line-height: 136%;
	padding: 17px 0;
	border-bottom: 1px solid var(--accordionLine);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.knowledge-accordion__head:after {
	content: "";
	min-width: 24px;
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%232A2A2A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: transform .3s ease;
}

.knowledge-accordion.knowledge-accordion_active .knowledge-accordion__head:after {
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%230090E3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	transform: rotate(-180deg);
}

.knowledge-accordion__body {
	padding: 24px 0 22px;
	display: none;
}

.knowledge-accordion__row {
	margin: 0 0 24px;
	display: flex;
	align-items: center;
}

.knowledge-accordion__checkbox-all+.ya-share2 {
	margin-left: 35px;
}

.knowledge-accordion__checkbox-all {
	/* margin: 0 0 0 15px; */
}

.ya-share2 {
	font-size: 15px;
	line-height: 100%;
	color: var(--text);
	display: flex;
	align-items: center;
}

#share .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more {
	display: block;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14 5C15.1046 5 16 4.10457 16 3C16 1.89543 15.1046 1 14 1C12.8954 1 12 1.89543 12 3C12 4.10457 12.8954 5 14 5ZM14 6C15.6569 6 17 4.65685 17 3C17 1.34315 15.6569 0 14 0C12.3431 0 11 1.34315 11 3C11 3.31889 11.0498 3.62615 11.1419 3.91446L5.39782 7.1968C4.85035 6.46995 3.98006 6 3 6C1.34315 6 0 7.34315 0 9C0 10.6569 1.34315 12 3 12C3.98006 12 4.85035 11.53 5.39782 10.8032L11.1419 14.0855C11.0498 14.3738 11 14.6811 11 15C11 16.6569 12.3431 18 14 18C15.6569 18 17 16.6569 17 15C17 13.3431 15.6569 12 14 12C13.0199 12 12.1497 12.4699 11.6022 13.1968L5.85808 9.91445C5.95025 9.62614 6 9.31888 6 9C6 8.68112 5.95025 8.37385 5.85808 8.08555L11.6022 4.8032C12.1497 5.53005 13.0199 6 14 6ZM5 9C5 10.1046 4.10457 11 3 11C1.89543 11 1 10.1046 1 9C1 7.89543 1.89543 7 3 7C4.10457 7 5 7.89543 5 9ZM14 17C15.1046 17 16 16.1046 16 15C16 13.8954 15.1046 13 14 13C12.8954 13 12 13.8954 12 15C12 16.1046 12.8954 17 14 17Z' fill='%23595959'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
	margin: 0 10px 0 0;
	transition: background .3s ease;
}

#share .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more {
	background: transparent;
    border: none;
    border-radius: 0;
}

#share .ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more {
	padding: 0;
	align-items: center;
}

#share .ya-share2__link {
	display: flex;
}

.ya-share2:hover:before {
	/* background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14 5C15.1046 5 16 4.10457 16 3C16 1.89543 15.1046 1 14 1C12.8954 1 12 1.89543 12 3C12 4.10457 12.8954 5 14 5ZM14 6C15.6569 6 17 4.65685 17 3C17 1.34315 15.6569 0 14 0C12.3431 0 11 1.34315 11 3C11 3.31889 11.0498 3.62615 11.1419 3.91446L5.39782 7.1968C4.85035 6.46995 3.98006 6 3 6C1.34315 6 0 7.34315 0 9C0 10.6569 1.34315 12 3 12C3.98006 12 4.85035 11.53 5.39782 10.8032L11.1419 14.0855C11.0498 14.3738 11 14.6811 11 15C11 16.6569 12.3431 18 14 18C15.6569 18 17 16.6569 17 15C17 13.3431 15.6569 12 14 12C13.0199 12 12.1497 12.4699 11.6022 13.1968L5.85808 9.91445C5.95025 9.62614 6 9.31888 6 9C6 8.68112 5.95025 8.37385 5.85808 8.08555L11.6022 4.8032C12.1497 5.53005 13.0199 6 14 6ZM5 9C5 10.1046 4.10457 11 3 11C1.89543 11 1 10.1046 1 9C1 7.89543 1.89543 7 3 7C4.10457 7 5 7.89543 5 9ZM14 17C15.1046 17 16 16.1046 16 15C16 13.8954 15.1046 13 14 13C12.8954 13 12 13.8954 12 15C12 16.1046 12.8954 17 14 17Z' fill='%230090E3'/%3E%3C/svg%3E%0A"); */
}

.knowledge-accordion__videos {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}

.knowledge-video__image-wrap {
	position: relative;
	overflow: hidden;
}

.knowledge-video__image-wrap:before {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg width='40' height='28' viewBox='0 0 40 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='28' rx='6' fill='%23CE201F'/%3E%3Cpath d='M25.5 13.134C26.1667 13.5189 26.1667 14.4811 25.5 14.866L18 19.1962C17.3333 19.5811 16.5 19.0999 16.5 18.3301V9.66987C16.5 8.90007 17.3333 8.41895 18 8.80385L25.5 13.134Z' fill='white'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 40px;
	height: 28px;
	position: absolute;
	z-index: 2;
	pointer-events: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.knowledge-video__image-wrap:after {
	content: "";
	display: block;
	padding-top: 71.4%;
}

.knowledge-video__image {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	transition: transform .3s ease;
}

.knowledge-video__name {
	font-weight: 600;
	margin: 20px 0 0;
	line-height: 138%;
	color: var(--textlink);
	transition: color .3s ease;
}

.knowledge-video:hover .knowledge-video__name {
	color: var(--blueLight);
}

.knowledge-video:hover .knowledge-video__image {
	transform: scale(1.05);
}

.knowledge-document {
	display: flex;
	align-items: center;
	padding: 12px 15px;
}

.knowledge-document:nth-child(odd) {
	background-color: var(--sidebar);
}

.knowledge-document:hover .knowledge-document__name {
	color: var(--blue);
}

.knowledge-document__info {
	margin: 0 15px 0;
	max-width: 650px;
	cursor: pointer;
}

.knowledge-document__name {
	font-size: 15px;
	line-height: 134%;
	margin: 0 0 6px;
	transition: color .3s ease;
}

.knowledge-document__size {
	font-size: 12px;
	line-height: 134%;
	color: var(--textgray);
}

.knowledge-document__download {
	display: flex;
	align-items: center;
	color: var(--heading);
	margin: 0 0 0 auto;
	min-width: 110px;
	cursor: pointer;
}

.knowledge-document__download img {
	margin: 0 15px 0 0;
}

.knowledge-document__download-button {
	padding: 11px 30px;
	margin-left: auto;
	background-color: var(--blue);
	color: #fff;
	border-radius: 2px;
	font-weight: 600;
	font-size: 15px;
	line-height: 134%;
	transition: background-color .3s ease;
	opacity: 0;
	pointer-events: none;
	transition-timing-function: ease;
	transition-property: opacity, transform;
	transition-duration: .3s;
}

.knowledge-document__download-button.knowledge-document__download-button_download {
	opacity: 1;
	pointer-events: all;
}

.knowledge-document__download-button:hover {
	background-color: var(--blueLight);
}

.knowledge-document__download-button:active {
	background-color: var(--blue);
}

.knowledge-count {
	font-size: 15px;
	line-height: 134%;
	color: var(--text);
	margin: 20px 0 0;
}

.knowledge-document__download-button.knowledge-document__download-button-mobile-mobile {
	position: sticky;
	bottom: 20px;
	transform: translateY(calc(100% + 50px));
}

.knowledge-document__download-button.knowledge-document__download-button-mobile-mobile.knowledge-document__download-button_active {
	transform: translateY(0px);
}

@media (max-width: 1200px) {
	.mt-35 {
		margin-top: 95px;
	}

	.mb-175 {
		margin-bottom: 120px;
	}

	.knowledge-category__image {
		width: 70px;
		height: 70px;
	}

	.knowledge-accordion__videos {
		gap: 24px 16px;
	}

	.knowledge-sidebar__image {
		width: 28px;
		height: 28px;
		margin: 0 10px 0 0;
		min-width: 28px;
	}

	.knowledge-inner {
		grid-template-columns: 280px 1fr;
		gap: 30px;
		margin: 40px 0 0;
	}

	.knowledge-accordion__head {
		font-size: 20px;
		padding: 15px 0;
	}
}

@media (min-width:900px) and (max-width: 1100px) {
	.knowledge-accordion__videos {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width:700px) and (max-width: 900px) {
	.knowledge-accordion__videos {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width: 900px) {
	.knowledge-sidebar {
		background-color: #fff;
		padding: 0;
	}

	.knowledge-inner {
		grid-template-columns: 1fr;
	}

	.divvideo iframe {
		width: 95vw !important;
		height: calc(95vw / 1.78) !important;
	}
}

@media (max-width:700px) {
	.knowledge-accordion__videos {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 600px) {
	.knowledge-document__download-button.knowledge-document__download-button-mobile-mobile {
		display: none;
	}
}

@media (max-width: 600px) {
	.mt-35 {
		margin-top: 80px;
	}

	.mb-175 {
		margin-bottom: 60px;
	}

	.knowledge-inner {
		margin: 25px 0 0;
	}

	.knowledge-category {
		margin: 6px;
		min-width: 150px;
		padding: 24px 12px;
		flex-grow: 1;
	}

	.knowledge-category__image {
		width: 50px;
		height: 50px;
	}

	.knowledge-category__image+.knowledge-category__name {
		margin: 24px 0 0;
	}

	.knowledge-categories {
		margin: 20px -15px 0;
	}

	.knowledge-category__name {
		font-size: 14px;
		line-height: 130%;
	}

	.knowledge-document {
		flex-wrap: wrap;
		align-items: flex-start;
		padding: 12px 16px 16px;
	}

	.knowledge-document__info {
		margin: 0 0 0 15px;
		width: calc(100% - 40px);
	}

	.knowledge-document__download {
		margin: 12px 0 0 30px;
	}

	.knowledge-accordion__row {
		flex-wrap: wrap;
		padding: 0 16px;
	}

	.knowledge-accordion__wrap {
		position: relative;
		width: calc(100% + 32px);
		margin: 0 0 0 -16px;
	}

	.knowledge-accordion__videos {
		padding: 0 16px;
	}

	.knowledge-accordion__wrap-videos {
		padding: 0 16px;
	}

	.knowledge-document__download-button {
		margin-top: 12px;
		display: none;
		margin-left: auto;
		margin: 20px 15px 0;
		text-align: center;
	}

	.knowledge-accordion__head {
		font-size: 18px;
		padding: 0 0 19px;
	}

	.knowledge-top__inner {
		padding: 20px;
	}

	.knowledge-top {
		height: 220px;
	}

	.knowledge-accordion:not(:last-child) {
		margin: 0 0 18px;
	}

	.knowledge-accordion__checkbox-all {
		margin: 0;
	}

	.knowledge-document__download-button.knowledge-document__download-button_download {
		pointer-events: all;
		display: block;
	}

	.knowledge-document__download-button.knowledge-document__download-button_active {
		opacity: 1;
	}

	.knowledge-accordion__checkbox-all+.knowledge-accordion__share {
		margin-left: auto;
	}

	.custom-checkbox__text {
		font-size: 15px;
	}

	.knowledge-title__result {
		font-size: 20px;
	}

	.knowledge-document__download-button.knowledge-document__download-button-mobile-desktop.knowledge-document__download-button_download {
		display: none;
	}
}

@media (max-width: 525px) {
	.knowledge-top__title {
		margin: 0 0 24px;
		font-size: 22px;
	}
}

@media (max-width:460px) {
	.knowledge-accordion__videos {
		grid-template-columns: 1fr;
	}
}

.forvideo {
	position: relative;
	opacity: 1 !important;
}

.forvideo:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url("/local/templates/rotado/components/bitrix/news/projects/bitrix/news.detail/.default/../img/video-icon.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 36px;
	height: 36px;
	opacity: 1;
}

.bgvideo {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	display: none;
	z-index: 99999;
	background: rgba(31, 18, 28, 0.75);
	overflow-y: auto;
	padding: 17px 0;
}

.closevideo {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA2MTIgNjEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA2MTIgNjEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgY2xhc3M9IiI+PGc+PGc+PGcgaWQ9ImNyb3NzIj48Zz48cG9seWdvbiBwb2ludHM9IjYxMiwzNi4wMDQgNTc2LjUyMSwwLjYwMyAzMDYsMjcwLjYwOCAzNS40NzgsMC42MDMgMCwzNi4wMDQgMjcwLjUyMiwzMDYuMDExIDAsNTc1Ljk5NyAzNS40NzgsNjExLjM5NyAgICAgIDMwNiwzNDEuNDExIDU3Ni41MjEsNjExLjM5NyA2MTIsNTc1Ljk5NyAzNDEuNDU5LDMwNi4wMTEgICAgIiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIiBmaWxsPSIjRkZGRkZGIi8+PC9nPjwvZz48L2c+PC9nPiA8L3N2Zz4=);
}

.cssload-container {
	position: absolute;
	width: 69px;
	height: 69px;
	text-align: center;
	top: 50%;
	left: 50%;
	margin: -35px 0 0 -35px;
}

.cssload-speeding-wheel {
	width: 69px;
	height: 69px;
	margin: 0 auto;
	border: 4px solid white;
	border-radius: 50%;
	border-right-color: transparent;
	animation: cssload-spin 425ms infinite linear;
	-o-animation: cssload-spin 425ms infinite linear;
	-ms-animation: cssload-spin 425ms infinite linear;
	-webkit-animation: cssload-spin 425ms infinite linear;
	-moz-animation: cssload-spin 425ms infinite linear;
}

.divvideo {
	margin: auto;
	position: relative;
}

.more {
	background-color: #F7FAFB;
	margin: 0 !important;
	color: #0090E3;
	font-size: 26px;
	font-weight: 600;
	text-align: center;
	display: flex !important;
	align-items: center;
	justify-content: center;
}
/* End */
/* /local/templates/rotado/components/bitrix/news.list/knowledge.detail/style.css?176897868319601 */
