@charset "UTF-8";
:root {
	--blue: #123c69;
	--accent: #dc366d;
	--bg: #faeee9;
	--front: #fcf9f8;
	--gray: #bab2b5;
}
/* Базовые стили кнопки */
.blockedProfile {
	width: 98%;
	padding: 10px;
}

.none {
	display: none !important;
}

.block-button {
	text-align: right;
	margin-top: -3%;
}

.block-warning p {
	width: 90%;
	margin-bottom: -3%;
}

.buttonCom {
	position: relative;
	float: right;
}

.buttonCom a {
	height: 50px;
	width: 100%;
	border-radius: 3px;
	padding: 7px;
	border: rgba(0, 0, 0, 0.3) 0px solid;
	box-sizing: border-box;
	background: #e7ebed;
	color: #3c0000;
	font-weight: 600;
	font-size: 11pt;
	transition: background 0.4s;
	cursor: pointer;
	text-decoration: none;
}

/* Изменение фона кнопки при наведении */
.buttonCom a:hover {
	background: #c00;
	color: #ffffff;
}

.block-warning,
.tags__profile {
	position: relative;
	width: 100%;
	border-radius: 2px;
	background: #fff;
	font-size: 16px;
	font-weight: 500;
	color: #78909c;
	text-align: center;
	padding: 0.6rem;
}

.block-warning span {
	font-size: 15px;
	color: #212121;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	width: 90px;
	text-align: center;
}

@media (max-width: 1115px) {
	.block-warning {
		margin-bottom: 10px;
	}

	.block-warning p {
		font-size: 13px;
		padding-bottom: 10px;
		width: 100%;
		margin-bottom: 0;
	}

	.buttonCom {
		position: relative;
		width: 2%;
		float: none;
		padding-top: 10px;
	}
}

@media (min-width: 766px) and (max-width: 980px) {
	.buttonCom {
		width: 15%;
		float: right;
		padding-top: 0;
	}
}


/* Стили полей ввода */
.textbox {
	height: 50px;
	width: 100%;
	border-radius: 3px;
	border: rgba(0, 0, 0, 0.3) 2px solid;
	box-sizing: border-box;
	font-size: 18px;
	padding: 10px;
	margin-bottom: 30px;
}

.message:focus,
.textbox:focus {
	outline: none;
	border: rgba(24, 149, 215, 1) 2px solid;
	color: rgba(24, 149, 215, 1);
}

/* Стили текстового поля */
.message {
	background: rgba(255, 255, 255, 0.4);
	width: 100%;
	height: 120px;
	border: rgba(0, 0, 0, 0.3) 2px solid;
	box-sizing: border-box;
	-moz-border-radius: 3px;
	font-size: 18px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: block;
	padding: 10px;

	overflow: hidden;
}

/* Базовые стили кнопки */
.button {
	height: 50px;
	width: 100%;
	border-radius: 3px;
	border: rgba(0, 0, 0, 0.3) 0px solid;
	box-sizing: border-box;
	padding: 10px;
	background: #790038;
	color: #fff;
	font-weight: 400;
	font-size: 16pt;
	transition: background 0.4s;
	cursor: pointer;
	margin-left: 0;
}

/* Изменение фона кнопки при наведении */
.button:hover {
	background: #80b438;
}

/* roboto-300 */

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/roboto-300.eot');
	/* IE9 Compat Modes */
	src: local('Roboto Light'),
		url('../fonts/roboto-300.eot#iefix') format('embedded-opentype'),
		url('../fonts/roboto-300.woff2') format('woff2'),
		url('../fonts/roboto-300.woff') format('woff'),
		url('/public/fonts/roboto-300.ttf') format('truetype'),
		url('../images/roboto-300.svg#Roboto') format('svg');
	/* Legacy iOS */
}

/* roboto-regular - latin */

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-regular.eot');
	/* IE9 Compat Modes */
	src: local('Roboto'),
		url('../fonts/roboto-regular.eot#iefix') format('embedded-opentype'),
		url('../fonts/roboto-regular.woff2') format('woff2'),
		url('../fonts/roboto-regular.woff') format('woff'),
		url('/public/fonts/roboto-regular.ttf') format('truetype'),
		url('../images/roboto-regular.svg#Roboto') format('svg');
	/* Legacy iOS */
}

/* roboto-700 - latin */

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-700.eot');
	/* IE9 Compat Modes */
	src: local('Roboto Bold'),
		url('../fonts/roboto-700.eot#iefix') format('embedded-opentype'),
		url('../fonts/roboto-700.woff2') format('woff2'),
		url('../fonts/roboto-700.woff') format('woff'),
		url('/public/fonts/roboto-700.ttf') format('truetype'),
		url('../images/roboto-700.svg#Roboto') format('svg');
	/* Legacy iOS */
}

/* end fonts*/

/* ==========================================================================
   NORMALIZE CSS
   ===========================================================================*/

/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

progress {
	vertical-align: baseline;
}

template,
[hidden] {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline-width: 0;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: inherit;
}

b,
strong {
	font-weight: bolder;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background-color: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

svg:not(:root) {
	overflow: hidden;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

figure {
	margin: 1em 40px;
}

hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

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

optgroup {
	font-weight: bold;
}

button,
input,
select {
	overflow: visible;
}

button,
input,
select,
textarea {
	margin: 0;
}

button,
select {
	text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	cursor: pointer;
}

[disabled] {
	cursor: default;
}

button,
html [type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

textarea {
	overflow: auto;
}

[type='checkbox'],
[type='radio'] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	-webkit-appearance: textfield;
}

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

.children {
	padding-left: 0.5rem !important;
	font-size: 12px !important;
}

.container {
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

/*.container::after{*/
/*  content: "";*/
/*  display: table;*/
/*  clear: both;*/
/*}*/

.container-fluid {
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.container-fluid::after {
	content: '';
	display: table;
	clear: both;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row::after {
	content: '';
	display: table;
	clear: both;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col-xs-1 {
	float: left;
	width: 8.33333%;
}

.col-xs-2 {
	float: left;
	width: 16.66667%;
}

.col-xs-3 {
	float: left;
	width: 25%;
}

.col-xs-4 {
	float: left;
	width: 33.33333%;
}

.col-xs-5 {
	float: left;
	width: 41.66667%;
}

.col-xs-6 {
	float: left;
	width: 50%;
}

.col-xs-7 {
	float: left;
	width: 58.33333%;
}

.col-xs-8 {
	float: left;
	width: 66.66667%;
}

.col-xs-9 {
	float: left;
	width: 75%;
}

.col-xs-10 {
	float: left;
	width: 83.33333%;
}

.col-xs-11 {
	float: left;
	width: 91.66667%;
}

.col-xs-12 {
	float: left;
	width: 100%;
}

.pull-xs-0 {
	right: auto;
}

.pull-xs-1 {
	right: 8.33333%;
}

.pull-xs-2 {
	right: 16.66667%;
}

.pull-xs-3 {
	right: 25%;
}

.pull-xs-4 {
	right: 33.33333%;
}

.pull-xs-5 {
	right: 41.66667%;
}

.pull-xs-6 {
	right: 50%;
}

.pull-xs-7 {
	right: 58.33333%;
}

.pull-xs-8 {
	right: 66.66667%;
}

.pull-xs-9 {
	right: 75%;
}

.pull-xs-10 {
	right: 83.33333%;
}

.pull-xs-11 {
	right: 91.66667%;
}

.pull-xs-12 {
	right: 100%;
}

.push-xs-0 {
	left: auto;
}

.push-xs-1 {
	left: 8.33333%;
}

.push-xs-2 {
	left: 16.66667%;
}

.push-xs-3 {
	left: 25%;
}

.push-xs-4 {
	left: 33.33333%;
}

.push-xs-5 {
	left: 41.66667%;
}

.push-xs-6 {
	left: 50%;
}

.push-xs-7 {
	left: 58.33333%;
}

.push-xs-8 {
	left: 66.66667%;
}

.push-xs-9 {
	left: 75%;
}

.push-xs-10 {
	left: 83.33333%;
}

.push-xs-11 {
	left: 91.66667%;
}

.push-xs-12 {
	left: 100%;
}

.offset-xs-1 {
	margin-left: 8.33333%;
}

.offset-xs-2 {
	margin-left: 16.66667%;
}

.offset-xs-3 {
	margin-left: 25%;
}

.offset-xs-4 {
	margin-left: 33.33333%;
}

.offset-xs-5 {
	margin-left: 41.66667%;
}

.offset-xs-6 {
	margin-left: 50%;
}

.offset-xs-7 {
	margin-left: 58.33333%;
}

.offset-xs-8 {
	margin-left: 66.66667%;
}

.offset-xs-9 {
	margin-left: 75%;
}

.offset-xs-10 {
	margin-left: 83.33333%;
}

.offset-xs-11 {
	margin-left: 91.66667%;
}

/* ==========================================================================
   GLOBAL STYLES
   ===========================================================================*/

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

html {
	font-size: 100%;
	height: 100%;
}

body {
	position: relative;
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 20px;
	font-weight: 400;
	color: #263238;
	background: #edeef0;
	overflow-x: hidden;
	/* FLEX */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-flow: column;
	-ms-flex-flow: column;
	flex-flow: column;
	min-height: 100vh;
}

.wrapper {
	width: 100%;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	overflow: hidden;
}

.container {
	width: 100%;
}

.left {
	float: left;
}

.right {
	float: right;
}

nav ul,
ul {
	padding: 0;
	margin-bottom: 0;
	margin-top: 0;
	list-style: none;
}

nav ul li,
ul li {
	list-style: none;
	list-style-type: none;
}

.clearfix {
	clear: both;
}

.clearfix:after {
	content: '';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

img,
video {
	max-width: 100%;
	height: auto;
}

img.no-responsive,
video.no-responsive {
	max-width: none;
}

.col-12 {
	width: 100%;
}

.col-6 {
	width: 50%;
}

.col-3 {
	width: 33.333%;
}

.col-4 {
	width: 25%;
}

.col-5 {
	width: 20%;
}

.w-10 {
	width: 10%;
}

.w-12 {
	width: 12%;
}

.grayscale {
	-ms-filter: grayscale(1);
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-o-filter: grayscale(1);
	filter: grayscale(1);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.grayscale:hover {
	-ms-filter: grayscale(0);
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-o-filter: grayscale(0);
	filter: grayscale(0);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.vertical-align {
	text-align: justify;
}

.vertical-align:before {
	content: '';
	display: block;
	width: 100%;
	height: 0;
}

.vertical-align:after {
	content: '';
	display: inline-block;
	width: 100%;
	height: 0;
	visibility: hidden;
	overflow: hidden;
}

/* FOR SAFARI */

input,
textarea {
	-webkit-overflow-scrolling: touch;
}

/* end global*/

/* ==========================================================================
   TYPOGRAPHY
   ===========================================================================*/

/* TEXT */

p {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-size: 0.9375rem;
	color: #263238;
	line-height: 20px;
	font-weight: 400;
}

b {
	font-weight: 700;
}

.italic {
	font-style: italic;
}

.text_center {
	text-align: center !important;
}

.text_left {
	text-align: left !important;
}

.text_rigth {
	text-align: right !important;
}

.text_bold {
	font-weight: 700;
}

.text_uppercase {
	text-transform: uppercase;
}

/* LINKS */

a {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-size: 0.9375rem;
	color: var(--accent);
	line-height: 20px;
	font-weight: 400;
}

a:hover {
	color: var(--accent);
}

a[href^='mailto:'],
a[href^='tel:'] {
	color: inherit;
	text-decoration: none;
}

a[href^='mailto:']:hover,
a[href^='tel:']:hover {
	color: inherit;
	text-decoration: none;
}

/* TITLES */

h1 {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	color: #060808;
	line-height: 36px;
	font-weight: 400;
}

h2 {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-size: 1.125rem;
	color: #060808;
	line-height: 25ox;
	font-weight: 400;
}

h3 {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-size: 0.9375rem;
	color: #060808;
	line-height: 18px;
	font-weight: 700;
}

h4 {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1rem;
	color: var(--accent);
	line-height: 18px;
	font-weight: 400;
}

.no-upercouse {
	text-transform: none;
}

/* end typography */

.icon-flex {
	display: flex;
	align-items: flex-start;
}

.icon {
	position: relative;
	display: inline-block;
}

.icon-id {
	background-image: url(../images/id.svg);
	width: 19px;
	height: 19px;
}

.icon-dop {
	background-image: url(../images/list-dop.svg);
	width: 19px;
	height: 19px;
}

.icon-top {
	background-image: url(../images/like-yes.svg);
	width: 20px;
	height: 20px;
}

.icon-favs {
	background-image: url(../images/favs-yes.svg);
	width: 20px;
	height: 20px;
}

.icon-info {
	background-image: url(../images/icon-info.svg);
	width: 20px;
	height: 20px;
}

.icon-search {
	background-image: url(../images/sprite/sprite.png);
	background-position: -181px -72px;
	width: 15px;
	height: 16px;
}

.icon-search-lg {
	background-image: url(../images/sprite/sprite.png);
	background-position: -78px -35px;
	width: 20px;
	height: 20px;
}

.icon-lock {
	background-image: url(../images/sprite/sprite.png);
	background-position: -181px -35px;
	width: 14px;
	height: 22px;
}

.icon-area {
	background-image: url(../images/sprite/sprite.png);
	background-position: -68px -112px;
	width: 19px;
	height: 19px;
}

.icon-local {
	background-image: url(../images/sprite/sprite.png);
	background-position: -148px -72px;
	width: 16px;
	height: 21px;
}

.icon-service {
	background-image: url(../images/sprite/sprite.png);
	background-position: -35px -38px;
	width: 24px;
	height: 20px;
}

.icon-national {
	background-image: url(../images/sprite/sprite.png);
	background-position: -35px -77px;
	width: 20px;
	height: 20px;
}

.icon-advanced {
	background-image: url(../images/sprite/sprite.png);
	background-position: 0 -147px;
	width: 18px;
	height: 18px;
}

.icon-cash {
	background-image: url(../images/sprite/sprite.png);
	background-position: -78px 0;
	width: 20px;
	height: 20px;
}

.icon-gene {
	background-image: url(../images/sprite/sprite.png);
	background-position: 0 0;
	width: 24px;
	height: 23px;
}

.icon-linner {
	background-image: url(../images/sprite/sprite.png);
	background-position: -113px -70px;
	width: 18px;
	height: 22px;
}

.icon-libra {
	background-image: url(../images/sprite/sprite.png);
	background-position: 0 -38px;
	width: 20px;
	height: 24px;
}

.icon-boobs {
	background-image: url(../images/sprite/sprite.png);
	background-position: -181px 0;
	width: 16px;
	height: 20px;
}

.icon-data {
	background-image: url(../images/sprite/sprite.png);
	background-position: -181px -103px;
	width: 10px;
	height: 19px;
}

.icon-hart {
	background-image: url(../images/sprite/sprite.png);
	background-position: -113px 0;
	width: 20px;
	height: 20px;
}

.icon-name {
	background-image: url(../images/user-name.svg);
	width: 20px;
	height: 20px;
}

.icon-hart-white {
	background-image: url(../images/sprite/sprite.png);
	background-position: -70px -77px;
	width: 20px;
	height: 20px;
}

.icon-phone {
	background-image: url(../images/sprite/sprite.png);
	background-position: -148px -37px;
	width: 17px;
	height: 20px;
}

.icon-cash-md {
	background-image: url(../images/sprite/sprite.png);
	background-position: 0 -77px;
	width: 20px;
	height: 20px;
}

.icon-man {
	background-image: url(../images/sprite/sprite.png);
	background-position: -39px 0;
	width: 24px;
	height: 22px;
}

.icon-faq {
	background-image: url(../images/sprite/sprite.png);
	background-position: -148px 0;
	width: 18px;
	height: 22px;
}

.icon-messadge {
	background-image: url(../images/sprite/sprite.png);
	background-position: -113px -35px;
	width: 20px;
	height: 20px;
}

.icon-time-sm {
	background-image: url(../images/sprite/sprite.png);
	background-position: -33px -147px;
	width: 17px;
	height: 18px;
}

.icon-love-house {
	background-image: url(../images/sprite/sprite.png);
	background-position: -137px -112px;
	width: 18px;
	height: 18px;
}

.icon-car-sm {
	background-image: url(../images/sprite/sprite.png);
	background-position: -65px -147px;
	width: 18px;
	height: 15px;
}

.icon-camera {
	background-image: url(../images/sprite/sprite.png);
	background-position: -102px -112px;
	width: 20px;
	height: 18px;
}

.icon-video {
	background-image: url(../images/sprite/sprite.png);
	background-position: -34px -112px;
	width: 19px;
	height: 19px;
}

.icon-map {
	background-image: url(../images/sprite/sprite.png);
	background-position: 0 -112px;
	width: 19px;
	height: 20px;
}

.menu-list__item .menu-list__link::before {
	content: '';
	background-position: center center;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	background-image: url(../images/sprite.png);
}

.menu-list__item:nth-child(1) .menu-list__link::before {
	height: 20px;
	background-image: url(../images/sprite.png);
	background-position: -35px -38px;
	width: 24px;
}

.menu-list__item:nth-child(2) .menu-list__link::before {
	background-position: -35px -77px;
	width: 20px;
}

.menu-list__item:nth-child(3) .menu-list__link::before {
	background-image: url(../images/like-yes.svg);
	width: 20px;
	height: 20px;
}

.menu-list__item:nth-child(4) .menu-list__link::before {
	background-position: 0 0;
	width: 24px;
	height: 23px;
}

.menu-list__item:nth-child(5) .menu-list__link::before {
	background-position: -113px -70px;
	width: 18px;
	height: 22px;
}

.menu-list__item:nth-child(6) .menu-list__link::before {
	background-position: -181px -103px;
	width: 10px;
	height: 19px;
}

.menu-list__item:nth-child(7) .menu-list__link::before {
	background-position: 0 -77px;
	width: 20px;
}

.menu-list__item:nth-child(8) .menu-list__link::before {
	background-position: -181px 0;
	width: 16px;
}

.menu-list__item:nth-child(9) .menu-list__link::before {
	background-position: -68px -112px;
	width: 19px;
	height: 19px;
}

.menu-list__item:nth-child(10) .menu-list__link::before {
	height: 20px;
	background-position: -113px 0px;
	width: 20px;
}

.block-favs {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.profile-action {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin-bottom: 0.5rem;
}

.block-btn-favs {
	display: flex;
	align-items: center;
	width: 50px;
	justify-content: flex-end;
}

.favs,
.like {
	cursor: pointer;
}

.main__card--wrapper {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	justify-content: space-between;
}

/* ==========================================================================
   HEADER
   ===========================================================================*/
.header {
	position: relative;
	width: 100%;
}

.header-top {
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: var(--accent);;
	overflow: hidden;
	min-height: 50px;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* LOGO */

.logo {
	vertical-align: top;
	display: flex;
	align-items: center;
}

.logo__img {
	display: inline-block;
	vertical-align: middle;
	padding-left: 2px;
	padding-right: 5px;
	width: 44px;
}

.logo__text {
	vertical-align: middle;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 16px;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
}

.logo__text i {
	font-style: italic;
}

/* LOCAL */

.local {
	display: inline-block;
	vertical-align: top;
}

.local {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 15px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.local img {
	max-width: 20px;
}

.local:hover {
	text-decoration: none;
	color: #fff !important;
}

.local p {
	margin: 0;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 15px;
}

/* LOGIN */

.login {
	display: flex !important;
	text-decoration: none;
	align-items: center;
}

.login:hover {
	color: #fff;
}

.login .icon {
	vertical-align: middle;
	margin-right: 9px;
}

.modal__city {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9993;
	background: rgba(0, 0, 0, 0.5);
	overflow-x: hidden;
	overflow-y: auto;
	display: block;
	opacity: 0;
	transition: 0.2s linear;
	pointer-events: none;
}

.modal__city.active {
	opacity: 1;
	pointer-events: all;
}

.modal__city--inner {
	width: 100%;
	display: flex;
	align-items: center;
	max-width: 900px;
	min-height: calc(100% - 35px);
	margin: 17.5px auto;
	justify-content: center;
}

.modal__city--content {
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
	border-radius: 3px;
}

.modal__city--wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal__city--title {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.modal__city--cross {
	cursor: pointer;
	width: 25px;
}

.modal__city--box {
	width: 100%;
	margin-top: 20px;
	overflow-y: auto;
	max-height: 350px;
	display: flex;
	flex-wrap: wrap;
}

.modal__city--link {
	width: calc(100% / 4);
	padding: 0 5px;
	color: #000;
	margin-top: 5px;
	text-decoration: none;
}

.modal__city--link:hover {
	color: #d20034;
}

.navbar__button--show--inner {
	width: 100%;
	/*padding: 10px 10px 0 10px;*/
	display: none;
	justify-content: center;
	min-height: 2.4rem;
}

.navbar__button--show {
	width: 100%;
	padding: 0;
	border: none;
	background: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	display: flex;
	justify-content: center;
	gap: 7px;
	align-items: center;
	border-top: 1px solid #edeef0;
	border-bottom: 1px solid #edeef0;
}
/* end header*/

/* ==========================================================================
   MENU
   ===========================================================================*/

.menu {
	position: relative;
	width: 100%;
	background-color: #fff;
}

.menu-list {
	position: relative;
	width: 100%;
	padding-left: 0 !important;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/*.menu-list__item{*/
/*  display: inline-block;*/
/*  margin-left: 13px;*/
/*  border: 1px solid transparent;*/
/*}*/

/*.menu-list__item:nth-last-child(2){*/
/*  margin-left: 22px;*/
/*}*/

.menu-list__item.clicked > a {
	color: var(--accent);
}

.menu-list__item.clicked > a:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.menu-list__item.parent {
	position: relative;
}

.menu-list__item.parent .submenu {
	top: 36px;
	left: -1px;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}

.menu-list__item_box {
	padding: 5px 10px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background-color: #eceff1;
}

.menu-list__item_box .menu-list__link:after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	display: inline-block;
	width: 9px;
	height: 5px;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAGCAYAAAD68A/GAAAAN0lEQVQYV2NkYGBgUDOy+A+i8QFGmCQ+xbfOnWCEK8RlMkgRSA5FIbpimCKsCmGKkRXhVIjNUwDMixGWJPH9oAAAAABJRU5ErkJggg==')
		no-repeat;
	background-size: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.menu-list__item_btn .menu-list__link {
	text-decoration: none;
}
.menu-list__item_btn {
	padding: 5px 10px;
}

.menu-list__link:hover,
.city__button:hover {
	cursor: pointer;
}

.menu-list__item_btn .icon {
	position: relative;
}

.menu-list__link {
	position: relative;
	z-index: 23;
	display: flex;
	gap: 8px;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #263238;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-decoration: none;
}

.menu-list__link .icon {
	flex-shrink: 0;
}

/* CHECKBOX */

.menu__checkbox {
	position: absolute;
	width: 0;
	opacity: 0;
}

.menu__label {
	position: relative;
	display: inline-block;
	color: #263238;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	cursor: pointer;
}

.menu__label:before {
	content: '';
	position: relative;
	top: -2px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	width: 18px;
	height: 18px;
	-webkit-border-radius: 1px 0 0 1px;
	border-radius: 1px 0 0 1px;
	background-color: #eceff1;
}

.menu__checkbox:checked + .menu__label:before {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAJCAYAAADpeqZqAAAAtElEQVQoU43QvQ2CQBTA8f+zMRESGYENdIQbwUawZAQ2ECcxlmIBI+AGuIkFaCzkDB8SCBi87t7d730Jf54cJ9Do2OSSypTRbKyceSSgNPpqEqoKZWzXgtgGYdxN8mSn3hSRIBZwW/BSQnyvUI6bAivQgUF4qGNOALJvkrSgvLeVQBJBlhqS5kHVQJ8MQq/bQTtTxtYTZsf+jEPQVvp+7MNxMEBl4IHrF2CbnP1fm51c+Rj8APfZOAq9pd5sAAAAAElFTkSuQmCC');
	background-repeat: no-repeat;
	background-size: 11px 8px;
	background-position: center;
}

.submenu {
	display: none;
	position: absolute;
	z-index: 991;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 10px 10px;
	-webkit-border-radius: 0 2px 2px;
	border-radius: 0 2px 2px;
	border: 1px solid var(--gray);
	border-top-color: transparent;
	background-color: var(--gray);
	max-height: 400px;
	overflow: auto;
}

.submenu.open {
	/*display: block;*/
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.submenu-col-2 {
	display: block;
	float: left;
	width: 24.4%;
	padding: 0.5rem;
	background-color: #fff;
	margin: 0.2rem;
}

.submenu-col-2-serv {
	width: 32.58%;
}

.submenu-col-2-nat {
	width: 100%;
	padding: 0.2rem;
	margin: 0.2rem;
}

.submenu-list:not(:last-child) {
	margin-bottom: 30px;
}

.submenu-list__title {
	font-size: 13px;
	color: #263238;
	font-weight: 700;
	line-height: 20px;
}

.submenu-list__item {
	line-height: 20px;
	margin-bottom: 0.2rem;
}

.submenu-list__item > a {
	font-size: 13px;
	color: #263238;
	font-weight: 400;
	line-height: 20px;
	text-decoration: none;
}

.submenu-list__item > a:hover {
	color: var(--accent);
}

.submenu-list__item > a:before {
	content: '› ';
	color: currentColor;
}

.menu-button {
	position: fixed;
	z-index: 9992;
	top: 5px;
	right: 15px;
	width: 40px;
	height: 40px;
	float: right;
	background-color: var(--blue);
	border: 0;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	text-align: center;
	padding: 0;
}

.burger-icon {
	position: relative;
	margin-top: 8px;
	margin-bottom: 8px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin: 0 auto;
}

.burger-icon,
.burger-icon::before,
.burger-icon::after {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #060808;
	outline: 1px solid transparent;
	-webkit-transition-property: background-color, -webkit-transform;
	transition-property: background-color, -webkit-transform;
	transition-property: background-color, transform;
	transition-property: background-color, transform, -webkit-transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.burger-icon::before,
.burger-icon::after {
	position: absolute;
	content: '';
}

.burger-icon::before {
	top: -8px;
}

.burger-icon::after {
	top: 8px;
}

.menu-button.is-active {
	border-color: var(--accent);;
}

.menu-button.is-active .burger-icon {
	background-color: transparent;
}

.menu-button.is-active .burger-icon::before {
	-webkit-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
}

.menu-button.is-active .burger-icon::after {
	-webkit-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
}

/* end menu */

/* RANGE SLIDER */

/* end menu filter*/

/* ==========================================================================
   CARDS
   ===========================================================================*/

.cards {
	width: 100%;
	min-height: 86vh;
}

.card {
	display: inline-block;
	width: 100%;
	height: 290px;
	overflow: hidden;
	padding: 10px;
	margin-bottom: 30px;
	-webkit-box-shadow: 0 0 14px rgba(38, 50, 56, 0.2);
	box-shadow: 0 0 14px rgba(38, 50, 56, 0.2);
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background-color: #fff;
}

.card:hover {
	-webkit-box-shadow: 0 0 14px rgba(38, 50, 56, 0.45);
	box-shadow: 0 0 14px rgba(38, 50, 56, 0.45);
}

.cards__image {
	display: inline-block;
	width: 125px;
	height: 170px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #e1e1e1;
	overflow: hidden;
}

.card-list {
	display: inline-block;
	float: right;
	padding-right: 3px;
}

.card-list-item:not(:last-child) {
	margin-bottom: 5px;
}

.card-list-item__title {
	position: relative;
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
	color: #263238;
	font-size: 12px;
	line-height: 17px;
	font-weight: 400;
	margin-bottom: 0;
	text-transform: uppercase;
}

.card-list-item__title .icon {
	position: relative;
	top: -2px;
	vertical-align: middle;
	margin-right: 2px;
}

.list li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-left: 6px;
	padding-right: 8px;
	width: 100%;
	color: #263238;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
}

.list li > span {
	display: inline-block;
	margin-right: -0.36em;
	text-align: left;
}

.list li > span:first-child {
	width: 60%;
}

.list li > span:last-child {
	width: 40%;
}

.list li:nth-child(odd) {
	background-color: #eceff1;
}

.card-panel {
	position: relative;
	width: 100%;
	padding-top: 15px;
}

.card-panel-item {
	width: 100%;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
}

.card-panel-item .icon {
	vertical-align: middle;
	margin-right: 5px;
}

.card-panel-item_name {
	position: relative;
	padding-left: 2px;
	color: var(--accent);
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 3px;
	text-decoration: none;
}

.card-panel-item_name:hover {
	text-decoration: underline;
}

.card-panel-item_name:after {
	content: '';
	display: inline-block;
	position: absolute;
	right: -12px;
	top: 0;
	height: 100%;
	width: 20px;
	background: #fff;
	-webkit-box-shadow: -20px 1px 31px 16px rgba(255, 255, 255, 0.85);
	box-shadow: -20px 1px 31px 16px rgba(255, 255, 255, 0.85);
	z-index: 8;
}

.card-panel-item_address {
	padding-left: 5px;
	margin-bottom: 2px;
}

.card-panel-item_tel {
	padding-left: 8px;
}

.card-panel__button {
	position: absolute;
	bottom: 6px;
	right: 0;
	display: inline-block;
	background-color: #fff;
	color: var(--accent);
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	text-align: center;
	padding: 0 5px 1px 5px;
	border: 0;
	border-bottom: 1px dotted var(--accent);;
	outline: none !important;
}

.card-panel__button:hover {
	border-bottom-color: transparent;
}

.card-panel__button:after {
	content: '';
	display: inline-block;
	position: absolute;
	left: -10px;
	top: 0;
	height: 100%;
	width: 10px;
	background: #fff;
	-webkit-box-shadow: -10px 0 11px 6px rgba(255, 255, 255, 0.85);
	box-shadow: -10px 0 11px 6px rgba(255, 255, 255, 0.85);
	z-index: 8;
}

.card__map {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background: url(../images/country.svg) #ffffff no-repeat center 80%;
	background-size: cover;
	background-clip: content-box;
}

.card__map span {
	background: var(--accent);;
	color: #fff;
	padding: 8px 15px;
	cursor: pointer;
	border-radius: 2px;
	font-weight: 600;
	transition: 0.2s linear;
}

.card__map span:hover {
	background: #e7ebed;
	color: #060808;
	border: 1px solid #78909c;
}

@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	100% {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
	}
}

@keyframes scroll {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	100% {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
	}
}
.card__buttons {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.card__item--button {
	width: calc(100% / 2 - 48px / 2);
	padding: 8px 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	background: #fff;
	cursor: pointer;
	transition: 0.2s linear;
	border-radius: 2px;
	color: #060808;
	font-size: 11pt;
	-webkit-box-shadow: 0 0 4px rgb(38 50 56 / 15%);
	box-shadow: 0 0 4px rgb(38 50 56 / 15%);
}

.card__buttons img {
	width: 15px;
}

.card__item--button:hover {
	opacity: 0.7;
}

/* end cards */

/*----------------------------------------
	INFO BLOCKS
----------------------------------------*/
.info-title-card {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
}

.info {
	width: 100%;
	-webkit-box-shadow: 0 0 4px rgba(38, 50, 56, 0.15);
	box-shadow: 0 0 4px rgba(38, 50, 56, 0.15);
	background-color: #fff;
}

.info p {
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
}

.info-header {
	position: relative;
	display: block;
	min-height: 40px;
	padding: 10px 15px;
	-webkit-border-radius: 2px 2px 0 0;
	border-radius: 2px 2px 0 0;
	background-color: #eceff1;
}

.info-header .icon {
	margin-right: 5px;
	vertical-align: middle;
}

.info-body {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0 15px;
}

.info__title {
	color: #263238;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	margin: 0;
}

/* end info blocks */

/* ==========================================================================
	 FOOTER
	 ========================================================================== */
.footer-links {
	display: inline-block;
	padding-top: 9px;
}

.footer-links li {
	position: relative;
	display: inline-block;
	width: 300px;
	padding-left: 25px;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: #fff;
}

.footer-links li:not(:last-child) {
	margin-right: 25px;
}

.footer-links li > a {
	font-size: 12px;
	font-weight: 400;
	line-height: 15px;
	color: #fff;
}

.footer-links li > a:hover {
	text-decoration: none;
}

.footer-links li .icon {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	vertical-align: top;
}

/* end footer */

/* ==========================================================================
   BREADCRUMBS
   ===========================================================================*/

.breadcrumbs {
	width: 100%;
}

.breadcrumbs-list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.breadcrumbs-list__item {
	display: flex;
	gap: 5px;
	font-size: 14px;
	font-weight: 400;
}

.breadcrumbs-list__item:not(:last-child):after {
	content: '>';
	color: currentColor;
	margin: 0 2px;
}

.breadcrumbs-list__item > a {
	font-size: 14px;
	font-weight: 400;
	color: #263238;
	text-decoration: underline;
}

/* end breadcrumbs */

/* ==========================================================================
   SERVICE LIST
   ===========================================================================*/
.info-body_service {
	padding-left: 23px;
	padding-top: 23px;
	padding-top: 10px;
}

.service-list {
	display: block;
	float: left;
	width: 25%;
}

.link-list {
	font-size: 14px;
	line-height: 25px;
}

.link-list:not(:last-child) {
	margin-bottom: 28px;
}

.link-list__title {
	color: #263238;
	font-weight: 700;
}

.link-list__item > a {
	position: relative;
	display: inline-block;
	padding-left: 23px;
	color: var(--accent);
	font-weight: 400;
	text-decoration: none;
	word-break: break-word;
}

.link-list__item > a:hover {
	text-decoration: underline;
}

.link-list__item > a:after {
	content: '';
	display: inline-block;
	position: absolute;
	left: 0;
	top: 3px;
	width: 15px;
	height: 15px;
	background: url('data:image/svg+xml,%3Csvg%20id%3D%22SvgjsSvg1008%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-297%20389%2016%2016%22%3E%3Cstyle%3E.st0%7Bfill%3A%23e57373%7D%3C%2Fstyle%3E%3Ctitle%3EShape%2051%3C%2Ftitle%3E%3Cpath%20id%3D%22SvgjsPath1010%22%20class%3D%22st0%22%20d%3D%22M-281.4%20391.7l-2.3-2.3-5.3%205.3-5.3-5.3-2.3%202.3%205.3%205.3-5.3%205.3%202.3%202.3%205.3-5.3%205.3%205.3%202.3-2.3-5.3-5.3%205.3-5.3z%22%2F%3E%3C%2Fsvg%3E')
		no-repeat;
	background-size: 100%;
}

.link-list__item_active > a {
	color: #7cb342;
}

.link-list__item_active > a:after {
	width: 16px;
	height: 14px;
	background: url('data:image/svg+xml,%3Csvg%20id%3D%22SvgjsSvg1000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-297%20389%2016%2015%22%3E%3Cstyle%3E.st0%7Bfill%3A%237cb342%7D%3C%2Fstyle%3E%3Ctitle%3EShape%2050%3C%2Ftitle%3E%3Cpath%20id%3D%22SvgjsPath1007%22%20class%3D%22st0%22%20d%3D%22M-289.7%20402.3l-6.3-6.3%203.7-3.7%202.4%202.4%203.9-4.3h-9.4c-.9%200-1.6.7-1.6%201.6v9.7c0%20.9.7%201.6%201.6%201.6h11.2c.9%200%201.6-.7%201.6-1.6v-7.3l-7.1%207.9zm8.7-11.9l-1.5-1.4-7.3%208.1-2.5-2.5-1.4%201.4%204%204%208.7-9.6z%22%2F%3E%3C%2Fsvg%3E')
		no-repeat;
	background-size: 100%;
}

/* service list */

/*----------------------------------------
	CHECKBOX
----------------------------------------*/

.checkbox-input {
	opacity: 0;
	width: 0;
	position: absolute;
}

.checkbox-label {
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding-left: 30px;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	color: #263238;
}

.checkbox-label:before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	-webkit-border-radius: 1px 0 0 1px;
	border-radius: 1px 0 0 1px;
	background-color: #fff;
	border: 1px solid #e6e6e6;
}

.checkbox-input:checked + label:before {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAJCAYAAADpeqZqAAAAtElEQVQoU43QvQ2CQBTA8f+zMRESGYENdIQbwUawZAQ2ECcxlmIBI+AGuIkFaCzkDB8SCBi87t7d730Jf54cJ9Do2OSSypTRbKyceSSgNPpqEqoKZWzXgtgGYdxN8mSn3hSRIBZwW/BSQnyvUI6bAivQgUF4qGNOALJvkrSgvLeVQBJBlhqS5kHVQJ8MQq/bQTtTxtYTZsf+jEPQVvp+7MNxMEBl4IHrF2CbnP1fm51c+Rj8APfZOAq9pd5sAAAAAElFTkSuQmCC');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px;
}

.panel-list__item .checkbox-input + label:before {
	top: -2px;
}

/* end checkbox*/

/* ==========================================================================
   BUTTONS
   ===========================================================================*/

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: none;
}

.btn,
.btn[type='button'] {
	position: relative;
	display: inline-block;
	width: auto;
	width: 172px;
	height: 32px;
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.5;
	font-weight: 400;
	text-align: center;
	overflow: hidden;
	z-index: 3;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-border-radius: 14px;
	border-radius: 14px;
	border: 1px solid transparent;
	cursor: pointer;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.btn_default {
	background-color: #78909c;
	color: #fff;
}

.btn_default:hover {
	background-color: #95a8b2;
}

.btn_red {
	background-color: var(--accent);;
	color: #fff;
}

.btn_red:hover {
	background-color: #ff2975;
}

.btn[type='button'] {
	-webkit-appearance: inherit;
}

/* Отключение кнопки */

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.25;
	filter: alpha(opacity=25);
	-webkit-box-shadow: none;
	box-shadow: none;
}

button:focus {
	outline: none;
}

/* end buttons*/

/* ==========================================================================
   CARD INFO
   ===========================================================================*/

.card-info {
	width: 100%;
}

.card-info .check {
	display: inline-block;
	position: absolute;
	right: 15px;
	bottom: -10px;
	text-align: center;
}

.card-info .check img {
	width: 42px;
	height: 42px;
	display: block;
	margin: 0 auto;
}

.card-info .check-label {
	display: inline-block;
	margin: 6px auto 0;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	line-height: 12px;
}

.card-info-item {
	position: relative;
	width: 33.33333%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.card-info-item .info {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.card-info-item .info-header {
	padding-left: 10px;
	padding-right: 10px;
}

.card-info-item .info-body {
	padding-left: 10px;
	padding-right: 10px;
}

.info_main .info-header {
	overflow: hidden;
	background-color: var(--accent);;
}

.info_main .info-header:after {
	content: '';
	position: absolute;
	top: 0;
	right: -20px;
	display: inline-block;
	width: 15px;
	height: 100%;
	-webkit-box-shadow: -20px 0 19px 12px var(--accent);;
	box-shadow: -20px 0 19px 12px var(--accent);;
}

.info_main .icon-hart-white {
	display: inline-block;
	vertical-align: top;
	margin-right: 5px;
}

.info-header__name {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	color: #fff;
	width: 100%;
	vertical-align: top;
}

.info-list {
	display: block;
	width: 100%;
	padding-top: 5px;
}

.info-list .card-panel__button {
	bottom: 11px;
	right: 70px;
}

.info-list-item {
	position: relative;
	width: 100%;
	display: block;
	white-space: nowrap;
	padding: 8px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	margin-left: 0.1rem;
}

.phone__info {
	display: flex !important;
	justify-content: space-between !important;
}

.phone__block {
	display: flex;
}

.phone__link {
	font-size: 17px;
}

.info__social {
	display: flex;
	gap: 5px;
}

.info-list-item .icon {
	margin-right: 9px;
}

.info-list-item .icon.icon-phone {
	position: relative;
	/*top: 5px;*/
}

.info-list-item .icon.icon-area {
	position: relative;
	/*top: 5px;*/
}

a.info-list-item {
	font-size: 16px;
	text-decoration: none;
	display: flex;
	align-items: flex-start;
}

a.info-list-item:hover {
	text-decoration: underline;
}

/* PRICE LIST */

.info .info-body_data {
	padding-left: 18px;
	padding-right: 14px;
}

.info .info-header_data {
	padding-left: 18px;
	padding-right: 14px;
}

.price-list {
	display: block;
	float: left;
	height: 100%;
	width: 39%;
	padding-top: 12px;
}

.price-list:first-child {
	width: 21%;
}

.price-list:first-child span {
	border-right: 1px solid #fff;
}

.price-list:first-child .price-list-item {
	padding-bottom: 2px;
}

.price-list:not(:first-child) .price-list__title {
	padding-left: 8px;
}

.price-list:not(:first-child) span:not(:last-child) {
	border-bottom: 1px solid #fff;
}

.price-list:nth-child(2) span {
	border-right: 1px solid #fff;
}

.price-list__title {
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	font-weight: 400;
	line-height: 25px;
	white-space: nowrap;
	vertical-align: top;
}

.price-list__title .icon {
	position: relative;
	top: -3px;
	vertical-align: middle;
}

.price-list-item {
	width: 100%;
	display: inline-block;
	background-color: rgba(236, 239, 241, 0.8);
}

.price-list-item span {
	display: inline-block;
	width: 100%;
	padding-left: 8px;
	font-size: 16px;
	font-weight: 400;
	line-height: 35px;
}

.price-list-item .no {
	opacity: 0.6;
}

/* DATA LIST  */

.data-list {
	display: inline-block;
	margin-top: 40px;
	width: 100%;
	background-color: rgba(236, 239, 241, 0.8);
}

.data-list-item {
	display: block;
	float: left;
	width: 50%;
}

.data-list-item:not(:last-child) > span {
	border-right: 1px solid #fff;
}

.data-list-item a {
	text-decoration: none;
}

.data-list-item a:hover {
	text-decoration: underline;
}

.data-list-item > a,
.data-list-item > span {
	display: inline-block;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	line-height: 34px;
	padding-left: 8px;
}

.data-list-item > a:not(:last-child),
.data-list-item > span:not(:last-child) {
	border-bottom: 1px solid #fff;
}

.l-red {
	color: var(--accent);
}

/* end card */

/* ==========================================================================
	 GALLERY PHOTO
	 ===========================================================================*/
.gallery {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Frame */

.frame {
	height: 524px;
	line-height: 524px;
	overflow: hidden;
}

.frame__list {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
}

.frame__list_item {
	display: block;
	float: left;
	width: auto;
	height: 100%;
	margin: 0 20px 0 0;
	padding: 0;
	text-align: center;
	cursor: pointer;
}

.frame__list_item img {
	max-width: none;
	width: auto;
	height: 100%;
}

/* Scrollbar */

.gallery__scrollbar {
	margin: 28px 0;
	height: 2px;
	background: #bdbdbd;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.gallery__scrollbar_handle {
	position: relative;
	top: -4px;
	width: 100px;
	height: 10px;
	background-color: var(--accent);;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
}

.gallery__scrollbar_handle .mousearea {
	position: absolute;
	top: -9px;
	left: 0;
	width: 100%;
	height: 20px;
}

.gallery__frame {
	position: relative;
}

.gallery__frame:after {
	content: '';
	position: absolute;
	z-index: 33;
	top: 0;
	right: 0;
	left: auto;
	bottom: auto;
	display: block;
	height: 100%;
	-webkit-box-shadow: -1px -1px 16px 13px #fff;
	box-shadow: -1px -1px 16px 13px #fff;
}

.gallery__frame:before {
	content: '';
	position: absolute;
	z-index: 33;
	top: 0;
	left: 0;
	right: auto;
	bottom: auto;
	display: block;
	height: 100%;
	-webkit-box-shadow: -1px -1px 16px 13px #fff;
	box-shadow: -1px -1px 16px 13px #fff;
}

.section_title {
	margin: 38px 0 27px;
}

/* GALLERY HIDDEN  */

.gallery-hidden {
	display: none;
}

.gallery-mobile {
	width: 260px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 30px;
	overflow: hidden;
}

.gallery-mobile img {
	width: 100%;
}

.gallery-mobile .btn {
	margin-top: 30px;
}

/* end gallery */

.map-wrap {
	display: block;
	width: 100%;
	height: 412px;
	overflow: hidden;
	margin: 15px auto;
	background-color: #edeef0;
}

/*----------------------------------------
	SEARCH LIST
----------------------------------------*/

.checkbox-col {
	display: inline-block;
	vertical-align: top;
	margin-right: -0.36em;
	padding-top: 10px;
	padding-bottom: 10px;
}

.checkbox-col_6 {
	width: 16.66667%;
}

.checkbox-col_7 {
	width: 14.28571%;
}

.panel-list {
	display: block;
	float: left;
}

.panel-list__item {
	display: inline-block;
	vertical-align: top;
	line-height: 30px;
}

.panel-list__item:not(:last-child) {
	margin-right: 30px;
}

.checkbox-list {
	margin-bottom: 20px;
}

.checkbox-list__title {
	position: relative;
	font-size: 13px;
	color: #263238;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 5px;
}

.checkbox-list__title:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: inline-block;
	height: 1px;
	width: 80%;
	background-color: rgba(38, 50, 56, 0.2);
}

.wrap-buttons {
	float: right;
}

.wrap-buttons .btn:not(:last-child) {
	margin-right: 30px;
}

/* end search list */

/* ==========================================================================
   GALLERY PHOTO
   ===========================================================================*/

#mainCarousel .carousel__button {
	background: #fff;
	box-shadow: 0 0 3px rgb(28 28 28 / 10%), 0 1px 1px rgb(24 24 24 / 10%);
}

.carousel__slide {
	max-width: 393px !important;
	padding: 0 !important;
	margin: 0 0.5rem !important;
	overflow: hidden !important;
}

.carousel__video {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100% !important;
}

.carousel__slide img {
	max-height: 520px !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	overflow-y: hidden;
}

.videobox {
	width: 100% !important;
	height: 100% !important;
	display: flex;
}

.videobox video,
.videobox video[poster] {
	width: 100% !important;
	height: 100% !important;
	background: #000;
	max-height: 520px !important;
}

/* end gallery */

/* Ion.RangeSlider
// css version 2.0.3
// © 2013-2014 Denis Ineshin | IonDen.com
// ===================================================================================================================*/

/* =====================================================================================================================
// RangeSlider */

.irs {
	position: relative;
	display: block;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.irs-line {
	position: relative;
	display: block;
	overflow: hidden;
	outline: none !important;
}

.irs-line-left,
.irs-line-mid,
.irs-line-right {
	position: absolute;
	display: block;
	top: 0;
}

.irs-line-left {
	left: 0;
	width: 11%;
}

.irs-line-mid {
	left: 9%;
	width: 82%;
}

.irs-line-right {
	right: 0;
	width: 11%;
}

.irs-bar {
	position: absolute;
	display: block;
	left: 0;
	width: 0;
}

.irs-bar-edge {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
}

.irs-shadow {
	position: absolute;
	display: none;
	left: 0;
	width: 0;
}

.irs-slider {
	position: absolute;
	display: block;
	cursor: default;
	z-index: 1;
}

.irs-slider.type_last {
	z-index: 2;
}

.irs-min {
	position: absolute;
	display: block;
	left: 0;
	cursor: default;
}

.irs-max {
	position: absolute;
	display: block;
	right: 0;
	cursor: default;
}

.irs-from,
.irs-to,
.irs-single {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	cursor: default;
	white-space: nowrap;
}

.irs-grid {
	position: absolute;
	display: none;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
}

.irs-with-grid .irs-grid {
	display: block;
}

.irs-grid-pol {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 8px;
	background: #000;
}

.irs-grid-pol.small {
	height: 4px;
}

.irs-grid-text {
	position: absolute;
	bottom: 0;
	left: 0;
	white-space: nowrap;
	text-align: center;
	line-height: 9px;
	padding: 0 3px;
	color: #000;
}

.irs-disable-mask {
	position: absolute;
	display: block;
	top: 0;
	left: -1%;
	width: 102%;
	height: 100%;
	cursor: default;
	background: transparent;
	z-index: 2;
}

.irs-disabled {
	opacity: 0.4;
}

.lt-ie9 .irs-disabled {
	filter: alpha(opacity=40);
}

.irs-hidden-input {
	position: absolute !important;
	display: block !important;
	top: 0 !important;
	left: 0 !important;
	width: 0 !important;
	height: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	outline: none !important;
	z-index: -9999 !important;
	background: none !important;
	border-style: solid !important;
	border-color: transparent !important;
}

/* Ion.RangeSlider, Simple Skin
// css version 2.0.3
// © Denis Ineshin, 2014    https://github.com/IonDen
// © guybowden, 2014        https://github.com/guybowden
// ===================================================================================================================*/

/* =====================================================================================================================
// Skin details */

.irs {
	height: 40px;
}

.irs-with-grid {
	height: 40px;
}

.irs-line {
	height: 10px;
	top: 5px;
	background: #c0c0c0;
	-webkit-box-shadow: inset 0 1px 5px 1px #9e9e9e;
	box-shadow: inset 0 1px 5px 1px #9e9e9e;
	border: 0;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	-moz-border-radius: 16px;
}

.irs-line-left {
	height: 8px;
}

.irs-line-mid {
	height: 8px;
}

.irs-line-right {
	height: 8px;
}

.irs-bar {
	height: 10px;
	top: 5px;
	border-top: 1px solid #428bca;
	border-bottom: 1px solid #428bca;
	background: #28587f;
	/* Old browsers */
	/* FF3.6-15 */
	background: -webkit-linear-gradient(
		left,
		#28587f 0%,
		#5395d0 50%,
		#28587f 100%
	);
	/* Chrome10-25,Safari5.1-6 */
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#28587f),
		color-stop(50%, #5395d0),
		to(#28587f)
	);
	background: linear-gradient(to right, #28587f 0%, #5395d0 50%, #28587f 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#28587f', endColorstr='#28587f',GradientType=1 );
	/* IE6-9 */
}

.irs-bar-edge {
	height: 10px;
	top: 5px;
	width: 14px;
	border: 1px solid #428bca;
	border-right: 0;
	background: #428bca;
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(#428bca),
		to(#7fc3e8)
	);
	background: -webkit-linear-gradient(bottom, #428bca 0%, #7fc3e8 100%);
	background: linear-gradient(to top, #428bca 0%, #7fc3e8 100%);
	/* W3C */
	-webkit-border-radius: 16px 0 0 16px;
	border-radius: 16px 0 0 16px;
	-moz-border-radius: 16px 0 0 16px;
}

.irs-shadow {
	height: 2px;
	top: 8px;
	background: #000;
	opacity: 0.3;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-border-radius: 5px;
}

.lt-ie9 .irs-shadow {
	filter: alpha(opacity=30);
}

.irs-slider {
	top: 1px;
	width: 17px;
	height: 17px;
	border: 1px solid #aaa;
	background: #ddd;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(white),
		color-stop(20%, gainsboro),
		to(white)
	);
	background: -webkit-linear-gradient(top, white 0%, gainsboro 20%, white 100%);
	background: linear-gradient(to bottom, white 0%, gainsboro 20%, white 100%);
	/* W3C */
	-webkit-border-radius: 27px;
	border-radius: 27px;
	-moz-border-radius: 27px;
	-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.irs-slider.state_hover,
.irs-slider:hover {
	background: #fff;
}

.irs-min,
.irs-max {
	color: #333;
	font-size: 12px;
	line-height: 1.333;
	text-shadow: none;
	padding: 1px 5px;
	background: rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-border-radius: 3px;
}

.lt-ie9 .irs-min,
.lt-ie9 .irs-max {
	background: #ccc;
}

.irs-from,
.irs-to,
.irs-single {
	color: #000;
	font-size: 14px;
	line-height: 1.333;
	text-shadow: none;
	padding: 1px 5px;
	margin-top: 25px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-border-radius: 3px;
}

.lt-ie9 .irs-from,
.lt-ie9 .irs-to,
.lt-ie9 .irs-single {
	background: #999;
}

.irs-grid {
	height: 27px;
}

.irs-grid-pol {
	opacity: 0.5;
	background: #428bca;
}

.irs-grid-pol.small {
	background: #999;
}

.irs-grid-text {
	bottom: 0;
	color: #99a4ac;
}

/* ==========================================================================
	 TABS
	 ===========================================================================*/

.tab-content {
	padding-top: 25px;
	padding-bottom: 5px;
}

.tab-content > .tab-pane {
	display: none;
}

.tab-content > .tab-pane.active {
	display: block;
}

.fade {
	opacity: 0;
	-webkit-transition: opacity 0.15s linear;
	transition: opacity 0.15s linear;
}

.fade.in {
	opacity: 1;
}

.nav-tabs {
	padding: 0;
}

.nav-item {
	display: inline-block;
}

.nav-item > a {
	display: inline-block;
	padding: 5px 20px;
	color: #263238;
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
	text-decoration: none;
}

.nav-item.active > a {
	background-color: #fff;
}

.nav-item .icon {
	vertical-align: middle;
	position: relative;
	bottom: 2px;
}

/* end tabs*/
.collapse {
	display: none;
}

@font-face {
	font-family: 'lg';
	src: url('../fonts/lg_1.eot');
	src: url('../fonts/lg.eot#iefixn1z373') format('embedded-opentype'),
		url('../fonts/lg.woff') format('woff'),
		url('../fonts/lg.ttf') format('truetype'),
		url('../images/lg.svg#lg') format('svg');
	font-weight: normal;
	font-style: normal;
}

.lg-icon {
	font-family: 'lg';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
	background-color: rgba(0, 0, 0, 0.45);
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #999;
	cursor: pointer;
	display: block;
	font-size: 22px;
	margin-top: -10px;
	padding: 8px 10px 9px;
	position: absolute;
	top: 50%;
	z-index: 1080;
}

.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
	color: #fff;
}

.lg-actions .lg-next {
	right: 20px;
}

.lg-actions .lg-next:before {
	content: '\e095';
}

.lg-actions .lg-prev {
	left: 20px;
}

.lg-actions .lg-prev:after {
	content: '\e094';
}

@-webkit-keyframes lg-right-end {
	0% {
		left: 0;
	}

	50% {
		left: -30px;
	}

	100% {
		left: 0;
	}
}

@keyframes lg-right-end {
	0% {
		left: 0;
	}

	50% {
		left: -30px;
	}

	100% {
		left: 0;
	}
}

@-webkit-keyframes lg-left-end {
	0% {
		left: 0;
	}

	50% {
		left: 30px;
	}

	100% {
		left: 0;
	}
}

@keyframes lg-left-end {
	0% {
		left: 0;
	}

	50% {
		left: 30px;
	}

	100% {
		left: 0;
	}
}

.lg-outer.lg-right-end .lg-object {
	-webkit-animation: lg-right-end 0.3s;
	animation: lg-right-end 0.3s;
	position: relative;
}

.lg-outer.lg-left-end .lg-object {
	-webkit-animation: lg-left-end 0.3s;
	animation: lg-left-end 0.3s;
	position: relative;
}

.lg-toolbar {
	z-index: 1082;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.45);
}

.lg-toolbar .lg-icon {
	color: #999;
	cursor: pointer;
	float: right;
	font-size: 24px;
	height: 47px;
	line-height: 27px;
	padding: 10px 0;
	text-align: center;
	width: 50px;
	text-decoration: none !important;
	outline: medium none;
	-webkit-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
	color: #fff;
}

.lg-toolbar .lg-close:after {
	content: '\e070';
}

.lg-toolbar .lg-download:after {
	content: '\e0f2';
}

.lg-sub-html {
	background-color: rgba(0, 0, 0, 0.45);
	bottom: 0;
	color: #eee;
	font-size: 16px;
	left: 0;
	padding: 10px 40px;
	position: fixed;
	right: 0;
	text-align: center;
	z-index: 1080;
}

.lg-sub-html h4 {
	margin: 0;
	font-size: 13px;
	font-weight: bold;
}

.lg-sub-html p {
	font-size: 12px;
	margin: 5px 0 0;
}

#lg-counter {
	color: #999;
	display: inline-block;
	font-size: 16px;
	padding-left: 20px;
	padding-top: 12px;
	vertical-align: middle;
}

.lg-toolbar,
.lg-prev,
.lg-next {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	-webkit-transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
		color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear,
		-webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear,
		-webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-hide-items .lg-prev {
	opacity: 0;
	-webkit-transform: translate3d(-10px, 0, 0);
	transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
	opacity: 0;
	-webkit-transform: translate3d(10px, 0, 0);
	transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
	opacity: 0;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
	-webkit-transform: scale3d(0.5, 0.5, 0.5);
	transform: scale3d(0.5, 0.5, 0.5);
	opacity: 0;
	-webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	-webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1),
		-webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
	transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1),
		-webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
	transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 250ms cubic-bezier(0, 0, 0.25, 1),
		-webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

body:not(.lg-from-hash)
	.lg-outer.lg-start-zoom
	.lg-item.lg-complete
	.lg-object {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-outer .lg-thumb-outer {
	background-color: #0d0a0a;
	bottom: 0;
	position: absolute;
	width: 100%;
	z-index: 1080;
	max-height: 350px;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s,
		-webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
	-webkit-transition-duration: 0s !important;
	transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
	-webkit-transform: translate3d(0, 0%, 0);
	transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
	padding: 10px 0;
	height: 100%;
	margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
	-webkit-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
	float: left;
	overflow: hidden;
	height: 100%;
	border: 2px solid #fff;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	margin-bottom: 5px;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
	padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
	padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
	-webkit-transition: bottom 0.25s ease;
	transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
	bottom: 100px;
}

.lg-outer .lg-toogle-thumb {
	background-color: #0d0a0a;
	-webkit-border-radius: 2px 2px 0 0;
	border-radius: 2px 2px 0 0;
	color: #999;
	cursor: pointer;
	font-size: 24px;
	height: 39px;
	line-height: 27px;
	padding: 5px 0;
	position: absolute;
	right: 20px;
	text-align: center;
	top: -39px;
	width: 50px;
}

.lg-outer .lg-toogle-thumb:after {
	content: '\e1ff';
}

.lg-outer .lg-toogle-thumb:hover {
	color: #fff;
}

.lg-outer .lg-video-cont {
	display: inline-block;
	vertical-align: middle;
	max-width: 1140px;
	max-height: 100%;
	width: 100%;
	padding: 0 5px;
}

.lg-outer .lg-video {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}

.lg-outer .lg-video .lg-object {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
	width: 84px;
	height: 59px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -42px;
	margin-top: -30px;
	z-index: 1080;
	cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
	background: url('../img/vimeo-play.png') no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
	background: url('../img/vimeo-play.png') no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
	background: transparent url('../img/video-play.png') no-repeat scroll 0 0;
	height: 64px;
	margin-left: -32px;
	margin-top: -32px;
	width: 64px;
	opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
	opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
	background: url('../img/youtube-play.png') no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
	background: url('../img/youtube-play.png') no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
	visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
	display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
	visibility: visible;
}

.lg-progress-bar {
	background-color: #333;
	height: 5px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1083;
	opacity: 0;
	-webkit-transition: opacity 0.08s ease 0s;
	transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
	background-color: #a90707;
	height: 5px;
	width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
	width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
	opacity: 1;
}

.lg-autoplay-button:after {
	content: '\e01d';
}

.lg-show-autoplay .lg-autoplay-button:after {
	content: '\e01a';
}

.lg-outer.lg-css3.lg-zoom-dragging
	.lg-item.lg-complete.lg-zoomable
	.lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom
	.lg-item.lg-complete.lg-zoomable
	.lg-img-wrap {
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
		-webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	-webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
		top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
		top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.15s !important;
	-webkit-transition: opacity 0.15s,
		-webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
	transition: opacity 0.15s,
		-webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s,
		-webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#lg-zoom-in:after {
	content: '\e311';
}

#lg-actual-size {
	font-size: 20px;
}

#lg-actual-size:after {
	content: '\e033';
}

#lg-zoom-out {
	opacity: 0.5;
	pointer-events: none;
}

#lg-zoom-out:after {
	content: '\e312';
}

.lg-zoomed #lg-zoom-out {
	opacity: 1;
	pointer-events: auto;
}

.lg-outer .lg-pager-outer {
	bottom: 60px;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	z-index: 1080;
	height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
	overflow: visible;
}

.lg-outer .lg-pager-cont {
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
	position: relative;
	vertical-align: top;
	margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
	-webkit-box-shadow: 0 0 0 2px white inset;
	box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
	background-color: #fff;
	color: #fff;
	bottom: 100%;
	height: 83px;
	left: 0;
	margin-bottom: 20px;
	margin-left: -60px;
	opacity: 0;
	padding: 5px;
	position: absolute;
	width: 120px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
	transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
	transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
	transition: opacity 0.15s ease 0s, transform 0.15s ease 0s,
		-webkit-transform 0.15s ease 0s;
	-webkit-transform: translate3d(0, 5px, 0);
	transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
	width: 100%;
	height: 100%;
}

.lg-outer .lg-pager {
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
	display: block;
	height: 12px;
	-webkit-transition: box-shadow 0.3s ease 0s;
	-webkit-transition: -webkit-box-shadow 0.3s ease 0s;
	transition: -webkit-box-shadow 0.3s ease 0s;
	transition: box-shadow 0.3s ease 0s;
	transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
	width: 12px;
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
	-webkit-box-shadow: 0 0 0 8px white inset;
	box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px dashed;
	bottom: -10px;
	display: inline-block;
	height: 0;
	left: 50%;
	margin-left: -5px;
	position: absolute;
	vertical-align: middle;
	width: 0;
}

.lg-fullscreen:after {
	content: '\e20c';
}

.lg-fullscreen-on .lg-fullscreen:after {
	content: '\e20d';
}

.lg-outer #lg-dropdown-overlay {
	background-color: rgba(0, 0, 0, 0.25);
	bottom: 0;
	cursor: default;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1081;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
	transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-ms-transform: translate3d(0, 0px, 0);
	-webkit-transform: translate3d(0, 0px, 0);
	transform: translate3d(0, 0px, 0);
	opacity: 1;
	visibility: visible;
}

.lg-outer.lg-dropdown-active #lg-share {
	color: #fff;
}

.lg-outer .lg-dropdown {
	background-color: #fff;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	font-size: 14px;
	list-style-type: none;
	margin: 0;
	padding: 10px 0;
	position: absolute;
	right: 0;
	text-align: left;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	-ms-transform: translate3d(0, 5px, 0);
	-webkit-transform: translate3d(0, 5px, 0);
	transform: translate3d(0, 5px, 0);
	-webkit-transition: -webkit-transform 0.18s linear 0s,
		visibility 0s linear 0.5s, opacity 0.18s linear 0s;
	-webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s,
		-webkit-transform 0.18s linear 0s;
	transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s,
		-webkit-transform 0.18s linear 0s;
	transition: transform 0.18s linear 0s, visibility 0s linear 0.5s,
		opacity 0.18s linear 0s;
	transition: transform 0.18s linear 0s, visibility 0s linear 0.5s,
		opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
	content: '';
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	border: 8px solid transparent;
	border-bottom-color: #fff;
	right: 16px;
	top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
	margin-bottom: 0;
}

.lg-outer .lg-dropdown > li:hover a,
.lg-outer .lg-dropdown > li:hover .lg-icon {
	color: #333;
}

.lg-outer .lg-dropdown a {
	color: #333;
	display: block;
	white-space: pre;
	padding: 4px 12px;
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
	background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
	display: inline-block;
	line-height: 1;
	margin-top: -3px;
	vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
	color: #333;
	display: inline-block;
	float: none;
	font-size: 20px;
	height: auto;
	line-height: 1;
	margin-right: 8px;
	padding: 0;
	vertical-align: middle;
	width: auto;
}

.lg-outer #lg-share {
	position: relative;
}

.lg-outer #lg-share:after {
	content: '\e80d';
}

.lg-outer #lg-share-facebook .lg-icon {
	color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
	content: '\e901';
}

.lg-outer #lg-share-twitter .lg-icon {
	color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
	content: '\e904';
}

.lg-outer #lg-share-googleplus .lg-icon {
	color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
	content: '\e902';
}

.lg-outer #lg-share-pinterest .lg-icon {
	color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
	content: '\e903';
}

.lg-group:after {
	content: '';
	display: table;
	clear: both;
}

.lg-outer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-outer * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.lg-outer.lg-visible {
	opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
	-webkit-transition-duration: inherit !important;
	transition-duration: inherit !important;
	-webkit-transition-timing-function: inherit !important;
	transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
	-webkit-transition-duration: 0s !important;
	transition-duration: 0s !important;
	opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;
}

.lg-outer .lg {
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	max-height: 100%;
}

.lg-outer .lg-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
}

.lg-outer .lg-item {
	background: url('../img/loading.gif') no-repeat scroll center center
		transparent;
	display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
	display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
	display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
	display: inline-block;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
	content: '';
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px;
}

.lg-outer .lg-img-wrap {
	position: absolute;
	padding: 0 5px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.lg-outer .lg-item.lg-complete {
	background-image: none;
}

.lg-outer .lg-item.lg-current {
	z-index: 1060;
}

.lg-outer .lg-image {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	width: auto !important;
	height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
	opacity: 1;
}

.lg-outer .lg-empty-html {
	display: none;
}

.lg-outer.lg-hide-download #lg-download {
	display: none;
}

.lg-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1040;
	background-color: #000;
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
	opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
	-webkit-transition: none 0s ease 0s !important;
	transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
	opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
	opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
	-webkit-transition: opacity 0.1s ease 0s;
	transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.1s ease 0s;
	-webkit-transition: opacity 0.1s ease 0s,
		-webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: opacity 0.1s ease 0s,
		-webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s,
		-webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
	opacity: 0;
	position: absolute;
	left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
	left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
	left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
	left: 0;
	opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
	-webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.1s ease 0s;
	transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

@media (min-width: 768px) {
	.container {
		max-width: 760px;
	}

	.col-sm-1 {
		float: left;
		width: 8.33333%;
	}

	.col-sm-2 {
		float: left;
		width: 16.66667%;
	}

	.col-sm-3 {
		float: left;
		width: 25%;
	}

	.col-sm-4 {
		float: left;
		width: 33.33333%;
	}

	.col-sm-5 {
		float: left;
		width: 41.66667%;
	}

	.col-sm-6 {
		float: left;
		width: 50%;
	}

	.col-sm-7 {
		float: left;
		width: 58.33333%;
	}

	.col-sm-8 {
		float: left;
		width: 66.66667%;
	}

	.col-sm-9 {
		float: left;
		width: 75%;
	}

	.col-sm-10 {
		float: left;
		width: 83.33333%;
	}

	.col-sm-11 {
		float: left;
		width: 91.66667%;
	}

	.col-sm-12 {
		float: left;
		width: 100%;
	}

	.pull-sm-0 {
		right: auto;
	}

	.pull-sm-1 {
		right: 8.33333%;
	}

	.pull-sm-2 {
		right: 16.66667%;
	}

	.pull-sm-3 {
		right: 25%;
	}

	.pull-sm-4 {
		right: 33.33333%;
	}

	.pull-sm-5 {
		right: 41.66667%;
	}

	.pull-sm-6 {
		right: 50%;
	}

	.pull-sm-7 {
		right: 58.33333%;
	}

	.pull-sm-8 {
		right: 66.66667%;
	}

	.pull-sm-9 {
		right: 75%;
	}

	.pull-sm-10 {
		right: 83.33333%;
	}

	.pull-sm-11 {
		right: 91.66667%;
	}

	.pull-sm-12 {
		right: 100%;
	}

	.push-sm-0 {
		left: auto;
	}

	.push-sm-1 {
		left: 8.33333%;
	}

	.push-sm-2 {
		left: 16.66667%;
	}

	.push-sm-3 {
		left: 25%;
	}

	.push-sm-4 {
		left: 33.33333%;
	}

	.push-sm-5 {
		left: 41.66667%;
	}

	.push-sm-6 {
		left: 50%;
	}

	.push-sm-7 {
		left: 58.33333%;
	}

	.push-sm-8 {
		left: 66.66667%;
	}

	.push-sm-9 {
		left: 75%;
	}

	.push-sm-10 {
		left: 83.33333%;
	}

	.push-sm-11 {
		left: 91.66667%;
	}

	.push-sm-12 {
		left: 100%;
	}

	.offset-sm-0 {
		margin-left: 0;
	}

	.offset-sm-1 {
		margin-left: 8.33333%;
	}

	.offset-sm-2 {
		margin-left: 16.66667%;
	}

	.offset-sm-3 {
		margin-left: 25%;
	}

	.offset-sm-4 {
		margin-left: 33.33333%;
	}

	.offset-sm-5 {
		margin-left: 41.66667%;
	}

	.offset-sm-6 {
		margin-left: 50%;
	}

	.offset-sm-7 {
		margin-left: 58.33333%;
	}

	.offset-sm-8 {
		margin-left: 66.66667%;
	}

	.offset-sm-9 {
		margin-left: 75%;
	}

	.offset-sm-10 {
		margin-left: 83.33333%;
	}

	.offset-sm-11 {
		margin-left: 91.66667%;
	}
}

@media screen and (min-width: 768px) {
	.menu-list__item.clicked {
		border-color: #cfd8dc;
		border-bottom-color: transparent;
		-webkit-border-radius: 2px 2px 0 0;
		border-radius: 2px 2px 0 0;
	}

	.menu-button {
		display: none;
	}

	.gallery-mobile {
		display: none;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 980px;
	}

	.col-md-1 {
		float: left;
		width: 8.33333%;
	}

	.col-md-2 {
		float: left;
		width: 16.66667%;
	}

	.col-md-3 {
		float: left;
		width: 25%;
	}

	.col-md-4 {
		float: left;
		width: 33.33333%;
	}

	.col-md-5 {
		float: left;
		width: 41.66667%;
	}

	.col-md-6 {
		float: left;
		width: 50%;
	}

	.col-md-7 {
		float: left;
		width: 58.33333%;
	}

	.col-md-8 {
		float: left;
		width: 66.66667%;
	}

	.col-md-9 {
		float: left;
		width: 75%;
	}

	.col-md-10 {
		float: left;
		width: 83.33333%;
	}

	.col-md-11 {
		float: left;
		width: 91.66667%;
	}

	.col-md-12 {
		float: left;
		width: 100%;
	}

	.pull-md-0 {
		right: auto;
	}

	.pull-md-1 {
		right: 8.33333%;
	}

	.pull-md-2 {
		right: 16.66667%;
	}

	.pull-md-3 {
		right: 25%;
	}

	.pull-md-4 {
		right: 33.33333%;
	}

	.pull-md-5 {
		right: 41.66667%;
	}

	.pull-md-6 {
		right: 50%;
	}

	.pull-md-7 {
		right: 58.33333%;
	}

	.pull-md-8 {
		right: 66.66667%;
	}

	.pull-md-9 {
		right: 75%;
	}

	.pull-md-10 {
		right: 83.33333%;
	}

	.pull-md-11 {
		right: 91.66667%;
	}

	.pull-md-12 {
		right: 100%;
	}

	.push-md-0 {
		left: auto;
	}

	.push-md-1 {
		left: 8.33333%;
	}

	.push-md-2 {
		left: 16.66667%;
	}

	.push-md-3 {
		left: 25%;
	}

	.push-md-4 {
		left: 33.33333%;
	}

	.push-md-5 {
		left: 41.66667%;
	}

	.push-md-6 {
		left: 50%;
	}

	.push-md-7 {
		left: 58.33333%;
	}

	.push-md-8 {
		left: 66.66667%;
	}

	.push-md-9 {
		left: 75%;
	}

	.push-md-10 {
		left: 83.33333%;
	}

	.push-md-11 {
		left: 91.66667%;
	}

	.push-md-12 {
		left: 100%;
	}

	.offset-md-0 {
		margin-left: 0;
	}

	.offset-md-1 {
		margin-left: 8.33333%;
	}

	.offset-md-2 {
		margin-left: 16.66667%;
	}

	.offset-md-3 {
		margin-left: 25%;
	}

	.offset-md-4 {
		margin-left: 33.33333%;
	}

	.offset-md-5 {
		margin-left: 41.66667%;
	}

	.offset-md-6 {
		margin-left: 50%;
	}

	.offset-md-7 {
		margin-left: 58.33333%;
	}

	.offset-md-8 {
		margin-left: 66.66667%;
	}

	.offset-md-9 {
		margin-left: 75%;
	}

	.offset-md-10 {
		margin-left: 83.33333%;
	}

	.offset-md-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 1025px) {
	.lg-outer .lg-thumb-item {
		-webkit-transition: border-color 0.25s ease;
		transition: border-color 0.25s ease;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}

	.col-lg-1 {
		float: left;
		width: 8.33333%;
	}

	.col-lg-2 {
		float: left;
		width: 16.66667%;
	}

	.col-lg-3 {
		float: left;
		width: 25%;
	}

	.col-lg-4 {
		float: left;
		width: 33.33333%;
	}

	.col-lg-5 {
		float: left;
		width: 41.66667%;
	}

	.col-lg-6 {
		float: left;
		width: 50%;
	}

	.col-lg-7 {
		float: left;
		width: 58.33333%;
	}

	.col-lg-8 {
		float: left;
		width: 66.66667%;
	}

	.col-lg-9 {
		float: left;
		width: 75%;
	}

	.col-lg-10 {
		float: left;
		width: 83.33333%;
	}

	.col-lg-11 {
		float: left;
		width: 91.66667%;
	}

	.col-lg-12 {
		float: left;
		width: 100%;
	}

	.pull-lg-0 {
		right: auto;
	}

	.pull-lg-1 {
		right: 8.33333%;
	}

	.pull-lg-2 {
		right: 16.66667%;
	}

	.pull-lg-3 {
		right: 25%;
	}

	.pull-lg-4 {
		right: 33.33333%;
	}

	.pull-lg-5 {
		right: 41.66667%;
	}

	.pull-lg-6 {
		right: 50%;
	}

	.pull-lg-7 {
		right: 58.33333%;
	}

	.pull-lg-8 {
		right: 66.66667%;
	}

	.pull-lg-9 {
		right: 75%;
	}

	.pull-lg-10 {
		right: 83.33333%;
	}

	.pull-lg-11 {
		right: 91.66667%;
	}

	.pull-lg-12 {
		right: 100%;
	}

	.push-lg-0 {
		left: auto;
	}

	.push-lg-1 {
		left: 8.33333%;
	}

	.push-lg-2 {
		left: 16.66667%;
	}

	.push-lg-3 {
		left: 25%;
	}

	.push-lg-4 {
		left: 33.33333%;
	}

	.push-lg-5 {
		left: 41.66667%;
	}

	.push-lg-6 {
		left: 50%;
	}

	.push-lg-7 {
		left: 58.33333%;
	}

	.push-lg-8 {
		left: 66.66667%;
	}

	.push-lg-9 {
		left: 75%;
	}

	.push-lg-10 {
		left: 83.33333%;
	}

	.push-lg-11 {
		left: 91.66667%;
	}

	.push-lg-12 {
		left: 100%;
	}

	.offset-lg-0 {
		margin-left: 0;
	}

	.offset-lg-1 {
		margin-left: 8.33333%;
	}

	.offset-lg-2 {
		margin-left: 16.66667%;
	}

	.offset-lg-3 {
		margin-left: 25%;
	}

	.offset-lg-4 {
		margin-left: 33.33333%;
	}

	.offset-lg-5 {
		margin-left: 41.66667%;
	}

	.offset-lg-6 {
		margin-left: 50%;
	}

	.offset-lg-7 {
		margin-left: 58.33333%;
	}

	.offset-lg-8 {
		margin-left: 66.66667%;
	}

	.offset-lg-9 {
		margin-left: 75%;
	}

	.offset-lg-10 {
		margin-left: 83.33333%;
	}

	.offset-lg-11 {
		margin-left: 91.66667%;
	}

	.error {
		padding-top: 24%;
	}
}

@media screen and (min-width: 1200px) {
	.menu-list.container {
		max-width: 1170px;
	}
}

@media (min-width: 1440px) {
	.col-xl-1 {
		float: left;
		width: 8.33333%;
	}

	.col-xl-2 {
		float: left;
		width: 16.66667%;
	}

	.col-xl-3 {
		float: left;
		width: 25%;
	}

	.col-xl-4 {
		float: left;
		width: 33.33333%;
	}

	.col-xl-5 {
		float: left;
		width: 41.66667%;
	}

	.col-xl-6 {
		float: left;
		width: 50%;
	}

	.col-xl-7 {
		float: left;
		width: 58.33333%;
	}

	.col-xl-8 {
		float: left;
		width: 66.66667%;
	}

	.col-xl-9 {
		float: left;
		width: 75%;
	}

	.col-xl-10 {
		float: left;
		width: 83.33333%;
	}

	.col-xl-11 {
		float: left;
		width: 91.66667%;
	}

	.col-xl-12 {
		float: left;
		width: 100%;
	}

	.pull-xl-0 {
		right: auto;
	}

	.pull-xl-1 {
		right: 8.33333%;
	}

	.pull-xl-2 {
		right: 16.66667%;
	}

	.pull-xl-3 {
		right: 25%;
	}

	.pull-xl-4 {
		right: 33.33333%;
	}

	.pull-xl-5 {
		right: 41.66667%;
	}

	.pull-xl-6 {
		right: 50%;
	}

	.pull-xl-7 {
		right: 58.33333%;
	}

	.pull-xl-8 {
		right: 66.66667%;
	}

	.pull-xl-9 {
		right: 75%;
	}

	.pull-xl-10 {
		right: 83.33333%;
	}

	.pull-xl-11 {
		right: 91.66667%;
	}

	.pull-xl-12 {
		right: 100%;
	}

	.push-xl-0 {
		left: auto;
	}

	.push-xl-1 {
		left: 8.33333%;
	}

	.push-xl-2 {
		left: 16.66667%;
	}

	.push-xl-3 {
		left: 25%;
	}

	.push-xl-4 {
		left: 33.33333%;
	}

	.push-xl-5 {
		left: 41.66667%;
	}

	.push-xl-6 {
		left: 50%;
	}

	.push-xl-7 {
		left: 58.33333%;
	}

	.push-xl-8 {
		left: 66.66667%;
	}

	.push-xl-9 {
		left: 75%;
	}

	.push-xl-10 {
		left: 83.33333%;
	}

	.push-xl-11 {
		left: 91.66667%;
	}

	.push-xl-12 {
		left: 100%;
	}

	.offset-xl-0 {
		margin-left: 0;
	}

	.offset-xl-1 {
		margin-left: 8.33333%;
	}

	.offset-xl-2 {
		margin-left: 16.66667%;
	}

	.offset-xl-3 {
		margin-left: 25%;
	}

	.offset-xl-4 {
		margin-left: 33.33333%;
	}

	.offset-xl-5 {
		margin-left: 41.66667%;
	}

	.offset-xl-6 {
		margin-left: 50%;
	}

	.offset-xl-7 {
		margin-left: 58.33333%;
	}

	.offset-xl-8 {
		margin-left: 66.66667%;
	}

	.offset-xl-9 {
		margin-left: 75%;
	}

	.offset-xl-10 {
		margin-left: 83.33333%;
	}

	.offset-xl-11 {
		margin-left: 91.66667%;
	}
}

@media screen and (max-width: 1199px) {
	.login > span {
		display: none;
	}

	.menu-list__item_btn .icon {
		margin: 0;
		right: 0;
	}

	.menu__label {
		text-transform: capitalize;
	}

	.footer-links li {
		padding-left: 35px;
	}

	.card-info-item {
		width: 50%;
	}

	.card-info-item:first-child {
		width: 100%;
		margin-bottom: 30px;
	}

	.info-list .card-panel__button {
		right: auto;
		left: 160px;
	}

	.checkbox-col_6 {
		width: 25%;
	}
}

@media screen and (max-width: 992px) {
	.menu-list__item:nth-last-child(2) {
		margin-left: 0;
	}
	.menu-list {
		justify-content: unset;
		gap: 12px;
	}

	.modal__city--inner {
		max-width: 670px;
	}

	.modal__city--link {
		width: calc(100% / 3);
	}
}

@media screen and (max-width: 991px) {
	.menu-list__item_btn {
		padding-left: 0.3rem;
		padding-right: 0;
		margin: 0;
	}

	.menu-list__item_btn .icon {
		margin: 0 !important;
	}

	.menu-list__link {
		font-size: 12px;
	}
	.menu__label {
		font-size: 12px;
	}

	.menu__label:before {
		margin-right: 3px;
	}

	.card {
		margin-bottom: 10px;
	}

	.footer-links {
		padding-top: 3px;
	}

	.footer-links li {
		width: 230px;
	}

	.frame {
		height: 380px;
	}

	.checkbox-col_6 {
		width: 33.33333%;
	}

	.checkbox-col_7 {
		width: 33.33333%;
	}

	.wrap-buttons {
		width: 100%;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.submenu-col-2 {
		width: 22%;
	}

	.submenu-col-2-serv {
		width: 31%;
	}

	.error {
		padding-top: 12%;
	}
}

@media screen and (max-width: 767px) {
	.header-top .container {
		padding-right: 70px;
	}

	.navbar__button--show--inner {
		display: flex;
	}

	.navbar__button--show.active img {
		transform: rotate(180deg);
	}

	.local {
		gap: 3px;
	}

	header .headertext {
		font-size: 11px !important;
		padding-left: 2.3rem !important;
	}

	.menu {
		position: fixed;
		height: 100vh;
		overflow-y: auto;
		top: 0;
		z-index: 9991;
		width: 100%;
		overflow-y: auto;
		max-height: 100%;
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%);
		-webkit-transition: -webkit-transform 0.5s ease;
		transition: -webkit-transform 0.5s ease;
		transition: transform 0.5s ease;
		transition: transform 0.5s ease, -webkit-transform 0.5s ease;
		padding: 0 0 15px 0 !important;
	}

	.menu-list {
		gap: 0 !important;
	}

	.menu.open {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		-webkit-transition: -webkit-transform 0.5s ease;
		transition: -webkit-transform 0.5s ease;
		transition: transform 0.5s ease;
		transition: transform 0.5s ease, -webkit-transform 0.5s ease;
	}

	.menu-list__item {
		background: 0;
		padding: 0;
		display: block;
		width: 100%;
		margin: 0;
	}

	.menu-list__item:not(:last-child) {
		border-bottom: 1px solid #eceff1;
	}

	.menu-list__item.parent {
		padding-top: 0;
	}

	.menu-list__item_btn {
		text-transform: none;
	}

	.menu-list__link {
		font-size: 16px;
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 0;
	}

	.menu__label {
		font-size: 16px;
		width: 100%;
		padding-left: 20px;
		padding-top: 15px;
		padding-bottom: 15px;
		text-transform: none;
	}

	.menu__label:before {
		margin-right: 9px;
	}

	.submenu {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		padding: 0;
		padding-left: 20px;
		padding-top: 15px;
		padding-bottom: 15px;
		border: 0;
	}

	.submenu-col-2 {
		width: 100%;
		float: none;
		margin-top: 0.5rem;
	}

	/*.submenu.submenu_category{*/
	/*  margin-top: -20px;*/
	/*}*/

	.submenu-list:not(:last-child) {
		margin-bottom: 0;
	}

	.submenu-list__title {
		margin-top: 0px;
	}

	.submenu-list__item > a {
		display: inline-block;
		width: 100%;
		font-size: 15px;
		line-height: 22px;
	}

	.footer-links li {
		width: 220px;
	}

	.card-info .check {
		bottom: 10px;
	}

	.card-info-item {
		width: 100%;
		margin-bottom: 30px;
	}

	.card-info-item .info {
		height: auto;
	}

	.data-list {
		margin-top: 10px;
	}

	.gallery {
		display: none;
	}

	.error {
		padding-top: 10%;
	}

	.title h1 {
		margin-left: 0.2rem;
	}

	.modal__city--inner {
		max-width: 90%;
	}

	.modal__city--link:nth-child(2) {
		margin-top: 0.5rem;
	}

	.modal__city--inner {
		max-width: 90%;
	}
}

@media screen and (max-width: 600px) {
	.wp-video {
		width: 100% !important;
	}

	.wp-video .wp-video-shortcode {
		width: 100% !important;
	}

	.error {
		padding-top: 100%;
	}

	.card__item--button {
		width: 100%;
	}

	.card__buttons {
		gap: 12px;
	}
}

@media screen and (max-width: 500px) {
	.modal__city--link {
		width: 100%;
	}
}

@media screen and (max-width: 599px) {
	.local p {
		font-size: 0;
	}

	.login {
		font-size: 0;
	}

	.cards {
		width: 320px;
		margin: 0 auto;
	}

	.cards .col-xs-6 {
		width: 100%;
	}

	.footer {
		height: auto;
	}

	.footer .logo {
		float: left;
	}

	.footer-links {
		width: 80%;
		float: right;
	}

	.footer-links li {
		width: 100%;
		margin-right: 0;
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.footer-links li:not(:last-child) {
		margin-right: 0;
	}

	.info-body_service {
		padding-bottom: 20px;
	}

	.service-list {
		width: 50%;
	}

	.price-list-item span {
		font-size: 14px;
	}

	.data-list-item > a,
	.data-list-item > span {
		font-size: 14px;
	}

	.checkbox-col_6 {
		width: 50%;
	}

	.checkbox-col_7 {
		width: 50%;
	}

	.wrap-buttons .btn {
		margin-bottom: 10px;
	}

	header .headertext {
		padding-left: 0 !important;
	}
}

@media screen and (max-width: 480px) {
	.service-list {
		width: 100%;
	}
}

@media screen and (max-width: 479px) {
	.header-top .container {
		padding-right: 60px;
	}

	.service .info {
		min-height: 440px;
	}

	.card-info .check {
		right: 7px;
		bottom: 25px;
	}

	.card-info .check-label {
		display: none;
	}

	.price-list__title .icon {
		display: none;
	}

	.map-wrap {
		height: 362px;
	}

	.checkbox-col {
		padding-bottom: 0;
		padding-top: 0;
	}


	.checkbox-col_6 {
		width: 100%;
	}

	.checkbox-col_7 {
		width: 100%;
	}

	.checkbox-list {
		margin-bottom: 0;
	}

	.checkbox-list__title:after {
		width: 100%;
	}

	.nav-item > a {
		font-size: 14px;
		padding: 5px 10px;
	}
}

@media screen and (max-width: 318px) {
	html {
		width: 320px;
		overflow-x: auto;
	}
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
	.i-hide {
		display: none;
	}
}

@media screen and (max-width: 991px) and (min-width: 768px) {
	.card-panel-item_name:after {
		right: 48px;
	}
}


.menu__inner {
	width: 100%;
	display: flex;
}

.wrapper__inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.main__title {
	margin: 0;
}

.main__cards {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.main__card {
	width: calc(100% / 4 - 48px / 4);
	position: relative;
}

.profile__info--inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.profile-info-item {
	width: calc(100% / 3 - 32px / 3);
}

.service {
	width: 100%;
	flex-wrap: wrap;
	display: flex;
	gap: 16px;
}

.service__content {
	width: calc(100% / 3 * 2 - 16px / 2);
}

.service__map {
	width: calc(100% / 3 - 16px / 2);
}

.slider {
	width: 100%;
}

.comments__wrap {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}


.seo-text {
	width: calc(100% / 2 - 16px / 2);
	flex-shrink: 0;
}

@media (max-width: 1200px) {
	.main__card {
		width: calc(100% / 3 - 32px / 3);
	}
}
@media (max-width: 992px) {
	.main__card {
		width: calc(100% / 2 - 16px / 2);
	}

	.service__content,
	.service__map {
		width: 100%;
	}

	.profile-info-item {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.comments__wrap {
		flex-wrap: wrap;
	}

	.seo-text {
		width: 100%;
	}
}
@media (max-width: 640px) {
	.main__card {
		width: 100%;
	}

	.profile-list {
		width: 45%;
	}

	.profile__info--inner {
		gap: 24px;
	}
}
@media (max-width: 400px) {
	.logo__img {
		width: 40px;
	}

	.logo__text {
		font-size: 13px;
	}
}

html {
	height: 100%;
}

.adminbg {
	background: url(../images/adminbg.png);
	height: 100%;
}

.headertext A:hover,
.headertext A:focus {
	color: #5395d0;
}

.headertext A:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 4px 0 4px;
	border-color: #f7f7f7 transparent transparent transparent;
	margin: 0 0 2px 5px;
	display: inline-block;
}

header .login A {
	padding: 5px 0 5px 30px;
	background: url(../images/login.png) 0 50% no-repeat;
	font-size: 14px;
	font-weight: 300;
	color: #fff;
	text-decoration: underline;
}

header .login A:hover {
	text-decoration: none;
}

.login span {
	margin-left: 4px;
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #ffffff;
}

.navbar-default .navbar-toggle {
	position: absolute;
	top: -53px;
	right: -5px;
	z-index: 99;
}

.navbar {
	font-size: 15px;
	font-weight: 400;
	padding: 5px 0 5px 0;
	z-index: 11;
}

.navbar > .container > .row {
	position: relative;
}

.navbar div > A {
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}

.navbar div > A:hover {
	text-decoration: none;
	opacity: 0.8;
}

.navbar .imgico {
	vertical-align: middle;
	margin-right: 7px;
}

.navbar .sel {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #4e5f68 transparent transparent transparent;
	margin: 0 0 0 10px;
	display: inline-block;
}


.navbar-default {
	z-index: 111;
}

.mobsrchp {
	display: none;
}

.custom-checkbox > [type='checkbox'],
.custom-checkbox > label {
	margin-bottom: 0px !important;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.custom-checkbox > [type='checkbox']:not(:checked),
.custom-checkbox > [type='checkbox']:checked {
	position: absolute;
	left: -9999px;
}

.custom-checkbox > [type='checkbox']:not(:checked) + label,
.custom-checkbox > [type='checkbox']:checked + label {
	position: relative;
	padding-left: 22px;
	cursor: pointer;
}

/*.custom-checkbox > [type="checkbox"]:not(:checked) + label:before,
.custom-checkbox > [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left:0;
    top: 50%;
    margin-top:-9px;
    width: 17px;
    height: 17px;
    border: 1px solid #ddd;
    background: #ffffff;
    border-radius: 2px;
}
.custom-checkbox > [type="checkbox"]:not(:checked) + label:after,
.custom-checkbox > [type="checkbox"]:checked + label:after {
    font: normal normal normal 9px/1 'Glyphicons Halflings';
    content: '\e013';
    position: absolute;
    top: 50%;
    margin-top:-5px;
    left: 4px;
    color: #3b86c4;
    xtransition: all .2s;
}*/
.custom-checkbox > [type='checkbox']:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}

.custom-checkbox > [type='checkbox']:checked + label:after {
	opacity: 1;
	transform: scale(1);
}

.custom-checkbox > [type='checkbox'][data-indeterminate] + label:after,
.custom-checkbox > [type='checkbox'][data-indeterminate] + label:after {
	content: '\2212';
	left: 2px;
	opacity: 1;
	transform: scale(1);
}

.custom-checkbox > [type='checkbox']:disabled:not(:checked) + label:before,
.custom-checkbox > [type='checkbox']:disabled:checked + label:before {
	box-shadow: none;
	background-color: #eeeeee;
	border-color: #eeeeee;
	cursor: not-allowed;
	opacity: 1;
	color: #dadada;
}

.custom-checkbox > [type='checkbox']:disabled:checked + label:after {
	color: #dadada;
	cursor: not-allowed;
}

.custom-checkbox > [type='checkbox']:disabled + label {
	color: #aaa;
	cursor: not-allowed;
}

.custom-checkbox > [type='checkbox']:checked:focus + label:before,
.custom-checkbox > [type='checkbox']:not(:checked):focus + label:before {
}

.custom-checkbox > label:hover:before {
}

.custom-checkbox
	> [type='checkbox']:disabled:not(:checked)
	+ label:hover:before,
.custom-checkbox > [type='checkbox']:disabled:checked + label:hover:before {
	border: 1px solid #e4e4e4 !important;
}

.outsel {
	opacity: 0.7;
}

.approved {
	float: right;
}

.morephotos,
.morephotos2 {
	display: none;
}

.infoform {
	float: none;
	width: 100%;
}

.detailright {
	height: 441px;
	float: right;
	border-top: 1px solid #ffffff;
	width: 30%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(99, 99, 99, 0.51);
	-moz-box-shadow: 0px 1px 2px 0px rgba(99, 99, 99, 0.51);
	box-shadow: 0px 1px 2px 0px rgba(99, 99, 99, 0.51);
}

#YMaps3ID {
	height: 446px;
}

.detailleft {
	min-height: 440px;
	width: calc(70% - 20px);
}

.csp2 {
	width: 100%;
}

.way {
	margin: 10px 0 15px 0;
	font-size: 14px;
	color: #263238;
}

.way A {
	color: #263238;
	text-decoration: none;
}

.way A:hover {
	text-decoration: underline;
}

.hidden {
	display: none;
}

.textmain {
	width: 100%;
	box-sizing: border-box;
	background: #fefefe;
	padding: 10px 10px 10px 10px;
	font-size: 12px;
	display: block;
	border: 0;
	border-top: 1px solid #ffffff;
	box-shadow: 0 0 14px rgba(38, 50, 56, 0.2);
	border-radius: 2px;
}
.textmain ul {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	color: #263238;
	font-size: 0.9375rem;
	padding: 0 1% 0 2%;
	line-height: 20px;
	font-weight: 400;
}

.textmain ul li {
	list-style-type: disc;
}

@media screen and (max-width: 1199px) {
	.approved IMG {
		margin-top: 30px;
		width: 90px;
		height: 90px;
	}

}

@media screen and (max-width: 1024px) {
	header .headertext {
		font-size: 11px;
		padding-left: 15px;
	}

	header .headertext A {
		font-size: 11px;
	}

	.approved {
		position: absolute;
		float: none;
		padding: 0;
		text-align: right;
		right: 30px;
		z-index: 999;
		height: 1px;
	}

	.approved IMG {
		margin: 0px auto 0 auto;
		width: 172px;
		height: 172px;
		opacity: 0.5;
	}

	header .login .hide_text {
		display: none;
	}

	.detailright {
		height: 468px;
	}

	#YMaps3ID {
		height: 398px;
	}
}

@media screen and (max-width: 992px) {
	header .hlogo {
		width: 26%;
	}

	header .login .hide_text {
		display: none;
	}

	header .headertext {
	}

	header .headertext span {
		display: none;
	}

	.navbar .sel {
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 3px 3px 0 3px;
		border-color: #4e5f68 transparent transparent transparent;
		margin: 0 0 0 3px;
		display: inline-block;
	}

	.navbar {
		font-size: 13px;
		font-weight: 300;
		padding: 5px 0 5px 0;
	}

	.detailright {
		width: 80%;
		float: none;
		margin-top: 20px;
	}


}


@media screen and (max-width: 799px) {
	header .headertext span {
		display: none;
	}

	.menu__item > a {
		font-size: 14px;
	}

	.catalog__item_image {
		height: 225px;
	}

	.approved {
		position: absolute;
		float: none;
		padding: 0;
		text-align: right;
		right: 30px;
		z-index: 999;
		height: 1px;
	}

	.approved IMG {
		margin: -300px auto 0 auto;
		width: 120px;
		height: 120px;
		opacity: 0.5;
	}
}

@media screen and (max-width: 767px) {
	header .headertext {
		padding-top: 6px;
	}

	.row {
		margin-left: 0;
		margin-right: 0;
	}

	.wrapper {
		padding-top: 0;
	}

	a:active {
		color: var(--accent);;
		text-decoration: none;
		outline: none;
	}

	h1 {
		font-size: 22px;
	}

	.header.no-menu {
		margin-bottom: 0;
	}

	header {
		position: relative !important;
		z-index: inherit;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		padding: 0px 0;
	}

	header .hlogo {
		width: 200px;
	}

	header .headertext A {
		font-size: 14px;
		margin-top: 5px;
		display: inline-block;
	}

	button.navbar-toggle {
		background: url(../images/close.png) 50% 50% no-repeat #78909c;
		width: 44px;
		height: 34px;
		position: fixed !important;
		top: 4px !important;
		right: -5px !important;
	}

	button.navbar-toggle .icon-bar {
		display: none;
	}

	button.collapsed {
		background: none;
		position: absolute !important;
		top: -53px !important;
		right: -5px !important;
	}

	button.collapsed .icon-bar {
		display: block;
	}

	.navbar-default {
		height: 0;
		min-height: 0;
		border: 0;
		padding: 0;
	}

	.navbar .navbar-collapse {
		background-image: -webkit-linear-gradient(#78909c 0%, #738a97 100%);
		background-image: -o-linear-gradient(#78909c 0%, #738a97 100%);
		background-image: linear-gradient(#78909c 0%, #738a97 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#78909c', endColorstr='#738a97', GradientType=0);
		filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
		background-repeat: repeat-x;
		position: absolute;
		top: -57px;
		left: -15px;
		right: -10px;
		height: auto;
		width: calc(100% + 30px);
		z-index: 98;
	}

	.navbar .navbar-collapse > div {
		float: none;
		width: 100%;
		padding: 0;
		height: auto;
		clear: both;
		border-bottom: 1px solid #90a4ae;
	}


	.navbar .navbar-collapse > div > A {
		width: 100%;
		text-align: left;
		padding: 10px 0 10px 50px;
		display: block;
	}

	.navbar .navbar-collapse > div {
		font-size: 15px;
	}

	.pmetro2,
	.pmetro {
		width: calc(100% + 0px);
		margin-bottom: 13px;
	}

	.dropdown-toggle {
		font-size: 17px;
	}

	.open > .dropdown-menu {
		display: block;
		position: relative;
		margin: 0;
		padding: 0;
		top: 0px;
		box-shadow: none;
		border-radius: 0;
	}

	.pmetro li {
		width: 100%;
	}

	.navbar .navbar-collapse {
		position: absolute;
		top: -61px;
		left: -15px;
		right: -15px;
		width: calc(100% + 30px);
	}

	.navbar .sel {
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 4px 4px 0 4px;
		border-color: #4e5f68 transparent transparent transparent;
		margin: 0 0 0 8px;
		display: inline-block;
	}

	.navbar .navbar-collapse .clear {
		display: none;
	}
}

@media screen and (max-width: 600px) {
	header .headertext A {
		margin-top: 12px;
	}

	header .hlogo {
		width: 30%;
	}

}

@media screen and (max-width: 500px) {
	header .hlogo {
		width: 50px;
		overflow: hidden;
	}

	header .hlogo IMG {
		width: 150px;
	}

	header .hlogo {
		padding: 6px 0 6px 0;
	}

	.navbar2-toggle {
		border: 0;
		background: url(../images/seach_icon.png) 50% 50% no-repeat;
		width: 15px;
		height: 15px;
		display: block;
		position: absolute;
		z-index: 999;
		right: 70px;
		top: 20px;

		display: none;
	}

	.irs-from,
	.irs-to {
		font-size: 12px !important;
	}
}

.servdiv {
	width: 150px;
	float: left;
}

.servdiv P {
	text-align: left;
	font-weight: bold;
}

.servdiv LABEL {
	font-weight: normal;
}

.clear {
	clear: both;
}

.loader {
	width: 100%;
	height: 30px;
	background: url(../images/loader.gif) 50% 50% no-repeat;
}

.archive {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #fff;
	text-decoration: none;
}

.archive:hover {
	color: #fff;
}

.login .icon {
	top: -2px;
}

.logo {
	text-decoration: none;
}

.logo__img {
	padding-top: 0;
	padding-bottom: 0;
}

.footer__inner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu-list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 16px;
}

.menu-list__item {
	width: calc(100% / 5 - 64px / 5);
}

.parent .submenu {
	padding: 0 !important;
}

.header__fav a {
	color: #fff;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0 !important;
}

.header__fav a:hover {
	text-decoration: underline;
	color: #fff;
}

.submenu-list__item a {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 4px;
}

.submenu-list__item a .count {
	margin-left: auto;
}

.call_block {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.call_block > div {
	display: flex;
	align-items: center;
	gap: 5px;
}

.call_block > div i {
	margin-right: 0;
}

.block_info-data {
	width: 100%;
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tags__profile {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.tags__profile span {
	font-size: 16px;
	color: #000;
}

.tags__profile label {
	padding: 4px 8px;
	font-size: 14px;
	background: rgba(236, 239, 241, 0.8);
	color: #000;
}

.card__service--item--extra {
	font-size: 13px;
	padding: 3px 6px;
	border-radius: 2px;
	background-color: #666;
	color: #fff;
	margin-left: 5px;
}

.submenu__button {
	width: 100%;
	margin-bottom: 10px;
	margin-left: 4px;
}

.submenu__button a {
	padding: 5px 10px;
	display: inline-block;
	text-decoration: none;
	transition: 0.2s linear;
	background: #fff;
	color: black;
}

.submenu__button a:hover {
	background: var(--accent);;
	color: #fff;
}

.page h1 {
	padding-top: 0;
	margin-top: 0;
}

.letter-block {
	margin-bottom: 5px;
	font-weight: 600;
}

.profile__tags {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.profile__tags a {
	padding: 5px 10px;
	text-decoration: none;
	transition: 0.2s linear;
	display: inline-block;
	background: #fff;
	color: black;
}

.profile__tags a:hover {
	background: var(--accent);;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.next-card .container {
		padding: 0;
	}

	.menu-list {
		padding: 12px 0 8px;
	}

	.submenu__button {
		margin-top: 0.2rem;
		margin-bottom: 0.2rem;
		margin-left: 0;
	}
	.submenu__button a {
		width: 100%;
	}
}

@media screen and (max-width: 610px) {
	.col-xs-6 {
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	}

	.col-xs-12 {
		padding-left: 0;
		padding-right: 0;
	}
}
@media screen and (max-width: 991px) {
	.check-list {
		bottom: 14px;
	}
}

.srchp {
	display: block;
	margin-bottom: 20px;
}

.service-list {
	padding-right: 15px;
}

.service-list .link-list a {
	font-size: 13px;
}

.map-wrap {
	height: 433px;
}

.card-labels__check-green {
	background: #2e7d32 !important;
}

.card-labels__check-blue {
	background: #0277bd !important;
}

@media (max-width: 460px) {
	.footer__inner {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.login > span {
		display: inline-block !important;
	}

	.local p,
	.login {
		font-size: 14px !important;
	}
}

@media (max-width: 992px) {
	.menu-list__item {
		width: calc(100% / 4 - 48px / 4);
	}
}
@media (max-width: 768px) {
	.menu-list {
		align-items: flex-start;
	}
}

.menu__icon--wrap {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 4px;
}
@media (max-width: 500px) {
	.header__fav a {
		font-size: 0;
	}
}
progress,
sub,
sup {
	vertical-align: baseline;
}

button,
hr,
input,
select {
	overflow: visible;
}

.list li,
body {
	-webkit-box-direction: normal;
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-8,
.col-xs-9,
.left {
	float: left;
}

h1,
h2,
h3 {
	color: #060808;
}

a,
a:hover,
h4 {
	color: var(--accent);
}

.header,
.header-top,
.icon,
.toggle-search,
body,
sub,
sup {
	position: relative;
}

.frame__list,
.pages ul li,
nav ul,
nav ul li,
ul,
ul li {
	list-style: none;
}

.clearfix:after,
.lg-outer .lg-has-video .lg-video-object {
	visibility: hidden;
}

.anket-panel-button > a {
	text-decoration: none;
	outline: none;
	display: inline-block;
	padding: 20px 30px;
	margin: 10px 20px;
	position: relative;
	color: var(--accent);
	border: 1px solid var(--accent);;
	background: none;
	font-weight: 300;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.anket-panel-button > a:before,
.anket-panel-button > a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
	box-sizing: border-box;
}
.anket-panel-button > a:before {
	bottom: 0;
	left: 0;
	border-left: 1px solid var(--accent);;
	border-top: 1px solid var(--accent);;
	transition: 0s ease opacity 0.8s, 0.2s ease width 0.4s, 0.2s ease height 0.6s;
}
.anket-panel-button > a:after {
	top: 0;
	right: 0;
	border-right: 1px solid var(--accent);;
	border-bottom: 1px solid var(--accent);;
	transition: 0s ease opacity 0.4s, 0.2s ease width, 0.2s ease height 0.2s;
}
.anket-panel-button > a:hover:before,
.anket-panel-button > a:hover:after {
	height: 100%;
	width: 100%;
	opacity: 1;
}
.anket-panel-button > a:hover:before {
	transition: 0s ease opacity 0s, 0.2s ease height, 0.2s ease width 0.2s;
}
.anket-panel-button > a:hover:after {
	transition: 0s ease opacity 0.4s, 0.2s ease height 0.4s, 0.2s ease width 0.6s;
}
.anket-panel-button > a:hover {
	background: rgba(255, 255, 255, 0.2);
}

.article-img {
	float: left;
	margin-right: 25px;
	margin-top: 10px;
}

.article-text {
	font-size: 17px;
	line-height: 2;
}

.anket-panel-item.anket-panel-item_name {
	text-decoration: none;
	letter-spacing: 1px;
}

@font-face {
	font-display: swap;
	font-family: Roboto;
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/roboto-300_1.eot);
	src: local('Roboto Light'),
		url(../fonts/roboto-300_1.eot#iefix) format('embedded-opentype'),
		url(../fonts/roboto-300_1.woff2) format('woff2'),
		url(../fonts/roboto-300_1.woff) format('woff'),
		url(/templates/vs-pr-surf-new/dev/img/roboto-300.ttf) format('truetype'),
		url(../images/roboto-300_1.svg#Roboto) format('svg');
}

@font-face {
	font-display: swap;
	font-family: Roboto;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/roboto-regular_1.eot);
	src: local('Roboto'),
		url(../fonts/roboto-regular_1.eot#iefix) format('embedded-opentype'),
		url(../fonts/roboto-regular_1.woff2) format('woff2'),
		url(../fonts/roboto-regular_1.woff) format('woff'),
		url(../fonts/roboto-regular.ttf) format('truetype'),
		url(../images/roboto-regular_1.svg#Roboto) format('svg');
}

@font-face {
	font-display: swap;
	font-family: Roboto;
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/roboto-700_1.eot);
	src: local('Roboto Bold'),
		url(../fonts/roboto-700_1.eot#iefix) format('embedded-opentype'),
		url(../fonts/roboto-700_1.woff2) format('woff2'),
		url(../fonts/roboto-700_1.woff) format('woff'),
		url(/templates/vs-pr-surf-new/dev/img/roboto-700.ttf) format('truetype'),
		url(../images/roboto-700_1.svg#Roboto) format('svg');
}

/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a:active,
a:hover {
	outline-width: 0;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

dfn {
	font-style: italic;
}

h1 {
	margin: 0.67em 0;
}

mark {
	background-color: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

svg:not(:root) {
	overflow: hidden;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

figure {
	margin: 1em 40px;
}

hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

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

h3,
h4 {
	line-height: 18px;
}

.italic,
.logo__text i {
	font-style: italic;
}

optgroup {
	font-weight: 700;
}

body,
p {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	color: #263238;
	font-weight: 400;
	line-height: 20px;
}

button,
select {
	text-transform: none;
}

[type='button'],
[type='reset'],
[type='submit'],
button {
	cursor: pointer;
}

[disabled] {
	cursor: default;
}

[type='reset'],
[type='submit'],
button,
html [type='button'] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
	outline: ButtonText dotted 1px;
}

fieldset {
	border: 1px solid silver;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

.container,
.container-fluid {
	margin-left: auto;
	margin-right: auto;
}

legend {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

textarea {
	overflow: auto;
}

[type='checkbox'],
[type='radio'] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

*,
.lg-outer *,
:after,
:before {
	-webkit-box-sizing: border-box;
}

.container,
.container-fluid {
	padding-right: 15px;
	padding-left: 15px;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	-webkit-appearance: textfield;
}

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

.container::after {
	display: table;
}

.container-fluid::after {
	display: table;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row::after {
	display: table;
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col-xs-1 {
	width: 8.33333%;
}

.col-xs-2 {
	width: 16.66667%;
}

.col-xs-3 {
	width: 25%;
}

.col-xs-4 {
	width: 33.33333%;
}

.col-xs-5 {
	width: 41.66667%;
}

.col-xs-6 {
	width: 50%;
}

.col-xs-7 {
	float: left;
	width: 58.33333%;
}

.col-xs-8 {
	width: 66.66667%;
}

.col-xs-9 {
	width: 75%;
}

.col-xs-10 {
	width: 83.33333%;
}

.col-xs-11 {
	width: 91.66667%;
}

.col-12,
.col-xs-12,
.container,
.wrapper {
	width: 100%;
}

.pull-xs-0 {
	right: auto;
}

.pull-xs-1 {
	right: 8.33333%;
}

.pull-xs-2 {
	right: 16.66667%;
}

.pull-xs-3 {
	right: 25%;
}

.pull-xs-4 {
	right: 33.33333%;
}

.pull-xs-5 {
	right: 41.66667%;
}

.pull-xs-6 {
	right: 50%;
}

.pull-xs-7 {
	right: 58.33333%;
}

.pull-xs-8 {
	right: 66.66667%;
}

.pull-xs-9 {
	right: 75%;
}

.pull-xs-10 {
	right: 83.33333%;
}

.pull-xs-11 {
	right: 91.66667%;
}

.pull-xs-12 {
	right: 100%;
}

.push-xs-0 {
	left: auto;
}

.push-xs-1 {
	left: 8.33333%;
}

.push-xs-2 {
	left: 16.66667%;
}

.push-xs-3 {
	left: 25%;
}

.push-xs-4 {
	left: 33.33333%;
}

.push-xs-5 {
	left: 41.66667%;
}

.push-xs-6 {
	left: 50%;
}

.push-xs-7 {
	left: 58.33333%;
}

.push-xs-8 {
	left: 66.66667%;
}

.push-xs-9 {
	left: 75%;
}

.push-xs-10 {
	left: 83.33333%;
}

.push-xs-11 {
	left: 91.66667%;
}

.push-xs-12 {
	left: 100%;
}

.offset-xs-1 {
	margin-left: 8.33333%;
}

.offset-xs-2 {
	margin-left: 16.66667%;
}

.offset-xs-3 {
	margin-left: 25%;
}

.offset-xs-4 {
	margin-left: 33.33333%;
}

.offset-xs-5 {
	margin-left: 41.66667%;
}

.offset-xs-6 {
	margin-left: 50%;
}

.offset-xs-7 {
	margin-left: 58.33333%;
}

.offset-xs-8 {
	margin-left: 66.66667%;
}

.offset-xs-9 {
	margin-left: 75%;
}

.offset-xs-10 {
	margin-left: 83.33333%;
}

.offset-xs-11 {
	margin-left: 91.66667%;
}

*,
:after,
:before {
	box-sizing: border-box;
}
h1 > span {
	color: grey;
	font-size: 10px;
	margin-left: 5px;
}
html {
	font-size: 100%;
	height: 100%;
}

body {
	font-size: 16px;
	font-size: 1rem;
	background: var(--bg);
	overflow-x: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-flex-flow: column;
	-ms-flex-flow: column;
	flex-flow: column;
	min-height: 100vh;
}

.icon-area,
.icon-local,
.icon-lock,
.icon-search,
.icon-search-lg {
	background-image: url(../images/sprite.png);
}

.wrapper {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	overflow: hidden;
	padding: 24px 0;
}

.ankets__image > a > img {
	width: 125px;
	height: 170px;
	float: left;
	margin-right: 10px;
}

.anket-panel-button {
	text-align: center;
}

.anket-panel {
	min-height: 180px;
}
nav ul,
ul {
	padding: 0;
	margin-bottom: 0;
	margin-top: 0;
}

.clearfix {
	clear: both;
}

.clearfix:after {
	display: block;
	height: 0;
}

img,
video {
	max-width: 100%;
	height: auto;
}

img.no-responsive,
video.no-responsive {
	max-width: none;
}

.col-6 {
	width: 50%;
}

.col-3 {
	width: 33.333%;
}

.col-4 {
	width: 25%;
}

.col-5 {
	width: 20%;
}

.w-10 {
	width: 10%;
}

.w-12 {
	width: 12%;
}

.vertical-align:after,
.vertical-align:before {
	width: 100%;
	height: 0;
	content: '';
}

.grayscale {
	-ms-filter: grayscale(1);
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-o-filter: grayscale(1);
	filter: grayscale(1);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.grayscale:hover {
	-ms-filter: grayscale(0);
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-o-filter: grayscale(0);
	filter: grayscale(0);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.vertical-align {
	text-align: justify;
}

.vertical-align:before {
	display: block;
}

.icon {
	display: inline-block;
}

.vertical-align:after {
	display: inline-block;
	visibility: hidden;
	overflow: hidden;
}

input,
textarea {
	-webkit-overflow-scrolling: touch;
}

p {
	font-size: 15px;
	font-size: 0.9375rem;
}

.text_bold,
b {
	font-weight: 700;
}

.text_center {
	text-align: center !important;
}

.text_left {
	text-align: left !important;
}

.text_rigth {
	text-align: right !important;
}

a,
h1,
h2 {
	font-weight: 400;
	font-family: Roboto, Helvetica, Arial, sans-serif;
}

.text_uppercase {
	text-transform: uppercase;
}

a {
	background-color: transparent;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 20px;
}

a[href^='mailto:'],
a[href^='mailto:']:hover,
a[href^='tel:'],
a[href^='tel:']:hover {
	color: inherit;
	text-decoration: none;
}

h1 {
	font-size: 24px;
	font-size: 1.5rem;
	line-height: 36px;
}

h2 {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 25ox;
}

h3 {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 700;
}

.logo__text,
h4 {
	font-weight: 400;
}

h4 {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1rem;
}

.no-upercouse {
	text-transform: none;
}

.icon-search {
	background-position: -181px -72px;
	width: 15px;
	height: 16px;
}

.icon-search-lg {
	background-position: -78px -35px;
	width: 20px;
	height: 20px;
}

.icon-lock {
	background-position: -181px -35px;
	width: 14px;
	height: 22px;
}

.icon-area {
	background-position: -68px -112px;
	width: 19px;
	height: 19px;
}

.icon-local {
	background-position: -148px -72px;
	width: 16px;
	height: 21px;
}

.icon-national,
.sevice_icon {
	height: 20px;
	background-image: url(../images/sprite.png);
}
.icon.icon-service {
	height: 20px;
	background-image: url(../images/sprite.png);
	background-position: -113px 0px;
	width: 20px;
}

.sevice_icon {
	background-position: -35px -38px;
	width: 24px;
}

.icon-national {
	background-position: -35px -77px;
	width: 20px;
}

.icon-advanced {
	background-image: url(../images/sprite.png);
	background-position: 0 -145px;
	width: 20px;
	height: 20px;
}

.icon-cash {
	background-image: url(../images/sprite.png);
	background-position: -78px 0;
	width: 20px;
	height: 20px;
}

.icon-gene {
	background-image: url(../images/sprite.png);
	background-position: 0 0;
	width: 24px;
	height: 23px;
}

.icon-linner {
	background-image: url(../images/sprite.png);
	background-position: -113px -70px;
	width: 18px;
	height: 22px;
}

.icon-libra {
	background-image: url(../images/sprite.png);
	background-position: 0 -38px;
	width: 20px;
	height: 24px;
}

.icon-boobs {
	background-image: url(../images/sprite.png);
	background-position: -181px 0;
	width: 16px;
	height: 20px;
}

.icon-data {
	background-image: url(../images/sprite.png);
	background-position: -181px -103px;
	width: 10px;
	height: 19px;
}

.icon-cash-md,
.icon-hart,
.icon-hart-white,
.icon-phone {
	background-image: url(../images/sprite.png);
	height: 20px;
}

.icon-hart {
	background-position: -113px 0;
	width: 20px;
}

.icon-hart-white {
	background-position: -70px -77px;
	width: 20px;
}

.icon-phone {
	background-position: -148px -37px;
	width: 17px;
}

.icon-cash-md {
	background-position: 0 -77px;
	width: 20px;
}

.icon-faq,
.icon-man {
	height: 22px;
	background-image: url(../images/sprite.png);
}

.icon-man {
	background-position: -39px 0;
	width: 24px;
}

.icon-faq {
	background-position: -148px 0;
	width: 18px;
}

.icon-messadge {
	background-image: url(../images/sprite.png);
	background-position: -113px -35px;
	width: 20px;
	height: 20px;
}

.icon-time-sm {
	background-image: url(../images/sprite.png);
	background-position: -33px -147px;
	width: 17px;
	height: 18px;
}

.icon-car-sm,
.icon-love-house {
	width: 18px;
	background-image: url(../images/sprite.png);
}

.icon-love-house {
	background-position: -137px -112px;
	height: 18px;
}

.icon-car-sm {
	background-position: -65px -147px;
	height: 15px;
}

.icon-camera {
	background-image: url(../images/sprite.png);
	background-position: -102px -112px;
	width: 20px;
	height: 18px;
}

.icon-map,
.icon-video {
	background-image: url(../images/sprite.png);
	width: 19px;
}

.icon-video {
	background-position: -34px -112px;
	height: 19px;
}

.icon-map {
	background-position: 0 -112px;
	height: 20px;
}

.header {
	width: 100%;
}

.header-top {
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: var(--blue);
	overflow: hidden;
}

.main__telegram {
	width: 100%;
	padding: 10px;
	box-shadow: 0 0 1px black;
	text-align: center;
}

.main__telegram a {
	text-decoration: none;
}

.main__telegram a:hover {
	text-decoration: underline;
}

.local a,
.local p {
	font-size: 12px;
	line-height: 15px;
	font-weight: 400;
	color: #fff;
}

.profile-panel-item_name,
.menu-list__item_btn .menu-list__link,
.menu-list__link {
	text-decoration: none;
}

.local p {
	margin: 0;
}

.toggle-search {
	z-index: 23;
	display: block;
	border: 0;
	background: 0 0;
	padding: 0;
	width: 50px;
	height: 40px;
	margin-right: 20px;
	color: #fff;
	text-align: center;
}

.login,
.menu-list__item {
	display: inline-block;
}

.login,
.login .icon,
.menu__label:before {
	vertical-align: middle;
}

.menu,
.menu-list {
	width: 100%;
	position: relative;
}

.login {
	position: relative;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
}

.menu-list__link,
.menu__label {
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
}

.login:hover {
	color: #fff;
}

.menu {
	background-color: #fff;
	padding: 1rem;
}

.menu-list__item.clicked > a {
	color: var(--accent);
}

.menu-list__item.clicked > a:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.menu-list__item_box {
	padding: 5px 10px;
	background-color: #eceff1;
}

.menu-list__link {
	position: relative;
	z-index: 23;
	width: 100%;
	height: 100%;
	color: #263238;
}

.menu__checkbox {
	position: absolute;
	width: 0;
	opacity: 0;
}

.menu__label,
.menu__label:before {
	position: relative;
	display: inline-block;
}

.menu__label {
	color: #263238;
	cursor: pointer;
}

.menu__label:before {
	content: '';
	top: -2px;
	margin-right: 10px;
	width: 18px;
	height: 18px;
	-webkit-border-radius: 1px 0 0 1px;
	border-radius: 1px 0 0 1px;
	background-color: #eceff1;
}

.menu__checkbox:checked + .menu__label:before {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAJCAYAAADpeqZqAAAAtElEQVQoU43QvQ2CQBTA8f+zMRESGYENdIQbwUawZAQ2ECcxlmIBI+AGuIkFaCzkDB8SCBi87t7d730Jf54cJ9Do2OSSypTRbKyceSSgNPpqEqoKZWzXgtgGYdxN8mSn3hSRIBZwW/BSQnyvUI6bAivQgUF4qGNOALJvkrSgvLeVQBJBlhqS5kHVQJ8MQq/bQTtTxtYTZsf+jEPQVvp+7MNxMEBl4IHrF2CbnP1fm51c+Rj8APfZOAq9pd5sAAAAAElFTkSuQmCC);
	background-repeat: no-repeat;
	background-size: 11px 8px;
	background-position: center;
}

.submenu-col-2 {
	display: block;
}

.submenu-list:not(:last-child) {
	margin-bottom: 30px;
}

.submenu-list__title {
	font-size: 13px;
	color: #263238;
	font-weight: 700;
	line-height: 20px;
}

.submenu-list__item {
	line-height: 20px;
}

.submenu-list__item > a {
	font-size: 13px;
	color: #263238;
	font-weight: 400;
	line-height: 20px;
	text-decoration: none;
}

.submenu-list__item > a:hover {
	color: var(--accent);
}

.submenu-list__item > a:before {
	content: '› ';
	color: currentColor;
}

/*.menu-button {*/
/*    position: fixed;*/
/*    text-align:center;*/
/*    z-index: 9992;*/
/*    top: 10px;*/
/*    right: 15px;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    padding: 0;*/
/*    background-color: var(--accent);*/
/*    border: 0;*/
/*    -webkit-border-radius: 4px;*/
/*    border-radius: 4px*/
/*}*/

.burger-icon {
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin: 0 auto;
}

.burger-icon,
.burger-icon::after,
.burger-icon::before {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #fff;
	outline: transparent solid 1px;
	-webkit-transition-property: background-color, -webkit-transform;
	transition-property: background-color, -webkit-transform;
	transition-property: background-color, transform;
	transition-property: background-color, transform, -webkit-transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.burger-icon::after,
.burger-icon::before {
	position: absolute;
	content: '';
}

.burger-icon::before {
	top: -8px;
}

.burger-icon::after {
	top: 8px;
}

.menu-button.is-active {
	border-color: var(--accent);;
}

.menu-button.is-active .burger-icon {
	background-color: transparent;
}

.menu-button.is-active .burger-icon::before {
	-webkit-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
}

.menu-button.is-active .burger-icon::after {
	-webkit-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
}

.profile,
.profiles__image {
	display: inline-block;
}

.profile-list-item__title,
.check-list__label,
.list li {
	color: #263238;
	font-size: 12px;
	font-weight: 400;
}

.profile,
.profiles {
	width: 100%;
}

.profile {
	padding: 10px;
	box-shadow: 0 0 14px rgba(38, 50, 56, 0.2);
	background: var(--front);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.profile:hover {
	box-shadow: 0 0 14px rgba(38, 50, 56, 0.45);
}

.profiles__image {
	width: 125px;
	height: 167px;
	background: #e1e1e1;
	overflow: hidden;
}

.profiles__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.check-list {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
}

.check-list__label {
	display: block;
	height: 16px;
	padding-left: 6px;
	padding-right: 6px;
	line-height: 16px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	text-align: center;
	margin-bottom: 5px;
}

.check-list__label:last-child {
	margin-bottom: 0;
}

.check-list__label_photo {
	background-color: #d4e157;
}

.check-list__label_video {
	background-color: #4fc3f7;
}

.profile-list {
	display: inline-block;
	float: right;
	padding-right: 3px;
}

.profile-list-item:not(:last-child) {
	margin-bottom: 5px;
}

.profile-list-item__title {
	position: relative;
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
	line-height: 17px;
	margin-bottom: 0;
	text-transform: uppercase;
}

.profile-list-item__title .icon {
	position: relative;
	top: -2px;
	vertical-align: middle;
	margin-right: 2px;
}

.list li > span {
	display: inline-block;
	margin-right: -0.36em;
	text-align: left;
}

.profile-panel-item .icon,
.info_title .icon {
	margin-right: 5px;
	vertical-align: middle;
}

.list li > span:first-child {
	width: 60%;
}

.list li > span:last-child {
	width: 40%;
}

.list li:nth-child(odd) {
	background-color: #eceff1;
}

.profile-panel-item_name:after,
.profile-panel__button:after {
	content: '';
	top: 0;
	height: 100%;
	background: #fff;
	z-index: 8;
}

.profile-panel {
	position: relative;
	width: 100%;
	margin-top: 12px;
}

.profile-panel-item {
	width: 100%;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
}

.profile-panel-item_name {
	position: relative;
	padding-left: 2px;
	color: var(--accent);
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 3px;
	margin-left: 2px;
}

.profile-panel-item_name:after,
.profile-panel__button,
.profile-panel__button:after {
	display: inline-block;
	position: absolute;
}

.profile-panel-item_name:hover {
	color: black;
}

.profile-panel-item_name:after {
	right: -12px;
	width: 20px;
	-webkit-box-shadow: -20px 1px 31px 16px rgba(255, 255, 255, 0.85);
	box-shadow: -20px 1px 31px 16px rgba(255, 255, 255, 0.85);
}

.profile-panel-item_address {
	padding-left: 5px;
	margin-bottom: 2px;
}

.profile-panel-item_tel {
	padding-left: 7px;
}

.profile-panel__button {
	bottom: 6px;
	right: 0;
	background-color: #fff;
	color: var(--accent);
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	text-align: center;
	padding: 0 5px 1px;
	border: 0;
	border-bottom: 1px dotted var(--accent);;
	outline: 0 !important;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
button:focus {
	outline: 0;
}

.profile-panel__button:hover {
	border-bottom-color: transparent;
}

.profile-panel__button:after {
	left: -10px;
	width: 10px;
	-webkit-box-shadow: -10px 0 11px 6px rgba(255, 255, 255, 0.85);
	box-shadow: -10px 0 11px 6px rgba(255, 255, 255, 0.85);
}

@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
	}
}

@keyframes scroll {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
	}
}

.info {
	width: 100%;
	height: 100%;
	-webkit-box-shadow: 0 0 4px rgba(38, 50, 56, 0.15);
	box-shadow: 0 0 4px rgba(38, 50, 56, 0.15);
	background-color: #fff;
}

.info p {
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
}

.info_title {
	position: relative;
	display: block;
	min-height: 40px;
	padding: 10px 15px;
	-webkit-border-radius: 2px 2px 0 0;
	border-radius: 2px 2px 0 0;
	background-color: #eceff1;
}

.footer-links,
.footer-links li,
.info_data {
	display: inline-block;
}

.info_data {
	position: relative;
	width: 100%;
	padding: 0 15px;
}

.info_data_text {
	padding: 15px 15px;
}

.info__title {
	color: #263238;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	margin: 0;
}

.footer-links li,
.footer-links li > a {
	font-size: 12px;
	color: #fff;
	font-weight: 400;
}

.footer {
	width: 100%;
	padding: 10px 0;
	background-color: var(--blue);
	margin-top: 1rem;
}

.footer-links {
	padding-top: 9px;
}

.footer-links li {
	position: relative;
	width: 300px;
	padding-left: 25px;
	line-height: 16px;
}

.footer-links li:not(:last-child) {
	margin-right: 25px;
}

.footer-links li > a {
	line-height: 15px;
}

.footer-links li > a:hover {
	text-decoration: none;
}

.footer-links li .icon {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	vertical-align: top;
}

/*.breadcrumbs {*/
/*    width: 100%;*/
/*    padding: 20px 0*/
/*}*/

.breadcrumbs-list__item:not(:last-child):after {
	content: '>';
	color: currentColor;
	margin: 0 2px;
}

.checkbox-label:before,
.info_main .info_title:after,
.link-list__item > a:after {
	content: '';
}

.breadcrumbs-list__item > a {
	font-size: 14px;
	font-weight: 400;
	color: #263238;
	text-decoration: none;
}

.breadcrumbs-list__item > a:hover {
	color: var(--accent);
}

.info_data_service {
	padding-left: 23px;
	padding-top: 10px;
}

.service-list {
	display: block;
	float: left;
	width: 33%;
}

.link-list {
	font-size: 14px;
	line-height: 25px;
}

.link-list:not(:last-child) {
	margin-bottom: 28px;
}

.link-list__title {
	color: #263238;
	font-weight: 700;
}

.link-list__item > a {
	position: relative;
	display: inline-block;
	padding-left: 23px;
	color: var(--accent);
	font-weight: 400;
	text-decoration: none;
	word-break: break-word;
}

.link-list__item > a:hover {
	text-decoration: none;
	opacity: 0.7;
}

.link-list__item > a:after {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 3px;
	width: 15px;
	height: 15px;
	background: url(data:image/svg+xml,%3Csvg%20id%3D%22SvgjsSvg1008%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-297%20389%2016%2016%22%3E%3Cstyle%3E.st0%7Bfill%3A%23e57373%7D%3C%2Fstyle%3E%3Ctitle%3EShape%2051%3C%2Ftitle%3E%3Cpath%20id%3D%22SvgjsPath1010%22%20class%3D%22st0%22%20d%3D%22M-281.4%20391.7l-2.3-2.3-5.3%205.3-5.3-5.3-2.3%202.3%205.3%205.3-5.3%205.3%202.3%202.3%205.3-5.3%205.3%205.3%202.3-2.3-5.3-5.3%205.3-5.3z%22%2F%3E%3C%2Fsvg%3E)
		no-repeat;
	background-size: 100%;
}

.link-list__item_active > a {
	color: #263238;
}

.link-list__item_active > a:after {
	width: 16px;
	height: 14px;
	background: url(data:image/svg+xml,%3Csvg%20id%3D%22SvgjsSvg1000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-297%20389%2016%2015%22%3E%3Cstyle%3E.st0%7Bfill%3A%237cb342%7D%3C%2Fstyle%3E%3Ctitle%3EShape%2050%3C%2Ftitle%3E%3Cpath%20id%3D%22SvgjsPath1007%22%20class%3D%22st0%22%20d%3D%22M-289.7%20402.3l-6.3-6.3%203.7-3.7%202.4%202.4%203.9-4.3h-9.4c-.9%200-1.6.7-1.6%201.6v9.7c0%20.9.7%201.6%201.6%201.6h11.2c.9%200%201.6-.7%201.6-1.6v-7.3l-7.1%207.9zm8.7-11.9l-1.5-1.4-7.3%208.1-2.5-2.5-1.4%201.4%204%204%208.7-9.6z%22%2F%3E%3C%2Fsvg%3E)
		no-repeat;
	background-size: 100%;
}

.checkbox-input {
	opacity: 0;
	width: 0;
	position: absolute;
}

.checkbox-label {
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding-left: 30px;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	color: #263238;
}

.checkbox-label:before {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	-webkit-border-radius: 1px 0 0 1px;
	border-radius: 1px 0 0 1px;
	background-color: #fff;
	border: 1px solid #e6e6e6;
}

.checkbox-input:checked + label:before {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAJCAYAAADpeqZqAAAAtElEQVQoU43QvQ2CQBTA8f+zMRESGYENdIQbwUawZAQ2ECcxlmIBI+AGuIkFaCzkDB8SCBi87t7d730Jf54cJ9Do2OSSypTRbKyceSSgNPpqEqoKZWzXgtgGYdxN8mSn3hSRIBZwW/BSQnyvUI6bAivQgUF4qGNOALJvkrSgvLeVQBJBlhqS5kHVQJ8MQq/bQTtTxtYTZsf+jEPQVvp+7MNxMEBl4IHrF2CbnP1fm51c+Rj8APfZOAq9pd5sAAAAAElFTkSuQmCC);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px;
}

.panel-list__item .checkbox-input + label:before {
	top: -2px;
}

.btn,
.btn[type='button'] {
	position: relative;
	display: inline-block;
	width: auto;
	width: 172px;
	height: 32px;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.5;
	font-weight: 400;
	text-align: center;
	overflow: hidden;
	z-index: 3;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-border-radius: 14px;
	border-radius: 14px;
	border: 1px solid transparent;
	cursor: pointer;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.btn_default {
	background-color: #78909c;
	color: #fff;
}

.btn_default:hover {
	background-color: #95a8b2;
}

.btn_red {
	background-color: var(--accent);;
	color: #fff;
}

.btn_red:hover {
	background-color: #ff2975;
}

.btn[type='button'] {
	-webkit-appearance: inherit;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.25;
	filter: alpha(opacity=25);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.profile-info {
	width: 100%;
	padding-top: 1.5rem;
}

.profile-info .check {
	display: inline-block;
	position: absolute;
	right: 15px;
	bottom: 0;
	text-align: center;
}

.profile-info .check img {
	width: 42px;
	height: 42px;
	display: block;
	margin: 0 auto;
}

.profile-info .check-label {
	display: inline-block;
	margin: 6px auto 0;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	line-height: 12px;
}

.profile-info-item .info {
	position: relative;
	overflow: hidden;
}

.profile-info-item .info_data,
.profile-info-item .info_title {
	padding-left: 10px;
	padding-right: 10px;
}

.info_main .info_title {
	overflow: hidden;
	/*background-color: var(--accent);*/
}

.data-list,
.price-list-item {
	background-color: rgba(236, 239, 241, 0.8);
}

.info_main .info_title:after {
	position: absolute;
	top: 0;
	right: -20px;
	display: inline-block;
	width: 15px;
	height: 100%;
	/*-webkit-box-shadow: -20px 0 19px 12px var(--accent);;*/
	/*box-shadow: -20px 0 19px 12px var(--accent);*/
}

.info_main .icon-hart-white {
	display: inline-block;
	vertical-align: top;
	margin-right: 5px;
}

.info_title__name {
	position: relative;
	white-space: nowrap;
	color: #fff;
	width: 88%;
	vertical-align: top;
	display: flex;
	align-items: center;
}

.info_title__name h1 {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	font-size: 16px !important;
	line-height: 22px !important;
	display: inline;
}

.info-list {
	display: block;
	width: 100%;
	padding-top: 5px;
}

.info-list .profile-panel__button {
	bottom: 11px;
	right: 70px;
}

.info-list-item {
	position: relative;
	width: 100%;
	display: block;
	white-space: nowrap;
	padding: 10px 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
}

.info-list-item .icon {
	margin-right: 9px;
}

/*.info-list-item .icon.icon-area,*/
/*.info-list-item .icon.icon-phone {*/
/*    position: relative;*/
/*    top: 5px*/
/*}*/

a.info-list-item {
	font-size: 16px;
	text-decoration: none;
}

a.info-list-item:hover {
	text-decoration: underline;
}

.info .info_data_body,
.info .info_title_data {
	padding-left: 18px;
	padding-right: 14px;
}

.price-list {
	display: block;
	float: left;
	height: 100%;
	width: 39%;
	padding-top: 12px;
}

.price-list:first-child {
	width: 21%;
}

.data-list,
.price-list-item,
.price-list-item span {
	display: inline-block;
	width: 100%;
}

.price-list:first-child span {
	border-right: 1px solid #fff;
}

.price-list:first-child .price-list-item {
	padding-bottom: 2px;
}

.price-list:not(:first-child) .price-list__title {
	padding-left: 8px;
}

.price-list:not(:first-child) span:not(:last-child) {
	border-bottom: 1px solid #fff;
}

.price-list:nth-child(2) span {
	border-right: 1px solid #fff;
}

.price-list__title {
	display: inline-block;
	font-size: 13px;
	font-weight: 400;
	line-height: 25px;
	white-space: nowrap;
	vertical-align: top;
}

.price-list__title .icon {
	position: relative;
	top: -3px;
	vertical-align: middle;
}

.price-list-item span {
	padding-left: 8px;
	font-size: 16px;
	font-weight: 400;
	line-height: 35px;
}

.price-list-item .no {
	opacity: 0.6;
}

.data-list {
	margin-top: 40px;
}

.data-list-item {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.data-list-item:not(:last-child) > span {
	border-right: 1px solid #fff;
}

.data-list-item a {
	text-decoration: none;
}

.data-list-item a:hover {
	text-decoration: underline;
}

.nav-item > a,
.pages ul li a,
.pages ul li a:active,
.pages ul li a:focus,
.pages ul li a:hover {
	text-decoration: none;
}

.data-list-item > a,
.data-list-item > span {
	display: inline-block;
	width: 50%;
	font-size: 16px;
	font-weight: 400;
	line-height: 34px;
	padding-left: 8px;
}

.data-list-item > a:last-child,
.data-list-item > span:last-child {
	width: 100%;
}

.data-list-item > a:not(:last-child),
.data-list-item > span:not(:last-child) {
	border-bottom: 1px solid #fff;
}

.l-red {
	color: var(--accent);
}

.gallery {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.frame {
	height: 524px;
	line-height: 524px;
	overflow: hidden;
}

.frame__list {
	margin: 0;
	padding: 0;
	height: 100%;
}

.frame__list_item {
	display: block;
	float: left;
	width: auto;
	height: 100%;
	margin: 0 20px 0 0;
	padding: 0;
	text-align: center;
	cursor: pointer;
}

.frame__list_item img {
	max-width: none;
	width: auto;
	height: 100%;
}

.gallery__scrollbar {
	margin: 28px 0;
	height: 2px;
	background: #bdbdbd;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.gallery__scrollbar_handle {
	position: relative;
	top: -4px;
	width: 100px;
	height: 10px;
	background-color: var(--accent);;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
}

.gallery__scrollbar_handle .mousearea {
	position: absolute;
	top: -9px;
	left: 0;
	width: 100%;
	height: 20px;
}

.gallery__frame {
	position: relative;
}

.gallery__frame:after,
.gallery__frame:before {
	position: absolute;
	z-index: 33;
	bottom: auto;
	display: block;
	height: 100%;
	top: 0;
	content: '';
}

.gallery__frame:after {
	right: 0;
	left: auto;
	-webkit-box-shadow: -1px -1px 16px 13px #fff;
	box-shadow: -1px -1px 16px 13px #fff;
}

.gallery__frame:before {
	left: 0;
	right: auto;
	-webkit-box-shadow: -1px -1px 16px 13px #fff;
	box-shadow: -1px -1px 16px 13px #fff;
}

.section_title {
	margin: 38px 0 27px;
}

.gallery-hidden {
	display: none;
}

.gallery-mobile {
	width: 260px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 30px;
	overflow: hidden;
}

.gallery-mobile img,
.map-wrap{
	width: 100%;
}

.gallery-mobile .btn {
	margin-top: 30px;
}

.map-wrap {
	display: block;
	height: 412px;
	overflow: hidden;
	margin: 15px auto;
	background-color: #edeef0;
}

.checkbox-col {
	display: inline-block;
	vertical-align: top;
	margin-right: -0.36em;
	padding-top: 10px;
	padding-bottom: 10px;
}

.checkbox-col_6 {
	width: 16.66667%;
}

.checkbox-col_7 {
	width: 14.28571%;
}


.panel-list {
	display: block;
	float: left;
}

.panel-list__item {
	display: inline-block;
	vertical-align: top;
	line-height: 30px;
}

#lg-counter,
.lg-outer .lg-video-cont {
	vertical-align: middle;
	display: inline-block;
}

.panel-list__item:not(:last-child) {
	margin-right: 30px;
}

.checkbox-list {
	margin-bottom: 20px;
}

.checkbox-list__title {
	position: relative;
	font-size: 13px;
	color: #263238;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 5px;
}

.checkbox-list__title:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: inline-block;
	height: 1px;
	width: 80%;
	background-color: rgba(38, 50, 56, 0.2);
}

.irs,
.irs-line {
	position: relative;
}

.irs,
.irs-bar,
.irs-bar-edge,
.irs-line {
	display: block;
}

.wrap-buttons {
	float: right;
}

.wrap-buttons .btn:not(:last-child) {
	margin-right: 30px;
}

.irs {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.irs-line {
	overflow: hidden;
	outline: 0 !important;
}

.irs-line-left,
.irs-line-mid,
.irs-line-right {
	position: absolute;
	display: block;
	top: 0;
}

.irs-line-left {
	left: 0;
	width: 11%;
}

.irs-line-mid {
	left: 9%;
	width: 82%;
}

.irs-line-right {
	right: 0;
	width: 11%;
}

.irs-bar,
.irs-shadow {
	position: absolute;
	width: 0;
	left: 0;
}

.irs-bar-edge {
	position: absolute;
	left: 0;
}

.irs-shadow {
	display: none;
}

.irs-from,
.irs-max,
.irs-min,
.irs-single,
.irs-slider,
.irs-to {
	display: block;
	position: absolute;
}

.irs-slider {
	z-index: 1;
}

.irs-slider.type_last {
	z-index: 2;
}

.irs-min {
	left: 0;
	cursor: default;
}

.irs-max {
	right: 0;
	cursor: default;
}

.irs-from,
.irs-single,
.irs-to {
	top: 0;
	left: 0;
	cursor: default;
	white-space: nowrap;
}

.irs-grid {
	position: absolute;
	display: none;
	bottom: 0;
	left: 0;
	width: 100%;
}

.irs-with-grid .irs-grid {
	display: block;
}

.irs-grid-pol {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 8px;
}

.irs-grid-pol.small {
	height: 4px;
}

.irs-grid-text {
	position: absolute;
	left: 0;
	white-space: nowrap;
	text-align: center;
	line-height: 9px;
	padding: 0 3px;
}

.irs-disable-mask {
	position: absolute;
	display: block;
	top: 0;
	left: -1%;
	width: 102%;
	height: 100%;
	cursor: default;
	background: 0 0;
	z-index: 2;
}

.irs-disabled {
	opacity: 0.4;
}

.lt-ie9 .irs-disabled {
	filter: alpha(opacity=40);
}

.irs-hidden-input {
	position: absolute !important;
	display: block !important;
	top: 0 !important;
	left: 0 !important;
	width: 0 !important;
	height: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	outline: 0 !important;
	z-index: -9999 !important;
	background: 0 0 !important;
	border-style: solid !important;
	border-color: transparent !important;
}

.irs-from,
.irs-max,
.irs-min,
.irs-single,
.irs-to {
	line-height: 1.333;
	text-shadow: none;
	padding: 1px 5px;
}

.irs,
.irs-with-grid {
	height: 40px;
}

.irs-line {
	height: 10px;
	top: 5px;
	background: silver;
	-webkit-box-shadow: inset 0 1px 5px 1px #9e9e9e;
	box-shadow: inset 0 1px 5px 1px #9e9e9e;
	border: 0;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	-moz-border-radius: 16px;
}

.irs-line-left,
.irs-line-mid,
.irs-line-right {
	height: 8px;
}

.irs-bar {
	height: 10px;
	top: 5px;
	border-top: 1px solid #428bca;
	border-bottom: 1px solid #428bca;
	background: #28587f;
	background: -webkit-linear-gradient(
		left,
		#28587f 0,
		#5395d0 50%,
		#28587f 100%
	);
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#28587f),
		color-stop(50%, #5395d0),
		to(#28587f)
	);
	background: linear-gradient(to right, #28587f 0, #5395d0 50%, #28587f 100%);
	filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#28587f', endColorstr='#28587f', GradientType=1);
}

.irs-bar-edge {
	height: 10px;
	top: 5px;
	width: 14px;
	border: 1px solid #428bca;
	border-right: 0;
	background: #428bca;
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(#428bca),
		to(#7fc3e8)
	);
	background: -webkit-linear-gradient(bottom, #428bca 0, #7fc3e8 100%);
	background: linear-gradient(to top, #428bca 0, #7fc3e8 100%);
	-webkit-border-radius: 16px 0 0 16px;
	border-radius: 16px 0 0 16px;
	-moz-border-radius: 16px 0 0 16px;
}

.irs-shadow {
	height: 2px;
	top: 8px;
	background: #000;
	opacity: 0.3;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-border-radius: 5px;
}

.lt-ie9 .irs-shadow {
	filter: alpha(opacity=30);
}

.irs-slider {
	top: 1px;
	width: 17px;
	height: 17px;
	border: 1px solid #aaa;
	background: #ddd;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(white),
		color-stop(20%, #dcdcdc),
		to(white)
	);
	background: -webkit-linear-gradient(top, #fff 0, #dcdcdc 20%, #fff 100%);
	background: linear-gradient(to bottom, #fff 0, #dcdcdc 20%, #fff 100%);
	-webkit-border-radius: 27px;
	border-radius: 27px;
	-moz-border-radius: 27px;
	-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.irs-slider.state_hover,
.irs-slider:hover {
	background: #fff;
}

.irs-max,
.irs-min {
	color: #333;
	font-size: 12px;
	background: rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-border-radius: 3px;
}

.lt-ie9 .irs-max,
.lt-ie9 .irs-min {
	background: #ccc;
}

.irs-from,
.irs-single,
.irs-to {
	color: #000;
	font-size: 14px;
	margin-top: 25px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-border-radius: 3px;
}

.lt-ie9 .irs-from,
.lt-ie9 .irs-single,
.lt-ie9 .irs-to {
	background: #999;
}

.irs-grid {
	height: 27px;
}

.irs-grid-pol {
	opacity: 0.5;
	background: #428bca;
}

.irs-grid-pol.small {
	background: #999;
}

.irs-grid-text {
	bottom: 0;
	color: #99a4ac;
}

.tab-content {
	padding-top: 25px;
	padding-bottom: 5px;
}

.tab-content > .tab-pane {
	display: none;
}

.tab-content > .tab-pane.active {
	display: block;
}

.nav-item,
.nav-item > a {
	display: inline-block;
}

.fade {
	opacity: 0;
	-webkit-transition: opacity 0.15s linear;
	transition: opacity 0.15s linear;
}

.fade.in {
	opacity: 1;
}

.nav-tabs {
	padding: 0;
}

.nav-item > a {
	padding: 5px 20px;
	color: #263238;
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
}

.nav-item.active > a {
	background-color: #fff;
}

.lg-sub-html,
.lg-toolbar {
	background-color: rgba(0, 0, 0, 0.45);
}

.nav-item .icon {
	vertical-align: middle;
	position: relative;
	bottom: 2px;
}

@font-face {
	font-display: swap;
	font-family: lg;
	src: url(../fonts/lg_2.eot);
	src: url(../fonts/lg_3.eot#iefixn1z373) format('embedded-opentype'),
		url(../fonts/lg_1.woff) format('woff'),
		url(../fonts/lg_1.ttf) format('truetype'),
		url(../images/lg_1.svg#lg) format('svg');
	font-weight: 400;
	font-style: normal;
}

.lg-icon {
	font-family: lg;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
	background-color: rgba(0, 0, 0, 0.45);
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #999;
	cursor: pointer;
	display: block;
	font-size: 22px;
	margin-top: -10px;
	padding: 8px 10px 9px;
	position: absolute;
	top: 50%;
	z-index: 1080;
}

.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
	color: #fff;
}

.lg-actions .lg-next {
	right: 20px;
}

.lg-actions .lg-next:before {
	content: '\e095';
}

.lg-actions .lg-prev {
	left: 20px;
}

.lg-actions .lg-prev:after {
	content: '\e094';
}

@-webkit-keyframes lg-right-end {
	0%,
	100% {
		left: 0;
	}
	50% {
		left: -30px;
	}
}

@keyframes lg-right-end {
	0%,
	100% {
		left: 0;
	}
	50% {
		left: -30px;
	}
}

@-webkit-keyframes lg-left-end {
	0%,
	100% {
		left: 0;
	}
	50% {
		left: 30px;
	}
}

@keyframes lg-left-end {
	0%,
	100% {
		left: 0;
	}
	50% {
		left: 30px;
	}
}

.lg-outer.lg-right-end .lg-object {
	-webkit-animation: lg-right-end 0.3s;
	animation: lg-right-end 0.3s;
	position: relative;
}

.lg-outer.lg-left-end .lg-object {
	-webkit-animation: lg-left-end 0.3s;
	animation: lg-left-end 0.3s;
	position: relative;
}

.lg-toolbar {
	z-index: 1082;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.lg-toolbar .lg-icon {
	color: #999;
	cursor: pointer;
	float: right;
	font-size: 24px;
	height: 47px;
	line-height: 27px;
	padding: 10px 0;
	text-align: center;
	width: 50px;
	text-decoration: none !important;
	outline: 0;
	-webkit-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
	color: #fff;
}

.lg-toolbar .lg-close:after {
	content: '\e070';
}

.lg-toolbar .lg-download:after {
	content: '\e0f2';
}

.lg-sub-html {
	bottom: 0;
	color: #eee;
	font-size: 16px;
	left: 0;
	padding: 10px 40px;
	position: fixed;
	right: 0;
	text-align: center;
	z-index: 1080;
}

.lg-sub-html h4 {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
}

.lg-sub-html p {
	font-size: 12px;
	margin: 5px 0 0;
}

#lg-counter {
	color: #999;
	font-size: 16px;
	padding-left: 20px;
	padding-top: 12px;
}

.lg-next,
.lg-prev,
.lg-toolbar {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	-webkit-transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
		color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear,
		-webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear,
		-webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-hide-items .lg-prev {
	opacity: 0;
	-webkit-transform: translate3d(-10px, 0, 0);
	transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
	opacity: 0;
	-webkit-transform: translate3d(10px, 0, 0);
	transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
	opacity: 0;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
	-webkit-transform: scale3d(0.5, 0.5, 0.5);
	transform: scale3d(0.5, 0.5, 0.5);
	opacity: 0;
	-webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	-webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1),
		-webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
	transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1),
		-webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
	transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 250ms cubic-bezier(0, 0, 0.25, 1),
		-webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

body:not(.lg-from-hash)
	.lg-outer.lg-start-zoom
	.lg-item.lg-complete
	.lg-object {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-outer .lg-thumb-outer {
	background-color: #0d0a0a;
	bottom: 0;
	position: absolute;
	width: 100%;
	z-index: 1080;
	max-height: 350px;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s,
		-webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
	-webkit-transition-duration: 0s !important;
	transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.lg-outer .lg-thumb {
	padding: 10px 0;
	height: 100%;
	margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
	cursor: pointer;
	float: left;
	overflow: hidden;
	height: 100%;
	border: 2px solid #fff;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	margin-bottom: 5px;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
	padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
	padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
	-webkit-transition: bottom 0.25s ease;
	transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
	bottom: 100px;
}

.lg-outer .lg-toogle-thumb {
	background-color: #0d0a0a;
	-webkit-border-radius: 2px 2px 0 0;
	border-radius: 2px 2px 0 0;
	color: #999;
	cursor: pointer;
	font-size: 24px;
	height: 39px;
	line-height: 27px;
	padding: 5px 0;
	position: absolute;
	right: 20px;
	text-align: center;
	top: -39px;
	width: 50px;
}

.lg-outer .lg-toogle-thumb:hover,
.lg-outer.lg-dropdown-active #lg-share {
	color: #fff;
}

.lg-outer .lg-toogle-thumb:after {
	content: '\e1ff';
}

.lg-outer .lg-video-cont {
	max-width: 1140px;
	max-height: 100%;
	width: 100%;
	padding: 0 5px;
}

.lg-outer .lg-video {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}

.lg-outer .lg-video .lg-object {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
	width: 84px;
	height: 59px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -42px;
	margin-top: -30px;
	z-index: 1080;
	cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
	background: url(../img/vimeo-play.png) no-repeat;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
	background: url(../img/vimeo-play.png) 0 -58px no-repeat;
}

.lg-outer .lg-has-html5 .lg-video-play {
	background: url(../img/video-play.png) no-repeat;
	height: 64px;
	margin-left: -32px;
	margin-top: -32px;
	width: 64px;
	opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
	opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
	background: url(../img/youtube-play.png) no-repeat;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
	background: url(../img/youtube-play.png) 0 -60px no-repeat;
}

.lg-outer .lg-video-object {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
	display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
	visibility: visible;
}

.lg-progress-bar {
	background-color: #333;
	height: 5px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1083;
	opacity: 0;
	-webkit-transition: opacity 0.08s ease 0s;
	transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
	background-color: #a90707;
	height: 5px;
	width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
	width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
	opacity: 1;
}

.lg-autoplay-button:after {
	content: '\e01d';
}

.lg-show-autoplay .lg-autoplay-button:after {
	content: '\e01a';
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image,
.lg-outer.lg-css3.lg-zoom-dragging
	.lg-item.lg-complete.lg-zoomable
	.lg-img-wrap {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom
	.lg-item.lg-complete.lg-zoomable
	.lg-img-wrap {
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
		-webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	-webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
		top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
		top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.15s !important;
	-webkit-transition: opacity 0.15s,
		-webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
	transition: opacity 0.15s,
		-webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s,
		-webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#lg-zoom-in:after {
	content: '\e311';
}

#lg-actual-size {
	font-size: 20px;
}

#lg-actual-size:after {
	content: '\e033';
}

#lg-zoom-out {
	opacity: 0.5;
	pointer-events: none;
}

#lg-zoom-out:after {
	content: '\e312';
}

.lg-zoomed #lg-zoom-out {
	opacity: 1;
	pointer-events: auto;
}

.lg-outer .lg-pager-outer {
	bottom: 60px;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	z-index: 1080;
	height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
	overflow: visible;
}

.lg-outer .lg-pager-cont {
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
	position: relative;
	vertical-align: top;
	margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
	-webkit-box-shadow: 0 0 0 2px #fff inset;
	box-shadow: 0 0 0 2px #fff inset;
}

.lg-outer .lg-pager-thumb-cont {
	background-color: #fff;
	color: #fff;
	bottom: 100%;
	height: 83px;
	left: 0;
	margin-bottom: 20px;
	margin-left: -60px;
	opacity: 0;
	padding: 5px;
	position: absolute;
	width: 120px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
	transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
	transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
	transition: opacity 0.15s ease 0s, transform 0.15s ease 0s,
		-webkit-transform 0.15s ease 0s;
	-webkit-transform: translate3d(0, 5px, 0);
	transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
	width: 100%;
	height: 100%;
}

.lg-outer .lg-pager {
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
	display: block;
	height: 12px;
	-webkit-transition: box-shadow 0.3s ease 0s;
	-webkit-transition: -webkit-box-shadow 0.3s ease 0s;
	transition: -webkit-box-shadow 0.3s ease 0s;
	transition: box-shadow 0.3s ease 0s;
	transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
	width: 12px;
}

.lg-outer .lg-pager:focus,
.lg-outer .lg-pager:hover {
	-webkit-box-shadow: 0 0 0 8px #fff inset;
	box-shadow: 0 0 0 8px #fff inset;
}

.lg-outer .lg-caret {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px dashed;
	bottom: -10px;
	display: inline-block;
	height: 0;
	left: 50%;
	margin-left: -5px;
	position: absolute;
	vertical-align: middle;
	width: 0;
}

.lg-fullscreen:after {
	content: '\e20c';
}

.lg-fullscreen-on .lg-fullscreen:after {
	content: '\e20d';
}

.lg-outer #lg-dropdown-overlay {
	background-color: rgba(0, 0, 0, 0.25);
	bottom: 0;
	cursor: default;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1081;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
	transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active #lg-dropdown-overlay,
.lg-outer.lg-dropdown-active .lg-dropdown {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
	visibility: visible;
}

.lg-outer .lg-dropdown {
	background-color: #fff;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	font-size: 14px;
	list-style-type: none;
	margin: 0;
	padding: 10px 0;
	position: absolute;
	right: 0;
	text-align: left;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	-ms-transform: translate3d(0, 5px, 0);
	-webkit-transform: translate3d(0, 5px, 0);
	transform: translate3d(0, 5px, 0);
	-webkit-transition: -webkit-transform 0.18s linear 0s,
		visibility 0s linear 0.5s, opacity 0.18s linear 0s;
	-webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s,
		-webkit-transform 0.18s linear 0s;
	transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s,
		-webkit-transform 0.18s linear 0s;
	transition: transform 0.18s linear 0s, visibility 0s linear 0.5s,
		opacity 0.18s linear 0s;
	transition: transform 0.18s linear 0s, visibility 0s linear 0.5s,
		opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
	content: '';
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	border: 8px solid transparent;
	border-bottom-color: #fff;
	right: 16px;
	top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
	margin-bottom: 0;
}

.lg-outer .lg-dropdown > li:hover .lg-icon,
.lg-outer .lg-dropdown > li:hover a {
	color: #333;
}

.lg-outer .lg-dropdown a {
	color: #333;
	display: block;
	white-space: pre;
	padding: 4px 12px;
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
	background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
	display: inline-block;
	line-height: 1;
	margin-top: -3px;
	vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
	color: #333;
	display: inline-block;
	float: none;
	font-size: 20px;
	height: auto;
	line-height: 1;
	margin-right: 8px;
	padding: 0;
	vertical-align: middle;
	width: auto;
}

.lg-outer,
.lg-outer .lg,
.lg-outer .lg-inner {
	width: 100%;
	height: 100%;
}

.lg-outer #lg-share {
	position: relative;
}

.lg-outer #lg-share:after {
	content: '\e80d';
}

.lg-outer #lg-share-facebook .lg-icon {
	color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
	content: '\e901';
}

.lg-outer #lg-share-twitter .lg-icon {
	color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
	content: '\e904';
}

.lg-outer #lg-share-googleplus .lg-icon {
	color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
	content: '\e902';
}

.lg-outer #lg-share-pinterest .lg-icon {
	color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
	content: '\e903';
}

.lg-group:after {
	content: '';
	display: table;
	clear: both;
}

.lg-outer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-outer * {
	box-sizing: border-box;
}

.lg-outer.lg-visible {
	opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-current,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-prev-slide {
	-webkit-transition-duration: inherit !important;
	transition-duration: inherit !important;
	-webkit-transition-timing-function: inherit !important;
	transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide {
	-webkit-transition-duration: 0s !important;
	transition-duration: 0s !important;
	opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;
}

.lg-outer .lg {
	position: relative;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	max-height: 100%;
}

.lg-outer .lg-inner {
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
}

.lg-outer .lg-item {
	background: url(../img/loading.gif) center center no-repeat;
	display: none !important;
}

.lg-outer.lg-css .lg-current,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide,
.lg-outer.lg-css3 .lg-prev-slide {
	display: inline-block !important;
}

.lg-outer .lg-img-wrap,
.lg-outer .lg-item {
	display: inline-block;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
}

.lg-outer .lg-img-wrap:before,
.lg-outer .lg-item:before {
	content: '';
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px;
}

.lg-outer .lg-img-wrap {
	position: absolute;
	padding: 0 5px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.lg-outer .lg-item.lg-complete {
	background-image: none;
}

.lg-outer .lg-item.lg-current {
	z-index: 1060;
}

.lg-outer .lg-image {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	width: auto !important;
	height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
	opacity: 1;
}

.lg-outer .lg-empty-html,
.lg-outer.lg-hide-download #lg-download {
	display: none;
}

.lg-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1040;
	background-color: #000;
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
	opacity: 1;
}

.lg-css3.lg-no-trans .lg-current,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-prev-slide {
	-webkit-transition: none 0s ease 0s !important;
	transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item,
.lg-css3.lg-use-left .lg-item {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
	opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
	opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-current,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-prev-slide {
	-webkit-transition: opacity 0.1s ease 0s;
	transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.1s ease 0s;
	-webkit-transition: opacity 0.1s ease 0s,
		-webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: opacity 0.1s ease 0s,
		-webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s,
		-webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
	opacity: 0;
	position: absolute;
	left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
	left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
	left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
	left: 0;
	opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
	-webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s,
		opacity 0.1s ease 0s;
	transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

@media (min-width: 768px) {
	.container {
		max-width: 760px;
	}
	.col-sm-1 {
		float: left;
		width: 8.33333%;
	}
	.col-sm-2 {
		float: left;
		width: 16.66667%;
	}
	.col-sm-3 {
		float: left;
		width: 25%;
	}
	.col-sm-4 {
		float: left;
		width: 33.33333%;
	}
	.col-sm-5 {
		float: left;
		width: 41.66667%;
	}
	.col-sm-6 {
		float: left;
		width: 50%;
	}
	.col-sm-7 {
		float: left;
		width: 58.33333%;
	}
	.col-sm-8 {
		float: left;
		width: 66.66667%;
	}
	.col-sm-9 {
		float: left;
		width: 75%;
	}
	.col-sm-10 {
		float: left;
		width: 83.33333%;
	}
	.col-sm-11 {
		float: left;
		width: 91.66667%;
	}
	.col-sm-12 {
		float: left;
		width: 100%;
	}
	.pull-sm-0 {
		right: auto;
	}
	.pull-sm-1 {
		right: 8.33333%;
	}
	.pull-sm-2 {
		right: 16.66667%;
	}
	.pull-sm-3 {
		right: 25%;
	}
	.pull-sm-4 {
		right: 33.33333%;
	}
	.pull-sm-5 {
		right: 41.66667%;
	}
	.pull-sm-6 {
		right: 50%;
	}
	.pull-sm-7 {
		right: 58.33333%;
	}
	.pull-sm-8 {
		right: 66.66667%;
	}
	.pull-sm-9 {
		right: 75%;
	}
	.pull-sm-10 {
		right: 83.33333%;
	}
	.pull-sm-11 {
		right: 91.66667%;
	}
	.pull-sm-12 {
		right: 100%;
	}
	.push-sm-0 {
		left: auto;
	}
	.push-sm-1 {
		left: 8.33333%;
	}
	.push-sm-2 {
		left: 16.66667%;
	}
	.push-sm-3 {
		left: 25%;
	}
	.push-sm-4 {
		left: 33.33333%;
	}
	.push-sm-5 {
		left: 41.66667%;
	}
	.push-sm-6 {
		left: 50%;
	}
	.push-sm-7 {
		left: 58.33333%;
	}
	.push-sm-8 {
		left: 66.66667%;
	}
	.push-sm-9 {
		left: 75%;
	}
	.push-sm-10 {
		left: 83.33333%;
	}
	.push-sm-11 {
		left: 91.66667%;
	}
	.push-sm-12 {
		left: 100%;
	}
	.offset-sm-0 {
		margin-left: 0;
	}
	.offset-sm-1 {
		margin-left: 8.33333%;
	}
	.offset-sm-2 {
		margin-left: 16.66667%;
	}
	.offset-sm-3 {
		margin-left: 25%;
	}
	.offset-sm-4 {
		margin-left: 33.33333%;
	}
	.offset-sm-5 {
		margin-left: 41.66667%;
	}
	.offset-sm-6 {
		margin-left: 50%;
	}
	.offset-sm-7 {
		margin-left: 58.33333%;
	}
	.offset-sm-8 {
		margin-left: 66.66667%;
	}
	.offset-sm-9 {
		margin-left: 75%;
	}
	.offset-sm-10 {
		margin-left: 83.33333%;
	}
	.offset-sm-11 {
		margin-left: 91.66667%;
	}
}

@media screen and (min-width: 768px) {
	.menu-list__item.clicked {
		border-color: #cfd8dc #cfd8dc transparent;
		-webkit-border-radius: 2px 2px 0 0;
		border-radius: 2px 2px 0 0;
	}
	.gallery-mobile,
	.menu-button {
		display: none;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 980px;
	}
	.col-md-1 {
		float: left;
		width: 8.33333%;
	}
	.col-md-2 {
		float: left;
		width: 16.66667%;
	}
	.col-md-3 {
		float: left;
		width: 25%;
	}
	.col-md-4 {
		float: left;
		width: 33.33333%;
	}
	.col-md-5 {
		float: left;
		width: 41.66667%;
	}
	.col-md-6 {
		float: left;
		width: 50%;
	}
	.col-md-7 {
		float: left;
		width: 58.33333%;
	}
	.col-md-8 {
		float: left;
		width: 66.66667%;
	}
	.col-md-9 {
		float: left;
		width: 75%;
	}
	.col-md-10 {
		float: left;
		width: 83.33333%;
	}
	.col-md-11 {
		float: left;
		width: 91.66667%;
	}
	.col-md-12 {
		float: left;
		width: 100%;
	}
	.pull-md-0 {
		right: auto;
	}
	.pull-md-1 {
		right: 8.33333%;
	}
	.pull-md-2 {
		right: 16.66667%;
	}
	.pull-md-3 {
		right: 25%;
	}
	.pull-md-4 {
		right: 33.33333%;
	}
	.pull-md-5 {
		right: 41.66667%;
	}
	.pull-md-6 {
		right: 50%;
	}
	.pull-md-7 {
		right: 58.33333%;
	}
	.pull-md-8 {
		right: 66.66667%;
	}
	.pull-md-9 {
		right: 75%;
	}
	.pull-md-10 {
		right: 83.33333%;
	}
	.pull-md-11 {
		right: 91.66667%;
	}
	.pull-md-12 {
		right: 100%;
	}
	.push-md-0 {
		left: auto;
	}
	.push-md-1 {
		left: 8.33333%;
	}
	.push-md-2 {
		left: 16.66667%;
	}
	.push-md-3 {
		left: 25%;
	}
	.push-md-4 {
		left: 33.33333%;
	}
	.push-md-5 {
		left: 41.66667%;
	}
	.push-md-6 {
		left: 50%;
	}
	.push-md-7 {
		left: 58.33333%;
	}
	.push-md-8 {
		left: 66.66667%;
	}
	.push-md-9 {
		left: 75%;
	}
	.push-md-10 {
		left: 83.33333%;
	}
	.push-md-11 {
		left: 91.66667%;
	}
	.push-md-12 {
		left: 100%;
	}
	.offset-md-0 {
		margin-left: 0;
	}
	.offset-md-1 {
		margin-left: 8.33333%;
	}
	.offset-md-2 {
		margin-left: 16.66667%;
	}
	.offset-md-3 {
		margin-left: 25%;
	}
	.offset-md-4 {
		margin-left: 33.33333%;
	}
	.offset-md-5 {
		margin-left: 41.66667%;
	}
	.offset-md-6 {
		margin-left: 50%;
	}
	.offset-md-7 {
		margin-left: 58.33333%;
	}
	.offset-md-8 {
		margin-left: 66.66667%;
	}
	.offset-md-9 {
		margin-left: 75%;
	}
	.offset-md-10 {
		margin-left: 83.33333%;
	}
	.offset-md-11 {
		margin-left: 91.66667%;
	}
}




@media (min-width: 1025px) {
	.lg-outer .lg-thumb-item {
		-webkit-transition: border-color 0.25s ease;
		transition: border-color 0.25s ease;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
	.col-lg-1 {
		float: left;
		width: 8.33333%;
	}
	.col-lg-2 {
		float: left;
		width: 16.66667%;
	}
	.col-lg-3 {
		float: left;
		width: 25%;
	}
	.col-lg-4 {
		float: left;
		width: 33.33333%;
	}
	.col-lg-5 {
		float: left;
		width: 41.66667%;
	}
	.col-lg-6 {
		float: left;
		width: 50%;
	}
	.col-lg-7 {
		float: left;
		width: 58.33333%;
	}
	.col-lg-8 {
		float: left;
		width: 66.66667%;
	}
	.col-lg-9 {
		float: left;
		width: 75%;
	}
	.col-lg-10 {
		float: left;
		width: 83.33333%;
	}
	.col-lg-11 {
		float: left;
		width: 91.66667%;
	}
	.col-lg-12 {
		float: left;
		width: 100%;
	}
	.pull-lg-0 {
		right: auto;
	}
	.pull-lg-1 {
		right: 8.33333%;
	}
	.pull-lg-2 {
		right: 16.66667%;
	}
	.pull-lg-3 {
		right: 25%;
	}
	.pull-lg-4 {
		right: 33.33333%;
	}
	.pull-lg-5 {
		right: 41.66667%;
	}
	.pull-lg-6 {
		right: 50%;
	}
	.pull-lg-7 {
		right: 58.33333%;
	}
	.pull-lg-8 {
		right: 66.66667%;
	}
	.pull-lg-9 {
		right: 75%;
	}
	.pull-lg-10 {
		right: 83.33333%;
	}
	.pull-lg-11 {
		right: 91.66667%;
	}
	.pull-lg-12 {
		right: 100%;
	}
	.push-lg-0 {
		left: auto;
	}
	.push-lg-1 {
		left: 8.33333%;
	}
	.push-lg-2 {
		left: 16.66667%;
	}
	.push-lg-3 {
		left: 25%;
	}
	.push-lg-4 {
		left: 33.33333%;
	}
	.push-lg-5 {
		left: 41.66667%;
	}
	.push-lg-6 {
		left: 50%;
	}
	.push-lg-7 {
		left: 58.33333%;
	}
	.push-lg-8 {
		left: 66.66667%;
	}
	.push-lg-9 {
		left: 75%;
	}
	.push-lg-10 {
		left: 83.33333%;
	}
	.push-lg-11 {
		left: 91.66667%;
	}
	.push-lg-12 {
		left: 100%;
	}
	.offset-lg-0 {
		margin-left: 0;
	}
	.offset-lg-1 {
		margin-left: 8.33333%;
	}
	.offset-lg-2 {
		margin-left: 16.66667%;
	}
	.offset-lg-3 {
		margin-left: 25%;
	}
	.offset-lg-4 {
		margin-left: 33.33333%;
	}
	.offset-lg-5 {
		margin-left: 41.66667%;
	}
	.offset-lg-6 {
		margin-left: 50%;
	}
	.offset-lg-7 {
		margin-left: 58.33333%;
	}
	.offset-lg-8 {
		margin-left: 66.66667%;
	}
	.offset-lg-9 {
		margin-left: 75%;
	}
	.offset-lg-10 {
		margin-left: 83.33333%;
	}
	.offset-lg-11 {
		margin-left: 91.66667%;
	}
}

@media screen and (min-width: 1200px) {
	.menu-list.container {
		max-width: 1170px;
	}
}

@media (min-width: 1440) {
	.col-xl-1 {
		float: left;
		width: 8.33333%;
	}
	.col-xl-2 {
		float: left;
		width: 16.66667%;
	}
	.col-xl-3 {
		float: left;
		width: 25%;
	}
	.col-xl-4 {
		float: left;
		width: 33.33333%;
	}
	.col-xl-5 {
		float: left;
		width: 41.66667%;
	}
	.col-xl-6 {
		float: left;
		width: 50%;
	}
	.col-xl-7 {
		float: left;
		width: 58.33333%;
	}
	.col-xl-8 {
		float: left;
		width: 66.66667%;
	}
	.col-xl-9 {
		float: left;
		width: 75%;
	}
	.col-xl-10 {
		float: left;
		width: 83.33333%;
	}
	.col-xl-11 {
		float: left;
		width: 91.66667%;
	}
	.col-xl-12 {
		float: left;
		width: 100%;
	}
	.pull-xl-0 {
		right: auto;
	}
	.pull-xl-1 {
		right: 8.33333%;
	}
	.pull-xl-2 {
		right: 16.66667%;
	}
	.pull-xl-3 {
		right: 25%;
	}
	.pull-xl-4 {
		right: 33.33333%;
	}
	.pull-xl-5 {
		right: 41.66667%;
	}
	.pull-xl-6 {
		right: 50%;
	}
	.pull-xl-7 {
		right: 58.33333%;
	}
	.pull-xl-8 {
		right: 66.66667%;
	}
	.pull-xl-9 {
		right: 75%;
	}
	.pull-xl-10 {
		right: 83.33333%;
	}
	.pull-xl-11 {
		right: 91.66667%;
	}
	.pull-xl-12 {
		right: 100%;
	}
	.push-xl-0 {
		left: auto;
	}
	.push-xl-1 {
		left: 8.33333%;
	}
	.push-xl-2 {
		left: 16.66667%;
	}
	.push-xl-3 {
		left: 25%;
	}
	.push-xl-4 {
		left: 33.33333%;
	}
	.push-xl-5 {
		left: 41.66667%;
	}
	.push-xl-6 {
		left: 50%;
	}
	.push-xl-7 {
		left: 58.33333%;
	}
	.push-xl-8 {
		left: 66.66667%;
	}
	.push-xl-9 {
		left: 75%;
	}
	.push-xl-10 {
		left: 83.33333%;
	}
	.push-xl-11 {
		left: 91.66667%;
	}
	.push-xl-12 {
		left: 100%;
	}
	.offset-xl-0 {
		margin-left: 0;
	}
	.offset-xl-1 {
		margin-left: 8.33333%;
	}
	.offset-xl-2 {
		margin-left: 16.66667%;
	}
	.offset-xl-3 {
		margin-left: 25%;
	}
	.offset-xl-4 {
		margin-left: 33.33333%;
	}
	.offset-xl-5 {
		margin-left: 41.66667%;
	}
	.offset-xl-6 {
		margin-left: 50%;
	}
	.offset-xl-7 {
		margin-left: 58.33333%;
	}
	.offset-xl-8 {
		margin-left: 66.66667%;
	}
	.offset-xl-9 {
		margin-left: 75%;
	}
	.offset-xl-10 {
		margin-left: 83.33333%;
	}
	.offset-xl-11 {
		margin-left: 91.66667%;
	}
}

@media screen and (max-width: 1199px) {
	.menu-list__item_btn,
	.menu__label {
		text-transform: capitalize;
	}
	.login > span {
		display: none;
	}

	.menu-list__item_btn .icon {
		margin: 0;
		right: 0;
	}
	.footer-links li {
		padding-left: 35px;
	}
	.info-list .profile-panel__button {
		right: auto;
		left: 160px;
	}
	.checkbox-col_6 {
		width: 25%;
	}
}


@media screen and (max-width: 992px) {
	.menu-list__item:nth-last-child(2) {
		margin-left: 0;
	}
}

@media screen and (max-width: 991px) {
	.menu-list__link,
	.menu__label {
		font-size: 12px;
	}

	.menu-list__item_btn .icon {
		margin: 0 !important;
	}
	.footer-links {
		padding-top: 3px;
	}
	.footer-links li {
		width: 230px;
	}
	.frame {
		height: 380px;
	}
	.checkbox-col_6,
	.checkbox-col_7 {
		width: 33.33333%;
	}
	.wrap-buttons {
		width: 100%;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

@media screen and (max-width: 767px) {
	.menu-list__item_btn,
	.menu__label {
		text-transform: none;
	}
	.menu,
	.submenu {
		top: 0;
		width: 100%;
	}
	.header-top .container {
		padding-right: 70px;
	}
	.menu {
		position: fixed;
		z-index: 9991;
		overflow-y: auto;
		max-height: 100%;
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%);
		-webkit-transition: -webkit-transform 0.5s ease;
		transition: -webkit-transform 0.5s ease;
		transition: transform 0.5s ease;
		transition: transform 0.5s ease, -webkit-transform 0.5s ease;
	}
	.menu.open {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		-webkit-transition: -webkit-transform 0.5s ease;
		transition: -webkit-transform 0.5s ease;
		transition: transform 0.5s ease;
		transition: transform 0.5s ease, -webkit-transform 0.5s ease;
	}
	.menu-list__item {
		background: 0;
		padding: 0;
		display: block;
		width: 100%;
		margin: 0;
	}

	.menu-list__item:not(:last-child) {
		border-bottom: 1px solid #eceff1;
	}
	.menu-list__item.parent {
		padding-top: 0;
	}
	.menu-list__link,
	.menu__label {
		font-size: 16px;
		padding-left: 0;
		padding-top: 15px;
		padding-bottom: 15px;
		gap: 15px;
	}
	.menu__label {
		width: 100%;
	}
	.menu__label:before {
		margin-right: 9px;
	}
	.submenu {
		position: relative;
		left: 0;
		padding: 0.5rem;
		border: 0;
	}
	.submenu.open {
		gap: 10px;
	}

	.submenu-col-2-nat {
		margin: 0.5rem !important;
	}

	.submenu-list:not(:last-child) {
		margin-bottom: 0;
	}
	.submenu-list__item > a {
		display: inline-block;
		width: 100%;
		font-size: 15px;
		line-height: 22px;
	}
	.submenu-col-2 {
		margin: 0;
	}
	.footer-links li {
		width: 220px;
	}
	.profile-info .check {
		bottom: 10px;
	}
	.profile-info-item .info {
		height: auto;
	}
	.data-list {
		margin-top: 10px;
	}

	.gallery {
		display: none;
	}

	.menu-list__item.parent .submenu {
		top: 0;
	}
}

@media screen and (max-width: 600px) {
	.wp-video,
	.wp-video .wp-video-shortcode {
		width: 100% !important;
	}
}

@media screen and (max-width: 599px) {
	.local p,
	.login {
		font-size: 0;
	}
	.profiles {
		width: 320px;
		margin: 0 auto;
	}
	.profiles .col-xs-6 {
		width: 100%;
	}
	.footer {
		height: auto;
	}
	.footer-links {
		width: 80%;
		float: right;
	}
	.footer-links li {
		width: 100%;
		margin-right: 0;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.checkbox-col_6,
	.checkbox-col_7,
	.service-list {
		width: 50%;
	}
	.footer-links li:not(:last-child) {
		margin-right: 0;
	}
	.info_data_service {
		padding-bottom: 20px;
	}
	.data-list-item > a,
	.data-list-item > span,
	.price-list-item span {
		font-size: 14px;
	}
	.wrap-buttons .btn {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 480px) {
	.service-list {
		width: 100%;
	}
}

@media screen and (max-width: 479px) {
	.menu-button {
		right: 10px;
	}

	.header-top .container {
		padding-right: 60px;
	}
	.checkbox-col_6,
	.checkbox-col_7,
	.checkbox-list__title:after {
		width: 100%;
	}
	.profile-info .check {
		right: 7px;
		bottom: 25px;
	}
	.profile-info .check-label,
	.price-list__title .icon {
		display: none;
	}
	.map-wrap {
		height: 362px;
	}
	.checkbox-col {
		padding-bottom: 0;
		padding-top: 0;
	}
	.checkbox-list {
		margin-bottom: 0;
	}
	.nav-item > a {
		font-size: 14px;
		padding: 5px 10px;
	}
}

@media screen and (max-width: 318px) {
	html {
		width: 320px;
		overflow-x: auto;
	}
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
	.i-hide {
		display: none;
	}
}

@media screen and (max-width: 991px) and (min-width: 768px) {
	.profile-panel-item_name:after {
		right: 48px;
	}
}

.article-page__text.container div {
	text-align: center;
}

@media (max-width: 992px) {
	.profiles__image {
		width: 190px;
		height: 235px;
	}
}
@media (max-width: 640px) {
	.profiles__image {
		width: 55%;
		height: auto;
		display: flex;
	}
}
