@charset "utf-8";
:root {
 --font-family: Montserrat, -apple-system, "Open Sans", system-ui, "sans-serif";
 --dark: #000;
 --white: #fff;
 --white-light: rgba(255, 255, 255, 0.5);
 --blue: #617AAF;
 --darkblue: #0D2760;
 --darkblue-light: rgba(13, 39, 96, 0.6);
 --darkblue-borders: rgba(13, 39, 96, 0.2);
 --blue-borders: rgba(97, 122, 175, 0.25);
 --red: #FB3D33;
 --red-hover: #FC554D;
 --darkred: #E11725;
 --grey: rgba(0, 0, 0, 0.5);
 --vk: #617AAF;
 --vk-light: rgba(97, 122, 175, 0.2);
 --facebook: #3D8BE9;
 --mailru1: #005FF9;/*added 25.11.21 */
 --mailru2: #FF9E00;/*added 25.11.21 */
 --yandex: #FC3F1D;/*added 15.09.21 */
 --body-bg: #EAEFF9;
 --blue-bg: #DFE6F5;
 --blue-bg-hover: #e3e9f5;
 --blue-bg-dark: #37579C;
 --blue-bright-bg: #DBE7FF;
 --inputs-bg: #E6EAF2;
 --gradient: linear-gradient(180deg, #2400FF 0%, #B02CD1 100%);
 --gradient-rev: linear-gradient(180deg, #B02CD1 0%, #2400FF 100%);
 --gradient-color: #6C16E7;
}
html, body {
	height: 100%;
	box-sizing: border-box;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased;
}
body {
	margin: 0;
	padding: 0;
	background: var(--body-bg);
	font: 500 14px/22px var(--font-family);
	color: var(--dark);
	-webkit-text-size-adjust: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
*, *:before, *:after {
	box-sizing: border-box;
}
form, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}
input, select, textarea, button {
	font: normal 16px var(--font-family);
	color: var(--dark);
	outline: none;
	text-align: left;
}
input[type="text"], input[type="password"], input[type="email"], input[type="color"], input[type="date"], input[type="datetime-local"], input[type="month"], input[type="number"], input[type="range"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"], textarea, select {
	-webkit-appearance: none;
	box-shadow: none;
	border-style: solid;
	border-width: 1px;
	border-color: transparent;
	margin: 0;
	padding: 0 8px 0 14px;
	width: 100%;
	display: block;
	height: 46px;
	border-radius: 23px;
	background: var(--inputs-bg);
	text-overflow: ellipsis;
	-webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
input:focus, textarea:focus {
	border-color: rgba(55, 87, 156, 0.5);
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
opacity: 1;
color: var(--darkblue-light);
}
input::-moz-placeholder, textarea::-moz-placeholder {
opacity: 1;
color: var(--darkblue-light);
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
opacity: 1;
color: var(--darkblue-light);
}
 input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
opacity: 0.5!important;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
opacity: 0.5!important;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
opacity: 0.5!important;
}
input::-ms-clear {
 display: none;
}
button::-moz-focus-inner {
 border: 0;
}
textarea {
	resize: none;
}
.label {
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	opacity: 0.75;
	margin: 16px 0 6px 0;
	display: block;
}
.input {
	position: relative;
}
.input-pic {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 0;
	margin: -10px 10px;
	pointer-events: none;
	z-index: 2;
}
.input-pic svg {
	width: 100%;
	height: 100%;
	fill: var(--darkblue);
}
.input-pic + input {
	padding-left: 40px;
}
.input .btn {
	position: absolute;
	top: 50%;
	right: 0;
	margin: -15px 8px;
}
.checkbox {
	display: block;
	cursor: pointer;
	position: relative;
	background: var(--inputs-bg);
	width: 17px;
	height: 17px;
	border-radius: 4px;
	-webkit-transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.checkbox:before {
	content: '';
	position: absolute;
	top: 45%;
	left: 50%;
	border-style: solid;
	border-width: 0 0 2px 2px;
	border-color: var(--white);
	width: 10px;
	height: 6px;
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
	        transform: translate3d(-50%, -50%, 0) rotate(-45deg);
	opacity: 0;
	-webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
input:checked + .checkbox {
	background-color: var(--blue)!important;
}
input:checked + .checkbox:before {
	opacity: 1;
}
.check {
	text-align: left;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	position: relative;
	padding: 0 0 0 25px;
}
.check + .check {
	margin-top: 17px;
}
.check label {
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.check a {
	font-weight: 600;
}
.check .checkbox {
	position: absolute;
	top: 9px;
	left: 0;
	-webkit-transform: translate3d(0, -50%, 0);
	        transform: translate3d(0, -50%, 0);
}
.form-row {
	margin: 0 0 10px 0;
}
.form-captcha {
	margin: 24px 0;
	position: relative;
	height: 74px;
}
.form-captcha > * {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	        transform: translate3d(-50%, -50%, 0);
}
.modal .form-captcha {
	height: 65px;
}
.modal .form-captcha > * {
	-webkit-transform: translate3d(-50%, -50%, 0) scale(0.866666);
	        transform: translate3d(-50%, -50%, 0) scale(0.866666);
}
.form-checks {
	margin: 24px 0 32px 0;
}
.form-submit {
	margin: 24px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.form-submit .btn {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	max-width: 260px;
}
/*edited 28.08.23 start*/
.outtaHere {
	overflow: hidden;
	max-width: 100vw;
	/*position: fixed !important;*/
	opacity: 0;
	margin-left: -20px;
}
/*edited 28.08.23 end*/
header, nav, section, article, aside, footer, menu, time, figure, figcaption, main {
	display: block;
}
img, svg, picture {
	border: 0;
	vertical-align: top;
}
.btn {
	-webkit-appearance: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	vertical-align: top;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	max-width: 100%;
	text-decoration: none!important;
	font: bold 17px/21px var(--font-family);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border-style: solid;
	border-width: 1px;
	border-color: transparent;
	height: 46px;
	border-radius: 23px;
	overflow: hidden;
	position: relative;
	padding: 0 16px;
	margin: 0;
	-webkit-transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.btn-pic {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 20px;
	height: 20px;
}
.btn-pic:first-child {
	margin-left: -6px;
}
.btn-pic:last-child {
	margin-right: -6px;
}
.btn-pic svg {
	width: 100%;
	height: 100%;
	-webkit-transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.btn-small {
	height: 30px;
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 0.04em;
}
.btn-red {
	color: var(--white)!important;
	background: var(--red);
}
.btn-red svg {
	fill: var(--white);
}

@media (pointer:fine) {
.btn-red:not(:disabled):not(.disabled):hover {
	background-color: var(--red-hover);
}
}
.btn-red:not(.btn-small) {
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.btn-white {
	color: var(--darkblue)!important;
	background: var(--white);
}
.btn-white svg {
	fill: var(--darkblue);
}
.btn-border-white {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--white)!important;
}
.btn-border-white svg {
	fill: var(--white);
}

@media (pointer:fine) {
.btn-border-white:not(:disabled):not(.disabled):hover {
	background: rgba(255, 255, 255, 0.12);
}
}
.btn-border-blue {
	background: rgba(55, 87, 156, 0.06);
	border: 1px solid rgba(55, 87, 156, 0.5);
	color: var(--darkblue)!important;
}
.btn-border-blue svg {
	fill: var(--darkblue);
}

@media (pointer:fine) {
.btn-border-blue:not(:disabled):not(.disabled):hover {
	background: rgba(55, 87, 156, 0.12);
}
}
.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.btn:disabled, .btn.disabled {
	cursor: default;
	opacity: 0.3;
	pointer-events: none;
}
.btn-grad {
	color: var(--white)!important;
	border-width: 0;
	background: var(--gradient);
}
.btn-grad svg {
	fill: var(--white);
}
a, .link {
	color: var(--blue);
	text-decoration: none;
	outline: none;
	cursor: pointer;
}
a:hover {
	text-decoration: underline;
}
.dashed-link {
	text-decoration: none!important;
	border-style: dashed;
	border-width: 0 0 1px 0;
}
.dashed-link:hover {
	border-color: transparent;
}
a[href^=tel] {
	color: inherit!important;
	cursor: inherit;
	text-decoration: none!important;
}
h1, .h1, h2, .h2, h3, .h3, h4, h5, h6, .section-title {
	font-weight: 600;
	margin: 18px 0 16px 0;
}
h1 strong, .h1 strong, h2 strong, .h2 strong, h3 strong, .h3 strong, .section-title strong {
	font-weight: 900;
	text-transform: uppercase;
	color: var(--darkblue);
}
h1, .h1, .section-title {
	font-weight: bold;
	font-size: 22px;
	line-height: 27px;
}
h2, .h2, h3, .h3 {
	font-size: 18px;
	line-height: 24px;
}
.section-title h1, .section-title h2 {
	font: inherit;
}
.section-title {
	position: relative;
	margin-top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: -14px;
	margin-bottom: 11px;
}
.section-title > * {
	margin: 0 0 8px 14px;
}
.section-title:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 6px;
	height: 21px;
	margin: -10.5px 0!important;
	border-radius: 0 6px 6px 0;
	background: var(--red);
}
strong {
	font-weight: 600;
}
p {
	margin: 16px 0;
}
ol, ul {
	margin: 8px 0;
	padding: 0;
}
ol, ul, li {
	list-style: none;
}
li {
	position: relative;
	margin: 0;
	padding: 0 0 0 1.5em;
}
ul > li:before {
	content: '•';
	font-weight: 300;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	width: 1.5em;
}
ol {
	counter-reset: li;
}
ol > li:before {
	counter-increment: li;
	content: counters(li, ".") ". ";
	position: relative;
	display: inline-block;
	vertical-align: top;
	min-width: 1.5em;
	margin: 0 0 0 -1.5em;
	padding: 0 0.25em 0 0;
	text-align: right;
}
.break-word {
	word-break: break-all;
}
.nowrap {
	white-space: nowrap;
}
.uppercase {
	text-transform: uppercase;
}
.star {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 20px;
	height: 20px;
	border: 1.5px solid var(--white);
	box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.25);
	border-radius: 50%;
	background: var(--gradient);
	display: block;
}
.star-rev {
	border-width: 0;
}
.star svg {
	width: 100%;
	height: 100%;
	fill: var(--white);
}
.mfp-bg {
	opacity: 1!important;
	background: none!important;
}
.mfp-bg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.75);
	-webkit-backdrop-filter: blur(6px);
	        backdrop-filter: blur(6px);
}
.mfp-hide {
	display: none !important;
}
.swiper-arrow {
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	outline: none;
	border: 0;
	width: 50px;
	height: 40px;
	background: var(--blue-bg);
	border-radius: 6px;
	position: relative;
	-webkit-transition-property: background, border-color;
	transition-property: background, border-color;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.swiper-arrow:not(.swiper-button-disabled):hover {
	background: var(--blue-bg-hover);
}
}
.swiper-arrow.swiper-button-disabled {
	cursor: default;
}
.swiper-arrow svg {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -10px;
	fill: var(--darkblue);
	-webkit-transition-property: fill, opacity;
	transition-property: fill, opacity;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.swiper-arrow.swiper-button-disabled svg {
	opacity: 0.35;
}
.swiper-container {
	overflow: hidden;
}
.swiper-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.swiper-slide {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}
.mainwrap {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 100%;
	min-height: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.content {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
}
.header, .footer {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 14px;
}
.header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 90;
	background: var(--darkblue);
	-webkit-transition: margin 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: margin 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header .container {
	padding-left: 8px;
	padding-right: 8px;
}
.header .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 64px;
}
.header .logo {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-align: center;
}
.header .logo picture, .header .logo img {
	width: 100%;
	height: auto;
	max-width: 170px;
	max-height: 60px;
}
.header .toggle-menu {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.header .toggle-menu > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 24px;
	height: 2px;
	background: var(--white);
	-webkit-transform: translate3d(0, 0, 0) rotate(0deg);
	        transform: translate3d(0, 0, 0) rotate(0deg);
	margin: 3px 0;
	-webkit-transition-property: -webkit-transform opacity;
	transition-property: -webkit-transform opacity;
	transition-property: transform opacity;
	transition-property: transform opacity, -webkit-transform opacity;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
/*
.open-menu .header .toggle-menu .pos1 {
	transform: translate3d(0, 8px, 0) rotate(-135deg);
}
.open-menu .header .toggle-menu .pos2 {
	opacity: 0;
}
.open-menu .header .toggle-menu .pos3 {
	transform: translate3d(0, -8px, 0) rotate(135deg);
}
*/
.header .toggle-search {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.header .toggle-search svg {
	width: 20px;
	height: 20px;
	fill: var(--white);
}
.header .c {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header .link-vk {
	display: none;
}
.header .login-links-desktop {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	display: none;
}
.header .login-links-mobile {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header .login-link-mob {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 50%;
}
.header .login-link-mob svg {
	width: 100%;
	height: 100%;
	fill: var(--white);
}
.user-head-link {
	display: none;
}
.top-search {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 0 14px;
	background: var(--darkblue);
}
.top-search .in {
	height: 0;
	overflow: hidden;
	-webkit-transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.open-search .header {
	margin-bottom: 50px;
}
.open-search .top-search .in {
	height: 50px;
}
.top-search .input input {
	background: var(--white);
	height: 40px;
	border-radius: 20px;
}
.top-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 100;
	background: var(--white);
	box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.1);
	margin: -9px 14px;
	border-radius: 20px;
	overflow: hidden;
	overflow-y: auto;
	max-height: 60vh;
	padding: 10px 0;
}
.top-search-results .link {
	display: block;
	font-weight: normal;
	font-size: 14px;
	line-height: normal;
	padding: 5px 20px;
}
.page-fader {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 99;
	background: var(--blue);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.open-menu .page-fader {
	opacity: 0.5;
	pointer-events: all;
}
.footer {
	background: #fff;
	color: #5B7AB3;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0.09em;
	padding: 11px 0 27px 0;
}
.footer .container {
	padding-left: 29px;
	padding-right: 29px;
}
.footer .logo {
	margin: 0 -5px;
}
.footer .logo picture, .footer .logo img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 62px;
}
.footer a {
	color: inherit;
	text-decoration: none;
}
.footer a:hover {
	text-decoration: underline;
}
.footer .col {
	padding: 13px 0;
}
/*30.12.21 start*/
.footer .col-menu {
	letter-spacing: normal;
	line-height: 15px;
}
.footer .col-menu .big {
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	margin: 0 0 12px 0;
}
.footer .col-menu .el {
	padding: 13px 0;
}
.footer .col-menu .el:not(.for-mobile) {
	display: none;
}
.footer .col-menu .list {
	margin: 0 0 0 -18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.footer .col-menu .list ul {
	margin: 0;
	padding: 0 0 0 18px;
}
.footer .col-menu .list li {
	margin: 0;
	padding: 0;
}
.footer .col-menu .list li:not(:first-child) {
	margin-top: 4px;
}
.footer .col-menu .list li:before {
	display: none;
}
/*30.12.21 end*/
.footer .col-links {
	font-size: 15px;
	line-height: 18px;
	letter-spacing: normal;
	color: var(--darkblue-light);
}
.footer .col-links ul {
	margin: 0;
	padding: 0;
}
.footer .col-links ul:not(:first-child) {
	margin-top: 48px;
}
.footer .col-links li {
	margin: 0;
	padding: 0;
}
.footer .col-links li:not(:first-child) {
	margin-top: 10px;
}
.footer .col-links li:before {
	display: none;
}
.footer .col-links li > * {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer .col-links .pic {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 31px;
	height: 31px;
	border-radius: 50%;
	margin: 0 9px 0 0;
	background: var(--vk-light);
}
.footer .col-links .pic svg {
	width: 100%;
	height: 100%;
	fill: var(--vk);
}
.footer .col-links .link-vk .pic {
	background: var(--vk);
}
.footer .col-links .link-vk .pic svg {
	fill: var(--white);
}
.footer .col-links .link-facebook .pic {
	background: var(--facebook);
}
.footer .col-links .link-facebook .pic svg {
	fill: var(--white);
}
.content {
	padding: 24px 0 0 0;
}
.section {
	margin: 0 -14px;
	margin-bottom: 26px;
}
.section.with-bg {
	background: var(--white);
	box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.1);
	border-radius: 16px;
	padding: 21px 14px;
}
.main-side-c .section.place {
	/*display: none;*/
	/*visibility: hidden;*/
}
.section.place img, .section.place picture {
	width: auto;
	height: auto;
	max-width: 100%;
}
.section > *:first-child {
	margin-top: 0!important;
}
.section > *:last-child {
	margin-bottom: 0!important;
}
.anchor {
	display: block;
	margin: 0!important;
	padding: 0!important;
	-webkit-box-flex: 0!important;
	    -ms-flex: 0 0 auto!important;
	        flex: 0 0 auto!important;
	width: 100%!important;
	height: 0!important;
	position: relative;
	top: -109px;
}
.main-side-r {
	display: none;
}
.close-side-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 48px;
	height: 48px;
	z-index: 110;
	cursor: pointer;
	pointer-events: none;
	pointer-events: none;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	transition-property: opacity, transform;
	transition-property: opacity, transform, -webkit-transform;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
html:not(.open-menu) .close-side-menu {
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}
html.open-menu .close-side-menu {
	opacity: 1;
	-webkit-transform: translate3d(228px, 0, 0);
	        transform: translate3d(228px, 0, 0);
}
.close-side-menu:before, .close-side-menu:after {
	content: '';
	position: absolute;
	border-radius: 1px;
	width: 24px;
	height: 2px;
	background: var(--white);
	top: 50%;
	left: 50%;
}
.close-side-menu:before {
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
	        transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.close-side-menu:after {
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
	        transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.main-side-l {
	position: fixed;
	z-index: 100000;
	top: 0;
	bottom: 0;
	left: 0;
	padding: 24px 14px;
	width: 228px;
	overflow: auto;
	background: var(--body-bg);
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
	-webkit-transform: translate3d(-100%, 0, 0);
	        transform: translate3d(-100%, 0, 0);
	-webkit-transition-property: box-shadow, top, -webkit-transform;
	transition-property: box-shadow, top, -webkit-transform;
	transition-property: transform, box-shadow, top;
	transition-property: transform, box-shadow, top, -webkit-transform;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
html.open-menu {
	overflow: hidden;
}
.open-menu .main-side-l {
	box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.1);
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}
.main-side-l .section {
	margin-left: 0;
	margin-right: 0;
}
.main-side-l .section.place {
	/*display: none;*/
	/*visibility: hidden;*/
}
.side-menu {
	padding: 3px 12px 4px 12px!important;
}
.side-menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 0 0 -5px;
	padding: 6px 0 5px 0;
	position: relative;
}
.side-menu ul:not(:first-child):before {
	content: '';
	position: absolute;
	top: 0;
	left: 5px;
	right: 0;
	height: 1px;
	background: var(--darkblue-borders);
}
.side-menu li:before {
	display: none;
}
.side-menu li {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 100%;
	padding: 3px 0 3px 5px;
	margin: 0;
}
.side-menu li.short {
	width: 25%;
}
.side-menu li > * {
	display: block;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: var(--darkblue);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 10px 2px;
	text-decoration: none;
	background: var(--blue-bg);
	border-radius: 6px;
	-webkit-transition-property: color, background;
	transition-property: color, background;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.side-menu li.active > * {
	color: var(--white);
	background: var(--blue-bg-dark);
}

@media (pointer:fine) {
.side-menu li:not(.active) > a:hover {
	color: var(--white);
	background: var(--blue-bg-dark);
}
}
.side-menu .pic {
	display: inline-block;
	vertical-align: top;
	width: 20px;
	height: 20px;
	opacity: 0.45;
	margin: 0 -8px 0 2px;
}
.side-menu .pic svg {
	width: 100%;
	height: 100%;
	fill: var(--darkblue);
	-webkit-transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.side-menu li.active .pic svg {
	fill: var(--white);
}
.breadcrumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding-right: 8px;
	padding-top: 10px!important;
	padding-bottom: 11px!important;
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 13px!important;
}
.breadcrumbs > *:not(.btn) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	max-width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 1px 8px 1px 0;
}
.breadcrumbs .btn {
	margin-top: -11px;
	margin-left: auto;
	top: 6px;
	padding-left: 8px;
	padding-right: 8px;
}
.breadcrumbs .dot {
	color: var(--grey);
	font-size: 12px;
	font-weight: 300;
}
.catalog-slider {
	padding-bottom: 7px;
}
.catalog-slider-head {
	position: relative;
	padding-right: 121px;
	padding-bottom: 6px;
}
.catalog-slider-head .swiper-arrow {
	position: absolute;
	top: 50%;
	right: 0;
	margin: -30px 0;
}
.catalog-slider-head .swiper-prev {
	margin-right: 55px;
}
.catalog-slider .swiper-container {
	width: auto!important;
	margin: 0 -14px;
	padding: 0 9px;
}
.catalog-slider .swiper-slide {
	padding: 0 5px;
	width: 145px;
	height: auto!important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.item-card {
	display: block;
	text-align: left;
	font-size: 12px;
	line-height: 17px;
	color: var(--dark);
	text-decoration: none!important;
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
	width: 100%;
	border-radius: 8px;
}
.item-card a {
	text-decoration: none!important;
}
.item-card .item-photos {
	margin: 0 0 10px 0;
}
.item-card .name {
	font-weight: 600;
	font-size: 13px;
	line-height: 18px;
	margin: 0 0 6px 0;
	color: #2B4888;
}

@media (pointer:fine) {
a.item-card:hover .name, .item-card a:hover .name, .item-card .name a:hover {
	text-decoration: underline;
}
}
.item-card .name a {
	color: inherit;
}
.item-photos {
	display: block;
	position: relative;
}
.item-photos:before {
	content: '';
	display: block;
	padding-top: 132.592%;
}
.item-photo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 8px;
	background: #fff;
}
.item-photo:not(:only-child) {
	width: 64%;
	height: 64%;
}
.item-photo:nth-child(2) {
	top: auto;
	left: auto;
	bottom: 0;
	right: 0;
	box-shadow: -4px -4px 0 var(--white);
}

/*edited 01.08.23 start*/
.item-photo:nth-child(1):nth-last-child(3), .item-photo:nth-child(2):nth-last-child(2), .item-photo:nth-child(3):nth-last-child(1) {
	width: 55%;height: 55%;
}.item-photo:nth-child(2):nth-last-child(2){
	 top: 50%!important;left: 50%!important;
	 transform: translate3d(-50%, -50%, 0);

	 box-shadow: -4px -4px 0 var(--white);
 }.item-photo:nth-child(3):nth-last-child(1){
	  top: auto;
	  left: auto;
	  bottom: 0;
	  right: 0;
	  box-shadow: -4px -4px 0 var(--white);
  }
/*edited 01.08.23 end*/

.item-photo img {
	width: 100%;
	height: 100%;
	border-radius: inherit;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
.item-photo:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border: 1px solid var(--dark);
	opacity: 0.1;
	border-radius: inherit;
}
.item-photo-info {
	position: absolute;
	top: 0;
	right: 0;
	margin: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.item-photo-info > *:not(.star) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	border: 1px solid var(--white);
	height: 17px;
	line-height: 15px;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	color: var(--blue-bg-dark);
	background: var(--white);
	box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.25);
	border-radius: 9px;
}
.item-photo-info > *:not(:first-child) {
	margin-left: 4px;
}
.item-photo-info .year {
	padding-left: 7px;
	padding-right: 7px;
}
.item-photo-info .star {
	width: 17px;
	height: 17px;
	border-width: 1px;
}
.item {
	font-weight: normal;
	font-size: 16px;
	line-height: 1.5;
	margin: 20px 0;
}
.item .section-title {
	margin-bottom: 13px;
}
.item.single .item-photos {
	margin: 0 auto 21px auto;
	max-width: 170px;
}
.item .links {
	margin: 28px 0 0 0;
	font-weight: 500;
}

.links .share {
	min-height: 46px;
}

.item .share {
	min-height: 46px;
}

.section-title .share {
	min-height: 46px;
}

.section-title h1 {
	display: block;
}

.share {
	display: block;
}

@media only screen and (min-width: 768px) {
	.vk_buttons {
		min-width: 450px !important;
	}
	.ya-share2 {
		min-width: 550px;
	}
}

.vk_buttons {
	min-width: 350px;
	min-height: 23px;
	clear: both;
	position: relative;
	margin-top: 10px;
}

.vk-button {
	display: inline-block;
	vertical-align: top;
	margin-right: 6px;
}

.item .links > * {
	margin: 14px 0 0 0;
}
/*edited 01.08.23 start*/
.choose {
	display: flex;
	background: var(--blue-bright-bg);
	border-radius: 16px;
	margin: 34px 0 36px 0;
}
.choose label {
	cursor: pointer;
	flex: 1;
	display: flex;
	flex-direction: column;
	container-type: inline-size;
	container-name: choose-label;
}
.choose .bg {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	position: relative;
	color: var(--dark);
	/*transition-property: color, background, box-shadow;
transition-duration: 0.2s;
transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);*/
	padding: 10px;
	border-radius: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
input.book-selector1:checked ~ * .choose > *:nth-child(1) .bg, input.book-selector2:checked ~ * .choose > *:nth-child(2) .bg, input.book-selector3:checked ~ * .choose > *:nth-child(3) .bg {
	color: var(--white);
	margin: -10px 0;
	background: var(--darkblue);
	box-shadow: 0px 2px 32px rgba(13, 39, 96, 0.45);
}
input.book-selector1:disabled ~ * .choose > *:nth-child(1), input.book-selector2:disabled ~ * .choose > *:nth-child(2), input.book-selector3:disabled ~ * .choose > *:nth-child(3) {
	opacity: 0.25;
	pointer-events: none;
	cursor: default;
}
input.book-selector1:disabled ~ * .choose > *:nth-child(1) .btn, input.book-selector2:disabled ~ * .choose > *:nth-child(2) .btn, input.book-selector3:disabled ~ * .choose > *:nth-child(3) .btn {
	display: none;
}
.choose .item-photos {
	margin: 0 0 11px 0;
	width: 100%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.choose .text {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.choose .info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
	margin: 0 0 10px 0;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.choose .info > * {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin-right: 8px;
}
.choose .desc { /*30.12.21*/
	opacity: 0.75;
	font-weight: 500;
	font-size: 10px;
	line-height: 1.2;
	margin-bottom: 10px;
	hyphens: auto;
	word-wrap: break-word;
}
.choose .desc:not(.visible) { /*30.12.21*/
	display: none;
}
.choose .btn {
	margin-top: auto;
	width: 100%;
	max-width: 142px;
	padding: 0;
	background: rgba(55, 87, 156, 0.12);
	border: 1px solid rgba(55, 87, 156, 0.5);
	color: var(--darkblue-light);
	-webkit-transition: none;
	transition: none; /*transition-property: color, background, border-color;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);*/
}
.choose .btn .btn-pic {
	/*transition-property: opacity, margin;
transition-duration: 0.2s;
transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);*/
	opacity: 0;
	margin: 0 0 0 -20px;
}
.choose .btn svg {
	fill: var(--darkblue-light);
}
.choose .btn .txt-checked {
	display: none;
}
input.book-selector1:checked ~ * .choose > *:nth-child(1) .bg .btn, input.book-selector2:checked ~ * .choose > *:nth-child(2) .bg .btn, input.book-selector3:checked ~ * .choose > *:nth-child(3) .bg .btn {
	color: var(--darkblue);
	border-color: transparent;
	background-color: var(--white);
}
input.book-selector1:checked ~ * .choose > *:nth-child(1) .bg .btn .btn-pic, input.book-selector2:checked ~ * .choose > *:nth-child(2) .bg .btn .btn-pic, input.book-selector3:checked ~ * .choose > *:nth-child(3) .bg .btn .btn-pic {
	opacity: 1;
	margin-left: 0;
}
input.book-selector1:checked ~ * .choose > *:nth-child(1) .bg .btn svg, input.book-selector2:checked ~ * .choose > *:nth-child(2) .bg .btn svg, input.book-selector3:checked ~ * .choose > *:nth-child(3) .bg .btn svg {
	fill: var(--darkblue);
}
input.book-selector1:checked ~ * .choose > *:nth-child(1) .bg .btn .txt-checked, input.book-selector2:checked ~ * .choose > *:nth-child(2) .bg .btn .txt-checked, input.book-selector3:checked ~ * .choose > *:nth-child(3) .bg .btn .txt-checked {
	display: inline;
}
input.book-selector1:checked ~ * .choose > *:nth-child(1) .bg .btn .txt-unchecked, input.book-selector2:checked ~ * .choose > *:nth-child(2) .bg .btn .txt-unchecked, input.book-selector3:checked ~ * .choose > *:nth-child(3) .bg .btn .txt-unchecked {
	display: none;
}
@container choose-label (min-width: 290px) {
	.choose .bg {
		flex-direction: row;
	}
	.choose .item-photos {
		flex: 0 0 auto;
		width: 129px;
		margin: 0 16px 0 0;
	}
	.choose .text {
		flex: 1;
	}
	.choose .info {
		margin-bottom: 6px;
	}
	.choose .desc {
		flex: 1 0 auto;
		display: block !important;
		margin-bottom: 0;
	}
	.choose .desc strong {
		font-weight: bold;
	}
	.choose .btn {
		margin-top: 14px;
	}
}
@container choose-label (max-width: 160px) {
	.choose .info {
		font-size: 14px;
		line-height: 18px;
	}
	.choose .info .star {
		width: 16px;
		height: 16px;
	}
	.choose .btn {
		font-size: 12px;
	}
	.choose .btn-pic {
		width: 14px;
		height: 14px;
		margin-left: -14px !important;
		display: none;
	}
}
/*edited 01.08.23 end*/
.inner-search {
	margin: 30px 0;
	padding: 14px;
	background: var(--blue-bright-bg);
	border-radius: 12px;
}
.inner-search h2, .inner-search .h2 {
	font-weight: 900;
	font-size: 18px;
	line-height: 21px;
	margin: -1px 0 13px 0;
	color: var(--darkblue);
}
.inner-search .input input {
	background-color: var(--white);
	height: 40px;
	border-radius: 20px;
}
.folded-block + .folded-block {
	margin-top: 14px;
}
.folded-head {
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	position: relative;
	/*
	transition-property: color, background;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	*/
	color: var(--dark);
	text-align: left;
	display: block;
	margin: 0;
	box-shadow: 0 1px 0 var(--blue-borders);
}
.folded-head:not(.inner) {
	background: var(--blue-bg);
	/*transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);*/
	font-weight: 600;
	margin: 0 -14px;
	padding: 12px 14px 13px 56px;
	font-size: 22px;
	line-height: 27px;
}

@media (pointer:fine) {
.folded-block:not(.is-open) > .folded-head:not(.inner):hover {
	background-color: var(--blue-bg-hover);
}
}
.folded-head.inner {
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	padding: 3px 0 3px 42px;
	box-shadow: none!important;
}
.folded-block.is-open > .folded-head:not(.inner) {
	color: var(--white);
	background-color: var(--darkblue);
}
.folded-block.always-open .folded-head {
	cursor: default;
}
.folded-block.always-open .folded-head:not(.inner) {
	padding-left: 14px;
}
.folded-block.always-open .folded-head.inner {
	padding-left: 0;
}
.folded-head.bg-grad {
	color: var(--white);
	background: var(--gradient);
}
.folded-head.bg-grad .star {
	width: 28px;
	height: 28px;
	top: 0;
	margin-top: -1px;
	margin-bottom: -1px;
}
.folded-head .star {
	display: inline-block;
	vertical-align: top;
	position: relative;
	top: 3px;
	left: 8px;
}
.folded-head.inner .star {
	top: 2px;
}
.folded-head .plus {
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin: -15px 0;
	/*transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);*/
	background: var(--blue-bg-dark);
}
.folded-head:not(.inner) .plus {
	left: 14px;
}
.folded-head.inner .plus {
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.24);
	background: var(--white);
}
.folded-head .plus:before, .folded-head .plus:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	        transform: translate3d(-50%, -50%, 0);
	width: 14px;
	height: 3px;
	border-radius: 1.5px;
	background: var(--white);
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.folded-head.inner .plus:before, .folded-head.inner .plus:after {
	background: var(--dark);
	opacity: 0.5;
}
.folded-head .plus:after {
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(-90deg);
	        transform: translate3d(-50%, -50%, 0) rotate(-90deg);
}
.folded-block.is-open > .folded-head:not(.inner) .plus {
	background-color: var(--white);
}
.folded-block.is-open > .folded-head:not(.inner) .plus:before, .folded-block.is-open > .folded-head:not(.inner) .plus:after {
	background-color: var(--red);
}
.folded-block.is-open > .folded-head .plus:after {
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
	        transform: translate3d(-50%, -50%, 0) rotate(0deg);
}
.folded-block:not(.always-open) > .folded-in {
	display: none;
}
.folded-block.open > .folded-in {
	display: block;
}
.folded-block .folded-ind {
	padding: 14px 0;
}
.folded-block > .folded-head.inner + .folded-in .folded-ind {
	padding-top: 10px;
	padding-bottom: 7px;
}
.list-numbers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 0 -8px -8px;
	padding: 0;
}
.list-numbers .link {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	min-width: calc(20% - 8px);
	margin: 0 0 8px 8px;
	display: block;
	border-radius: 6px;
	padding: 15px 4px;
	background: var(--blue-bg);
	position: relative;
	text-decoration: none!important;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: var(--darkblue);
	-webkit-transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	text-align: center;
}
.list-numbers .link.with-bg {
	box-shadow: inset 0 0 0 3px var(--gradient-color);
	color: #0D2760;
}

@media (pointer:fine) {
.list-numbers a.link:hover {
	background: var(--blue-bg-hover);
}
}
.list-numbers .link.with-bg:after {
	/*content: '';*/
	position: absolute;
	top: 0;
	right: 0;
	margin: -5px;
	width: 20px;
	height: 20px;
	/*border: 1.5px solid var(--white);*/
	box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.25);
	/*border-radius: 50%;*/
	/*background-image: url(../img/star.svg), -webkit-linear-gradient(top, #2400FF 0%, #B02CD1 100%);*/
	/*background-image: url(../img/star.svg), linear-gradient(180deg, #2400FF 0%, #B02CD1 100%);!*22.12.21*!*/
	background-repeat: no-repeat, repeat;
	background-size: contain, 100% 100%;
}
.table-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 3px;
}
.table-title > * {
	margin-bottom: 16px;
}
.hover-table {
	border-collapse: collapse;
	width: 100%;
	border-bottom: 1px solid var(--blue-borders);
}
.hover-table th, .hover-table td {
	border-style: solid;
	border-color: var(--blue-borders);
	border-width: 0 0 0 1px;
	height: 42px;
	padding: 0;
	width: 42px;
	text-align: center;
	vertical-align: middle;
}
.hover-table th:first-child, .hover-table td:first-child {
	border-left-width: 0;
	white-space: nowrap;
	width: 1px;
	padding: 0 14px;
	text-align: left;
}
.hover-table th {
	font-weight: 500;
	border-bottom-width: 1px;
}
.hover-table th:first-child {
	color: var(--grey);
}
.hover-table td {
	font-weight: 600;
	font-size: 18px;
}
.hover-table .dot {
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue);
	opacity: 0.25;
	position: relative;
	top: -1px;
}
.hover-table a {
	display: block;
	height: 42px;
	line-height: 42px;
	background: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hover-table a .dot {
	width: 14px;
	height: 14px;
	opacity: 1;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	-webkit-transform: scale(1);
	        transform: scale(1);
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hover-table tr:nth-child(even) td {
	background: #F4F6FA;
}

@media (pointer:fine) {
.hover-table tr:hover td, .hover-table th._hover:not(:first-child), .hover-table td._hover:not(:first-child) {
	background-color: var(--blue-bg)!important;
}
.hover-table a:hover {
	background-color: var(--darkblue)!important;
}
.hover-table a:hover .dot {
	background: var(--white);
}
}
.classes-table {
	display: none;
}
.classes-list .folded-block + .folded-block {
	margin-top: 0;
}
.classes-list .folded-head {
	box-shadow: 0 1px 0 var(--blue-borders), 0 -1px 0 var(--blue-borders);
	padding-left: 14px;
	padding-right: 56px;
}
.classes-list .folded-block:nth-child(even):not(.open) .folded-head {
	background-color: var(--white);
}
.classes-list .folded-head .plus {
	left: auto;
	right: 14px;
}
.benefits {
	line-height: 20px;
	margin: 18px 0;
	padding: 0 0 12px 0;
}
.benefits li:before {
	display: none;
}
.benefits li {
	position: relative;
	margin: 0;
	padding: 0 0 0 63px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	min-height: 50px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.benefits li:not(:first-child) {
	margin-top: 18px;
}
.benefits .pic {
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
}
.benefits .pic img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}
.link-back {
	margin: 14px 0;
}
.section.with-bg .link-back:first-child {
	margin-top: -7px!important;
}
.star-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: left;
	margin-top: 20px;
}
.star-text .star {
	margin: 0 6px 0 0;
}
.star-text a {
	color: inherit;
	text-decoration: underline;
}
.star-text a:hover {
	text-decoration: none;
}
.star-text .text {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.number-title {
	margin-bottom: 2px;
}
.text-task {
	font-size: 16px;
	line-height: 26px;
	margin: 0 0 28px 0;
}
.image-legend {
	font-weight: 500;
	font-size: 14px;
	line-height: 23px;
	text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -9px 0 24px -24px;
	padding: 0;
}
.image-legend li:before {
	display: none;
}
.image-legend li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 9px 0 0 18px;
	padding: 0;
}
.image-legend li > * {
	margin: 0 0 0 6px;
}
.image-legend .bg1, .image-legend .bg2 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	text-align: center;
	min-width: 106px;
	padding: 0 3px;
	border-radius: 2px;
}
.image-legend .bg1 {
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}
.image-legend .bg2 {
	background: -webkit-linear-gradient(340deg, rgba(166,238,109,0.4) 0%, rgba(166,238,109,0.4) 65%, rgba(120,180,255,0.4) 65%, rgba(120,180,255,0.4) 100%);
	background: linear-gradient(110deg, rgba(166,238,109,0.4) 0%, rgba(166,238,109,0.4) 65%, rgba(120,180,255,0.4) 65%, rgba(120,180,255,0.4) 100%);
}
.image {
	text-align: left;
	margin: 0;
	padding: 0;
	position: relative;
	display: block;
	overflow: hidden;
}
.image img {
	width: auto;
	height: auto;
	max-width: 100%;
}
.image.always-folded:after, .image.folded:after {
	content: '';
	position: absolute;
	height: 75px;
	max-height: 100%; /*30.12.21*/
	left: 0;
	bottom: 0;
	right: 0;
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 1) 100%);
	-webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	pointer-events: none;
}
.image.always-folded, .image.folded { /*30.12.21*/
/*max-height: 75px;*/
}
.link-open {
	text-align: center;
	position: relative;
	padding: 12px 0;
}
.link-open .line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 -14px;
	height: 1px;
	background: var(--blue-borders);
}
.link-open .out {
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.link-open .btn {
	z-index: 2;
}
.link-open .waves {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.link-open .waves > * {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--white);
	border: 2px solid rgba(161, 40, 215, 1);
	-webkit-animation: pulse 3s infinite;
	        animation: pulse 3s infinite;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	border-radius: 30px;
}
.link-open .waves > *:nth-child(2) {
	-webkit-animation-delay: 0.5s;
	        animation-delay: 0.5s;
}
.link-open .waves > *:nth-child(3) {
	-webkit-animation-delay: 1s;
	        animation-delay: 1s;
}
.link-open .waves > *:nth-child(4) {
	-webkit-animation-delay: 1.5s;
	        animation-delay: 1.5s;
}
.link-open .waves > *:nth-child(5) {
	-webkit-animation-delay: 2s;
	        animation-delay: 2s;
}
.link-open .waves > *:nth-child(6) {
	-webkit-animation-delay: 2.5s;
	        animation-delay: 2.5s;
}
 @-webkit-keyframes pulse {
 0% {
opacity: 1;
 margin: 0;
}
 70% {
opacity: 0;
 margin: -12px;
}
100% {
 opacity: 0;
 margin: 0;
}
}
 @keyframes pulse {
 0% {
opacity: 1;
 margin: 0;
}
 70% {
opacity: 0;
 margin: -12px;
}
100% {
 opacity: 0;
 margin: 0;
}
}
.notification {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: column-reverse;
	        flex-direction: column-reverse;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	padding: 17px 19px;
	border-radius: 32px;
	background: #D4E4FF;
}
.notification .small {
	font-size: 13px;
	line-height: 16px;
	margin-top: 10px;
}
.notification .big {
	font-size: 15px;
	line-height: 18px;
}
.notification .big, .notification a {
	color: #386EC8;
	font-weight: bold;
}
.notification a {
	text-decoration: underline;
}
.notification a:hover {
	text-decoration: none;
}
.notification .small a {
	font-weight: 600;
}
.notification .pic {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	margin: 26px auto 7px auto;
	width: 69px;
	height: 69px;
}
.notification .pic img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}
.notification.red {
	background: rgba(255, 219, 219, 0.75);
}
.notification.red .big {
	color: inherit;
}
.notification.red a {
	color: var(--red);
}
.numbers-slider {
	margin: 0 -14px;
	padding: 14px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: var(--blue-bright-bg);
}
.numbers-slider .swiper-arrow {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	position: relative;
	top: auto;
	left: auto;
	height: 52px;
	width: calc(20% - 8px);
	border-radius: 6px;
	border: 2px solid rgba(55, 86, 156, 0.5);
	background: none;
	display: none;
}
.numbers-slider .swiper-arrow.swiper-button-disabled {
	border-color: rgba(55, 86, 156, 0.15);
}
.numbers-slider .swiper-prev {
	margin-left: 4px;
}
.numbers-slider .swiper-next {
	margin-right: 4px;
}
.numbers-slider .in {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 100%;
}
.numbers-slider .swiper-container {
	padding-left: 14px;
	padding-right: 6px;
}
.numbers-slider .swiper-slide {
	padding: 0 8px 0 0;
	width: auto;/*30.12.21*/
	min-width: 20%;/*30.12.21*/
}
.numbers-slider .link {
	display: block;
	background: var(--white);
	border: 5px solid var(--white);
	text-decoration: none!important;
	position: relative;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: var(--darkblue);
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 11px 6px;
	border-radius: 6px;
	-webkit-transition-property: color, border-color, background;
	transition-property: color, border-color, background;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.numbers-slider .link.active {
	color: var(--white);
	background-color: var(--blue-bg-dark);
}
.modal {
	width: 100%;
	margin: 42px auto;
	max-width: 300px;
	background: var(--white);
	box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	padding: 40px 20px;
	position: relative;
}
.modal .mfp-close {
	top: auto!important;
	bottom: 100%;
	right: 0;
	width: 42px;
	height: 42px;
	overflow: hidden;
	text-align: left;
	text-indent: -100vw;
	opacity: 0.45;
	-webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.modal .mfp-close:before, .modal .mfp-close:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--white);
	width: 16px;
	height: 2px;
	margin: -1px -8px;
}
.modal .mfp-close:before {
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.modal .mfp-close:after {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.login-form {
	background: var(--darkblue);
	color: rgba(255, 255, 255, 0.75);
	text-align: center;
}
.login-form a {
	color: #a0b3d6;
	text-decoration: underline;
}
.login-form a:hover {
	text-decoration: none;
}
.login-form .input input, .login-form .checkbox {
	background-color: var(--white);
}
.login-form .input input {
	padding-left: 0;
	padding-right: 0;
	text-align: center;
}
.login-form .label {
	opacity: 1;
}
.login-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	font-weight: bold;
	font-size: 22px;
	line-height: 27px;
	margin: -32px 0 24px 0;
	color: var(--white);
}
.login-title > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	margin: 16px 9px 0 9px;
}
.login-title a {
	text-decoration: none;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}
.login-title a > * {
	border-style: dashed;
	border-width: 0 0 1px 0;
}
.login-title a:hover > * {
	border-color: transparent;
}
.login-soc {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.login-soc > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	margin: 0 0 0 8px;
}
.login-soc svg {
	width: 100%;
	height: 100%;
	fill: var(--white);
}
.login-soc .link-google {
	background: var(--white);
}
.login-soc .link-vk {
	background: var(--vk);
}
.login-bottom-link {
	margin: 24px -20px -40px -20px;
	padding: 18px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.login-bottom-link .btn {
	width: 100%;
}
.modal-result {
	text-align: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
}
.modal-result a {
	font-weight: 600;
	text-decoration: underline;
}
.modal-result a:hover {
	text-decoration: none;
}
.modal-result strong {
	font-weight: bold;
}
.modal-result .pic {
	margin: 8px 0 24px 0;
	min-height: 87px;
}
.modal-result .pic img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100px;
}
.modal-result .text {
	min-height: 30px;
}
.personal-section:not(:first-child) {
	margin-top: 10px;
}
.personal-title {
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	border-radius: 16px;
	background: var(--blue-bright-bg);
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	padding: 13px 14px;
	height: 91px;
	-webkit-transition-property: background, color;
	transition-property: background, color;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	position: relative;
}
.personal-title:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: 7px 0;
	height: 3px;
	background: var(--darkred);
	pointer-events: none;
	opacity: 0;
	-webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.personal-section.open .personal-title:after {
	opacity: 1;
}
.personal-title:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--white);
	z-index: 2;
	-webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0;
}

@media (pointer:fine) {
.personal-title:not(.disabled):hover:before {
	opacity: 0.12;
}
}
.personal-title.disabled {
	cursor: default;
	pointer-events: none;
	opacity: 0.4;
}
.personal-title .big {
	font-weight: bold;
	font-size: 15px;
	line-height: 18px;
	color: var(--blue-bg-dark);
	margin: 0 0 6px 0;
	-webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	white-space: nowrap;
}
.personal-title .big .arr {
	display: inline-block;
	vertical-align: top;
	margin: -1px 0;
	width: 20px;
	height: 20px;
	opacity: 0.4;
}
.personal-title .big .arr svg {
	width: 100%;
	height: 100%;
	fill: var(--blue-bg-dark);
	-webkit-transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.personal-title strong {
	font-weight: bold;
}
.personal-title .row {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 6px;
}
.personal-title .status-text {
	-webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	color: var(--dark);
}
.personal-section.open .personal-title:not(.red) .status-text {
	color: #97CD24;
}
.personal-section.open .personal-title.red .status-text {
	color: var(--white);
}
.personal-title .status {
	display: inline-block;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin: 0 0 0 6px;
	-webkit-transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.personal-title:not(.red) .status {
	background: #97CD24;
}
.personal-title.red {
	background: #FFE4E4;
}
.personal-title.red .big {
	color: var(--darkred);
}
.personal-title.red .big .arr svg {
	fill: var(--darkred);
}
.personal-title.red .status {
	background: var(--darkred);
}
.personal-section.open .personal-title {
	background: var(--darkblue);
	color: var(--white);
}
.personal-section.open .personal-title.red {
	background: var(--darkred);
}
.personal-section.open .personal-title .big {
	color: var(--white);
}
.personal-section.open .personal-title .big .arr svg {
	fill: var(--white);
}
.personal-section.open .personal-title.red .status {
	background: var(--white);
}
.personal-in {
	display: none;
}
.personal-section.open .personal-in {
	display: block;
}
.personal-ind {
	padding: 30px 0 45px 0;
}
.center-form {
	margin: 0 auto;
	max-width: 440px;
}
.subscribes {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -4px;
	padding: 0;
}
.subscribes li:before {
	display: none;
}
.subscribes li {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	padding: 4px;
	margin: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.subscribes .link {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	text-decoration: none!important;
	font-weight: 500;
	font-size: 13px;
	line-height: 16px;
	color: var(--dark);
	background: var(--blue-bright-bg);
	padding: 0 12px 0 16px;
	border-radius: 16px;
	-webkit-transition-property: color, background, box-shadow;
	transition-property: color, background, box-shadow;
	-webkit-transition-duration: 0.2s;
	        transition-duration: 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.subscribes a.link:hover {
	box-shadow: 0px 2px 32px rgba(13, 39, 96, 0.45);
}
}
.subscribes .link .t {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
	position: relative;
	padding: 22px 0 24px 81px;
}
.subscribes .link .pic {
	position: absolute;
	top: 0;
	left: 0;
	width: 69px;
	height: 69px;
	background: var(--white);
	border-radius: 50%;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
	margin: 24px 0 0 0;
}
.subscribes .link .pic img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
	border-radius: 50%;
}
.subscribes .link .name {
	font-weight: bold;
	font-size: 15px;
	line-height: 18px;
	color: var(--blue-bg-dark);
	margin: 0 0 11px 0;
	-webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.subscribes .link .row {
	margin: 8px 0 0 0;
	-webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.subscribes .link .b {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	border-top: 1px solid var(--blue-borders);
	-webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	font-size: 12px;
	line-height: 15px;
	height: 92px;
}
.subscribes .link .b .txt {
	-webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	margin-top: 8px;
	max-width: 100%;
}
.subscribes .link .b .btn:not(.btn-small) {
	min-width: 201px;
}
.subscribes .link .b .btn small {
	display: block;
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.03em;
	text-transform: lowercase;
	margin: -1px 0 0 0;
}
.subscribes .link.active, .subscribes .link.active .btn {
	cursor: default;
}
.subscribes .link.active {
	background: var(--darkblue);
	color: var(--white);
	box-shadow: 0px 2px 32px rgba(13, 39, 96, 0.45);
}
.subscribes .link.active .name {
	color: var(--white);
}
.subscribes .link.active .row {
	opacity: 0.75;
}
.subscribes .link.active .b {
	border-color: rgba(255, 255, 255, 0.2);
}
.subscribes .link.active .b .txt {
	opacity: 0.75;
}
.detailed-sol {
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	text-align: left;
}
.detailed-sol li:before {
	display: none;
}
.detailed-sol li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0;
	padding: 12px;
	border-radius: 16px;
	background: var(--blue-bright-bg);
}
.detailed-sol li:not(:first-child) {
	margin-top: 6px;
}
.detailed-sol .item-photos {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 58px;
	margin: 0 20px 0 0;
	-ms-flex-item-align: start;
	    align-self: flex-start;
}
.detailed-sol .item-photos .item-photo {
	border-radius: 2px;
	box-shadow: none;
}
.detailed-sol .text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: calc(100% - 78px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.detailed-sol .links {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 100%;
	margin-top: 14px;
}
/*edited 06.12.21 start*/
.detailed-sol .link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	text-decoration: none!important;
	color: var(--white);
	border-radius: 22px;
	font-weight: 800;
	font-size: 18px;
	line-height: 22px;
	padding: 8px 27px 8px 13px;
	background: var(--darkblue);
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	-webkit-transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	position: relative;
}
.detailed-sol .link > *:not(.arr) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	max-width: 100%;
	padding: 3px;
}
.detailed-sol .link:not(:first-child) {
	margin-top: 4px;
}
.detailed-sol .link .timer {
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	min-width: calc(8.1em + 6px);
	margin-left: auto;
}
/*edited 06.12.21 end*/
.detailed-sol .link .arr {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -10px 10px;
	opacity: 0.4;
}
.detailed-sol .link .arr svg {
	width: 100%;
	height: 100%;
	fill: var(--white);
}
.detailed-sol .link.red {
	background: var(--red);
}
input.book-selector {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: -1;
	opacity: 0;
}
/*edited 01.08.23 start*/
input.book-selector1:not(:checked) ~ * .book-content1, input.book-selector2:not(:checked) ~ * .book-content2, input.book-selector3:not(:checked) ~ * .book-content3 {
	display: none !important;
}
/*edited 01.08.23 end*/
/*edited 28.08.23 start*/
.book-shared-content1, .book-shared-content2, .book-shared-content3 {
	display: none !important;
}
input.book-selector1:checked ~ * .book-shared-content1, input.book-selector2:checked ~ * .book-shared-content2, input.book-selector3:checked ~ * .book-shared-content3 {
	display: block !important;
}

/*edited 28.08.23 end*/
/*added 15.09.21 start*/
textarea {
	font-weight: 500;
	font-size: 13px;
	line-height: 18px;
	height: 116px;
	padding-top: 11px;
	padding-bottom: 11px;
}
.login-soc-links {
	text-align: center;
	font-weight: 500;
	font-size: 13px;
	line-height: 16px;
	color: var(--white-light);
	margin: 22px 0;
}
.login-soc-links .links {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 13px -8px -16px -8px;
}
.login-soc-links .links > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	margin: 0 8px 16px 8px;
}
.login-soc-links .links svg {
	width: 100%;
	height: 100%;
	fill: var(--white);
}
.login-soc-links .links .link-facebook {
	background: var(--facebook);
}
.login-soc-links .links .link-yandex {
	background: var(--yandex);
}
.login-soc-links .links .link-google {
	background: var(--white);
}
.login-soc-links .links .link-vk {
	background: var(--vk);
}
/*added 25.11.21 start*/
.footer .col-links .link-mailru .pic, .login-soc-links .links .link-mailru {
	background: var(--mailru1);
}
.footer .col-links .link-mailru .pic svg, .login-soc-links .links .link-mailru svg {
	fill: var(--mailru2);
}
/*added 25.11.21 end*/
.modal-or {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 28px -20px;
	font-weight: 500;
	font-size: 13px;
	line-height: 16px;
	color: var(--white-light);
	text-align: center;
}
.modal-or > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	margin: 0 6px;
}
.modal-or:before, .modal-or:after {
	content: '';
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	height: 1px;
	background: var(--white);
	opacity: 0.2;
}
.reg-title {
	text-align: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	margin: 0 0 20px 0;
	color: var(--white);
	opacity: 0.75;
}
.modal.err-notice-form {
	padding-top: 20px;
	padding-bottom: 20px;
}
.err-notice-title {
	font-weight: bold;
	font-size: 22px;
	line-height: 27px;
	margin: -7px 0 16px 0;
}
.err-notice-label {
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	color: var(--dark);
	opacity: 0.75;
	margin: 0 0 7px 0;
}
.err-notice-form .form-checks {
	margin: 0 0 24px 0;
}
.err-notice-form .form-row, .err-notice-form .form-captcha {
	margin-bottom: 12px;
	margin-top: 12px;
}
.err-notice-form .form-submit {
	margin-top: 12px;
}
.err-notice-form .check {
	margin-top: 16px;
	font-size: 13px;
}
.err-notice-form .check + .check {
	margin-top: 10px;
}
.err-notice-form textarea {
	background-color: #EEEEEE;
	color: var(--dark);
}
.err-notice-form textarea:focus {
	border-color: var(--grey);
}
.err-notice-form textarea::-webkit-input-placeholder {
color: var(--grey);
}
.err-notice-form textarea::-moz-placeholder {
color: var(--grey);
}
.err-notice-form textarea:-ms-input-placeholder {
color: var(--grey);
}
.err-link {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.21;
}
.err-link:not(:first-child) {
	margin-top: 16px;
}
.err-link:not(:last-child) {
	margin-bottom: 16px;
}
.err-link a {
	text-decoration: none!important;
	color: var(--blue);
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding-left: 23px;
}
.err-link a span {
	border-style: dashed;
	border-width: 0 0 1px 0;
	-webkit-transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.err-link a:hover span {
	border-color: transparent;
}
.err-link svg {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 0;
	margin: -10px -2px;
	fill: var(--blue);
}
/*added 15.09.21 end*/

.loading {
	width: 100%;
	background: repeating-linear-gradient(
			90deg,
			#f0f0f0,
			#f0f0f0 10px,
			#f9f9f9 10px,
			#f9f9f9 20px
	);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite linear;
	border-radius: 4px;
}

@keyframes shimmer {
	0% { background-position: -200px 0; }
	100% { background-position: 200px 0; }
}

.vk_buttons {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.vk_buttons.loaded {
	opacity: 1;
}
@charset "utf-8";

@media only screen and (min-width: 768px) {
body {
	font-size: 16px;
	line-height: 26px;
}
h1, .h1, .section-title {
	font-size: 24px;
	line-height: 29px;
	margin-bottom: 21px;
}
h2, .h2, h3, .h3 {
	font-size: 20px;
	line-height: 26px;
}
.section-title {
	margin-bottom: 6px;
}
.section-title > * {
	margin-bottom: 16px;
}
.section-title:before {
	top: 14.5px;
	left: -14px;
}
.container {
	padding-left: 24px;
	padding-right: 24px;
}
.header .container {
	padding-left: 24px;
	padding-right: 24px;
}
.header .grid {
	height: 80px;
}
.header .logo picture, .header .logo img {
	max-height: 80px;
	max-width: 244px;
}
.header .toggle-menu {
	margin-right: 22px;
}
.header .link-vk {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 15px;
	line-height: 18px;
	color: var(--white-light);
	text-align: left;
	margin: 0 31px 0 0;
}
.header .link-vk .pic {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 31px;
	height: 31px;
	border-radius: 50%;
	background: var(--vk);
}
.header .link-vk .pic svg {
	width: 100%;
	height: 100%;
	fill: var(--white);
}
.header .link-vk .txt {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	margin: 0 0 0 9px;
	display: none;
}
.header .login-link-mob {
	margin-left: 22px;
}
.user-head-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: left;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: var(--white);
	text-decoration: none!important;
	max-width: 100%;
}
.user-head-link .pic {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: url(../nassets/img/user-pic-bg.svg) no-repeat 50% 50%;
	margin: 0 15px 0 0;
}
.user-head-link .pic svg {
	width: 100%;
	height: 100%;
	fill: var(--white);
	-webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.user-head-link .txt {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: calc(100% - 55px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.user-head-link .arr {
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: top;
	opacity: 0.34;
}
.user-head-link .arr svg {
	width: 100%;
	height: 100%;
	fill: var(--white);
}
.user-head-link .small {
	display: block;
	font-weight: 500;
	font-size: 9px;
	line-height: 11px;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	opacity: 0.55;
	margin: 5px 0 0 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.top-search {
	padding-left: 24px;
	padding-right: 24px;
}
.top-search-results {
	margin-left: 24px;
	margin-right: 24px;
}
.footer {
	padding-top: 28px;
	padding-bottom: 44px;
}
.footer .container {
	padding-left: 34px;
	padding-right: 34px;
}
.footer .logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	margin: 0 30px 0 0;
}
.footer .logo picture, .footer .logo img {
	max-width: 244px;
	max-height: 80px;
}
.footer .grid {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 0 -24px;
	padding-top: 107px;
}
.footer .col {
	padding: 0;
}
.footer .col-logo {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0 0 0 24px;
}
/*30.12.21 start*/
.footer .col-menu {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.footer .col-menu:after {
	content: '';
	display: block;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}
.footer .col-menu .el {
	padding: 0 0 0 24px;
	display: block!important;
}
.footer .col-menu .list ul {
	max-width: 140px;
}
/*30.12.21 end*/
.footer .col-links {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	padding-left: 24px;
	min-width: 238px;
}
.section {
	margin-left: 0;
	margin-right: 0;
}
.section.with-bg {
	padding: 22px 28px 28px 28px;
}
.main-side-c .section.place {
	display: block;
	visibility: visible;
}
.anchor {
	display: block;
	position: relative;
	top: -126px;
}
.main-side-l {
	padding-left: 24px;
	padding-right: 24px;
	width: 248px;
}
html.open-menu .close-side-menu {
	-webkit-transform: translate3d(248px, 0, 0);
	        transform: translate3d(248px, 0, 0);
}
.main-sides {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.main-side-c {
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
	width: 100%;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}
.breadcrumbs {
	padding-right: 20px;
}
.catalog-slider {
	padding-bottom: 0;
}
.catalog-slider .swiper-container {
	margin: 0 -28px;
	padding: 0 21px;
}
.catalog-slider .swiper-slide {
	padding: 0 7px;
	width: 236px;
}
.item-card {
	font-size: 14px;
	line-height: 19px;
	background: rgba(223, 230, 245, 0.5);
	padding: 15px 16px;
}
.item-card .item-photos {
	margin: -15px -16px 14px -16px;
}
.item-card .name {
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 9px;
}
.item-photo:nth-child(2) {
	box-shadow: -5px -5px 0 var(--white);
}
.item-photo-info {
	margin: 10px;
}
.item-photo-info > *:not(.star) {
	border-width: 2px;
	height: 26px;
	font-size: 17px;
	line-height: 22px;
	border-radius: 13px;
}
.item-photo-info > *:not(:first-child) {
	margin-left: 6px;
}
.item-photo-info .year {
	padding-left: 9px;
	padding-right: 9px;
}
.item-photo-info .star {
	width: 26px;
	height: 26px;
	border-width: 2px;
}
.item {
	font-size: 18px;
}
.item.single {
	padding-left: 228px;
}
.item.single:after {
	content: ' ';
	clear: both;
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	font-size: 0;
}
.item.single .section-title {
	margin-left: -228px;
}
.item.single .item-photos {
	float: left;
	width: 200px;
	max-width: none;
	margin: 0 28px 0 -228px;
}
.item .links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 26px -24px -10px 0;
}
.item .links > * {
	margin: 0;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	max-width: 100%;
	padding: 0 24px 10px 0;
}
.choose {
	margin: 36px 0;
}
	/*deleted 01.08.23*/
.inner-search {
	margin: 28px 0;
	padding: 16px 19px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.inner-search h2, .inner-search .h2 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	max-width: 156px;
	padding: 0 10px 0 0;
	margin: 0;
}
.inner-search .input {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	max-width: 420px;
}
.folded-head:not(.inner) {
	border-radius: 26px;
	padding-right: 26px;
}
.folded-block.always-open .folded-head:not(.inner) {
	padding-left: 22px;
}
.list-numbers {
	margin: 0 0 -10px -10px;
}
.list-numbers .link {
	margin: 0 0 10px 10px;
	min-width: calc(10% - 10px);
	font-size: 20px;
	line-height: 24px;
	padding: 14px 3px;
}
.table-title {
	margin-bottom: 6px;
}
.classes-table {
	display: block;
}
.classes-list {
	display: none;
}
.benefits {
	font-size: 18px;
	line-height: 26px;
	margin: 24px 0;
	padding: 0 0 2px 0;
}
.benefits li {
	padding-left: 120px;
	min-height: 100px;
}
.benefits li:not(:first-child) {
	margin-top: 19px;
}
.benefits .pic {
	width: 100px;
	height: 100px;
	top: 50%;
	margin: -50px 0;
}
.notification {
	text-align: left;
	font-size: 17px;
	line-height: 24px;
	border-radius: 55px;
	min-height: 109px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	padding: 20px 23px;
}
.notification .small {
	font-size: 15px;
	line-height: 18px;
	margin-top: 5px;
}
.notification .big {
	font-size: 17px;
	line-height: 24px;
}
.notification .pic {
	margin: 0 18px 0 0;
}
.numbers-slider {
	margin: 0;
	padding-left: 9px;
	padding-right: 9px;
	border-radius: 12px;
}
.numbers-slider .swiper-arrow {
	width: calc(10% - 10px);
	display: block;
}
.numbers-slider .swiper-prev {
	margin-left: 5px;
}
.numbers-slider .swiper-next {
	margin-right: 5px;
}
.numbers-slider .in {
	width: calc(80% + 10px);
}
.numbers-slider .swiper-container {
	padding-left: 10px;
	padding-right: 0;
}
.numbers-slider .swiper-slide {
	padding-right: 10px;
	min-width: 12.5%;/*30.12.21*/
}
.image.always-folded:after, .image.folded:after {
	height: 165px;
}
.image.always-folded, .image.folded { /*30.12.21*/
/*max-height: 165px;*/
}
.personal {
	position: relative;
	padding-top: 91px;
	min-height: 582px;
}
.personal:after {
	content: ' ';
	clear: both;
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	font-size: 0;
	margin-bottom: -28px;
}
.personal .is-mobile {
	display: none;
}
.personal-section {
	float: left;
	width: 100%;
}
.personal-section:not(:first-child) {
	margin-top: 0;
}
.personal-title {
	position: absolute;
	top: 0;
	width: calc((100% - 20px) / 3);
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}
.personal-section:nth-child(1) .personal-title {
	left: 0;
}
.personal-section:nth-child(2) .personal-title {
	left: 50%;
	-webkit-transform: translate3d(-50%, 0, 0);
	        transform: translate3d(-50%, 0, 0);
}
.personal-section:nth-child(3) .personal-title {
	right: 0;
}
.personal-section.open .personal-title {
	cursor: default;
}
.personal-section.open .personal-title:before {
	opacity: 0!important;
}
.personal-ind {
	padding-top: 32px;
	padding-bottom: 28px;
	min-height: 491px;
}
.subscribes {
	margin: -5px;
}
.subscribes li {
	padding: 5px;
	width: 50%;
}
.subscribes .link {
	padding: 0 22px;
}
.subscribes .link .t {
	padding-left: 92px;
}
.subscribes .link .name {
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 8px;
}
.detailed-sol li {
	padding: 16px 24px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.detailed-sol li:not(:first-child) {
	margin-top: 12px;
}
.detailed-sol .item-photos {
	width: 67px;
	margin-right: 10px;
}
.detailed-sol .text {
	width: auto;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	min-height: 88px;
}
.detailed-sol .links {
	width: 277px;
	margin: 15px 0;
}
.star-text br {
	display: none;
}
/*added 15.09.21 start*/
.modal.err-notice-form {
	max-width: 470px;
}
/*added 15.09.21 end*/

}

@charset "utf-8";

@media only screen and (min-width: 992px) {
.header .toggle-menu {
	display: none;
}
.header .toggle-search {
	display: none;
}
.header .login-link-mob {
	margin-left: 0;
}
.header .c {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding: 0 24px;
}
.header .logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 244px;
}
.header .link-vk {
	margin: 0 0 0 24px;
}
.header .link-vk .txt {
	display: block;
}
.top-search {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	padding: 0;
	background: none;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	max-width: 420px;
	margin-right: auto;
}
.top-search .in {
	height: auto;
	overflow: visible;
	-webkit-transition: none;
	transition: none;
}
.open-search .header {
	margin-bottom: 0;
}
.open-search .top-search .in {
	height: auto;
}
.top-search-results {
	margin: 10px 0;
}
.page-fader {
	display: none;
}
.close-side-menu {
	display: none;
}
.main-sides {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding-left: 224px;
}
.main-side-l {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
	width: 200px;
	margin-left: -224px;
	z-index: auto;
	bottom: auto;
	left: auto;
	padding: 0;
	overflow: visible;
	background: none;
	box-shadow: none!important;
	-webkit-transform: none!important;
	        transform: none!important;
	-webkit-transition: none;
	transition: none;
	-ms-flex-item-align: start;
	    align-self: flex-start;
	position: static;
	top: auto;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
}
.main-side-l .section.place {
	position: -webkit-sticky;
	position: sticky;
	top: 24px;
	display: block;
	visibility: visible;
}
.main-side-c {
	width: 100%;
}
}

@charset "utf-8";

@media only screen and (min-width: 1166px) {
.container {
	max-width: 1316px;
}
.header .c {
	padding-right: 24px;
}
.header .link-vk .txt {
	display: block;
}
.header .login-links-desktop {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-item-align: stretch;
	    align-self: stretch;
	padding: 0 24px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 300px;
	border-style: solid;
	border-width: 0 1px;
	border-color: rgba(255, 255, 255, 0.12);
}
.header .login-links-desktop > * {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	padding-left: 0;
	padding-right: 0;
}
.header .login-links-desktop > *:not(:first-child) {
	margin-left: 12px;
}
.header .login-links-mobile {
	display: none;
}
.footer {
	padding-top: 46px;
	padding-bottom: 54px;
}
.footer .container {
	padding-left: 24px;
	padding-right: 24px;
}
.footer .logo {
	margin: -18px 0 14px 0;
}
.footer .logo img {
	max-width: 100%;
}
.footer .grid {
	padding-top: 0;
}
.footer .col-logo {
	position: static;
	top: auto;
	left: auto;
	right: 0;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 268px;
	padding-left: 24px;
	margin: 0;
	display: block;
}
.footer .col-menu {
	max-width: 690px;
	padding-left: 40px;
	padding-right: 40px;
	margin-right: auto;
}
.footer .col-menu .list ul {
	max-width: none;
}
.footer .col-links {
	min-width: 0;
	margin-top: 4px;
	margin-bottom: 4px;
}
.main-side-c {
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
	width: calc(100% - 174px);
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}
.main-side-r {
	display: block;
	-webkit-box-ordinal-group: 4;
	    -ms-flex-order: 3;
	        order: 3;
	width: 150px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	position: -webkit-sticky;
	position: sticky;
	top: 24px;
}
}

@charset "utf-8";

@media only screen and (min-width: 1316px) {
.main-side-c {
	width: calc(100% - 324px);
}
.main-side-r {
	width: 300px;
}
}

@charset "utf-8";

@media only screen and (min-width: 1566px) {
.container {
	max-width: 1566px;
}
.top-search {
	max-width: 540px;
}
.footer .col-links {
	min-width: 302px;
}
}