/*  Нормализация блочной модели */
@font-face {
	font-family: 'Open Sans Light';
	src: url('/bitrix/fonts/opensans-light.ttf');
	src: url('/bitrix/fonts/opensans-light.eot');
	src: url('/bitrix/fonts/opensans-light.woff');
}

@font-face {
	font-family: 'Open Sans Regular';
	src: url('/bitrix/fonts/opensans-regular.ttf');
	src: url('/bitrix/fonts/opensans-regular.eot');
	src: url('/bitrix/fonts/opensans-regular.woff');
}

@font-face {
	font-family: 'Open Sans SemiBold';
	src: url('/bitrix/fonts/opensans-semibold.ttf');
	src: url('/bitrix/fonts/opensans-semibold.eot');
	src: url('/bitrix/fonts/opensans-semibold.woff');
}

@font-face {
	font-family: 'Open Sans Bold';
	src: url('/bitrix/fonts/opensans-bold.ttf');
	src: url('/bitrix/fonts/opensans-bold.eot');
	src: url('/bitrix/fonts/opensans-bold.woff');
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

:where(ul, ol):where([class]) {
	padding-left: 0;
}

body,
:where(blockquote, figure):where([class]) {
	margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
	margin-block: 0;
}

:where(dd[class]) {
	margin-left: 0;
}

:where(ul[class]) {
	list-style: none;
}

img {
	display: block;
	max-width: 100%;
}

input,
textarea,
select,
button {
	font: inherit;
}

html {
	height: 100%;
	scroll-behavior: smooth;
}

body {
	min-height: 100%;
	line-height: 1.5;
	font-family: 'Open Sans Regular';
}

svg *[fill] {
	fill: currentColor;
}

svg *[stroke] {
	stroke: currentColor;
}

svg * {
	transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

:root {
	--color-dark: #000000;
	--color-light: #ffffff;
	--color-accent: #157fc4;
	--color-gray-dark: #5a5a5a;
	--color-gray-light: #f4f4f4;
	--container-width: 1240px;
	--container-padding-x: 20px;
	--section-padding-y: 30px;
	--transition-duration: 0.25s;
	--radius: 0.2rem;
	--body-color: var(--color-dark);
	--body-bg-color: var(--color-light);
	--link-color: var(--color-accent);
	--section-bg-color: var(--color-gray-light);
	--section-border-color: var(--color-gray-light);
	--menu-bg-hover-color: var(--color-accent);
	--menu-text-hover-color: var(--color-light);
	--aside-box-border-color: var(--color-gray-light);
	--aside-box-bg-color: var(--color-gray-light);
	--title-color: var(--color-accent);
	--title-first-word-color: var(--color-dark);
	--title-border-color: var(--color-gray-light);
	--date-color: var(--color-gray-dark);
	--age-color: var(--color-dark);
	--input-height-min: 2rem;
	--input-border-color: var(--color-gray-dark);
	--button-bg-color: var(--color-gray-dark);
	--button-text-color: var(--color-light);
	--button-bg-hover-color: var(--color-light);
	--button-text-hover-color: var(--color-gray-dark);
	--gallery-img-border-color: var(--color-accent);
	--image-border-color: var(--color-accent);
	--mobile-bg-color: var(--color-light);
	--special-button-text-color: black;
	--special-button-bg-color: white;
	--special-button-hover-text-color: white;
	--special-button-hover-bg-color: black;
}

/* UI */

.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	border: 0 !important;
	padding: 0 !important;
	white-space: nowrap !important;
	clip-path: inset(100%) !important;
	clip: rect(0 0 0 0) !important;
	overflow: hidden !important;
}

a {
	color: var(--color-accent);
	text-decoration: underline;
	transition: all 0.2s ease-in-out;
}

a:hover {
	opacity: 0.7;
}

.button {
	padding: 0;
	background-color: rgba(0, 0, 0, 0);
	border: none;
	min-height: var(--input-height-min);
	padding-inline: 1rem;
	border-radius: var(--radius);
	border: 1px solid var(--input-border-color);
	background-color: var(--button-bg-color);
	color: var(--button-text-color);
	transition: all 0.25s ease-in;
	cursor: pointer;
}

.button--accent {
	background-color: var(--color-accent);
	border: 1px solid var(--color-accent);
	color: var(--button-text-color);
}

@media (hover: hover) {
	.button:hover {
		color: var(--button-text-hover-color);
		background-color: var(--button-bg-hover-color);
	}
}
@media (hover: none) {
	.button:active {
		color: var(--button-text-hover-color);
		background-color: var(--button-bg-hover-color);
	}
}

.alert {
	padding: 1rem;
	border-radius: var(--radius);
}

.alert--success {
	background-color: green;
	border: 1px solid green;
	color: var(--button-text-color);
}

.alert--error {
	background-color: red;
	border: 1px solid red;
	color: var(--button-text-color);
}

.alert--info {
	background-color: var(--color-accent);
	border: 1px solid var(--color-accent);
	color: var(--button-text-color);
}

.page__content table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--input-border-color);
	font-size: 0.9rem;
}

.page__content th,
.page__content td {
	padding: 0.5rem;
	text-align: left;
	border-bottom: 1px solid var(--input-border-color);
}

.page__content th {
	background-color: var(--color-accent);
	color: white;
	border-bottom: 1px solid var(--input-border-color);
}

.page__content tr:nth-child(odd) {
	background-color: #ffffff;
}

.page__content tr:nth-child(even) {
	background-color: #f2f2f2;
}

.page__content tbody tr td[rowspan] {
	vertical-align: middle;
}

/* FORM */

.form__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding-top: 1rem;
}

.label {
	font-size: 0.9em;
}

.input {
	padding: 0;
	background-color: transparent;
	border: none;

	width: 100%;
	min-height: var(--input-height-min);
	border: 1px solid var(--input-border-color);
	border-radius: var(--radius);
	background-color: var(--color-light);
	padding-inline: 0.5rem;
	font-size: 0.9em;
}

.input:focus {
	outline: 1px solid var(--color-accent);
}

.input__group {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

/* PAGINATE */
.bx-pagination {
	margin: 10px 0;
}
.bx-pagination .bx-pagination-container {
	text-align: center;
	position: relative;
}
.bx-pagination .bx-pagination-container ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
}
.bx-pagination .bx-pagination-container ul li {
	display: inline-block;
	margin: 0 2px 15px 2px;
}
.bx-pagination .bx-pagination-container ul li span {
	-webkit-transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
	-moz-transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
	-ms-transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
	-o-transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
	transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease;
	background: #eff0f1;
	padding: 0 8px;
	display: block;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	font-size: 14px;
	border-radius: 16px;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-pagination .bx-pagination-container ul li a {
	text-decoration: none;
	display: block;
	border-radius: 16px;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	vertical-align: middle;
}
.bx-pagination .bx-pagination-container ul li a:hover span {
	background: #dadada;
}
.bx-pagination .bx-pagination-container ul li.bx-active span {
	background: var(--color-accent);
	color: #fff;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a span {
	background: #fff;
	border: 2px solid #eff0f1;
	line-height: 28px;
	padding: 0 18px;
	color: #444;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span {
	color: #aab1b4;
	background: #fff;
	border: 2px solid #eff0f1;
	line-height: 28px;
	padding: 0 18px;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span {
	background: #fff;
	border-color: #dadada;
	color: #000;
}

/*color schemes*/
.bx-pagination.bx-green .bx-pagination-container ul li.bx-active span {
	background: #3bc915;
	color: #fff;
}
.bx-pagination.bx-yellow .bx-pagination-container ul li.bx-active span {
	background: #f9a91d;
	color: #fff;
}
.bx-pagination.bx-red .bx-pagination-container ul li.bx-active span {
	background: #e22b2b;
	color: #fff;
}
.bx-pagination.bx-blue .bx-pagination-container ul li.bx-active span {
	background: var(--color-accent);
	color: #fff;
}

/* PAGE */

.hidden {
	display: none;
}

.scroll-lock {
	overflow: hidden;
}

.hidden {
	display: none;
}

.container {
	margin: 0 auto;
	padding: 0 1rem;
	max-width: 1240px;
	width: 100%;
}

.container--navigate {
	padding: 0;
}

.container__inner {
}

.container__inner--grid {
	display: grid;
	grid-template-columns: 1fr 270px;
	gap: 2rem;
	align-items: start;
	overflow: hidden;

	@media (max-width: 1020px) {
		grid-template-columns: 1fr 200px;
	}

	@media (max-width: 800px) {
		grid-template-columns: 1fr;
	}
}

.container__inner--voskresensk {
	margin-bottom: 2rem;
}

.box {
	padding: 1rem;
	border-radius: 0.25rem;
	background: #ffffff;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.box__title {
	margin: 0 0 1rem;
	text-align: center;
}

.aside {
	flex-shrink: 0;
}

.page {
	background-color: #ededed;
}

.page__header {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-color: #fff;
	display: grid;
}

.page__navigate {
	position: relative;
	background-color: var(--color-light);
	color: var(--color-accent);

	@media (max-width: 1024px) {
		display: none;
	}
}

.page__content {
	padding-top: 2rem;
	padding-bottom: 4rem;
}

.old-site {
	margin: 0.25rem 0;
}

.profile-link-box {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.profile-link {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	color: #fff;
	text-decoration: none;
}

.profile-link__icon {
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
}

.profile-link__text {
	display: block;

	@media (max-width: 750px) {
		display: none;
	}
}

.special-link {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	color: #fff;
	text-decoration: none;
}

.special-link__icon {
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
}

.special-link__text {
	display: block;

	@media (max-width: 1024px) {
		display: none;
	}
}

.social-link-list {
	display: flex;
	gap: 0.5rem;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
	text-decoration: none;
}

.social-link__icon {
	width: 2rem;
	height: 2rem;
}

.top {
	padding: 0.5rem 0;
	background-color: #157fc4;
}

.top__inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	gap: 2rem;
}

.top__social {
	justify-self: center;
}

.top__menu {
	display: flex;
	align-items: center;
	justify-self: right;
	gap: 1rem;
}

.top__special {
	justify-self: right;
}

.header {
	padding: 3rem 0;
	background-color: #fff;
}

.header__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2rem;

	@media (max-width: 1024px) {
		grid-template-columns: 2fr 1fr;
	}

	@media (max-width: 750px) {
		grid-template-columns: 1fr;
	}
}

.header__search {
	display: block;
}

.header__contacts {
	display: block;
	text-align: right;

	@media (max-width: 1024px) {
		display: none;
	}
}

.footer {
	padding: 4rem 0;
	background: #181818;
	color: #ffffff;
}

.footer__inner {
	padding-bottom: 2rem;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2rem;

	@media (max-width: 750px) {
		grid-template-columns: 1fr;
	}
}

.footer__text-box {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer__text {
	font-weight: bold;
}

.footer__text--small {
	font-weight: normal;
	font-size: 0.8rem;
}

.title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

/* PAGES */

.page-home {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.page-home__news {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;

	@media (max-width: 1000px) {
		grid-template-columns: 1fr;
	}
}

.search-page {
}

.search-page__form {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.search-page__input {
	max-width: 300px;
	width: 100%;
}

/* COMPONENTS */

/* NEWS-LIST */
.news-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 2rem;
}

.news-list__item {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 1rem;

	@media (max-width: 1100px) {
		grid-template-columns: 1fr;
	}

	@media (max-width: 992px) {
		grid-template-columns: 200px 1fr;
	}

	@media (max-width: 800px) {
		grid-template-columns: 1fr;
	}
}

.news-list__item--home {
	grid-template-columns: 1fr;
}

.news-list__item:not(:last-child) {
	padding-bottom: 2rem;
	border-bottom: 1px solid #ccc;
}

.news-list__item__no-image {
	grid-template-columns: 1fr;
}

.news-list__image {
	width: 100%;
	height: auto;
}

.news-list__text {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.news-list__text--home-small {
	font-size: 0.9rem;
}

.news-list__header {
	margin: 0;
	text-transform: none;
	line-height: normal;
}

.news-list__info {
	display: flex;
	gap: 1rem;
}

.news-list__svg {
	display: flex;
	gap: 0.25rem;
	align-items: center;
	font-size: 0.9rem;
	line-height: normal;
	color: #333;
}

.news-list__svg svg {
	width: 1.2em;
	aspect-ratio: 1;
}
/* END NEWS-LIST */

.banner-pb_image {
	width: 100% !important;
}

.menu-burger {
	display: none;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	background-color: transparent;
	border: none;
	cursor: pointer;
	color: var(--color-light);

	@media (max-width: 1024px) {
		display: flex;
	}
}

.menu-burger:hover {
	opacity: 0.8;
}

.menu-burger__icon {
	width: 2rem;
	height: 2rem;
}

.menu-burger__text {
	@media (max-width: 500px) {
		display: none;
	}
}

.search {
	display: flex;
}

.search__input {
	width: 100%;
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.search__button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.search-page__form {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.search-page__input {
	max-width: 300px;
	width: 100%;
}

.section-menu {
}

.section-menu__title {
	margin-top: 0;
	padding-bottom: 0.8rem;
	text-transform: none;
	text-align: center;
	border-bottom: 1px solid #ccc;
}

.section-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.card {
	padding: 1.5rem;
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.card--padding-xs {
	padding: 0.8rem;
}

/* MOBILE MENU */

.mobile-overlay {
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
	border: none;
	max-width: 100vw !important;
	max-height: 100vh !important;
	background-color: var(--mobile-bg-color);
}

.mobile-overlay__inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 14px 20px;
}

.mobile-overlay__header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 1rem;
}

.mobile-overlay__close-button-wrapper {
	display: flex;
	justify-content: end;
}

.mobile-overlay__close-button {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	border: none;
	cursor: pointer;
}

.mobile-overlay__close-button:hover {
	opacity: 0.8;
}

.mobile-overlay__close-icon {
	width: 2rem;
	height: 2rem;
	cursor: pointer;
}

.mobile-overlay__close-icon:hover {
	opacity: 0.8;
}

/* GOSUSLUGI */

.tts-tabs {
	background: #ffffff;
	color: #828282;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}
.tts-tabs h1,
.tts-tabs .h1,
.tts-tabs h2,
.tts-tabs .h2,
.tts-tabs h3,
.tts-tabs .h3 {
	color: #1c1c1c;
}
.tts-tabs-switchers {
	margin: 0;
	padding: 0;
	list-style: none;
	display: none;
}
.tts-tabs-switchers:before,
.tts-tabs-switchers:after {
	content: ' ';
	display: table;
}
.tts-tabs-switchers:after {
	clear: both;
}
.tts-desktop .tts-tabs-switchers {
	display: block;
}
@media (min-width: 768px) {
	.tts-tabs-switchers {
		display: block;
	}
}
.tts-tabs-switchers-wrapper {
	border-bottom: solid 1px #ededed;
}
.tts-tabs-switchers-wrapper:before,
.tts-tabs-switchers-wrapper:after {
	content: ' ';
	display: table;
}
.tts-tabs-switchers-wrapper:after {
	clear: both;
}
@media (max-width: 767px) {
	.tts-tabs-switchers-wrapper {
		padding: 20px;
	}
	.tts-tabs-switchers-wrapper > p:first-child {
		margin-top: 0;
	}
	.tts-tabs-switchers-wrapper > p:last-child {
		margin-bottom: 0;
	}
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 991px) {
	.tts-tabs-switchers-wrapper {
		padding: 10px;
	}
}
@media (max-width: 767px) and (min-width: 992px) and (max-width: 1279px) {
	.tts-tabs-switchers-wrapper {
		padding: 20px;
	}
}
@media (max-width: 767px) and (min-width: 1280px) {
	.tts-tabs-switchers-wrapper {
		padding: 30px;
	}
}
.tts-tabs-switchers-wrapper .tts-tabs-switchers {
	float: left;
}
.tts-tabs-switcher {
	color: rgba(21, 127, 196, 0.8);
	float: left;
	cursor: pointer;
	position: relative;
	border-bottom: solid 2px transparent;
	margin-bottom: -2px;
	font-size: 14px;
	line-height: 20px;
	padding: 20px 10px;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA7CAYAAAC69OBCAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAAANUlEQVQY02O4ffv2fyYGBoZ/TAwMDH9RWQjiDyoLJ/EblUUS8Yuw2C/yTEZzGk4CzasI4h8AUNo9C9Iwh+4AAAAASUVORK5CYII=')
		no-repeat 100% 0;
}
@media (min-width: 992px) {
	.tts-tabs-switcher {
		font-size: 18px;
		line-height: 20px;
		padding: 20px 15px;
	}
}
.tts-tabs-switcher.disabled,
.tts-tabs-switcher.active,
.tts-tabs-switcher.disabled:hover,
.tts-tabs-switcher.active:hover {
	cursor: default;
}
.tts-tabs-switcher.active {
	color: #1c1c1c;
	border-bottom-color: #157fc4;
}
.tts-tabs-switcher:hover {
	color: #1c1c1c;
}
.tts-tabs-item {
	display: none;
	padding: 1rem;
}
.tts-tabs-item p:first-child {
	margin-top: 0;
}
.tts-tabs-item p:last-child {
	margin-bottom: 0;
}
.tts-tabs-item.active {
	display: block;
}
.tts-tabs-select-wrapper {
	display: block;
}
.tts-desktop .tts-tabs-select-wrapper {
	display: none;
}
@media (min-width: 768px) {
	.tts-tabs-select-wrapper {
		display: none;
	}
}
.tts-tabs-right-block {
	margin-bottom: 20px;
	max-width: 180px;
}
@media (min-width: 768px) {
	.tts-tabs-right-block {
		float: right;
		margin-bottom: 0;
		padding: 10px 10px 0 10px;
	}
}
@media (min-width: 991px) {
	.tts-tabs-right-block {
		max-width: 90%;
	}
}
.tts-tabs-right-block .input {
	max-width: 100%;
	margin-bottom: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.tts-tabs-switcher.disabled,
.tts-tabs-switcher.disabled:hover {
	cursor: default;
}
/* .tts-tabs {
		&-switchers {
			margin: 0;
			padding: 0 0 0 10px;
			list-style: none;
			border-bottom: solid 1px @gray;
			display: none;

			.clearfix;

			.tts-desktop & {
				display: block;
			}

			@media (min-width: @screenTablet) {
				display: block;
			}

			&-wrapper {
				.clearfix;

				@media (max-width: @screenPhoneMax) {
					.white-box;
					.padding-box;
					.col-margin-bottom;
				}

				.tts-tabs-switchers {
					float: left;
				}
			} //.tts-tabs-switchers-wrapper

		} //.tts-tabs-switchers

		&-switcher {
			padding: 15px;
			float: left;
			cursor: pointer;
			position: relative;
			bottom: -1px;
			background: @white;
			margin-right: 5px;
			border-radius: 4px 4px 0 0;
			border-top: solid 3px transparent;
			.box-shadow(~"0 -3px 6px rgba(0,0,0,.1), inset 0 -2px 4px rgba(0,0,0,.05)");
			.transition;

			&.disabled,
			&.active {
				&,
				&:hover {
					cursor: default;
				} //.tts-tabs-switcher.disabled, .tts-tabs-switcher.disabled:hover, .tts-tabs-switcher.active, .tts-tabs-switcher.active:hover
			}
			&.active,
			&:hover {
				.box-shadow(~"0 -3px 6px rgba(0,0,0,.1)");
			}
			&:hover {
				color: @primary;
				border-top-color:  @secondary;
			}
			&.active {
				color: @primary;
				border-top-color:  @primary;
			}


		} //.tts-tabs-switcher

		&-item {
			display: none;
			p:first-child {
				margin-top: 0;
			}
			p:last-child {
				margin-bottom: 0;
			}


			&.active {
				display: block;
			}
		} //.tts-tabs-item

		&-select {
			&-wrapper {
				display: block;
				.tts-desktop & {
					display: none;
				}

				@media (min-width: @screenTablet) {
					display: none;
				}
			} //.tts-tabs-select-wrapper
		} //.tts-tabs-select


		&-right-block {
			margin-bottom: 20px;
			max-width: 180px;

			@media (min-width: @screenTablet) {
				float: right;
				margin-bottom: 0;
			}
			@media (min-width: @screenTabletMax) {
				max-width: 90%;
			}
			.input {
				max-width: 100%;
				.box-sizing;
			}
		} //.tts-tabs-right-block

	} //.tts-tabs */
.tts-tabs-switcher.disabled,
.tts-tabs-switcher.disabled:hover {
	cursor: default;
}

.arrow-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 0;
	padding: 0;

	@media (max-width: 800px) {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   BUTTONS */
/* ========================================================================== */
.btn {
	display: inline-block;
	color: #157fc4;
	margin-bottom: 0;
	font:
		normal 16px/40px 'Open Sans',
		OpenSans,
		Arial,
		sans-serif;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	background: #dcecf6;
	border: 0;
	text-decoration: none;
	white-space: nowrap;
	height: 40px;
	padding: 0 20px;
	border-radius: 20px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.btn:focus {
	outline: 0;
	box-shadow: 0 0 0 2px rgba(21, 127, 196, 0.5);
}
.btn:hover,
.btn:focus {
	color: #ffffff;
	background: #157fc4;
	text-decoration: none;
}

.antibtn:hover,
.antibtn:focus {
	color: #000;
	background: #fff;
	text-decoration: none;
}

.btn:active,
.btn.active {
	outline: 0;
	background: #106196;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.65;
}
.btn-cta {
	background: #ffffff;
	color: #157fc4;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
.btn-cta:hover,
.btn-cta:focus {
	color: #157fc4;
	background: #ffffff;
	text-decoration: none;
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.2);
}
.btn-cta:active,
.btn-cta.active {
	color: #157fc4;
	background: #ffffff;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.btn-square {
	border-radius: 3px;
}
.btn-dark {
	background: rgba(24, 24, 24, 0.3);
	color: #ffffff;
}
.btn-dark:hover,
.btn-dark:focus {
	color: #ffffff;
	background: rgba(24, 24, 24, 0.5);
	text-decoration: none;
}
.btn-dark:active,
.btn-dark.active {
	color: #ffffff;
	background: rgba(24, 24, 24, 0.7);
}
.btn-search {
	background: #157fc4;
	color: #ffffff;
}
.btn-search:hover,
.btn-search:focus {
	color: #ffffff;
	background: #106196;
	text-decoration: none;
}
.btn-search:active,
.btn-search.active {
	color: #ffffff;
	background: #45a3ba;
}
.btn-long {
	padding-left: 40px;
	padding-right: 40px;
}
.btn-outline {
	background-color: transparent;
	color: #828282;
	border: solid 1px #b5b5b5;
	line-height: 38px;
}
.btn-outline:hover,
.btn-outline:focus {
	color: #828282;
	background: #ededed;
	text-decoration: none;
	border-color: #b5b5b5;
}
.btn-outline:active,
.btn-outline.active {
	color: #1c1c1c;
	background: #ededed;
	text-decoration: none;
}
.btn-group:before,
.btn-group:after {
	content: ' ';
	display: table;
}
.btn-group:after {
	clear: both;
}
.btn-group .btn {
	float: left;
	border-radius: 0;
}
.btn-group .btn + .btn {
	margin-left: -1px;
}
.btn-group .btn:first-child {
	border-radius: 20px 0 0 20px;
}
.btn-group .btn:last-child {
	border-radius: 0 20px 20px 0;
}
.btn-group .btn.btn-square:first-child {
	border-radius: 3px 0 0 3px;
}
.btn-group .btn.btn-square:last-child {
	border-radius: 0 3px 3px 0;
}
.btn-link {
	color: #157fc4;
	cursor: pointer;
	border-radius: 0;
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
	background-color: transparent;
	box-shadow: none;
}
.btn-link:hover,
.btn-link:focus {
	color: #157fc4;
	text-decoration: underline;
	background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
	background-color: transparent;
	color: #157fc4;
	text-decoration: none;
}
.btn-block {
	display: block;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn-block + .btn-block {
	margin-top: 5px;
}
