

/* Start:/local/templates/ritual/css/add.css?17241593912634*/



.chatblock2 {
    position: fixed;
    bottom: 45px;
    left: 45px;
    width: 74px;
    height: 236px;
    z-index: 99999;
    transition: all ease .3s;
    font-family: "Open Sans", sans-serif;
}
.chatblock2.close {
    height: 74px;
}


.chatblock2.active {
    background-color: rgba(255, 255, 255, 0.5);
}



.chatblock {
    position: fixed;
    bottom: 45px;
    width: 230px;
    height: 236px;
    left: -250px;
    z-index: 999999;
    transition: all ease .3s;
    display: flex;
    font-family: "Open Sans", sans-serif;
}

.chatblock__close {
    content: '';
    display: block;
    right: -10px;
    top: -10px;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 25px;
    background-repeat: no-repeat;
    background-image: url(/local/templates/ritual/css/../images/close_chat2desk.png);
    background-position: center;
    background-size: 70%;
    cursor: pointer;
}

.chatblock label {
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
}

.chatblock label a {
    color: #000;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
}

.chatblock form {
    background-color: #fff;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    transition: all ease .3s;
    box-shadow: 0px 5px 25px rgb(0 0 0 / 15%);
    font-family: "Open Sans", sans-serif;
}
.chatblock.active {
    left: 130px;
}
.chatblock.active form {
    display: flex;
}
.chatblock.active form input[type="text"] {
    width: calc(100% - 10px);
    height: 40px;
    padding-left: 10px;
    box-shadow: 0 0 2px;
    border-radius: 5px;
    border: none;
    font-family: "Open Sans", sans-serif;
}
.chatblock form > *:not(:last-child) {
    margin-bottom: 8px;
    font-family: "Open Sans", sans-serif;
}



.chatblock form button {
    width: 100%;    
    border: none;
    outline: none;
    padding: 10px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;  
    background-color: #41B4E6;
    color: #fff;
    font-family: "Open Sans", sans-serif;
}



.chatblock.active form input[type="text"].error {
    border:1px solid red;
}
.chatblock.active form input[type="checkbox"].error {
    border:1px solid red;
    box-shadow: 0 0 3px red;
}



@media screen and (max-width: 1024px) {
    .chatblock {
        bottom: 0;
    }
    .chatblock.active {
        left: 75px;
        height: 230px;
    }
    .chatblock2 {
        bottom: 0;
        left: 0;
        width: 64px;
        height: 215px;
    }
}

/* End */


/* Start:/local/templates/ritual/css/normalize.css?16908104536052*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* End */


/* Start:/local/templates/ritual/css/page.css?16908104532785*/
.page {
	
}

.page__mobile-menu{
	display:none;
}

.page__desktop{
	
}

.page__header{
	background-color:#fff;
	background-image:url('/include/image/header.jpg');
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
	height:186px;
	position:fixed;
	top:0;
	width:100%;
	z-index:25;
}

.page__mobile-search {
	position:fixed;
	width:100%;
	z-index:30;
	bottom: -80px;
	background-color:#ad5a55;
	transition: 0.5s;
}
.page__mobile-menu {
	display:none;
	position:fixed;
	width:300px;
	padding:0 24px;
	box-sizing:border-box;
	z-index:27;
	bottom:0;
	left:0;
	height:100%;
	background-color:#eeebe4;
	overflow-y:scroll;
}
.page__header-info {
	height:136px;
}

.page__header-menu {
	background-color: rgba(87, 35, 31, .5);
}

.page__content{
	margin-top:186px;
}

.page__footer{
	width: 100%;
	background: #eeebe4;
		background-size: auto auto;
	padding-top: 50px;
	background-size: 100% 100%;
	border-top: 1px solid #d8d6d1;
	position: relative;
	z-index: 10;	
}

.page__header-mobile {
	display:none;
	position:fixed;
	align-items: center;
	width:100%;
	background:#ad5a55;
	box-shadow: 0 1px 4px rgba(129, 67, 64, 0.72);
	padding:8px;
	box-sizing:border-box;
	height:50px;
	z-index:25;
	top:0;
	
}

.page__header-mobile-bars{
	width:50px;
	text-align:center;
	color:#fff;
}
.page__header-mobile-bars .icon{
	font-size:28px;
	padding:8px;
}

.page__header-mobile-title {
	flex-grow:1;
	text-align:center;
}
.page__header-mobile-title-img {
	height:48px;
}

.page__header-mobile-gerb {
	margin-left:8px;
}

.page__header-mobile-gerb-img {
	height:32px;
}
@media screen and (min-width:1382px) {

	.fancybox-active .page__header {
		margin-left: -8.5px;
	}
}


@media screen and (min-width:1024px) and (max-width: 1382px) {

	.fancybox-active .page__header {
		margin-left: -8.5px;
	}
}

@media screen and (max-width: 1024px) {
	.page__header {
		position:static;
		height:128px;
	}
	.page__header_sub {
		height:0;
	}
	.page__content{ 
		margin-top:0;
	}
	.page__header {
		position:static;
	}
	.page__mobile-search_active {
		
		bottom: 0;
	}
	.page__mobile-menu_active{
		display:block;
	}

	.page__header-menu{
		display:none;
	}
	.page__header-mobile {
		display:flex;
		height:50px;
	}
	
	.page__header-info{
		margin-top:50px;
	}
	.page__footer{
		padding-top:0;
	}
	.page__desktop_active{
		position:fixed;
		width:100%;
		height:100%;
		top:0;
		left:0;
	}
	.page__desktop_active:after{
		background-color: rgba(0,0,0,.24);
		content: "";
		width: 100vw;
		height: 100%;
		position: absolute;
		left: 0;
		top:0;
	}	
}


@media screen and (max-width: 768px) {
	
}
@media screen and (max-width: 416px) {
	.page__header-mobile {
		height:70px;
	}
	.page__header-info{
		margin-top:70px;
	}	

	.page__header-mobile-gerb-img {
		height:54px;
	}	
}
/* End */


/* Start:/local/templates/ritual/css/header.css?16908104531348*/
.header {
	max-width:1350px;
	margin:0 auto;
	display:flex;
	padding: 24px 16px 0 16px;
}

.header__logo {
	display:flex;
}

.header-l-logo{
	
}

.header-l-logo-desc {
	padding-left:8px;
	font-size:16px;
}

.header-logo-desc {
	text-transform:uppercase;
}

.header__desc {
	flex-grow: 1;
	text-align:center;
	color:#ad5a55;
	font-family:'Open Sans','Arial','Sans-Serif';
}

.header__l-title{
	
}

.header__title{
	font-weight:700;
	font-size:22px;
	text-transform:uppercase;
}

.header__phone-block{
	margin-top:16px;
}

.header__phone{
	color:#ad5a55;
	text-decoration:none;
	font-weight:700;
	font-size:24px;
}

.header__l-work-time{
	margin-top:8px;
}

.header__work-time{
	font-size:18px;
	text-transform:uppercase;
	font-weight: 600;
}

.header__l-search{
	width:190px;
	margin-top:8px;
}

.header__search {

}



@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.header__title{
		font-size:18px;
	}

	.header__phone {
		font-size:20px;
	}
}


@media screen and (max-width: 1024px) {
	.header__desc{
		display:none;
	}
	.header__logo{
		flex-grow:1;
	}
	.header__l-search {
		display:none;
	}
	.header-l-logo-desc{
		margin-top:0;
	}
	.header-logo-desc{
		font-size:13px;
	}
	.header__l-help{
		max-width:152px;
		padding-left:16px;
	}
}


@media screen and (max-width: 768px) {

}



/* End */


/* Start:/local/templates/ritual/css/footer.css?16908104533410*/
.footer {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 16px 24px;
	font-family: 'Open Sans', 'Arial', 'Sans-Serif';
}

.footer__cols {
	display: flex;
}

.footer__col {
	flex-grow: 1;
}

.footer__col-title {
	font-size: 22px;
	line-height: 28px;
	color: #995a55;
	margin-bottom: 30px;
	position: relative;
}

.footer__col-title:after {
	position: absolute;
	width: 55px;
	height: 2px;
	background: #995a55;
	bottom: -15px;
	left: 0;
	content: '';
}

.footer__items {}

.footer__item {}

.footer__link {
	font-size: 14px;
	line-height: 22px;
	font-family: 'Open Sans', 'Arial', 'Sans-Serif';
	color: #6b6256;
	text-decoration: none;
	transition: all .3s ease;
}

.footer__link:hover {
	color: #995a56;
}


.footer__bottom {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 2px solid #995a55;
	margin-top: 45px;
	padding: 25px 0 15px 0;
}

.footer__copyright {
	font-size: 12px;
	line-height: 17px;
	color: #6b6256;
	font-family: 'Open Sans', 'Arial', 'Sans-Serif';
	padding-right: 32px;
}

.footer__counters {}

.footer__l-logo {
	flex-grow: 1;
	text-align: center;
}

.footer__logo {}

.footer__socials {
	display: flex;
	min-width: 185px;
	justify-content: right;
}

.footer__social {
	width: 40px;
	height: 40px;
	display: block;
	margin: 0 8px;
	background-size: cover;
}

.footer__social_youtube {
	background-image: url('/local/templates/ritual/css/assets/footer/icon_yt_128.png');
}

.footer__social_facebook {
	background-image: url('/local/templates/ritual/css/assets/footer/icon_fb_128png');
}

.footer__social_instagram {
	background-image: url('/local/templates/ritual/css/assets/footer/icon_instagram.png');
}

.footer__social_od {
	background-image: url('/local/templates/ritual/css/assets/footer/icon_od_128.png');
}

.footer__social_dz {
	background-image: url('/local/templates/ritual/css/assets/footer/icon_dz_128.png');
}


@media screen and (min-width:1382px) {

	.footer__items {
		display: block !important;
	}
}


@media screen and (min-width:1024px) and (max-width: 1382px) {

	.footer__items {
		display: block !important;
	}
}


@media screen and (max-width: 1024px) {
	.footer {
		padding: 0;
		display: flex;
		flex-direction: column;
		margin-bottom: 56px;
	}

	.footer__cols {
		flex-direction: column;
		order: 2;
	}

	.footer__bottom {
		order: 1;
		background-color: #fff;
	}

	.footer__copyright {
		display: none;
	}

	.footer__l-logo {
		text-align: left;
		padding-right: 16px;
	}

	.footer__items {
		display: none;
		background: #fff;
		padding: 16px 0;
	}

	.footer__col {
		border-top: 1px solid #dfdddb;
	}

	.footer__col:first-child {
		border-top: 0;
	}

	.footer__col-title {
		position: relative;
	}

	.footer__col-title:after {
		background-image: url('/local/templates/ritual/css/assets/footer/title-switch.png');
		position: absolute;
		right: 4%;
		top: 40%;
		width: 16px;
		height: 16px;
		right: 6%;
		left: auto;
		background-color: transparent;
	}

	.footer__col-title_active:after {
		background-position: 0 16px;
	}

	.footer__col-title {
		margin-bottom: 0;
		height: 45px;
		font-size: 12px;
		line-height: 45px;
		color: #5f574b;
		font-weight: bold;
		text-transform: uppercase;
		background: #eeebe4;
		cursor: pointer;
		padding: 0 6%;
		position: relative;
	}

	.footer__item {
		padding-left: 8%;
	}

	.footer__link {
		line-height: 32px;
		font-size: 12px;
	}

}


@media screen and (max-width: 768px) {
	.footer__counter {
		display: none;
	}

	.footer__socials {
		min-width: 155px;
	}

	.footer__social {
		width: 35px;
		height: 35px;
		margin: 0 6px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/content.css?16908104532998*/
.content{
	background-color:#f3f3f3;
	padding-bottom:16px;
}

.content__box{
	background: #fefdfd;
	height: 100%;
	max-width: 1350px;
	width: 100%;
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	padding: 0 8% 64px;
	position: relative;
	overflow-x: hidden;
	margin-bottom: 5px;
	padding-bottom: 100px;
	font-family: 'Open Sans', Arial, sans-serif;
	box-sizing: border-box;
}

.content__box_type_wide{
	padding: 0 4% 64px;
}
.content__breadcrumbs{
	margin:32px 0 16px 0;
}
.content__center{
	text-align:center;
}

.content__text h1{
	font-weight: 700;
	color: #AD5A55;
	text-align: center;
	width: 100%;
	position: relative;
	font-size: 36px;
	text-transform: uppercase;
	margin: 16px 0 32px 0;
	font-family:'Open Sans','Arial','Sans-Serif';
}

.content__text h2{
	color: #ad5a55;
	font-size: 22px;
	font-weight: 700;
	text-transform: none;
	font-family:'Open Sans','Arial','Sans-Serif';
}

.content__text h3{
	color: #ad5a55;
	font-size: 20px;
	font-weight: 400;
	text-transform: none;
	text-align: left;
	font-family:'Open Sans','Arial','Sans-Serif';
}

.content__text p{
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	margin: 20px 0;
	font-weight: 400;
	text-align:justify;
	font-family:'Open Sans','Arial','Sans-Serif';
}

.content__text ul{
	margin:0;
	padding:0 0 0 16px;
	overflow:auto;
}
.content__text p + ul{
	margin-top: -16px;
}

.content__text li{
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	margin:4px 0 4px 16px;
	font-weight: 400;
	font-family:'Open Sans','Arial','Sans-Serif';
}

.content__text ul li:last-child{
	margin-bottom:0;
}

.content__text b {
	font-weight:400;
}

.content__text table,
.content__text thead,
.content__text tr {
    width: 100%;
    border-spacing: 8px;
    max-width: 1218px;
}

.content__text th {
    padding: 12px ;
    background-color: #EEDCDB;
    color: #282828;
    font-size: 16px;
}

.content__text thead td {
    padding: 10px;
    background-color: #EEDCDB;
    color: #282828;
}

.content__text td {
    padding: 10px;
    background-color: #f5f5f5;
    text-align: center;
    vertical-align: middle;
}



@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

	.content__text h1{
		font-size: 32px;
		margin-bottom: 24px;
	}

	.content__text h2{
		font-size: 20px;
	}

	.content__text h3{
		font-size: 18px;
	}

	.content__text p{
		font-size: 16px;
	}
	.content__text li{
		font-size: 16px;
	}

}


@media screen and (max-width: 768px) {
	
	.content{
		padding:0;
	}
	.content__text h1{
		font-size: 24px;
		margin-bottom: 24px;
	}

	.content__text h2{
		font-size: 18px;
	}

	.content__text h3{
		font-size: 16px;
	}

	.content__text p{
		font-size: 14px;
	}	
	.content__text li{
		font-size: 14px;
	}	
}

@media screen and (max-width: 416px) {
	.content__text h1{
		font-size: 17px;
	}

	.content__text h2{
		font-size: 17px;
		font-weight:400;
	}

	.content__text h3{
		font-size: 16px;
	}
	.content__text p{
	}
}
/* End */


/* Start:/local/templates/ritual/css/logo.css?1690810453552*/
.logo {
	display:block;
	background-color:transparent;
	/*background-image:url('/include/image/gerb.png');*/
	background-image:url('/include/image/tickemblem.svg');
	background-size:contain;
	background-repeat:no-repeat;
	height:92px;
	width:92px;
	background-position:right top;
}

.logo:hover {
	opacity:.84;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.logo {
		width:48px;
		height:64px;
	}
}


@media screen and (max-width: 768px) {

}
/* End */


/* Start:/local/templates/ritual/css/btn.css?1690810453556*/
.btn {
	font-size: 16px;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	background: #ad5a55;
	color: #ffffff;
	transition: .3s;
	border-radius: 8px;
	cursor: pointer;
	padding:0 32px;
	font-family: 'Open Sans','Arial','Sans-Serif';
	text-transform:uppercase;
	text-decoration:none;
	box-sizing:border-box;
}

.btn:hover {
	background: #814340;	
}

.btn_center{
	margin: auto;
}

.btn_size_160{
	width:160px;
	max-width:100%;
	font-size:14px;
}
.btn_size_320{
	width:320px;
	max-width:100%;
	font-size:14px;
}
/* End */


/* Start:/local/templates/ritual/css/header-region-selector.css?1690810453999*/
.header-region-selector {
	color:#fff;
	background:rgba(65,65,65,0.46);
	cursor:pointer;
	font-size:12px;
	display:flex;
	padding:6px 12px;
	align-items:center;
	justify-content:center;
	border-radius:4px;
	font-family:'Open Sans','Arial','Sans-Serif';
	margin-top:8px;
	transition: background 0.2s;
	align-self:baseline;
}

.header-region-selector:hover {
	background:rgba(65,65,65,0.6);
}

.header-region-selector_mobile{
	background:transparent;
	color:#999;
	padding:6px 0;
	justify-content:flex-start;
	
}

.header-region-selector_mobile:hover {
	background:transparent;
}

.header-region-selector__icon{
	font-size:16px;
	line-height:12px;
}

.header-region-selector__name {
	padding-left:4px;
}
@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.header-region-selector {
		display:none;
	}
	.header-region-selector_mobile {
		display:flex;
	}
}


@media screen and (max-width: 768px) {
	
}
/* End */


/* Start:/local/templates/ritual/css/h2.css?1690810453420*/
.h2{
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	margin:16px 0;
}

.h2_color_white{
	color:#fff;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.h2{
		font-size: 26px;
	}
}


@media screen and (max-width: 1024px) {
	.h2{
		font-size: 20px;
	}
}


@media screen and (max-width: 768px) {
	.h2{
		font-size: 14px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/form.css?16908104531912*/
.form {
	width:100%;
	position:relative;
}

.form_online {
	max-width:512px;
	margin:0 auto;
}

.form_loading {
	
}
.form_loading:after {
	content:"";
	display:block;
	position:absolute;
	width:100%;
	height:100%;
	background-color:rgba(255,255,255,0.5);
	top:0;
	left:0;
	background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23ad5a55" d="M73 50c0-12.7-10.3-23-23-23S27 37.3 27 50m3.9 0c0-10.5 8.5-19.1 19.1-19.1S69.1 39.5 69.1 50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite"/></path></svg>');
	background-repeat:no-repeat;
	background-position:center center;
	background-size:20%;
}

.form__title {
	color: #000;
	font-size: 24px;
	text-transform: none;
	font-weight: 700;	
	text-align:center;
}
.form__desc p{
	text-align:center;
}

.form__content {
	width:100%;
	padding:0px 24px;
	box-sizing:border-box;
}

.form__footer{
	text-align:center;
}

.form__footer_center{
	display:flex;
	align-items:center;
	justify-content:center;
}
.form__footer_center .btn-rui{
	margin:16px;
}

.form__result{
	font-family:'Open Sans','Arial','Sans-Serif';
	display: flex;
	margin: auto;
	height: 100%;
	align-items: center;
	padding:0 16px;
	box-sizing:border-box;
}
.form__message{
	font-family:'Open Sans','Arial','Sans-Serif';
	margin: auto;
	height: 100%;
	align-items: center;
	padding:0 16px;
	box-sizing:border-box;
	max-width:512px;
}
.form__step{
	display:none;
}
.form__step_active{
	display:block;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.form__title{
		line-height:24px;
	}
	.form__desc{
		margin-top:8px;
	}
	.form__desc p{
		line-height:1.2;
	}
	.form__content {	
		padding:0 8;
	}
}

/* End */


/* Start:/local/templates/ritual/css/field.css?1690810453277*/
.field {
	margin:16px 0;
}

.field__label {
	font-size:12px;
	color:#ad5a55;
}

.field__value {
	margin-top:4px;
}

.field__value_flex{
	display:flex;
}

.field__error{
	color:#eb5a46;
	margin-top: 4px;
	font-size: 12px;
	display:none;
}
.field__error_active{
	display:block;
}
/* End */


/* Start:/local/templates/ritual/css/input.css?1690810453356*/
.input {
	box-sizing: border-box;
	outline: none;
	border: 1px solid #d7d7d7;
	padding: 0 16px;
	width: 100%;
	height: 48px;
	margin: auto;
	font-size: 14px;
	font-family:'Arial','Sans-Serif'
}

.input_error {
	border-color:#eb5a46;
}

.input_textarea {
	resize: vertical;
	padding: 10px 16px;
	height: 142px;
}

.input_textarea_agent-list{
	height:96px;
}
/* End */


/* Start:/local/templates/ritual/css/checkbox.css?16908104531284*/
.checkbox {
	
}

.checkbox__input {
	display:none;
}

.checkbox__label {
		cursor:pointer;
}

.checkbox__label:before {
	position: relative;
	top: 5px;
	left: 0;
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	background: #eceff1;
	cursor: pointer;
	margin-right:8px;
}

.checkbox__input:checked + .checkbox__label:before {
	max-width: 256px;
	max-height: 256px;
	background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDI2IDI2IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyNiAyNiIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CiAgPHBhdGggZD0ibS4zLDE0Yy0wLjItMC4yLTAuMy0wLjUtMC4zLTAuN3MwLjEtMC41IDAuMy0wLjdsMS40LTEuNGMwLjQtMC40IDEtMC40IDEuNCwwbC4xLC4xIDUuNSw1LjljMC4yLDAuMiAwLjUsMC4yIDAuNywwbDEzLjQtMTMuOWgwLjF2LTguODgxNzhlLTE2YzAuNC0wLjQgMS0wLjQgMS40LDBsMS40LDEuNGMwLjQsMC40IDAuNCwxIDAsMS40bDAsMC0xNiwxNi42Yy0wLjIsMC4yLTAuNCwwLjMtMC43LDAuMy0wLjMsMC0wLjUtMC4xLTAuNy0wLjNsLTcuOC04LjQtLjItLjN6IiBmaWxsPSIjYWQ1YTU1Ii8+Cjwvc3ZnPgo=);
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
}

.checkbox__label_calc {
	font-size: 12px;
	color: #929292;
}

/* End */


/* Start:/local/templates/ritual/css/file-upload.css?169081045387*/
.file-upload {
	 
}

.file-upload__input{
    display: none;
}
.file-upload__label {
}

/* End */


/* Start:/local/templates/ritual/css/icon.css?1690810453139*/
.icon {
	position: relative;
	display: inline-block;
	fill: currentColor;
	width: 1em;
	height: 1em;
	letter-spacing: 0;
	line-height: 1;
}
/* End */


/* Start:/local/templates/ritual/css/table-scroll.css?169081045348*/
.table-scroll{
	overflow:auto;
	margin:0 -8px;
}
/* End */


/* Start:/local/templates/ritual/css/header-search.css?16908104531150*/
.header-search {
	
}

.header-search__form{
	position:relative;
}

.header-search__input {
	font-size: 16px;
	font-weight: 300;
	width: 100%;
	height:auto;
	font-family:'Open Sans','Arial','Sans-Serif';
	padding: 4px 37px 5px 15px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 5px;
	background: rgba(87, 35, 31, .5);
	color: #fff;
	transition: .3s ease;
	outline: none;
	border:0;
}
.header-search__input::-webkit-input-placeholder {
    color:#fff;
}

.header-search__input::-moz-placeholder {
    color:#fff;
}

.header-search__input::-ms-placeholder {
    color:#fff;
}

.header-search__input::placeholder {
    color:#fff;
}

.header-search__input:focus {
	box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.header-search__submit {
	position: absolute;
	top: 0;
	right: 0;
	width: 37px;
	height: 100%;
	cursor: pointer;
	background-color:transparent;
	background-image: url(/local/templates/ritual/css/assets/header-search/search.svg);
		background-repeat: repeat;
		background-position-x: 0%;
		background-position-y: 0%;
		background-size: auto auto;
	background-size: 53%;
	background-repeat: no-repeat;
	background-position: center;
	
	border:0;
}
/* End */


/* Start:/local/templates/ritual/css/header-l-logo-desc.css?169081045361*/
.header-l-logo-desc{
	display:flex;
	flex-direction:column;
}
/* End */


/* Start:/local/templates/ritual/css/top-menu.css?16908104531670*/
.top-menu {
	height:50px;
	max-width:1382px;
	margin:0 auto;
	display:flex;
	position:relative;	
}

.top-menu__item {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor:pointer;
	width:13%;
	box-sizing:border-box;
}


.top-menu__item:hover {
	background-color:rgba(173, 90, 85, .6);
}
.top-menu__item_active {
	background-color:rgba(173, 90, 85, .6);
}

.top-menu__sub {
	position:absolute;
	top:50px;
	left:0;
	max-height:0px;
	overflow: hidden;
	transition: all 0.2s linear 0s;	
	opacity:0;
	box-shadow:3px 0 16px rgba(0, 0, 0, .23)
}
.top-menu__sub_right{
	right:0;
	left: auto;
}

.top-menu__item:hover .top-menu__sub {
	transition-delay: 0.1s;
	max-height:768px;
	opacity:1;
}

.top-menu__link{
	color:#fff;
	font-family:'Open Sans','Arial','Sans-Serif';
	text-decoration:none;
	text-transform:uppercase;
	font-size:13px;
	text-align:center;
	width:100%;
	box-sizing:border-box;
	padding:0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	height:50px;
	position:relative;
}

.top-menu__link:after{
	content:"";
	display:block;
	background-image:url('/local/templates/ritual/css/assets/top-menu/border-right.png');
	background-repeat:no-repeat;
	background-position:center center;
	position:absolute;
	right:-1px;
	top:0;
	width:3px;
	height:100%;
}

.top-menu__item:last-child .top-menu__link:after{
	display: none;
}


@media screen and (min-width:1382px) {
	.top-menu__item:nth-child(1),
	.top-menu__item:nth-child(2),
	.top-menu__item:nth-child(3){
		position:relative;
	}
}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	
}
/* End */


/* Start:/local/templates/ritual/css/submenu.css?16914052606009*/
.submenu {
	background:rgba(255,255,255,.92);
	cursor:default;
	padding:16px 0 16px 0;
	font-family:'Open Sans','Arial','Sans-Serif';
}

.submenu__row {
	padding:8px 0;
	display:flex;
}
.submenu__row_delim {
	padding:8px 0;
	border-top:1px solid #eee;
}
.submenu__row_center{
	text-align:center;
}
.submenu__row_slim{
	margin-top:-24px;
}

.submenu__col {
	padding:0 0 0 16px;
	box-sizing:border-box;
	width:256px;
}

.submenu__col_pol{
	width:280px;
}

.submenu__col:first-child {
	padding-left:32px;
}
.submenu__col:last-child {
	padding-right:32px;
}
.submenu__col-block {

}
.submenu__col_2 {
	width:512px;
}

.submenu__col_delim{
	border-left:1px solid #eee;
}

.submenu__item {
	padding-left:48px;
	padding-bottom:8px;
}

.submenu__item_header {
	position: relative;
	padding:8px 0 8px 48px;
	color:#ad5a55;
}
.submenu__row_heading .submenu__item_header{
	min-height:38px;
}
.submenu__item_slim{
	
}

.submenu__item_header:before {
    display: inline-block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 50px;
    height: 50px;
    background: url('/local/templates/ritual/css/assets/submenu/menu-icons.png') -9999px -9999px no-repeat;
    content: "";
}


.submenu__item_about:before {
    background-position: -423px -335px;
}

.submenu__item_reviews:before {
    background-position: -44px -82px;
}

.submenu__item_smi:before {
    background-position: -42px -148px;
}

.submenu__item_prod:before {
    background-position: -40px -205px;
}

.submenu__item_top-org:before {
    background-position: -40px -22px;
}

.submenu__item_news:before {
    background-position: -142px -26px;
}

.submenu__item_vac:before {
    background-position: -140px -86px;
}

.submenu__item_collab:before {
    background-position: -140px -150px;
}

.submenu__item_press:before {
    background-position: -140px -205px;
}

.submenu__item_poh-org:before {
    background-position: -48px -270px;
}

.submenu__item_rit-strah:before {
    background-position: -240px -22px;
}

.submenu__item_gruz200:before {
    background-position: -245px -90px;
}

.submenu__item_katafalk:before {
    background-position: -245px -152px;
}

.submenu__item_dezinf:before {
    background-position: -245px -203px;
}

.submenu__item_rassroch:before {
    background-position: -345px -22px;
}

.submenu__item_rod-zah:before {
    background-position: -345px -86px;
}

.submenu__item_rest:before {
    background-position: -341px -146px;
}

.submenu__item_life-dogovor:before {
    background-position: -345px -270px;
}

.submenu__item_vip:before {
    background-position: -348px -207px;
}

.submenu__item_digit-mem:before {
    background-position: -520px -205px;
}

.submenu__item_dop:before {
    background-position: -245px -272px;
}

.submenu__item_dop1:before {
    background-position: -610px -272px;
}


.submenu__item_grob:before {
    background-position: -435px -28px;
}

.submenu__item_krest:before {
    background-position: -438px -88px;
}

.submenu__item_venok:before {
    background-position: -520px -28px;
}

.submenu__item_pamyatnik:before {
    background-position: -515px -85px;
}

.submenu__item_textile:before {
    background-position: -610px -25px;
}

.submenu__item_acc:before {
    background-position: -602px -85px;
}

.submenu__item_opt:before {
    background-position: -610px -155px;
}

.submenu__item_catalog:before {
    background-position: -610px -205px;
}



.submenu__item_gor-uch:before {
    background-position: -435px -150px;
}

.submenu__item_obryad:before {
    background-position: -435px -275px;
}

.submenu__item_pravo:before {
    background-position: -435px -205px;
}

.submenu__item_rit-infra:before {
    background-position: -515px -148px;
}

.submenu__item_docs:before {
    background-position: -510px -272px;
}



.submenu__item_gk {
	
}

.submenu__item_gk:before {
	background-image: url('/local/templates/ritual/css/assets/submenu/gk.png');
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100%;
	transform: translate(-12px,-6px);
}


.submenu__item_gk:after {
    background-image: url('/local/templates/ritual/css/assets/submenu/gk-right.png');
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: 24px;
    margin-top: 2px;
    width: 162px;
    height: 38px;
    content: '';
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;	
}
.submenu__item_in-area_nn {
	
}

.submenu__item_in-area_nn:before {
	background-image: url('/local/templates/ritual/css/assets/submenu/nn_area.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translate(-6px,-10px);
	height:36px;
}


.submenu__item_in-area_nn:after {
}



.submenu__item_oferta {
	padding:8px 0;
	min-height:18px;
}

.submenu__item_oferta:before {
	position:relative;
    margin: -20px 5px -20px -40px;
    background-position: -330px -328px;
}

.submenu__item_oferta .submenu__link{
	font-size: 12px;
	font-weight: 400;
	color: #999;
}

.submenu__item_in-area:before {
    background-image: url('/include/image/region_bw.png');
    top: 4px;
    right: 0;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}


.submenu__item_in-area:after {
    position: absolute;
    top: 4px;
    left: 264px;
    width: 40px;
    height: 40px;
    background-image: url('/include/image/region_color.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;	
    content: '';
}


.submenu__link {
	text-decoration:none;
}

.submenu__link:hover {
	 text-decoration:underline; 
}

.submenu__label {
	font-weight:700;
}

.submenu__sub-label{
	font-size:13px;
	color:#666;
}
.submenu__sub-label:hover{
	text-decoration:underline;
}

.submenu__row_heading .submenu__item_gk{
    display: none;
}
@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.submenu__col {
		padding:0 0 0 24px;
		width:248px;
	}
	.submenu__col_2 {
		width:496px;
	}
}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	
}
/* End */


/* Start:/local/templates/ritual/css/main-banner.css?16908104533267*/
.main-banner {
	font-family: 'Open Sans', 'Arial', 'Sans-Serif';
	background-image: url('/include/image/main-banner.jpg');
	background-size: cover;
	background-position: center top;
	box-shadow: -7px -65px 120px -33px #fff9 inset;
	height: 395px;
	box-sizing: border-box;
}

.main-banner__container {
	max-width: 1350px;
	margin: 0 auto;
	padding-top: 32px;
}

.main-banner__popup {
	width: 100%;
	max-width: 584px;
	background: rgba(173, 90, 85, 0.9);
	padding: 24px;
	color: #fff;
	transition: all .8s ease;
	box-sizing: border-box;
	margin-left: 16px;
}

.main-banner__popup_unactive {
	opacity: 0;
	transform: translateY(-50px);
}


.main-banner__logo {
	background-image: url('/local/templates/ritual/css/assets/main-banner/logo.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 212px;
	height: 64px;
	margin-left: -16px;
}

.main-banner__title {
	font-size: 30px;
	margin: 10px 0 20px;
	font-weight: 700;
	max-width: 400px;
}


.main-banner__text {
	font-family: 'Georgia', Arial, sans-serif;
	font-size: 15px;
	font-style: italic;
	line-height: 1.33;
	font-weight: 400;
	margin-bottom: 20px;
}

.main-banner__l-phone {
	font-size: 15px;
	text-align: right;
}

.main-banner__phone-label {
	padding-left: 25px;
	position: relative;
}

.main-banner__phone-label:before {
	content: "";
	display: block;
	background: url('/local/templates/ritual/css/assets/main-banner/phone.png') no-repeat left center;
	position: absolute;
	top: -2px;
	left: 0;
	width: 18px;
	height: 22px;
}

.main-banner__phone {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.main-banner__postcard {
	display: inline-flex;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 0;
	padding: 8px 24px;
	align-items: center;
	text-decoration: none;
}

.main-banner__postcard:hover {
	background: rgba(255, 255, 255, 0.1);
}

.main-banner__postcard-view {
	padding-right: 16px;
	font-size:24px;
	display:flex;
}
.main-banner__postcard-icon{
	height:24px;
	vertical-align:middle;
	font-size:0;
}
.main-banner__zab {
	width: 392px;
	align-self: flex-end;
	margin-right: 16px;
}

.main-banner__container_zab {
	display: flex;
	justify-content: space-between;
}

@media screen and (min-width:1382px) {}


@media screen and (min-width:1024px) and (max-width: 1382px) {}


@media screen and (max-width: 1024px) {
	.main-banner {
		height: auto;
	}

	.main-banner__container {
		padding-top: 0;
		padding-bottom: 32px;
	}

	.main-banner__popup {
		margin: -32px auto 0;
		padding: 16px 8px;
		box-sizing: border-box;
		transition: none;
	}

	.main-banner__logo {
		display: none;
	}

	.main-banner__title {
		font-size: 18px;
		text-align: center;
		max-width: none;
	}

	.main-banner__text {
		display: none;
	}

	.main-banner__l-phone {
		text-align: center;
	}

	.main-banner__action {
		text-align: center;
	}

	.main-banner__container_zab {
		flex-direction: column;
		align-items: center;
	}

	.main-banner__zab {
		width: 392px;
		align-self: center;
		margin-right: 0;
		margin-top: 20px;
	}
}


@media screen and (max-width: 768px) {
	.main-banner__popup {
		width: 92%;
		margin: -32px auto 0;
	}

	.main-banner__action {
		margin-top: 16px;
		text-align: center;
		font-size: 14px;
		line-height: 1.2;
	}
}


@media screen and (max-width: 480px) {
	.main-banner__zab {
		width: 240px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/arr-block.css?16908104531695*/
.arr-block {
    position: relative;
    display: block;
    background: #a65047 center center no-repeat;
    background-size: cover;
    color: #fff;
    padding: 24px 32px;
    text-decoration: none;
    margin: 32px 0;
}

.arr-block:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #a65047;
    opacity: 0.9;
    content: '';
    transition: all 0.2s;
}

.arr-block:hover:before {
    opacity: 0.98;
}

.arr-block:after {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    right: 40px;
    width: 100px;
    height: 59px;
    background: url('/local/templates/ritual/css/assets/arr-block/arrow.png') center center no-repeat;
    background-size: contain;
    content: '';
    transition: all 0.2s;
}

.arr-block:hover:after {
    transform: translateX(10px);
}

.arr-block__title {
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	margin:0;
}

.arr-block__inner {
    position: relative;
}

.arr-block__desktop {
    font-size: 16px;
    margin-top: 4px;
}

.arr-block__mobile {
    margin-top: 15px;
	display:none;
}

.arr-block__btn {
	font-size: 13px;
	padding: 0 24px;
	height: 32px;
	line-height: 32px;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 6px;
	display:inline-block;
}


@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.arr-block:after{
		display:none;
	}
	
	.arr-block__title {
		font-size: 16px;
		line-height: 1.4375;
		text-align:center;
	}
	.arr-block__desktop{
		display:none;
	}
	.arr-block__mobile{
		display:block;
		text-align:center;
	}
}


@media screen and (max-width: 768px) {
	
}
/* End */


/* Start:/local/templates/ritual/css/tblock.css?16908104532017*/
.tblock {
	background-color: #f2efee;
	border-top: 7px solid #a65047;
	display:flex;
	transition: all 0.2s;
	text-align:center;
	font-size:0;
	text-decoration:none;
	height:100%;
	margin:0;
	align-items: center;
	justify-content:center;
	box-sizing:border-box;
}

.tblock:hover {
	background-color: #cbbab8;
}

.tblock__icon{
	font-size:50px;
	display:inline-block;
	vertical-align:middle;
	line-height:1;
	min-width:20%;
}
.tblock__icon_right{
	text-align:right;
}


.tblock__icon .icon--cemetery {
    font-size: 66px;
}

.tblock__icon .icon--urna {
    font-size: 70px;
}

.tblock__icon .icon--marker-on-map {
    font-size: 56px;
}

.tblock__icon .icon--doc-list {
    font-size: 65px;
}

.tblock__icon .icon--cremation {
    font-size: 69px;
}

.tblock__icon .icon--gruz-200 {
    font-size: 64px;
}

.tblock__icon .icon--book-opened {
    font-size: 64px;
}

.tblock__title{	
	display: inline-block;
	vertical-align: middle;
	font-size: 26px;
	line-height: 1.2;
	text-align: left;
	text-transform: uppercase;
	white-space: normal;
	max-width: 75%;
	min-width: 60%;
	margin-left: 15px;
}

.tblock__image{
	max-width:80px;
	margin-top:4px;
}
.tblock__xs-br{
	display:none;
}


@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.tblock__title{	
		font-size:26px;
	}
	.tblock__image{
		max-width:56px
	}
}


@media screen and (max-width: 1024px) {

	.tblock {
		line-height:130px;
	}	
	.tblock__title{	
		font-size:22px;
	}
	.tblock__icon .icon {
		font-size:40px;
	}

	.tblock__image{
		max-width:48px
	}	
}


@media screen and (max-width: 768px) {
	
	.tblock {
		line-height:70px;
	}
	.tblock__title{	
		font-size:14px;
		max-width:60%;
	}
	
	.tblock__icon .icon {
		font-size:30px;
	}

	.tblock__image{
		max-width:36px
	}	
	
}

@media screen and (max-width: 416px) {
	
	.tblock {
		line-height:55px;
	}
	.tblock__title{	
		font-size:11px;
		margin-left:4px;
		
	}
	.tblock__xs-br{
		display:inline-block;
	}
	.tblock__icon .icon {
		font-size:30px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/fix-footer.css?1690810453914*/
.fix-footer {
	display:none;
	background-color:#ad5a55;
	position: fixed;
	width: 100%;
	bottom: 0;	
}

.fix-footer__l-phone {
	flex-grow:1;
	
	text-align:center;
}

.fix-footer__phone {
	border-radius: 6px;
	font-size: 15px;
	color: #ffffff;
	display: inline-block;
	font-family: 'Open Sans','Arial','Sans-Serif';
	background-color: #ad5a55;
	text-transform: uppercase;
	line-height: 32px;
	font-weight: 700;
	margin: 10px auto;
	text-align: center;
	border: 1px solid #fff;
	outline: none;
	text-decoration:none;
	padding:0 32px;
	margin-right:-70px;
}

.fix-footer__search {
	align-self: center;
	padding: 0 24px;
	font-size: 22px;
	color:#fff;
	position:relative;
	top:2px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.fix-footer {
		display:flex;	
	}
}


@media screen and (max-width: 768px) {
	
}
/* End */


/* Start:/local/templates/ritual/css/mobile-search.css?16908104531885*/
.mobile-search {
	display: none;
}

.mobile-search__form { 
	display:flex;
	height:54px;
	align-items:center;
	justify-content: center;
}

.mobile-search__icon{
	font-size: 18px;
    padding: 0 16px;
    color: #AD5A55;
    border: 0px;
    cursor: pointer;
    height: 34px;
    background-color: #fff;
    width: 150px;
    border-radius: 0 5px 5px 0;
}

.mobile-search__input{
	background: transparent;
	width: 100%;
	border: 1px solid #ffffff;
	height: 34px;
	box-sizing: border-box; 
	border-radius: 5px 0 0 5px;
	color: #ffffff;
	font-size: 18px; 
	padding-left: 12px;
	font-family: 'Open Sans', 'Arial', sans-serif;
	font-weight: 300;
	line-height: 34px; /*Выравнивание placeholder во всех браузерах*/
}
.mobile-search__input::-webkit-input-placeholder {color: rgba(255, 255, 255, 0.48);}
.mobile-search__input::-moz-placeholder          {color: rgba(255, 255, 255, 0.48);}/* Firefox 19+ */
.mobile-search__input::-moz-placeholder           {color: rgba(255, 255, 255, 0.48);}/* Firefox 18- */
.mobile-search__input::-ms-input-placeholder      {color: rgba(255, 255, 255, 0.48);}

.mobile-search__field{
	flex-grow:1;
	padding-left:36px;
}

.mobile-search__close {
	padding:0 36px;
	font-size:20px;
	line-height: 0;
}
.mobile-search__close .icon {
	fill:#fff;
}
@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.mobile-search {
		display: block;
	}
}


@media screen and (max-width: 768px) {
	.mobile-search__icon{
		width: 120px;
	}
}

@media screen and (max-width: 480px) {
	.mobile-search__icon{
		width: 80px;
		font-size: 16px;
	}
	.mobile-search__close {
		padding:0 16px;
	}

	.mobile-search__field {
		padding-left: 16px;
	}

	.mobile-search__input {
		font-size: 16px;
	}

	.mobile-search__input::placeholder {
		font-size: 16px;
	}  
}


/* End */


/* Start:/local/templates/ritual/css/mobile-bar.css?1690810453362*/
.mobile-bar {
	
}

.mobile-bar__close{
	display:flex;
	align-items:center;
	padding:16px 0;
	border-bottom:1px solid #ad4666;
}
.mobile-bar__close-icon .icon {
	fill:#ad5a55;
	font-size:20px;
}

.mobile-bar__close-label{
	padding-left:16px;
	color:#ad4666;
	font-family:'Open Sans','Arial','Sans-Serif';
	font-weight:400;
}

.mobile-bar__menu{
	margin-top:0px;
}
/* End */


/* Start:/local/templates/ritual/css/mobile-menu.css?16908104531366*/
.mobile-menu {
	padding:0;
	margin:0;
	list-style:none;
}

.mobile-menu__item {
	border-bottom: 1px solid #d1cdc5;
	line-height:48px; 
	position:relative;
}

.mobile-menu__arrow-tap {
	position: absolute;
	right: 0;
	top: 0;
	width: 48px;
	height: 48px;
	background-color: transparent;
	
}
.mobile-menu__arrow {
	background-image: url('/local/templates/ritual/css/assets/mobile-menu/title-switch.png');
	position: absolute;
	top: 16px;
	width: 16px;
	height: 16px;
	right: 6%;
	left: auto;
	background-color: transparent;
}

.mobile-menu__item_active .mobile-menu__arrow{
	background-position:0 16px;
	top: 20px;
}

.mobile-menu__link {
	text-decoration:none;
	text-transform:uppercase;
	color:#5f574b;
	font-family:'Open Sans','Arial','Sans-Serif';
	font-weight:600;
	font-size:12px;
	display:block;
}
.mobile-menu__sub{
	display:none;
	padding:0;
	margin:0 0 16px 0;
	list-style:none;	
}
.mobile-menu__item_multi > .mobile-menu__sub{
	margin-left:16px;
}
.mobile-menu__item_active .mobile-menu__sub{
	display:block;
}


.mobile-menu__subitem{
	line-height:1.4;
	padding:2px 0;
}
.mobile-menu__subitem_delim{
	margin-top:16px;
}
.mobile-menu__subitem_def .mobile-menu__link {
	font-weight:400;
}
.mobile-menu__sub .mobile-menu__link{
	text-transform:none;
}

.mobile-menu__subitem .mobile-menu__subitem {
	
}
.mobile-menu__subitem .mobile-menu__subitem .mobile-menu__link {
	font-weight:400;
}
/* End */


/* Start:/local/templates/ritual/css/tabs.css?16908104532299*/
.tabs {
	
}


.tabs__title{
	display:flex;
}
.tabs__title_center{
	justify-content:center;
}


.tabs__item_main{
	border-top:7px solid #ccc;
	margin:0 8px;
	cursor:pointer;
	background-color:#f5f5f5;
	height:96px;
	width:50%;
	color:#666;
	display:flex;
	align-items:center;
	justify-content: center;
}
.tabs__item_main:first-child{
	margin-left:0;
}
.tabs__item_main:last-child{
	margin-right:0;
}
.tabs__item_main.tabs__item_active{
	border-top:7px solid #a65047;
	background-color:#f2efee;
	cursor:default;
	color:#a65047;
}
.tabs__item_main:hover {
	color:#a65047;
}
.tabs__item_main:hover .icon{
	fill:#a65047;	
}
.tabs__item_main .tabs__link{
	text-transform:uppercase;
	margin-left:8px;
	font-size:21px;
}


.tabs__item_inline {
	cursor: pointer;
	border: 1px solid rgb(196,196,196);
	background: #eaeaea;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.07),inset 0 2px 0 0 rgba(255,255,255,0.004);
	transition: 0.3s;
	padding:8px 24px;
	width:200px;
	text-align:center;
	
}
.tabs__item_inline.tabs__item_active {
	background: #fbfbfb;
	box-shadow: inset 0 1px 2px 0 rgba(0,0,0,0.1);
}

.tabs__item_inline .tabs__icon{
	display:inline;
	vertical-align:middle;
	font-size:24px;
}
.tabs__item_inline.tabs__item_active .icon{
	fill:#a65047;
}

.tabs__item_inline .tabs__link{
	padding-left:4px;
	display:inline;
	vertical-align:middle;
}



.tabs__content{
}

.tabs__pane{
	display:none;
}

.tabs__pane_active{
	display:block;
}

.tabs__item_main .icon{
	font-size:46px;
	fill:#666;
}
.tabs__item_main.tabs__item_active .icon{
	font-size:46px;
	fill:#a65047;
}

.tabs__desc{
	margin:32px 0;
}
.tabs__desc p{
	text-align:center;
	margin:16px auto;
}

.tabs__star{
	color:#ad5a55;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	
}


@media screen and (max-width: 1024px) {
	.tabs__item_main{
		height:88px;
	}
	.tabs__item_main .tabs__icon{
		display:none;
	}
}

@media screen and (max-width: 768px) {
	.tabs__item_main{
		height:64px;
		margin:0 4px;
	}
	.tabs__item_main .tabs__link{
		font-size:14px;
	}
	.tabs__item_main .icon{
		font-size:30px;
	}	
}

@media screen and (max-width: 416px) {
	.tabs__item_main{
		height:50px;
	}
	.tabs__item_main .tabs__link{
		font-size:11px;
	}
	
	.tabs__item_inline .tabs__icon {
		display:none;
	}
	
}
/* End */


/* Start:/local/templates/ritual/css/arr-price.css?16908104531865*/
.arr-price {
	display:flex;
	padding:16px 96px 32px 48px;
	cursor:pointer;
	text-decoration:none;
	color:#222;
	position:relative;
}
.arr-price:after {
	position: absolute;
	top: 50%;
	margin-top: -30px;
	right: 30px;
	width: 32px;
	height: 59px;
	background: url("/local/templates/ritual/css/assets/arr-price/icon-tripple-arrow-red.png") center center no-repeat;
	background-size: contain;
	content: '';
	transition: all 0.2s;	
}

.arr-price:hover {
	background-color:#d2c4c2;
}

.arr-price:hover:after {
	transform: translateX(10px);
}

.arr-price__title {
	flex-grow:1;
}

.arr-price__name {
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	color: #a65047;
}

.arr-price__desc{
	margin-top:12px;
	font-size:14px;
}

.arr-price__cost{
	text-align:right;
	padding-left:16px;
	font-family:'Open Sans','Arial','Sans-Serif';
}

.arr-price__price{
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	color: #a65047;
	white-space:nowrap;
}

.arr-price__currency{
	font-size: 15px;
	line-height: 1.2;
	margin-top:-4px;
}


@media screen and (min-width:1382px) {
	
}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.arr-price__desc{
		display:none;
	}
}


@media screen and (max-width: 1024px) {
	.arr-price__name {
		font-size:20px;
	}
	.arr-price__price{
		font-size:20px;
	}
	.arr-price__desc{
		display:none;
	}	
}


@media screen and (max-width: 768px) {
	.arr-price{
		padding:8px 48px 8px 16px;
	}
	.arr-price:after{
		margin-top: -13px;
		width: 14px;
		height: 26px;
		right: 15px;		
	}
	.arr-price__name {
		font-size:18px;
	}
	.arr-price__price{
		font-size:18px;
	}
	.arr-price__cost{
		display:flex;
		align-items:baseline;
	}
	.arr-price__currency{
		padding-left:4px;
	}
}

@media screen and (max-width: 416px) {

	.arr-price__name {
		font-size:14px;
	}
	.arr-price__price{
		font-size:14px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/half-block.css?16908104531146*/
.half-block{
	display:flex;
	font-family:'Open Sans','Arial','Sans-Serif';
	margin:0 -8px;
	height:100%;
}
.half-block__item{
	width:50%;
	margin:0 8px;
	position: relative;
	display:flex;
	flex-direction: column;
	padding:24px;
	color:#fff;
	text-decoration:none;
	background-color: #a65047;
}

.half-block__item:before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #a65047;
	opacity: 0.9;
	content: '';
	transition: all 0.2s;
}

.half-block__item:hover:before{
	opacity: 0.96;
}

.half-block__icon {
	font-size:48px;
}

.half-block__title {
	font-size: 21px;
	line-height: 1.2;
	text-transform: uppercase;
	position:relative;
	
}



@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.half-block__icon {
		font-size:32px;
	}
	
	.half-block__title {
		font-size:16px;
	}
}

@media screen and (max-width: 416px) {
	.half-block__item{
		padding:16px 8px;
	}
	.half-block__icon {
		font-size:24px;
	}
	
	.half-block__title {
		margin-top:4px;
		font-size:12px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/video-block.css?16908104536236*/
.video-block {
    position: relative;
    background-color: #000;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: height 0.9s;
    -moz-transition: height 0.9s;
    transition: height 0.9s;
}

.video-block__image {
    position: relative;
}

.video-block__image:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(170, 95, 91, 0.3);
    content: "";
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.video-block:hover .video-block__image:before {
    background-color: rgba(170, 95, 91, 0.1);
}

.video-block__image img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    z-index: 0;
}

.video-block__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 154px;
    height: 154px;
    line-height: 150px;
    text-align: center;
    margin: -77px 0 0 -77px;
    border: 14px solid #eeebe4;
    border-radius: 50%;
    z-index: 1;
    content: "";
    -webkit-transition: all 0.3s, visibility 0.3s;
    -moz-transition: all 0.3s, visibility 0.3s;
    transition: all 0.3s, visibility 0.3s;
}

.video-block__icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -34px 0 0 -19px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 34px 0 34px 56px;
    border-color: transparent transparent transparent #eeebe4;
    content: "";
}

.video-block__image.img-to-bg {
    background: center center no-repeat;
    background-size: cover;
    padding-bottom: 56.25%;
}

.video-block__image.img-to-bg img {
    display: none;
}

.video-block__video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    background-color: #000;
    -webkit-transition: all 0.3s, visibility 0s 0.3s, z-index 0s 0.3s;
    -moz-transition: all 0.3s, visibility 0s 0.3s, z-index 0s 0.3s;
    transition: all 0.3s, visibility 0s 0.3s, z-index 0s 0.3s;
}

.video-block.preactive,
.video-block.active {
    cursor: default;
}

.video-block.preactive .video-block__video,
.video-block.active .video-block__video {
    z-index: 2;
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}

.video-block.preactive .video-block__icon,
.video-block.active .video-block__icon {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s, visibility 0s 0.3s;
    -moz-transition: all 0.3s, visibility 0s 0.3s;
    transition: all 0.3s, visibility 0s 0.3s;
}

.video-block__video-inner {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-block__video-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
}


.video-block__overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    line-height: 500px;
    margin-top: -250px;
}

.video-block__overlay-inner {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 768px){
    .video-block__overlay-inner {
        font-size: 14px;
    }
}

.video-block__title {
    margin-top: 30px;
    font-size: 22px;
    line-height: 1.1;
}

.video-block__title--homepage {
    font-size: 18px;
    text-transform: uppercase;
}
@media (max-width: 1023px){
    .video-block__title--homepage {
        margin-top: 15px;
    }
}
@media (max-width: 768px){
    .video-block__title {
        margin-top: 15px;
        font-size: 18px;
    }
}
@media (max-width: 479px){
    .video-block__title {
        margin-top: 10px;
        font-size: 16px;
    }
}
@media (max-width: 414px){
    .video-block__title {
        font-size: 14px;
    }
}
@media (max-width: 1023px){

    .video-block__title--homepage {
        font-size: 12px;
    }
}

.video-block__title:first-child {
    margin-top: 0;
}

.video-block__subtitle {
    margin-top: 5px;
}

.video-block__subtitle--homepage {
    font-size: 32px;
}
@media (max-width: 1023px){
    .video-block__subtitle--homepage {
        font-size: 22px;
        line-height: 1.2;
        margin-top: 0;
    }
}
@media (max-width: 768px){
    .video-block__subtitle--homepage {
        font-size: 20px;
    }
}
@media (max-width: 479px){
    .video-block__subtitle--homepage {
        font-size: 16px;
    }
}

.video-block__subtitle:first-child {
    margin-top: 0;
}
@media (max-width: 479px){
    .video-block__subtitle {
        display: none;
    }
}

.video-block .video-block__overlay .video-block__icon {
    position: static;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}
@media (max-width: 768px){
    .video-block .video-block__overlay .video-block__icon {
        margin-top: 15px;
    }
}
@media (max-width: 479px){
    .video-block .video-block__overlay .video-block__icon {
        margin-top: 10px;
    }
}

.video-block .video-block__overlay .video-block__icon:first-child {
    margin-top: 0;
}



@media (max-width: 539px){
    .video-block--type-1 {
        width: 100%;
    }
}

.video-block--type-1 .video-block__image:before {
    background-color: rgba(176, 91, 87, 0.8);
}

.video-block--type-1:hover .video-block__image:before {
    background-color: rgba(176, 91, 87, 0.6);
}

.video-block--type-1 .video-block__icon {
    width: 102px;
    height: 102px;
    line-height: 102px;
    margin: -51px 0 0 -51px;
    border: none;
    background: url('/local/templates/ritual/css/assets/video-block/video-play-circle.svg') center center no-repeat;
    background-size: cover;
}
@media (max-width: 768px){
    .video-block--type-1 .video-block__icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin: -30px 0 0 -30px;
    }
}
@media (max-width: 479px){
    .video-block--type-1 .video-block__icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin: -20px 0 0 -20px;
    }
}

.video-block--type-1 .video-block__icon:before {
    display: none;
}

/* End */


/* Start:/local/templates/ritual/css/youtube.css?16908104531394*/
.youtube {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}

.youtube__video iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.youtube__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background-position:center;
	background-size:cover;
	color:#fff;
}
.youtube__overlay-inner {
	background-color:rgba(176, 91, 87, 0.8);
	height:100%;
	cursor:pointer;
	transition: background-color 0.3s;
	text-align:center;
	font-family:'Open Sans','Arial','Sans-Serif';
	display: flex;
	flex-direction: column;
	justify-content: center;	
	
}
.youtube__overlay-inner:hover {
	background-color:rgba(176, 91, 87, 0.6);
}

.youtube_active .youtube__overlay{
	display:none;
}

.youtube__icon {
	font-size:96px;
}
.youtube__title {
	margin-top:32px;
    font-size: 18px;
    text-transform: uppercase;

}
.youtube__subtitle {
	margin-top:16px;
    font-size: 32px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.youtube__title {
		margin-top:4px;
		font-size: 12px;

	}
	.youtube__subtitle {
		margin-top:8px;
		font-size: 22px;
	}
}


@media screen and (max-width: 768px) {
	.youtube__icon {
		font-size:64px;
	}
}

@media screen and (max-width: 768px) {
	.youtube__icon {
		font-size:48px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/main-reviews.css?16908104532062*/
.main-reviews{
	font-family:'Open Sans','Arial','Sans-Serif';	
}

.main-reviews__header{
	border-top: 8px solid #a65047;
	color: #a65047;
	padding: 16px 32px;
	background-color: #f2efee;
	display:flex;
}

.main-reviews__title{
	font-size:30px;
	text-transform: uppercase;
	color:#a65047;
	flex-grow:1;
}
.main-reviews__more{
	align-self:center;
}
.main-reviews__more-mobile{
	display:none;
	text-align:center;
	margin-top:16px;
}	
.main-reviews__more-link{
	color: #999;
	border-bottom: 1px solid #b5b5b5;
	text-decoration: none;	
}

.main-reviews__list {
	
}

.main-reviews__item {
	margin:16px 0;
}
.main-reviews__post {
	padding:0 32px;
	position:relative;
}
.main-reviews__post:before {
	content:"«";
	display:block;
	position:absolute;
	top: -16px;
	left: 0;
	font-size:48px;
	line-height:48px;
	color:#ad5a55;
	font-family:"Times New Roman";
}
.main-reviews__post:after {
	content:"»";
	display:block;
	position:absolute;
	bottom:0;
	right:0;
	font-size:48px;
	line-height:48px;
	color:#ad5a55;	
	font-family:"Times New Roman";
}

.main-reviews__desc {
	color: #615d58;
	font-size:15px;
	line-height:1.4;
	margin:16px 0;
}
.main-reviews__date {
	font-size: 18px;
	font-weight: 600;
	color: #b05c58;	
}
.main-reviews__name {
	text-align:right;
	color:#ad5a55;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.main-reviews__item{
		display:none;
	}
	.main-reviews__item:first-child{
		display:block;
	}
}


@media screen and (max-width: 1024px) {
	.main-reviews__title{
		font-size:20px;
	}

	.main-reviews__item{
		display:none;
	}
	.main-reviews__item:first-child{
		display:block;
	}

	.main-reviews__date{
		font-size:16px;
	}
	.main-reviews__desc{
		font-size:14px;
	}
}


@media screen and (max-width: 768px) {
	
}

@media screen and (max-width: 416px) {
	.main-reviews__header{
		flex-direction:column;
	}
	.main-reviews__title{
		font-size:14px;
	}	
	.main-reviews__more{
		display:none;
	}	
	.main-reviews__more-mobile{
		display:block;
	}
	.main-reviews__name{
		font-size:12px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/main-news.css?16908104531932*/
.main-news {
	margin-top:32px;
}

.main-news__header{
	display:flex;
	align-items:center;
}

.main-news__title{
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;

}

.main-news__more{
	padding-left:32px;
}

.main-news__more-link{
	color: #999;
	border-bottom: 1px solid #b5b5b5;
	text-decoration: none;
	font-size:13px;
}



.main-news__list{
	display:flex;
	padding:0 24px;
	background-color:#f2efee;
	margin-top:16px;
	max-width: 100%;
}
.main-news__list_slider{
	position: absolute;
	display: none;
	z-index: -1;
	background:#fff;
	padding:0;
	margin: 16px -16px;
}

.main-news__slider{
}

.main-news__col{
	
}
.main-news__col:first-child{
	width:54%;
	padding-right:2%;
}
.main-news__col:last-child{
	width:42%;
	padding-left:2%;
}

.main-news__item{
	margin:24px 0;
}


@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.main-news__list{
		display:none;
	}
	.main-news__list_slider{
		display:block;
		position: relative;
		visibility: visible;
		z-index: auto;
	}
	.main-news__item{
		padding:0 16px;
	}
	
	.main-news__more-link{
		display:none;
	}
	
	.main-news__header{
		display:block;
		text-align:center;
	}
	.main-news__title{
		font-size:20px;
	}

}


@media screen and (max-width: 768px) {
	.main-news{	
		margin:0 -16px;
		overflow:hidden;
	}
	.main-news__slider.owl-carousel{
		margin: 0 -25% 0 -25%;
		width: auto ;
	}
	
	
	.main-news .owl-item:after {
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		opacity: 0.73;
		background-color: #ededed;
		z-index: 1;
		display: block;
		pointer-events: none;
		content: '';
		transition: all 0.3s, z-index 0s;
	}
	.main-news .owl-item.center:after {	
		opacity:0;
	}
	.main-news__title{
		font-size:14px;
	}	
}


@media screen and (max-width: 416px) {
	.main-news__slider.owl-carousel{
		margin: 0 -45% 0 -45%;
		width: auto ;
	}
	
}
/* End */


/* Start:/local/templates/ritual/css/main-smi.css?16908104531595*/
.main-smi {

}

.main-smi__header{
	display:flex;
	align-items:center;
}

.main-smi__more{
	padding-left:32px;
}

.main-smi__more-link{
	color: #999;
	border-bottom: 1px solid #b5b5b5;
	text-decoration: none;
	font-size: 13px;
}

.main-smi__list{
	margin:16px 0 0;
}

.main-smi__item {
	text-align:center;
	box-sizing:border-box;
}
.main-smi__link {
	display:flex;
	flex-direction:column;
	background:#f2efee;
	padding:24px 16px;
	height:100%;
	box-sizing:border-box;
	color:#000;
	text-decoration:none;	
	align-items: center;
	position:relative;
}

.main-smi__link:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(113,65,60,0.3);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s,visibility;
	content: "";
	pointer-events: none;
}

.main-smi__link:hover:before {
	opacity: 1;
	visibility: visible;
}

.main-smi__view {
	height:70px;
	line-height:70px;
	max-width:100%;
}
.main-smi__image {
	max-height:100%;
	vertical-align:middle;
	width:auto !important;
	display:inline-block !important;
}
.main-smi__name {
	margin-top:12px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	height:3.6em;
	overflow:hidden;
	max-width:100%;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.main-smi{	
		margin:0 -16px;
		overflow:hidden;
	}
	.main-smi__list.owl-carousel{	
		margin: 16px -25% 0 -25%;
		width: auto;
	}
}

@media screen and (max-width: 416px) {
	.main-smi__list.owl-carousel{	
		
	}
}
/* End */


/* Start:/local/templates/ritual/css/list-news-item.css?16908104531387*/
.list-news-item{
	font-size:13px;
	line-height: 1.2;
	color:#333;
	text-decoration:none;
	font-family:'Open Sans','Arial','Sans-Serif';
}
.list-news-item:after{
	clear:both;
	content:"";
	display:block;
}
.list-news-item_large {
	height:196px;
}

.list-news-item_large .list-news-item__view {
	width:60%;
	height:200px;
}
.list-news-item_large .list-news-item__content {
	width:40%;
	margin-left:60%;
}
.list-news-item__view {
	background-size:cover;
	background-repeat:no-repeat;
	width:80px;
	height:80px;
	float:left;
}

.list-news-item__content {
	padding-left:16px;
	margin-left:80px;
}


.list-news-item__date {
	font-size: 11px;
	font-weight: 600;
}

.list-news-item:hover .list-news-item__name{
	text-decoration: underline;
}
.list-news-item__name {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3125;
	margin-top: 3px;	
}

.list-news-item__desc {
	margin-top: 4px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.list-news-item__view {
		float:none;
		width:100%;
		height:auto;
		padding-top:66.66%;
	}
	.list-news-item__content {
		margin:16px 0 0;
		padding:0;
		width:100%;
	}
}


@media screen and (max-width: 768px) {
	
}


@media screen and (max-width: 416px) {
	.list-news-item__name{
		font-size:14px;
	}
	.list-news-item__desc{
		font-size:13px;
	}
}


/* End */


/* Start:/local/templates/ritual/css/flat-grid.css?16908104531529*/
.flat-grid {
	font-family:'Open Sans','Arial','Sans-Serif';
	display: flex;
	flex-wrap:wrap;
	width:100%;
}



.flat-grid__block {
	padding:32px 24px;
	box-sizing:border-box;
	width: 25%;
	border:1px solid #ddd;
	border-top:0;
	border-left:1px solid transparent;
}
.flat-grid__block:nth-child(4n) {
	border-right:1px solid transparent;
}
.flat-grid__block:nth-child(1) {
	border-top:0;
}
.flat-grid__block:nth-child(2) {
	border-top:0;
}
.flat-grid__block:nth-child(3) {
	border-top:0;
}
.flat-grid__block:nth-child(4) {
	border-top:0;
}
.flat-grid__block_last {
	border-bottom:0;
}


.flat-grid__letter {
	font-size: 52px;
	line-height: 30px;
	margin-bottom: 39px;
	color: #AD5A55;
}

.flat-grid__link {
	display:block;
	width: 100%;
	color: #777;
	font-size: 15px;
	line-height: 1.3;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	margin:8px 0;
}
.flat-grid__link:hover {	
	color:#AD5A55;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.flat-grid__block {
		width: 50%;
	}
	.flat-grid__block:nth-child(2n) {
		border-right:1px solid transparent;
	}
	.flat-grid__block_last4 {
		border-bottom:1px solid #ddd;;
	}
	.flat-grid__block_last3 {
		border-bottom:1px solid #ddd;;
	}
}


@media screen and (max-width: 416px) {
	.flat-grid__block {
		width: 100%;
		border-right:1px solid transparent;
	}
}
/* End */


/* Start:/local/templates/ritual/css/cemetery-item.css?1690810453932*/
.cemetery-item{
	
}

.cemetery-item__map {
	margin:16px 0;
}

.cemetery-item__schema {
	
}

.cemetery-item__schema:after {
	content:"";
	clear:both;
	display:block;
}

.cemetery-item__table{
	display:table;
	margin:16px 0;
}
.cemetery-item__row{
	display:table-row;
}
.cemetery-item__col{
	display:table-cell;
	padding:0 16px;
	text-align:center;
	width:50%;
}
.cemetery-item__col:first-child{
	padding-left:0
}
.cemetery-item__col:last-child{
	padding-right:0
}

.cemetery-item__col h2{
	text-align:center;
}

.cemetery-item__col-image{
	max-height:200px;
}

.cemetery-item__schema-image-float {
	float:left;
	margin:0 16px 16px 0;
	max-width:100%;
	width:400px;
}


@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.cemetery-item__col{
		float:none;
		width:100%;
		padding:0;
	}
}


@media screen and (max-width: 768px) {
	
}
/* End */


/* Start:/local/templates/ritual/css/big-banner.css?16908104531949*/
.big-banner{
	background-repeat: no-repeat;
	background-size: cover;
	font-family:'Open Sans','Arial','Sans-Serif';
	position:relative;
}

.big-banner:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(173,90,85,0.9);
	content: '';
	transition: all 0.2s;	
}
.big-banner__content{
	padding:32px;
	box-sizing:border-box;
	position:relative;	
}

.big-banner__title {
	color:#fff;
	text-align:center;
	text-transform: uppercase;
	font-size: 42px;	
}

.big-banner__logo {
	background-color: transparent;
	background-image: url('/local/templates/ritual/css/assets/big-banner/logo.png');
	background-repeat: no-repeat;
	background-size: contain;
	height: 96px;
	max-width: 100%;
	background-position: center center;
	margin-top:16px;
}

.big-banner__action {
	margin-top:16px;
}

.big-banner__btn {
	width: 340px;
	max-width: 90%;
	height: 55px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
	border: 2px solid #fff;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	border-radius: 11px;
	margin: auto;
	text-transform: uppercase;
	font-size: 21px;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.big-banner__btn:hover {
	background: rgba(255,255,255,0.44);
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.big-banner__title {
		font-size: 32px;	
	}
}


@media screen and (max-width: 768px) {

	.big-banner__title {
		font-size: 22px;	
	}
	
	.big-banner__logo {
		height: 48px;
	}
}



/* End */


/* Start:/local/templates/ritual/css/intro-menu.css?1690810453192*/
.intro-menu{
	list-style:none;
}

.intro-menu__item {
	margin:8px 0;
	list-style:none;
}

.intro-menu__link {
	text-decoration:none;
}

.intro-menu__link:hover {
	text-decoration:underline;
}

/* End */


/* Start:/local/templates/ritual/css/plan-section.css?16908104531510*/
.plan-section {
	border: 1px solid #a02d32;
	position: relative;
	padding: 16px 8px 64px;
	width: 100%;
	height:100%;
	box-sizing: border-box;
}

.plan-section__title {
	margin-top: -15px;
	background: #fefdfd;
	position: absolute;
	top: 0;
	left: 50%;
	padding: 0 10px;
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 22px;
	text-transform:uppercase;
}

.plan-section__item{
	display:flex;
	margin:16px 0;
}

.plan-section__icon .icon{
	position:relative;
	top:2px;
	fill:#ad5a55;
}

.plan-section__label{
	font-size:13px;
	padding-left:4px;
	flex-grow:1;
}

.plan-section__price{
	white-space:nowrap;
	font-size: 13px;
	color: #ad5a55;
	font-weight: 700;
	padding-left:8px;	
}

.plan-section__bottom{
	position: absolute;
	bottom: -84px;
	background: #fefdfd;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	padding: 0 16px;
}
.plan-section__bottom-price{
	font-size:40px;
	color:#000;
}
.plan-section__bottom-currency{
	text-align: center;
	color: #ad5a55;
	font-size:18px;
	font-weight:600;
}
.plan-section__order{
	margin-top:8px;
}
.plan-section__btn{
	display: block;
	font-size: 18px;
	color: #ffffff;
	text-decoration: none;
	background: #ad5a55;
	text-align: center;
	margin: 0 auto;
	line-height: 48px;
	border-radius: 6px;
	transition: 0.3s;
	font-weight: 700;	
	cursor:pointer;
}

.plan-section__btn:hover {
	background: #814340;
	color: #fff;	
}
/* End */


/* Start:/local/templates/ritual/css/calc-banner.css?1690810453901*/
.calc-banner {
	width: 100%;
	margin: auto;
	padding-top: 24px;
	padding-bottom: 32px;
	background-image: url('/local/templates/ritual/css/assets/calc-banner/calcbg.jpg');
	background-size: cover;
	text-align:center;
	box-sizing:border-box;
}

.calc-banner__icon .icon{
	fill:#ad5a55;
	font-size:48px;
}

.calc-banner__title {
	color: #ad5a55;
    font-size: 26px;
    text-align: center;
    font-weight: 800;
    margin-top: 16px;
    text-transform: uppercase;
}

.calc-banner__desc {
	margin-top:16px;
	color: #747474;
	line-height: 22px;
	font-size: 14px;
}

.calc-banner__action {
	margin-top:16px;	
}

.calc-banner__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	width: 240px;
	height: 58px;
	color: #ffffff;
	background: #ad5a55;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	transition: 0.3s;
	border-radius: 6px;
}
.calc-banner__btn:hover {
	background: #814340;
}
/* End */


/* Start:/local/templates/ritual/css/right-image.css?1690810453879*/
.right-image{
	float:right;
	padding:0 0 16px 16px;
	max-width:100%;
	width:auto;
	max-width:320px;
}

.right-image_size_128{
	max-width:128px;
}

.right-image_size_160{
	max-width:160px;
}

.right-image_size_224{
	max-width:224px;
}

.right-image_size_256{
	max-width:256px;
}


img.right-image {
	float:right;
	width:32%;
	max-width:320px;
	padding:8px 0 16px 16px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.right-image {
		max-width:36%;
	}
}



@media screen and (max-width: 768px) {
}

@media screen and (max-width: 480px) {
	.right-image {
		max-width:64%;
		margin:0 auto;
		padding:0;
		float:none;
		display:block;
	}
	
	img.right-image {
		float:none;
		width:auto;
		margin:0 auto;
		padding:0;
		display:block;
		max-height:30vh;
		max-width:64%;
	}	
}
/* End */


/* Start:/local/templates/ritual/css/left-image.css?1690810453620*/
.left-image{
	float:left;
	padding:0 16px 16px 0;
	max-height:192px;
	max-width:192px;
}

.left-image_size_128{
	max-height:128px;
	max-width:128px;
}

.left-image_size_160{
	max-height:160px;
	max-width:160px;
}

.left-image_size_224{
	max-height:224px;
	max-width:224px;
}

.left-image_size_256{
	max-height:256px;
	max-width:256px;
}

img.left-image {
	float:left;
	width:32%;
	max-width:320px;
	padding:8px 16px 16px 0;
	max-height:100%;
}

@media screen and (max-width: 480px) {
	
	img.left-image {
		float:none;
		width:auto;
		margin:0 auto;
		padding:0;
		display:block;
		max-height:30vh;
		max-width:64%;
	}	
}
/* End */


/* Start:/local/templates/ritual/css/news-list.css?16908104531268*/


.news-list {
}

.news-list__items{
	display:flex;
	flex-wrap:wrap;
}

.news-list__item{
	width:33%;
	padding:0 16px;
	box-sizing:border-box;
	margin:32px 0;
}

.news-list__preview-link{
	display:block;
	text-align:center;
	width: 100%;
	height: 196px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow:hidden;
}

.news-list__preview{
	display:none;
}

.news-list__title{
	margin:8px 0;
	height:66px;
	overflow:hidden;
}

.news-list__name{
	color:#ab5a57;
	font-weight: 700;
	text-decoration:none;
	font-size: 16px;
	line-height: 22px;
	display:block;
}

.news-list__preview-text{
	margin:8px 0;
	font-size: 16px;
	line-height: 22px;
	height:66px;
	overflow:hidden;
}

.news-list__date{
    font-size: 14px;
    color: #b0b0b0;
    font-weight: 700;
	margin:16px 0;
}

.news-list__action{
	display:flex;
	justify-content:center;
}

.news-list__nav{
	
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.news-list__item{
		width:50%;
	}
}


@media screen and (max-width: 768px) {
	.news-list__item{
		width:100%;
		padding:0;
	}	

	.news-list__title{ 
		height:auto;
	}
	.news-list__preview-text{
		height:auto;
	}	
}
/* End */


/* Start:/local/templates/ritual/css/review-list.css?16908104531585*/
.review-list {
	width:100%;
}


.review-list__header {
	display:flex;
	align-items:baseline;
}


.review-list__empty{
	margin-top:-16px;
	color:#666;
}

.review-list__items {
	
}

.review-list__item {
	margin:32px 0;
}
.review-list__post{
	padding:0 48px;
	box-sizing:border-box;
	position:relative;	
}
.review-list__post:before {
	content:"«";
	display:block;
	position:absolute;
	top: -32px;
	left: 0;
	font-size:72px;
	line-height:72px;
	color:#ad5a55;
	font-family:"Times New Roman";
}
.review-list__post:after {
	content:"»";
	display:block;
	position:absolute;
	bottom:-24px;
	right:0;
	font-size:72px;
	color:#ad5a55;	
	font-family:"Times New Roman";
}

.review-list__date {
	color:#ad5a55;
	font-weight:700;
	font-style:italic;
	font-size:16px;
	margin-right:16px;
}
.review-list__desc{
	font-style:italic;

	font-size: 16px;
	color: #000;
	line-height: 24px;
	margin: 20px 0;
	font-weight: 400;
	text-align: justify;
	font-family: 'Open Sans','Arial','Sans-Serif';	
}

.review-list__name{
	text-align:right;

	font-size: 18px;
	color: #ad5a55;	
}

.review-list__gerb {
	vertical-align:middle;
	margin-left:16px;
}


@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.review-list__post {
		padding:0;
	}
	.review-list__post:before {
		display:none;
	}
	.review-list__post:after {
		display:none;
	}
	
	.review-list__desc{
		font-size:13px;
	}
	.review-list__name{
		font-size:14px;
	}
	.review-list__gerb{
		max-width:32px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/why-us.css?16908104531045*/
.why-us {
	padding:24px;
	position:relative;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	display:flex;
}
.why-us:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #a65047;
	opacity: 0.9;
	content: "";
}

.why-us__icons {
	font-size:48px;
	float:left;
	color:#fff;
	margin-right:80px;
}

.why-us__icon {
	
}

.why-us__content {
	
	color:#fff;
	position:relative;
}

.why-us__title {

}

.why-us__desc{
	
}

.why-us__desc ul {
	padding-left:16px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {

	.why-us {
		flex-direction:column-reverse;
	}	
	.why-us__desc{
		padding:1px 0;
	}
	.why-us__content {
		margin-left:0;
	}
	
	.why-us__title {
		text-align:center;
	}	
	
	.why-us__icons {
		text-align:center;
		display:flex;
		justify-content: center;
		margin-top:16px;
	}
	
	.why-us__icon {
		margin: 0 16px;
	}
	
}
/* End */


/* Start:/local/templates/ritual/css/b-more.css?16908104531654*/

.b-more {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}


.b-more:first-child {
    margin-top: 0;
}

.b-more:after {
    clear: both;
    display: table;
    content: ''; 
}

.b-more__action {
    float: left;
    width: 190px;
}

.b-more__btn {
    font-size: 20px;
    font-weight: 600;
    border-radius: 0;
    height: auto;
    padding: 16px 20px;
    width: 100%;
}

.b-more__content {
    margin-left: 210px;
    position: relative;
}
.b-more__label {
    font-weight: 600;
}

.b-more__phone {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 4px;
	text-decoration:none;
}


.b-more__phone:first-child {
    margin-top: 0;
}



@media (max-width: 1023px){

    .b-more {
        margin-top: 20px;
        max-width: 420px;
    }
    .b-more__action {
        width: 160px;
    }
	
    .b-more__btn {
        font-size: 16px;
        font-weight: 400;
        padding: 13px 20px;
    }
	
    .b-more__content {
        margin-left: 180px;
    }	
	
    .b-more__phone {
        font-size: 26px;
    }	
}

@media (max-width: 767px){

    .b-more {

    }
	

    .b-more__btn {
        font-size: 14px;
        font-weight: 400;
        padding: 10px 20px;
    }
    .b-more__phone {
        font-size: 22px;
    }	
	
}

@media (max-width: 479px){

    .b-more {
        text-align: center;
    }
    .b-more__action {
        float: none;
        width: auto;
        text-align: center;
    }	
	
    .b-more__btn {
        width: auto;
    }

    .b-more__content {
        margin-top: 10px;
        margin-left: 0;
        top: 0;
        margin-bottom: 0;
    }	
}

/* End */


/* Start:/local/templates/ritual/css/b-map.css?1690810453867*/
.b-map{
	display:flex;
	font-family:'Open Sans','Arial','Sans-Serif';
	font-size:16px;
}

.b-map__map {
	width:64%;
	padding-right:16px;
	flex-shrink:0;
}
.b-map__content {
	
}

.b-map__contact{
	margin:8px 0;
}
.b-map__contact:first-child {
	margin-top:0;
}
.b-map__contact-label {
	text-transform:uppercase;
	color:#ad5a55;
}
.b-map__contact-value {
	color:#000;
	text-decoration:none;
}
.b-map__icon {
	color:#ad5a55;
	font-size:24px;
	vertical-align:middle;
}


@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.b-map{
		font-size:15px;
	}
}


@media screen and (max-width: 1024px) {
	.b-map{
		font-size:14px;
	}
}


@media screen and (max-width: 768px) {
	.b-map{
		flex-direction:column;
	}	
	.b-map__map {
		width:100%;
	}
	.b-map__content {
		width:100%;
		text-align:center;
		margin-top:16px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/header-logo-desc.css?1690810453156*/
.header-logo-desc {
	font-family:'Open Sans','Arial','Sans-Serif';
	/* font-weight:600; */
}

.header-logo-desc__link{
	color:#222;
	text-decoration:none;
}
/* End */


/* Start:/local/templates/ritual/css/section-list.css?16908104532261*/
.section-list {
}

.section-list__item {
}
.section-list__item_active {
	border-bottom:1px solid #e2e1e1;
}

.section-list__title {
    font-size: 15px;
    font-weight: bold;
    color: #ab5a57;
    line-height: 22px;
    height: 40px;
    padding-top: 16px;
    cursor: pointer;
    background: url('/local/templates/ritual/css/../images/newimg/arrows.png') no-repeat 100% -11px;
    border-bottom: 1px solid transparent;
    position: relative;
}

.section-list__title:hover {
    color: #814340;
    background: url('/local/templates/ritual/css/../images/newimg/arrows.png') no-repeat 100% -49px;
    border-color: #e2e1e1;
}

.section-list__item_active .section-list__title {
    color: #ad5a56;
	background: url('/local/templates/ritual/css/../images/newimg/arrows.png') no-repeat 100% -49px;
	border-color: #e2e1e1;
}

.section-list__item_active .section-list__title:hover {
    color: #814340;
}

.section-list__content {
    padding-bottom: 10px;
    border-bottom: 1px solid transparent;
    padding-top: 10px;
	display:none;
}

.section-list__item_active .section-list__content {
    display:block;
}

.section-list__content-list {
}

.section-list__content-item {
    list-style: none;
    display: block;
    margin-left: 0 !important;
}

.section-list__item:last-of-type .section-list__content {
    border-bottom: none;
}

.section-list__link {
    color: rgba(87, 87, 87, 0.82);
    font-size: 14px;
    line-height: 26px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    transition: all .3s ease;
    padding-left: 15px;
    border-radius: 0 !important;
    padding-top: 6px;
    padding-bottom: 6px;
}

.section-list__link:hover {
    background: #ad7770;
    color: #fff;
}

.section-list__link_active{
    background: #ad7770;
    color: #fff;	
}

.section-list__title-link {
    display: inline-block;
    padding-right: 25px;
    position: relative;
}

.section-list__title-link-follow {
    width: 76px;
    height: 23px;
    background: #ad5a56;
    color: #fff;
    font-family: Open Sans,sans-serif;
    font-size: 13px;
    border-radius: 2px;
    text-align: center;
    font-weight: 400;
    text-decoration: none;
    transition: all .3s ease;
    position: absolute;
    right: 45px;
}

.section-list__title-link-follow:hover {
    background: #814340;
}
/* End */


/* Start:/local/templates/ritual/css/catalog-item.css?1690810453514*/
.catalog-item{
	
}

.catalog-item__view{
}


.catalog-item__view-link{
	height: 256px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.catalog-item__image{
	max-height:100%;
	transition: all .3s ease;
}

.catalog-item:hover .catalog-item__image{
	opacity:.8;
}

.catalog-item__content{
	padding-top:8px;
}

.catalog-item__title{
	text-align:center;
	font-size: 14px;
	font-weight: 700;
}

.catalog-item__name{
	text-decoration:none;
}

.catalog-item:hover .catalog-item__name{
	color:#814340;
}
/* End */


/* Start:/local/templates/ritual/css/smi-item.css?16908104531184*/
.smi-item{
	width: 100%;
	display: flex;
	padding-bottom: 24px;
	border-bottom: 1px solid #e7e6e6;
	margin-bottom: 24px;
}

.smi-item__view{
	flex: 0 0 304px;
	padding-right: 24px;
	border-right: 1px solid #e7e6e6;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	box-sizing:border-box;
}

.smi-item__image{
	
}

.smi-item__content{
	flex-grow:1;
	padding-left:24px;
}

.smi-item__name{
	font-size: 19px;
	line-height: 26px;
	color: #ab5a57;
	font-weight: bold;
}

.smi-item__date{
	font-size: 14px;
	color: #b0b0b0;
	line-height: 20px;
	font-weight: bold;
	margin: 16px 0;
}

.smi-item__action{
	display:flex;
	margin-top:16px;
	justify-content:right;
}

.smi-item__desc{
	font-size: 16px;
	line-height: 26px;
	color: #000;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.smi-item{
		flex-direction:column;
	}
	.smi-item__view{
		width:100%;
		border:0;
		padding:0;
	}
	.smi-item__content{
		width:100%;
		border:0;
		padding:0;
		margin-top:16px;
	}
	.smi-item__date{
		margin:8px 0;
	}
}
/* End */


/* Start:/local/templates/ritual/css/insrtuction.css?1690810453589*/
.instruction{
}

.instruction__view{
	text-align:center;
}

.instruction__image{
	max-height:164px;
}
.instruction__image_md{
	max-height:224px;
}

.instruction__content{
	margin-top:16px;
}

.instruction__name{
	text-align:center;
	font-size:14px;
	font-weight:600;
	line-height:16px;
	height:32px;
}
.instruction__desc{
	font-size:12px;
	line-height:1.4;
	color:#666;
	margin-top:8px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	
}
/* End */


/* Start:/local/templates/ritual/css/qr-memo.css?16908104531119*/
.qr-memo{
	background-repeat:no-repeat;
	background-size:cover;
	padding:24px 24px 32px;
	position:relative;
}

.qr-memo:before{
	position:absolute;
	display:block;
	content:"";
	width:100%;
	height:100%;
	background:#ad5a55;
	opacity:0.9;
	left:0;
	top:0;
}

.qr-memo__header{
	text-align:center;
	position:relative;
}

.qr-memo__content{
	text-align:center;
	margin-top:32px;	
	position:relative;
}

.qr-memo__btn{
	text-transform:uppercase;
	padding:16px 64px;
	border:2px solid #fff;
	border-radius:8px;
	color:#fff;
	display:inline-block;
	font-size:21px;
	text-decoration:none;
	font-weight:700;
	transition: all 0.2s;
}
.qr-memo__btn:hover {
	background:rgba(255,255,255,0.16);
}

.qr-memo__footer{
	margin-top:32px;
	position:relative;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.qr-memo__btn{
		padding:16px 24px;
		font-size:16px;
		max-width:100%:
	}
}

@media screen and (max-width: 416px) {
	.qr-memo__btn{
		padding:8px 12px;
		font-size:14px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/qr-promo.css?1690810453222*/
.qr-promo{
	display:flex;
	align-items:center;
	justify-content: center;
}

.qr-promo__desc{
	color:#fff;
	text-align:right;
}

.qr-promo__view{
	padding-left:16px;
}

.qr-promo__image{
	max-width:48px;
	max-height:48px;
}
/* End */


/* Start:/local/templates/ritual/css/funeral-organization.css?1690810453447*/
.funeral-organization {

}

.funeral-organization__view {
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center center;
	width:100px;
	height:100px;
	transform:scale(0.7);
	transition:transform 0.2s;
	margin:0 auto;
}

.funeral-organization__view:hover {
	transform:scale(0.8);
}


.funeral-organization__title{
	text-align:center;
	margin-top:8px;
}

.funeral-organization__image{
	display:none; 
	max-height:100%;
}
/* End */


/* Start:/local/templates/ritual/css/region-selector.css?16908104531373*/
.region-selector {
	font-size:17px;
	padding:32px 44px 64px;
	width:560px;
	max-width:100%;
	box-sizing:border-box;
	overflow:hidden;
	background: #fff /* url(/local/templates/ritual/css/assets/region-selector/bg.png) right -104px center no-repeat */	
}

.region-selector__title{
	text-transform: uppercase;
	font-weight: 700;
}

.region-selector__list{
	position:relative;
	padding-top:16px;
	column-count: 3;
}

.region-selector__item{
	padding-bottom:8px;
	position:relative;
	width:100%;
	break-inside: avoid-column;
}
.region-selector__link{
	color: #3a3329;
	border-bottom: 1px dashed #6c6253;
	text-decoration: none;
	display:inline-block;
}

.region-selector__link_closed{
	color:#aaa;
	border-bottom-color: transparent;
}

.region-selector__link:hover{
	color: #b15b57;
	border-bottom-color: #b15b57;
}

.region-selector__link_closed:hover{
	color:#aaa;
	border-bottom-color: transparent;
}
.region-selector__popup{
	padding:0 !important;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.region-selector__list{
		
	}
	.region-selector__item{
		width:100%;
	}
}

@media screen and (max-width: 600px) {
	.region-selector__list{
		column-count: 2;	
	}
}

@media screen and (max-width: 480px) {
	.region-selector__list{
		column-count: 1;	
	}
}
/* End */


/* Start:/local/templates/ritual/css/section-slider.css?16908104531327*/
.section-slider{
	
}

.section-slider__slide{
	
}
.section-slider__item{
	text-decoration:none;
	display:block;
	padding:32px;
}

.section-slider__view {
	width:70px;
	height:70px;
	display:flex;
	margin: auto;
	transform:scale(1);
	transition:transform 0.2s;
}
.section-slider__view svg {
	fill:#ad5a55;
	width:100%;
}
.section-slider__item:hover .section-slider__view {
	transform:scale(1.1);
}


.section-slider__title{
	font-size:22px;
	line-height:1.4;
	text-align:center;
	color:#222;
	margin-top:16px;
	height:2.8em;
}
.section-slider__action{
	display:flex;
	justify-content: center;
	margin-top:16px;
}

.section-slider .owl-stage {
	margin: 0 auto;
}

.section-slider .owl-nav{
	position:absolute;
	top:50%;
	left:0;
	width:100%;
}
.section-slider .owl-prev{
	position: absolute;
	left: 0;
	transform: translateY(-75%);
}
.section-slider .owl-next{
	position: absolute;
	right: 0;
	transform: translateY(-75%);
}


.section-slider .owl-nav span{
	font-size:96px;
	color:#eee;
}
.section-slider .owl-nav:hover span{
	color:#ddd;
}

.section-slider__btn {
	min-width:224px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.section-slider__btn{
		min-width:160px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/line-gallery.css?1690810453603*/
.line-gallery{
	display:flex;
	justify-content: center;
	margin:32px 0;
}

.line-gallery__item{
	max-height:196px;
	text-align: center;
	flex-basis:100%;
}

.line-gallery__image{
	height:100%;
	transition:transform 0.2s;
}

.line-gallery__image:hover{
	transform:scale(1.2);
}


@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	
}

@media screen and (max-width: 416px) {
	.line-gallery{
		flex-wrap:wrap;
	}
	.line-gallery__item{	
		flex-basis:100%;
	}
}

/* End */


/* Start:/local/templates/ritual/css/vacancy.css?1690810453823*/
.vacancy {
	
}

.vacancy__name {
	color: #ad5a55;
	font-size: 22px;
	font-weight: 900;
}

.vacancy__desc {
	margin-top:24px;
}

.vacancy__field {
	
}
.vacancy__field-label {
	font-weight:700;
	color:#ad5a55;
}
.vacancy__field-value {
	margin:8px 0 16px;
}

.vacancy__more{
	position:relative;
	text-align:center;

    -ms-user-select: none; 
    -moz-user-select: none; 
    -webkit-user-select: none; 
    user-select: none; 
	
}
.vacancy__more:before{
	content:"";
	border:1px dashed #ccc;
	display:block;
	position:absolute;
	width:100%;
	top:24px;
}

.vacancy__more-title{
	
	cursor:pointer;
	font-weight:700;
	color:#ad5a55;
	background:#fefdfd;
	display:inline-block;
	position:relative;
	padding:16px;
}

.vacancy__request{
	margin:32px 0;
	display:flex;
	justify-content:center;
}

.vacancy__popup{
	display:none;
}
/* End */


/* Start:/local/templates/ritual/css/catalog.css?1690810453106*/
.catalog {
	display:flex;
}

.catalog__side {
	width:280px;
}

.catalog__content {
	padding-left:32px;
}


/* End */


/* Start:/local/templates/ritual/css/calc.css?16908104533434*/
.calc {
	margin:48px 0;
}

.calc__section {
	padding: 16px 0 24px 0;
	width: 100%;	
	border-top:1px solid #acacac;
}


.calc__section-title {
	color: #ad5a55;
	font-size: 16px;
	font-weight: 900;
	margin-bottom: 23px;
}

.calc__inputs{
	display:flex;
	flex-wrap:wrap;
}

.calc__input{
	width:33.33%;
	padding-right:32px;
	box-sizing:border-box;
}
.calc__input_pattern{
	display:none;
}


.calc__input_multi{
	padding-right:164px;
	width:50%;
}
.calc__input-title{
	display:flex;
	
	color: #7f7f7f;
	font-weight: 800;
	font-size: 13px;	
}
.calc__input_active .calc__input-title{
	color:#000;
}
.calc__input-name{
	flex-grow:1;
}
.calc__input-name-value{	
}

.calc__input-required{
	white-space:nowrap;
	font-size: 11px;
	color: #ad5a55;
	font-weight:400;
}
.calc__input-cost {
	text-align:right;
}
.calc__input-cost{
	white-space:nowrap;
}
.calc__input-cost {

}
.calc__input-price {
	text-align:right;
}

.calc__input-multi{
	position:relative;
	display:flex;
}
.calc__input-value{
	margin-top:8px;
	width:100%;
	position:relative;	
}
.calc__select-value_open .calc__select-icon{
	transform:rotate(180deg);
}
.calc__select{	
	height:48px;
	display: flex;
	align-items: center;
	padding: 0 32px 0 8px;
	border: 1px solid #acacac;
	color: #7f7f7f;
	font-weight: 600;
	font-size: 16px;
	box-sizing:border-box;
	cursor:pointer;
}
.calc__select_error{
	border-color:#ff0000;
}
.calc__input-value_active .calc__select {
	color:#000;
}
.calc__select-value {
	box-shadow: 0 11px 26px -8px #646361;
	display: none;
	position: absolute; 
	width: 100%;
	background: #ffffff;
	z-index:1;
	padding:4px 0;
}

.calc__select-option {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	font-weight: 400;
	font-size: 16px;
	transition: .3s ease;
	cursor: pointer;
	color:#000;
}

.calc__select-option:hover {
	background: #f5f3ee;
}

.calc__select-action{
	position:absolute;
	bottom:0px;
	right:-112px;
	width:112px;
	font-size:0;
	
}
.calc__select-btn{
	width:48px;
	height:48px;
	display:inline-block;
	vertical-align:top;
	margin:0 4px;
	border-radius:12px;
	cursor:pointer;
	font-size:24px;
	color:#fff;
	line-height:1;
	text-align:center;
	padding:12px 0;
	box-sizing:border-box;
	display:none;
}
.calc__select-btn_add{
	background:#ad5a55;
}
.calc__select-btn_remove{
	background:#d0d0d0;
}


.calc__select-icon {
	position: absolute;
	width:24px;
	height:24px;
	bottom: 12px;
	right: 16px;
	font-size: 24px;
	line-height: 24px;
	pointer-events:none;
	color:#ad5a55;
}

.calc__footer{
	display:flex;
	padding: 24px 0;
	width: 100%;	
	border-top:1px solid #acacac;
	border-bottom:1px solid #acacac;
}
.calc__footer-action{
	flex-grow:1;
}
.calc__order{
	color: #ffffff;
	background: #ad5a55;
	text-transform: uppercase;
	padding: 12px 48px;
	cursor: pointer;
	border-radius: 8px;
	display:inline-block;
}

.calc__footer-total {
    color: #ad5a55;
    font-size: 22px;
    font-weight: 900;
}
.calc__form{
	width:100%;
	max-width:416px;
}
@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.calc__input{
		width:50%;
		margin: 16px 0;
	}
}


@media screen and (max-width: 768px) {
	.calc__input{
		width:100%;
		padding:0;
	}	
	.calc__input_multi{
		width:100%;
		padding-right: 112px;
		box-sizing: border-box;
	}
	
	.calc__footer{
		flex-direction:column-reverse;
		text-align:center;
	}
	.calc__footer-action{
		margin-top:16px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/coffin.css?169081045311550*/
.caluc-wrap.active-wrap {
    display: block;

}

.caluc-wrap {
    display: none;
}

.calc-title {
    margin-top: 55px;
    padding-bottom: 25px;
    border-bottom: 1px solid #acacac;
}

.coffin {
    padding: 16px 0 26px 0;
    width: 100%;
    border-bottom: 1px solid #acacac;
}

.coffin-title {
    color: #ad5a55;
    font-size: 16px;
    font-weight: 900;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 23px;
}

.coffin-inputs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.coffin-input-block {
    position: relative;
    width: 30%;
    margin-bottom: 11px;
}

.coffin-input-title {
    color: #7f7f7f;
    font-weight: 800;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.coffin-input-title.active {
    color: #333333;
}

.coffin-input-title span {
    display: inline-block;
}

.requir {
    font-size: 11px;
    color: #ad5a55;
    display: block;
    text-align: left;
    font-weight: 400;
}

.calc-clone .requir {
    position: absolute;
    /* width: 100%; */
    text-align: left;
    float: left;
    width: 100%;
    right: 0.5%
}

.calc-clone-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #acacac;
}

.calc-clone-wrap .coffin {
    width: 30%;
    padding-right: 13%;
    border-bottom: none;
}

.calc-clone-wrap .coffin .coffin-input-block {
    width: 100%;
}

.calc-clone-wrap .coffin .coffin-input-block {
    width: 100%;
}

.form-vac.calc-form {
    background: rgba(0, 0, 0, 0.561);
}

.form-vac.calc-form .form-vacOverlay {
    background: transparent;
}

.coffin-input-title {
    color: #7f7f7f;
    font-weight: 800;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.coffin-input-title.active {
    color: #333333;
}

.coffin-input-title span {
    display: inline-block;
}

.coffin-input {
    height: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 35px 0 11px;
    border: 1px solid #acacac;
    background: url("/local/templates/ritual/css/../images/select-str.png") no-repeat 96% -24px;
    color: #7f7f7f;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.coffin-input.deployed {
    background: url("/local/templates/ritual/css/../images/select-str.png") no-repeat 96% 15px;
}

.coffin-input.active {
    color: #333333;
}

.coffin-list {
    -webkit-box-shadow: 0 11px 26px -8px #646361;
    box-shadow: 0 11px 26px -8px #646361;
    display: none;
    position: absolute;
    width: 100%;
    background: #ffffff;
    z-index: 9;
}

.coffin-list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 11px;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #ad5a55;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    cursor: pointer;
    margin-left: 0 !important;
}

.coffin-list-item:hover {
    background: #f5f3ee;
}

.crest {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.crest .coffin-input-block {
    margin-right: 50px;
}

.calc-clone .coffin-inputs {
    display: block;
}

.coffin-input-group {
    position: relative;
}

.buttons-calc {
    margin-bottom: -30px;

    position: absolute;
    top: 0;
    left: 97%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 18px;
    width: 100px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.coffin-input-block:first-of-type .buttons-calc {
    top: 29px !important;
}

.plus {
    width: 45px;
    height: 45px;
    background: #ad5a55 url("/local/templates/ritual/css/../images/plus-calc.png") center center no-repeat;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    cursor: pointer;
}

.minus {
    width: 45px;
    height: 45px;
    background: #d0d0d0 url("/local/templates/ritual/css/../images/minus-calc.png") center center no-repeat;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    display: none;
    cursor: pointer;
}

.calcFooter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px 0 75px 0;
}

.issue {
    color: #ffffff;
    background: #ad5a55;
    text-transform: uppercase;
    padding: 12px 40px;
    cursor: pointer;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
	font-family: 'Open Sans';
}

.itogo {
	font-family: 'Open Sans', sans-serif;
    color: #ad5a55;
    font-size: 22px;
    font-weight: 900;
}

.hidden-form {
    display: none;
}

.calc-clone .coffin-input-title {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media all and (max-width: 1000px) {
    .coffin-input-title {
        height: 30px;
    }
}

@media all and (max-width: 800px) {
    .coffin-inputs {
        display: block;
    }

    .coffin-input-block {
        width: 81%;
        margin-bottom: 20px;
    }

    .coffin-input-title {
        height: auto;
    }

    .calc-clone .coffin-inputs .coffin-input-block:first-child {
        margin-bottom: 30px;
    }

    .coffin-list {
        width: 66.7%;
        max-width: 1000px;
    }
}

@media all and (max-width: 600px) {
	.form-vac .form-vacInner{
height: auto !important;
}
    .dba-grob {
        display: block !important;
    }

    .coffin-input-block:first-of-type .buttons-calc {
        top: 26px !important;
    }

    .buttons-calc {
        top: 2px;
    }

    .coffin-input {
        padding-right: 15px;
    }

    .coffin.calc-clone.in-cof .coffin-input-block {
        width: 77%;
    }

    .coffin-input {
        height: 35px;
        padding-right: 30px !important;
        font-size: 12px;
    }

    .minus {
        -webkit-transform: translateX(0) scale(0.7) !important;
        -moz-transform: translateX(0) scale(0.7) !important;
        -ms-transform: translateX(0) scale(0.7) !important;
        -o-transform: translateX(0) scale(0.7) !important;
        transform: translateX(0) scale(0.7) !important;
    }

    .calc-clone .coffin-input-block:not(.calc-one-input) {
        width: 77%;
    }

    .coffin-input-block {
        width: 100%;
        margin-bottom: 20px;
    }

    .calc-clone .coffin-list:not(.calc-one-input) {
        width: 100%;
    }

    .coffin-list {
        width: 100%;
        word-wrap: break-word;
    }

    .buttons-calc {
        -webkit-transform: translateX(7px);
        -moz-transform: translateX(7px);
        -ms-transform: translateX(7px);
        -o-transform: translateX(7px);
        transform: translateX(7px);
        bottom: 35px;
        width: 68px;
        margin-left: 4px;
    }

    .plus, .minus {
        width: 35px;
        height: 35px;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
    }

    .calcFooter {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .itogo {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
        padding: 0 1%;
        font-size: 20px;
    }

    .calcFooter span {
        display: block;
    }

    .buttons button.button2 {
        margin-left: 0;
    }

    .coffin-list-item {
        font-size: 13px;
    }

  

    .calc-one-input ul {
        width: 100% !important;
    }

    .coffin-input-title {
        font-size: 13px;
        font-weight: 700;
    }

    .coffin-input-title span {
        max-width: 100%;
    }

    .issue {
        padding: 0;
        width: 100%;
        height: 47px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .coffin {
        padding: 10px 0 0 0;
    }

    .calc-clone .coffin-inputs .coffin-input-block:first-child {
        margin-bottom: 20px;
    }

    .coffin-title {
        margin-bottom: 14px;
        font-size: 15px;
        font-weight: 700;
    }

    .calc-clone-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .calc-clone-wrap .coffin{
        width: 100%;
    }
}

@media all and (max-width: 350px) {
    .coffin-input {
        height: 35px;
        font-size: 11px;
        padding: 0 1%;
    }

.coffin-input-title, .coffin-input-title span {
    font-size: 10px !important;
}
}

/* End */


/* Start:/local/templates/ritual/css/slim-bubba.css?16908104533401*/
.slim-bubba {
	position: relative;
	width:1000px;
	max-width:100%;
	margin:32px auto;
	font-family:'Open Sans';	
}
.slim-bubba__effect {
	position: relative;
	overflow: hidden;
	margin: 0;
	text-align: center;
	cursor: pointer;
	background: #ad5a55;
}

.slim-bubba__image {
	position: relative;
	display: block;
	opacity: 0.5;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	min-height:115px;
}

.slim-bubba__effect:hover .slim-bubba__image {
	opacity: 0.2;
}

.slim-bubba__inner {
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
}
.slim-bubba__inner::before,
.slim-bubba__inner::after {
	pointer-events: none;
	position: absolute;
	top: 8px;
	right: 8px;
	bottom: 8px;
	left: 8px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

.slim-bubba__inner::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

.slim-bubba__inner::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}

.slim-bubba__effect:hover .slim-bubba__inner::before,
.slim-bubba__effect:hover .slim-bubba__inner::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}


.slim-bubba__title {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
	padding-top:4%;
	font-size:36px;
}

.slim-bubba__effect:hover .slim-bubba__title{
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.slim-bubba__more {
	transition: all 0.35s;
	font-size:22px;
}

.slim-bubba__effect:hover .slim-bubba__more{
	opacity:0;
}

.slim-bubba__desc {
	letter-spacing: 1px;
	text-transform:uppercase;
	opacity: 0;
	margin-top:-10px;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);	
	font-size:22px;
}

.slim-bubba__effect:hover .slim-bubba__desc {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.slim-bubba__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	z-index: 1000;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}


@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.slim-bubba__title {
		font-size:26px;
		padding-top:6%;
	}
	.slim-bubba__effect:hover .slim-bubba__title{
		opacity: 1;
		-webkit-transform: translate3d(0,-10px,0);
		transform: translate3d(0,-10px,0);
	}	
	.slim-bubba__desc {
		font-size:16px;
	}
	
	.slim-bubba__more {
		font-size:16px;
		margin-top:-10px;	
	}
	
}


@media screen and (max-width: 768px) {
	.slim-bubba__title {
		padding-top:10%;
	}
	.slim-bubba__desc {
		font-size:14px;
	}
	
	.slim-bubba__more {
		font-size:14px;
		margin-top:0;
	}
}

@media screen and (max-width: 416px) {
	.slim-bubba__title {
		font-size:16px;
		padding-top:16%;
	}
	.slim-bubba__desc {
		font-size:14px;
	}
	
	.slim-bubba__more {
		font-size:14px;
		margin-top:0;
	}
}
/* End */


/* Start:/local/templates/ritual/css/banner-only-btn.css?1690810453161*/
.banner-only-btn {
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	width:100%;
	height:186px;
}

.banner-only-btn__link{
	
}

/* End */


/* Start:/local/templates/ritual/css/mix.css?169081045338*/
.mobile-hide {
	
}

.mobile-show {
	
}
/* End */


/* Start:/local/templates/ritual/css/p-main.css?16908104532144*/
.p-main {
	max-width:1350px;
	margin-left:auto;
	margin-right:auto;
	padding-left:16px;
	padding-right:16px;
	font-family:'Open Sans','Arial','Sans-Serif';
}

.p-main__title{
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	margin:32px 0 16px;
}

.p-main__title_first{
	margin-top:0;
}

.p-main__desc {
	font-size: 15px;
	line-height: 1.4;
	color: #333;
}

.p-main__big-blocks{
	display:flex;
}
.p-main__tabs{
	flex-grow:1;
	width:50%;

	box-sizing:border-box;
	padding-right:8px;
}

.p-main__big-blocks-links{
	max-width:500px;
	width:50%;
	box-sizing:border-box;
	padding-left:8px;
	display:flex;
	flex-direction:column;
}


.p-main__big-blocks-link{
	padding:8px 0;
	box-sizing:border-box;
	height:18%;
}

.p-main__big-blocks-link:first-child{
	padding-top:0;
}

.p-main__big-blocks-link2{
	box-sizing:border-box;
	padding-top:8px;
	height:28%;
}

.p-main__guarantee {
	margin: 15px auto;
	font-family: Georgia;
	font-style: italic;
	text-align: center;	
	max-width:1024px;
}


.p-main__half {
	display:flex;
	margin:32px 0;
}

.p-main__half-col {
	width:49%;
}

.p-main__half-col_first {
	padding-right:1%;
}

.p-main__half-col_last {
	padding-left:1%;
}

.p-main__news {
	margin:32px 0;
}

.p-main__section {
	margin:32px 0;
}
@media screen and (min-width:1382px) {
	
}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.p-main__title {
		font-size:28px;
	}
}


@media screen and (max-width: 1024px) {
	.p-main__title{
		font-size:20px;
		text-align:center;
	}
}


@media screen and (max-width: 768px) {
	.p-main__title{
		font-size:14px;
	}
	.p-main__desc {
		font-size:12px;
		padding:1px 0;
	}

	
	.p-main__big-blocks{
		flex-direction:column;
	}
	.p-main__tabs{
		padding:0;
		width:100%;
	}
	.p-main__big-blocks-links{
		padding:0;
		width:100%;
		max-width:100%;
		margin-top:32px;
	}

	.p-main__big-blocks-link{
		padding:4px 0;
	}	
	
	.p-main__half {
		flex-direction:column;
	}
	
	.p-main__half-col {
		width:100%;
	}
	
	.p-main__half-col_first {
		padding-right:0;
	}

	.p-main__half-col_last {
		padding-left:0;
		margin-top:16px;
	}
	
	.p-main__why-us{
		margin:0 -16px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/p-contact.css?1690810453820*/
.p-contact{
	
}

.p-contact__header{
	display:flex;
	justify-content: space-between;	
}


.p-contact__h4{
	font-size: 14px;
	color: #ad5a55;
	text-transform: uppercase;
	font-weight: 600;	
}

.p-contact__email {
	text-align:center;
}

.p-contact__address {
	text-align:center;
	padding:0 32px;
	box-sizing:border-box;
}
.p-contact__address .icon {
	vertical-align:middle;
	padding-right:4px;
	color:#ad5a55;
}
.p-contact__phone {
	text-align:center;
}

.p-contact__value{
	margin-top:8px;
}

.p-contact__map{
	margin-top:32px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.p-contact__header{
		flex-direction:column;
	}
	.p-contact__address {
		padding:32px 0;
	}
}
/* End */


/* Start:/local/templates/ritual/css/l-tblock.css?1690810453468*/
.l-tblock {
	display:flex;
	flex-wrap:wrap;
	margin:32px -8px;
}
.l-tblock__item {
	width:33.333%;
	padding:8px;
	box-sizing:border-box;
	min-height:128px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.l-tblock__item {
		width:50%;
		min-height:96px;
	}
	

}


@media screen and (max-width: 768px) {
	.l-tblock__item {
		padding:4px;
		min-height:64px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/l-tblock2.css?1690810453487*/
.l-tblock2 {
	display:flex;
	margin:32px -1%;
}

.l-tblock2__item {
	width:49%;
	margin:1%;
	min-height:128px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.l-tblock2__item {
		min-height:96px;
	}
}


@media screen and (max-width: 768px) {
	.l-tblock2 {
		flex-direction:column;
		margin:16px auto;
	}

	.l-tblock2__item {
		width:100%;
		margin:8px 0;
		min-height:64px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/l-arr-price.css?1690810453571*/
.l-arr-price {
	padding:16px 0;
	background:#f2efee;
}

.l-arr-price__item {
	position:relative;
}

.l-arr-price__item:after {
	top: 0px;
	left: 8%;
	position: absolute;
	width: 84%;
	content: "";
	display: block;
	border-top:1px solid #a75a53;
	opacity:.2;
}
.l-arr-price__item:first-child:after {
	display:none;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.l-arr-price__item:after {
		left: 2%;
		width: 96%;
	}
}
/* End */


/* Start:/local/templates/ritual/css/l-plan-section.css?1690810453799*/
.l-plan-section{
	display:flex;
	flex-wrap:wrap;
	margin:0 -4px;
	justify-content:center;
}

.l-plan-section__item {
	width:20%;
	flex-grow:1;
	box-sizing:border-box;
	padding:0 4px 128px;
}


@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.l-plan-section{
		margin-left:auto;
		margin-right:auto;
	}
	.l-plan-section__item {
		width:33%;
		flex-grow:0;
		padding:0 8px 128px;
	}
}


@media screen and (max-width: 1024px) {
	.l-plan-section{
		width:100%;
		margin-left:auto;
		margin-right:auto;
	}
	.l-plan-section__item {
		width:50%;
		flex-grow:0;
		padding:0 8px 128px;
	}
}


@media screen and (max-width: 768px) {
	.l-plan-section{
		width:100%;
	}
	.l-plan-section__item {
		width:100%;
		flex-grow:0;
		padding:0 0px 128px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/l-catalog-item.css?1690810453523*/
.l-catalog-item{
	
}

.l-catalog-item__list{
	display:flex;
	flex-wrap:wrap;
	position:relative;
}

.l-catalog-item__list:after{
	content: "";
	display: block;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.l-catalog-item__item{
	width:33.333%;
	box-sizing:border-box;
	padding:32px 16px;
	border-right:1px solid #e2e1e1;
	border-bottom:1px solid #e2e1e1;
}

.l-catalog-item__item:nth-child(3n){
	border-right:1px solid transparent;
}
.l-catalog-item__nav{
	margin-top:32px;
}
/* End */


/* Start:/local/templates/ritual/css/l-smi.css?169081045378*/
.l-smi{
	
}

.l-smi__item{
	margin:16px 0;
}

.l-smi__nav{
	margin-top:32px;
}
/* End */


/* Start:/local/templates/ritual/css/l-four.css?1690810453584*/
.l-four{
	display:flex;
	flex-wrap:wrap;
	margin:0 -16px;
}

.l-four__item{
	width:25%;
	box-sizing:border-box;
	padding:16px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.l-four__item{
		width:50%;
		box-sizing:border-box;
		padding:16px;
	}
}


@media screen and (max-width: 768px) {
	
}

@media screen and (max-width: 416px) {
	
	.l-four{
		display:flex;
		flex-wrap:wrap;
		margin:0;
	}	
	
	.l-four__item{
		width:100%;
		box-sizing:border-box;
		padding:16px 0;
	}	
}
/* End */


/* Start:/local/templates/ritual/css/l-three.css?1690810453592*/
.l-three{
	display:flex;
	flex-wrap:wrap;
	margin:0 -16px;
}

.l-three__item{
	width:33.33%;
	box-sizing:border-box;
	padding:16px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.l-three__item{
		width:50%;
		box-sizing:border-box;
		padding:16px;
	}
}


@media screen and (max-width: 768px) {
	
}

@media screen and (max-width: 416px) {
	
	.l-three{
		display:flex;
		flex-wrap:wrap;
		margin:0;
	}	
	
	.l-three__item{
		width:100%;
		box-sizing:border-box;
		padding:16px 0;
	}	
}
/* End */


/* Start:/local/templates/ritual/css/l-funeral-organization.css?1690810453811*/
.l-funeral-organization{
	display:flex;
	justify-content:center;
}

.l-funeral-organization__item{
	flex-basis: 100%;
	padding:8px;
	box-sizing:border-box;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.l-funeral-organization{
		flex-wrap:wrap;
	}

	.l-funeral-organization__item{
		flex-basis: 20%;
	}
}


@media screen and (max-width: 1024px) {
	.l-funeral-organization{
		flex-wrap:wrap;
	}

	.l-funeral-organization__item{
		flex-basis: 25%;
	}

}


@media screen and (max-width: 768px) {

	.l-funeral-organization__item{
		flex-basis: 33%;
	}	
}

@media screen and (max-width: 768px) {

	.l-funeral-organization__item{
		flex-basis: 50%;
	}	
}

@media screen and (max-width: 416px) {

	.l-funeral-organization__item{
		flex-basis: 100%;
	}
}
/* End */


/* Start:/local/templates/ritual/css/l-vacancy.css?169081045353*/
.l-vacancy {
	
}

.l-vacancy__item{
	margin:64px 0;
}
/* End */


/* Start:/local/templates/ritual/css/autoload/add.css?17023773569480*/
.new_foot .footer-app {
    margin-top: -5px;
}

.new_foot .footer-app p {
    font-size: 16px;
    color: #787878;

}

.new_foot .footer-app span {
    font-size: 11px;
    color: #787878;
}

.new_foot .footer-app__icons {
    display: flex;
    margin-top: 11px;
}

.new_foot .footer-app__app-store {
    background: url('/local/templates/ritual/images/app-store-x3.png') ;
    width: 158px;
    height: 54px;
    background-size: 100%;
    display: block;
    background-repeat: no-repeat;
}

.new_foot .footer-app__google-play {
    background: url('/local/templates/ritual/images/google-pl-x3.png') ;
    width: 158px;
    height: 54px;
    background-size: 100%;
    display: block;
    margin-left: 18px;
    background-repeat: no-repeat;
}

.new_foot .footer-app__app-store:hover {
    background: url('/local/templates/ritual/images/app-store-r-x3.png') ;
    background-size: 100%;
}

.new_foot .footer-app__google-play:hover {
    background: url('/local/templates/ritual/images/google-pl-r-x3.png') ;
    background-size: 100%;
}
.new_block_soc{
    display: flex;
}

#player {
    width: 300px;
    height: 220px;
    background: transparent;
    overflow: hidden;
    z-index: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}


#audio {
    display: none;
}
.cover {
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    opacity: 1;
}
.controls {
    position: relative;
    width: 100%;
    color: #fff;
    text-align: center;
}
.btnPlayer {
    margin: 10px;
    color: #ae5b55;
    background: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    text-align: center;
}
.btnPlayer:hover {
    transform: scale(1.2);
    color: #964d4b;
    transition: 1s;
}
#play-pause {
    width: 46px;
    height: 46px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}
input[type='range'] {
    background: #ae5b55;
    display: block;
    margin: 14px auto;
    width: 80px;
    height: 2px;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none !important;
}

input[type='range']::-webkit-slider-thumb {
    background: #AEAEAE;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    transition: .1s all linear;
    -webkit-transition: .1s all linear;
    -webkit-appearance: none !important;
}

input[type='range']::-webkit-slider-thumb {
    background: #ae5b55;
}

input[type='range']:hover::-webkit-slider-thumb {
    -webkit-transform: scale(2);
}
.cover .info {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.fa-pause:before {
    content: "\f04c";
}
.agent-page__form-wrapper{
    width: 50%;
}

@media (max-width: 768px){
    .agent-page__form-wrapper{
        width: 100%;
    }
    #player {
        width: 200px;
        height: 200px;
    }
    .cover {
        padding-top: 46px;
    }
    input[type='range'] {
        display: block;
        margin-top: 17px;
        height: 1px;
    }
}



@media (max-width: 1250px) {

    .ya_foot{
        display: none;

    }
    .new_foot .footer__copyright{
        padding-right: 5px;
    }
    .new_foot .footer__l-logo{
        margin-right: 15px;
    }
    .new_foot .footer-app{
        max-width: 400px;
    }


}

@media (max-width: 767px) {
    .new_block_soc{
        margin-bottom: 10px;
    }
    .new_foot {
        flex-direction: column;

    }
    .new_foot .footer-app{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        text-align: center;
    }
    .new_foot .footer-app__icons{
        margin-bottom: 10px;
    }
}

.t3block__inner {
    display: flex;
    padding: 0 14px;
    background-color: #f2efee;
    color: #161616;
    border-radius: 0;
    overflow: hidden;
    transition: all .2s;
    width: 33%;
    height: 165px;
    margin-right: 10px;
    align-items: center;
}

.t3block__inner:last-child {
    margin-right: 0;
}

.t3blocks {
    display: flex;
    margin-top: 32px;
}

.t3block__icon {
    width: 100px;
}

.t3block__title {
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 7px;
    color: #a65047;
    margin-bottom: 10px;
}

.t3block__summary {
    margin-top: 7px;
    min-height: 85px;
}

.t3block__content {
    width: 100%;
    line-height: 1.3125;
    white-space: normal;
    font-size: 15px;
    text-align: left;
    margin-left: 15px;
}
@media (max-width: 1376px){
    .t3block__icon img {
        max-height: 60px;
    }
    .t3block__content {
        font-size: 15px;

    }
    .t3block__title {
        font-size: 26px;
    }
    .t3blocks{
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .t3block__inner {
        height: unset;
        width: 48%;
        margin-top: 20px;
        background-color: #f2efee;
        padding: 5px;
        line-height: 1;
        margin-right: 0;
    }
}
@media (max-width: 1279px){
    .t3block__icon img {
        max-height: 60px;
    }
    .t3block__content {
        font-size: 15px;

    }
    .t3block__title {
        font-size: 26px;
    }
    .t3blocks{
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .t3block__inner {
        height: unset;
        width: 48%;
        margin-top: 20px;
        background-color: #f2efee;
        padding: 5px;
        line-height: 1;
    }
}

@media (max-width: 1023px) {
    .t3blocks{
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .t3block__icon {
        width: 80px;
    }
    .t3block__content {
        font-size: 13px;

    }
    .t3block__title {
        font-size: 22px;
    }
    .t3block__inner {
        height: unset;
        width: 48%;
        margin-top: 20px;
        background-color: #f2efee;
        padding: 5px;
        line-height: 1;
    }
    .new_block_icons {
        align-self: center;
        margin-top: 16px;
        width: 92%;
    }
}
@media (max-width: 767px) {
    .t3blocks{
        flex-direction: column;
    }
    .t3block__inner {
        height: unset;
        width: 100%;
        margin-top: 20px;
        background-color: transparent;
        padding: 0;
        line-height: 1;
    }
    .t3block__icon {
        width: 64px;
    }
    .t3block__icon img {
        max-width: 64px;
    }
    .t3block__title {
        font-size: 20px;
    }
    .t3block__summary{
        min-height: unset;
    }
}
@media (max-width: 479px) {
    .t3block__content {
        font-size: 12px;
        margin-left: 15px;
        padding-right: 0;
    }
    .t3block__title {
        font-size: 16px;
    }
    .t3block__summary {
        margin-top: 2px;
    }
}
.new_action_ban{
    display: flex;
    justify-content: space-between;
}
.new_action_ban .intro-banner__postcard{
    display: inline-flex;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    padding: 8px 24px;
    align-items: center;
    text-decoration: none;
}
.new_action_ban .intro-banner__postcard:hover {
    background: rgba(255,255,255,0.1);
}
.new_action_ban .intro-banner__postcard-view {
    padding-right: 16px;
}
.new_action_ban .intro-banner__postcard-icon {
    height: 24px;
    vertical-align: middle;
    font-size: 0;
}
.new_block_icons{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.new_block_icons a{
    text-decoration: none;
}
.new_block_icons .first_icon {

    margin-bottom: 16px;
}
.new_block_icons{
    max-width: 584px;
}


@media screen and (max-width: 768px){
    .new_action_ban .intro-banner__action {
        margin-top: 16px;
        text-align: center;
        font-size: 14px;
        line-height: 1.2;
    }
    .new_block_icons {
        align-self: center;
        margin-top: 16px;
        width: 92%;
    }
    .new_action_ban .yandex-rate {

        margin-left: 10px;
    }
}
@media screen and (max-width: 480px){
    .new_action_ban .intro-banner__postcard {
        width: calc(100% - 123px);
        padding: 8px;
        box-sizing: border-box;
    }
    .new_action_ban .intro-banner__postcard-view {
        display: none;
    }
    .new_action_ban .intro-banner__postcard-text {
        font-size: .9em;
    }
    .new_action_ban .yandex-rate {
        margin-left: 5px;
    }
    .new_action_ban .yandex-rate iframe{
       /* width: 100%;
        height: 100%;*/
    }
    .new_action_ban .yandex-rate img{
        width: 100%;
        height: 100%;
    }
    .new_block_icons .l-main-icon {
        flex-wrap: wrap;
        justify-content: center;
    }
    .new_block_icons .l-main-icon__block{
        margin-bottom: 10px;
    }

}
@media screen and (max-width: 380px){
    .new_action_ban .yandex-rate {
        margin-top: 10px;

    }
    .new_action_ban .intro-banner__postcard {
        width: calc(100% - 80px);
        padding: 8px;
        box-sizing: border-box;
    }
    .new_action_ban {
        flex-direction: column;
        align-items: flex-start;

    }
}





/* End */


/* Start:/local/templates/ritual/css/autoload/agent-page.css?16908104536710*/
.agent-page__header {
    display: flex;
}

.agent-page__header-img {
    width: 290px;
    height: 100%;
    box-shadow: 3px 13px 13px 1px rgba(30, 15, 0, 0.12);
    margin-right: 48px;
    flex-shrink: 0;
}

.agent-page__header-img img {
    margin: 0 auto!important;
    display: block;
}

.agent-page__qcode {
    width: 132px;
    height: 132px;
    margin: 20px 0 0px;
    flex-shrink: 0;
}

.agent-page__text {
    font-size: 20px;
}

.agent-page__text span {
    margin: 14px 0;
    display: block;
    line-height: 18px;
}

.agent-page__text span:last-child {
    margin-bottom: 0;
}

.agent-page__header-info .rating-box {
    letter-spacing: 4px;
}



@media (max-width: 768px) {

    .agent-page__header-img {
        width: 47%;
        height: auto;
        margin-right: 24px;
        align-self: flex-start;
    }



    .agent-page__qcode {
        width: 82px;
        height: 82px;
    }

    .agent-page__text {
        line-height: 20px;
        font-size: 16px;
    }
}

@media (max-width: 600px) and (min-width: 420px) {
    .agent-page__header {
        
    }

    .agent-page__text {
        margin-top: 8px;
    }
}

@media (max-width: 420px) {
    .agent-page__header-img {
        width: 100%;
        height: 100%;
        margin: 0 0 12px;

    }

    .agent-page__qcode {
        width: 92px;
        height: 92px;
        margin: 12px 0 5px;
    }

    .agent-page__header {
        display: flex;
        flex-direction: column;
    }
}



.agent-page__middle {
    margin-top: 32px;
    padding: 14px 0;
    position: relative;
    box-sizing: border-box;
}

.agent-page__middle-inner {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 0 40px;
	box-sizing:border-box;
    height: 100% !important;
}

.agent-page__middle .service-arrow-right,
.agent-page__middle .service-arrow-left {
    top: 50%;
}

.agent-page__middle .service-arrow-right {
    right: -5px;
}

.agent-page__middle .service-arrow-left {
    left: -5px;
}

.agent-page__middle .owl-dots {
    display: flex !important;
    width: 100%;
    list-style-type: none;
    justify-content: space-between;
}

.agent-page__middle .owl-dot {
    width: 10%;
    height: 4px;
    margin: 0;
    cursor: pointer;
}

.agent-page__middle .owl-dot span {
	background-color: #999999;
	height:4px;
}

.agent-page__middle .owl-dot.active span{
    background-color: #AD5A55;
}


.agent-page__middle::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #AD5A55;
    position: absolute;
    top: 0;
}

.agent-page__middle::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #AD5A55;
    position: absolute;
    bottom: 0;
}

.agent-page__middle-left {
    width: 50%;
    box-sizing: border-box;
    padding-right: 32px
}

.agent-page__middle-right {
    width: 50%;
    box-sizing: border-box;
    padding-left: 32px
}

.agent-page__middle-left>p {
    font-weight: 700;
}

.agent-page__middle-left>ul {
    margin-top: 0;
}



.agent-page__middle span {
    color: #AD5A55;
    font-size: 20px;
    display: block;
}

.agent-page__middle-left>span {
    margin-bottom: 16px;
}

.agent-page__middle-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.agent-page__middle-right>span {
    margin-bottom: 32px;
}

.agent-page__middle-right img {
    max-height: 224px;
	display: inline !important;
	width: auto !important;
}


@media (max-width: 992px) {
    .agent-page__middle-inner {
        flex-direction: column;
    }

    .agent-page__middle-left {
        width: 100%;
        padding: 16px 0 0 0;
    }

    .agent-page__middle-right {
        width: 100%;
        order: -1;
        padding: 0;
    }


    .agent-page__middle span {
        text-align: center;
        margin-bottom: 12px;
    }

    .agent-page__middle-right span {
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {

    .agent-page__middle .service-arrow-right,
    .agent-page__middle .service-arrow-left {
        transform: scale(0.75)
    }

    .agent-page__middle-inner {
        padding: 0 16px;
    }

    .agent-page__middle .service-arrow-right {
        right: -15px;
    }

    .agent-page__middle .service-arrow-left {
        left: -15px;
    }
}

.agent-page__review-header {
    display: flex;
    align-items: center;
}

.agent-page__review-all {
    display: inline-block;
    border-radius: 0;
    color: #999;
    border-bottom: 1px solid #b5b5b5;
    text-decoration: none;
    font-size: 13px;
    transform: translateY(-34px);
    cursor: pointer;
}

.agent-page__review-body .l-reviews__item:first-child {
    margin: 0 0 64px 0;
}

.agent-page__review-body .l-reviews__item {
    display: block;
}

.agent-page__review-body .l-reviews__item:nth-child(n+3) {
    display: none
}

/* .agent-page__review-body.open .l-reviews__item:nth-child(n+3) {
    display: block
}  */

.agent-page__review-title {
    font-weight: 700;
    color: #333;
    font-size: 21px;
    margin: 32px 12px 32px 0;
}

.agent-page__form-wrapper {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
}

.agent-page__form {
    display: flex;
    flex-direction: column;
    flex: 1
}

.agent-page__form input {
    height: 43px;
    font-size: 16px;
    padding: 0 16px;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    border: 1px solid #999999;
}

.agent-page__form textarea {
    resize: vertical;
    font-size: 16px;
    padding: 10px 16px;
    font-family: "Open Sans", Arial, sans-serif;
    border: 1px solid #999999;
    color: #000;
    height: 142px;
}

.agent-page__form button {
    height: 48px;
    width: 100%;
    max-width: 360px;
    background-color: #AD5A55;
    color: #fff;
    border: 0;
    font-size: 20px;
    transition: 0.3s;
    margin-top: 18px;
    cursor: pointer;
}

.agent-page__form button:hover {
    background-color: #814340;
}

.agent-page__form-header {
    font-size: 21px;
    line-height: 21.33px;
    font-weight: bold;
}

.agent-page__input-header {
    font-size: 16px;
    line-height: 21.33px;
    margin: 18px 0 8px;
    color: #999999;
}

.agent-page__input-header span {
    color: #AD5A55;
}

.agent-page__form-block {
    width: 256px;
    height: 256px;
    margin-left: 8%;
    margin-top: 68px;
}

@media (max-width: 1024px) {
    .agent-page__form-wrapper {
        flex-direction: column;
    }

    .agent-page__form {
        width: 100%;
    }

    .agent-page__form-block {
        margin: 24px 0 0 0;
    }
}

@media (max-width: 768px) {
    .agent-page__form-block {
        width: 192px;
        height: 192px;
    }
}
/* End */


/* Start:/local/templates/ritual/css/autoload/article-detail.css?169081045397*/
.article-detail{
	
}

.article-detail__date {
	font-size:14px;
	color:#999;
	text-align:right;

}
/* End */


/* Start:/local/templates/ritual/css/autoload/banner-bubba.css?16908104532818*/
.banner-bubba{
	height:152px;
	background-color:rgba(255, 255, 255, .48);
	margin:16px 0;
	font-size:16px;
	line-height:1.2;
	background-repeat:no-repeat;
	background-size:cover;
	display:block;
	position:relative;
	box-sizing:border-box;
	font-family:'Open Sans','Arial','Sans-Serif';
	text-decoration:none;
}

.banner-bubba:before{
	content:"";
	display:block;
	width:100%;
	height:100%;
	top:0;
	left:0;
	position:absolute;	
	background-color:rgba(173, 90, 85, .64);
	transition:all .2s ease;
}
.banner-bubba:hover:before{
	background-color:rgba(173, 90, 85, .80);
}

.banner-bubba__content{
	position:relative;
	text-align:center;
	color:#fff;
	height:100%;

	display: flex;
	flex-direction: column;
	justify-content: center;

	
}

.banner-bubba__content:before,
.banner-bubba__content:after{
	content: '';
	pointer-events: none;
	position: absolute;
	top: 8px;
	right: 8px;
	bottom: 8px;
	left: 8px;
	opacity: 0;
	transition: all .35s ease;
}
.banner-bubba__content:before{
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: scale(1,0);
	
}

.banner-bubba__content:after{
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: scale(0,1);
}

.banner-bubba:hover .banner-bubba__content:before,
.banner-bubba:hover .banner-bubba__content:after {
	transform: scale(1);
	opacity:1;
}

.banner-bubba__name{
	font-size:36px;
	transform:translateY(-8px);
	transition:all .2s ease;
	padding:0 16px;
	box-sizing:border-box;
	text-transform:uppercase;
}

.banner-bubba:hover .banner-bubba__name{
	transform:translateY(0);
}

.banner-bubba__desc {
	opacity:1;
	transition:all .2s ease;
	font-size:18px;
	line-height:1.2em;
	height:1.2em;
	padding:0 16px;
	box-sizing:border-box;	
}

.banner-bubba:hover .banner-bubba__desc{
	opacity:0;
}

.banner-bubba__desc-hover {
	font-size:20px;
	transform:translateY(16px);
	opacity:0;
	transition:all .2s ease;
	line-height:1.2em;
	height:1.2em;	
	padding:0 16px;
	box-sizing:border-box;	
}

.banner-bubba:hover .banner-bubba__desc-hover {
	transform:translateY(-8px);
	opacity:1;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
		
}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.banner-bubba__name{
		font-size:24px;
		font-weight:700;
	}
	.banner-bubba__desc{
		font-size:18px;
		opacity:0;
	}
	.banner-bubba__desc-hover{
		font-size:16px;
		opacity:1;
		border:1px solid #fff;
		border-radius:4px;
		height:auto;
		margin:0 auto;
		padding:8px 16px;
		box-sizing:border-box;		
		transform:translateY(0);
	}
}


@media screen and (max-width: 416px) {
	.banner-bubba__name{
		font-size:18px;
		letter-spacing:1px;
	}
	.banner-bubba__desc{
		font-size:14px;
	}
	.banner-bubba__desc-hover{
		font-size:14px;
		transform:translateY(8px);
	}
}
/* End */


/* Start:/local/templates/ritual/css/autoload/banner-bubba_menu.css?1690810453889*/
.banner-bubba_menu{
	
}

.banner-bubba_menu .banner-bubba__name{
	text-transform:uppercase;
	font-weight:700;
	transform:translateY(0);
	font-size:22px;
}

.banner-bubba_menu .banner-bubba__desc{
	font-size:16px;
}
.banner-bubba_menu .banner-bubba__desc-hover{
	transform:translateY(0);
	font-size:16px;
}

.banner-bubba_menu:hover .banner-bubba__desc-hover{
	transform:translateY(-1.2em);
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	
	.banner-bubba_menu .banner-bubba__name{
		font-size:16px;
	}
	
	.banner-bubba_menu .banner-bubba__desc{
		max-width:80% !important;
	}
	
	.banner-bubba_menu .banner-bubba__desc-hover{
		max-width:80%;
	}	
	
	.banner-bubba_menu:hover .banner-bubba__desc-hover{
		transform:translateY(-0.6em);
	}	
}
/* End */


/* Start:/local/templates/ritual/css/autoload/banner-md.css?16908104531471*/
.banner-md{
	height:204px;
	background-color:rgba(255, 255, 255, .48);
	margin:16px 0;
	font-size:16px;
	line-height:1.2;
	background-repeat:no-repeat;
	background-size:cover;
}
.banner-md__content{
	display: flex;
	justify-content: center;
	height: 100%;
	position: relative;
	align-items: center;
	overflow:hidden;
}
.banner-md__link{
	color: #ad5a55;
	border: 3px #ad5a55 solid;
	text-transform: uppercase;
	padding: 16px 48px;
	font-size: 36px;
	font-weight: 600;
	border-radius: 0;
	
	display:inline-block;
	
	transition:all 0.2s ease;
	max-width:80%;
	box-sizing:border-box;
	
	text-align:center;
	
	text-decoration:none;
}
.banner-md__link:hover{
	color: #fff;
	background-color:rgba(173, 90, 85, 0.64); 
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
	.banner-md{
		padding:16px 0;
		height:auto;
	}	

	.banner-md__content{
		min-height:204px;
	}		
	
	.banner-md__link{
		margin-right:0;
		text-align:center;
		font-size:32px;
	}	
}


@media screen and (max-width: 1024px) {
	.banner-md{
		padding:16px 0;
		height:auto;
	}	
	
	.banner-md__content{
		min-height:204px;
	}	
	
	
	.banner-md__link{
		margin-right:0;
		text-align:center;
		font-size:24px;
	}	
}


@media screen and (max-width: 768px) {
	
	.banner-md{
		padding:16px 0;
		height:auto;
	}	
	.banner-md__content{
		min-height:128px;
	}	
	
	.banner-md__link{
		margin-right:0;
		text-align:center;
		font-size:16px;
		font-weight:700;
	}

}
/* End */


/* Start:/local/templates/ritual/css/autoload/banner-organization.css?16908104533306*/
.banner-organization {
    width: 100%;
    margin: auto;
    background-image: url("/local/templates/ritual/css/autoload/assets/banner-organization/fonJD.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 35px 0;
    color: #ffffff;
}

.banner-organization__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
}

.banner-organization__title {
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.banner-organization__left {
    width: 100%; /*фикс для ie*/
}

.banner-organization__right {
	padding-left:20px;
	max-width:224px;
}

.banner-organization__list {
    margin-right: 30px;

}

.banner-organization__list li {
    text-align: left;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 200;
    margin-bottom: 10px;
}

.banner-organization__item::before {
    content: '';
    width: 40px;
    min-width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 44px;
}

.banner-organization__item_1:before {
    background-image: url("/local/templates/ritual/css/autoload/assets/banner-organization/icon1.svg");
}

.banner-organization__item_2:before {
    background-image: url("/local/templates/ritual/css/autoload/assets/banner-organization/icon2.svg");
}

.banner-organization__item_3:before {
    background-image: url("/local/templates/ritual/css/autoload/assets/banner-organization/icon3.svg");
}

.banner-organization__item_4:before {
    background-image: url("/local/templates/ritual/css/autoload/assets/banner-organization/icon4.svg");
}

.banner-organization__item_5:before {
    background-image: url("/local/templates/ritual/css/autoload/assets/banner-organization/icon5.svg");
}

@media (max-width: 1024px) {
    .banner-organization {
        padding: 20px 0;
    }

    .banner-organization__info {
        padding: 0;
        width: 90%;
        margin: auto;
    }

    .banner-organization__title {
        font-size: 36px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    .banner-organization {
        position: relative;
    }

    .banner-organization__list {
        margin-right: 0;
    }

    .banner-organization__info {
        width: 80%;
    }

    .banner-organization__left {
        margin-right: 0;
    }

    .banner-organization__title {
        margin-bottom: 33px;
        text-align: left;
        width: 70%;
        margin-left: 10%;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .banner-organization__right {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 65px;
        height: 70px;	
    }

    .banner-organization {
        background-repeat: no-repeat;
    }

    .banner-organization__list li {
        line-height: 18px;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .banner-organization__item:before {
        transform: translateX(-27px);
        position: relative;
        width: 27px;
        min-width: 27px;
        height: 27px;
        margin-right: -12px;
    }
}


@media (max-width: 480px) {

    .banner-organization__title {
        margin-right: 7px;
        font-size: 14px;
    }
    .banner-organization__list li {
        font-size: 13px;
    }

    .banner-organization__right {
        width: 50px;
        right: 4%;
    }
}
/* End */


/* Start:/local/templates/ritual/css/autoload/banner-quadro.css?16908104533983*/
.banner-quadro{
	width:256px;
	height:256px;
	background-color:rgba(255, 255, 255, .48);
	margin:0 auto;
	font-size:16px;
	line-height:1.2;
	background-repeat:no-repeat;
	background-size:cover;
	display:block;
	position:relative;
	box-sizing:border-box;
}

.banner-quadro:before{
	content:"";
	display:block;
	width:100%;
	height:100%;
	top:0;
	left:0;
	position:absolute;	
	background-color:rgba(173, 90, 85, .8);
	transition:all .2s ease;
}
.banner-quadro:hover:before{
	background-color:rgba(173, 90, 85, .92);
}

.banner-quadro__content{
	position:relative;
	text-align:center;
	color:#fff;
	height:100%;

	display: flex;
	flex-direction: column;
	justify-content: center;

	
}

.banner-quadro__content_bubba:before,
.banner-quadro__content_bubba:after{
	content: '';
	pointer-events: none;
	position: absolute;
	top: 8px;
	right: 8px;
	bottom: 8px;
	left: 8px;
	opacity: 0;
	transition: all .35s ease;
}
.banner-quadro__content_bubba:before{
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: scale(1,0);
	
}

.banner-quadro__content_bubba:after{
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: scale(0,1);
}

.banner-quadro:hover .banner-quadro__content_bubba:before,
.banner-quadro:hover .banner-quadro__content_bubba:after {
	transform: scale(1);
	opacity:1;
}

.banner-quadro__icon-tc{
	width: 100%;
	height: 56px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: all 0.2s ease;
	box-sizing:border-box;
	opacity:0;
	position:absolute;
	top:16px;
	left:0;
	transform:translateY(16px);
}


.banner-quadro:hover .banner-quadro__icon-tc{
	opacity:1;
	transform:translateY(8px);
}


.banner-quadro__icon-br{
	width: 100%;
	height: 80px;
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
	transition: all 0.2s ease;
	box-sizing:border-box;
	position:absolute;
	bottom:16px;
	right:16px;
}


.banner-quadro:hover .banner-quadro__icon-br{
	height:56px;
}

.banner-quadro__name{
	font-size:56px;
	font-weight:700;
	line-height:1;
	transition:all .2s ease;
	padding:0 16px;
	box-sizing:border-box;
	transform:translateY(-8px);
	letter-spacing:4px;
}

.banner-quadro:hover .banner-quadro__name{
	font-size:42px;
	transform:translateY(0);
}

.banner-quadro__desc {
	opacity:1;
	transition:all .2s ease;
	font-size:20px;
	line-height:1.2em;
	height:1.2em;
	padding:0 16px;
	box-sizing:border-box;	
	text-transform:uppercase;
	letter-spacing:2px;
	font-weight:700;
}

.banner-quadro:hover .banner-quadro__desc{
	opacity:0;
}

.banner-quadro__desc-hover {
	font-size:18px;
	transform:translateY(8px);
	opacity:0;
	transition:all .2s ease;
	line-height:1.2em;
	height:1.2em;	
	padding:0 16px;
	box-sizing:border-box;	
}

.banner-quadro:hover .banner-quadro__desc-hover {
	transform:translateY(-16px);
	opacity:1;
}

.banner-quadro_agent .banner-quadro__desc {
    transform: translateY(-75px);
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.banner-quadro_agent .banner-quadro__desc-hover {
    height: 56px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {
		
}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.banner-quadro{
		width:192px;
		height:192px;
	}

	.banner-quadro__icon-tc{
		height: 32px;
	}

	.banner-quadro__icon-br{
		height: 40px;
	}


	.banner-quadro:hover .banner-quadro__icon-br{
		height:24px;
	}

	.banner-quadro__name{
		font-size:42px;
	}

	.banner-quadro:hover .banner-quadro__name{
		font-size:36px;
	}

	.banner-quadro__desc {
		font-size:20px;
	}
	
	.banner-quadro__desc-hover {
		font-size:14px;
	}
	
	.banner-quadro__desc-hover br{
		display:block !important;
	}

	.banner-quadro_agent .banner-quadro__desc {
        transform: translateY(-50px);
        font-size: 12px;
    }

    .banner-quadro_agent .banner-quadro__desc-hover {
        height: 34px;
    }
}


/* End */


/* Start:/local/templates/ritual/css/autoload/banner-sm.css?16908104531311*/
.banner-sm{
	height:84px;
	background-color:#eee;
	margin:16px 0;
	font-size:16px;
	line-height:1.2;
	background-repeat:no-repeat;
	background-size:cover;
}
.banner-sm__content{
	display: flex;
	justify-content: flex-end;
	height: 100%;
	position: relative;
	align-items: center;
	overflow:hidden;
}
.banner-sm__link{
	color:#fff;
	display:inline-block;
	padding:8px 24px;
	border:0;
	margin-right:10%;
	box-sizing:border-box;
	max-width:50%;
	text-align:right;
	font-weight:300;
	transition:background 0.2s ease;
	border-radius: 6px;
	text-transform:uppercase;
	background-color: #ad5a55;
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,.24);
	text-decoration:none;
}
.banner-sm__link:hover{
	background: rgba(87, 35, 31, .8);
}
		
.banner-sm__nowrap:before{
	content:"";
	display:block;
}
.banner-sm__nowrap{
	white-space:nowrap;
}
@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	.banner-sm__link{
		max-width:56%;
	}
}


@media screen and (max-width: 768px) {
	
	.banner-sm{
		padding:16px 0;
		height:auto;
	}	
	.banner-sm__content{
		justify-content: center;
		min-height:84px;
	}	
	
	.banner-sm__link{
		margin-right:0;
		max-width:80%;
		text-align:center;
	}
	.banner-sm__nowrap{
		white-space:normal;
	}
}
/* End */


/* Start:/local/templates/ritual/css/autoload/big-map.css?1690810453578*/
.big-map {
    display: flex;
}

.big-map__table {
    width: 30%;
    padding: 0;
}

.big-map__map {
    width: 70%;
}

.big-map__table-item {
    list-style-type: none;
    margin: 8px 0px;
    font-size: 16px;
}

.big-map__table-item_active {
    color: #AD5A55;
    fill: #AD5A55 !important;
    font-weight: bold;
}

@media (max-width: 768px) {
    .big-map__table-item {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .big-map__map {
        display: none;
    }

    .big-map__table {
        width: 100%;
    }
}
/* End */


/* Start:/local/templates/ritual/css/autoload/big-phone.css?16908104531188*/
.big-phone{
	text-align:center;
	font-family: "Open Sans",Arial,sans-serif;	
	white-space:no-wrap;
	max-width:100%;
	margin:32px auto;
}

.big-phone__number {
	font-size:48px;
	line-height:1em;
	font-weight:800;
	padding:24px 64px;
	display:inline-block;
	border:2px solid #ad5a55;
	border-radius:0;	
	text-decoration:none;
}

.big-phone__number:before {
	content:"";
	display:inline-block;
	background-image:url(/local/templates/ritual/css/autoload/assets/big-phone/icon.svg);
	background-repeat:no-repeat;
	background-position:0 0;
	background-size:100%;
	width:24px;
	height:24px;
	margin-right:16px;
	box-sizing:border-box;
	vertical-align:middle;
}

.big-phone__number:hover{
	background-color:rgba(173, 90, 85, 0.08); 
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.big-phone__number {
		font-size:24px;
		padding:16px 32px;		
	}
	.big-phone__number:before {	
		width:20px;
		height:20px;
	}
}


@media screen and (max-width: 416px) {
	.big-phone__number {
		font-size:18px;
		padding:8px 16px;		
	}
	.big-phone__number:before {	
		width:16px;
		height:16px;
	}	
}

/* End */


/* Start:/local/templates/ritual/css/autoload/body-repository.css?16908104531796*/
.body-repository {
    width: 100%;
}

.body-repository__item {
    padding-bottom: 32px;
}

.body-repository__item:last-child {
    padding-bottom: 0px;
}

.body-repository__cell {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 16px;
    background: #f3efee;
    box-sizing: border-box;
}

.body-repository__header {
    text-align: left;
    min-height: 98px;
    width: 100%;
    line-height: 1.2;
    display: flex;
    flex: 1 1 0;
    background-color: #F3EFEE;
}

.body-repository__cell_head {
    width: 20%;
    text-align: center;
    border: 1px solid #ad5a55;
    background: #fefdfd;
    color: #ad5a55;
    flex-shrink: 0;
	font-weight: 600;
}

.body-repository__cell_address {
    padding-left: 16px;
    width: 30%;
}

.body-repository__cell_schedule {
    padding-left: 16px;
    width: 40%;
}

.body-repository__cell_phone {
    width: 16%;
    text-align: left;
    border: 1px solid #ccc;
    flex-shrink: 0;
}

.body-repository__cell_w30 {
	width:30%;
}


.body-repository__img {
    float: right;
    margin-left: 16px;
    width: 360px;
}


@media (max-width: 992px) {
    .body-repository__header {
        flex-direction: column;
    }

    .body-repository__cell  {
        width: 100%;
    }

    .body-repository__cell_phone {
       text-align: center;
    }


}

@media (max-width: 992px) {
    .body-repository__img {
        max-width: 240px;
    }

    .body-repository__cell_address {
        padding: 16px 16px 0;
    }
}


@media (max-width: 768px) {
	.body-repository__cell {
		text-align:center;
	}
    .body-repository__contacts {
        margin-top: 16px;
    }

    .body-repository__img {
       float: none;
       margin: 0 auto;
       display: block;
       min-width: 100%;
       text-align: center
    }
}
/* End */


/* Start:/local/templates/ritual/css/autoload/cemetery-what-video.css?16908104531549*/
.cemetery-what-video {
	display:flex;
	border-top:2px solid #ad5a55;
	border-bottom:2px solid #ad5a55;
	padding-bottom:12px;
	flex-direction:row-reverse;
}
.cemetery-what-video__cell{
	width:50%;
	box-sizing:border-box;
	position:relative;
}
.cemetery-what-video__cell:first-child{
	padding-left:8px;
}
.cemetery-what-video__cell:last-child{
	padding-right:8px;
}
.cemetery-what-video__cell:after{
	position:absolute;
	content:"";
	display:block;
	width:100%;
	height:4px;
	background:#ad5a55;
	top:0;
	left:0;
	display:none;
}
.cemetery-what-video__cell_video{
	display:flex;
}
.cemetery-what-video__video{
	margin:auto;
	width:100%;
	text-align:center;
}
.cemetery-what-video__image{
	padding:16px 0 4px;
	display:inline-block;
}
.cemetery-what-video__image img{
	vertical-align:top;
	max-height:324px;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {
	
	.cemetery-what-video {
		flex-direction:column-reverse;
		padding-bottom:0;
		border:0;
		margin:16px 0;
	}
	
	.cemetery-what-video__cell {
		width:100%;
		padding:0;
	}
	
	.cemetery-what-video__cell:first-child{
		padding-left:0px;
		margin-top:16px;
	}
	
	.cemetery-what-video__cell:last-child{
		border-bottom:2px solid #ad5a55;
		padding-bottom:12px;
		padding-right:0px;
		
	}
	
	.cemetery-what-video__cell:after{
		display:none;
	}
}


@media screen and (max-width: 768px) {
	.cemetery-what-video__cell{
		display:none;
	}
	.cemetery-what-video__cell_video{
		display:block;
	}
}	
/* End */


/* Start:/local/templates/ritual/css/autoload/cities.css?16908104534534*/
.cities {
    width: 1312px;
    max-width: 100%;
    box-shadow: 0 4px 13px rgba(0, 0, 1, 0.32);
    background-color: #fff;
    padding: 26px 38px;
    position: relative;
}

.cities::after {
    content: '';
    display: block;
    width: 190px;
    position: absolute;
    height: 47px;
    background-image: url(/local/templates/ritual/css/autoload/assets/cities/logo-cities.png);
    background-size: contain;
    top: 26px;
    right: 73px;
}

.cities__search {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cities__search-header {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 12px;
}

.cities__search-input {
    display: block;
    width: 270px;
    height: 43px;
    border-radius: 10px 0 0 10px;
    border: 2px solid #9e9e9e;
    background-color: #fff;
    padding-left: 10px;
    font-size: 14px;
    border-right: 0;
    margin-right: -6px;
}

.cities__search-input::placeholder {
    color: #9e9e9e;
}

.cities__search-input::-ms-clear {
    display: none;
}

.cities__search-icon {
    position: relative;
    display: block;
    width: 40px;
    height: 43px;
    background-image: url(/local/templates/ritual/css/autoload/./assets/cities/search_grey.svg);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0 10px 10px 0;
    border: 2px solid #9e9e9e;
    border-left: 0;
    background-color: #fff;
}

.cities__search-wrap {
    display: flex;
    align-items: center;
}

.cities__close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.cities__close::after {
    content: '';
    display: block;
    width: 24px;
    height: 3px;
    background-color: #ad5a55;
    position: absolute;
    transform: rotate(45deg);
    top: 10px;
    right: 0;
}

.cities__close::before {
    content: '';
    display: block;
    width: 24px;
    height: 3px;
    background-color: #ad5a55;
    position: absolute;
    transform: rotate(-45deg);
    top: 10px;
    right: 0;
}

.cities__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(206px, 1fr));
    padding: 0;
}

.cities__bottom {
    column-width: 206px;
    position: relative;
    column-gap: 0;
    margin-top: 40px;
    padding: 0;
}

.cities__top li,
.cities__bottom li {
    list-style-type: none;
    color: #464646;
    width: 206px;
}

.cities__top a,
.cities__bottom a {
    color: #464646;
    text-transform: uppercase;
    text-decoration: none;
    padding: 3px 0;
    display: inline-block;
}

.cities__top a {
    font-weight: 700;
    font-size: 14px;
}

.cities__bottom a {
    font-size: 13px;
}

.cities__top a:hover,
.cities__bottom a:hover {
    color: #ad5a55;
}

.cities__bottom::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #9e9e9e;
    position: absolute;
    top: -21px;
    left: 0;
}

.cities .fancybox-close-small {
    display: none;
}


.cities__item_ms a {
	font-weight:700;
}
@media (max-width: 1030px) {
    .cities::after {
        display: none;
    }
}

@media (max-width: 650px) {
    .cities__search {
        flex-direction: column;
    }

    .cities__search-header {
        margin: 0 0 12px
    }
}

@media (max-width: 420px) {
    .cities__close {
        top: 14px;
        right: 14px;
        transform: scale(0.9);
    }

    .cities__search-wrap,
    .cities__search-input {
        width: 100%;
    }
}



/* баг в ie 11 */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .cities__top {
        display: flex;
    }
}

@media screen and (-ms-high-contrast: active) and (max-width: 1340px),
(-ms-high-contrast: none) and (max-width: 1340px) {
    .cities__top li {
        width: 20%;
    }

    .cities__top {
        flex-wrap: wrap;
    }
}

@media screen and (-ms-high-contrast: active) and (max-width: 1137px),
(-ms-high-contrast: none) and (max-width: 1137px) {
    .cities__top li {
        width: 25%;
    }
}

@media screen and (-ms-high-contrast: active) and (max-width: 928px),
(-ms-high-contrast: none) and (max-width: 928px) {
    .cities__top li {
        width: 33.333%;
    }
}

@media screen and (-ms-high-contrast: active) and (max-width: 726px),
(-ms-high-contrast: none) and (max-width: 726px) {
    .cities__top li {
        width: 50%;
    }
}

@media screen and (-ms-high-contrast: active) and (max-width: 505px),
(-ms-high-contrast: none) and (max-width: 505px) {
    .cities__top li {
        width: 100%;
    }
}
/* End */


/* Start:/local/templates/ritual/css/autoload/clear-both.css?169081045334*/
.clear-both {
    clear: both;
}
/* End */


/* Start:/local/templates/ritual/css/autoload/expand.css?1690810453739*/
.expand {
	
}

.expand_mobile {
}

.expand__block {
	
}

.expand__action {
	text-align:center;
}

.expand__link {
	color:#999;
	border-bottom:1px dashed #999;
	cursor:pointer;
}
.expand__link_light {
	color:#fff;
	border-color:#fff;
}

.expand_mobile .expand__block{
	display:block;
}

.expand_mobile .expand__link{
	display:none;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.expand_mobile {
		margin-bottom:32px;
	}
	
	.expand_mobile .expand__block{
		display:none;
	}
	.expand_mobile .expand__block_active{
		display:block;
	}

	.expand_mobile .expand__link{
		display:inline;
	}
}
/* End */


/* Start:/local/templates/ritual/css/autoload/gk-table.css?16908104531186*/
.gk-table{
	width:100%;
}

.gk-table__row {
	display:flex;
	flex:1 1 0;
}

.gk-table__row_header{
	text-align:center;
	font-weight:600;
	line-height:1.2;
	
}

.gk-table__cell {
	padding:16px;
	margin:4px 0;
	display:flex;
	justify-content: center;
	flex-direction: column;	
	background:#f3efee;
}

.gk-table__cell_header{
	width:20%;
	text-align:center;
	border:1px solid #ad5a55;
	background:#fefdfd;
	flex-shrink:0;
}


.gk-table__cell_content {
	padding-left:6%;
	width:60%;
	
}
.gk-table__cell_content p{
	margin:4px 0;
}


.gk-table__cell_footer{
	width:20%;
	text-align:center;
	border:1px solid #ccc;
	flex-shrink:0;
}


.gk-table__title {
	font-weight:600;
}

.gk-table__desc {
	font-style:italic;
	font-size:12px;
	line-height:1.2;
	margin-top:2px;
}

.gk-table__region{
	
}

.gk-table__ogrn{
	
}

.gk-table__phone{
	margin:4px 0;
}



@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {

	.gk-table__row {	
		flex-direction:column;
		margin:16px 0;
	}
	.gk-table__cell {	
		width:100%;
		margin:0;
		box-sizing:border-box;
	}
}





/* End */


/* Start:/local/templates/ritual/css/autoload/gk-table_morgue.css?1690810453524*/
.gk-table_morgue {
	font-size:14px;
}

.gk-table_morgue .gk-table__cell_content {
	padding-left:16px;
	width:30%;
}
.gk-table_morgue .gk-table__cell_work-time {
	padding-left:16px;
	width:40%;
}

.gk-table_morgue .gk-table__cell_footer {
	width:16%;
	text-align:left;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.gk-table_morgue .gk-table__cell {	
		width:100%;
	}
	
}
/* End */


/* Start:/local/templates/ritual/css/autoload/hidden.css?169081045326*/
.hidden {
	display:none;
}
/* End */


/* Start:/local/templates/ritual/css/autoload/icon-list.css?1690810453598*/
.icon-list{
	margin:16px 0 32px;
}

.icon-list__item{
	display:flex;
	margin:4px 0;
	align-items:center;
}

.icon-list__view{
	font-size:24px;
	padding:8px 24px 8px 16px;
	height:24px;
	color:#ad5a55;
}

.icon-list__text{
	max-width:100%;
	box-sizing:border-box;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.icon-list__item {
		flex-direction:column;
		margin:12px 0;
	}
	.icon-list__view{
		padding:8px;
		font-size:32px;
		height:32px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/autoload/l-agent.css?1690810453661*/
.l-agent {
}

.l-agent__list{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
}

.l-agent__item{
	width:250px;
	max-width:100%;
	padding:16px;
	box-sizing:border-box;
	text-align:center;
	margin:16px 0;
}

.l-agent__view{
	margin-bottom:16px;
}

.l-agent__name{
	margin-bottom:8px;
}
.l-agent__name a{
	font-size:16px;
	text-decoration:none;
	font-weight:700;
	line-height:1.4;
}
.l-agent__number{
	font-size:14px;
}
.l-agent__review{
	margin-top:12px;
}
.l-agent__btn{
	padding: 8px;	
	background: #F6F8F5;	
	border-radius: 3px;
	border: 1px solid #D4D6D3;
	font-size: 14px;
	display: inline-flex;
	margin: auto;
	text-decoration:none;
}








/* End */


/* Start:/local/templates/ritual/css/autoload/l-main-icon.min.css?16926964151386*/
.l-main-icon{display:flex;justify-content:center}.l-main-icon img{max-width:100%}.l-main-icon__block{display:flex}.l-main-icon__block_column{display:flex;flex-direction:column;justify-content:space-between}.l-main-icon__item{width:120px;height:120px;background:rgba(173,90,85,0.9);margin-right:16px;padding:16px;box-sizing:border-box;font-size:13px;font-family:'Open Sans','Arial','Sans-Serif';color:#fff;text-transform:uppercase;border-radius:0;text-align:center}.en-site .l-main-icon__item{line-height:1.4}.l-main-icon__image{height:36px;font-size:10px}.en-site .l-main-icon__image{margin-bottom:8px}.l-main-icon__short-item{width:120px;height:52px;background:rgba(173,90,85,0.9);box-sizing:border-box;display:flex;padding:0 8px;font-size:10px;color:#fff;border-radius:0}.en-site .l-main-icon__short-item{padding:0 16px}.l-main-icon__short-image{margin:auto;width:100%;height:auto}.l-main-icon__icon{padding-right:8px;width:32px;box-sizing:border-box;flex-shrink:0}.l-main-icon__short-item_text{font-size:13px;font-family:'Open Sans','Arial','Sans-Serif';align-items:center;text-transform:uppercase;line-height:1.15}@media screen and (max-width:480px){.s1-site .l-main-icon{flex-wrap:wrap;justify-content:center}.s1-site .l-main-icon__block_column{width:100%;max-width:256px;align-items:center;flex-direction:row;margin-top:16px}.s1-site .l-main-icon__item:last-child{margin-right:0}}
/* End */


/* Start:/local/templates/ritual/css/autoload/l-main-icon.min.css?16926964151386*/
.l-main-icon{display:flex;justify-content:center}.l-main-icon img{max-width:100%}.l-main-icon__block{display:flex}.l-main-icon__block_column{display:flex;flex-direction:column;justify-content:space-between}.l-main-icon__item{width:120px;height:120px;background:rgba(173,90,85,0.9);margin-right:16px;padding:16px;box-sizing:border-box;font-size:13px;font-family:'Open Sans','Arial','Sans-Serif';color:#fff;text-transform:uppercase;border-radius:0;text-align:center}.en-site .l-main-icon__item{line-height:1.4}.l-main-icon__image{height:36px;font-size:10px}.en-site .l-main-icon__image{margin-bottom:8px}.l-main-icon__short-item{width:120px;height:52px;background:rgba(173,90,85,0.9);box-sizing:border-box;display:flex;padding:0 8px;font-size:10px;color:#fff;border-radius:0}.en-site .l-main-icon__short-item{padding:0 16px}.l-main-icon__short-image{margin:auto;width:100%;height:auto}.l-main-icon__icon{padding-right:8px;width:32px;box-sizing:border-box;flex-shrink:0}.l-main-icon__short-item_text{font-size:13px;font-family:'Open Sans','Arial','Sans-Serif';align-items:center;text-transform:uppercase;line-height:1.15}@media screen and (max-width:480px){.s1-site .l-main-icon{flex-wrap:wrap;justify-content:center}.s1-site .l-main-icon__block_column{width:100%;max-width:256px;align-items:center;flex-direction:row;margin-top:16px}.s1-site .l-main-icon__item:last-child{margin-right:0}}
/* End */


/* Start:/local/templates/ritual/css/autoload/main-raiting.css?1690810453973*/
.main-raiting {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    max-width: 170px;
}

.main-raiting label {
    cursor: pointer;
    margin: 0 3px;
} 

.main-raiting label[for="value-1"] {
    margin-left: 0;
}

.main-raiting .fa {
    color: #F7C70A;
    font-size: 30px;
}

.main-raiting .fa-star_pass {
    color: #DADCE1;
}

.main-raiting .fa-star_pass:before {
    content: "\f005";
}

.main-raiting input:not(:checked)~label>.fa-star {
    display: none;
}

.main-raiting label:hover>.fa-star_pass,
.main-raiting label:hover~label>.fa-star_pass,
.main-raiting input:checked~label>.fa-star_pass {
    display: none !important;
}

.main-raiting label:hover>.fa-star,
.main-raiting label:hover~label>.fa-star,
.main-raiting input:checked~label>.fa-star {
    display: inline-block !important;
}

@media (max-width: 768px) {
    .main-raiting .fa {
        font-size: 22px;
    }
    .main-raiting {
        max-width: 130px;
    }
}
/* End */


/* Start:/local/templates/ritual/css/autoload/main-rassrochka.min.css?16926961451821*/
.main-rassrochka{font-family:'Open Sans','Arial','Sans-Serif';background:rgba(173,90,85,0.9);text-transform:uppercase;max-width:392px;width:100%;transition:.3s}.main-rassrochka:hover{background:rgba(173,90,85,1)}.main-rassrochka__top{display:flex;color:#fff;align-items:center;padding:0 0 4px}.main-rassrochka__title{width:60%;font-size:28px;white-space:nowrap;line-height:1;font-weight:700;padding:0 8px}.main-rassrochka__desc{width:40%;flex-shrink:1;line-height:1.1;font-size:12px;padding:0 8px;margin-top:2px}.main-rassrochka__items{padding:3px 0;display:table;background:#fff;border:1px solid #ad5a55;width:100%;box-sizing:border-box}.main-rassrochka__item{color:#ad5a55;font-size:12px;line-height:1;position:relative;display:table-cell;text-align:center}.main-rassrochka__item:after{content:"";display:block;position:absolute;width:1px;height:100%;right:0;top:0;background:#ad5a55}.main-rassrochka__item:last-child:after{display:none}.main-rassrochka__number{font-size:1.2em}.main-rassrochka__perc{font-size:.8em}@media screen and (max-width:768px){.main-rassrochka_btn{text-align:center}.main-rassrochka_btn .main-rassrochka__top{flex-direction:column;align-items:flex-start;padding:0}.main-rassrochka_btn .main-rassrochka__title{width:100%;padding-bottom:2px;padding-left:0;font-size:18px}.main-rassrochka_btn .main-rassrochka__desc{width:100%;padding-bottom:2px;padding-left:0;margin-top:0}.main-rassrochka_btn .main-rassrochka__sec{display:none}}@media screen and (max-width:480px){.main-rassrochka__top{flex-direction:column;align-items:flex-start}.main-rassrochka__title{width:100%;padding-bottom:2px}.main-rassrochka__desc{width:100%;padding-bottom:2px}.main-rassrochka__item{padding:0 2px}.main-rassrochka_btn .main-rassrochka__title{font-size:16px}.main-rassrochka_btn .main-rassrochka__desc{font-size:9px}}
/* End */


/* Start:/local/templates/ritual/css/autoload/main-rassrochka.min.css?16926961451821*/
.main-rassrochka{font-family:'Open Sans','Arial','Sans-Serif';background:rgba(173,90,85,0.9);text-transform:uppercase;max-width:392px;width:100%;transition:.3s}.main-rassrochka:hover{background:rgba(173,90,85,1)}.main-rassrochka__top{display:flex;color:#fff;align-items:center;padding:0 0 4px}.main-rassrochka__title{width:60%;font-size:28px;white-space:nowrap;line-height:1;font-weight:700;padding:0 8px}.main-rassrochka__desc{width:40%;flex-shrink:1;line-height:1.1;font-size:12px;padding:0 8px;margin-top:2px}.main-rassrochka__items{padding:3px 0;display:table;background:#fff;border:1px solid #ad5a55;width:100%;box-sizing:border-box}.main-rassrochka__item{color:#ad5a55;font-size:12px;line-height:1;position:relative;display:table-cell;text-align:center}.main-rassrochka__item:after{content:"";display:block;position:absolute;width:1px;height:100%;right:0;top:0;background:#ad5a55}.main-rassrochka__item:last-child:after{display:none}.main-rassrochka__number{font-size:1.2em}.main-rassrochka__perc{font-size:.8em}@media screen and (max-width:768px){.main-rassrochka_btn{text-align:center}.main-rassrochka_btn .main-rassrochka__top{flex-direction:column;align-items:flex-start;padding:0}.main-rassrochka_btn .main-rassrochka__title{width:100%;padding-bottom:2px;padding-left:0;font-size:18px}.main-rassrochka_btn .main-rassrochka__desc{width:100%;padding-bottom:2px;padding-left:0;margin-top:0}.main-rassrochka_btn .main-rassrochka__sec{display:none}}@media screen and (max-width:480px){.main-rassrochka__top{flex-direction:column;align-items:flex-start}.main-rassrochka__title{width:100%;padding-bottom:2px}.main-rassrochka__desc{width:100%;padding-bottom:2px}.main-rassrochka__item{padding:0 2px}.main-rassrochka_btn .main-rassrochka__title{font-size:16px}.main-rassrochka_btn .main-rassrochka__desc{font-size:9px}}
/* End */


/* Start:/local/templates/ritual/css/autoload/map-schema-gps.css?16908104531221*/
.map-schema-gps{
	
}

.map-schema-gps_type_1{
	float:left;
	padding:0 16px 8px 0;
	box-sizing:border-box;
	max-width:396px;
}
.map-schema-gps_type_2{
	width:100%;
}

.map-schema-gps__image{
	max-height:224px;
}

.map-schema-gps__image-desc{
	margin-top:2px;
	font-style:italic;
}

.map-schema-gps__list{
	display:flex;
	flex:1 1 0;
	flex-wrap:wrap;
}

.map-schema-gps__item {
	width:50%;
	text-align:center;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;	
	padding:0 8px;
}
p + .map-schema-gps h2{
	margin-top:0;
}
.map-schema-gps__item h2{
	text-align:center;
}
.map-schema-gps__item-name{
}
p + .map-schema-gps__item-name h2:first-child {
	margin-top:0;
}
.map-schema-gps__item-desc {
	flex-grow:1;
}

.map-schema-gps__item-desc p:first-child{
	margin-top:0;
}


@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	
	.map-schema-gps__item{
		width:100%;
		padding:0;
	}
	.map-schema-gps__item h2{
		text-align:left;
	}
	
	.map-schema-gps__item h2:first-child {
		margin-top:0.9em;
	}	
	.map-schema-gps__item:first-child h2:first-child {
		margin-top:0;
	}	
}
/* End */


/* Start:/local/templates/ritual/css/autoload/price-table.css?16908104535730*/

.price-table__table {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
	margin:40px 0;
}

.price-table__checkbox {
    display: none !important;
}

.price-table__label {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.price-table__label:after{
	display:block;
	content:"";
	clear:both;
}

p.price-table__label-main{
	margin-top:32px !important;
	text-align:left;
	line-height:20px;
	max-width:80%;
}

.price-table__checkbox-custom {
	position: relative;    
	width: 35px;            
	height: 35px;            
	border: 1px solid #ededed;
    background-color: #f7f7f7;
    float: left;
    flex-shrink: 0;
    margin-top: 3px;
    margin-right: 16px;
    cursor: pointer;
}

.price-table__checkbox:checked + .price-table__checkbox-custom::before {
	content: "";         
	display: block;			 
	position: absolute;      
    background-color: #AD5A55;
    width: 12px;
    height: 3px;
    top: 18px;
    left: 7px;
    transform: rotate(45deg)
}

.price-table__checkbox:checked + .price-table__checkbox-custom::after {
	content: "";         
	display: block;			 
	position: absolute;      
    background-color: #AD5A55;
    width: 16px;
    height: 3px;
    top: 16px;
    left: 14px;
    transform: rotate(-45deg)
}

.price-table__item {
    width: 20%;
    z-index: 1;
    position: relative;
    
}

.price-table__header {
    width: 100%;
    height: 92px;
    background-color: #828282;
    text-transform: uppercase;
    color: #fff;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.4s;
}

.price-table__header::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    background-color: #828282;
    bottom: -8px;
    transform: rotate(45deg);
    left: 30px;
    transition: 0.4s;
}

.price-table__header::before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    position: absolute;
    background-color: #9b9b9b;
    right: 0;
    top: 0;
}

.price-table__item:last-child .price-table__header:before {
    content: '';
    display: none;
}

.price-table__price {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
    transition: 0.4s;
}

.price-table__price p {
    display: inline-block;
    font-size: 30px;
    color: #7c7c7c;
}

.price-table__price span {
    font-size: 20px;
    margin: 8px 0 0 8px;
    color: #7c7c7c;
}

ul.price-table__list {
    width: 100%;
    background-color: #f4f4f4;
    margin: 0 !important;
    padding: 16px 0 28px 0;
    transition: 0.4s;
	overflow:hidden;
	box-sizing:border-box;
	
}

.price-table__list li{
    width: 100%;
    box-sizing: border-box;
    padding: 0 10%;
    display: flex;
    list-style-type: none;
    margin: 10px  auto !important;
    position: relative;
    line-height: 17px !important;
}

.price-table__list li:last-child {
    margin-bottom: 0 !important;
}

.price-table__list li:last-child:before {
    display: none;
}

.price-table__list p {
    display: inline-block;
    font-size: 13px;
    margin: 0;
    line-height: 16px;
    color: #828282;
	text-align:left;
}

.price-table__link {
    width: 100%;
    height: 70px;
    background-color: #AD5A55;
    display: flex;
    opacity: 0;
    position: absolute;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 0;
    font-size: 24px;
    font-weight: 600;
    transition: 0.4s;
	text-decoration:none;
	/*
		pointer-events: none;
	*/
}


/* HOVER ЭФФЕКТ */

@media (min-width: 480px) {
	.price-table__item:hover {
		z-index: 2;
	}

	.price-table__item:hover .price-table__table {
		padding: 0;
	}

	.price-table__item:hover .price-table__header {
		background-color: #ad5a55;
		transform: scaleX(1.05)  translateY(-25px) ;
	} 

	.price-table__item:hover .price-table__header::before  {
		display: none;
	}

	.price-table__item:hover .price-table__header::after {
		background-color: #AD5A55;
		opacity: 0;
	}

	.price-table__item:hover .price-table__price {
		background-color: #f4f4f4;
		transform: scaleX(1.05)  translateY(-25px) ;
	}

	.price-table__item:hover .price-table__price span{
		color: #AD5A55;
	}

	.price-table__item:hover .price-table__price p{
		color: #AD5A55;
		font-weight: 600;
	}

	.price-table__item:hover .price-table__list {
		background-color: #fff;
		transform: scaleX(1.05)  translateY(-25px) ;
		
	}

	.price-table__item:hover .price-table__list span{
		color: #AD5A55;
	}

	.price-table__item:hover .price-table__list p{
		color: #000;
	}

	.price-table__item:hover .price-table__link {
		display: flex;
	}

	.price-table__item:hover .price-table__link {
		opacity: 1;
		width: 105%;
		transform:  translateX( -6px) translateY(-25px);   
		pointer-events: auto;
	}
}

.price-table__cards {
    width: 38%;
    position: absolute;
    bottom: -10px;
    left: 0;
}


.price-table__warning {
    text-align: center;
}

.price-table__warning span {
    color: #ad5a55;
}


@media (max-width: 1366px) {
    .price-table__table {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .price-table__item {
        width: 33.33%;
        margin-top: 20px;
    }

    .price-table__cards {
        position: static;
        width: 100%;
        margin-top: 24px;
    }
}



@media (max-width: 1140px) {
	p.price-table__label-main{
		max-width:none;
	}
}

@media (max-width: 768px) {
    .price-table__item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .price-table__item {
        width: 100%;
    }
	
	.price-table__link {
		position:static;
		opacity:1;
	}
}



/* End */


/* Start:/local/templates/ritual/css/autoload/rating-box.css?1690810453591*/
.rating-box {
    position: relative;
    vertical-align: middle;
    font-size: 18px;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    color: #dadce1;
}

.rating-box:before {
    content: "\f005 \f005 \f005 \f005 \f005";
	font-weight:900;
}

.rating-box .rating-box__rating {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #efbe3a;
}

.rating-box .rating-box__rating:before {
    content: "\f005 \f005 \f005 \f005 \f005";
	font-weight:900;
    font-family: "Font Awesome 5 Free";
}
/* End */


/* Start:/local/templates/ritual/css/autoload/review-stars.css?1690810453152*/
.review-stars {
    display:inline-flex;
}

.review-stars__item {
   color: #D9D9D9;
   margin:0 2px;
}

.review-stars__item_full {
   color: #F7C70A;
}
/* End */


/* Start:/local/templates/ritual/css/autoload/service-arrow.css?16908104531089*/
.service-arrow-left {
    width: 24px;
    height: 43px;
    background: url(/local/templates/ritual/css/autoload/assets/service-arrow/slider-arrows.png);
    top: 250px;
    left: -40px;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 3;
    cursor: pointer;

}

.service-arrow-right {
    width: 24px;
    height: 43px;
    background: url(/local/templates/ritual/css/autoload/assets/service-arrow/slider-arrows.png) -27px 0;
    top: 250px;
    right: -40px;
    transform: translateY(-50%);
    position: absolute;
    z-index: 3;
    cursor: pointer;
}

@media (max-width: 1130px) {
    .service-arrow-left {
        left: -25px;
    } 
    
    .service-arrow-right {
        right: -25px;
    }
}

@media (max-width: 700px) {
    .service-arrow-left {
        left: 0px;
    } 
    
    .service-arrow-right {
        right: 0px;
    }
}

@media (max-width: 480px) {
    .service-arrow-left {
        left: -20px;
    } 
    
    .service-arrow-right {
        right: -20px;
    }
}
/* End */


/* Start:/local/templates/ritual/css/autoload/slide-list.css?16908104532098*/
.slide-list{
	margin:16px 0 32px;
}

.slide-list__header{
	height:80px;
	padding-left:96px;
	background-color:#efefef;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
	position:relative;
	cursor:pointer;
}
.slide-list__header:before{
	content:"";
	display:block;
	background-color:rgba(173, 90, 85, .80);
	background-size:100%;
	background-repeat:no-repeat;
	width:100%;
	height:100%;
	left:0;
	top:0;
	position:absolute;
	transition:transform 0.2s ease;
	
}
.slide-list__header:after{
	content:"";
	display:block;
	background-image:url('/local/templates/ritual/css/autoload/assets/slide-list/arrow-bottom.png');
	background-size:100%;
	background-repeat:no-repeat;
	width:80px;
	height:48px;
	position:absolute;
	right:32px;
	top:20px;
	transition:transform 0.2s ease;
	
}
.slide-list__header:hover:after{
	transform:scale(1.1);
}

.slide-list_active .slide-list__header:after{
	top:16px;
	transform:scale(1,-1);
}
.slide-list_active .slide-list__header:hover:after{
	transform:scale(1.1,-1.1);
}

.slide-list__header-inner{
	position:relative;
	display:flex;
	height:100%;
	align-items:center;
}

.slide-list__title{
	color:#fff;
	
	font-size:32px;
	font-weight:700;
	text-transform:uppercase;
	
}

.slide-list__content{
	
}

.slide-list__item{
	display:flex;
	margin:8px 0;
	align-items:center;
	padding:8px 0;
	background-color:#f3efee;
}

.slide-list__view {
	font-size:32px;
	padding:8px 32px;
	height:32px;
	color:#ad5a55;
}

.slide-list__text {
	color:#000;
	max-width:100%;
	
	box-sizing:border-box;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {

	.slide-list__header {
		padding-left:16px;
	}
	.slide-list__header:after {
		top: auto;
		bottom: 36%;
		width: 24px;
		height: 16px;
		right: 16px;
	}
	
	.slide-list_active .slide-list__header:after{
		top:auto;
		bottom:40%;
	}	
	
	
	.slide-list__title{
		font-size:16px;
		padding-right:48px;
	}
	
	.slide-list__item{
		flex-direction:column;
	}
	.slide-list__text {
		padding:16px;
	}
}
/* End */


/* Start:/local/templates/ritual/css/autoload/stat-info.css?1690810453630*/
.stat-info {
	font-size: 14px;
	color: #999;
	margin:16px 0;
	display:flex;
	justify-content:flex-end;
}

.stat-info__item .fas  {
	padding-right:4px;
}
.stat-info__item {
	padding-left:32px;
}
.stat-info__item:first-child {
	padding-left:0;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.stat-info {
		flex-direction:column;
		justify-content:flex-start;
	}
	.stat-info__item {
		margin:4px 0px;
		padding:0;
	}
	.stat-info__item .fas{
		width:16px;
		text-align:center;
	}
}
/* End */


/* Start:/local/templates/ritual/css/autoload/tab-agent.css?16908104533113*/
.tab-agent {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.tab-agent__text-wrapper{
	padding-right:16px;
}

.tab-agent__title {
  font-size: 28px;
  text-transform: uppercase;
  margin: 0;
}

.tab-agent__subtitle {
  color: #6f6f6f;
  margin:8px 0 0 0;
  font-size: 15px;
}

.tab-agent__form {
	flex-shrink:0;
	width:435px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content:center;
	position:relative;
}


.tab-agent__fields{
	display:none;
	height:40px;
}
.tab-agent__fields_active{
	display:flex;
}
.tab-agent__input {
	padding:0 16px;
	font-size: 15px;
	border-radius: 4px 0 0 4px;
	width: 305px;
	border: 1px solid #acacac;
	border-right-width: 0;
	box-sizing:border-box;
	height:100%;
}
.tab-agent__input:invalid {
	outline:none;
	box-shadow:none;
}

.tab-agent__button {
  border-radius: 0 4px 4px 0;
  background: #ad5a55;
  border: none;
  outline: none;
  color: white;
  width: 130px;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  height: 100%;
  transition: 0.3s;
  cursor: pointer;
  display:flex;
  justify-content:center;
  align-items:center;
}


.tab-agent__button:hover {
  background-color: #814340;
}


.tab-agent__result {
	display:none;
	width:100%;
	position:relative;
	
}

.tab-agent__result_active {
	display:block;
}

.tab-agent__tip {
	position:Absolute;
	bottom:-20px;
	right:0;
	display: flex;
	justify-content: flex-end;
}

.tab-agent__tip a {
	font-size: 11px;
	text-decoration: none;
	color: #666;
	border-bottom: 1px dashed #666;
}

.tab-agent__message {
	height: 40px;
	background: #999;
	border-radius: 4px;
	color: #fff;
	display: flex;
	align-items: center;
	padding: 0 16px;
	position:relative;
}
.tab-agent__message:after {
	position: absolute;
	top: 50%;
	margin-top: -6px;
	right: 20px;
	width: 19px;
	height: 13px;
	background: url('/local/templates/ritual/css/autoload/assets/tab-agent/icon-tick.svg') center center no-repeat;
	background-size: auto;
	background-size: contain;
	content: '';
}
.tab-agent__result_success .tab-agent__message{
  background:#58a850;
}


@media screen and (max-width: 1366px) {

}

@media screen and (max-width: 1024px) {
	.tab-agent {
		flex-direction:column;
	}
	.tab-agent__title {
		font-size: 20px;
		text-align: center;
	}
	.tab-agent__subtitle{
		text-align:center;
	}
	.tab-agent__form{
		width:100%;
		margin-top:16px;
	}
	
	.tab-agent__fields{
		flex-direction:column;
		width:100%;
		height:auto;
	}
	.tab-agent__input{
		height:40px;
		width:100%;
		border:1px solid #ccc;
		border-radius:4px;
		text-align:center;
	}
	.tab-agent__button{
		width:100%;
		height:40px;
		margin-top:8px;
		border-radius:4px;
	}
	.tab-agent__message{
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
	.tab-agent__title {
		font-size: 14px;
	}
	.tab-agent__subtitle {
		font-size: 12px;
	}
	.tab-agent__input {
		font-size: 13px;
	}
	.tab-agent__button {
		font-size: 13px;
	}
}

@media screen and (max-width: 480px) {
	.tab-agent__message {
		font-size:13px;
		padding:0 32px;
		text-align:center;
	}
	.tab-agent__message:after {
		right: 16px;
		width: 16px;
		height: 16px;
	}
}

/* End */


/* Start:/local/templates/ritual/css/autoload/ul-address.css?1690810453224*/
ul.ul-address {
	display:inline-block;
	text-align: left;
	max-width: 540px;
	overflow:visible;
}

.ul-address li {
	list-style:none;
	text-align:left;
	font-size:13px;
	font-weight:600;
	color:#5c5b73;
	line-height:1.2;
}


/* End */


/* Start:/local/templates/ritual/css/autoload/what-for-agent.css?16908104532844*/
.what-for-agent {
	font-size:14px;
}

.what-for-agent_grey{
	background:#f3f3f3;
	border-top:4px solid #ad5a55;
}
.what-for-agent__title {
	color:#ad5a55;
	font-size:20px;
	padding:8px;
	font-weight:600;
}
.what-for-agent_grey .what-for-agent__title {
	text-align:center;
}
.what-for-agent__boxes {
	margin-top:8px;
	padding:0 24px 0 0;
	position:relative;
}
.what-for-agent_grey .what-for-agent__boxes {
	padding:0 0 0 16px;
}
.what-for-agent__box {
	display:none;
	flex-direction:row-reverse;
}
.what-for-agent_grey{
	flex-direction:row;
}
.what-for-agent__box_active {
	display:flex;
}
.what-for-agent__box-cell{
	width:50%;
}
.what-for-agent__box-cell:first-child{
	width:36%;
}
.what-for-agent__box-cell:last-child{
	width:64%;
}
.what-for-agent__view{
	width:90%;
}
.what-for-agent__saving{
	margin-top:8px;
	color:#ad5a55;
	font-size:13px;
}

.what-for-agent__text {
	padding:0 8px;
}
.what-for-agent__text p {
	font-size:14px;
	margin:8px 0;
	line-height:1.4;
	text-align:left;
}
.what-for-agent__text p:first-child {
	margin-top:0;
}
.what-for-agent__tabs {
	margin-top:16px;
	display:flex;
}

.what-for-agent__tab {
	width:25%;
	padding:12px 0 8px;
	box-sizing:border-box;
	position:relative;
	text-align:center;
	cursor:pointer;
	text-transform:uppercase;
	font-size:12px;
	line-height:1;
}
.what-for-agent__tab:after {
	position:absolute;
	content:"";
	display:block;
	height:100%;
	background-color:transparent;
	width:92%;
	margin:0 auto;
	top:0;
	left:4%;
	border-top:2px solid #999;
	box-sizing:border-box;
	transition:all 0.2s ease;
	color:#999;
}


.what-for-agent__tab_active,
.what-for-agent__tab:hover {
	color:#ad5a55;
}
.what-for-agent__tab_active:after {
	border-top:4px solid #ad5a55;
	background-color:rgba(173, 90, 85, 0.1); 	
}
.what-for-agent__tab:hover:after {
	border-top:2px solid #ad5a55;
	background-color:rgba(173, 90, 85, 0.1); 
}

.what-for-agent__tab_active:hover:after {
	border-top:4px solid #ad5a55;
}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {	
}

@media screen and (max-width: 1280px) {
	.what-for-agent__text p {
		font-size:12px;
	}	
	.what-for-agent__saving{
		font-size:11px;
	}		
}
@media screen and (max-width: 1024px) {
	
	.what-for-agent__boxes{
		padding:0 16px;
	}
	.what-for-agent__box {
		flex-direction:column;
	}
	
	.what-for-agent__box-cell {
		width:100%;
	}
	.what-for-agent__box-cell:first-child{
		width:100%;
	}
	.what-for-agent__box-cell:last-child{
		width:100%;
	}	
	.what-for-agent__view img {
		max-height:25vh;
	}
	
	.what-for-agent__saving{
		font-size:13px;
	}	
	.what-for-agent__text{
		padding:8px 0 0;
	}
	.what-for-agent__text p {
		font-size:14px;
	}	
	.what-for-agent__tabs {
		flex-wrap:wrap;
	}
	.what-for-agent__tab {
		width:50%;
		margin-top:8px;
	}
}


@media screen and (max-width: 768px) {

}


/* End */


/* Start:/local/templates/ritual/css/autoload/zabban.css?16908104538616*/
.zabban {
    font-family: 'Open Sans', Arial, sans-serif;
    position: relative;
    width: 256px;
    height: 256px;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin: 0 auto;
}

.zabban::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    transition: all .35s ease;
    background-color: rgba(173, 90, 85, 1);
}

.zabban:hover::before {
    background-color: rgba(173, 90, 85, .8);
}

.zabban__wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    transition: all .65s ease;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
}

.zabban__wrap_h {
    visibility: hidden;
    opacity: 0;
}


.zabban__wrap::before,
.zabban__wrap::after {
    content: '';
    pointer-events: none;
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    opacity: 0;
    transition: all .35s ease;
}

.zabban__wrap::before {
    transform: scale(1, 0);
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}

.zabban__wrap::after {
    transform: scale(0, 1);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.zabban:hover .zabban__wrap::before,
.zabban:hover .zabban__wrap::after {
    transform: scale(1);
    opacity: 1;
}

.zabban__header {
    color: #016C28;
    font-size: 50px;
    line-height: 1;
    text-transform: uppercase;
    transition: all .35s ease;
    z-index: 1;
    position: relative;
    text-align: center;
    letter-spacing: 4.3px;
}

.zabban__header-inn {
    color: #016C28;
    font-size: 15px;
    letter-spacing: 0;
    margin: 8px 0 4px;
}

.zabban__hover {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -0.56px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: all .35s ease;
    visibility: hidden;
    line-height: 1.5;
    z-index: 1;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

.zabban:hover .zabban__hover {
    opacity: 1;
    visibility: visible;
}

.zabban__slider {
    width: 100%;
    margin-top: 30px;
    height: 100px;
    transition: all .35s ease;
    transform: translateX(0%);
}

.zabban__slider_h {
    transform: translateX(calc(100% + 20px));
}

.zabban__slider .owl-item,
.zabban__slider .owl-stage,
.zabban__slider .owl-stage-outer {
    height: 100%;
}

.zabban__slider-item {
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    text-align: center;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 12px;
    line-height: 1.1;
}
.zabban__slider_big .zabban__slider-item > span{
	font-size:28px;
	
}

.zabban__number{
	font-weight:700;
}

.zabban__slider-title {
    color: #3f6649;
    margin-bottom: 6px;
}

.zabban__slider-title span {
    font-size: 28px;

}

.zabban__slider-txt {
    color: #fff;
    letter-spacing: -0.2px;
    line-height: 1;
}

.zabban:hover .zabban__header,
.zabban:hover .zabban__slider,
.zabban:hover .zabban__title,
.zabban:hover .zabban__lightning,
.zabban:hover .zabban__img {
    opacity: 0;
    visibility: hidden;
}



.zabban__title {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 100%;
    transition: all .35s ease;
}

.zabban__title-item {
    margin-top: 36px;
    position: relative;
}

.zabban__title-svg {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.zabban__title-svg_strike {
    width: 30px;
    top: 2px;
    left: 18px;
    height: 30px;
}

.zabban__title-svg_zero {
    width: 24px;
    top: -28px;
    left: 30px;
    height: 27px;
}

.zabban__title-svg_zero_v {
    opacity: 1;
    visibility: visible;
}

.zabban__title-svg-it {
    fill: none;
    stroke: #016C28;
    stroke-width: 13;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zabban__lightning {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 130px;
    transform: translate(-50%, -16%);
    z-index: 0;
    transition: all .35s ease;
}


.zabban_v {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.zabban_v .zabban__header {
    background-color: rgba(255, 255, 255, 1);
    border: 4px solid rgba(173, 90, 85, 1);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 48%;
}

.zabban_v .zabban__header img {
    width: 100%;
    margin: 0;
}

.zabban_v .zabban__wrap {
    position: static;
    display: flex;
    padding: 0;
}

.zabban_v .zabban__slider-item {
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    margin-top: 0;
    display: flex;
    align-items: center;
    padding: 0 6px;
    justify-content: center;
	text-align:left;

}
.zabban_v .zabban__slider-item > span {
	border-left:2px solid #fff;
	padding-left:12px; 
	position:relative;
	top:2px;
}
.zabban__slider_big .zabban__slider-item > span {
	border-left:3px solid #fff;
	top:4px;
}
.zabban_v .zabban__slider {
    width: 52%;
    margin-top: 0;
    height: auto;
}

.zabban_v .zabban__hover {
    width: calc(100% - 34px);
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, -50%)
}

.zabban_l .zabban__header {
    width: 340px;
}


.zabban__right {
    width: calc(100% - 340px);
    position: relative;
}

.zabban_l .zabban__slider-item {
    font-size: 40px;
}

.zabban_l .zabban__title {
    flex-direction: row;
    display: flex;
    width: 100%;
}

.zabban_l .zabban__title-item {
    margin-top: 0;
    margin-left: 6px;
}

.zabban .zabban__wrap_l {
    position: absolute;
}

.zabban_l .zabban__slider {
    width: 100%;
}

.zabban__right .zabban__wrap::before,
.zabban__right .zabban__wrap::after {
    display: none;
}

.zabban__img {
    display: none;
    transition: all .35s ease;
}

.zabban .owl-dots {
    display: none !important;
}

.zabban-right {
    float: right;
    padding: 0 0 16px 16px;
}
.zabban-left {
    float: left;
    padding: 0 16px 16px 0;
}

@media (max-width: 992px) {
    .zabban_l .zabban__header {
        width: 240px;
    }

    .zabban__right {
        width: calc(100% - 240px);
    }

    .zabban_l .zabban__slider-item {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .zabban_l .zabban__header {
        width: 200px;
    }

    .zabban__right {
        width: calc(100% - 200px);
    }

    .zabban_l .zabban__slider-item {
        font-size: 26px;
    }

    .zabban_l .zabban__title {
        font-size: 20px;
    }

    .zabban_l .zabban__title-svg_strike {
        width: 20px;
        top: 2px;
        left: 14px;
        height: 20px;
    }

    .zabban_l .zabban__title-svg_zero {
        width: 18px;
        top: -22px;
        left: 22px;
        height: 20px;
    }
	.zabban__img {
		text-align:center;
	}
	.zabban__img img {
		width:256px;
		max-width:100%;
	}
	.zabban__slider_big .zabban__slider-item > span {
		font-size:18px;
	}	
    .zabban_l .zabban__slider {
        padding-bottom: 0px;
        height: 100%;
    }	
}

@media (max-width: 600px) {
    .zabban__img {
        display: block;
        width: 100%;
        flex-shrink: 0;
        background-color: #fff;
        align-self: flex-start;
        border: 4px solid rgba(173, 90, 85, 1);
        border-bottom: 0;
        box-sizing: border-box;
        padding: 14px;
    }

    .zabban__img img {
        margin: 0;
    }

    .zabban_l .zabban__header {
        display: none;
    }

    .zabban_l {
        height: 200px;
    }

    .zabban_l .zabban__right {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .zabban .zabban__wrap_l {
        flex-direction: column;
    }

    .zabban-right {
        float: none;
        padding: 0;
    }
    .zabban-left {
        float: none;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .zabban_v .zabban__wrap {
        flex-direction: column;
    }

    .zabban_l>.zabban__wrap {
        flex-direction: row;
    }

    .zabban_v .zabban__slider {
        width: 100%;
        display: flex;
        padding-bottom: 6px;
    }



    .zabban_v .zabban__header {
        width: 100%;
    }

    .zabban_l {
        height: 196px;
    }

    .zabban_l .zabban__slider-item {
        font-size: 20px;
    }

}

@media (max-width: 420px) {
    .zabban_l {
        /* height: 150px; */
    }
}
/* End */


/* Start:/local/templates/ritual/css/autoload/zb2.css?16908104532359*/
.zb2 {
	width:256px;
	max-width:100%;
	color:#fff;
	display:block;
	text-decoration:none;
	transition:none;
}

.zb2__inline {
	
}

.zb2__hover {
	display:none;
}

.zb2 {
	background-image:url(/local/templates/ritual/css/autoload/assets/zb2/zont.png);	
	background-repeat:no-repeat;
	background-size:64%;
	background-position:center;
}

.zb2:hover .zb2__inline {
	display:none;
}
.zb2:hover .zb2__hover {
	display:block;
	position:absolute;
	left:0;
	top:50%;
	transform:translateY(-50%);
	width:100%;
	text-align:center;
}

.zb2__more {
}

.zb2__wrapper:before,
.zb2__wrapper:after {
    content: '';
    pointer-events: none;
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    opacity: 0;
    transition: all .35s ease;
}

.zb2__wrapper:before {
    transform: scale(1, 0);
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
	z-index:1;
}

.zb2__wrapper:after {
    transform: scale(0, 1);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.zb2:hover .zb2__wrapper:before,
.zb2:hover .zb2__wrapper:after {
    transform: scale(1);
    opacity: 1;
}


.zb2__wrapper{
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 100%; 
    display: flex;
    justify-content: center;
}

.zb2__content {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    background-color: rgba(173, 90, 85, 1);	
}
.zb2:hover .zb2__content {
	background-color: rgba(173, 90, 85, 0.8);	
}

.zb2__header{
	margin:32px 16px 16px;
	height:48px;
	background-image:url(/local/templates/ritual/css/autoload/assets/zb2/zabota.svg);
	background-size:contain;
	background-repeat:no-repeat;
	transition:all 0.2s ease;
}
.zb2__header img{
	height:100%;
	width:auto;
}

.zb2__items{
	padding:0 16px;
	transition:all 0.2s ease;
}

.zb2__item {
	margin-top:24px;
	position:relative;
	padding-left:24px;
	font-size:15px;
}
.zb2__number{
	font-size:1.5em;	
	font-weight:700;
}

.zb2__item:first-child {
	/* margin-top:0; */
}

.zb2__item:before {
	content:"";
	display:block;
	width:2px;
	height:100%;
	background:#fff;
	left:0;
	top:2px;
	position:absolute;
}

@media screen and (max-width:1000px) {
	
}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 480px) {

}

@media screen and (max-width: 350px) {
	.zb2__header{
		margin-top:24px;
	}
	.zb2__items{
		font-size:15px;
		margin-top:24px;
	}
}
/* End */


/* Start:/local/templates/ritual/vendor/owl/assets/owl.carousel.min.css?16908104553351*/
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(/local/templates/ritual/vendor/owl/assets/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/* End */


/* Start:/local/templates/ritual/vendor/owl/assets/owl.theme.default.min.css?16908104551013*/
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
/* End */


/* Start:/local/templates/ritual/vendor/fancybox/jquery.fancybox.min.css?169081045514065*/
body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;backface-visibility:hidden;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;height:100%;left:0;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.87;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s,visibility 0s linear .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s,visibility 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;text-align:center;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;-webkit-transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;height:100%;margin-right:-.25em;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--next{z-index:99995}.fancybox-slide--image{overflow:visible;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px 6px 0}.fancybox-slide--iframe{padding:44px 44px 0}.fancybox-content{background:#fff;display:inline-block;margin:0 0 6px;max-width:100%;overflow:auto;padding:0;padding:24px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{-webkit-animation-timing-function:cubic-bezier(.5,0,.14,1);animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;margin:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;-webkit-transform-origin:top left;transform-origin:top left;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-drag .fancybox-content{cursor:-webkit-grab;cursor:grab}.fancybox-is-dragging .fancybox-content{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--html .fancybox-content{margin-bottom:6px}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;margin:0;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff;height:calc(100% - 44px);margin-bottom:44px}.fancybox-iframe,.fancybox-video{background:transparent;border:0;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{vertical-align:top}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;cursor:pointer;display:inline-block;height:44px;margin:0;outline:none;padding:10px;transition:color .2s;vertical-align:top;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:focus,.fancybox-button:hover{color:#fff}.fancybox-button.disabled,.fancybox-button.disabled:hover,.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default}.fancybox-button svg{display:block;overflow:visible;position:relative;shape-rendering:geometricPrecision}.fancybox-button svg path{fill:transparent;stroke:currentColor;stroke-linejoin:round;stroke-width:3}.fancybox-button--pause svg path:nth-child(1),.fancybox-button--play svg path:nth-child(2){display:none}.fancybox-button--play svg path,.fancybox-button--share svg path,.fancybox-button--thumbs svg path{fill:currentColor}.fancybox-button--share svg path{stroke-width:1}.fancybox-navigation .fancybox-button{height:38px;opacity:0;padding:6px;position:absolute;top:50%;width:38px}.fancybox-show-nav .fancybox-navigation .fancybox-button{transition:opacity .25s,visibility 0s,color .25s}.fancybox-navigation .fancybox-button:after{content:"";left:-25px;padding:50px;position:absolute;top:-25px}.fancybox-navigation .fancybox-button--arrow_left{left:6px}.fancybox-navigation .fancybox-button--arrow_right{right:6px}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#555;cursor:pointer;height:44px;margin:0;padding:6px;position:absolute;right:0;top:0;width:44px;z-index:10}.fancybox-close-small svg{fill:transparent;opacity:.8;stroke:currentColor;stroke-width:1.5;transition:stroke .1s}.fancybox-close-small:focus{outline:none}.fancybox-close-small:hover svg{opacity:1}.fancybox-slide--iframe .fancybox-close-small,.fancybox-slide--image .fancybox-close-small,.fancybox-slide--video .fancybox-close-small{color:#ccc;padding:5px;right:-12px;top:-44px}.fancybox-slide--iframe .fancybox-close-small:hover svg,.fancybox-slide--image .fancybox-close-small:hover svg,.fancybox-slide--video .fancybox-close-small:hover svg{background:transparent;color:#fff}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small{display:none}.fancybox-caption{bottom:0;color:#fff;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:25px 44px;right:0}.fancybox-caption:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);background-repeat:repeat-x;background-size:contain;bottom:0;content:"";display:block;left:0;pointer-events:none;position:absolute;right:0;top:-25px;z-index:-1}.fancybox-caption:after{border-bottom:1px solid hsla(0,0%,100%,.3);content:"";display:block;left:44px;position:absolute;right:44px;top:0}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{-webkit-animation:a .8s infinite linear;animation:a .8s infinite linear;background:transparent;border:6px solid hsla(0,0%,39%,.5);border-radius:100%;border-top-color:#fff;height:60px;left:50%;margin:-30px 0 0 -30px;opacity:.6;padding:0;position:absolute;top:50%;width:60px;z-index:99999}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;-webkit-transform:scale3d(1.5,1.5,1.5);transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;-webkit-transform:rotate(1turn);transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;-webkit-transform:scale3d(0,0,0) translate3d(-100%,0,0);transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;-webkit-transform:scale3d(0,0,0) translate3d(100%,0,0);transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;-webkit-transform:scaleX(1) translateZ(0);transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0) scale(.1) skew(-10deg);transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0) scale(.1) skew(10deg);transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#fff;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:transparent;top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs>ul{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x>ul{overflow:hidden}.fancybox-thumbs-y>ul::-webkit-scrollbar{width:7px}.fancybox-thumbs-y>ul::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y>ul::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs>ul>li{-webkit-backface-visibility:hidden;backface-visibility:hidden;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs-loading{background:rgba(0,0,0,.1)}.fancybox-thumbs>ul>li{background-position:50%;background-repeat:no-repeat;background-size:cover}.fancybox-thumbs>ul>li:before{border:4px solid #4ea7f9;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs .fancybox-thumbs-active:before{opacity:1}@media (max-width:800px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs>ul>li{max-width:calc(100% - 10px)}}
/* End */


/* Start:/local/templates/ritual/vendor/fontawesome/css/all.min.css?169081045353592*/
.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-brands-400.eot);src:url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-brands-400.woff2) format("woff2"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-brands-400.woff) format("woff"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-brands-400.ttf) format("truetype"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-regular-400.eot);src:url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-regular-400.woff2) format("woff2"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-regular-400.woff) format("woff"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-regular-400.ttf) format("truetype"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-solid-900.eot);src:url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-solid-900.woff2) format("woff2"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-solid-900.woff) format("woff"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-solid-900.ttf) format("truetype"),url(/local/templates/ritual/vendor/fontawesome/css/../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
/* End */


/* Start:/local/templates/ritual/components/bitrix/breadcrumb/ritual/style.css?16908104551129*/
.bx-breadcrumb {
	margin: 0 0;
}
.bx-breadcrumb i {
	color: #b5bdc2;
	vertical-align: middle;
	margin-right: 5px;
	font-size: 16px;	
	font-style:normal;
	display: inline-block;
    padding-bottom: 2px;
}
.bx-breadcrumb .bx-breadcrumb-item {
	float: left;
	margin-bottom: 10px;
	white-space: nowrap;
	line-height: 13px;
	vertical-align: middle;
	margin-right: 10px;
	color:#ad5a55;
}
.bx-breadcrumb .bx-breadcrumb-item span {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	white-space: normal;

}
.bx-breadcrumb .bx-breadcrumb-item a {
	border-bottom: none;
	color:#777;
	text-decoration:none;
}
.bx-breadcrumb .bx-breadcrumb-item a:hover {}

@media screen and (min-width:1382px) {

}


@media screen and (min-width:1024px) and (max-width: 1382px) {

}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
	.bx-breadcrumb i {
		vertical-align:baseline;
		font-size:13px;
		margin-right:0;
	}
	.bx-breadcrumb .bx-breadcrumb-item {
		float:none;
		display:inline;
		margin-right:5px;
	}
	.bx-breadcrumb .bx-breadcrumb-item span {
		font-size:11px;
	}
}
/* End */


/* Start:/local/templates/ritual/components/bitrix/form/consultation/bitrix/form.result.new/.default/style.min.css?16926058762596*/
#form_consultation{box-shadow:1px solid #ad5a55;font-family:'Open Sans',sans-serif;max-width:1350px;width:95%;margin: 50px auto 0;background:rgba(125,38,28,.7)}#form_consultation input{outline:0;border:1px solid #d7d7d7;padding:0 15px;width:100%;height:48px;margin:auto;font-size:14px}#form_consultation .form__image{background-image:url(/local/templates/ritual/components/bitrix/form/consultation/bitrix/form.result.new/.default/images/red.jpg);width:300px;background-size:cover;border-bottom-right-radius:120px;margin-right:40px}#form_consultation span{display:block;font-size:16px;margin-bottom:5px;color:#fff}#form_consultation .form__application{display:flex}#form_consultation .form__field{padding:15px 0;width:100%}#form_consultation .form__container{width:100%;display:flex;position:relative;justify-content:flex-start}#form_consultation .form__tel a{font-weight:700;color:#fff;text-decoration:none;font-size:26px;transition:.3s}#form_consultation .form__tel:hover a{color:#814340}#form_consultation .form__button{font-size:16px;border:0;display:flex;justify-content:center;align-items:center;height:48px;background:#682926;color:#fff;transition:.3s;border-bottom-right-radius:6px;border-top-right-radius:6px;cursor:pointer;padding:0 30px;font-family:'Open Sans',sans-serif;text-transform:uppercase;text-decoration:none;outline:0;transition:.3s}#form_consultation .form__button:hover{background-color:#814340}#form_consultation .form__title{font-size:24px;font-weight:700;color:#fff;font-family:'Open Sans',sans-serif}#form_consultation .form__button:disabled,#form_consultation .form__button[disabled]{background:#919191;cursor:default}#form_consultation .form__field.form__field-checkbox{padding:0}#form_consultation .form__field.form__field-checkbox .field{margin:0;margin-bottom:16px}#form_consultation .checkbox-rui__input{display:none}#form_consultation .checkbox-rui__label{cursor:pointer}#form_consultation .checkbox-rui__label:before{position:relative;top:5px;left:0;content:"";display:inline-block;height:20px;width:20px;background:#eceff1;cursor:pointer;margin-right:8px;background-image:url(/local/templates/ritual/components/bitrix/form/consultation/bitrix/form.result.new/.default/images/checked.png);background-size:0;background-repeat:no-repeat;background-position:center}#form_consultation .checkbox-rui__input:checked+.checkbox-rui__label:before{background-size:16px}#form_consultation .checkbox-rui__label_calc{font-size:12px;color:#929292}@media all and (max-width:768px){#form_consultation .form__container{flex-wrap:wrap;justify-content:flex-start;padding:0 5px}#form_consultation .form__image{width:100%;height:130px;margin-bottom:20px}#form_consultation .form__button{padding:0 15px}#form_consultation .form__application{margin-top:10px;width:95%}}
/* End */


/* Start:/local/templates/ritual/components/bitrix/news.list/right-links/style.css?16928853833599*/
.page__right-side{
	position:fixed;
	left:50%;
	height:0;
	width:90%;
	max-width:1350px;
	transform:translateX(-50%);
	text-align:right;
	bottom:calc(50% - 92px);
	pointer-events:none;
	z-index: 9;
}
.inner-text-content_middle .page__left-side-cont {
	transform: translateY(-91%);
	width: 4%;
}
.page__left-side {
	position: fixed;
	left: 15px;
	height: 1px;
	width: 90%;
	max-width: 1350px;
	transform: none;
	bottom: 108px !important;
	pointer-events:none;
	z-index: 999;
}
.page__left-side-cont {
	width: 8%;
	display: block;
	transform: none;
}
.page__right-side-cont{
	width:8%;
	display:inline-block;
	transform:translateY(-50%);
	pointer-events:auto;
}
.inner-text-content_middle .page__right-side-cont{
	width:4%;
}
.page .text-center {
	text-align: center;
}
.page__rubric {
	padding: 0 15px;
	box-sizing: border-box;
}
.page__footer-rate {
	width: 150px;
	margin-top:16px;
}
.page__overlay {
	width: 100%;
	height: 99999px;
	background-color: rgba(0,0,0,.24);
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	z-index: 26;
}
.quick-access {
	font-size:11px;
	font-family:'Open Sans','Arial','Sans-Serif';
}
.quick-access__list {
	display:flex;
	flex-direction:column;
	align-items:flex-end;
}
.quick-access__item {
	width:100%;
	margin:4px 0;
	background:#f3f3f3;
	text-align:center;
	color:#af5c58;
	text-transform:uppercase;
	padding:8px 0;

	display:flex;
	transition:width 0.2s ease;
	box-sizing:border-box;
}
.quick-access__h1{
	font-size:18px;
	margin-top:2px;
}
.quick-access__link{
	margin: auto;
	letter-spacing:-0.5px;
	width:100%;
	text-align:center;
}
.quick-access__icon{
	width:32px;
	height:32px;
	display:block;
	margin:8px auto;
	fill:#af5c58;
}
.quick-access__icon_cart{
	transform:translateX(-4px);
}
.quick-access__icon_mobile{
	display:none;
}
.inner-text-content_middle .quick-access__text {
	display:none;
}
.inner-text-content_middle .quick-access__icon{
	width:32px;
	height:32px;
	margin:0 auto;
}
.inner-text-content_middle .quick-access__icon_cart{
	transform:translateX(-2px);
}
.inner-text-content_middle .quick-access__icon_mobile{
	display:block;
}
.page__content{
	margin-top:185px;
}
@media screen and (min-width:1382px) {
	.page__left-side-cont {
		width: 8%;
		display: block;
		transform: translateY(-50%);
	}
	.quick-access__item:hover {
		width:104%;
	}
}
@media screen and (min-width:1024px) and (max-width: 1382px) {
	.quick-access__text {
		display:none;
	}
	.quick-access__icon{
		width:32px;
		height:32px;
		margin:0 auto;
	}
	.quick-access__icon_cart{
		transform:translateX(-2px);
	}
	.quick-access__icon_mobile{
		display:block;
	}
}
@media screen and (min-width: 1030px) {
	.page__overlay {
		display: none !important;
	}
}
@media screen and (max-width: 1024px) {
	.page__right-side{
		bottom:50%;
	}
	.inner-text-content_middle .page__right-side{
		display:none;
	}
	.inner-text-content_middle .page__left-side{
		display:none;
	}
	.page__left-side-cont {
		transform: translateY(-180%);
	}
	.page__content {
		margin-top: 80px;
	}
	.quick-access__text {
		display:none;
	}
	.quick-access__icon{
		width:24px;
		height:24px;
		margin:0 auto;
	}

	.quick-access__icon_cart{
		transform:translateX(-2px);
	}
	.quick-access__icon_mobile{
		display:block;
	}
}
@media screen and (max-width: 768px) {
	.quick-access__icon{
		width:16px;
		height:16px;
	}
	.page__left-side-cont {
		transform: translateY(-233%);
	}
}
@media (max-width: 750px) {
	.page__content {
		margin-top: 50px;
	}
}
@media (max-width: 480px) {
	.page__content{
		margin-top: 70px;
	}
}
@media screen and (max-width: 416px) {
	.page__right-side{
		display:none;
	}
}
/* End */


/* Start:/local/components/ritual/form.online/templates/spb/style.css?1700220086556*/
.form_online {
    max-width: 512px;
    margin: 0 auto;
}
.btn-rui {
    font-size: 16px;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    background: #ad5a55;
    color: #fff;
    transition: .3s;
    border-radius: 8px;
    cursor: pointer;
    padding: 0 32px;
    font-family: 'Open Sans','Arial','Sans-Serif';
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.btn-rui_center{
    margin: auto;
}
/* End */


/* Start:/local/components/cookie.notification/templates/.default/style.css?17440153212933*/
.cookie-notification-modal{
    font-size: 12px;
    position:fixed;
    bottom: 40px;
    max-width: 320px;
	margin: auto;
    left: 18px;
    right: 18px;
    z-index:1060;
    padding:20px;
    line-height:1.5;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgb(18 17 36 / 14%), 0 4px 32px rgb(18 17 36 / 18%);
}
.cookie-agree{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    width:100%
}
.cookie-notification-modal svg {
	width: 17px;
}
.cookie-agree__buttons{
	width: 75px;
}
@media (max-width:767px){
    .cookie-agree{
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -ms-flex-direction:column;
        flex-direction:column
    }
    
    .cookie-notification-modal {
        display: none;
    }
}
.cookie-agree__text{
    line-height:1.5;
    margin:0;
}
@media (min-width:768px){
    .cookie-agree__text{
        padding-right:10px
    }
}
@media (max-width:767px){
    .cookie-agree__text{
        margin-bottom:10px
    }
}
.cookie-agree__buttons{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	align-items: center;
}
@media (max-width:767px){
    .cookie-agree__buttons{
        -ms-flex-item-align:center;
        align-self:center;
        -webkit-box-pack:stretch;
        -ms-flex-pack:stretch;
        justify-content:stretch;
        width:100%
    }
}
.cookie-agree__button{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    color:#fff;
    font-size:12px;
    height:35px;
    border-radius:4px;
    -webkit-transition:color .3s ease-out,background .3s ease-out;
    transition:color .3s ease-out,background .3s ease-out;
    cursor:pointer;
	text-decoration: none;
}
@media (min-width:768px){
    .cookie-agree__button{
        width:100px
    }
}
@media (max-width:767px){
    .cookie-agree__button{
        -webkit-box-flex:1;
        -ms-flex:1 0 100px;
        flex:1 0 100px
    }
}
.cookie-agree__button:not(:last-child){
    margin-right:10px
}
.cookie-agree__button.btn-green{
    background:#66c05d;
    border:1px solid #66c05d
}
@media (min-width:992px){
    .cookie-agree__button.btn-green:hover{
        color:#71c768;
        background:#189600
    }
}
@media (max-width:991px){
    .cookie-agree__button.btn-green:active{
        color:#71c768;
        background:#fff
    }
}
.cookie-agree__button.btn-dark{
    background:#333f46;
    border:1px solid #333f46
}
@media (min-width:992px){
    .cookie-agree__button.btn-dark:hover{
        color:#333f46;
        background:#fff
    }
}
@media (max-width:991px){
    .cookie-agree__button.btn-dark:active{
        color:#333f46;
        background:#fff
    }
}
/* End */


/* Start:/local/templates/ritual/components/bitrix/system.pagenavigation/round_chpu/style.css?16996221932754*/
.bx-pagination {
	margin: 10px 0;
}
.bx-pagination .bx-pagination-container {
	text-align: center;
	position: relative;
}
.bx-pagination .bx-pagination-container ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
}
.bx-pagination .bx-pagination-container ul li {
	display: inline-block;
	margin: 0 2px 15px 2px;
}
.bx-pagination .bx-pagination-container ul li span{
    -webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
       -moz-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    	-ms-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    	 -o-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    		transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	padding: 0 8px;
	display: block;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	font-size: 14px;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-pagination .bx-pagination-container ul li a {
	text-decoration: none;
	display: block;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	vertical-align: middle;
}
.bx-pagination .bx-pagination-container ul li a:hover span{
	background: #DADADA;
}
.bx-pagination .bx-pagination-container ul li.bx-active span{
	background: #ad5a55;
	color: #fff;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a span {
	background: #fff;
	border: 2px solid #eff0f1;
	line-height: 28px;
	padding: 0 18px;
	color: #444;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span{
	color: #aab1b4;
	background: #fff;
	border: 2px solid #eff0f1;
	line-height: 28px;
	padding: 0 18px;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span {
	background: #fff;
	border-color: #DADADA;
	color: #000;
}

/*color schemes*/
.bx-pagination.bx-green  .bx-pagination-container ul li.bx-active span{
	background: #3bc915;
	color: #fff;
}
.bx-pagination.bx-yellow  .bx-pagination-container ul li.bx-active span{
	background: #F9A91D;
	color: #fff;
}
.bx-pagination.bx-red  .bx-pagination-container ul li.bx-active span{
	background: #E22B2B;
	color: #fff;
}
.bx-pagination.bx-blue .bx-pagination-container ul li.bx-active span{
	background: #0083d1;
	color: #fff;
}

/* End */


/* Start:/local/templates/ritual/styles.css?1692262786705*/
.text-center {
	text-align:center;
}

.search-page table {
	border-spacing: 0 !important;
}

@media (max-width: 600px) {
	.totop {
		width: 32px;
		height: 33px;
		line-height: 30px;
		font-size: 16px;
		left: 30px;
		bottom: 65px!important;
	}
	.page__mobile-menu{
		z-index: 2100;
	}

}

@media (max-width: 1030px) {
	.totop {
		bottom: 65px;
	}
}

@media (max-width: 1350px) {
	.totop {
		right: 15px;
		bottom: 15px;
	}
}

.totop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 10;
	background-color: #ad5a55;
	color: #fff;
	border-radius: 0;
	width: 40px;
	height: 40px;
	line-height: 36px;
	font-size: 18px;
	text-align: center;
	z-index: 2000;
}
.totop .icon {
	vertical-align: middle;
}
/* End */


/* Start:/local/templates/ritual/template_styles.css?16908104557909*/
* {
	outline:none;
}
:focus {
	outline:none;
}

body {
	font-family:'Arial','Sans-Serif';
	font-size:14px;
	overflow-x:hidden;
}

a {
	color:#ad5a55;
}

a[href^=tel] {
    white-space: nowrap;
}

a[href^=mailto] {
    white-space: nowrap;
}

strong {
	color:#ad5a55;
}

img {
	max-width:100%;
	flex-shrink:0;
}


.text-center {
	text-align:center;
}


@media screen and (min-width:1024px){
	.om { /* only mobile */
		display:none;
	}
	
	
}


@media screen and (max-width: 1024px) {
	.od { /* only desktop */
		display:none;
	}
	
    .funeral-wrap div {
        float: none !important;
        width: 100% !important;
    }

    .funeral-wrap div img {
        height: auto !important
    }	
}


.billboard1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 30px;
	margin: 30px 0;
	background-color: #af625a;
	color: #fff;
	text-align: left;
	line-height: 1.4;
}

.billboard1__wrap1 {
	width: calc(100% - 270px);
}

.billboard1__wrap1 ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0;
	padding-left: 0;
	margin-top: -7px;
}

.billboard1__wrap1 ul li {
	width: 32%;
	font-size: 18px;
	letter-spacing: 0.18px;
	list-style: none;
	margin-top: 7px;
}

.billboard1__title {
	font-size: 36px;
	letter-spacing: 0.36px;
}

.billboard1__subtitle {
	font-size: 24px;
	letter-spacing: 0.24px;
	margin-bottom: 15px;
}

.billboard1__wrap2 {
	max-width: 252px;
	width: 100%;
}

.billboard1__btn {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 36px;
	letter-spacing: 0.36px;
	padding: 9px 10px;
	background-color: #c6746b;
	border-radius: 0;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	text-decoration: none;
}

.billboard1__btn:hover {
	background-color: #7d251b;
}

@media only screen and (max-width: 1250px) {
	.billboard1__wrap1 ul li {
		width: 48%;
	}
}

@media only screen and (max-width: 900px) {
	.billboard1__wrap1 {
		width: 100%;
		margin-bottom: 25px;
	}

	.billboard1__title {
		font-size: 28px;
	}

	.billboard1__subtitle {
		font-size: 20px;
	}

	.billboard1__wrap1 ul li {
		font-size: 16px;
	}

	.billboard1__btn {
		font-size: 28px;
	}

	.billboard1 {
		padding: 20px 15px;
	}
}

@media only screen and (max-width: 600px) {
	.billboard1__wrap1 ul li {
		width: 100%;
	}
}
.iwaly-form {
	height: 1366px;
}
@media (max-width: 1138px) {
	.iwaly-form {
		height: 2116px;
	}
}
@media (max-width: 767px) {
	.iwaly-form {
		height: 2116px;
	}
}
@media (max-width: 414px) {
	.iwaly-form {
		height: 2174px;
	}
}
@media (max-width: 280px) {
	.iwaly-form {
		height: 2390px;
	}
}


/*mobile redesign*/
.agent-small {
	display: none;
}
.page__header-mobile {
	background: #fff;
	box-shadow: none;
	justify-content: space-between;
}
.page__header-mobile_white {
	background: #fff;
}
.is_scrolled .page__header-mobile {
	background: #fff;
}
.page__header-mobile-bars {
	color: #ad5a55;
}
.page__header-mobile-logo {
	display: flex;
	font-family: 'Open Sans','Arial','Sans-Serif';
	transition: opacity 0.4s ease;
	align-self: center;
}
.page__header-mobile-container {
	width: 100%;
	padding: 0 24px 0 2px;
	display: flex;
	justify-content: space-between;
	align-self: center;
}
.page__header-mobile-logo__view_mobile {
	width: 29px;
	height: 29px;
}
.page__header-mobile-logo__picture {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("/include/image/tickemblem.svg?1");
}
.page__header-mobile-logo__desc {
	font-size: 6px;
	font-weight: bold;
	text-transform: uppercase;
}
.page__header-mobile-title {
	flex-grow: initial;
}
.page__header-mobile-title-img {
	height: 34px;
	width: 137px;
	vertical-align: top;
}
.index-top-banner {
	display: none;
	width: 100%;
	background: #ad5a55;
	font-family: 'Open Sans', 'Arial', 'Sans-Serif';
	font-weight: 700;
	font-size: 9px;
	text-align: center;
	color: #fff;
	padding: 10px 0;
}
.index-top-banner__container {
	margin: 0 8%;
}
.index-top-banner__title {
	margin-bottom: 10px;
	font-size: 20px;
}
.index-top-banner__advantage {
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	font-weight: 600;
}
.index-top-banner__advantage_icon {
	height: 34px;
}
.index-top-banner__subtitle {
	font-size: 16px;
}
.index-top-banner__phone a {
	font-size: 34px;
	color: #fff;
}
.main-banner .index-top-banner {
	margin: 0 16px 0;
	max-width: 584px;
	display: block;
	font-size: 16px;
}
.main-banner .index-top-banner br {
	display: none;
}
.main-banner .index-top-banner__title {
	font-size: 24px;
	margin-bottom: 20px;
}
.main-banner .index-top-banner__advantage_item {
	margin-bottom: 10px;
	border: 2px solid #fff;
	padding: 15px;
	max-width: 145px;
	box-sizing: border-box;
}
.main-banner .index-top-banner__advantage_item:nth-child(2n) {
	max-width: 160px;
}
.main-banner .index-top-banner__advantage_icon {
	height: 67px;
	margin-bottom: 10px;
}
.main-banner .index-top-banner__subtitle {
	font-size: 24px;
	margin-bottom: 10px;
}
.main-banner .index-top-banner__phone a {
	font-size: 45px;
	line-height: 45px;
}
.main-banner .index-top-banner__phone img {
	vertical-align: bottom;
}
.main-banner__container_zab.with-agent {
	flex-direction: row-reverse;
}

blockquote {
	display: block;
	position: relative;
	margin: 15px 0;
	padding: 30px 35px;
	background: #f3f3f3;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}
.widget__hidden {
	display: none;
}
@media screen and (max-width: 1098px) {
	.main-banner .index-top-banner {
		font-size: 14px;
	}
	.main-banner .index-top-banner__phone a {
		font-size: 41px;
		line-height: 41px;
	}
}
@media screen and (max-width: 1030px) {
	.page__header-mobile {
		height: 71px;
	}
}
@media screen and (max-width: 1024px) {
	.l-intro__header {
		display: none;
	}
	.main-rassrochka {
		max-width: initial;
	}
	.page__content {
		margin-top: 0;
	}
	.index-top-banner {
		display: block;
	}
	.inner-text-content__without-agent {
		margin-top: 0px;
	}
	.page__header {
		height: 177px;
		margin-top: 75px;
	}
	.page__heade.page__header_sub {
		background: none;
	}
	.page__header.page__header_sub.without-agent {
		height: 0;
		margin-top: 110px;
	}
	.is_scrolled .page__header.page__header_sub.with-agent {
		height: 150px;
	}
	.page__header_index.page__header {
		height: 128px;
		margin-top: 0;
	}
	.page__header-info {
		display: none;
	}
	.main-banner__container_zab.with-agent {
		flex-direction: column;
	}
	.main-banner .index-top-banner {
		margin: 0 -32px 70px;
		font-size: 9px;
	}
	.main-banner .index-top-banner br {
		display: inline;
	}
	.main-banner .index-top-banner__title {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.main-banner .index-top-banner__advantage_item {
		border: none;
		padding: 0;
		max-width: initial;
		margin-bottom: 0;
	}
	.main-banner .index-top-banner__advantage_icon {
		height: 34px;
		margin-bottom: 0;
	}
	.main-banner .index-top-banner__subtitle {
		font-size: 16px;
	}
	.main-banner .index-top-banner__phone a {
		font-size: 34px;
		line-height: 34px;
	}
	.main-banner .index-top-banner__phone img {
		display: none;
	}
	.is_scrolled .page__header .index-top-banner {
		display: none;
	}
	.is_scrolled .agent-small {
		display: block !important;
	}
	.without-agent .main-banner__popup {
		margin-top: 30px;
	}
}
@media screen and (max-width: 768px) {
	.main-banner .index-top-banner {
		width: 92%;
	}
}
@media screen and (max-width: 750px) {
	.page__header-mobile {
		height: 71px;
	}
	.page__content {
		margin-top: 0;
	}
}
@media (max-width: 480px) {
	.page__content {
		margin-top: 0;
	}
	.index-top-banner__container {
		max-width: 309px;
		margin: 0 auto;
	}
}
/* End */
/* /local/templates/ritual/css/add.css?17241593912634 */
/* /local/templates/ritual/css/normalize.css?16908104536052 */
/* /local/templates/ritual/css/page.css?16908104532785 */
/* /local/templates/ritual/css/header.css?16908104531348 */
/* /local/templates/ritual/css/footer.css?16908104533410 */
/* /local/templates/ritual/css/content.css?16908104532998 */
/* /local/templates/ritual/css/logo.css?1690810453552 */
/* /local/templates/ritual/css/btn.css?1690810453556 */
/* /local/templates/ritual/css/header-region-selector.css?1690810453999 */
/* /local/templates/ritual/css/h2.css?1690810453420 */
/* /local/templates/ritual/css/form.css?16908104531912 */
/* /local/templates/ritual/css/field.css?1690810453277 */
/* /local/templates/ritual/css/input.css?1690810453356 */
/* /local/templates/ritual/css/checkbox.css?16908104531284 */
/* /local/templates/ritual/css/file-upload.css?169081045387 */
/* /local/templates/ritual/css/icon.css?1690810453139 */
/* /local/templates/ritual/css/table-scroll.css?169081045348 */
/* /local/templates/ritual/css/header-search.css?16908104531150 */
/* /local/templates/ritual/css/header-l-logo-desc.css?169081045361 */
/* /local/templates/ritual/css/top-menu.css?16908104531670 */
/* /local/templates/ritual/css/submenu.css?16914052606009 */
/* /local/templates/ritual/css/main-banner.css?16908104533267 */
/* /local/templates/ritual/css/arr-block.css?16908104531695 */
/* /local/templates/ritual/css/tblock.css?16908104532017 */
/* /local/templates/ritual/css/fix-footer.css?1690810453914 */
/* /local/templates/ritual/css/mobile-search.css?16908104531885 */
/* /local/templates/ritual/css/mobile-bar.css?1690810453362 */
/* /local/templates/ritual/css/mobile-menu.css?16908104531366 */
/* /local/templates/ritual/css/tabs.css?16908104532299 */
/* /local/templates/ritual/css/arr-price.css?16908104531865 */
/* /local/templates/ritual/css/half-block.css?16908104531146 */
/* /local/templates/ritual/css/video-block.css?16908104536236 */
/* /local/templates/ritual/css/youtube.css?16908104531394 */
/* /local/templates/ritual/css/main-reviews.css?16908104532062 */
/* /local/templates/ritual/css/main-news.css?16908104531932 */
/* /local/templates/ritual/css/main-smi.css?16908104531595 */
/* /local/templates/ritual/css/list-news-item.css?16908104531387 */
/* /local/templates/ritual/css/flat-grid.css?16908104531529 */
/* /local/templates/ritual/css/cemetery-item.css?1690810453932 */
/* /local/templates/ritual/css/big-banner.css?16908104531949 */
/* /local/templates/ritual/css/intro-menu.css?1690810453192 */
/* /local/templates/ritual/css/plan-section.css?16908104531510 */
/* /local/templates/ritual/css/calc-banner.css?1690810453901 */
/* /local/templates/ritual/css/right-image.css?1690810453879 */
/* /local/templates/ritual/css/left-image.css?1690810453620 */
/* /local/templates/ritual/css/news-list.css?16908104531268 */
/* /local/templates/ritual/css/review-list.css?16908104531585 */
/* /local/templates/ritual/css/why-us.css?16908104531045 */
/* /local/templates/ritual/css/b-more.css?16908104531654 */
/* /local/templates/ritual/css/b-map.css?1690810453867 */
/* /local/templates/ritual/css/header-logo-desc.css?1690810453156 */
/* /local/templates/ritual/css/section-list.css?16908104532261 */
/* /local/templates/ritual/css/catalog-item.css?1690810453514 */
/* /local/templates/ritual/css/smi-item.css?16908104531184 */
/* /local/templates/ritual/css/insrtuction.css?1690810453589 */
/* /local/templates/ritual/css/qr-memo.css?16908104531119 */
/* /local/templates/ritual/css/qr-promo.css?1690810453222 */
/* /local/templates/ritual/css/funeral-organization.css?1690810453447 */
/* /local/templates/ritual/css/region-selector.css?16908104531373 */
/* /local/templates/ritual/css/section-slider.css?16908104531327 */
/* /local/templates/ritual/css/line-gallery.css?1690810453603 */
/* /local/templates/ritual/css/vacancy.css?1690810453823 */
/* /local/templates/ritual/css/catalog.css?1690810453106 */
/* /local/templates/ritual/css/calc.css?16908104533434 */
/* /local/templates/ritual/css/coffin.css?169081045311550 */
/* /local/templates/ritual/css/slim-bubba.css?16908104533401 */
/* /local/templates/ritual/css/banner-only-btn.css?1690810453161 */
/* /local/templates/ritual/css/mix.css?169081045338 */
/* /local/templates/ritual/css/p-main.css?16908104532144 */
/* /local/templates/ritual/css/p-contact.css?1690810453820 */
/* /local/templates/ritual/css/l-tblock.css?1690810453468 */
/* /local/templates/ritual/css/l-tblock2.css?1690810453487 */
/* /local/templates/ritual/css/l-arr-price.css?1690810453571 */
/* /local/templates/ritual/css/l-plan-section.css?1690810453799 */
/* /local/templates/ritual/css/l-catalog-item.css?1690810453523 */
/* /local/templates/ritual/css/l-smi.css?169081045378 */
/* /local/templates/ritual/css/l-four.css?1690810453584 */
/* /local/templates/ritual/css/l-three.css?1690810453592 */
/* /local/templates/ritual/css/l-funeral-organization.css?1690810453811 */
/* /local/templates/ritual/css/l-vacancy.css?169081045353 */
/* /local/templates/ritual/css/autoload/add.css?17023773569480 */
/* /local/templates/ritual/css/autoload/agent-page.css?16908104536710 */
/* /local/templates/ritual/css/autoload/article-detail.css?169081045397 */
/* /local/templates/ritual/css/autoload/banner-bubba.css?16908104532818 */
/* /local/templates/ritual/css/autoload/banner-bubba_menu.css?1690810453889 */
/* /local/templates/ritual/css/autoload/banner-md.css?16908104531471 */
/* /local/templates/ritual/css/autoload/banner-organization.css?16908104533306 */
/* /local/templates/ritual/css/autoload/banner-quadro.css?16908104533983 */
/* /local/templates/ritual/css/autoload/banner-sm.css?16908104531311 */
/* /local/templates/ritual/css/autoload/big-map.css?1690810453578 */
/* /local/templates/ritual/css/autoload/big-phone.css?16908104531188 */
/* /local/templates/ritual/css/autoload/body-repository.css?16908104531796 */
/* /local/templates/ritual/css/autoload/cemetery-what-video.css?16908104531549 */
/* /local/templates/ritual/css/autoload/cities.css?16908104534534 */
/* /local/templates/ritual/css/autoload/clear-both.css?169081045334 */
/* /local/templates/ritual/css/autoload/expand.css?1690810453739 */
/* /local/templates/ritual/css/autoload/gk-table.css?16908104531186 */
/* /local/templates/ritual/css/autoload/gk-table_morgue.css?1690810453524 */
/* /local/templates/ritual/css/autoload/hidden.css?169081045326 */
/* /local/templates/ritual/css/autoload/icon-list.css?1690810453598 */
/* /local/templates/ritual/css/autoload/l-agent.css?1690810453661 */
/* /local/templates/ritual/css/autoload/l-main-icon.min.css?16926964151386 */
/* /local/templates/ritual/css/autoload/l-main-icon.min.css?16926964151386 */
/* /local/templates/ritual/css/autoload/main-raiting.css?1690810453973 */
/* /local/templates/ritual/css/autoload/main-rassrochka.min.css?16926961451821 */
/* /local/templates/ritual/css/autoload/main-rassrochka.min.css?16926961451821 */
/* /local/templates/ritual/css/autoload/map-schema-gps.css?16908104531221 */
/* /local/templates/ritual/css/autoload/price-table.css?16908104535730 */
/* /local/templates/ritual/css/autoload/rating-box.css?1690810453591 */
/* /local/templates/ritual/css/autoload/review-stars.css?1690810453152 */
/* /local/templates/ritual/css/autoload/service-arrow.css?16908104531089 */
/* /local/templates/ritual/css/autoload/slide-list.css?16908104532098 */
/* /local/templates/ritual/css/autoload/stat-info.css?1690810453630 */
/* /local/templates/ritual/css/autoload/tab-agent.css?16908104533113 */
/* /local/templates/ritual/css/autoload/ul-address.css?1690810453224 */
/* /local/templates/ritual/css/autoload/what-for-agent.css?16908104532844 */
/* /local/templates/ritual/css/autoload/zabban.css?16908104538616 */
/* /local/templates/ritual/css/autoload/zb2.css?16908104532359 */
/* /local/templates/ritual/vendor/owl/assets/owl.carousel.min.css?16908104553351 */
/* /local/templates/ritual/vendor/owl/assets/owl.theme.default.min.css?16908104551013 */
/* /local/templates/ritual/vendor/fancybox/jquery.fancybox.min.css?169081045514065 */
/* /local/templates/ritual/vendor/fontawesome/css/all.min.css?169081045353592 */
/* /local/templates/ritual/components/bitrix/breadcrumb/ritual/style.css?16908104551129 */
/* /local/templates/ritual/components/bitrix/form/consultation/bitrix/form.result.new/.default/style.min.css?16926058762596 */
/* /local/templates/ritual/components/bitrix/news.list/right-links/style.css?16928853833599 */
/* /local/components/ritual/form.online/templates/spb/style.css?1700220086556 */
/* /local/components/cookie.notification/templates/.default/style.css?17440153212933 */
/* /local/templates/ritual/components/bitrix/system.pagenavigation/round_chpu/style.css?16996221932754 */
/* /local/templates/ritual/styles.css?1692262786705 */
/* /local/templates/ritual/template_styles.css?16908104557909 */
