@import url('/css/font_Montserrat.css');

@font-face {
	font-family: 'Rex Bold';
	font-display: swap;
	src: url('/fonts/rex-bold.otf');
}

:root {
	--color-blue-light: #6ED6D6;
	--color-blue: #1DB5BF;
	--color-blue-dark: #1478A3;
	--color-purple-light: #929CFF;
	--color-purple: #886ED0;
	--color-purple-dark: #6B4BC6;
	--color-red: #F56982;
	--color-pink-dark: #D23B83;
	--color-yellow: #EFB84D;
	--color-yellow-2: #DAA30C;

	--color-white: #FFF;
	--color-translucent: #FFFFFF3F;
	--color-gray-xlight: #F3FAFA;
	--color-gray-light: #E7F0F0;
	--color-gray-6: #AACCCC;
	--color-gray-3: #91A8A8;

	--color-gray: #C4C4C4;
	--color-gray-dark: #8C8C8C;
	--color-brown: #434343;

	/* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
	--gradient-blue: radial-gradient(
			108.62% 432.23% at 0% 0%,
			#6AD6D6A0 0%,
			#1478A300 100%
		),
		var(--color-blue);

	--gradient-blue-dark: radial-gradient(
			108.62% 432.23% at 0% 0%,
			#6AD6D6A0 0%,
			#1478A3FF 100%
		),
		#1D87B4;

	--gradient-red: radial-gradient(
			108.22% 278.22% at 0.03% 27.26%,
			#EFB84D99 0%,
			#EFB84D00 100%
		),
		var(--color-red);

	--gradient-purple: radial-gradient(
			108.62% 432.23% at 0% 0%,
			#67B4FB99 0%,
			#A867FB00 100%
		),
		var(--color-purple);

	--gradient-purple-dark: radial-gradient(
			108.62% 432.23% at 0% 0%,
			#67B4FB99 0%,
			#A867FB00 100%
		),
		var(--color-purple-dark);

	--gradient-gray: linear-gradient(0deg, #E7F0F0, #E7F0F0),
		var(--color-blue);

	--gradient-pink: radial-gradient(
			108.62% 432.23% at 0% 0%,
			rgba(233, 91, 159, 0.6) 0%,
			rgba(233, 91, 159, 0) 68.75%
		),
		linear-gradient(0deg, #F56982 0%, #F56982 100%),
		radial-gradient(
			433.88% 195.76% at 0% 0%,
			rgba(103, 180, 251, 0.6) 0%,
			rgba(168, 103, 251, 0) 100%
		),
		linear-gradient(0deg, #886ED0 0%, #886ED0 100%),
		radial-gradient(
			433.88% 195.76% at 0% 0%,
			rgba(106, 229, 214, 0.6) 0%,
			rgba(23, 163, 193, 0) 100%
		),
		linear-gradient(0deg, #1DB5BF 0%, #1DB5BF 100%),
		#FFF;

	--gradient-pink-dark: linear-gradient(90deg, #F56982 0%, #D23B83 100%),
		var(--color-pink-dark);
}

::-moz-selection{background:var(--color-blue);color:var(--color-white)}
::selection{background:var(--color-blue);color:var(--color-white)}

html {
	background: none;
	color: var(--color-brown);
	font: normal 500 16px/1.5 'Montserrat', system-ui, sans-serif;
	hyphenate-limit-chars: 6 3 2;
	hyphens: auto;
	text-decoration-skip-ink: all;
	text-size-adjust: 100%;
}
img {
	border: 0;
	display: inline-block;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
h1 {
	font-size: 1.875rem;
	font-weight: 600;
	text-wrap: balance;
}
h2 {
	font-size: 1.625rem;
	font-weight: 500;
	text-wrap: balance;
}
h3 {
	font-size: 1.25rem;
	font-weight: 600;
	text-wrap: balance;
}
h4 {
	font-size: 1.125rem;
	font-weight: 700;
	text-wrap: balance;
}
hr {
	background-color: #5AF;
	color: #5AF;
	margin: .5rem 0 1rem;
	width: 100%;
	height: 1px;
}
a {
	text-decoration: none;
}

.input-right{box-shadow:inset 0 0 0 1px var(--color-blue),inset 0 0 4px 2px var(--color-blue) !important}
.input-wrong{box-shadow:inset 0 0 0 1px var(--color-red),inset 0 0 4px 2px var(--color-red) !important}

.big-title {
	color: var(--color-blue);
	font-size: 1.875rem;
	font-weight: 600;
	text-transform: uppercase;
}

.link {
	color: var(--color-blue);
	cursor: pointer;
	text-decoration: none;
	transition: color .4s;
}
.link:active,
.link:focus-visible,
.link:hover {
	color: var(--color-blue-dark);
}

.link_dark {
	color: var(--color-brown);
}
.link_dark:active,
.link_dark:focus-visible,
.link_dark:hover {
	color: var(--color-gray-dark);
}

.link_accent {
	color: #886ED0;
	font-weight: 600;
}

/* внешняя ссылка */
.link_external {
	display: inline-flex;
	align-items: center;
}
.link_external .ico,
.link_external .svg-ico {
	fill: var(--color-blue);
	margin-left: 4px;
	width: 12px;
	height: 12px;
}
.link_external.link_dark .ico,
.link_external.link_dark .svg-ico {
	fill: var(--color-brown);
}
.link_external:active .ico,
.link_external:focus-visible .ico,
.link_external:hover .ico{
	fill: var(--color-blue-dark);
}

.link_share {
	background: var(--color-gray-6);
	border-radius: 50%;
	width: 46px;
	height: 46px;
}

.attention-block {
	border-radius: 6px;
	box-sizing: border-box;
	display: flex;
	gap: 10px;
	padding: 0.75rem 10px;
	font-size: 0.875rem;
}
.attention-block:not(:first-child) {
	margin-top: 1rem;
}
.attention-block:not(:last-child) {
	margin-bottom: 1rem;
}
.attention-block > .ico {
	flex-shrink: 0;
	position: relative;
}
.attention-block_info {
	background-color: #ECFFF7;
}
.attention-block_warning {
	background: #FFF7E2;
}
.attention-block_error {
	background-color: #FFF0F0;
}

.attention-block_link {
	text-decoration: underline;
	text-underline-offset: 2px;
}
.attention-block_warning .attention-block_link {
	color: var(--color-yellow-2);
}
.attention-block_warning .attention-block_link:hover {
	color: var(--color-yellow);
}

.full-width-mob {
	width: 100%;
}

.adaptive-btn-in-mobile {
	margin-bottom: 10px;
	width: 100%;
}

.bordered-row + .bordered-row {
	border-top: 2px dashed var(--color-gray-light);
	margin-top: 1rem;
	padding-top: 1rem;
}

.blockUI.blockMsg.blockPage {
	-webkit-filter: drop-shadow(0 4px 8px rgba(0,0,0,.4));
	        filter: drop-shadow(0 4px 8px rgba(0,0,0,.4));
	scrollbar-color: var(--color-blue) var(--color-gray-xlight);
    scrollbar-width: thin;
}
/* svg иконки */
.svg-ico,
.svg-ico-bordered__img {
	flex: 0 0 auto;
	transition: .4s;
	width: 20px;
	height: 20px;
}
.svg-ico-bordered__bg {
	width: 30px;
	height: 30px;
}
.svg-ico-bordered {
	position: relative;
	width: fit-content;
	user-select: none;
}
.svg-ico-bordered__text {
	position: absolute;
}
.svg-ico-bordered .svg-ico-bordered__bg {
	display: block;
}
.svg-ico-bordered .svg-ico-bordered__img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.svg-ico-bordered_arrow .svg-ico-bordered__bg {
	fill: var(--color-gray-light);
	stroke: var(--color-gray);
}
.svg-ico-bordered_arrow .svg-ico-bordered__img {
	fill: #535353;
	height: 7px;
	top: 48%;
	width: 10px;
}

.svg-ico-square {
	border: 1px solid var(--color-gray);
	border-radius: 6px;
	height: 22px;
	width: 22px;
}
.svg-ico-square .svg-ico-square__img {
	box-sizing: border-box;
	padding: 4px 3px;
	width: 100px;
	max-height: 100%;
	transition: .4s;
}
.svg-ico-square__blue {
	fill: var(--color-blue);
}
.svg-ico-square__gray {
	fill: var(--color-gray);
}

.checkbox {
	display: inline-block;
	font-size: 0;
	margin: 5px 0;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.checkbox__choice {
	display: none;
}
.checkbox__span {
	cursor: pointer;
	display: block;
	font-size: .875rem;
	line-height: 1.125rem;
	padding-left: 25px;
	box-sizing: border-box;
	position: relative;
	transition: .2s;
}
.checkbox__span_nowrap {
	white-space: nowrap;
}
.checkbox__span::before {
	background: #FFF;
	border: 1px solid #D5D5D5;
	border-radius: 2px;
	box-sizing: border-box;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 18px;
	height: 18px;
}
.checkbox__choice:checked + .checkbox__span::before {
	background: var(--gradient-blue);
	border: none;
}
.checkbox__choice:checked + .checkbox__span::after {
	background: transparent;
	border: 0 solid #FFF;
	border-bottom-width: 2px;
	border-left-width: 2px;
	content: '';
	position: absolute;
	left: 4px;
	top: 5px;
	transform: rotate(-45deg);
	width: 8px;
	height: 4px;
}
.checkbox-circle__span::before {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border-width: 2px;
}
.checkbox__choice:checked + .checkbox-circle__span::before {
	background: transparent;
	border: 2px solid #D5D5D5;
}
.checkbox__choice:checked + .checkbox-circle__span::after {
	background: var(--color-blue);
	border: none;
	border-radius: 50%;
	content: '';
	position: absolute;
	left: 4px;
	top: 4px;
	transform: none;
	width: 8px;
	height: 8px;
}

.difficulty-color-easy .checkbox__choice:checked + .checkbox__span--difficulty::before {
	background: #EFD54D;
}
.difficulty-color-mild .checkbox__choice:checked + .checkbox__span--difficulty::before {
	background: #EFB84D;
}
.difficulty-color-middle .checkbox__choice:checked + .checkbox__span--difficulty::before {
	background: #EF914D;
}
.difficulty-color-hard .checkbox__choice:checked + .checkbox__span--difficulty::before {
	background: #E56A77;
}
.difficulty-color-unknown .checkbox__choice:checked + .checkbox__span--difficulty::before {
	background: var(--color-gray-light);
}

.checkbox-switch {
	cursor: pointer;
	display: inline-flex;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.checkbox-switch__choice {
	display: none;
}
.checkbox-switch__label {
	color: #555;
	display: inline-block;
	font-size: .875rem;
	line-height: 20px;
	margin: 0 5px;
	position: relative;
	transition: .2s;
	width: 42px;
	height: 22px;
}
.checkbox-switch:hover .checkbox-switch__label,
.checkbox-switch__choice:checked + .switch-no + .checkbox-switch__label {
	color: #000;
}
.checkbox-switch__label::before,
.checkbox-switch__label::after {
	border: 0;
	box-sizing: border-box;
	position: absolute;
	transform: translateY(-50%);
	transition: .2s;
	top: 50%;
}
.checkbox-switch__label::before {
	content: '';
	background-color: #aabfd1;
	border-radius: 20px;
	height: 22px;
	left: 0;
	width: 42px;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
.checkbox-switch__label::after {
	background: #FFF;
	border-radius: 50%;
	content: '';
	height: 16px;
	left: 3px;
	width: 16px;
}
.checkbox-switch__choice:checked + .switch-no + .checkbox-switch__label::before {
	background: var(--gradient-blue);
	content: '';
	padding: 0 20px 0 2px;
}
.checkbox-switch__choice:checked + .checkbox-switch__label::before {
	background: var(--gradient-blue);
}
.checkbox-switch__choice:checked + .switch-no + .checkbox-switch__label::after {
	left: 23px;
}
.checkbox-switch__choice:checked + .checkbox-switch__label::after {
	left: 8px;
}
.switch-yes,
.switch-no {
	padding-right: .5em;
	color: var(--color-gray-dark);
	font-weight: 600;
}

.switch-actions__text {
	padding-left: 10px;
}

.daterangepicker {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.daterangepicker .drp-buttons .drp-btn {
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: .875rem;
	margin-left: 10px;
	padding: 10px 15px;
}
.daterangepicker .drp-buttons .btn-cancel {
	background-color: var(--color-gray-3);
	color:var(--color-white);
}
.daterangepicker .drp-buttons .btn-apply {
	background: var(--gradient-blue);
	color: var(--color-white);
	font-weight: 600;
}
.daterangepicker .drp-buttons .btn-apply:disabled {
	cursor: not-allowed;
	opacity: .5;
}

.daterangepicker__block {
	border: 1px solid #DEE8E8;
	border-radius: 6px;
	box-sizing: border-box;
	background: #FFF;
	height: 49px;
	width: 240px;
}
.daterangepicker__block_item {
	padding: 13px 5px 13px 11px;
	cursor: pointer;
}
.search-dates__date-default {
	color: var(--color-gray-dark);
}
.search-dates__dash {
	background-color: var(--color-gray);
	height: 1px;
	margin: 0 5px;
	width: 16px;
}
.daterange__text {
	color: var(--color-brown);
	letter-spacing: .02em;
	line-height: 21px;
	margin: 14px 18px 0 0;
}

input[type="time"]::-webkit-calendar-picker-indicator {
	background: none;
	display: none;
}

.count-blk {
	display: block;
	max-width: 200px;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.count-blk__but:first-child {
	position: absolute;
	left: 0;
}
.count-blk__but:last-child {
	position: absolute;
	right: 0;
}
.count-blk > a {
	background: var(--color-gray);
	color: #000;
	font-size: 1.2rem;
	height: 100%;
	outline: none;
	text-decoration: none;
	top: 50%;
	transform: translateY(-50%);
	width: 30%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.count-blk__field {
	background: var(--color-gray);
	border: 1px solid #DEE8E8;
	border-radius: 30px;
	box-sizing: border-box;
	color: var(--color-gray);
	font-size: 1.125rem;
	line-height: 100%;
	outline: none;
	padding: 5px;
	text-align: center;
	width: 100%;
}

.js__tab-header:not(.active),
.js__form-tab-header:not(.active),
.js__product-tab-header:not(.active),
.js__day-of-program--label:not(.active) {
	cursor: pointer;
}
.js__tab-content:not(.active),
.js__form-tab-content:not(.active),
.js__product-tab-content:not(.active),
.js__day-of-program:not(.active) {
	display: none;
}

.text-spoiler__content {
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}
.text-spoiler.active .text-spoiler__content {
	max-height: none !important;
}
.js__text-spoiler--enabled:not(.active) .text-spoiler__content::after {
	background: linear-gradient(0deg, rgba(255, 255, 255, .95), transparent);
	bottom: 0;
	content: '';
	height: 25px;
	left: 0;
	position: absolute;
	right: 0;
}
.text-spoiler__btn {
	color: var(--color-blue);
	font-size: .875rem;
	font-weight: 600;
	margin-top: 5px;
	padding: 4px 0;
}
.text-spoiler__btn::before {
	content: attr(data-hidden-text);
}
.text-spoiler__btn .svg-ico-bordered_arrow {
	margin-left: 10px;
}
.text-spoiler.active .text-spoiler__btn::before {
	content: attr(data-active-text);
}
.text-spoiler:not(.active) .text-spoiler__btn .svg-ico-bordered_arrow {
	transform: scale(-1, -1);
}

#toTop {
	z-index: 1001;
}

.container {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	min-width: 320px;
	max-width: 1320px;
}

@media (max-width: 1399px) {
	.container {
		max-width: 1140px;
	}
}
@media (max-width: 1199px) {
	.container {
		max-width: 960px;
	}
}
@media (max-width: 991px) {
	.container {
		max-width: 720px;
	}
	.grid-section .container {
		max-width: calc(100% - 40px);
	}
}
@media (max-width: 767px) {
	.container {
		max-width: 540px;
	}
}
@media (max-width: 575px) {
	.container {
		width: calc(100% - 16px);
	}
}

.shadow-block {
	background-color: var(--color-white);
	box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
	box-sizing: border-box;
	border-radius: 6px;
}
.shadow-block_center {
	background-color: var(--color-white);
	box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
	box-sizing: border-box;
	border-radius: 6px;
	padding: 16px;
}
.border-block {
	box-sizing: border-box;
	border-radius: 6px;
	border: 1px solid var(--color-gray-light);
}
.blue-gradient-block {
	padding: 10px;
	box-sizing: border-box;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
	background: var(--gradient-blue);
	border-radius: 6px;
}
.gray-block {
	padding: 10px 12px;
	box-sizing: border-box;
	border-radius: 6px;
	background: var(--color-gray-light);
}

.form-container {
	margin: 30px auto;
	padding: 20px;
}
.form-container_small {
	max-width: 560px;
}
.form-container_medium {
	max-width: 900px;
}


.page-content {
	background-color: var(--color-gray-xlight);
	margin: 0 auto;
	width: 100%;
	min-width: 320px;
	min-height: 100%
}

.main-content {
	visibility: hidden;
}
.main-section {
	margin: 1.25rem 0 2.5rem;
}
.aside-column,
.content-column {
	margin-bottom: 1.25rem;
	width: 100%;
}
.aside-column {
	min-width: 300px;
	display: none;
}
.aside-column.in-profile {
	display: flex;
}
.aside-filter {
	width: 100%;
	min-width: 300px;
}

.main{flex:1 0 auto}
.header,.footer{flex:0 0 auto}

.header {
	background: url('/img/header_footer_bg.webp') no-repeat 50% -70px;
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0.625rem 0;
	height: 60px;
	z-index: 1003;
}
.header-main-page {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	padding: 0.625rem 0;
	width: 100%;
	z-index: 999;
}

.header__logo {
	width: 116px;
}
.header__logo-text {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .02em;
	margin-top: 2px;
	white-space: nowrap;
}
.header__logo-img {
	display: block;
}
.header-title {
	font-size: 1.25rem;
	line-height: 1.5rem;
}
.have-news-marker::after {
	background: var(--gradient-red);
	border: 1px solid var(--color-white);
	border-radius: 50%;
	content: '';
	position: absolute;
	right: 8px;
	top: 2px;
	width: 8px;
	height: 8px;
	z-index: 1;
}

.header .header__menu-button,
.header .header__menu-button:hover,
.header .header__menu-button:active {
	background: unset;
}
.header.active .header__menu-button,
.header-main-page.active .header__menu-button {
	z-index: 1000;
}

.header-btn {
	font-size: 0;
	transition: .4s;
}
.header-btn.button {
	display: flex;
	padding: 0 12px 0 4px;
}
.header-btn .ico-holder {
	width: 44px;
	height: 44px;
}
.header-btn__text {
	font-weight: 600;
	white-space: nowrap;
	letter-spacing: .02em;
}
.header-btn_partner .link {
	margin-left: 6px;
}
.header-btn_partner .header-btn__text {
	color: #FFF;
	margin-left: 6px;
}
.header-btn_login .header-btn__text {
	width: 55px;
}

.breadcrumb {
	color: var(--color-gray-3);
	font-size: 0.875rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}
.breadcrumb > span::after {
	content: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSIxMSIgdmlld0JveD0iMCAwIDYgMTEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEuMTkxNDMgMTAuMzQ0NkMxLjI1NTY5IDEwLjMwMzkgMi4zMzk2NyA5LjIzNDM1IDMuNjAwMjQgNy45Njc4OUM1Ljg1NzE0IDUuNzAwNDcgNS44OTI1NCA1LjY2MjU1IDUuOTExOTcgNS40ODk1M0M1LjkyNTE4IDUuMzcyMjEgNS45MTA2NSA1LjI2OTM0IDUuODY4MjQgNS4xNzk3MUM1LjgzMjQyIDUuMTAzOTkgNC44MDkxMSA0LjA0ODgxIDMuNTE3NTcgMi43NTU4OEMxLjA1MzA3IDAuMjg4NzI1IDEuMTQ2NjkgMC4zNjg5MDUgMC44MTU5OTcgMC40NDE3NDFDMC42NzUzMDEgMC40NzI3NSAwLjIyODUyMyAwLjg3NDg1NiAwLjEzNjExNSAxLjA1MzY5QzAuMDcxMjc3MyAxLjE3OTEzIDAuMDY2MDk3OSAxLjM1MDc3IDAuMTIyNjAyIDEuNTAyMjNDMC4xNDUxODkgMS41NjI2OCAxLjAxNjgyIDIuNDY5MDIgMi4wNTk2NCAzLjUxNjI3TDMuOTU1NTkgNS40MjAzN0wyLjA2MTYyIDcuMzI0MDhDMS4wMTk5IDguMzcxMTMgMC4xNDgyNjYgOS4yNjYxOCAwLjEyNDU4OSA5LjMxMzA5QzAuMDY0ODUyNiA5LjQzMTYyIDAuMDcwODg4NSA5LjY2MDQ0IDAuMTM3MDUgOS43ODYyN0MwLjIxNjQ1MiA5LjkzNzI2IDAuNjI2MzkxIDEwLjMyOTEgMC43NTU4NzIgMTAuMzc3OEMwLjkxNzk0NyAxMC40Mzg3IDEuMDYwMDggMTAuNDI3OSAxLjE5MTQzIDEwLjM0NDZaIiBmaWxsPSIjQUFDQ0NFIi8+DQo8L3N2Zz4NCg==');
	font-size: .875rem;
	margin: 0 5px;
	vertical-align: middle;
}
.breadcrumb a {
	color: var(--color-brown);
}
.breadcrumb a:active,
.breadcrumb a:focus-visible,
.breadcrumb a:hover {
	color: var(--color-blue);
}

.footer__top {
	background: url('/img/header_footer_bg.webp') no-repeat 50% 0;
	background-size: cover;
	box-sizing: border-box;
	padding: 25px 0;
}
.footer__bottom {
	background-color: #101621;
	color: var(--color-white);
	letter-spacing: 0.04em;
	line-height: 20px;
	padding: 10px 0;
	text-align: center;
}
.footer__bottom .container {
	justify-content: center;
}
.footer__bottom_copywriter {
	font-size: .75rem;
}
.footer__logo {
	display: inline-block;
}
.footer__logo > img {
	display: block;
}
.footer__nav {
	column-gap: 20px;
	width: 100%;
}
.footer__nav-item {
	color: var(--color-white);
	font-size: .875rem;
	letter-spacing: 0.04em;
	margin: 2px 0;
	padding: 3px 8px 3px 0;
	text-decoration: none;
	max-width: 45%;
}
.footer__nav-item:hover {
	text-decoration: underline;
}
.footer__right-content {
	row-gap: 15px;
}
.footer__soc-networks .ico-holder:hover > .fill_blue-gradient {
	fill: url(#purple-gradient) var(--color-purple);
}

.ae-dev {
	display: flex;
	align-items: flex-end;
	font-size: .875rem;
	white-space: nowrap;
}
.ae-sign {
	display: flex;
	color: var(--color-white);
	text-decoration: none;
}
.ae-sign::before {
	background: url('/img/ae-logo_white.svg') 0 0 no-repeat;
	background-size: 100%;
	content: '';
	width: 116px;
	height: 20px;
}
.ae-sign::after {
	content: '- Разработка сайта';
}
.ae-version {}

.text-content {
	overflow: auto;
	text-align: justify;
	max-width: 100%;
	word-break: break-word;
}
.text-content a {
	color: var(--color-blue);
	transition: color .4s;
}
.text-content a:not(.btn):active,
.text-content a:not(.btn):focus-visible,
.text-content a:not(.btn):hover {
	text-decoration: underline
}
.text-content blockquote,
.text-content p,
.text-content ol,
.text-content ul:not(.tree) {
	line-height: 1.5em;
	margin: 0 0 0.625em
}
.text-content ol ol,
.text-content ol ul,
.text-content ul ol,
.text-content ul:not(.tree) ul:not(.tree) {
	margin-left: 10px
}
.text-content ol {
	list-style: decimal inside
}
.text-content ol>li,
.text-content ul:not(.tree)>li {
	margin: .3em 0;
	padding-left: 20px;
	position: relative;
}
.text-content ol>li {
	list-style: decimal inside
}
.text-content ul>li::before {
	color: #0CF;
	content: '\2713';
	font: 900 1rem/0 Arial, sans-serif;
	top: 9px;
	left: 2px;
	position: absolute;
}
.text-content em {
	font-style: italic
}
.text-content strong {
	font-weight: 700
}

.oauth-link {
	display: block;
}
.oauth-link:active .ico_bg {
	fill: var(--color-purple);
}
.oauth-link:hover {
	-webkit-filter: drop-shadow(0 2px 2px rgba(0,0,0,.2));
	        filter: drop-shadow(0 2px 2px rgba(0,0,0,.2));
}
.oauth-link:hover .ico_bg {
	fill: var(--color-blue);
}
.oauth-link:focus-visible {
	outline: solid var(--color-blue);
}
.oauth-link_yandex:hover .ico_bg {
	fill: #F70000;
}
.oauth-link_vk:hover .ico_bg {
	fill: #416BA6;
}
.oauth-link_ok:hover .ico_bg {
	fill: #EF8E1D;
}
.oauth-link_mailru:hover .ico_bg {
	fill: #005FF9;
}
.applied-filters__note {
	color: var(--color-gray-dark);
	font-size: .875rem;
	letter-spacing: .03em;
}
.applied-filters__insert {
	gap: 10px;
}
.applied-filter {
	background: var(--color-gray-light);
	color: #535353;
	border-radius: 6px;
	font-weight: 500;
	gap: 5px;
	padding: 5px 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.applied-filters__btn-remove {
	background: var(--color-white);
	border-radius: 50%;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
	padding: 10px;
	height: 20px;
	width: 20px;
}
.applied-filters__btn-remove::before,
.applied-filters__btn-remove::after {
	background: var(--color-brown);
	border-radius: 30px;
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 1px;
}
.applied-filters__btn-remove::after {
	transform: translate(-50%, -50%) rotate(45deg);
}
.applied-filters__btn-remove::before {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.separate-block-solid {
	border-bottom: 2px solid #C8D7D7;
	margin: 30px auto;
	opacity: .8;
}
.separate-block-solid-2px,
.separate-block-solid-4px {
	display: block;
	border-bottom: 2px solid var(--color-gray-light);
	border-radius: 2px;
	margin: 15px auto;
}
.separate-block-solid-4px {
	border-bottom-width: 4px;
}
.separate-block-solid.separate-block-solid--small-offset {
	margin: 10px auto;
}
.separate-block-dotted {
	border-bottom: 2px dashed #C8D7D7;
	margin: 30px auto;
	opacity: .8;
}
.separate-block-small {
	border: 1px solid #DEE8E8;
	margin: 20px 0;
}

.tab-header-tour-program {
	margin-bottom: 5px;
}
.tab-header-tour-program.active .ico_bg {
	fill: url(#blue-gradient) var(--color-blue);
}
.tab-header-tour-program .ico_text {
	color: var(--color-brown);
	font-size: .75rem;
}
.tab-header-tour-program.active .ico_text {
	color: #FFF;
}

.form__input-file {
	position: absolute;
	visibility: hidden
}

/* Модальный диалог */
.modal-dialog {
	cursor: default;
	display: none;
	max-width: 100%;
	position: relative;
	width: 500px;
}
.modal-dialog__content,
.modal-dialog__content-after-send {
	background-color: #fff;
	box-sizing: border-box;
	padding: 20px 15px;
}
.modal-dialog__content .button {
	white-space: unset;
}

.modal-dialog--second-view .modal-dialog__content,
.modal-dialog--second-view .modal-dialog__content-after-send {
	border-radius: 6px;
	font-size: .875rem;
	overflow: hidden;
	padding: 0;
}
.modal-dialog--second-view__content {
	padding: 20px 15px;
}
.modal-dialog--second-view__header {
	background: var(--color-blue);
	box-sizing: border-box;
	color: var(--color-white);
	font-size: 1.65rem;
	text-align: center;
	padding: 20px;
}

.modal-dialog__with-content-after-send:not(.active) .modal-dialog__content {
	display: none;
}
.modal-dialog__with-content-after-send.active .modal-dialog__content-after-send {
	display: none;
}
.modal-dialog__content-after-send {
	letter-spacing: .02em;
}
.modal-dialog__content-after-send .modal-dialog--second-view__header {
	font-size: 26px;
}
.modal-dialog__content-after-send .text {
	text-align: center;
	font-size: 16px;
	color: var(--color-brown);
	line-height: 20px;
	word-break: break-word;
}

.closure {
	background: var(--color-white);
	border-radius: 20px;
	box-sizing: border-box;
	color: #777;
	cursor: pointer;
	position: absolute;
	right: 5px;
	top: 5px;
	text-decoration: none;
	transition: .4s;
	width: 22px;
	height: 22px;
}
.closure:hover,
.closure:active {
	background: var(--color-gray-light);
	-webkit-filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
	        filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.closure::before,
.closure::after {
	background: var(--color-blue);
	content: '';
	position: absolute !important;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 1px;
	z-index: 50;
}
.closure::before {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.closure::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

/* виджет лк в шапке сайта */
.account-widget__btn {
	box-sizing: border-box;
	transition: .4s;
}
.account-widget__btn .ico-holder {
	width: 44px;
	height: 44px;
}
.account-widget__btn_notify {
	position: relative;
	transition: .4s;
}
.account-widget__btn_notify .ico-holder > .ico_bg {
	fill: var(--color-gray);
}
.account-widget__btn_notify .ico-holder > .ico_fg {
	width: 30px;
	height: 30px;
}
.account-widget__btn_notify .have-news-marker .ico_bg {
	fill: url(#blue-gradient) var(--color-blue);
}
.account-widget__btn_notify .have-news-marker::after {
	right: 7px;
	top: 2px;
}

.account-nav {
	background-color: var(--color-white);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	border-radius: 6px;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
	cursor: pointer;
}
.account-nav__user {
	box-sizing: border-box;
	color: var(--color-brown);
	min-width: 240px;
}
.account-nav__user-name {
	font-size: 14px;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 120px;
	max-width: 180px;
}
.account-nav__user-arrow {
	border-left: 1px solid var(--color-gray-light);
	cursor: pointer;
	width: 30px;
	height: 34px;
}
.account-nav__user:not(.active) .account-nav__user-arrow .ico--arrow {
	transform: scale(-1, -1);
}
.account-nav__user.active .account-nav__user-arrow .ico--arrow {
	fill: var(--color-blue);
}
.account-nav__list {
	box-sizing: border-box;
	width: 100%;
	opacity: 1;
	padding: 5px 10px;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 15;
	background-color: #FFF;
	box-shadow: inset 0 6px 4px -4px rgba(0, 0, 0, .3), 0 2px 4px rgba(0, 0, 0, .25);
	border-radius: 6px;
	transition: .4s;
	transform: translateY(5px);
}
.account-nav__user:not(.active) + .account-nav__list {
	transform: translateY(-5px);
	opacity: 0;
	pointer-events: none;
}
.account-nav__item {
	color: var(--color-brown);
	display: block;
	font-size: .875rem;
	padding: 8px 5px;
	transition: .4s;
	white-space: nowrap;
}
.account-nav__item:not(:last-child) {
	border-bottom: 1px solid #DEE8E8;
}
.account-nav__item:hover {
	color: var(--color-blue);
}

.smooth-highlight {
	box-shadow: inset 0 0 16px 4px rgba(29, 181, 191, .4),
	            0 0 8px 2px rgba(29 ,181, 191, .8);
	text-shadow: 2px 2px 10px rgba(29, 181, 191, .8);
	transition: .4s ease;
}
.smooth-highlight.smooth-highlight_error {
	box-shadow: inset 0 0 16px 4px rgba(245, 105, 130, .4),
	            0 0 8px 2px rgba(245, 105, 130, .8);
	text-shadow: 2px 2px 10px rgba(245, 105, 130, .8);
}

/* Кастомизация селекта для сортировки товаров */
.sort-label {
	position: relative;
}
.sort-label .drop-down-arrow {
	position: absolute;
	right: 0;
	pointer-events: none;
}
.sort-label::before {
	content: '';
}
.sort-label__select {
	border: none;
	background: var(--color-white);
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: var(--color-blue);
	padding: 5px 30px 5px 5px;
	box-sizing: border-box;
	cursor: pointer;
}
.search-sort{
	padding-left: 35px;
	padding-right: 5px;
}
.sort-label .search-sort-arrow{
	right: unset;
}
/* Фильтр */
.drop-down-arrow {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.drop-down-arrow .ico_bg,
.drop-down-arrow .svg-ico-bordered__bg {
	width: 30px;
	height: 30px;
	fill: var(--color-gray-light);
}
.drop-down-arrow .ico_fg,
.drop-down-arrow .svg-ico-bordered__img {
	fill: var(--color-blue);
	height: 8px;
	width: 12px;
}
.drop-down-arrow--united .svg-ico-bordered__img {
	height: 16px!important;
}
.hidden-mob-filter .drop-down-arrow .svg-ico-bordered__img {
	fill: var(--color-gray);
}
.hidden-mob-filter .svg-ico-bordered.drop-down-arrow {
	transform: rotate(270deg);
	margin-right: 5px;
}
.choice-number-people:not(.active) .drop-down-arrow,
.drop-down-container:not(.active) .drop-down-arrow,
.form-container .drop-down-container:not(.active) .drop-down-arrow {
	transform: scale(-1, -1);
}
.choice-number-people:not(.active) .drop-down-arrow .svg-ico-bordered__bg,
.drop-down-container:not(.active) .drop-down-arrow .svg-ico-bordered__bg,
.drop-down-container:not(.active) .drop-down-arrow .ico_bg {
	fill: var(--color-blue);
}
.choice-number-people:not(.active) .drop-down-arrow .svg-ico-bordered__img,
.drop-down-container:not(.active) .drop-down-arrow .svg-ico-bordered__img,
.drop-down-container:not(.active) .drop-down-arrow .ico_fg {
	fill: var(--color-white);
}
.form-container .drop-down-arrow .svg-ico-bordered__bg,
.form-container .drop-down-container:not(.active) .drop-down-arrow .svg-ico-bordered__bg {
	width: 24px;
	height: 24px;
	fill: var(--color-gray-light);
	stroke: var(--color-gray);
}
.form-container .drop-down-arrow .svg-ico-bordered__img,
.form-container .drop-down-container:not(.active) .drop-down-arrow .svg-ico-bordered__img {
	fill: var(--color-gray-3);
}

/* страница "контакты" */
.contact-page {
	gap: 15px;
}
.contact-page .modal-dialog {
	display: block;
}
.contact-page__block {
	padding: 15px;
	box-sizing: border-box;
	margin-bottom: 15px;
}
.contact-page__block_contact-item {
	gap: 15px;
}

.accordion-header:not(.active) .ico-holder {
	transform: rotate(180deg);
	transition: .4s ease;
}
.accordion-header.active .ico_bg {
	fill: var(--color-gray-light);
}
.accordion-header.active .ico_fg {
	fill: var(--color-gray);
}
.accordion-header .ico_fg > use[href="#ico-arrow"] {
	transform: translateX(1%);
}

.instructions {
	padding: 20px;
	min-height: 984px;
}
.instruction__title {
	color: var(--color-brown);
	font-weight: 600;
	font-size: .875rem;
}
.instruction__text {
	margin-top: 10px;
}

.editable-products__toolbar .form-block__select {
	width: auto;
}

.header__title,
.header-mobile__logo,
.header-btn__text,
.header__menu-button {
	display: none;
}

.map {
	position: relative;
	max-height: 75vh;
	overflow: hidden;
}
.map__content {
	height: 500px;
}
.map__template {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: none;
	transition: .4s;
	z-index: 1001;
}
.map__template_off {
	opacity: 0;
	z-index: -1;
}

.event-date {
	min-width: 110px;
	box-sizing: border-box;
}
.event-time {
	min-width: 85px;
	box-sizing: border-box;
}

.product-search__block,
.product-dates {
	background: var(--color-white);
	border-radius: 8px;
	box-shadow: inset 0 0 0 1px var(--color-gray-light);
	box-sizing: border-box;
	height: 50px;
}
.product-dates {
	width: 270px;
}

.round-button {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-gray-light);
	border-radius: 50%;
	box-sizing: border-box;
	cursor: pointer;
	transition: .4s;
}
.round-button:hover {
	background: var(--color-gray-6);
}
.round-button:hover .ico {
	fill: var(--color-white);
}

.buttons-menu-holder {
	position: relative;
}
.buttons-menu {
	background: var(--color-white);
	border: 1px solid var(--color-gray);
	border-radius: 6px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 5px;
	position: absolute;
	right: 0;
	top: calc(100% + 4px);
	width: max-content;
	z-index: 1;
}
.buttons-menu-holder:not(.active) .buttons-menu {
	display: none;
	opacity: 0;
	pointer-events: none;
}
.buttons-menu-holder.active .buttons-menu__switch {
	background: var(--color-gray-6);
}
.buttons-menu-holder.active .buttons-menu__switch .ico {
	fill: var(--color-white);
}

.buttons-menu__item {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	color: var(--color-brown);
	cursor: pointer;
	font-size: 0.875rem;
	padding: 6px 8px 6px 4px;
	white-space: nowrap;
	width: 100%;
}
.buttons-menu__item:not(:first-of-type) {
	border-top: 1px solid var(--color-gray-light);
}
.buttons-menu__item.disabled {
	color: var(--color-gray);
	cursor: default;
}
.buttons-menu__item:hover:not(.disabled) {
	background: var(--color-gray-xlight);
}

.buttons-menu__item .ico-holder {
	background: var(--color-gray-light);
	border-radius: 50%;
	margin-right: 5px;
}
.buttons-menu__item:hover .ico-holder {
	background: var(--color-gray-6);
}
.buttons-menu__item .ico {
	fill: var(--color-gray-6);
}
.buttons-menu__item:hover .ico {
	fill: var(--color-white);
}

.share-button {
	background: var(--color-gray-light);
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0;
}
.share-button_square {
	border-radius: 6px;
}

.dropdown-toggle {
	width: 50px;
	height: 50px;
	margin-left: 5px;
	border-left: 1px solid var(--color-gray);
	padding: 10px;
	position: relative;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.dropdown-toggle::after {
	border: 0;
	border-color: var(--color-gray);
	border-right: 2px solid var(--color-gray-3);
	border-bottom: 2px solid var(--color-gray-3);
	width: 8px;
	height: 8px;
	content: '';
	transform: rotate(45deg);
	bottom: 2px;
	position: relative;
	transition: .4s;
}
.switchable-container.active .dropdown-toggle::after,
.dropdown-toggle.active::after {
	transform: rotate(45deg) scale(-1, -1);
	bottom: -2px;
}

.dropdown-toggler {
	cursor: pointer;
}

/* Поиск "продуктов" */
.search-dates {
	padding: 13px 12px 13px 12px;
	cursor: pointer;
}
.search-dates__container {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	width: 100%;
	text-align: center;
	align-items: center;
	justify-content: space-between;
}
.search-dates__date-default {
	color: var(--color-gray-dark);
}

.product-type-btn {
	background: var(--color-gray-light);
	border-radius: 6px;
	box-sizing: border-box;
	column-gap: 8px;
	padding: 8px 12px 8px 10px;
	position: relative;
	text-decoration: none;
	transition: .4s ease;
}
.product-type-btn:active,
.product-type-btn:focus-visible,
.product-type-btn:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.product-type-btn.active {
	background: var(--gradient-blue);
}
.product-type-btn.active .product-type-btn__ico .ico_bg {
	fill: var(--color-blue-light);
	stroke: none;
}
.product-type-btn.active .product-type-btn__ico .ico_fg {
	fill: var(--color-white);
}
.product-type-btn__text {
	color: var(--color-brown);
	font-weight: 600;
}
.product-type-btn.active .product-type-btn__text {
	color: var(--color-white);
}

.remove-btn {
	align-self: center;
}
.remove-btn-top-right {
	position: absolute;
	right: 0;
}

.clone-element {
	display: inline-block;
	font-weight: 600;
	margin: 10px 0;
	text-align: center;
	width: max-content;
	font-size: 0.875rem;
}
