@charset "UTF-8";
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
	width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/

/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
	@include sprite-width($icon-home);
}

.icon-email {
	@include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
	display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/

/*
The `sprites` mixin generates identical output to the CSS template
	but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

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

body {
	margin: 0;
}

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

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

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

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

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

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

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

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

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

button[disabled],
html input[disabled] {
	cursor: default;
}

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

input {
	line-height: normal;
}

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

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

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

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

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

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/**
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.modal__header:before,
.modal__footer:before,
.form-horizontal .form-group:before,
.dl-horizontal dd:before {
	content: ' ';
	display: table;
}

.modal__header,
.modal__footer,
.form-horizontal .form-group,
.offer-carousel__frame {
	*zoom: 1;
}

.modal__header:after,
.modal__footer:after,
.form-horizontal .form-group:after,
.offer-carousel__frame:after {
	content: ' ';
	display: table;
	clear: both;
}

/**
 * Everything but Internet Explorer тЙд8
 */

/**
 * Internet Explorer/Edge 8
 */

/**
 * Internet Explorer/Edge 6-8
 */

/**
 * With the mixin you can do:
 * ```
 * @include rem-fallback(margin, 10, 20, 30, 40);
 * ```
 * and get:
 * ```
 * margin: 160px 320px 480px 640px;
 * margin: 10rem 20rem 30rem 40rem;
 * ```
 */

.root {
	min-width: 320px;
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 320px) {
	.root {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (min-width: 768px) {
	.root {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (min-width: 1024px) {
	.root {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (min-width: 1260px) {
	.root {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (min-width: 1260px) {
	.padded,
	.root__advantages,
	.root__article,
	.root__main,
	.root__quality-assurance {
		width: 1230px;
		margin-left: auto;
		margin-right: auto;
	}
}

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

@media (min-width: 320px) {
	.unpadded {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 768px) {
	.unpadded {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 1024px) {
	.unpadded {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 1260px) {
	.unpadded {
		width: 1230px;
		margin-left: auto;
		margin-right: auto;
	}
}

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

@media (min-width: 320px) {
	.padding {
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media (min-width: 768px) {
	.padding {
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media (min-width: 1024px) {
	.padding {
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media (min-width: 1260px) {
	.padding {
		margin-left: 0;
		margin-right: 0;
	}
}

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

@media (min-width: 320px) {
	.unpadding {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 768px) {
	.unpadding {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 1024px) {
	.unpadding {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 1260px) {
	.unpadding {
		margin-left: 0;
		margin-right: 0;
	}
}

.wide,
.root__header,
.root__footer,
.root__offer {
	margin-left: -15px;
	margin-right: -15px;
}

@media (min-width: 320px) {
	.wide,
	.root__header,
	.root__footer,
	.root__offer {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 768px) {
	.wide,
	.root__header,
	.root__footer,
	.root__offer {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 1024px) {
	.wide,
	.root__header,
	.root__footer,
	.root__offer {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 1260px) {
	.wide,
	.root__header,
	.root__footer,
	.root__offer {
		margin-left: -15px;
		margin-right: -15px;
	}
}

.wide__padded,
.root__header-content,
.root__footer-content,
.root__offer-content {
	margin-left: 15px;
	margin-right: 15px;
}

@media (min-width: 320px) {
	.wide__padded,
	.root__header-content,
	.root__footer-content,
	.root__offer-content {
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media (min-width: 768px) {
	.wide__padded,
	.root__header-content,
	.root__footer-content,
	.root__offer-content {
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media (min-width: 1024px) {
	.wide__padded,
	.root__header-content,
	.root__footer-content,
	.root__offer-content {
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media (min-width: 1260px) {
	.wide__padded,
	.root__header-content,
	.root__footer-content,
	.root__offer-content {
		width: 1230px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1260px) {
	.wide__unpadded {
		width: 1230px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 320px) {
	.hidden-sm-up {
		display: none;
	}
}

@media (min-width: 768px) {
	.hidden-md-up {
		display: none;
	}
}

@media (min-width: 1024px) {
	.hidden-lg-up {
		display: none;
	}
}

@media (min-width: 1260px) {
	.hidden-hi-up {
		display: none;
	}
}

.article>h1:last-child,
.post__teaser>h1:last-child,
.article>h2:last-child,
.post__teaser>h2:last-child,
.article>h3:last-child,
.post__teaser>h3:last-child,
.article>h4:last-child,
.post__teaser>h4:last-child,
.article>h5:last-child,
.post__teaser>h5:last-child,
.article>h6:last-child,
.post__teaser>h6:last-child,
.article>.h1:last-child,
.post__teaser>.h1:last-child,
.article>.h2:last-child,
.post__teaser>.h2:last-child,
.article>.h3:last-child,
.post__teaser>.h3:last-child,
.article>.h4:last-child,
.post__teaser>.h4:last-child,
.article>.h5:last-child,
.post__teaser>.h5:last-child,
.article>.h6:last-child,
.post__teaser>.h6:last-child,
.article>p:last-child,
.post__teaser>p:last-child,
.article>ul:last-child,
.post__teaser>ul:last-child,
.article>ol:last-child,
.post__teaser>ol:last-child,
.article>ul:last-child>li:last-child,
.post__teaser>ul:last-child>li:last-child,
.article>ol:last-child>li:last-child,
.post__teaser>ol:last-child>li:last-child,
.article>dl:last-child,
.post__teaser>dl:last-child,
.article>blockquote:last-child,
.post__teaser>blockquote:last-child,
.article>address:last-child,
.post__teaser>address:last-child {
	margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-weight: 700;
	line-height: 1.1;
	color: inherit;
}

h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.h2 .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
	font-weight: normal;
	line-height: 1;
	color: #777777;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
	margin-top: 18px;
	margin-bottom: 9px;
}

h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small {
	font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin-top: 9px;
	margin-bottom: 9px;
}

h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
	font-size: 75%;
}

h1,
.h1 {
	font-size: 33px;
}

h2,
.h2 {
	font-size: 27px;
}

h3,
.h3 {
	/* ориг font-size: 23px; }*/
	font-size: 15px;
}

h4,
.h4 {
	font-size: 14px;
}

h5,
.h5 {
	font-size: 13px;
}

h6,
.h6 {
	font-size: 12px;
}

p {
	margin: 0 0 9px;
}

.lead {
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4;
}

@media (min-width: 320px) {
	.lead {
		font-size: 19.5px;
	}
}

a,
a:link,
a:visited {
	color: #1c88d4;
	text-decoration: underline;
}

a:hover {
	color: #135d90;
	text-decoration: none;
}

small,
.small {
	font-size: 0.92 em;
}

mark,
.mark {
	background-color: #fcf8e3;
	padding: .2em;
}

.text-left {
	text-align: left;
}

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

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

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

.text-nowrap {
	white-space: nowrap;
}

.text-lowercase {
	text-transform: lowercase;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-capitalize {
	text-transform: capitalize;
}

.text-muted {
	color: #b5b1a5;
}

.text-primary {
	color: #337ab7;
}

a.text-primary,
a.text-primary:link,
a.text-primary:visited {
	color: #337ab7;
}

a.text-primary:hover,
a.text-primary:focus {
	color: #285f8f;
}

.text-success {
	color: #3c763d;
}

a.text-success,
a.text-success:link,
a.text-success:visited {
	color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
	color: #2b542c;
}

.text-info {
	color: #31708f;
}

a.text-info,
a.text-info:link,
a.text-info:visited {
	color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
	color: #245269;
}

.text-warning {
	color: #8a6d3b;
}

a.text-warning,
a.text-warning:link,
a.text-warning:visited {
	color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
	color: #66512c;
}

.text-danger {
	color: #a94442;
}

a.text-danger,
a.text-danger:link,
a.text-danger:visited {
	color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
	color: #843534;
}

.bg-primary {
	color: #fff;
	background-color: #337ab7;
}

a.bg-primary:hover,
a.bg-primary:focus {
	background-color: #285f8f;
}

.bg-success {
	background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
	background-color: #c1e2b3;
}

.bg-info {
	background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
	background-color: #afd9ee;
}

.bg-warning {
	background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
	background-color: #f7ecb5;
}

.bg-danger {
	background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
	background-color: #e4b9b9;
}

.page-header {
	padding-bottom: 8px;
	margin: 36px 0 18px;
	border-bottom: 1px solid #eeeeee;
}

ul,
ol {
	margin-top: 0;
	margin-bottom: 9px;
}

ul ul,
ul ol,
ol ul,
ol ol {
	margin-bottom: 0;
}

.list-unstyled,
.list-inline {
	padding-left: 0;
	list-style: none;
}

.list-inline {
	margin-left: -5px;
}

.list-inline>li {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

dl {
	margin-top: 0;
	margin-bottom: 18px;
}

dt,
dd {
	line-height: 1.42857;
}

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

@media (min-width: 320px) {
	.dl-horizontal dt {
		float: left;
		width: 160px;
		clear: left;
		text-align: right;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.dl-horizontal dd {
		margin-left: 180px;
	}
}

abbr[title],
abbr[data-original-title] {
	cursor: help;
	border-bottom: 1px dotted #777777;
}

.initialism {
	font-size: 90%;
	text-transform: uppercase;
}

blockquote {
	padding: 9px 18px;
	margin: 0 0 18px;
	font-size: 16.25px;
	border-left: 5px solid #eeeeee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
	margin-bottom: 0;
}

blockquote footer {
	display: block;
	font-size: 80%;
	line-height: 1.42857;
	color: #777777;
}

blockquote footer:before {
	content: '\2014 \00A0';
}

.blockquote-reverse {
	padding-right: 15px;
	padding-left: 0;
	border-right: 5px solid #eeeeee;
	border-left: 0;
	text-align: right;
}

.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before {
	content: '';
}

.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after {
	content: '\00A0 \2014';
}

address {
	margin-bottom: 18px;
	font-style: normal;
	line-height: 1.42857;
}

.button {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	vertical-align: middle;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	cursor: pointer;
	background-image: none;
}

.button:focus,
.focus.button,
.button:active:focus,
.button:active.focus,
.active.button:focus,
.active.focus.button {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.button:hover,
.button:focus,
.focus.button {
	color: #333;
	text-decoration: none;
}

.button:active,
.active.button {
	outline: 0;
	background-image: none;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.disabled.button,
[disabled].button,
fieldset[disabled] .button {
	cursor: not-allowed;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=${msalpha})";
	filter: alpha(opacity=65);
	opacity: 0.65;
	box-shadow: none;
}

a.disabled.button,
fieldset[disabled] a.button {
	pointer-events: none;
}

.button--default {
	color: #333;
	background-color: #fff;
	border-color: #ccc;
}

.button--default:focus,
.button--default.focus {
	color: #333;
	background-color: #e6e6e6;
	border-color: #8c8c8c;
}

.button--default:hover {
	color: #333;
	background-color: #e6e6e6;
	border-color: #adadad;
}

.open>.dropdown-toggle.button--default,
.button--default:active,
.button--default.active {
	color: #333;
	background-color: #e6e6e6;
	border-color: #adadad;
}

.open>.dropdown-toggle.button--default:hover,
.open>.dropdown-toggle.button--default:focus,
.open>.dropdown-toggle.button--default.focus,
.button--default:active:hover,
.button--default:active:focus,
.button--default:active.focus,
.button--default.active:hover,
.button--default.active:focus,
.button--default.active.focus {
	color: #333;
	background-color: #d4d4d4;
	border-color: #8c8c8c;
}

.open>.dropdown-toggle.button--default,
.button--default:active,
.button--default.active {
	background-image: none;
}

.button--default.disabled:hover,
.button--default.disabled:focus,
.button--default.disabled.focus,
.button--default[disabled]:hover,
.button--default[disabled]:focus,
.button--default[disabled].focus,
fieldset[disabled] .button--default:hover,
fieldset[disabled] .button--default:focus,
fieldset[disabled] .button--default.focus {
	background-color: #fff;
	border-color: #ccc;
}

.button--default .badge {
	color: #fff;
	background-color: #333;
}

.button--primary {
	color: #fff;
	background-color: #337ab7;
	border-color: #2d6da3;
}

.button--primary:focus,
.button--primary.focus {
	color: #fff;
	background-color: #285f8f;
	border-color: #122a3f;
}

.button--primary:hover {
	color: #fff;
	background-color: #285f8f;
	border-color: #204d73;
}

.open>.dropdown-toggle.button--primary,
.button--primary:active,
.button--primary.active {
	color: #fff;
	background-color: #285f8f;
	border-color: #204d73;
}

.open>.dropdown-toggle.button--primary:hover,
.open>.dropdown-toggle.button--primary:focus,
.open>.dropdown-toggle.button--primary.focus,
.button--primary:active:hover,
.button--primary:active:focus,
.button--primary:active.focus,
.button--primary.active:hover,
.button--primary.active:focus,
.button--primary.active.focus {
	color: #fff;
	background-color: #204d73;
	border-color: #122a3f;
}

.open>.dropdown-toggle.button--primary,
.button--primary:active,
.button--primary.active {
	background-image: none;
}

.button--primary.disabled:hover,
.button--primary.disabled:focus,
.button--primary.disabled.focus,
.button--primary[disabled]:hover,
.button--primary[disabled]:focus,
.button--primary[disabled].focus,
fieldset[disabled] .button--primary:hover,
fieldset[disabled] .button--primary:focus,
fieldset[disabled] .button--primary.focus {
	background-color: #337ab7;
	border-color: #2d6da3;
}

.button--primary .badge {
	color: #337ab7;
	background-color: #fff;
}

.button--success {
	color: #fff;
	background-color: #5cb85c;
	border-color: #4cae4c;
}

.button--success:focus,
.button--success.focus {
	color: #fff;
	background-color: #449d44;
	border-color: #255625;
}

.button--success:hover {
	color: #fff;
	background-color: #449d44;
	border-color: #398439;
}

.open>.dropdown-toggle.button--success,
.button--success:active,
.button--success.active {
	color: #fff;
	background-color: #449d44;
	border-color: #398439;
}

.open>.dropdown-toggle.button--success:hover,
.open>.dropdown-toggle.button--success:focus,
.open>.dropdown-toggle.button--success.focus,
.button--success:active:hover,
.button--success:active:focus,
.button--success:active.focus,
.button--success.active:hover,
.button--success.active:focus,
.button--success.active.focus {
	color: #fff;
	background-color: #398439;
	border-color: #255625;
}

.open>.dropdown-toggle.button--success,
.button--success:active,
.button--success.active {
	background-image: none;
}

.button--success.disabled:hover,
.button--success.disabled:focus,
.button--success.disabled.focus,
.button--success[disabled]:hover,
.button--success[disabled]:focus,
.button--success[disabled].focus,
fieldset[disabled] .button--success:hover,
fieldset[disabled] .button--success:focus,
fieldset[disabled] .button--success.focus {
	background-color: #5cb85c;
	border-color: #4cae4c;
}

.button--success .badge {
	color: #5cb85c;
	background-color: #fff;
}

.button--info {
	color: #fff;
	background-color: #5bc0de;
	border-color: #46b8da;
}

.button--info:focus,
.button--info.focus {
	color: #fff;
	background-color: #31b0d5;
	border-color: #1b6d85;
}

.button--info:hover {
	color: #fff;
	background-color: #31b0d5;
	border-color: #269abc;
}

.open>.dropdown-toggle.button--info,
.button--info:active,
.button--info.active {
	color: #fff;
	background-color: #31b0d5;
	border-color: #269abc;
}

.open>.dropdown-toggle.button--info:hover,
.open>.dropdown-toggle.button--info:focus,
.open>.dropdown-toggle.button--info.focus,
.button--info:active:hover,
.button--info:active:focus,
.button--info:active.focus,
.button--info.active:hover,
.button--info.active:focus,
.button--info.active.focus {
	color: #fff;
	background-color: #269abc;
	border-color: #1b6d85;
}

.open>.dropdown-toggle.button--info,
.button--info:active,
.button--info.active {
	background-image: none;
}

.button--info.disabled:hover,
.button--info.disabled:focus,
.button--info.disabled.focus,
.button--info[disabled]:hover,
.button--info[disabled]:focus,
.button--info[disabled].focus,
fieldset[disabled] .button--info:hover,
fieldset[disabled] .button--info:focus,
fieldset[disabled] .button--info.focus {
	background-color: #5bc0de;
	border-color: #46b8da;
}

.button--info .badge {
	color: #5bc0de;
	background-color: #fff;
}

.button--warning {
	color: #fff;
	background-color: #f0ad4e;
	border-color: #eea236;
}

.button--warning:focus,
.button--warning.focus {
	color: #fff;
	background-color: #ec971f;
	border-color: #985f0d;
}

.button--warning:hover {
	color: #fff;
	background-color: #ec971f;
	border-color: #d58512;
}

.open>.dropdown-toggle.button--warning,
.button--warning:active,
.button--warning.active {
	color: #fff;
	background-color: #ec971f;
	border-color: #d58512;
}

.open>.dropdown-toggle.button--warning:hover,
.open>.dropdown-toggle.button--warning:focus,
.open>.dropdown-toggle.button--warning.focus,
.button--warning:active:hover,
.button--warning:active:focus,
.button--warning:active.focus,
.button--warning.active:hover,
.button--warning.active:focus,
.button--warning.active.focus {
	color: #fff;
	background-color: #d58512;
	border-color: #985f0d;
}

.open>.dropdown-toggle.button--warning,
.button--warning:active,
.button--warning.active {
	background-image: none;
}

.button--warning.disabled:hover,
.button--warning.disabled:focus,
.button--warning.disabled.focus,
.button--warning[disabled]:hover,
.button--warning[disabled]:focus,
.button--warning[disabled].focus,
fieldset[disabled] .button--warning:hover,
fieldset[disabled] .button--warning:focus,
fieldset[disabled] .button--warning.focus {
	background-color: #f0ad4e;
	border-color: #eea236;
}

.button--warning .badge {
	color: #f0ad4e;
	background-color: #fff;
}

.button--danger {
	color: #fff;
	background-color: #d9534f;
	border-color: #d43f3a;
}

.button--danger:focus,
.button--danger.focus {
	color: #fff;
	background-color: #c9302c;
	border-color: #761c19;
}

.button--danger:hover {
	color: #fff;
	background-color: #c9302c;
	border-color: #ac2925;
}

.open>.dropdown-toggle.button--danger,
.button--danger:active,
.button--danger.active {
	color: #fff;
	background-color: #c9302c;
	border-color: #ac2925;
}

.open>.dropdown-toggle.button--danger:hover,
.open>.dropdown-toggle.button--danger:focus,
.open>.dropdown-toggle.button--danger.focus,
.button--danger:active:hover,
.button--danger:active:focus,
.button--danger:active.focus,
.button--danger.active:hover,
.button--danger.active:focus,
.button--danger.active.focus {
	color: #fff;
	background-color: #ac2925;
	border-color: #761c19;
}

.open>.dropdown-toggle.button--danger,
.button--danger:active,
.button--danger.active {
	background-image: none;
}

.button--danger.disabled:hover,
.button--danger.disabled:focus,
.button--danger.disabled.focus,
.button--danger[disabled]:hover,
.button--danger[disabled]:focus,
.button--danger[disabled].focus,
fieldset[disabled] .button--danger:hover,
fieldset[disabled] .button--danger:focus,
fieldset[disabled] .button--danger.focus {
	background-color: #d9534f;
	border-color: #d43f3a;
}

.button--danger .badge {
	color: #d9534f;
	background-color: #fff;
}

.button--lg {
	padding: 10px 16px;
	font-size: 17px;
	line-height: 1.33333;
	border-radius: 6px;
}

.button--sm {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}

.button--xs {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}

.button--block {
	display: block;
	width: 100%;
}

.button--block+.button--block {
	margin-top: 5px;
}

input[type="submit"].button--block,
input[type="reset"].button--block,
input[type="button"].button--block {
	width: 100%;
}

.modal-open {
	overflow: hidden;
}

.modal {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	-webkit-overflow-scrolling: touch;
	outline: 0;
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal__dialog {
	position: relative;
	width: auto;
	margin: 10px;
}

.modal__content {
	position: relative;
	background-color: #fff;
	border: 1px solid #999;
	/*border: 1px solid $modal-content-border-color;*/
	border-radius: 0;
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	background-clip: padding-box;
	outline: 0;
}

.modal__header {
	padding: 15px;
	border-bottom: 1px solid #e5e5e5;
}

.modal__header .modal__close {
	margin-top: -2px;
}

.modal__title {
	margin: 0;
	line-height: 1.42857;
}

.modal__body {
	position: relative;
	padding: 15px;
}

.modal__footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5;
}

.modal__footer .button+.button {
	margin-left: 5px;
	margin-bottom: 0;
}

.modal__footer .button-group .button+.button {
	margin-left: -1px;
}

.modal__footer .button-block+.button-block {
	margin-left: 0;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000;
}

.modal-backdrop.fade {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=${msalpha})";
	filter: alpha(opacity=0);
	opacity: 0;
}

.modal-backdrop.in {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=${msalpha})";
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

@media (min-width: 768px) {
	.modal__dialog {
		width: 600px;
		margin: 100px auto;
	}
	.modal__content {
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}
	.modal--sm {
		width: 300px;
	}
}

@media (min-width: 992px) {
	.modal--lg {
		width: 900px;
	}
}

fieldset {
	padding: 0;
	margin: 0;
	border: 0;
	min-width: 0;
}

legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 18px;
	font-size: 19.5px;
	line-height: inherit;
	color: #333333;
	border: 0;
	border-bottom: 1px solid #e5e5e5;
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: bold;
}

input[type="search"] {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
	margin: 4px 0 0;
	margin-top: 1px \9;
	line-height: normal;
}

input[type="file"] {
	display: block;
}

input[type="range"] {
	display: block;
	width: 100%;
}

select[multiple],
select[size] {
	height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.form-control {
	display: block;
	width: 100%;
	height: 40px;
	padding: 6px 20px;
	font-size: 13px;
	line-height: 1.42857;
	color: #252525;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ededed;
	border-radius: 0;
	/*box-shadow: inset 0 1px 1px rgba(0,0,0,.075);*/
	-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	-moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
	border-color: lightgray;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(211, 211, 211, 0.6);
}

.form-control::-moz-placeholder {
	color: #777777;
}

.form-control:-ms-input-placeholder {
	color: #777777;
}

.form-control::-webkit-input-placeholder {
	color: #777777;
}

.form-control::-ms-expand {
	border: 0;
	background-color: transparent;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	background-color: #eeeeee;
	opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
	cursor: not-allowed;
}

textarea.form-control {
	height: auto;
}

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

@media screen and (-webkit-min-device-pixel-ratio: 0) {
	input[type="date"].form-control,
	input[type="time"].form-control,
	input[type="datetime-local"].form-control,
	input[type="month"].form-control {
		line-height: 40px;
	}
	input[type="date"].input--sm,
	.input-group--sm input[type="date"],
	input[type="time"].input--sm,
	.input-group--sm input[type="time"],
	input[type="datetime-local"].input--sm,
	.input-group--sm input[type="datetime-local"],
	input[type="month"].input--sm,
	.input-group--sm input[type="month"] {
		line-height: 30px;
	}
	input[type="date"].input--lg,
	.input-group--lg input[type="date"],
	input[type="time"].input--lg,
	.input-group--lg input[type="time"],
	input[type="datetime-local"].input--lg,
	.input-group--lg input[type="datetime-local"],
	input[type="month"].input--lg,
	.input-group--lg input[type="month"] {
		line-height: 45px;
	}
}

.form-group {
	margin-bottom: 15px;
}

.radio,
.checkbox {
	position: relative;
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
}

.radio label,
.checkbox label {
	min-height: 18px;
	padding-left: 20px;
	margin-bottom: 0;
	font-weight: normal;
	cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
	position: absolute;
	margin-left: -20px;
	margin-top: 4px \9;
}

.radio+.radio,
.checkbox+.checkbox {
	margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	margin-bottom: 0;
	vertical-align: middle;
	font-weight: normal;
	cursor: pointer;
}

.radio-inline+.radio-inline,
.checkbox-inline+.checkbox-inline {
	margin-top: 0;
	margin-left: 10px;
}

input[type="radio"][disabled],
input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled] input[type="checkbox"] {
	cursor: not-allowed;
}

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
	cursor: not-allowed;
}

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
	cursor: not-allowed;
}

.form-control-static {
	padding-top: 7px;
	padding-bottom: 7px;
	margin-bottom: 0;
	min-height: 31px;
}

.form-control-static.input--lg,
.form-control-static.input--sm {
	padding-left: 0;
	padding-right: 0;
}

.input--sm {
	height: 30px;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 0;
}

select.input--sm {
	height: 30px;
	line-height: 30px;
}

textarea.input--sm,
select[multiple].input--sm {
	height: auto;
}

.form-group--sm .form-control {
	height: 30px;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 0;
}

.form-group--sm select.form-control {
	height: 30px;
	line-height: 30px;
}

.form-group--sm textarea.form-control,
.form-group--sm select[multiple].form-control {
	height: auto;
}

.form-group--sm .form-control--static {
	height: 30px;
	min-height: 30px;
	padding: 6px 10px;
	font-size: 12px;
	line-height: 1.5;
}

.input--lg {
	height: 45px;
	padding: 10px 16px;
	font-size: 17px;
	line-height: 1.33333;
	border-radius: 0;
}

select.input--lg {
	height: 45px;
	line-height: 45px;
}

textarea.input--lg,
select[multiple].input--lg {
	height: auto;
}

.form-group--lg .form-control {
	height: 45px;
	padding: 10px 16px;
	font-size: 17px;
	line-height: 1.33333;
	border-radius: 0;
}

.form-group--lg select.form-control {
	height: 45px;
	line-height: 45px;
}

.form-group--lg textarea.form-control,
.form-group--lg select[multiple].form-control {
	height: auto;
}

.form-group--lg .form-control--static {
	height: 45px;
	min-height: 35px;
	padding: 11px 16px;
	font-size: 17px;
	line-height: 1.33333;
}

.has-feedback {
	position: relative;
}

.has-feedback .form-control {
	padding-right: 50px;
}

.form-control-feedback {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	pointer-events: none;
}

.input--lg+.form-control-feedback,
.input-group--lg+.form-control-feedback,
.form-group--lg .form-control+.form-control-feedback {
	width: 45px;
	height: 45px;
	line-height: 45px;
}

.input--sm+.form-control-feedback,
.input-group--sm+.form-control-feedback,
.form-group--sm .form-control+.form-control-feedback {
	width: 30px;
	height: 30px;
	line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
	color: #3c763d;
}

.has-success .form-control {
	border-color: #3c763d;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
	border-color: #2b542c;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group__addon {
	color: #3c763d;
	border-color: #3c763d;
	background-color: #dff0d8;
}

.has-success .form-control-feedback {
	color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
	color: #8a6d3b;
}

.has-warning .form-control {
	border-color: #8a6d3b;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
	border-color: #66512c;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group__addon {
	color: #8a6d3b;
	border-color: #8a6d3b;
	background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
	color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
	color: #a94442;
}

.has-error .form-control {
	border-color: #a94442;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
	border-color: #843534;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group__addon {
	color: #a94442;
	border-color: #a94442;
	background-color: #f2dede;
}

.has-error .form-control-feedback {
	color: #a94442;
}

.form-group__error {
	display: none;
	color: #a94442;
	margin-top: 10px;
}

.has-error .form-group__error {
	display: block;
}

.has-feedback label~.form-control-feedback {
	top: 23px;
}

.help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #656565;
}

@media (min-width: 768px) {
	.form-inline .form-group {
		display: inline-block;
		margin-bottom: 0;
		vertical-align: middle;
	}
	.form-inline .form-control {
		display: inline-block;
		width: auto;
		vertical-align: middle;
	}
	.form-inline .form-control-static {
		display: inline-block;
	}
	.form-inline .input-group {
		display: inline-table;
		vertical-align: middle;
	}
	.form-inline .input-group .input-group-addon,
	.form-inline .input-group .input-group-btn,
	.form-inline .input-group .form-control {
		width: auto;
	}
	.form-inline .input-group>.form-control {
		width: 100%;
	}
	.form-inline .control-label {
		margin-bottom: 0;
		vertical-align: middle;
	}
	.form-inline .radio,
	.form-inline .checkbox {
		display: inline-block;
		margin-top: 0;
		margin-bottom: 0;
		vertical-align: middle;
	}
	.form-inline .radio label,
	.form-inline .checkbox label {
		padding-left: 0;
	}
	.form-inline .radio input[type="radio"],
	.form-inline .checkbox input[type="checkbox"] {
		position: relative;
		margin-left: 0;
	}
	.form-inline .has-feedback .form-control-feedback {
		top: 0;
	}
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 7px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
	min-height: 25px;
}

.form-horizontal .form-group {
	margin-left: -15px;
	margin-right: -15px;
}

@media (min-width: 768px) {
	.form-horizontal .control-label {
		text-align: right;
		margin-bottom: 0;
		padding-top: 7px;
	}
}

.form-horizontal .has-feedback .form-control-feedback {
	right: 15px;
}

@media (min-width: 768px) {
	.form-horizontal .form-group--lg .control-label {
		padding-top: 11px;
		font-size: 17px;
	}
}

@media (min-width: 768px) {
	.form-horizontal .form-group--sm .control-label {
		padding-top: 6px;
		font-size: 12px;
	}
}

@font-face {
	font-family: 'Pe-icon-social';
	src: url("../fonts/Pe-icon-social.eot?-96eskg");
	src: url("../fonts/Pe-icon-social.eot?#iefix-96eskg") format("embedded-opentype"), url("../fonts/Pe-icon-social.woff?-96eskg") format("woff"), url("../fonts/Pe-icon-social.ttf?-96eskg") format("truetype"), url("../fonts/Pe-icon-social.svg?-96eskg#Pe-icon-social") format("svg");
	font-weight: normal;
	font-style: normal;
}

[class^="pe-so-"],
[class*=" pe-so-"] {
	display: inline-block;
	font-family: 'Pe-icon-social';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pe-so-500px:before {
	content: "\e600";
}

.pe-so-aim:before {
	content: "\e601";
}

.pe-so-amazon:before {
	content: "\e602";
}

.pe-so-android:before {
	content: "\e603";
}

.pe-so-app-store:before {
	content: "\e604";
}

.pe-so-apple:before {
	content: "\e605";
}

.pe-so-behance:before {
	content: "\e606";
}

.pe-so-bitbucket:before {
	content: "\e607";
}

.pe-so-blogger:before {
	content: "\e608";
}

.pe-so-bootstrap:before {
	content: "\e609";
}

.pe-so-chrome:before {
	content: "\e60a";
}

.pe-so-codepen:before {
	content: "\e60b";
}

.pe-so-css3:before {
	content: "\e60c";
}

.pe-so-delicious:before {
	content: "\e60d";
}

.pe-so-deviantart-1:before {
	content: "\e60e";
}

.pe-so-deviantart-2:before {
	content: "\e60f";
}

.pe-so-digg:before {
	content: "\e610";
}

.pe-so-dribbble:before {
	content: "\e611";
}

.pe-so-dropbox:before {
	content: "\e612";
}

.pe-so-drupal:before {
	content: "\e613";
}

.pe-so-ebay:before {
	content: "\e614";
}

.pe-so-etsy:before {
	content: "\e615";
}

.pe-so-evernote:before {
	content: "\e616";
}

.pe-so-facebook:before {
	content: "\e617";
}

.pe-so-firefox:before {
	content: "\e618";
}

.pe-so-flattr:before {
	content: "\e619";
}

.pe-so-flickr:before {
	content: "\e61a";
}

.pe-so-forrst:before {
	content: "\e61b";
}

.pe-so-foursquare:before {
	content: "\e61c";
}

.pe-so-git:before {
	content: "\e61d";
}

.pe-so-github:before {
	content: "\e61e";
}

.pe-so-google-drive:before {
	content: "\e61f";
}

.pe-so-google-plus:before {
	content: "\e620";
}

.pe-so-grooveshark:before {
	content: "\e621";
}

.pe-so-habbo:before {
	content: "\e622";
}

.pe-so-hacker-news:before {
	content: "\e623";
}

.pe-so-html5:before {
	content: "\e624";
}

.pe-so-ie:before {
	content: "\e625";
}

.pe-so-instagram:before {
	content: "\e626";
}

.pe-so-joomla:before {
	content: "\e627";
}

.pe-so-jsfiddle:before {
	content: "\e628";
}

.pe-so-lanyrd:before {
	content: "\e629";
}

.pe-so-lastfm:before {
	content: "\e62a";
}

.pe-so-like:before {
	content: "\e62b";
}

.pe-so-linkedin:before {
	content: "\e62c";
}

.pe-so-linux:before {
	content: "\e62d";
}

.pe-so-love:before {
	content: "\e62e";
}

.pe-so-magento:before {
	content: "\e62f";
}

.pe-so-myspace:before {
	content: "\e630";
}

.pe-so-odnolassniki:before {
	content: "\e631";
}

.pe-so-openid:before {
	content: "\e632";
}

.pe-so-opera:before {
	content: "\e633";
}

.pe-so-paypal-1:before {
	content: "\e634";
}

.pe-so-paypal-2:before {
	content: "\e635";
}

.pe-so-picasa:before {
	content: "\e636";
}

.pe-so-pied-piper:before {
	content: "\e637";
}

.pe-so-pinterest:before {
	content: "\e638";
}

.pe-so-pixeden:before {
	content: "\e639";
}

.pe-so-qq:before {
	content: "\e63a";
}

.pe-so-qzone:before {
	content: "\e63b";
}

.pe-so-rdio:before {
	content: "\e63c";
}

.pe-so-reddit:before {
	content: "\e63d";
}

.pe-so-renren:before {
	content: "\e63e";
}

.pe-so-rss:before {
	content: "\e63f";
}

.pe-so-safari-1:before {
	content: "\e640";
}

.pe-so-safari-2:before {
	content: "\e641";
}

.pe-so-sass:before {
	content: "\e642";
}

.pe-so-share:before {
	content: "\e643";
}

.pe-so-skype:before {
	content: "\e644";
}

.pe-so-slideshare:before {
	content: "\e645";
}

.pe-so-soundcloud:before {
	content: "\e646";
}

.pe-so-spotify:before {
	content: "\e647";
}

.pe-so-stack-exchange:before {
	content: "\e648";
}

.pe-so-stack-overflow:before {
	content: "\e649";
}

.pe-so-steam:before {
	content: "\e64a";
}

.pe-so-stumbleupon:before {
	content: "\e64b";
}

.pe-so-tencent-weibo:before {
	content: "\e64c";
}

.pe-so-trello:before {
	content: "\e64d";
}

.pe-so-tripadvisor:before {
	content: "\e64e";
}

.pe-so-tumblr:before {
	content: "\e64f";
}

.pe-so-twitch:before {
	content: "\e650";
}

.pe-so-twitter:before {
	content: "\e651";
}

.pe-so-ubuntu:before {
	content: "\e652";
}

.pe-so-viadeo:before {
	content: "\e653";
}

.pe-so-vimeo:before {
	content: "\e654";
}

.pe-so-vine:before {
	content: "\e655";
}

.pe-so-vk:before {
	content: "\e656";
}

.pe-so-wechat:before {
	content: "\e657";
}

.pe-so-weibo:before {
	content: "\e658";
}

.pe-so-wikipedia:before {
	content: "\e659";
}

.pe-so-windows:before {
	content: "\e65a";
}

.pe-so-wordpress-1:before {
	content: "\e65b";
}

.pe-so-wordpress-2:before {
	content: "\e65c";
}

.pe-so-xing:before {
	content: "\e65d";
}

.pe-so-yahoo-1:before {
	content: "\e65e";
}

.pe-so-yahoo-2:before {
	content: "\e65f";
}

.pe-so-yelp:before {
	content: "\e660";
}

.pe-so-youtube-1:before {
	content: "\e661";
}

.pe-so-youtube-2:before {
	content: "\e662";
}

.pe-so-zerply:before {
	content: "\e663";
}

.input-group {
	position: relative;
}

.input-group__overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	white-space: nowrap;
	z-index: 1;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

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

.input-group__overlay.input-group__overlay--required {
	left: 10px;
	color: #de0303;
	font-size: 15px;
}

.input-group__overlay.input-group__overlay--required:before {
	height: 125%;
}

.form-error {
	color: #a94442;
	background: #f2dede;
	margin-bottom: 15px;
	padding: 10px 15px;
}

.form-control:focus,
.has-success .form-control:focus .has-error .form-control:focus .has-warning .form-control:focus {
	box-shadow: none;
}

.modal__header {
	padding: 20px 0 15px;
	border-top: 5px solid #F0E6D3;
	border-bottom: 1px solid #f0f0f0;
}

.modal__header .modal__close {
	margin: 0;
	display: block;
	position: absolute;
	width: 16px;
	height: 16px;
	top: -8px;
	right: -8px;
	background-color: #6f6f6f;
	-moz-border-radius: 8px;
	-khtml-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	color: white;
	text-align: center;
	font-weight: bold;
	font-size: 17px;
	line-height: 16px;
	cursor: pointer;
	padding: 0px 0px 0px 1px;
}

.modal__body {
	border-top: 1px solid white;
}

.modal__title {
	text-align: center;
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #555;
}

.modal__footer {
	border-top: 1px solid #f0f0f0;
	padding: 15px;
}

.modal__content {
	box-shadow: 0 0 20px rgba(232, 232, 232, 0.5);
	background-color: #fafafa;
	width: 320px;
}

.modal__dialog {
	width: 320px;
}

@media (min-width: 560px) {
	.modal__content {
	width: 480px;
	}
}

@media (min-width: 560px) {
	.modal--callback .modal__dialog {
		width: 480px;
	}
}

.modal--callback .modal__footer {
	border-top: 0;
	text-align: center;
	padding: 0 15px 15px;
}

.modal--callback .form-control {
	text-align: center;
}

.modal--callback .form-control::-moz-placeholder {
	color: #555555;
	font-size: 12px;
	text-align: center;
}

.modal--callback .form-control:-ms-input-placeholder {
	color: #555555;
	font-size: 12px;
	text-align: center;
}

.modal--callback .form-control::-webkit-input-placeholder {
	color: #555555;
	font-size: 12px;
	text-align: center;
}

.modal--callback .form-group:last-child {
	margin-bottom: 0;
}

.modal--callback .form-group__error,
.modal--callback .form-error {
	text-align: center;
}

.header {
	position: relative;
	border-bottom: 1px solid #626262;

	background: #373c3f;
	/*background: -moz-linear-gradient(90deg, transparent, #85bcd9, rgba(65,131,165,0.95), rgba(65,131,165,0.95), rgba(65,131,165,0.95), transparent);
	background: -webkit-linear-gradient(90deg, transparent, #3a5b87, rgba(75,110,155,0.98), rgba(75,110,155,0.98), rgba(75,110,155,0.98), rgba(75,110,155,0.98), transparent);
	background: -o-linear-gradient(90deg, transparent, #3a5b87, rgba(75,110,155,0.98), rgba(75,110,155,0.98), rgba(75,110,155,0.98), rgba(75,110,155,0.98), transparent);
	background: -ms-linear-gradient(90deg, transparent, #3a5b87, rgba(75,110,155,0.98), rgba(75,110,155,0.98), rgba(75,110,155,0.98), rgba(75,110,155,0.98), transparent);*/
	background: linear-gradient(90deg, transparent, #373c3f, transparent);


	/* Правки "НОВОЕ" */
		display: flex;
		align-items: center;
		justify-content: flex-start;
	/*  */

}
@media (min-width: 1210px) {
	.header > * {
		position: relative !important;
	}
	.header .header__logo {
		left: 0px !important;
	}
	.header .header__slogan {
		left: 0px !important;
	}
	.header .header__nav {
		right: -0px !important;
	}
}/* @media (min-width: 1210px) {
	.header > * {
		position: relative !important;
	}
	.header .header__logo {
		left: 50px !important;
	}
	.header .header__slogan {
		left: 50px !important;
	}
	.header .header__nav {
		right: -50px !important;
	}
} */
@media (max-width: 600px) {
	.header {
		flex-direction: column;
		align-items: flex-start;
	}
}

.header__logo {
	display: block;
	position: static; /* Правки - было absolute */
	top: 0px;
	left: 10px;
	width: 270px; /* Правки - было 307px */
	height: 95px; /* Правки - было 95px */
	text-indent: -9999px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

@media (min-width: 768px) {
	.header__logo {
		left: 0px;
	}
}

/* Правки "БЫЛО" */
	/* @media (min-width: 1024px) {
		.header__logo {
			left: 90px;
		}
	} */
/* */

/* Правки "СТАЛО" */
	.header__logo {
		left: 20px;
	}
/* */

@media (max-width: 350px) {
	.header__logo {
		left: 0;
		width: 190px;
		height: 60px;
	}
}

.header__logo>img {
	display: block;
	max-width: 100%;
	border: 0;
}

.header__nav {
	height: 95px;
	margin-left: 0 !important; /* Правки - было 265px */
	position: absolute;
	right: 0;
}

@media (min-width: 1024px) {
	.header__nav {
		margin-left: 0; /* Правки - было 435px */
	}
}
/* Правки "БЫЛО" */
	/* @media (min-width: 768px) {
		.header__nav {
			margin-left: 290px;
		}
	} */
/* */


/* Правки "НОВОЕ" */
	@media (min-width: 992px) {
		.header__nav {
			margin-left: 500px;
			/* width: 520px; */
			width: 650px;
			position: relative;
			right: 0;
			top: 0;
		}
	}
	@media (max-width: 1100px) and (min-width: 992px) {
		.header__nav {
			width: 510px;
		}
	}

/*  */

/* Правки "БЫЛО" */
	/* @media (min-width: 1024px) {
		.header__nav {
			margin-left: 320px;
		}
	} */
/*  */

.header__toggler {
	position: absolute;
	right: 10px;
	top: 40%;
	height: 26px;
}

@media (max-width: 767px) {
	.header__toggler {
		right:0;
	}
}

@media (max-width: 350px){
.header__toggler {
   top:26px
}
}


@media (min-width: 768px) {
	.header__toggler {
		right: 50px;
	}
}

/* Правки "НОВОЕ" 
	@media (min-width: 870px) {
		.header__toggler {
			top: 20px;
		}
	}
/*  */


.primary-nav {
	display: block;
	position: relative;
	height: 97px;
	margin-right: 34px;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.primary-nav.primary-nav--full {
	margin-right: 0;
	margin-left: 20px;
}

.primary-nav__menu {
	padding: 0;
	margin: -10px 0 0;
	position: absolute;
	top: 100%;
	right: 0;
	left: auto;
	border-top: 4px solid #F0E6D3;
	border-bottom: 4px solid #F0E6D3;
	z-index: 99;
	background: #f6f6f6;
	display: none;
	list-style: none;
	right: -24px;
}

@media (min-width: 768px) {
	.primary-nav__menu {
		min-width: 325px;
		right: -4px;
	}
}

@media (min-width: 1024px) {
	.primary-nav__menu {
		right: 16px;
	}
}

.primary-nav__menu--open {
	display: block;
}

.primary-nav--full .primary-nav__menu {
	width: 100%;
	margin: 0;
	position: static;
	top: auto;
	border-top: 0;
	border-bottom: 0;
	min-width: 0;
	z-index: 1;
	background: transparent;
	display: flex !important; /* Правки - "НОВОЕ" */
	justify-content: flex-start; /* Правки - "НОВОЕ" */
}

/* Правки "НОВОЕ" */
	.primary-nav--full .primary-nav__menu .menu-item-service-title span {
		width: 100px;
	}
/*  */

.primary-nav--full .primary-nav__menu,
.primary-nav--full .primary-nav__menu--open {
	display: table;
}

.primary-nav__size-helper {
	display: none;
}

.primary-nav--full .primary-nav__size-helper {
	display: inline;
	visibility: hidden;
	font-size: 15px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

.primary-nav__icon {
	display: inline-block;
	margin: 0 7px 0 0;
	vertical-align: middle;
}

.primary-nav--full .primary-nav__menu>.primary-nav__item>.primary-nav__link .primary-nav__icon {
	display: none;
}

.primary-nav__underline {
	display: block;
	width: 100px;
	height: 4px;
	position: absolute;
	left: 200px;
	top: 100%;
	margin-top: -6px;
	z-index: 2;
	background-color: #F0E6D3;
}

.primary-nav__item {
	display: block;
	padding: 0;
	margin: 0;
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #fff;
	white-space: nowrap;
	text-align: left;
}
.primary-nav__menu--open {
	min-width: 200px;
}

.primary-nav__item:first-child {
	border-top: 0;
}

.primary-nav__item:last-child {
	border-bottom: 0;
}

.primary-nav--full .primary-nav__menu:after {
	content: '';
	display: block;
	clear: both;
}

.primary-nav--full .primary-nav__menu>.primary-nav__item {
	float: left;
	margin: 0;
	padding: 0;
	height: 96px;
	position: relative;
	vertical-align: top;
	text-align: center;
	border-bottom: 0;
	border-top: 0;
	/* padding-right: 44px; */
	padding-right: 34px;
}

.primary-nav__subitems {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav--full .primary-nav__subitems {
	padding: 0;
	margin: -10px 0 0;
	position: absolute;
	top: 100%;
	right: 0;
	left: auto;
	border-top: 4px solid #F0E6D3;
	border-bottom: 4px solid #F0E6D3;
	z-index: 99;
	background: #f6f6f6;
}

.primary-nav--full .primary-nav__submenu--hang-left .primary-nav__subitems {
	left: 0;
	right: auto;
	min-width: 280px;
}

.primary-nav--full .primary-nav__submenu .primary-nav__submenu .primary-nav__subitems {
	position: static;
	border-top: 0;
	border-bottom: 0;
	margin-top: 0;
}

.primary-nav__submenu {
	display: none;
	visibility: hidden;
}

.primary-nav__item--open>.primary-nav__submenu,
.primary-nav--full .primary-nav__menu>.primary-nav__item:hover>.primary-nav__submenu {
	border-top: 1px solid #fff;
	display: block !important;
	visibility: visible;
	height: auto;
	overflow: visible;
	opacity: 1;
	-webkit-transition: opacity 0.2s ease, visibility 0s linear 0s, height 0s linear 0s;
	-moz-transition: opacity 0.2s ease, visibility 0s linear 0s, height 0s linear 0s;
	transition: opacity 0.2s ease, visibility 0s linear 0s, height 0s linear 0s;
}

.primary-nav--full .primary-nav__submenu {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1000;
	border-top-style: none !important;
	opacity: 0;
	height: 0;
	overflow: hidden;
	-webkit-transition: opacity 0.2s ease, visibility 0s linear 0.2s, height 0s linear 0.2s;
	-moz-transition: opacity 0.2s ease, visibility 0s linear 0.2s, height 0s linear 0.2s;
	transition: opacity 0.2s ease, visibility 0s linear 0.2s, height 0s linear 0.2s;
}

.primary-nav--full .primary-nav__submenu .primary-nav__submenu {
	position: static;
	border-top-style: solid !important;
	display: none;
	height: auto;
	overflow: visible;
	opacity: 1;
	-webkit-transition: opacity 0s ease, visibility 0s linear 0s, height 0s linear 0s;
	-moz-transition: opacity 0s ease, visibility 0s linear 0s, height 0s linear 0s;
	transition: opacity 0s ease, visibility 0s linear 0s, height 0s linear 0s;
}

.primary-nav__submenu-inner {
	border-top: 1px solid #eaeaea;
}

.primary-nav--full .primary-nav__submenu-inner {
	display: table;
	height: 100%;
	margin: 0 auto;
	white-space: nowrap;
	position: relative;
	border-top-style: none;
}

.primary-nav--full .primary-nav__submenu .primary-nav__submenu .primary-nav__submenu-inner {
	display: block;
	border-top-style: solid;
}

.primary-nav__link {
	position: relative;
	display: block;
	padding: 13px 20px;
	font-size: 14px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	white-space: nowrap;
	line-height: 1;
	cursor: pointer;
}

.primary-nav__link,
.primary-nav__link:link,
.primary-nav__link:visited {
	text-decoration: none;
	color: #383838;
}

.primary-nav__link:hover {
	text-decoration: none;
	color: #fff;
	background-color: #797979;
}

.primary-nav__item--current>.primary-nav__link,
.primary-nav__item--current>.primary-nav__link:link,
.primary-nav__item--current>.primary-nav__link:visited,
.primary-nav__item--current>.primary-nav__link:hover,
.primary-nav--full .primary-nav__submenu .primary-nav__item--current>.primary-nav__link,
.primary-nav--full .primary-nav__submenu .primary-nav__item--current>.primary-nav__link:link,
.primary-nav--full .primary-nav__submenu .primary-nav__item--current>.primary-nav__link:visited,
.primary-nav--full .primary-nav__submenu .primary-nav__item--current>.primary-nav__link:hover {
	color: #fff;
	background-color: #797979;
}

.primary-nav--full .primary-nav__item--current>.primary-nav__link {
	background-color: transparent;
}

.primary-nav__submenu .primary-nav__link,
.primary-nav--full .primary-nav__submenu .primary-nav__submenu .primary-nav__link {
	font-size: 11px;
}

.primary-nav__submenu .primary-nav__link {
	padding-left: 35px;
}

.primary-nav--full .primary-nav__submenu .primary-nav__link {
	padding-left: 18px /*0518*/
}

.primary-nav__submenu .primary-nav__submenu .primary-nav__link {
	padding-left: 50px;
}

.primary-nav--full .primary-nav__submenu .primary-nav__submenu .primary-nav__link {
	padding-left: 30px;
}

.primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__link {
	padding-left: 65px;
}

.primary-nav--full .primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__link {
	padding-left: 50px;
}

.primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__link {
	padding-left: 80px;
}

.primary-nav--full .primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__link {
	padding-left: 70px;
}

.primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__link {
	padding-left: 95px;
}

.primary-nav--full .primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__submenu .primary-nav__link {
	padding-left: 90px;
}

.primary-nav__item--has-children>.primary-nav__link {
	padding-right: 25px;
}

.primary-nav__item--has-children>.primary-nav__link:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-right: 0;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #383838;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -3px;
}

.primary-nav__item--has-children.primary-nav__item--open>.primary-nav__link:after {
	border-top: 5px solid #383838;
	border-right: 5px solid transparent;
	border-bottom: 0;
	border-left: 5px solid transparent;
}

.primary-nav__item--has-children>.primary-nav__link:hover:after {
	border-left-color: #fff;
}

.primary-nav__item--has-children.primary-nav__item--open>.primary-nav__link:hover:after {
	border-left-color: transparent !important;
	border-top-color: #fff;
}

.primary-nav--full .primary-nav__link {
	position: relative;
	display: block;
	padding: 11px 20px;
	font-size: 14px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	white-space: nowrap;
	line-height: 1;
	cursor: pointer;
}

.primary-nav--full .primary-nav__link,
.primary-nav--full .primary-nav__link:link,
.primary-nav--full .primary-nav__link:visited {
	text-decoration: none;
	color: #383838;
}

.primary-nav--full .primary-nav__link:hover {
	text-decoration: none;
	color: #fff;
	background-color: #797979;
}

.primary-nav--full .primary-nav__submenu .primary-nav__item--has-children>.primary-nav__link {
	padding-right: 35px;
}

.primary-nav--full .primary-nav__submenu .primary-nav__item--has-children>.primary-nav__link:after {
	right: 15px;
}

.primary-nav--full .primary-nav__menu>.primary-nav__item>.primary-nav__link {
	display: block;
	padding: 0 10px;
	height: 96px;
	overflow: hidden;
	position: relative;
	z-index: 1001;
	font-size: 15px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	line-height: 96px;
	white-space: nowrap;
}
@media (max-width: 1024px) and (min-width: 992px) {
	.primary-nav--full .primary-nav__menu>.primary-nav__item>.primary-nav__link {
		font-size: 14px;
	}	
}

.primary-nav--full .primary-nav__menu>.primary-nav__item>.primary-nav__link,
.primary-nav--full .primary-nav__menu>.primary-nav__item>.primary-nav__link:link,
.primary-nav--full .primary-nav__menu>.primary-nav__item>.primary-nav__link:visited {
	color: #fff;
	text-decoration: none;
}

.primary-nav--full .primary-nav__menu>.primary-nav__item>.primary-nav__link:hover {
	color: #F0E6D3;
	text-decoration: none;
	margin-top: 1px;
	height: 95px;
	background-color: transparent;
}

.primary-nav--full .primary-nav__menu>.primary-nav__item>.primary-nav__link:after {
	display: none;
}

.primary-nav--full .primary-nav__menu>.primary-nav__item.primary-nav__item--underlined>.primary-nav__link,
.primary-nav--full .primary-nav__menu>.primary-nav__item.primary-nav__item--underlined>.primary-nav__link:link,
.primary-nav--full .primary-nav__menu>.primary-nav__item.primary-nav__item--underlined>.primary-nav__link:visited {
	color: #F0E6D3;
	background-color: transparent;
}

.primary-nav-toggler {
	height: 26px;
	padding-right: 40px;
	line-height: 22px;
	font-size: 14px;
	color: #fff;
	white-space: nowrap;
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.primary-nav-toggler:after {
	content: '';
	display: block;
	position: absolute;
	top: 18px;
	right: 0;
	width: 0;
	height: 0;
	border-top: 8px solid #F0E6D3;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-bottom: 0;
}

.primary-nav-toggler:hover {
	color: #fff;
}

.primary-nav-toggler:hover:after {
	border-top-color: #f05f40;
}

.primary-nav-toggler__closed,
.primary-nav-toggler__open {
	display: none;
}

@media (min-width: 768px) {
	.primary-nav-toggler__closed {
		display: inline;
	}
	.primary-nav-toggler__open {
		display: none;
	}
	.primary-nav-toggler.open .primary-nav-toggler__closed {
		display: none;
	}
	.primary-nav-toggler.open .primary-nav-toggler__open {
		display: inline;
	}
}

.primary-nav-toggler__bars {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 22px;
	height: 16px;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.primary-nav-toggler__bars:before,
.primary-nav-toggler__bars:after {
	content: '';
	left: 0;
	width: 22px;
	display: block;
	position: absolute;
	height: 4px;
	background-color: #F0E6D3;
	-webkit-transition: background-color 0s, transform 200ms linear, top 200ms linear;
	-moz-transition: background-color 0s, transform 200ms linear, top 200ms linear;
	transition: background-color 0s, transform 200ms linear, top 200ms linear;
}

.primary-nav-toggler__bars:before {
	top: 0;
}

.primary-nav-toggler__bars:after {
	top: 12px;
}

.csstransforms .primary-nav-toggler__bars.active:before {
	top: 6px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.csstransforms .primary-nav-toggler__bars.active:after {
	top: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.primary-nav-toggler:hover .primary-nav-toggler__bars:before,
.primary-nav-toggler:hover .primary-nav-toggler__bars:after,
.primary-nav-toggler:hover .primary-nav-toggler__bars .primary-nav-toggler__bar {
	background-color: #f05f40;
}

.primary-nav-toggler__bar {
	display: block;
	position: static;
	margin-top: 6px;
	height: 4px;
	background-color: #F0E6D3;
}

.csstransforms .active>.primary-nav-toggler__bar {
	-webkit-transform: scale(0, 0);
	-moz-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	-o-transform: scale(0, 0);
	transform: scale(0, 0);
}

.head-slider {
	position: relative;
}

.head-slider__slides {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.head-slider__slide {
	display: block;
	visibility: hidden;
	width: 100%;
	height: 0;
	position: relative;
	left: 0;
	top: 0;
	z-index: 0;
	overflow: hidden;
	line-height: 415px;
}

/* Правки "НОВОЕ" */

@media (max-width: 1024px) {
	.head-slider__slide {
		display: flex;
		align-items: center;
	}
}

/*  */

.head-slider__slide.active {
	z-index: 1;
	height: 442px;
	overflow: visible;
	visibility: visible;
}

.head-slider__caption,
.head-slider__teaser {
	position: relative;
	z-index: 2;
}

.head-slider__caption-inner,
.head-slider__teaser-inner {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.47);
	color: white;
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-style: normal;
	font-weight: 700;
}

.head-slider__text {
	display: inline-block;
	position: relative;
	margin: 0;
	width: 100%;
	line-height: normal;
	vertical-align: middle;
}

.head-slider__text:after {
	content: '';
	display: table;
	clear: both;
}

@media (min-width: 768px) {
	.head-slider__text {
		margin: 0 70px;
		width: auto;
	}
}

@media (min-width: 1024px) {
	.head-slider__text {
		margin-left: 35px;
		margin-right: 380px;
	}
}

@media (max-width: 1260px) {
	.primary-nav--full .primary-nav__menu>.primary-nav__item {
		padding-right: 31px;
	}
}

@media (max-width: 1171px) {
	.primary-nav--full .primary-nav__menu>.primary-nav__item {
		padding-right: 10px;
	}
}

@media (min-width: 1260px) {
	.head-slider__text {
		margin-left: 85px;
		margin-right: 430px;
	}
}

/* Правки "НОВОЕ" */

@media (max-width: 1024px) {
	.head-slider__text {
		margin: 0 auto;
		width: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

/*  */

.head-slider__caption {
	display: block;
	margin: 0;
}

/* Правки "НОВОЕ" */

@media (max-width: 1024px) {
	.head-slider__caption {
		display: flex;
		justify-content: center;
	}
}

/*  */

.head-slider__caption-inner {
	display: block;
	padding: 8px 20px;
	border-top: 4px solid #F0E6D3;
	font-size: 28px;
	text-align: center;
}

@media (min-width: 768px) {
	.head-slider__caption-inner {
		display: table;
		padding: 7px 30px;
		text-transform: uppercase;
		font-size: 38px;
		text-align: left;
	}
}

.head-slider__teaser {
	display: block;
	margin: 10px 0 0;
}

/* Правки "НОВОЕ" */

@media (max-width: 1024px) {
	.head-slider__teaser {
		display: flex;
		justify-content: center;
	}
}

/*  */

.head-slider__teaser-inner {
	display: block;
	padding: 10px 20px;
	font-size: 17px;
	text-align: center;
}

@media (min-width: 768px) {
	.head-slider__teaser-inner {
		display: table;
		font-size: 20px;
		text-align: left;
	}
}

.head-slider__button {
	display: block;
	float: left;
	min-width: 180px;
	margin: 25px auto 0;
	padding: 15px 20px;
	position: relative;
	z-index: 2;
	text-align: center;
	font-size: 15px;
	font-family: 'Open Sans Condensed', Arial, Verdana, sans-serif;
	font-weight: 700;
	white-space: normal;
	outline: none !important;
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.head-slider__button,
.head-slider__button:link,
.head-slider__button:visited {
	background-color: #f05f40;
	color: #fffff9;
	text-decoration: none;

}

.head-slider__button:hover {
	background-color: #F0E6D3;
	color: black;
	text-decoration: none;

}

@media (min-width: 768px) {
	.head-slider__button {
		margin-left: 0;
		margin-right: 0;
		font-size: 18px;
	}
}

.head-slider__pills {
	list-style: none;
	margin: -13px 0 0;
	padding: 0;
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 26px;
	line-height: 26px;
	z-index: 2;
	text-align: center;
	font-size: 0;
}

.head-slider__pill {
	display: inline-block;
	margin: 0 0 0 15px;
	width: 26px;
	height: 26px;
	-moz-border-radius: 13px;
	-khtml-border-radius: 13px;
	-webkit-border-radius: 13px;
	border-radius: 13px;
	background-color: white;
	cursor: pointer;
}

.head-slider__pill:first-child {
	margin-left: 0;
}

.head-slider__pill:before {
	content: '';
	display: none;
	width: 16px;
	height: 16px;
	margin: 5px;
	-moz-border-radius: 8px;
	-khtml-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	background-color: #f05f40;
}

.head-slider__pill.active:before {
	display: block;
}

.head-slider__arrow-left,
.head-slider__arrow-right {
	display: none;
	position: absolute;
	top: 50%;
	margin-top: -14px;
	cursor: pointer;
	outline: none !important;
	z-index: 2;
}

.head-slider__arrow-left {
	background-image: url(../img/ui.png);
	background-position: -59px -28px;
	width: 17px;
	height: 28px;
}

.head-slider__arrow-left:hover {
	background-image: url(../img/ui.png);
	background-position: -59px 0px;
	width: 17px;
	height: 28px;
}

@media (min-width: 768px) {
	.head-slider__arrow-left {
		display: block;
		left: 25px;
	}
}

@media (min-width: 1024px) {
	.head-slider__arrow-left {
		left: 5px;
	}
}

.head-slider__arrow-right {
	background-image: url(../img/ui.png);
	background-position: -76px -28px;
	width: 17px;
	height: 28px;
}

.head-slider__arrow-right:hover {
	background-image: url(../img/ui.png);
	background-position: -76px 0px;
	width: 17px;
	height: 28px;
}

@media (min-width: 768px) {
	.head-slider__arrow-right {
		display: block;
		right: 25px;
	}
}

@media (min-width: 1024px) {
	.head-slider__arrow-right {
		right: 5px;
	}
}

.head-slider__photo {
	display: none;
	position: absolute;
	right: 40px;
	bottom: 0;
	max-height: 100%;
	z-index: 0;
	border: 0;
	outline: none !important;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

@media (min-width: 1024px) {
	.head-slider__photo {
		display: block;
	}
}

@media (min-width: 1260px) {
	.head-slider__photo {
		right: 85px;
	}
}

.head-slider__photocenter {
	display: none;
	position: absolute;
	right: 180px;
	bottom: 40%;
	max-height: 100%;
	z-index: 0;
	border: 0;
	outline: none !important;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

@media (min-width: 1024px) {
	.head-slider__photocenter {
		display: block;
	}
}

@media (min-width: 1260px) {
	.head-slider__photocenter {
		right: 180px;
	}
}

.head-slider--mini .head-slider__slide {
	line-height: 216px;
}

.head-slider--mini .head-slider__slide.active {
	height: 230px;
}

.head-slider--mini .head-slider__caption-inner {
	padding: 10px 20px;
	font-size: 24px;
}

.head-slider--mini .head-slider__teaser {
	margin-top: 5px;
}

.head-slider--mini .head-slider__teaser-inner {
	padding: 10px 20px;
	font-size: 15px;
}

.head-slider--mini .head-slider__button {
	margin-top: 15px;
	padding: 10px 20px;
	font-size: 12px;
}

@media (min-width: 768px) {
	.head-slider--mini .head-slider__caption-inner {
		padding: 7px 20px;
		font-size: 29px;
	}
	.head-slider--mini .head-slider__teaser {
		margin-top: 10px;
	}
	.head-slider--mini .head-slider__teaser-inner {
		padding: 7px 20px;
		font-size: 18px;
	}
	.head-slider--mini .head-slider__button {
		margin-top: 20px;
		padding: 10px 20px;
		font-size: 14px;
	}
}

.head-slider__slide--effect-row-by-row .head-slider__caption {
	left: -1000px;
	opacity: 0;
}

.head-slider__slide--effect-row-by-row .head-slider__teaser {
	left: 4096px;
	opacity: 0;
}

.head-slider__slide--effect-row-by-row .head-slider__button {
	left: -1000px;
	opacity: 0;
}

.head-slider__slide--effect-row-by-row .head-slider__photo,
.head-slider__slide--effect-row-by-row .head-slider__photocenter {
	opacity: 0;
}

.head-slider__slide--effect-row-by-row.active .head-slider__caption {
	left: 0;
	opacity: 1;
	-webkit-transition: left 0.8s ease;
	-moz-transition: left 0.8s ease;
	transition: left 0.8s ease;
}

.head-slider__slide--effect-row-by-row.active .head-slider__teaser {
	left: 0;
	opacity: 1;
	-webkit-transition: left 0.7s ease 0.2s;
	-moz-transition: left 0.7s ease 0.2s;
	transition: left 0.7s ease 0.2s;
}

.head-slider__slide--effect-row-by-row.active .head-slider__button {
	left: 0;
	opacity: 1;
	-webkit-transition: left 0.5s ease 0.4s;
	-moz-transition: left 0.5s ease 0.4s;
	transition: left 0.5s ease 0.4s;
}

.head-slider__slide--effect-row-by-row.active .head-slider__photo,
.head-slider__slide--effect-row-by-row.active .head-slider__photocenter {
	opacity: 1;
	-webkit-transition: opacity 0.7s ease-in;
	-moz-transition: opacity 0.7s ease-in;
	transition: opacity 0.7s ease-in;
}

.social-icons {
	display: table;
	height: 30px;
	line-height: 30px;
	white-space: nowrap;
	font-size: 0;
}

.social-icons__item {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-left: 5px;
	color: white;
	font-size: 12px;
	text-align: center;
	background-color: #595959;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.social-icons__item:first-child {
	margin-left: 0;
}

.social-icons__item:hover {
	background-color: #f05f40;
}

.social-icons__item [class^="pe-so-"] {
	color: white;
}

.button--rounded-orange {
	padding: 10px 30px;
	border: 0;
	outline: none !important;
	font-size: 11px;
	-moz-border-radius: 25px;
	-khtml-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	border: 3px solid white;
	color: #fff;
	background-color: #fac612;
	background: #fac612;
	background: -moz-linear-gradient(top, #fac612, #fab112);
	background: -webkit-linear-gradient(top, #fac612, #fab112);
	background: -o-linear-gradient(top, #fac612, #fab112);
	background: -ms-linear-gradient(top, #fac612, #fab112);
	background: linear-gradient(to bottom, #fac612, #fab112);
}

.button--rounded-orange:focus,
.button--rounded-orange.focus,
.button--rounded-orange:hover {
	color: #fff;
	background-color: #edb905;
	background: #edb905;
	background: -moz-linear-gradient(top, #edb905, #eda405);
	background: -webkit-linear-gradient(top, #edb905, #eda405);
	background: -o-linear-gradient(top, #edb905, #eda405);
	background: -ms-linear-gradient(top, #edb905, #eda405);
	background: linear-gradient(to bottom, #edb905, #eda405);
}

.open>.dropdown-toggle.button--rounded-orange,
.button--rounded-orange:active,
.button--rounded-orange.active {
	color: #fff;
	background-color: #edb905;
	background: #edb905;
	background: -moz-linear-gradient(top, #edb905, #eda405);
	background: -webkit-linear-gradient(top, #edb905, #eda405);
	background: -o-linear-gradient(top, #edb905, #eda405);
	background: -ms-linear-gradient(top, #edb905, #eda405);
	background: linear-gradient(to bottom, #edb905, #eda405);
}

.open>.dropdown-toggle.button--rounded-orange:hover,
.open>.dropdown-toggle.button--rounded-orange:focus,
.open>.dropdown-toggle.button--rounded-orange.focus,
.button--rounded-orange:active:hover,
.button--rounded-orange:active:focus,
.button--rounded-orange:active.focus,
.button--rounded-orange.active:hover,
.button--rounded-orange.active:focus,
.button--rounded-orange.active.focus {
	color: #fff;
	background-color: #d5a604;
	background: #d5a604;
	background: -moz-linear-gradient(top, #d5a604, #d59304);
	background: -webkit-linear-gradient(top, #d5a604, #d59304);
	background: -o-linear-gradient(top, #d5a604, #d59304);
	background: -ms-linear-gradient(top, #d5a604, #d59304);
	background: linear-gradient(to bottom, #d5a604, #d59304);
}

.open>.dropdown-toggle.button--rounded-orange,
.button--rounded-orange:active,
.button--rounded-orange.active {
	background-image: none;
}

.button--rounded-orange.disabled:hover,
.button--rounded-orange.disabled:focus,
.button--rounded-orange.disabled.focus,
.button--rounded-orange[disabled]:hover,
.button--rounded-orange[disabled]:focus,
.button--rounded-orange[disabled].focus,
fieldset[disabled] .button--rounded-orange:hover,
fieldset[disabled] .button--rounded-orange:focus,
fieldset[disabled] .button--rounded-orange.focus {
	background-color: #fbd244;
	background: #fbd244;
	background: -moz-linear-gradient(top, #fbd244, #fbc144);
	background: -webkit-linear-gradient(top, #fbd244, #fbc144);
	background: -o-linear-gradient(top, #fbd244, #fbc144);
	background: -ms-linear-gradient(top, #fbd244, #fbc144);
	background: linear-gradient(to bottom, #fbd244, #fbc144);
}

.button--rounded-orange .badge {
	color: #fac612;
	background-color: #fff;
}

.button--bordered-rounded-orange {
	border: 1px solid white;
	color: #fff;
	background-color: #fac612;
	background: #fac612;
	background: -moz-linear-gradient(top, #fac612, #fab112);
	background: -webkit-linear-gradient(top, #fac612, #fab112);
	background: -o-linear-gradient(top, #fac612, #fab112);
	background: -ms-linear-gradient(top, #fac612, #fab112);
	background: linear-gradient(to bottom, #fac612, #fab112);
	outline: none !important;
}

.button--bordered-rounded-orange:focus,
.button--bordered-rounded-orange.focus,
.button--bordered-rounded-orange:hover {
	color: #fff;
	background-color: #edb905;
	background: #edb905;
	background: -moz-linear-gradient(top, #edb905, #eda405);
	background: -webkit-linear-gradient(top, #edb905, #eda405);
	background: -o-linear-gradient(top, #edb905, #eda405);
	background: -ms-linear-gradient(top, #edb905, #eda405);
	background: linear-gradient(to bottom, #edb905, #eda405);
}

.open>.dropdown-toggle.button--bordered-rounded-orange,
.button--bordered-rounded-orange:active,
.button--bordered-rounded-orange.active {
	color: #fff;
	background-color: #edb905;
	background: #edb905;
	background: -moz-linear-gradient(top, #edb905, #eda405);
	background: -webkit-linear-gradient(top, #edb905, #eda405);
	background: -o-linear-gradient(top, #edb905, #eda405);
	background: -ms-linear-gradient(top, #edb905, #eda405);
	background: linear-gradient(to bottom, #edb905, #eda405);
}

.open>.dropdown-toggle.button--bordered-rounded-orange:hover,
.open>.dropdown-toggle.button--bordered-rounded-orange:focus,
.open>.dropdown-toggle.button--bordered-rounded-orange.focus,
.button--bordered-rounded-orange:active:hover,
.button--bordered-rounded-orange:active:focus,
.button--bordered-rounded-orange:active.focus,
.button--bordered-rounded-orange.active:hover,
.button--bordered-rounded-orange.active:focus,
.button--bordered-rounded-orange.active.focus {
	color: #fff;
	background-color: #d5a604;
	background: #d5a604;
	background: -moz-linear-gradient(top, #d5a604, #d59304);
	background: -webkit-linear-gradient(top, #d5a604, #d59304);
	background: -o-linear-gradient(top, #d5a604, #d59304);
	background: -ms-linear-gradient(top, #d5a604, #d59304);
	background: linear-gradient(to bottom, #d5a604, #d59304);
}

.open>.dropdown-toggle.button--bordered-rounded-orange,
.button--bordered-rounded-orange:active,
.button--bordered-rounded-orange.active {
	background-image: none;
}

.button--bordered-rounded-orange.disabled:hover,
.button--bordered-rounded-orange.disabled:focus,
.button--bordered-rounded-orange.disabled.focus,
.button--bordered-rounded-orange[disabled]:hover,
.button--bordered-rounded-orange[disabled]:focus,
.button--bordered-rounded-orange[disabled].focus,
fieldset[disabled] .button--bordered-rounded-orange:hover,
fieldset[disabled] .button--bordered-rounded-orange:focus,
fieldset[disabled] .button--bordered-rounded-orange.focus {
	background-color: #fbd244;
	background: #fbd244;
	background: -moz-linear-gradient(top, #fbd244, #fbc144);
	background: -webkit-linear-gradient(top, #fbd244, #fbc144);
	background: -o-linear-gradient(top, #fbd244, #fbc144);
	background: -ms-linear-gradient(top, #fbd244, #fbc144);
	background: linear-gradient(to bottom, #fbd244, #fbc144);
}

.button--bordered-rounded-orange .badge {
	color: #fac612;
	background-color: #fff;
}

.button--bordered-rounded-orange.button--lg {
	padding: 15px 45px;
	border-width: 5px;
	font-size: 14px;
	-moz-border-radius: 30px / 30px;
	-khtml-border-radius: 30px / 30px;
	-webkit-border-radius: 30px / 30px;
	border-radius: 30px / 30px;
}

@-webkit-keyframes footercallback {
	0% {
		box-shadow: none;
	}
	79% {
		box-shadow: none;
	}
	80% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(250, 202, 18, 0);
	}
	/* teni bez navedeniya */
	82% {
		box-shadow: 0 0 8px 6px #ffedb6, 0 0 12px 10px transparent, 0 0 12px 14px #ffedb6;
	}
	100% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(250, 202, 18, 0);
	}
}

@-moz-keyframes footercallback {
	0% {
		box-shadow: none;
	}
	79% {
		box-shadow: none;
	}
	80% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(250, 202, 18, 0);
	}
	82% {
		box-shadow: 0 0 8px 6px #ffedb6, 0 0 12px 10px transparent, 0 0 12px 14px #ffedb6;
	}
	100% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(250, 202, 18, 0);
	}
}

@keyframes footercallback {
	0% {
		box-shadow: none;
	}
	79% {
		box-shadow: none;
	}
	80% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(250, 202, 18, 0);
	}
	82% {
		box-shadow: 0 0 8px 6px #ffedb6, 0 0 12px 10px transparent, 0 0 12px 14px #ffedb6;
	}
	100% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(250, 202, 18, 0);
	}
}

@-webkit-keyframes footercallbackicon {
	0% {
		transform: rotate(0deg);
	}
	80% {
		transform: rotate(0deg);
	}
	85% {
		transform: rotate(30deg);
	}
	90% {
		transform: rotate(0deg);
	}
	95% {
		transform: rotate(-30deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@-moz-keyframes footercallbackicon {
	0% {
		transform: rotate(0deg);
	}
	80% {
		transform: rotate(0deg);
	}
	85% {
		transform: rotate(30deg);
	}
	90% {
		transform: rotate(0deg);
	}
	95% {
		transform: rotate(-30deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@keyframes footercallbackicon {
	0% {
		transform: rotate(0deg);
	}
	80% {
		transform: rotate(0deg);
	}
	85% {
		transform: rotate(30deg);
	}
	90% {
		transform: rotate(0deg);
	}
	95% {
		transform: rotate(-30deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@-webkit-keyframes footercallbackhover {
	0% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(250, 202, 18, 0);
	}
	10% {
		box-shadow: 0 0 8px 6px #ffedb6, 0 0 12px 10px transparent, 0 0 12px 14px #ffedb6;
	}
	/* Teni */
	100% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(250, 202, 18, 0);
	}
}

@-moz-keyframes footercallbackhover {
	0% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(250, 202, 18, 0);
	}
	10% {
		box-shadow: 0 0 8px 6px #ffedb6, 0 0 12px 10px transparent, 0 0 12px 14px #ffedb6;
	}
	100% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(250, 202, 18, 0);
	}
}

@keyframes footercallbackhover {
	0% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(250, 202, 18, 0);
	}
	10% {
		box-shadow: 0 0 8px 6px #ffedb6, 0 0 12px 10px transparent, 0 0 12px 14px #ffedb6;
	}
	100% {
		box-shadow: 0 0 8px 6px rgba(250, 202, 18, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(250, 202, 18, 0);
	}
}

@-webkit-keyframes footercallbackiconhover {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(30deg);
	}
	50% {
		transform: rotate(0deg);
	}
	75% {
		transform: rotate(-30deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@-moz-keyframes footercallbackiconhover {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(30deg);
	}
	50% {
		transform: rotate(0deg);
	}
	75% {
		transform: rotate(-30deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@keyframes footercallbackiconhover {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(30deg);
	}
	50% {
		transform: rotate(0deg);
	}
	75% {
		transform: rotate(-30deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

.footer {
	position: relative;
	padding-top: 60px;
	padding-bottom: 20px;
}

@media (min-width: 768px) {
	.footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

.footer:after {
	content: '';
	display: block;
	clear: both;
}

.footer__callback {
	display: block;
	width: 120px;
	height: 120px;
	margin: 0 0 0 -60px;
	position: absolute;
	top: -60px;
	left: 50%;
	border: 10px solid white;
	background-color: #ffedb6;
	-moz-border-radius: 60px;
	-khtml-border-radius: 60px;
	-webkit-border-radius: 60px;
	border-radius: 60px;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	cursor: pointer;
	-webkit-animation: footercallback 7s ease-out infinite;
	-moz-animation: footercallback 7s ease-out infinite;
	animation: footercallback 7s ease-out infinite;
}

.footer__callback:hover {
	-webkit-animation: footercallbackhover 2s ease-out infinite;
	-moz-animation: footercallbackhover 2s ease-out infinite;
	animation: footercallbackhover 2s ease-out infinite;
}

.footer__callback:hover .footer__callback-icon {
	-webkit-animation: footercallbackiconhover 2s ease-out infinite;
	-moz-animation: footercallbackiconhover 2s ease-out infinite;
	animation: footercallbackiconhover 2s ease-out infinite;
}

/* callback right @media (min-width: 768px) {
	.footer__callback {
	position: fixed;
	top: 65%;
	left: 90%;
	z-index: 999;
}} */

.footer__callback-icon {
	display: block;
	margin: 18px 0 0 18px;
	width: 64px;
	height: 64px;
	line-height: 64px;
	text-align: center;
	background-color: #fad112;
	/*color tel */
	-moz-border-radius: 32px;
	-khtml-border-radius: 32px;
	-webkit-border-radius: 32px;
	border-radius: 32px;
	-webkit-animation: footercallbackicon 7s linear infinite;
	-moz-animation: footercallbackicon 7s linear infinite;
	animation: footercallbackicon 7s linear infinite;
}

.footer__callback-icon:before {
	background-image: url(../img/ui.png);
	background-position: 0px 0px;
	width: 30px;
	height: 35px;
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-top: -2px;
	margin-right: -2px;
}

.footer__first-column,
.footer__second-column {
	margin-top: 20px;
	color: #b7b7b7;
	font-size: 12px;
	text-align: center;
	padding-right: 20px;
	padding-left: 20px;
}

@media (min-width: 768px) {
	.footer__first-column,
	.footer__second-column {
		margin-top: 0;
	}
}

.footer__first-column {
	margin-top: 15px;
}

.footer__first-column .footer__contact-link {
	display: none;
}

@media (min-width: 768px) {
	.footer__first-column {
		margin-top: 0;
		float: left;
		width: 50%;
		padding-right: 70px;
		text-align: left;
	}
	.footer__first-column .footer__contact-link {
		display: block;
		text-align: left;
		margin-top: 15px;
	}
}

@media (min-width: 1024px) {
	.footer__first-column {
		padding-right: 200px;
	}
}

@media (min-width: 768px) {
	.footer__second-column {
		float: left;
		width: 50%;
		padding-left: 50px;
		text-align: right;
	}
	.footer__second-column .footer__contact-link {
		display: none;
	}
}

.footer p {
	margin-bottom: 1px;
}

.footer a,
.footer a:link,
.footer a:visited {
	color: #b7b7b7;
	text-decoration: none;
}

.footer a:hover {
	color: #b7b7b7;
	text-decoration: underline;
}

.footer__contact-link {
	display: block;
	margin-top: 10px;
	text-align: center;
	font-size: 13px;
}

.footer__contact-link,
.footer__contact-link:link,
.footer__contact-link:visited {
	color: white !important;
	text-decoration: underline !important;
}

.footer__contact-link:hover {
	color: white !important;
	text-decoration: none !important;
}

.footer__counters {
	display: block;
	list-style: none;
	margin: 15px 0 0;
	padding: 0;
	font-size: 0;
	text-align: center;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.footer__counters {
		margin-top: 20px;
		text-align: right;
	}
}

.footer__counter {
	display: inline-block;
	margin: 0 0 0 5px;
	padding: 0;
	font-size: 13px;
}

.footer__counter:first-child {
	margin-left: 0;
}

.footer__copy {
	margin: 10px 0 0;
	font-size: 11px;
}

.footer__copy a,
.footer__copy a:link,
.footer__copy a:visited {
	color: white;
	text-decoration: underline;
}

.footer__copy a:hover {
	color: white;
	text-decoration: none;
}

.footer__hint {
	visibility: hidden;
	width: 230px;
	position: absolute;
	top: 55px;
	left: 50%;
	margin-left: -115px;
	padding: 15px 0 15px 15px;
	border: 4px solid white;
	-moz-border-radius: 6px;
	-khtml-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	background-color: #87b314;
	opacity: 0;
	-webkit-transition: opacity 0.2s ease, top 0.2s ease, visibility 0s ease 0.2s;
	-moz-transition: opacity 0.2s ease, top 0.2s ease, visibility 0s ease 0.2s;
	transition: opacity 0.2s ease, top 0.2s ease, visibility 0s ease 0.2s;
	color: white;
	font-size: 13px;
	line-height: 1.4;
}

.footer__hint.open {
	overflow: visible;
	visibility: visible;
	opacity: 1;
	top: 70px;
	-webkit-transition: opacity 0.2s ease, top 0.2s ease, visibility 0s ease 0s;
	-moz-transition: opacity 0.2s ease, top 0.2s ease, visibility 0s ease 0s;
	transition: opacity 0.2s ease, top 0.2s ease, visibility 0s ease 0s;
}

.footer__hint:before,
.footer__hint:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	border-bottom: 7px solid white;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 0;
}

.footer__hint:before {
	top: -11px;
	z-index: 2;
}

.footer__hint:after {
	top: -7px;
	z-index: 3;
	border-bottom-color: #87b314;
}

.footer .social-icons {
	margin: 25px auto 0;
}

@media (min-width: 768px) {
	.footer .social-icons {
		margin: 15px 0 0;
	}
}

.advantage-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Правки "НОВОЕ" */

.advantage-list__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*  */

@media (min-width: 768px) {
	/* Правки "БЫЛО" */
	/* .advantage-list {
			display: table;
			width: 100%;
			border-spacing: 30px 0;
			border-collapse: separate; }
			.advantage-list__inner {
				display: table-row; } */
	/*  */
	/* Правки "СТАЛО" */
	.advantage-list {
		display: block;
		width: 100%;
		border-spacing: 30px 0;
		border-collapse: separate;
	}
	.advantage-list__inner {
		display: flex;
		justify-content: center;
		flex-direction: row;
		align-items: center;
	}
	/*  */
}

.advantage {
	padding: 0;
	width: 220px;
	position: relative;
	/* Правки "БЫЛО" */
	/* display: block; */
	/* margin: 0 auto; */
	/* margin-top: 60px; */
	/*  */
	/* Правки "СТАЛО" */
	margin: 0 10px;
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* */
	border: 1px solid #e2e2e2;
	-moz-border-radius: 13px;
	-khtml-border-radius: 13px;
	-webkit-border-radius: 13px;
	border-radius: 13px;
	cursor: pointer;
}

.advantage:first-child {
	margin-top: 0;
}

.advantage,
.advantage:link,
.advantage:visited,
.advantage:hover {
	text-decoration: none;
}

@media (min-width: 768px) {
	/* Правки "БЫЛО" */
	/* .advantage {
			display: table-cell;
			width: 33.3333%; }  */
	/*  */
	/* Правки "Стало" */
	.advantage {
		margin: 0 10px;
		margin-top: 0;
		height: 300px;
		width: 360px;
	}
	/*  */
}

.advantage__image {
	display: block;
	width: 100%;
	height: 80px;
	border: 0;
	margin: 0;
	outline: none;
	-webkit-border-top-right-radius: 13px;
	-moz-border-radius-topright: 13px;
	border-top-right-radius: 13px;
	-webkit-border-top-left-radius: 13px;
	-moz-border-radius-topleft: 13px;
	border-top-left-radius: 13px;
}

@media (min-width: 1024px) {
	.advantage__image {
		height: 100px;
	}
}

.advantage__caption {
	display: block;
	margin: 20px 10px;
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #252525;
	text-align: center;
}

@media (min-width: 768px) {
	.advantage__caption {
		margin: 25px 20px 20px;
		/* Правки "НОВОЕ" */
		height: 140px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 19px;
		/*  */
	}
}

@media (min-width: 1024px) {
	/* Правки "БЫЛО" */
	/* .advantage__caption {
				margin-top: 35px;
				margin-left: 25px;
				margin-right: 25px; } */
	/*  */
	/* Правки "СТАЛО" */
	.advantage__caption {
		margin-top: 25px;
		margin-left: 25px;
		margin-right: 25px;
	}
	/*  */
}

@media (min-width: 1260px) {
	.advantage__caption {
		margin-left: 30px;
		margin-right: 30px;
	}
}

/* Правки "БЫЛО" */

/* .advantage__descrption {
		display: block;
		margin: 0 15px;
		font-size: 13px;
		color: #252525;
		text-align: center;
		padding-bottom: 30px; } */

/*  */

/* Правки "СТАЛО" */

.advantage__descrption {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin: 0 15px;
	font-size: 13px;
	color: #252525;
	text-align: center;
	padding-bottom: 30px;
}
/*  */

@media (min-width: 768px) {
	.advantage__descrption {
		height: 280px;
		/* Правка "НОВОЕ" */
		margin-left: 20px;
		margin-right: 20px;
	}
}

@media (min-width: 1024px) {
	.advantage__descrption {
		margin-left: 25px;
		margin-right: 25px;
		font-size: 14px;
		line-height: 1.36;
	}
}

@media (min-width: 1260px) {
	.advantage__descrption {
		margin-left: 30px;
		margin-right: 30px;
	}
}

.advantage__icon {
	width: 90px;
	height: 90px;
	line-height: 70px;
	position: absolute;
	top: -45px;
	left: 50%;
	margin-left: -45px;
	-webkit-transition: top 0.1s ease-out;
	-moz-transition: top 0.1s ease-out;
	transition: top 0.1s ease-out;
	-moz-border-radius: 45px;
	-khtml-border-radius: 45px;
	-webkit-border-radius: 45px;
	border-radius: 45px;
	border: 10px solid white;
	/*background: #F0E6D3;
		background: -moz-linear-gradient(top, #F0E6D3, #F0E6D3);
		background: -webkit-linear-gradient(top, #F0E6D3, #F0E6D3);
		background: -o-linear-gradient(top, #F0E6D3, #F0E6D3);
		background: -ms-linear-gradient(top, #F0E6D3, #F0E6D3);
		background: linear-gradient(to bottom, #F0E6D3, #F0E6D3);*/
	background-color: #FFF;
	text-align: center;
}

.advantage:hover .advantage__icon {
	top: -50px;
}

.advantage__icon-img {
	display: inline-block;
	vertical-align: middle;
	border: 0;
	border-radius: 25px;
}

.article {
	font-size: 13px;
}

.article h1 {
	font-size: 18px;
	margin: 0 0 20px;
	text-align: center;
}

.article h2 {
	display: table;
	margin: 20px auto;
	padding: 6px 8px;
	line-height: 1.2;
	font-size: 16px;
	color: #444;
	/*background-color: #F0E6D3;*/
	text-align: center;
	text-transform: uppercase;
	border-bottom: 2px solid #f05f40 !important;
}

.article h3 {
	display: table;
	font-family: "Open Sans Condensed", Arial;
	font-size: 13px;
	line-height: 1.25;
	text-transform: uppercase;
	margin-top: 12px;
	margin-bottom: 5px;
	color: #fff;
	background-color: #f05f40;
	/* background-image: linear-gradient(to top, #7dba04 0%, #93d104 100%); */
	padding: 4px 10px;
	font-weight: 700;
	border-collapse: separate;
}

.article p {
	margin-bottom: 16px;
}

.article .definiton-list {
	margin: 20px auto;
}

.article .price-callback {
	margin-top: 20px;
	margin-bottom: 20px;
}

.article img.alignright {
	float: none;
	margin: 0 auto 20px;
	display: block;
	height: auto !important;
	max-width: 100%;
}

.article img.alignleft {
	float: none;
	margin: 0 auto 20px;
	height: auto !important;
	max-width: 100%;
}

.article img.aligncenter {
	display: block;
	margin: 0 auto 20px;
	height: auto !important;
	max-width: 100%;
}

@media (min-width: 768px) {
	.article {
		font-size: 14px;
		line-height: 1.43;
	}
	.article h1 {
		margin-bottom: 30px;
		text-align: center;
		font-size: 28px;
		text-align: center;
		margin-top: 20px;
	}
	.article h2 {
		font-size: 19px;
		padding: 10px 15px;
	}
	.article h3 {
		font-size: 17px;
	}
	.article p {
		margin-bottom: 12px;
	}
	.article img.alignright {
		float: right;
		margin: 0 0 1em 1em;
		display: inline-block;
	}
	.article img.alignleft {
		float: left;
		margin: 0 1em 1em 0;
		display: inline-block;
	}
	.article img.aligncenter {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1024px) {
	.article {
		font-size: 15px;
	}
	.article h1 {
		font-size: 32px;
	}
	.article h2 {
		margin-left: 0;
		margin-right: 0;
		margin-top: 30px;
		margin-bottom: 15px;
		font-size: 23px;
		padding: 10px 15px 8px 5px;
		text-align: left;
	}
	.article h3 {
		font-size: 20px;
		line-height: 1.25;
		text-transform: uppercase;
		margin-top: 25px;
		margin-bottom: 5px;
		padding: 4px 20px;
		font-weight: 700;
	}
	.article p {
		margin-bottom: 12px;
	}
	.article .definiton-list {
		margin-left: 20px;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.article .price-callback {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

.definiton-list {
	display: table;
	font-size: 14px;
	color: #636363;
}

.definiton {
	display: table-row;
}

.definiton:nth-child(odd) {
	background-color: #f8f8f8;
}

.definiton__key,
.definiton__value {
	display: table-cell;
	height: 40px;
	vertical-align: middle;
	line-height: 1.1;
	padding-top: 5px;
	padding-bottom: 5px;
}

.definiton__key {
	padding-left: 13px;
	padding-right: 13px;
}

.definiton:nth-child(odd) .definiton__key {
	border-right: 1px solid #fff;
}

.definiton__value {
	padding-left: 0;
	padding-right: 0;
	text-align: center;
	min-width: 100px;
}

.definiton:nth-child(odd) .definiton__value {
	border-left: 1px solid #f3f3f3;
}

.price-callback {
	margin-left: -15px;
	margin-right: -15px;
	color: #252525;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	line-height: 1;
}

@media (min-width: 320px) {
	.price-callback {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 768px) {
	.price-callback {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 1024px) {
	.price-callback {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 1260px) {
	.price-callback {
		margin-left: 0;
		margin-right: 0;
	}
}

.price-callback__price {
	padding-top: 50px;
	height: 145px;
	text-align: center;
	background-color: #ededed;
	position: relative;
}

.price-callback__price:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -60px;
	border-top: 8px solid #fff;
	border-right: 60px solid transparent;
	border-left: 60px solid transparent;
	border-bottom: 0;
}

.price-callback__subject {
	margin-bottom: 10px;
	font-size: 16px;
}

.price-callback__cost {
	margin-bottom: 14px;
	font-size: 15px;
	color: #f05f40;
}

.price-callback__value {
	font-size: 24px;
	font-weight: bold;
}

.price-callback__in-sight {
	font-size: 11px;
	color: #8e8e8e;
}

.price-callback__in-sight:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	width: 5px;
	height: 5px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: #b3e90f;
	background: #b3e90f;
	background: -moz-linear-gradient(top, #b3e90f, #8ecb0e);
	background: -webkit-linear-gradient(top, #b3e90f, #8ecb0e);
	background: -o-linear-gradient(top, #b3e90f, #8ecb0e);
	background: -ms-linear-gradient(top, #b3e90f, #8ecb0e);
	background: linear-gradient(to bottom, #b3e90f, #8ecb0e);
	box-shadow: inset 0 0 0 1px rgba(179, 233, 15, 0.5);
}

.price-callback__in-sight.status2:before,
.price-callback__in-sight--red:before {
	background-color: #EE1C25;
	background: #EE1C25;
	background: -moz-linear-gradient(top, #EE1C25, #CB2027);
	background: -webkit-linear-gradient(top, #EE1C25, #CB2027);
	background: -o-linear-gradient(top, #EE1C25, #CB2027);
	background: -ms-linear-gradient(top, #EE1C25, #CB2027);
	background: linear-gradient(to bottom, #EE1C25, #CB2027);
	box-shadow: inset 0 0 0 1px rgba(238, 28, 37, 0.5);
}

.price-callback__in-sight.status3:before,
.price-callback__in-sight--yellow:before {
	background-color: #F7B529;
	background: #F7B529;
	background: -moz-linear-gradient(top, #F7B529, #DF9E16);
	background: -webkit-linear-gradient(top, #F7B529, #DF9E16);
	background: -o-linear-gradient(top, #F7B529, #DF9E16);
	background: -ms-linear-gradient(top, #F7B529, #DF9E16);
	background: linear-gradient(to bottom, #F7B529, #DF9E16);
	box-shadow: inset 0 0 0 1px rgba(247, 181, 41, 0.5);
}

.price-callback__callback {
	height: 160px;
	padding-top: 56px;
	position: relative;
	background-color: #dfdfdf;
	text-align: center;
}

.price-callback__callback:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -160px;
	border-top: 20px solid #ededed;
	border-right: 160px solid transparent;
	border-left: 160px solid transparent;
	border-bottom: 0;
}

.price-callback .button {
	margin-bottom: 10px;
}

.price-callback__hint {
	color: #8e8e8e;
	font-size: 11px;
}

@media (min-width: 768px) {
	.price-callback:after {
		content: '';
		display: block;
		clear: both;
	}
	.price-callback__price,
	.price-callback__callback {
		height: 136px;
		width: 50%;
		float: left;
	}
	.price-callback__price {
		padding-top: 30px;
		padding-left: 25px;
		text-align: left;
	}
	.price-callback__price:before {
		display: none;
	}
	.price-callback__subject,
	.price-callback__cost {
		font-size: 18px;
	}
	.price-callback__value {
		font-size: 27px;
	}
	.price-callback__in-sight {
		text-indent: 5px;
	}
	.price-callback__callback {
		padding-top: 40px;
	}
	.price-callback__callback:before {
		display: none;
	}
	.price-callback__callback:after {
		content: '';
		display: block;
		width: 0;
		height: 0;
		position: absolute;
		left: 0px;
		top: 50%;
		margin-top: -68px;
		border-left: 60px solid #ededed;
		border-top: 68px solid transparent;
		border-bottom: 68px solid transparent;
		border-right: 0;
	}
}

.secondary-nav {
	list-style: none;
	padding: 35px 30px;
	margin: 0;
	background: #f1f1f1;
	font-size: 15px;
	position: relative;
}

.secondary-nav:after {
	content: '';
	display: block;
	height: 1px;
	position: absolute;
	bottom: 1px;
	left: 0;
	right: 0;
	background: #fff;
}

.secondary-nav__submenu {
	list-style: none;
	margin: 20px 0 0 35px;
	padding: 0;
}

.secondary-nav__item {
	display: block;
}

.secondary-nav>.secondary-nav__item {
	margin-bottom: 20px;
}

.secondary-nav__submenu>.secondary-nav__item {
	margin-bottom: 10px;
}

.secondary-nav__link {
	display: table;
	position: relative;
	outline: none !important;
}

.secondary-nav__link,
.secondary-nav__link:link,
.secondary-nav__link:visited,
.secondary-nav__link:hover {
	text-decoration: none;
	color: #252525;
}

.secondary-nav__link:last-child {
	margin-bottom: 0;
}

.secondary-nav__item--current>.secondary-nav__link,
.secondary-nav__item--current>.secondary-nav__link:link,
.secondary-nav__item--current>.secondary-nav__link:visited,
.secondary-nav__item--current>.secondary-nav__link:hover {
	color: white;
	cursor: default;
}

.secondary-nav__item--current>.secondary-nav__link .secondary-nav__text,
.secondary-nav__item--current>.secondary-nav__link:link .secondary-nav__text,
.secondary-nav__item--current>.secondary-nav__link:visited .secondary-nav__text,
.secondary-nav__item--current>.secondary-nav__link:hover .secondary-nav__text {
	display: inline-block;
	text-decoration: none;
	background-color: #a2a2a2;
	padding: 5px 9px;
	border-radius: 5px;
}

.secondary-nav__item--current>.secondary-nav__link .secondary-nav__icon,
.secondary-nav__item--current>.secondary-nav__link:link .secondary-nav__icon,
.secondary-nav__item--current>.secondary-nav__link:visited .secondary-nav__icon,
.secondary-nav__item--current>.secondary-nav__link:hover .secondary-nav__icon {
	top: 5px;
	opacity: 1;
}

.secondary-nav__submenu .secondary-nav__link {
	font-size: 11px;
	line-height: 16px;
}

.secondary-nav__icon {
	display: block;
	border: 0;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.secondary-nav__link:hover .secondary-nav__icon,
.secondary-nav__item--current>.secondary-nav__link>.secondary-nav__icon {
	opacity: 1;
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
}

.secondary-nav__text {
	display: block;
}

a.secondary-nav__link:hover>.secondary-nav__text {
	text-decoration: underline;
}

.secondary-nav__icon+.secondary-nav__text {
	margin-left: 30px;
}

.secondary-nav__submenu .secondary-nav__icon+.secondary-nav__text {
	margin-left: 25px;
}

.sidebar-attachment {
	display: table-cell;
	width: 50%;
	padding: 20px 0;
	margin: 0;
	vertical-align: middle;
	font-size: 11px;
}

.sidebar-attachment:nth-child(odd) {
	padding-left: 15px;
	padding-right: 7px;
}

.sidebar-attachment:nth-child(even) {
	padding-left: 7px;
	padding-right: 15px;
}

.sidebar-attachment-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: table;
	width: 100%;
	background-color: #f8f8f8;
}

.sidebar-attachment__link {
	display: table;
	margin: 0 auto;
	cursor: pointer;
}

.sidebar-attachment__link,
.sidebar-attachment__link:link,
.sidebar-attachment__link:visited {
	color: #252525;
	text-decoration: none;
}

.sidebar-attachment__link:hover {
	color: #252525;
	text-decoration: underline;
}

.sidebar-attachment__icon {
	display: table-cell;
	vertical-align: top;
}

.sidebar-attachment__text {
	vertical-align: middle;
	display: table-cell;
	padding-left: 10px;
}

[class^="icon-"] {
	display: inline-block;
	vertical-align: middle;
}

[class^="icon-"]:before {
	content: '';
	display: block;
}

.icon-pdf-24x24:before {
	background-image: url(../img/ui.png);
	background-position: 0px -35px;
	width: 24px;
	height: 24px;
}

.icon-xls-29x28:before {
	background-image: url(../img/ui.png);
	background-position: -30px 0px;
	width: 29px;
	height: 28px;
}

.side-news {
	padding: 30px 10px;
}

.side-news__list {
	list-style: none;
	margin: 0 0 15px;
	padding: 0;
}

.side-news__item {
	display: block;
	margin: 0 0 20px;
	padding: 0;
}

.side-news__item:last-child {
	margin-bottom: 0;
}

.side-news__title {
	font-size: 14px;
}

.side-news__title,
.side-news__title:link,
.side-news__title:visited {
	color: #1c88d4;
	text-decoration: underline;
}

.side-news__title:hover {
	color: black;
	text-decoration: underline;
}

.side-news__teaser {
	display: block;
	margin: 5px 0 15px;
	text-indent: 0;
	font-size: 12px;
	color: black;
}

.side-news__all-link {
	font-size: 12px;
}

.side-news__all-link,
.side-news__all-link:link,
.side-news__all-link:visited {
	color: black;
	text-decoration: underline;
}

.side-news__all-link:hover {
	color: #1c88d4;
	text-decoration: underline;
}

.side-subscription {
	display: block;
	padding: 20px 15px 45px;
	border: 10px solid #F0E6D3;
	position: relative;
}

.side-subscription__text {
	text-indent: 0;
	font-size: 15px;
	color: black;
	margin: 0 0 15px;
}

.side-subscription__input {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ededed;
	background-color: #ededed;
	font-size: 13px;
	line-height: 1;
	color: #252525;
	outline: none !important;
	box-shadow: none;
}

.side-subscription__input::-moz-placeholder {
	color: #6d6d6d;
}

.side-subscription__input:-ms-input-placeholder {
	color: #6d6d6d;
}

.side-subscription__input::-webkit-input-placeholder {
	color: #6d6d6d;
}

.side-subscription__input:focus {
	border-color: lightgray;
}

.side-subscription__submit {
	width: 200px;
	margin-left: -100px;
	position: absolute;
	bottom: -10px;
	left: 50%;
}

.side-subscription__submit>button {
	display: block;
	width: 100%;
	padding: 10px 0;
	border: 1px dotted transparent;
	line-height: 1;
	font-size: 14px;
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-weight: 700;
	text-align: center;
	color: black;
	background-color: #F0E6D3;
	-webkit-border-top-right-radius: 13px;
	-moz-border-radius-topright: 13px;
	border-top-right-radius: 13px;
	-webkit-border-top-left-radius: 13px;
	-moz-border-radius-topleft: 13px;
	border-top-left-radius: 13px;
	outline: none;
	box-shadow: none;
}

.side-subscription__submit>button:hover {
	color: white;
}

.side-subscription__submit>button:active {
	box-shadow: inset 0 0px 14px 0 #cead13;
}

.side-subscription__submit>button:focus {
	border-color: #d5b004;
}

.side-subscription__form-error {
	display: none;
	margin-top: 10px;
	color: #a94442;
	font-size: 15px;
}

.has-error .side-subscription__form-error {
	display: block;
}

.side-social-subscription {
	padding: 20px 0;
	text-align: center;
	font-size: 12px;
}

.side-social-subscription__text1 {
	margin-bottom: 20px;
	text-align: center;
}

.side-social-subscription__widget {
	margin: 0 auto;
}

.breadcrumbs {
	list-style: none;
	display: table;
	margin: 0 auto 25px;
	padding: 0;
	color: #252525;
	/*font-size: 0;*/
}

.breadcrumbs__link {
	font-size: 11px;
}

.breadcrumbs__link,
.breadcrumbs__link:link,
.breadcrumbs__link:visited {
	color: #252525;
	text-decoration: underline;
}

.breadcrumbs__link:hover {
	color: #1c88d4;
	text-decoration: underline;
}

.breadcrumbs__separator {
	font-size: 11px;
	margin: 0 10px;
}

.breadcrumbs__current {
	font-size: 11px;
}

@media (min-width: 768px) {
	.breadcrumbs__link,
	.breadcrumbs__separator,
	.breadcrumbs__current {
		font-size: 12px;
	}
}

@media (min-width: 1260px) {
	.breadcrumbs {
		display: block;
		margin: 0 0 20px;
	}
	.root--category .breadcrumbs {
		margin-left: 15px;
	}
	.breadcrumbs__link,
	.breadcrumbs__separator,
	.breadcrumbs__current {
		font-size: 12px;
	}
}

.post:not(a) {
	display: table;
	width: 100%;
	margin: 0 0 30px;
	padding: 0;
}

.post:last-child {
	margin-bottom: 0;
}

.post-list {
	list-style: none;
	margin: 0 0 25px;
	padding: 0;
}

.post__image {
	display: table-row-group;
	text-align: center;
	outline: none !important;
}

.post__image>a {
	display: table;
	margin-left: auto;
	margin-right: auto;
}

.post__image>a,
.post__image>img {
	margin-top: 15px;
	margin-bottom: 15px;
}

.post__image>a>img,
.post__image>img {
	border: 5px solid #e8e8e8;
	max-width: 100%;
}

.post__image>a:hover>img,
.post__image>img:hover {
	border-color: #cfcfcf;
}

.post__title {
	display: table-header-group;
	text-align: center;
	font-size: 16px;
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-weight: 700;
}

.post__title,
.post__title:link,
.post__title:visited {
	color: #252525;
	text-decoration: none;
}

.post__title:hover {
	color: #1c88d4;
	text-decoration: none;
}

.post__teaser {
	display: table-footer-group;
	font-size: 13px;
}

.post__teaser p {
	text-indent: 0;
	margin-bottom: 15px;
}

@media (min-width: 768px) {
	.post:not(a):after {
		content: '';
		display: block;
		clear: both;
	}
	.post__image {
		display: block;
		width: 250px;
		float: left;
	}
	.post__image>a,
	.post__image>img {
		margin-top: 0;
		margin-bottom: 0;
	}
	.post__title {
		display: block;
		text-align: left;
		margin-left: 270px;
		margin-bottom: 18px;
		font-size: 22px;
	}
	.post__teaser {
		display: block;
		margin-left: 270px;
		font-size: 14px;
	}
}

@media (min-width: 1024px) {
	.post__title {
		font-size: 22px;
	}
	.post__teaser {
		font-size: 15px;
	}
}

.pagination {
	display: block;
}

.pagination:after,
.pagination__group:after {
	content: '';
	display: block;
	clear: both;
}

.pagination__group {
	list-style: none;
	padding: 0;
	margin: 0;
	display: table;
	margin: 0 auto;
}

.pagination__item {
	display: block;
	float: left;
	line-height: 26px;
}

.pagination__item+.pagination__item {
	margin-left: 5px;
}

.pagination__prev,
.pagination__next,
.pagination__number {
	display: inline-block;
	padding: 0 8px;
	height: 26px;
	line-height: 26px;
	font-size: 16px;
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-weight: 700;
}

.pagination__prev,
.pagination__prev:link,
.pagination__prev:visited,
.pagination__next,
.pagination__next:link,
.pagination__next:visited,
.pagination__number,
.pagination__number:link,
.pagination__number:visited {
	color: #252525;
	text-decoration: none;
}

.pagination__prev:hover,
.pagination__next:hover,
.pagination__number:hover {
	color: #1c88d4;
	text-decoration: none;
}

.pagination__number.active {
	background-color: #f05f40;
	cursor: default;
}

.pagination__number.active:hover {
	color: #252525;
}

.pagination__first,
.pagination__last,
.pagination__detached {
	display: inline-block;
	font-size: 11px;
}

.pagination__first,
.pagination__first:link,
.pagination__first:visited,
.pagination__last,
.pagination__last:link,
.pagination__last:visited,
.pagination__detached,
.pagination__detached:link,
.pagination__detached:visited {
	color: #252525;
	text-decoration: underline;
}

.pagination__first:hover,
.pagination__last:hover,
.pagination__detached:hover {
	color: #1c88d4;
	text-decoration: underline;
}

.pagination__detached {
	display: table;
	margin: 15px auto 0;
}

@media (min-width: 768px) {
	.pagination__group {
		float: right;
		margin-left: 0;
		margin-right: 0;
	}
	.pagination__detached {
		float: left;
		margin: 7px 0 0;
	}
	.pagination__prev,
	.pagination__next,
	.pagination__number {
		font-size: 19px;
	}
	.pagination__first,
	.pagination__last,
	.pagination__detached {
		font-size: 12px;
	}
}

.root__header {
	position: relative;
}

.root__header:after {
	content: '';
	display: block;
	height: 36px;
	position: relative;
	margin: -14px auto 0;
	z-index: 1;
	max-width: 1882px;
	background: no-repeat 50% top;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB1oAAAAkCAYAAAAguzgwAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MkFDMTY1QzM1OEM2MTFFNkEzREM5OUJCRkUzRkUxRDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MkFDMTY1QzQ1OEM2MTFFNkEzREM5OUJCRkUzRkUxRDgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyQUMxNjVDMTU4QzYxMUU2QTNEQzk5QkJGRTNGRTFEOCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyQUMxNjVDMjU4QzYxMUU2QTNEQzk5QkJGRTNGRTFEOCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmVbBpgAACBkSURBVHja7F3rkts4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);
	background-size: 100% 36px;
}

@media (min-width: 1260px) {
	.root__header {
		padding-left: 0;
		padding-right: 0;
	}
}

.root__header-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 35px;
	z-index: 2;
	/*background: url("../img/root-header-bg.jpg") no-repeat center 0%; */
}

.root__header-bg-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 35px;
	z-index: 3;
	background-image: url(../img/root__header-overlay.png);
	background-repeat: repeat-x;
}

.root__header-content {
	position: relative;
	z-index: 4;
}

.root__advantages {
	margin-top: 40px;
}

.root__article {
	margin-top: 40px;
}

@media (min-width: 1024px) {
	.root__article {
		margin-left: auto;
		margin-right: auto;
		width: 860px;
	}
}

@media (min-width: 1260px) {
	.root__article {
		margin-top: 22px;
	}
}

.root__main {
	margin-bottom: 45px;
}

.root__footer {
	background-color: #464646;
	background-image: url('../img/texture/wood4.jpg');
background-repeat: repeat-x repeat-y;
	margin-top: 70px;
}

.root__quality-assurance {
	margin-top: 50px;
	margin-bottom: 50px;
}

.root__quality-assurance .quality-assurance {
	max-width: 874px;
	margin: 0 auto;
}

.root__offer {
	background-color: #5a4e41;
	position: relative;
	margin-top: 50px;
	margin-bottom: 40px;
}

.root__offer .offer-carousel {
	margin-top: 60px;
}

@media (min-width: 1024px) {
	.root__offer .offer-carousel {
		margin-top: 80px;
	}
}

.root__offer-header {
	position: relative;
	top: -5px;
	margin: 0 auto;
	display: table;
	background-color: white;
	padding: 0 30px 10px;
	color: #252525;
	font-size: 18px;
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-weight: 700;
	-moz-border-radius: 0 0 22px 22px;
	-khtml-border-radius: 0 0 22px 22px;
	-webkit-border-radius: 0 0 22px 22px;
	border-radius: 0 0 22px 22px;
	line-height: 1;
}

.root__offer-content {
	padding-top: 60px;
	padding-bottom: 30px;
	color: white;
}

@media (min-width: 1024px) {
	.root__offer-content {
		padding-bottom: 60px;
	}
}

.main {
	display: table;
	width: 100%;
}

.main__sidebar {
	display: table-footer-group;
}

.main__content {
	max-width: 960px;
	display: table !important;
	width: 100% !important;
	table-layout: fixed !important;
}

.header-wrap {
	position: relative;
}

@media only screen and (max-width: 1280px) {
	.main__content {
		width: 100%;
		display: table-header-group;
		max-width: 100% !important;
	}
	.main__sidebar {
		display: table-footer-group;
	}
	.home .align_center_to_left,
	.home .align_center_to_right {
		float: none !important;
		right: 0 !important;
	}
	#wpadminbar {
		display: none !important;
	}
	html {
		margin-top: 0 !important;
	}
	#wpfront-notification-bar.wpfront-fixed {
		top: 0 !important;
	}

	.is_stuck {
		/* Правки "ИЗМЕНЕНО" */
		/* position: relative !important; */

		top: 0 !important;
	}
	.root__header {
		overflow: visible !important;
	}
	.header-wrap:before {
		width: 100%;
	}
	.header-wrap.is_stuck .header {
		border-bottom: 1px solid #626262 !important;
		border-color: #626262;
	}
}

/* Правки "БЫЛО" */
/* @media only screen and (min-width: 768px) {
	.is_stucks .header__slogan {
		left: 255px;
		width: 164px;
	}
} */
/*  */
/* Правки "СТАЛО" */
@media only screen and (min-width: 768px) and (max-width: 104px) {
	.is_stucks .header__slogan {
		left: 200px;
		width: 164px;
	}
}
/*  */

.is_stucks {
	top: auto !important;
}

@media only screen and (min-width: 768px) {
.is_stucks {
	padding-left: 50px;
}
}

.is_stucks .primary-nav--full .primary-nav__link+span {
	display: none !important;
}

.is_stucks .header__logo {
	width: 190px;
	top: -3px;
	height: auto;
}

.is_stucks .header__nav {
	height: 55px;
}

.is_stucks .primary-nav__link {
	height: 50px !important;
	line-height: 51px !important;
	margin-top: 0 !important;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.is_stucks .primary-nav__item,
.is_stucks .primary-nav {
	height: 50px !important;
}

.is_stucks .primary-nav__subitems .primary-nav__item,
.is_stucks .primary-nav__subitems .primary-nav {
	height: auto !important;
}

.is_stucks .primary-nav .primary-nav__item,
.is_stucks .primary-nav .primary-nav {
	height: auto !important;
}

.is_stucks .primary-nav__subitems .primary-nav__link {
	height: auto !important;
	line-height: 18px !important;
}

.primary-nav__subitems .primary-nav__link {
	height: auto !important;
	line-height: 18px !important;
}

.header__slogan,
.primary-nav__link,
.menu-item span {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.header-wrap.is_stuck .header {
	/*border-bottom: 1px solid #626262 !important;*/
}

.header-wrap.is_stucks .header {
	border-bottom: 1px solid transparent !important;
}

.main__sidebar-widget {
	margin-bottom: 20px;
}

.main__sidebar-heading {
	padding: 15px;
	border-bottom: 4px solid #F0E6D3;
	color: #252525;
	text-align: center;
	font-size: 18px;
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-weight: 700;
}

@media (min-width: 768px) {
	.main__sidebar-row {
		margin-bottom: 40px;
	}
	.main__sidebar-row:after {
		content: '';
		display: block;
		clear: both;
	}
	.main__sidebar-row .main__sidebar-widget {
		margin-bottom: 0;
	}
	.main__sidebar-widget--offers {
		width: 270px;
		float: left;
	}
	.main__sidebar-widget--news {
		margin-left: 310px;
	}
	.main__sidebar-widget--subscription {
		/*width: 690px; orig ogran*/
		margin-left: auto;
		margin-right: auto;
	}
	.main__content .pagination {
		margin-bottom: 15px;
	}
}

@media (min-width: 1260px) {
	.main__sidebar-row {
		margin-bottom: 0;
	}
	.main__sidebar-row:after {
		display: none;
	}
	.main__sidebar-row .main__sidebar-widget {
		margin-bottom: 20px;
	}
	.main__sidebar-widget--offers {
		width: auto;
		float: none;
	}
	.main__sidebar-widget--news {
		margin-left: 0;
	}
	.main__sidebar-widget--subscription {
		width: auto;
		margin-left: 0;
		margin-right: 0;
	}
	.main__sidebar {
		display: table-cell;
		width: 270px;
		min-width: 270px;
		max-width: 270px;
		vertical-align: top;
	}
	.main__content {
		display: table-cell;
		padding: 20px 40px 0 0;
		vertical-align: top;
	}
	.main__content .pagination {
		margin-bottom: 0;
	}
	.main__sidebar+.main__content {
		padding-right: 0;
		padding-left: 40px;
	}
}

.quality-assurance {
	display: table;
	width: 100%;
}

.quality-assurance__first {
	display: table-row-group;
	text-align: center;
}

.quality-assurance__first>p {
	margin: 0 0 15px;
	text-indent: 0;
}

.quality-assurance__second {
	display: table-header-group;
	text-align: center;
}

.quality-assurance__third {
	display: table-footer-group;
	text-align: center;
}

.quality-assurance__third>p {
	margin: 0;
	text-indent: 0;
}

.quality-assurance__badge {
	display: block;
	max-width: 100%;
	margin: 0 auto 15px;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

@media (min-width: 768px) {
	.quality-assurance__first,
	.quality-assurance__second,
	.quality-assurance__third {
		display: table-cell;
		vertical-align: top;
	}
	.quality-assurance__first>p,
	.quality-assurance__third>p {
		margin: 0;
		padding: 0;
	}
	.quality-assurance__first {
		width: 50%;
		padding: 15px 40px 0 0;
		text-align: right;
		vertical-align: top;
	}
	.quality-assurance__second {
		margin: 0 auto;
	}
	.quality-assurance__third {
		width: 50%;
		padding: 15px 0 0 40px;
		text-align: left;
		vertical-align: top;
	}
	.quality-assurance__badge {
		margin: 0;
		max-width: none;
	}
}

.offer-card {
	font-size: 13px;
	width: 190px;
	min-height: 250px;
	border: 1px solid #b7a9a3;
	position: relative;
	padding: 50px 15px 15px;
	text-align: center;
	white-space: normal;
	-webkit-transition: color 0.1s ease-in, border-color 0.1s ease-in;
	-moz-transition: color 0.1s ease-in, border-color 0.1s ease-in;
	transition: color 0.1s ease-in, border-color 0.1s ease-in;
}

.offer-card--active,
.offer-card:hover {
	border-color: #F0E6D3;
	color: #F0E6D3;
	-webkit-transition: color 0.1s ease-in, border-color 0.1s ease-in;
	-moz-transition: color 0.1s ease-in, border-color 0.1s ease-in;
	transition: color 0.1s ease-in, border-color 0.1s ease-in;
}

.offer-card-list .offer-card {
	margin: 0;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}

.offer-card-list .offer-card+.offer-card {
	margin-left: 30px;
}

@media (min-width: 768px) {
	.offer-card-list .offer-card,
	.offer-card-list .offer-card+.offer-card {
		margin: 50px 15px 0;
	}
}

.offer-card-list {
	position: relative;
}

.offer-card-list__frame {
	position: relative;
	overflow-x: hidden;
	margin-top: 0;
}

@media (min-width: 768px) {
	.offer-card-list__frame {
		margin-top: -50px;
		overflow-x: visible;
	}
}

.offer-card-list__tape {
	list-style: none;
	margin: 0;
	padding: 16px 0 0;
	font-size: 0;
	white-space: nowrap;
	position: relative;
}

@media (min-width: 768px) {
	.offer-card-list__tape {
		text-align: center;
		white-space: normal;
		padding-top: 0;
	}
}

.offer-card-list__triad {
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
}

.offer-card-list__triad+.offer-card-list__triad {
	margin-left: 30px;
}

@media (min-width: 768px) {
	.offer-card-list__triad+.offer-card-list__triad {
		margin-left: 0;
	}
}

.offer-card-list__left,
.offer-card-list__right {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 40px;
	pointer-events: none;
}

@media (min-width: 768px) {
	.offer-card-list__left,
	.offer-card-list__right {
		display: none;
	}
}

.offer-card-list__left {
	left: 0;
	background: #5a4e41;
	background: -moz-linear-gradient(left, #5a4e41, rgba(121, 93, 82, 0));
	background: -webkit-linear-gradient(left, #5a4e41, rgba(121, 93, 82, 0));
	background: -o-linear-gradient(left, #5a4e41, rgba(121, 93, 82, 0));
	background: -ms-linear-gradient(left, #5a4e41, rgba(121, 93, 82, 0));
	background: linear-gradient(to right, #5a4e41, rgba(121, 93, 82, 0));
}

.offer-card-list--has-left .offer-card-list__left {
	display: block;
}

.offer-card-list__right {
	right: 0;
	background: rgba(121, 93, 82, 0);
	background: -moz-linear-gradient(left, rgba(121, 93, 82, 0), #5a4e41);
	background: -webkit-linear-gradient(left, rgba(121, 93, 82, 0), #5a4e41);
	background: -o-linear-gradient(left, rgba(121, 93, 82, 0), #5a4e41);
	background: -ms-linear-gradient(left, rgba(121, 93, 82, 0), #5a4e41);
	background: linear-gradient(to right, rgba(121, 93, 82, 0), #5a4e41);
}

.offer-card-list--has-right .offer-card-list__right {
	display: block;
}

.offer-card__normal-icon,
.offer-card__active-icon {
	background-color: #5a4e41;
	width: 76px;
	height: 60px;
	position: absolute;
	top: -20px;
	left: 50%;
	margin-left: -38px;
	text-align: center;
	line-height: 1;
}

/*
.offer-card__normal-icon>img,
.offer-card__active-icon>img {
	border: 0;
	max-width: 100%;
}

*/
.offer-card__normal-icon>img,
.offer-card__active-icon>img {
border: 3px solid #F0E6D3;
max-width: 100%;
border-radius: 50%;
}
.offer-card__normal-icon {
	z-index: 2;
}

.offer-card__active-icon {
	z-index: 3;
	opacity: 0;
	-webkit-transition: opacity 0.1s ease-in;
	-moz-transition: opacity 0.1s ease-in;
	transition: opacity 0.1s ease-in;
}

.offer-card--active .offer-card__active-icon,
.offer-card:hover .offer-card__active-icon {
	opacity: 1;
	-webkit-transition: opacity 0.1s ease-in;
	-moz-transition: opacity 0.1s ease-in;
	transition: opacity 0.1s ease-in;
}

.offer-card__caption {
	font-size: 17px;
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-weight: 700;
	min-height: 50px;
	margin-bottom: 15px;
	margin-top: 10px;
}

.offer-carousel {
	position: relative;
	cursor: default;
}

.offer-carousel__prev,
.offer-carousel__next {
	position: absolute;
	top: 50%;
	width: 20px;
	height: 36px;
	margin-top: -36px;
	cursor: pointer;
}

.offer-carousel__prev:before,
.offer-carousel__prev:after,
.offer-carousel__next:before,
.offer-carousel__next:after {
	display: block;
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	z-index: 1;
}

.offer-carousel__prev:before,
.offer-carousel__next:before {
	-webkit-transition: border-color 0.1s ease-in;
	-moz-transition: border-color 0.1s ease-in;
	transition: border-color 0.1s ease-in;
}

.offer-carousel__prev:hover:before,
.offer-carousel__next:hover:before {
	-webkit-transition: border-color 0.1s ease-in;
	-moz-transition: border-color 0.1s ease-in;
	transition: border-color 0.1s ease-in;
}

.offer-carousel__prev:after,
.offer-carousel__next:after {
	z-index: 2;
}

.offer-carousel__prev {
	left: 5px;
}

.offer-carousel__prev:before,
.offer-carousel__prev:after {
	border-left: none;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	border-right: 20px solid #fefefe;
	left: 0;
}

.offer-carousel__prev:after {
	left: 2px;
	border-right-color: #5a4e41;
}

.offer-carousel__prev:hover:before {
	border-right-color: #F0E6D3;
}

.offer-carousel__next {
	right: 5px;
}

.offer-carousel__next:before,
.offer-carousel__next:after {
	float: right;
	border-right: none;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	border-left: 20px solid #fefefe;
	right: 0;
}

.offer-carousel__next:after {
	right: 2px;
	border-left-color: #5a4e41;
}

.offer-carousel__next:hover:before {
	border-left-color: #F0E6D3;
}

.offer-carousel__frame {
	position: relative;
	margin: 0 50px;
	overflow: hidden;
}

@media (min-width: 768px) {
	.offer-carousel__frame {
		margin: 0 100px;
	}
}

.offer-carousel__tape {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	font-size: 0;
	line-height: 1;
}

.offer-carousel__slide {
	display: inline-block;
	width: 100%;
	white-space: normal;
	font-size: 13px;
	line-height: 1.42857;
	overflow: hidden;
	vertical-align: middle;
	text-align: center;
}

@media (min-width: 768px) {
	.offer-carousel__slide {
		text-align: left;
	}
}

.offer-carousel__image {
	text-align: center;
	position: relative;
}

.offer-carousel__image::before {
    content: '';
    position: absolute;
    background: url('../images/slider-center-border.png') no-repeat;
    width: 100%;
    height: 350px;
    top: 50px;
    left: 0;
    z-index: 1;
}


.offer-carousel__image > div {
    position: absolute;
    width: 100%;
    top: 22px;
    left: -14px;
    margin: 0 auto;
    right: 0;
    top: 72px;
    overflow: hidden;
    height: auto;
}

.offer-carousel__image>img {
	/*display: inline-block;
	max-width: 100%;
	height: auto;
	text-align: center;*/
	display: inline-block;
max-width: 100%;
height: auto;
text-align: center;

}




@media (max-width: 1246px) {

		.offer-carousel__image > div {
    
    padding-top: 50px;}

		.offer-carousel__image::before {
			background:none;
			display: none;
		}
		.frame__object {
			border: 4px solid #F0E6D3;
			width: 100%;
			max-width: 400px;
		}

		.offer-img-frame__object {
		    padding-top: 55px;
		}

		.offer-carousel__image {
		    text-align: center;
		    position: relative;
		    width: 100%;
		    height: 350px;
		}	
}

@media (max-width: 1024px) { 
			.offer-carousel__image > div{
			padding-top: 50px;
			position: relative;
			padding: 0;
			left: auto;
			}
}
@media (max-width: 767px) { 
		.offer-carousel__image {
		    height: auto;

		}

		.offer-carousel__image > div {
		    position: relative;
			width: 100%;
			top: auto;
			margin: 0 auto;
			overflow: hidden;
			height: auto;
			padding: 0;
			left: auto;
			right: auto;
		}
 }

@media (max-width: 446px){

	.offer-carousel__image {
       height: auto;
		}
	.offer-carousel__image > div {
   position: relative;
width: 100%;
top: auto;
left: auto;
right: 0;
height: auto;
padding: 0;
}
}







@media (min-width: 1024px) {
	.offer-carousel__image {
		display: table-cell;
		vertical-align: middle;
		width: 50%;
		padding-right: 35px;
		text-align: center;
		
	}
}

@media (min-width: 1024px) {
	.offer-carousel__text {
		display: table-cell;
		vertical-align: top;
		width: 50%;
		padding-left: 35px;
	}
}

.offer-carousel__caption {
	font-size: 22px;
	font-family: "Open Sans Condensed", Arial, Verdana, sans-serif;
	font-weight: 700;
	color: #F0E6D3;
	line-height: 1.1;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.offer-carousel__caption {
		font-size: 35px;
	}
}

@media (min-width: 1024px) {
	.offer-carousel__caption {
		margin-bottom: 30px;
	}
}

.offer-carousel__description {
	line-height: 1.294;
	font-size: 14px;
}

.offer-carousel__description>p {
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.offer-carousel__description {
		font-size: 17px;
	}
}

@media (min-width: 1024px) {
	.offer-carousel__description>p {
		margin-bottom: 25px;
	}
}

.offer-carousel__footer {
	margin-top: 35px;
	font-size: 0;
}

.offer-carousel__button-wrap {
	display: inline-block;
	margin-right: 30px;
	margin-bottom: 10px;
}

.offer-carousel__button-wrap:last-child {
	margin-right: 0;
}

@media (min-width: 768px) {
	.offer-carousel__button-wrap {
		margin-bottom: 0;
	}
	.offer-carousel__button-wrap:after {
		content: '';
		display: block;
		height: 20px;
		background: rgba(138, 111, 101, 0.37);
		background: -moz-linear-gradient(top, rgba(138, 111, 101, 0.37), rgba(138, 111, 101, 0));
		background: -webkit-linear-gradient(top, rgba(138, 111, 101, 0.37), rgba(138, 111, 101, 0));
		background: -o-linear-gradient(top, rgba(138, 111, 101, 0.37), rgba(138, 111, 101, 0));
		background: -ms-linear-gradient(top, rgba(138, 111, 101, 0.37), rgba(138, 111, 101, 0));
		background: linear-gradient(to bottom, rgba(138, 111, 101, 0.37), rgba(138, 111, 101, 0));
	}
}

.offer-carousel__button {
	display: inline-block;
	padding: 15px 25px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: normal;
	font-size: 14px;
	color: white;
	line-height: 1;
	/*background-color: #8a6f65;  коричневый*/
	background-color: #EABC04;
	/*желтый */
	border: 0;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: background-color 0.1s ease-in;
	-moz-transition: background-color 0.1s ease-in;
	transition: background-color 0.1s ease-in;
}

.offer-carousel__button:link,
.offer-carousel__button:visited {
	color: white;
	text-decoration: none;
}

.offer-carousel__button:hover {
	color: white;
	text-decoration: none;
	/*background-color: #977c71;  коричневый*/
	background-color: #E8A004;
	/* желтый */
	-webkit-transition: background-color 0.1s ease-in;
	-moz-transition: background-color 0.1s ease-in;
	transition: background-color 0.1s ease-in;
}

.offer-carousel__button:focus {
	outline: 1px dashed #6d574f;
	outline-offset: -3px;
}

.offer-carousel__button:active {
	box-shadow: inset 0 3px 14px rgba(0, 0, 0, 0.4);
}

.offer-carousel__button--primary {
	background-color: #97BC51;
	/* зеленый*/
	/* background-color: #8399C1; синий */
}

.offer-carousel__button--primary:hover {
	/*background-color: #6982AD; синий */
	background-color: #84A540;
	/* зеленый*/
}

}

html {
	background: #fff;
	font-size: 100%;
}

body {
	background: transparent;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: normal;
	font-size: 13px;
	color: #252525;
}

* {
	box-sizing: border-box;
}

p {
	margin-bottom: 10px;
}

h5,
.h5,
h6,
.h6 {
	font-weight: normal;
}

h1,
.h1,
h2,
.h2,
h3 {
	margin-top: 20px;
	margin-bottom: 10px;
}

.hidden {
	display: none !important;
}

/* Comments 

html {
	background: #fff;
	font-size: 100%; }

body {
	background: transparent;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: normal;
	font-size: 13px;
	color: #252525; }

* {
	box-sizing: border-box; }

p {
	margin-bottom: 10px; }

h5, .h5, h6, .h6 {
	font-weight: normal; }

h1, .h1, h2, .h2, h3 {
	margin-top: 20px;
	margin-bottom: 10px; }*/

.hidden {
	display: none !important;
}

.wrap-title-com:after {
	content: "";
	display: block;
	clear: both;
}

.wrap-title-com .title-hcomments {
	font-size: 20px;
	line-height: 34px;
	float: left;
	color: #f0323e;
	font-weight: 600;
	font-style: italic;
}

.sort-comments {
	float: right;
	line-height: 34px;
	font-size: 12px;
	color: #8d8d8d;
	font-weight: 600;
	padding-left: 80px;
	position: relative;
	width: 125px;
}

.sort-comments span.neam-sort {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}

.sort-comments a {
	display: block;
	padding: 5px 7px;
	width: 110px;
	color: #8f8f8f;
	font-weight: 400;
	border: 1px solid #f0323e;
	line-height: 22px;
	top: 34px;
	border-top: 0;
	left: auto;
	right: 0;
	position: absolute;
	display: none;
	background: #fff;
}

.sort-comments a.sel {
	position: absolute;
	right: 0;
	top: 0;
	left: auto;
	border-top: 1px solid #f0323e;
	display: block;
}

.sort-comments:hover a {
	display: block;
}

.sort-comments a:hover {
	text-decoration: none;
	background: #f0323e;
	color: #fff;
}

.sort-comments a.sel:after {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid #f0323e;
	content: "";
	display: block;
	position: absolute;
	right: 7px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.sort-comments a.sel:hover:after {
	border-top: 6px solid #ffffff;
}

ul.list-st-comments>li.hide-comment {
	display: none;
}

.wrap-title-com .title-hcomments:after {
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-left: 10px solid #f0323e;
	border-bottom: 5px solid transparent;
	content: "";
	display: inline-block;
	vertical-align: middle;
	margin-left: 7px;
}

ul.list-st-comments {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

ul.list-st-comments li {
	padding: 0;
	margin: 0 !important;
	list-style: none !important;
	word-break: break-word;
}

ul.list-st-comments li:after {
	content: "";
	display: block;
	clear: both;
}

.wrap-title-com {
	padding-bottom: 20px;
	border-bottom: 1px solid #f4f4f4;
}

ul.list-st-comments li.sortli .wrap-comment-st {
	padding: 15px 0 !important;
	margin-bottom: 0 !important;
	border-bottom: 1px solid #f4f4f4;
	padding-left: 70px !important;
	position: relative;
	min-height: 58px;
	word-break: break-word;
}

ul.list-st-comments li.sortli .wrap-comment-st .gravatar {
	position: absolute;
	left: 0;
	top: 10px;
	overflow: hidden;
	width: 50px;
	height: 50px;
	border: 1px solid #f4f4f4;
	padding: 3px;
	-webkit-border-radius: 50px;
	/*Safari, Chrome*/
	-moz-border-radius: 50px;
	/*Firefox*/
	border-radius: 50px;
}

ul.list-st-comments li.sortli .wrap-comment-st .gravatar img {
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

ul.list-st-comments li.sortli .wrap-comment-st .n-autor {
	font-size: 16px;
	line-height: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

ul.list-st-comments li.sortli .wrap-comment-st .txt_com {
	font-size: 13px;
	line-height: 16px;
	margin-bottom: 5px;
}

ul.list-st-comments li.sortli .wrap-comment-st .txt_com p:last-child {
	margin-bottom: 0;
}

ul.list-st-comments li.sortli .wrap-comment-st .txt_com p {
	margin-bottom: 12px;
}

ul.list-st-comments li.sortli .wrap-comment-st .comment-meta,
ul.list-st-comments li.sortli .wrap-comment-st .reply {
	float: none !important;
	display: inline-block;
	vertical-align: middle;
}

ul.list-st-comments li.sortli .wrap-comment-st .meta-comment span {
	display: block;
	font-size: 11px;
	line-height: 14px;
	color: #999999;
}

ul.list-st-comments li.sortli .wrap-comment-st .meta-comment span.comment-reply-link {
	cursor: pointer;
	color: #0e79bd;
	font-size: 12px;
}

ul.list-st-comments li.sortli .wrap-comment-st .meta-comment span.comment-reply-link:hover {
	text-decoration: underline;
}

ul.list-st-comments li ul {
	margin: 0 !important;
	margin-left: 40px !important;
	padding: 0 !important;
}

ul.list-st-comments li.sortli .wrap-comment-st.administrator {
	border: 1px solid #acd474;
	padding: 10px !important;
	padding-left: 80px !important;
	margin: 20px 0;
	background: #fff;
	position: relative;
	/*z-index: 50;*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

ul.list-st-comments li.sortli .wrap-comment-st.administrator .gravatar {
	left: 10px;
}

ul.list-st-comments li.sortli .wrap-comment-st.administrator:before {
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 10px solid #ffffff;
	content: "";
	position: absolute;
	left: 30px;
	top: -10px;
	z-index: 22;
}

ul.list-st-comments li.sortli .wrap-comment-st.administrator:after {
	width: 0;
	height: 0;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-bottom: 11px solid #acd474;
	content: "";
	position: absolute;
	left: 29px;
	top: -11px;
}

ul.list-st-comments {
	margin-bottom: 25px !important;
}

.js-link {
	display: block;
	text-align: center;
}

.js-link a {
	display: block;
	width: 240px;
	margin: auto;
	font-size: 20px;
	line-height: 34px;
	color: #f0323e;
	font-weight: 600;
	border: 1px solid #f0323e;
	margin-bottom: 10px;
}

.js-link a.loud-slink {
	font-size: 14px;
	line-height: 16px;
	color: #303030;
	border: 0;
}

.js-link a.loud-clink:hover {
	background: #f0323e;
	color: #fff;
	text-decoration: none;
}

p.message {
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 15px !important;
	color: #ef2626;
}

.form-name {
	background: #7ab026;
	padding: 8px 15px;
	color: #fff;
	margin-bottom: 15px;
	display: inline-block;
}

.form-name a {
	color: #fff;
}

#respond {
	padding: 0 !important;
	margin: 10px 0 !important;
}

#respond .textarea textarea {
	width: 100%;
	padding: 10px;
	height: 150px;
	background: #FCFCFC;
	border: 1px solid #e0e6ea;
	color: #000;
	font-size: 13px;
	line-height: 14px;
	font-family: arial;
	margin: 0 !important;
}

#respond .textarea,
#respond .input {
	margin-bottom: 10px;
	margin-right: 22px;
}

.footer-inputs .submit-input {
	float: right;
	width: 30%;
	text-align: right;
}

.footer-inputs .custom-field-wp {
	float: left;
	width: 70%;
}

.footer-inputs .submit-input input#submit {
	background: url('../images/cnopka__input1.png') repeat-x scroll 0 0 transparent !important;
	border: medium none !important;
	border-radius: 5px !important;
	clear: both !important;
	color: #FFF !important;
	font: 11px Tahoma !important;
	height: 38px !important;
	width: 137px !important;
	text-decoration: none !important;
	margin: 0 3px 0 0 !important;
	box-shadow: none;
}

.footer-inputs .submit-input input#submit:hover {
	text-decoration: none !important;
	background: url('../images/cnopka__input1.png') repeat-x scroll 0 -38px rgba(0, 0, 0, 0) !important;
	color: #FFFFCC !important;
	border: 0 solid #FFFFFF !important;
}

#comments *,
.comment-form * {
	box-sizing: content-box;
}

.wysija-after-comment {
	float: left;
	margin: 0 0 5px 4px !important;
	font-size: 11px;
	font-family: Tahoma;
	vertical-align: middle;
}

.footer-inputs * {
	font-weight: 400;
}

#respond .input input {
	width: 192px;
	margin: 0;
	background: #FCFCFC;
	border: 1px solid #e0e6ea;
	color: #000;
	font-size: 13px;
	line-height: 14px;
	font-family: arial;
	height: 32px;
	padding: 0 10px;
}

#respond .input {
	float: left;
	margin-left: 8px;
	margin-right: 0;
}

#respond .input.author {
	margin-left: 0;
}

p.comment-form-subscriptions {
	margin: 0 0 5px 4px !important;
	font-size: 11px;
	font-family: Tahoma;
	vertical-align: middle;
	clear: both;
}

p.comment-form-subscriptions input#subscribe-reloaded {
	margin: 0;
	width: 25px !important;
}

.stcr-form.hidden {
	display: block !important;
}

#respond:after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (max-width: 670px) {
	#respond .input input {
		width: 192px;
		margin: 0;
		background: #FCFCFC;
		border: 1px solid #e0e6ea;
		color: #000;
		font-size: 13px;
		line-height: 14px;
		font-family: arial;
		height: 32px;
		padding: 0 10px;
	}
	#respond .input {
		float: left;
		margin-left: 8px;
		margin-right: 0;
	}
	#respond .input.author {
		margin-left: 0;
	}
	#respond .input {
		margin-left: 0;
		float: none;
	}
	.footer-inputs .custom-field-wp {
		float: none;
		width: auto;
	}
	.footer-inputs .submit-input {
		float: none;
		width: auto;
		text-align: left;
		clear: both;
	}
}

@media screen and (max-width: 767px) {
	.neam-sort {
		display: none;
	}
	.wrap-title-com .title-hcomments {
		font-size: 15px;
	}
}

body {
	overflow-x: hidden;
}

@media screen and (max-width: 870px) {
	.is_stucks .primary-nav__link {
		height: auto !important;
		line-height: 1 !important;
	}
	.is_stucks .header__nav {
		height: 95px;
	}
	.is_stucks .header__logo {
		width: 250px;
		height: 70px;
		top: 7px;
	}
	.is_stucks .primary-nav__item,
	.is_stucks .primary-nav {
		height: 97px !important;
	}
	.header-wrap.header-wrap_sticky.is_stuck.is_stucks:before {
		opacity: 0;
	}
	.header .header__slogan {
		width: auto;
	}
}

@media (max-width: 350px) {
	.is_stucks .header__logo {
		width: 190px;
		top: 0;
		left: 0;
	}
}
.related {
    float: left;
    width: 100%;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	z-index: 3 !important;
}
.nymbus-cart {
	position: absolute !important;
	right: 0;

}
@media (max-width: 767px) {
		.nymbus-cart {
			right: 50px;
			top: 38%;
		}
	}
	@media (max-width: 350px) {
		.nymbus-cart {
			right: 45px;
			top: 18px;
		}
	}
.nymbus-cart__count {
	position: absolute;
	top: -40%;
	right: -40%;
	background-color: #f05f40;
	border-radius: 50%;
	text-align: center;
	min-width: 25px;
	min-height: 25px;
	padding: 5px;
	color: #fff;
	font-weight: 700;
}

/* Scrolling Вверх */

.b-top {
z-index:2600;
position:fixed;
right: 40px;
bottom: 80px;
width: 100%;
margin-right: 20px;
opacity: 0.5;
filter:alpha(opacity=50);
}

.b-top:hover {opacity:1;filter:alpha(opacity=100);cursor:pointer;}
.b-top-but {
z-index:2600;
position:absolute;
display:block;
bottom: -30px;
right: -50px;
margin: 0px;
padding:32px 12px 4px;
color:white;
background:#777 url('../images/top-button.png') no-repeat 50% 11px;
border-radius:7px;
}




/* ---------------CART--in--header--------------------- */


.nymbus-cart {
    position: fixed !important;
    right: 40px;
    top: 109px;
    width: 60px;
    height: 60px;
    background-color: #b47ca5;
    border-radius: 3px;
}

.is_stucks .nymbus-cart {
    top: 109px;
}

.nymbus-cart__placeholder {
	position: relative;
}

.nymbus-cart__count {
    position: absolute;
    top: 1px;
    right: 3px;
    background-color: #b47ca5;
    border-radius: 50%;
    text-align: center;
    min-width: 25px;
    min-height: 25px;
    padding: 5px;
    color: #fff;
    font-weight: 700;
}

.nymbus-cart__img {
	width: 40px;
    height: 40px;
    position: absolute;
    top: 19px;
    left: 9px;
}

.nymbus-cart__img svg {
	fill: #fff;
}

@media (max-width: 1260px) {
.nymbus-cart {
    right: 1px;
    top: 109px;
}

}

@media (max-width: 767px){
.nymbus-cart {
    right: 40px;
    top: 109px;
}
}

@media (max-width: 600px) {
.nymbus-cart {
    right: 59px;
    top: 12px
    background-color: transparent;
}

@media (max-width:480px) {
.nymbus-cart {
    right: 52px;
    top: 1px;
    background-color: transparent;
}

.header__logo {
    width: 71%;
}

.is_stucks .nymbus-cart {
    top: 4px;
}

}