@font-face {
    font-family: 'proxima_nova_ltlight';
    src: url('fonts/proximanova-light-webfont.eot');
    src: url('fonts/proximanova-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/proximanova-light-webfont.woff') format('woff'),
         url('fonts/proximanova-light-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'proxima_nova_rgregular';
    src: url('fonts/proximanova-reg-webfont.eot');
    src: url('fonts/proximanova-reg-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/proximanova-reg-webfont.woff') format('woff'),
         url('fonts/proximanova-reg-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'proxima_nova_bold';
	src: url('fonts/ProximaNova-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

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

html, body {height:100%;}

body {
	margin: 0;
	color: #000;
	font-family: 'proxima_nova_rgregular';
}

.final-blob {
	clear: both;
	height: 40px;
}

.clear {
	clear: both;
}

a {
	position: relative;
	color: #000;
	text-decoration: none;
}
a span:after {
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;

	width: 0;
	height: 1px;
	padding: 0;

	background-color: #a3222e;
	content: "";

	transition: width 0.3s ease;
	-webkit-transition: width 0.3s ease 0s;
}
a.underline {
	text-decoration: underline;
}
a:hover {
	color: #a3222e;
}
a:hover span:after {
	width: 100%;
}
.red {
	color: #a3222e;
}
.gray {
	color: #adadad;
}

h1 {
	color: #000;
	font-size: 36pt;
	font-family: 'proxima_nova_ltlight';
	text-transform: uppercase;
	font-weight: normal;
}
h1 a {
	text-decoration: none;
}
h1 a:hover {
	color: #a3222e;
}
h2 {
	color: #000;
	font-size: 24pt;
	font-family: 'proxima_nova_ltlight';
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: 0.05em;
}
h2 a {
	text-decoration: none;
}
h2 a:hover {
	color: #a3222e;
}
h3 {
	color: #000;
	font-size: 12pt;/* 13.5 */
	font-family: 'proxima_nova_rgregular';
	text-transform: uppercase;
	font-weight: normal;
}
h3 a {
	text-decoration: none;
}
h3 a:hover {
	color: #a3222e;
}
h4 {
	color: #000;
	font-size: 10.5pt;
	font-family: 'proxima_nova_rgregular';
	text-transform: uppercase;
	font-weight: normal;
}
h4 a {
	text-decoration: none;
}
h4 a:hover {
	color: #a3222e;
}
h5 {
	color: #000;
	font-size: 9pt;
	font-family: 'proxima_nova_rgregular';
	text-transform: uppercase;
}
h5.adress {
	color: #7b7b7b;
	font-size: 9pt;
	font-family: 'proxima_nova_rgregular';
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: 0.1em;
}
span.date {
	color: #7b7b7b;
	font-size: 12pt;
	font-family: 'proxima_nova_ltlight';
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
a span.date:after {
	display: none;
}
span.date-small {
	color: #7b7b7b;
	font-size: 9pt;
	font-family: 'proxima_nova_rgregular';
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
p {
	color: #000;
	font-size: 12pt;
	font-family: 'proxima_nova_rgregular';
	line-height: 1.5em;
}
ul, ol {
}
li {
	color: #000;
	font-family: "proxima_nova_rgregular";
	font-size: 12pt;
	line-height: 1.5em;
	margin: 1.5em 0;
}


hr {
	display: block;
	width: 100%;
	border: 0;
	height: 1px;
	margin: 20px auto;
	/* background-color: #e3e3e3; */
	background-color: #ccc;
}

.float-left {
	float: left;
}
.float-right {
	float: right;
}

.arrow {
	position: relative;
	position: absolute;

	display: block;
	height: 61px;
	width: 17px;

	top: 50%;
	margin-top: -30px;

	cursor: pointer;
	z-index: 1;
}
.arrow i {
}
.arrow i:after,
.arrow i:before {
	/* position: absolute;	top: 50%; */
	display: block;

	width: 100%;
	height: 1.4px;

	background-color: #a3222e;
	content: "";

	padding: 0;

	transition: transform 0.3s ease;
	-webkit-transition: -webkit-transform 0.3s ease 0s;
}

.arrow i:before {
	margin-top: 30px;

	transform: translateY(0px) rotate(-45deg);
	-webkit-transform: translateY(0px) rotate(-45deg);
}
.arrow:hover i:before {
	transform: translateY(0px) rotate(-35deg);
	-webkit-transform: translateY(0px) rotate(-35deg);
}

.arrow i:after {
	transform: translateY(0px) rotate(45deg);
	-webkit-transform: translateY(0px) rotate(45deg);
}
.arrow:hover i:after {
	transform: translateY(0px) rotate(35deg);
	-webkit-transform: translateY(0px) rotate(35deg);
}

.show-more {
	position: relative;
	display: inline;
	text-transform: uppercase;
	padding-left: 10px !important;
	/* text-decoration: none; */
	font-size: 10pt;
}
.show-more:hover {
}
.show-more span {
	position: relative;
}

.show-more i:after,
.show-more i:before {
	position: absolute;	/*	top: 50%; */
	top: 2px;
	left: 0;
	display: block;

	height: 8px;
	width: 1.4px;

	background-color: #a3222e;
	content: "";

	padding: 0;

	transition: transform 0.3s ease;
	-webkit-transition: -webkit-transform 0.3s ease 0s;
}

.show-more i:before {
	transform: translateY(0px) rotate(-45deg);
	-webkit-transform: translateY(0px) rotate(-45deg);
}
.show-more:hover i:before {
	transform: translateY(0px) rotate(-55deg);
	-webkit-transform: translateY(0px) rotate(-55deg);
}

.show-more i:after {
	margin-top: 5px;
	transform: translateY(0px) rotate(45deg);
	-webkit-transform: translateY(0px) rotate(45deg);
}
.show-more:hover i:after {
	transform: translateY(0px) rotate(55deg);
	-webkit-transform: translateY(0px) rotate(55deg);
}

.next-arrow {
	right: 0;
	padding-right: 2px;
	/* right: 37px; */
	/* float: right; */
}
.prev-arrow {
	left: 0;
	/* left: 37px; */
	/* float: left; */
}
.next-arrow i:after,
.next-arrow i:before {
	float: right;
	transform-origin: 105% 50%;
	-webkit-transform-origin: 105% 50%;
}
.prev-arrow i:after,
.prev-arrow i:before {
	float: left;
	transform-origin: 1px 50%;
	-webkit-transform-origin: 1px 50%;
}

.white-back {
	background-color: #fff;

	transition: padding 0.3s ease;
	-webkit-transition: padding 0.3s ease;
}
.white-back.next-arrow {
	padding-left: 13px;
	border-radius: 4px 0 0 4px;
}
.white-back.prev-arrow {
	padding-right: 13px;
	border-radius: 0 4px 4px 0;
}
.white-back.next-arrow:hover {
	padding-right: 13px;
}
.white-back.prev-arrow:hover {
	padding-left: 13px;
}

.animated {
	position: relative;

	padding-left: 32px;
	color: #000;
	text-transform: uppercase;
	font-size: 10pt;

	cursor: pointer;
	text-decoration: none;
}

.animated a:focus {
	-moz-outline: none;
	outline: none;
	ie-dummy: expression(this.hideFocus=true);
}
.animated:hover {
	color: #a3222e;
}
.animated .ul {
	position: absolute;

	display: block;
	height: 1px;

	bottom: 0;
	left: 32px;
	right: 100%;

	background-color: #a3222e;
}
.animated .ic {
	position: absolute;

	display: block;
	width: 24px;
	height: 24px;

	left: 0;
	top: 50%;
	margin-top: -12px;

	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: transparent;
/* right 30px bottom 30px */
}

.animated.icon-01 .ic {
	background-image: url("/local/templates/virs/img/icon-01.png");
}
.animated.icon-02 .ic {
	background-image: url("/local/templates/virs/img/icon-02.png");
}
.animated.icon-03 .ic {
	background-image: url("/local/templates/virs/img/icon-03.png");
}
.animated.icon-04 .ic {
	background-image: url("/local/templates/virs/img/img/icon-04.png");
}

.slide-control {
	position: absolute;
	bottom: 15px;
	right: 15px;

	display: block;
	margin: 0;
	padding: 0;
	text-align: center;

	z-index: 10;
}
.slide-control li {
	position: relative;

	display: inline-block;
	list-style: none;
	list-style-image: none;

	padding: 0;
	margin: 3px;
}
.slide-control li a {
	position: relative;
	display: inline-block;
	cursor: pointer;
	color: #fff;
	text-decoration: none;

	font-size: 12pt;
}
.slide-control-dots {
	left: 0;
	right: 0;
}
.slide-control-dots li {
	margin: 0 4px;
}
.slide-control-dots li a {
	width: 8px;
	height: 8px;
	border: 1px solid #c4c4c4;
	border-radius: 5px;
	line-height: 8px;

	transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
}
.slide-control-dots li a.active,
.slide-control-dots li a:hover {
	border-color: #a3222e;
}
.slide-control-dots li a.active {
	background-color: #a3222e;
}
.slide-control-dots li a:hover {
	transform: scale(1.3);
	-webkit-transform: scale(1.3);
}
.slide-control-dots li a u {
	position: absolute;
	left: 0;
	height: 8px;
	width: 100% !important;
	height: 100%;
	border-radius: 4px;
	background-color: #a3222e;
	text-decoration: none;
}

.slide-control-digits li {
	margin: 0 4px;
}
.slide-control-digits li:first-child a {
	margin-right: 1px;
}
.slide-control-digits li a.active,
.slide-control-digits li a:hover {
	color: #a3222e;
}
.slide-control-digits li a u {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	padding-right: 1px;
	background-color: #a3222e;
	text-decoration: none;
}

#main-menu-links {
	position: absolute;
	top: 0;
	left: 253px;
	margin: 0;
	padding: 0;
	height: 84px;
	line-height: 84px;
}

#main-menu-links li {
box-sizing: border-box;
	position: relative;

	float: left;
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
	line-height: 84px;

	background-color: #fff;

	z-index: 1;
}
#main-menu-links li a:focus {
	-moz-outline: none;
	outline: none;
	ie-dummy: expression(this.hideFocus=true);
}
#main-menu-links li a {
	position: static;

	display: block;
	float: left;
	color: #000;
	text-transform: uppercase;
	/* font-family: 'proxima_nova_ltlight'; */
	font-size: 10.5pt;
	padding: 0 14px;
	height: 84px;

	text-decoration: none;

	border-left: 1px solid #fff;
	border-right: 1px solid #fff;

/*
	background-image: url('images/active-fon.gif');
	background-repeat: repeat-x;
	background-position: 0 -100px;
*/
}
#main-menu-links li a:hover,
#main-menu-links li a.active {
	color: #292929;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
 	z-index: 3;

	margin-left: -1px;

	padding: 0 14px 0 15px;
}

#main-menu-links li a i {
	position: absolute;
	top: 0;
	left: -1px;
	right: 0;
	background-color: #a3222e;
	z-index: 1;
}

#main-menu-links li a.active {
	height: 85px;
	/* background-color: #fafafa; */
	background-position: 0 0;

	transition: 0.4s ease-out 0s;
	-webkit-transition: 0.4s ease-out 0s;
}
#main-menu-links li a.active i {
	height: 3px;
}

/*
#main-menu-links:hover li a.active {
	height: 81px;
}
#main-menu-links li a:hover {
	height: 82px;
}
*/

#main-menu-links .progress-disabled {
	background-color: #eee;

	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;

	height: 84px;
}

#main-menu-links .ajax-progress /*.throbber*/ {
	display: none;
}

/*
.slide-control-menu li u {
	position: absolute;
	top: 0;
	left: 0px;
	right: 0px;
	height: 3px;
	background-color: #a3222e;
	text-decoration: none;

	z-index: 1;
}
*/

.site-body {
	position: relative;
	height: 100%;
/*	min-width: 900px;*/
	padding: 0 37px;
}

.menu-content {
	position: relative;
	margin: 0;
	padding: 84px 100px 0;
	z-index: 3;
}
.fixed-header .tabs.primary {
	position: absolute;
	top: 90px;
	border: 0;
	padding: 0;
	margin: 10px 0;
	right: 37px;
	z-index: 2;
}
.fixed-header .tabs.secondary {
	position: absolute;
	border: 0;
	padding: 0;
	margin: 10px 0;
	right: 37px;
	top: 0px;
	/* margin-top: 60px; */
}
.fixed-header .tabs li a {
	height: 10px;
	line-height: 10px;
	padding: 10px 20px;
	margin: 0 5px 0 0;

	border: 0;
	border-radius: 3px;
	color: #fff;

	overflow: hidden;

	background-color: #ce2f3e;

	font-size: 9pt;
	font-family: 'proxima_nova_rgregular';
}
.fixed-header .tabs li a.active {
	border: 0;
	color: #666;
	background-color: #eee;
}
.fixed-header .tabs li a:hover {
	border: 0;
	color: #000;
	background-color: #7b7b7b;
}
.action-links {
	border: 0;
	padding: 0;
	margin: 10px auto;
	width: 820px;
	z-index: 1;
}
.action-links {
	list-style: none;
	list-style-image: none;
}
.action-links li a {
	height: 10px;
	line-height: 10px;
	padding: 10px 20px;
	margin: 0 5px 0 0;

	border: 0;
	border-radius: 3px;
	color: #fff;

	overflow: hidden;

	background-color: #ce2f3e;

	font-size: 9pt;
	font-family: 'proxima_nova_rgregular';
}

.menu-dev {
	position: absolute;
	height: 1px;

	left: 0;
	right: 0;

	background-color: #e0e0e0;
	z-index: 2;
}
.menu-panel {
	position: fixed;

/*	min-width: 900px;*/
	display: none;
	padding: 25px 25px 50px;
	top: 84px;
	/* bottom: 100%; */
	left: 0;
	right: 0;
	background-color: #fff;
	z-index: 4;

	height: 0;
	/* height: auto; */
	/* overflow-y: auto; */
	overflow: hidden;

	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}
.menu-panel.active {
	display: block;
}
.menu-panel>div {
	margin: 0 auto;
	width: 820px;
	height: 430px; /* ! */

	transition: 1s ease-out 0.4s;
	-webkit-transition: 1s ease-out 0.4s;
}
.menu-panel.active>div {
	margin-top: 0;

	transition: 1s ease-out 0.4s;
	-webkit-transition: 1s ease-out 0.4s;
}

.block-block {
	clear: both;
}

.block-panel {
	position: relative;
	width: auto;
	padding-bottom: 24px;
}

.block-panel-fixed {
	height: 100%;
}
.block-panel-full {
	height: 100%;
}
.block-panel-half {
	height: 50%;
}

/* - - - */
.region-content {
}
/*body.front .region-content,
body.page-portfolio .region-content,
body.page-node-1217 .region-content,
body.node-type-kitchen .region-content,
body.node-type-interior .region-content {
	height: 100%;
}*/

.block-system,
.block-system>div {
	height: 100%;
	clear: both;
}
.block-system {
	/* margin-top: -84px; */
}

.block-mytools,
.block-slider {
	position: relative;
	overflow: hidden;
	width: auto;
	height: 100%;
	margin: -84px 0 -37px;
	/* background-color: #eee; */
	min-height: 600px;
	max-height: calc(66vw);
}
#block-slider-front {
	height: auto;
	min-height: auto;
}

.block-mytools .contextual-links-wrapper,
.block-slider .contextual-links-wrapper {
	top: 84px;
}

#block-slider-news,
#block-slider-near,
#block-slider-baner-single {
	height: 50%;
	min-height: 400px;
}

.block-mytools .content,
.block-slider .content {
	overflow: hidden;
	position: absolute;
	top: 84px;
	bottom: 37px;
	left: 0;
	right: 0;
}

.page-full-slider {
	position: relative;
	overflow: hidden;
	width: auto;
	height: 100%;
	margin: -84px 0 -37px;
	/* height: 600px; */
}

.page-full-slider .content {
	overflow: hidden;
	position: absolute;
	top: 84px;
	bottom: 37px;
	left: 0;
	right: 0;
}

.page-half-slider {
	position: relative;
	overflow: hidden;
	width: 50%;
	height: 100%;
	/* height: 600px; */
}

.page-simple-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.block-adaptive {
	height: 500px;
}

.content-central a {
	-moz-outline: none;
	outline: none;
	ie-dummy: expression(this.hideFocus=true);
}

#block-mytools-slider-main .inside-content>a {
	display: inline-block;
	margin: 0 auto;
}
.block-mytools .content-central,
.block-slider .content-central {
	text-align: center;
	/* position: absolute; */
	top: 50%;
	width: 100%;
	color: #fff;

	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: transparent;
}

.block-mytools .content,
.block-slider .content {
	z-index: 1;
}

.block-0 {
	position: relative;
	overflow: hidden;
}
.slider-tape,
.b2b .field-items {
	position:absolute;
	height: 100%;
	width: 10000%;
}
.slider-item,
.slider-tape>.gallery-inner {
	position: relative;
	display: block;
	float: left;
	overflow: hidden;
	width: 1%;
	height: 100%;
}

.slider-tape > .gallery-inner {
	display: flex;
	flex-wrap: wrap;
}

.slider-item>img,
.slider-tape>div img,
.b2b .field-items .field-item>img {
	width: 100%;
}

.block-content>svg,
.block-content>img {
	position: absolute;
	width: 100%;
	height: auto;
	/* margin-left: 24px; */
}
.block-full {
	float: left;
	width: 100%;
	height: 100%;
	position: relative;
}


.block-quad {
	float: left;
	width: 25%;
	position: relative;
}

/**/.block-panel-fixed {
}

/**/.block-panel-full {
}

/**/.block-panel-half {
}

/**/.block-panel-free {
	overflow: auto;
	 padding-left: 37px;
	background-color: #fff;
	clear: both;
}

.region.region-content .block-panel-free{
	padding-left: unset;
}

.block-with-indent {
	padding: 0 10px;
}

.block-panel-free h3 {
	font-size: 11pt;
}
.block-panel-free ul {
	padding: 0;
	margin-top: 40px;
}
.block-panel-free ul li {
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 5px 0;
	font-size: 10pt;
}
.block-panel-free ul li a {
	color: #a4a4a4;
}
.block-panel-free ul li a:hover {
	color: #a3222e;
}



/**/.content-shaded {
	position: absolute;

	top: 15%;
	bottom: 15%;
	width: 50%;
	left: 50%;
	min-width: 300px;
	max-width: 500px;

	opacity: 0;

	transition: left 0.4s ease-out 0.4s, right 0.4s ease-out 0.4s;
	-webkit-transition: left 0.4s ease-out 0.4s, right 0.4s ease-out 0.4s;
}
/**/.content-shaded>div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -50%;
	right: 50%;

	background-color: #fff;

	overflow: hidden;

/*
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
*/
}


.block-half {
	position: relative;
	float: left;
	overflow: hidden;
	height: 100%;
	width: 50%;
}
.block-half .content-shaded {
	/* position: relative; */

}
.block-half .content-shaded>div>img {
	/* position: relative; */
	position: absolute;

	left: -21.5%;
	top: -21.5%;

	width: 143%;
	height: auto;

	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;

/*
	filter: blur(10px); 
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);

	filter: url("../img/blur.svg#blur");

	filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=3);
*/
}
.block-half .content-central {
	text-shadow: 0px 1px 0px #fff;
	line-height: 2em;
}

.block-1,
.block-left {
	text-indent: -10px;
	margin-left: -10px;
	float: left;
}
.block-2,
.block-right {
	text-indent: 10px;
	margin-right: -10px;
	float: right;
}
.block-1 .content-shaded,
.block-left .content-shaded {
	left: -115%;
	right: 115%;
}
.block-2 .content-shaded,
.block-right .content-shaded {
	left: 115%;
	right: -115%;
}

.block-slider .content,
.page-hilfe-slider .content {
	margin-top: 50%;
	margin-bottom: -50%;

	transition: all 0.7s ease-out 0s;
	-webkit-transition: all 0.7s ease-out 0s;
}

.block-slider .view,
.page-hilfe-slider .view {
	margin-top: 0;
	margin-bottom: 0;
}

.view .content-shaded {
	top: 15%;
	bottom: 15%;
	width: 60%;
	left: 50%;

	opacity: 1;
}

.content-shaded:hover {
/*
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
*/
}

/**/.content-normal {
	top: 0;
	bottom: 0;
	left: 40px;
	right: 40px;
}

/**/.content-menu {
	position: relative;
	margin: 60px 0;
}

.content-stuck-bottom {
	position: absolute;
	bottom: 0;
	padding: 40px;
}
.content-stuck-bottom h2,
.content-stuck-bottom a {
	color: #fff;
}
.content-stuck-bottom a:hover {
	color: #a3222e;
}

.horizontal-rule {
	height: 1px;
	width: 100%;
	margin-top: 40px;

	background-color: #d5d5d5;
}


.bottom-arrow {
	position: absolute;
	left: 50%;
	bottom: 30px;
	/* bottom: 67px; */
	height: 13px;
	width: 23px;
	background: url("/local/templates/virs/img/barrow.png") no-repeat right 50% transparent;
	cursor: pointer;
}

#admin-menu {
	height: 20px;
	font-size: 9pt;
}
#admin-menu .dropdown li {
	line-height: 1em;
}
#admin-menu .dropdown a {
	padding: 1px 8px;
	font-size: 9pt;
}

.fixed-header {
	position: fixed;
	/*position: sticky;*/
	display: block;
	top: 0;
	left: 0;
	right: 0;

/*	min-width: 974px; */
	height: 84px;
	/* background: url("header.png") no-repeat 0 26px #fff; */
	background-color: #fff;
	z-index: 199;

	transition: margin 0.5s ease-out 0s;
	-webkit-transition: margin 0.5s ease-out 0s;
}
.logged-in .fixed-header {
	margin-top: 20px;
}
.fixed-sub-header {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	right: 0;
/*	min-width: 974px;*/
	height: 84px;

	background-color: #dadada;
	z-index: 198;

	transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
}
.logged-in .fixed-sub-header {
	margin-top: 20px;
}
.fixed-sub-header.active {
	top: 84px;
	display: block;
}
.fixed-sub-header form {
	position: relative;
	padding: 22px 400px 0 200px;
}
.fixed-sub-header form .form-text {
	width: 100%;
}
.fixed-sub-header form .form-actions {
	position: absolute;
	top: 22px;
	right: 200px;
}

input[type=text] {
	display: block;
	height: 30px;
	line-height: 30px;
	padding: 5px 15px;

	border: 0;
	border-radius: 4px;
	color: #000;

	border: 1px solid #aaa;

	background-color: #fff;
}
input[type=text]:disabled {
	background-color: #f0f0f0;
	color: #aaa;
}

button,
input[type=submit] {
	position: relative;
	display: block;
	height: 40px;
	line-height: 40px;
	padding: 0 40px;

	border: 0;
	border-radius: 4px;
	color: #fff;

	overflow: hidden;

	background-image: url("../img/hover.gif");
	background-repeat: no-repeat;
 	background-position: 0 0;

	background-color: #ce2f3e;

	font-size: 11pt;
	font-family: 'proxima_nova_rgregular';

	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}
button.hover,
input[type=submit].hover {
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}


.site-phone {
	position: absolute;
	display: block;
	right: 98px;
	height: 32px;
	color: #999;
	letter-spacing: 0.03em;
	font-size: 10pt;

left: 860px;
right:0px;
top:24px;
	line-height: 16px;
}

.site-phone div {
}
.site-phone a,
.site-phone span {
	color:#a3222e;
	white-space: nowrap;
}

.find-btn {
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	width: 84px;
	height: 84px;
	cursor: pointer;
}
.find-btn i {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;

	background: url('/local/templates/virs/img/find.png') no-repeat 50% 50% transparent;
}
.find-btn.active {
	background-color: #dadada;
}

.loader-lock {
	overflow-y: hidden;
}
.loader-panel {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: fixed;
	background: url('/local/templates/virs/img/loader.gif') #fff no-repeat 50% 50%;
	z-index: 99;
}

.fixed-footer {
	position: fixed;
	display: block;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	min-width: 900px;
	height: 27px;
	padding: 10px 37px 0;
	background-color: #fff;
	color: #7b7b7b;

	font-size: 9pt;
	text-transform: uppercase;
	z-index: 2;/* 199 */
}
.fixed-footer a {
	margin: 0 5px;
	color: #000;
}
.fixed-footer a:hover {
	color: #a3222e;
}

.fixed-header a.site-logo {
	position: absolute;
	display: block;
	left: 37px;
	top: 26px;
	width: 191px;
	height: 32px;
	background: url("/local/templates/virs/img/site-logo.png") no-repeat 0 0 transparent;
	cursor: pointer;
}

.page-header-image {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
	margin-bottom: 24px;
}

.page-header-image img {
	width: 100%;
	height: auto;
}
.page-header-image .odd {
	position: absolute;
	bottom: 40px;
	left: 40px;
	width: 1px;
	color: #fff;
	text-transform: uppercase;
	line-height: 1em;
	font-size: 36pt;
	font-family: 'proxima_nova_ltlight';
}


/* GALLERY */
.gallery-item,
.b2b .field-item {
	float: left;
}
.root-header {
	margin-top: 70px;
}

.node-slider-deep,
.menu-slider-deep,
.spec-slider-deep {
	position: relative;
}

.b2b {
}
.b2b-wrap {
	position: relative;
	margin: 0 auto;
	width: 940px;
	clear: both;
}
.b2b-image {
	width: 940px;
	height: 530px;
}
.b2b-image img {
	float: left;
	width: 100%;
	height: 100%;
}
.b2b .field-name-field-image {
	position: relative;
	height: 60px;
	width: 640px;
	margin: 20px auto;
	overflow: hidden;
}
.b2b .field-name-field-image:after {
	content: "";
	clear: both;
}
.b2b .arrow {
	margin: 0;
	top: auto;
	bottom: 20px;

	height: 42px;
	width: 12px;
}
.b2b .prev-arrow {
	left: 105px;
}
.b2b .next-arrow {
	right: 105px;
}

.spec-slider {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
}

.images-slider {
	position: relative;
	width: 100%;
	height: 182px;
	overflow: hidden;
}
.menu-slider {
	position: relative;
	width: 100%;
	height: 260px;
	margin-bottom: 20px;
	overflow: hidden;
}

.node-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.node-slider-deep {
	position: relative;
	margin-top: 20px;
	padding-bottom: 75px;
}
.node-slider-style-p590v {
	height: 785px;
	width: 595px;
}
.node-slider-style-p800x600 {
	height: 600px;
	width: 800px;
}
.node-slider-style-p800x450 {
	height: 450px;
	width: 800px;
}

.node-slider-deep .slide-count {
	position: absolute;
	left: 50%;
	margin-left: -25px;
	bottom: 0;
	width: 50px;
	height: 61px;
	line-height: 61px;
	text-align: center;
}
.node-slider-deep .slide-count:first-letter {
	color: #a3222e;
}

.b2b .field-name-field-image {
}

.menu-slider-deep .prev-arrow,
.spec-slider-deep .prev-arrow {
	margin-left: -30px;
}
.menu-slider-deep .next-arrow,
.spec-slider-deep .next-arrow {
	margin-right: -30px;
}
.node-slider-deep .arrow {
	top: auto;
	bottom: 0;
}
.node-slider-deep .prev-arrow {
	left: 50%;
	margin-left: -45px;
}
.node-slider-deep .next-arrow {
	right: 50%;
	margin-right: -45px;
}

.menu-slider-deep .menu-slider {
	background: url("../img/menu-slider-dev.gif") repeat-x 0 bottom transparent;
}
.history-content {
	margin-bottom: 20px;
	background: url("../img/menu-slider-dev.gif") repeat-x 0 bottom transparent;
}
.news-content .menu-slider {
	height: 170px;
	background: none;
}

.menu-slider-deep .slide-control-dots,
.menu-slider-spec .slide-control-dots {
	top: -30px;
	right: 0;
	bottom: auto;
	left: auto;
}

.gallery-inner {
	float: left;
}
.gallery-inner-mask {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000;
	filter:alpha(opacity=25);
	-moz-opacity: 0.25;
	-khtml-opacity: 0.25;
	opacity: 0.25;
}
.gallery-inner-text {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	text-align: center;
	color: #fff;
	font-size: 24pt;

	font-family: 'proxima_nova_ltlight';
}
.gallery-inner-text h2 {
	font-size: 70pt;
	line-height: 1em;
	margin: 0;
}
.gallery-inner-text p {
	font-size: 24pt;
	margin: 0.5em 0;

	font-family: 'proxima_nova_ltlight';
}
.gallery-inner-text h2,
.gallery-inner-text p {
	color: #fff;
}

.images-slider .gallery-inner,
.menu-slider .gallery-inner {
	width: 1%;
}

.gallery {
	position: relative;
	padding: 50px 60px;
	margin: 0 auto;
	max-width: 1030px;
}
.gallery-slider {
	padding-bottom: 0;
}
.gallery-slider .arrow {
	top: 141px;
}
.gallery-slider .images-slider {
	height: 280px;
}
.gallery-slider .gallery-item .link {
	margin: 16px 0;
	text-transform: uppercase;
	font-size: 15pt;
	font-family: 'proxima_nova_ltlight';
}
.gallery-single {
	display: inline-block;
	margin: 0 20px 20px 0;
}
.gallery .gallery-item {
	float: left;
	width: 182px;
	margin: 0 12px 18px;
}
.gallery-single .gallery-item {
	float: none;
}

.gallery .gallery-item a {
	display: block;
	color: #000;
	text-decoration: none;
	letter-spacing: 0.01em;
	font-size: 11pt;
}
.gallery-item .image,
.spec-tab-item .image,
.b2b .field-item a {
	display: block;
}
.gallery-single .gallery-item .image,
.gallery .gallery-item .image,
.spec-tab-item .image,
.b2b .field-item a {
	position: relative;
	width: 182px;
	height: 182px;
	overflow: hidden;
	margin-bottom: 8px;
}
.gallery-single .gallery-item .image {
	width: 176px;
	height: 176px;
}
.b2b .field-item a {
	width: 60px;
	height: 60px;
}
.gallery-item .link {
	display: block;
}
.gallery-item .link span {
	position: relative;
}
.gallery-item:hover .link {
	/* color: #a3222e; */
	/* text-decoration: underline; */
}
.gallery-item.active .link,
.spec-tab-item.active .link {
	color: #a3222e;
}

.gallery-item .image:before,
.spec-tab-item .image:before,
.b2b .field-item a:before {
	position: absolute;
	content: "";
	border: 8px solid #a3222e;
	left: 0;
	top: 0;
	opacity: 0;
	transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	z-index: 1;
}
.gallery-item .image.active:before,
.spec-tab-item .image.active:before,
.b2b .field-item a.active:before {
	opacity: 1;
	transform: scale(1);
	-webkit-transform: scale(1);
}
.gallery-item .image img,
.spec-tab-item .image img,
.b2b .field-item a img {
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}
.gallery-item:hover .image img,
.spec-tab-item:hover .image img,
.b2b .field-item:hover a img {
	transform: scale(1.15);*/
	-webkit-transform: scale(1.15);
}

.gallery-item.active .image:before,
.spec-tab-item.active .image:before,
.gallery-item:hover .image:before,
.spec-tab-item:hover .image:before,
.b2b .field-item:hover a:before {
	opacity: 1;
	transform: scale(1);
	-webkit-transform: scale(1);
	transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
}

.gallery-single .gallery-item .image:before {
	height: 160px;
	width: 160px;
}
.gallery .gallery-item .image:before {
	height: 166px;
	width: 166px;
}
.multi-slider .gallery-item .image:before,
.menu-gallery .gallery-item .image:before,
.node-token-area .gallery-item .image:before {
	width: 98px;
	height: 65px;
}

.company-tab-panel-content .gallery-item .image:before {
	width: 209px;
	height: 129px;
}

.spec-tab-item .image {
	width: 143px;
	height: 92px;
}
.spec-tab-item .image:before {
	width: 127px;
	height: 76px;
}

.b2b .field-item a:before {
	width: 44px;
	height: 44px;
}

.news-content .menu-slider-deep p {
	margin: 0;
}

.menu-slider-spec {
	position: relative;
	width: 310px;
}
.salons-tab-panel .menu-slider-spec .menu-slider {
	height: 340px;
}
.menu-slider-spec .menu-slider .image {
	display: block;
	width: 310px;
	height: 190px;
}
.menu-slider-spec .slide-control {
	text-align: left;
}
.action-summary-text {
	display: block;
	max-height: 180px;
}
.tab-spec-title {
	font-size: 9pt;
	font-family: 'proxima_nova_rgregular';
}
.tab-spec-price-old {
	margin-bottom: 3px;
	font-size: 12pt;
	text-decoration: line-through;
}
.tab-spec-price-old span {
	font-size: 9pt;
	text-transform: uppercase;
}
.tab-spec-price-new {
	margin-bottom: 10px;
	font-size: 23pt;
	color: #a3222e;
	font-family: 'proxima_nova_ltlight';
}
.tab-spec-price-new span {
	font-size: 10pt;
	text-transform: uppercase;
}
.tab-spec-discount {
	font-size: 23pt;
	font-family: 'proxima_nova_ltlight';
}
.tab-spec-discount span {
	display: block;
	font-size: 10pt;
	text-transform: uppercase;
}

.multi-slider .gallery-item,
.menu-gallery .gallery-item,
.node-token-area .gallery-item {
	margin: 0 11px 14px;
	width: 114px;
}
.company-tab-panel-content .gallery-item {
	float: right;
	width: 225px;
	height: 144px;
	overflow: hidden;
}


.b2b .field-item {
	margin: 0 10px;
	width: 60px;
	height: 60px;
}

.multi-slider .gallery-item a,
.menu-gallery .gallery-item a,
.node-token-area .gallery-item a {
	color: #676767;
	font-size: 10pt;
	text-decoration: none;
}
.multi-slider .gallery-item a.link,
.menu-gallery .gallery-item a.link,
.node-token-area .gallery-item a.link {
	margin-top: 5px;
}
.gallery-item:hover .link,
.spec-tab-item:hover .link {
	color: #a3222e;
}
.gallery-item:hover .link span:after,
.spec-tab-item:hover .link span:after  {
	width: 100%;
}
.company-tab-panel-content .gallery-item a {
	position: relative;
}
.company-tab-panel-content .gallery-item a p {
	display: none;
	position: absolute;
	margin: 0;
	bottom: -8px;
	left: -4px;
	color: #fff;
	line-height: 52pt;
	font-size: 52pt;
	font-family: 'proxima_nova_ltlight';
	text-decoration: none;
}
.multi-slider .gallery-item .image,
.menu-gallery .gallery-item .image,
.node-token-area .gallery-item .image {
	position: relative;
	width: 114px;
	height: 81px;
	overflow: hidden;
}

.gallery-slider-action .gallery-inner {
	width: 206px;
}

.history-content {
	height: 200px;
}

.menu-container {
	float: left;
}

.menu-text-block {
	/* margin-left: 90px; */
	padding-left: 10px;
}
.menu-text-block p {
	color: #999;
	font-size: 10pt;
	line-height: 1.7em;
	margin-top: 0;
}


/* ROOT */

.node-root {
	color: #979797;
	width: 50% !important;
}
.node-root h2 {
	line-height: 1.2em;
	color: #000;
}
.node-root hr {
	width: 30%;
}
.node-root .field-item,
.node-root .field-item p {
	color: #979797;
	text-align: left;
	font-size: 13pt;
	letter-spacing: 0.03em;
	line-height: 1.3em;
	font-family: 'proxima_nova_ltlight';
}
.node-root .field-item p {
	margin: 1.3em 0;
}
#node-2 {
	left: 50%;
}
#node-3 {
	right: 50%;
}
#node-2 .field-item {
	padding: 0 40px 0 120px;
}
#node-3 .field-item {
	padding: 0 120px 0 40px;
}

.field-name-field-picture .image-widget-data {
	float: none !important;
}
.field-name-field-picture .image-widget-data .form-type-textfield {
	clear: both;
}
.field-name-field-picture .image-widget-data .form-type-textfield label,
.field-name-field-picture .image-widget-data .form-type-textfield .description {
	display: none;
}

.field-name-field-picture .image-widget-data .form-submit {
	float: right;
}



/* effect */

.blob-top {
	height: 0%;
}
.blob-bottom {
	height: 100%;
}
.effect {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;

	z-index: 2;
}


.front-layer {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.back-layer {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 50%;
	z-index: 1;
}
.mask-layer {
	position: relative;
	margin: 0 auto;
	width: 960px;
	height: 400px;

	margin-top: -200px;
}
.white {
	background-color: #fff !important;
}
.mask-layer .white {
	position: absolute;
}
.layer-top {
	/* width: 1000px; */
	height: 1000px;
	/* top: -100%; */
	bottom: 100%;
	right: -100%;
	left: -100%;
}
.layer-bottom {
	/* width: 1000px; */
	height: 1000px;
	top: 100%;
	/* bottom: -100%; */
	right: -100%;
	left: -100%;
}
.layer-right {
	width: 1000px;
	height: 1000px;
	left: 100%;
	/* right: -100%; */
}
.layer-left {
	width: 1000px;
	height: 1000px;
	/* left: -100%; */
	right: 100%;
}

.position-layer {
	height: 50%;
}


/* NEWS */

.triple-item {
	position: relative;
	height: 100%;
	width: 33.3%;
	color: #000;
}
.triple-item .content-central {
	text-align: center;
	color: #000;
	padding: 0 15%;
	width: auto;
	top: 50%;
}
.triple-item a {
	text-decoration: none;
}
.triple-item a:hover {
	/* text-decoration: underline; */
}


.half-item {
	position: relative;
	height: 100%;
	width: 50%;
	color: #000;
}
.half-item p {
	color: #000;
}

.half-item .content-central {
	color: #000;
	padding: 0 15%;
	width: auto;
}


/*  */
.salon-list-container {
	margin: 50px auto 50px;
	width: 1000px;
}
.node-salon {
	max-width: 1000px;
	margin: 0 auto;
}
.salon-media-data {
	position: relative;
	margin: 20px auto 0;
	height: 425px;
	width: 1000px;
}
.salon-media-map3d {
	height: 425px;
	position: absolute;
	right: 0;
	top: 0;
}
.salon-media-inside {
	position: absolute;
	overflow: hidden;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	z-index: 1;
}
.salon-media-inside>a,
.salon-media-inside>div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.salon-media-view {
	width: 1000px !important;
	height: 425px !important;
	z-index: 2;
	background-color: #fff;
}
.salon-media-hover {
	display: block;
	position: absolute;
	top: -25px;
	left: -25px;
	right: -25px;
	bottom: -25px;
	text-align: center;
	border: 5px solid #a82d39;
	background: url('/local/templates/virs/img/hovershade.png') 0 0;
	text-transform: uppercase;
	cursor: pointer;

	filter:alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;

	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}
.salon-media-view .salon-media-hover {
	display: none !important;
}
.salon-media-200 .salon-media-hover {
	padding-top: 135px;
}
.salon-media-425 .salon-media-hover {
	padding-top: 250px;
}
.salon-media-inside:hover .salon-media-hover {
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	filter:alpha(opacity=1);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}
.salon-media-icon {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 10px;
}
.salon-media-inside:hover .salon-media-icon-3d {
	bottom: 0;
}
.salon-media-icon-3d {
	background: url('/local/templates/virs/img/tour3d.png') no-repeat 50% 50%;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}
.salon-media-icon-map {
	background: url('/local/templates/virs/img/mapshow.png') no-repeat 50% 50%;
}

.salon-media-data .salon-slider {
	height: 425px;
	width: 590px;
	/* margin-right: 400px; */
	float: left;
}
.node-salon .field-name-body {
	margin-bottom: 30px;
}
.node-salon .field-type-text,
.node-salon .field-name-field-work-time {
	float: left;
	width: 30%;
	padding-right: 2.5%;
	font-size: 11pt;
	line-height: 1.6em;
}
.node-salon .field-type-text .field-label,
.node-salon .field-name-field-work-time .field-label {
	color: #7b7b7b;
	text-transform: uppercase;
	font-weight: normal;
	margin: 0 0 20px;
	font-size: 12pt;
}
.node-salon .field-type-text .field-items,
.node-salon .field-name-field-work-time .field-items {
}

/* salon */

.salon-tab {
	position: relative;
	border-top: 1px solid #ccc;
	padding: 10px 0;

	margin: 0 auto;
	max-width: 1030px;
}
.load-salon-data {
	display: block;
	padding: 20px 0;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 13pt;
	font-family: 'proxima_nova_ltlight';

	-moz-outline: none;
	outline: none;
	ie-dummy: expression(this.hideFocus=true);

	transition: font-size 0.3s ease;
	-webkit-transition: font-size 0.3s ease 0s;
}
.salon-tab-data {
	display: none;
	padding-bottom: 20px;

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}
.roll-tab:hover {
	color: #a3222e;
}
.roll-tab i {
	display: block;
	width: 30px;
	height: 15px;

	float: right;
	margin: 5px 0;

	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}
.salon-tab.active .roll-tab i {
	margin: -10px 0;

	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}
.roll-tab i:after,
.roll-tab i:before {
	/* position: absolute;	top: 50%; */
	display: block;

	width: 50%;
	height: 1.7px;

	background-color: #a3222e;
	content: "";

	padding: 0;

	transition: transform 0.3s ease, margin 0.3s ease;
	-webkit-transition: -webkit-transform 0.3s ease 0s, margin 0.3s ease 0s;
}

.roll-tab i:before {
	transform: translateY(0px) rotate(-43deg);
	-webkit-transform: translateY(0px) rotate(-43deg);
}
.roll-tab:hover i:before {
	margin-left: 1px;
	transform: translateY(0px) rotate(-52deg);
	-webkit-transform: translateY(0px) rotate(-52deg);
}

.roll-tab i:after {
	margin-top: -2px;
	margin-left: 10px;
	transform: translateY(0px) rotate(43deg);
	-webkit-transform: translateY(0px) rotate(43deg);
}
.roll-tab:hover i:after {
	transform: translateY(0px) rotate(52deg);
	-webkit-transform: translateY(0px) rotate(52deg);
}


.salon-tab .ajax-progress /* .throbber */ {
	top: 50%;
	left: 50%;
	margin-top: -10px;
	margin-left: -10px;
	position: absolute;
/*
	width: 126px;
	height: 35px;

	margin-top: -18px;
	margin-left: -63px;
*/
	width: 63px;
	height: 18px;

	margin-left: -32px;
	margin-top: -9px;
}
.salon-tab .ajax-progress .throbber {
/*
	width: 126px;
	height: 35px;
*/
	width: 63px;
	height: 18px;

	background: url('images/loader-small.gif') no-repeat 50% 50%;
}

.salon-tab.active .load-salon-data {
	font-size: 24pt;
	padding: 15px 0 20px;
}
.salon-tab.active .salon-tab-data {
	display: block;
}


/*  */
.node-kitchen {
	margin: 50px auto 50px;
	width: 920px;
}

.node-kitchen .field-label-above {
	margin: -50px 0 0;
	padding-top: 80px;
}

.node-kitchen .field-label-above>.field-label {
	border-top: 1px solid #d5d5d5;
}

.node-kitchen .field-label-above>.field-items {
	position: relative;
	display: none;
}
.node-kitchen .field-label-above>.field-items.open {
	display: block;
}

#facade-full-view {
	overflow: hidden;
	float: right;
	top: 0;
	right: 0;
	width: 182px;
	margin-right: 218px;
}
.facade-full-view-wrap {
	overflow: hidden;
	width: 1000px;
}

#facade-full-view>.facade-full-view-wrap>div {
	float: left;
	width: 182px;
}

.node-kitchen .field-label-above>.field-label {
	padding: 30px 0 0;
	cursor: pointer;
}

.node-kitchen .field-label {
	font-size: 20pt;
	font-weight: normal;
	text-transform: uppercase;
	font-family: 'proxima_nova_ltlight';
}

.node-facade {
	display: none;
	width: 516px;
}
.node-facade.active {
	display: block;
}
.node-facade .field-item {
	float: left;
	margin: 0 24px 24px 0;
	width: 73px;
	height: 73px;
	border: 3px solid #ebebeb;
}
.node-facade .field-item:hover {
	border: 3px solid #a3222e;
}
.node-facade .field-item.active {
	border: 3px solid #a3222e;
}
.node-facade .field-item img {
	width: 73px;
	height: 73px;
}

.tab-controls {
	clear: both;
	height: 20px;
	margin: 25px 0 0;
}

.tab-controls span {
	display: block;
	float: left;
	text-transform: uppercase;
	font-size: 9pt;
	margin: 0 30px 25px 0;
	height: 16px;
	border-bottom: 1px solid transparent;
	cursor: pointer;
}
.tab-controls span:hover {
	border-bottom: 1px solid #000;
}
.tab-controls span.active {
	border-bottom: 1px solid #a3222e;
}

.margins30 {
	margin-top: 20px;
}

#ampersant-img {
	position: absolute;
	display: none;
	width: 100px;
	height: 160px;
	left: 50%;
	top: 50%;
	z-index: 1;
	margin-left: -46px;
	margin-top: -80px;
}


/* TAB */

.tab-close,
.view-close {
	position: absolute;
	display: block;
	top: 13px;
	right: 23px;
	width: 48px;
	height: 48px;

	/*background-image: url("../img/close.png");*/
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAApklEQVQ4y72VvQ2EMAyFPcsNwC4nCkomoaOmynkBaBiFERjlJKSPJlDcCckxFkWkSPZ7sZ9/IoAADZDy3XsG4A2IADXwXacZQJ2EmvEb0AqQ1mlmfFU4ifUH/7kyqJNQj/S9xJf+ZscSv2KA5eHS1EyZFGlm1dxc3aXrzUU0tc1BuHS9qd0ejzRc0/Dqh/dp+ESFz374ltLgfaqnMWjz/2t684868TtVAjgAvctYdQAAAABJRU5ErkJggg==') no-repeat 50% 50% transparent;

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;

	cursor: pointer;
}
.tab-close:hover,
.view-close:hover {
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
}
.view-close {
	display: none;
	z-index: 2;
}
.salon-media-view .view-close {
	display: block;
}


.tab-close-arw {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -25px;
	width: 50px;
	height: 25px;

	border: 1px solid #e0e0e0;
	border-bottom: 0;
	border-radius: 2px;

	background-image: url("/local/templates/virs/img/close-arw.png");

	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: #fff;

	transition: height 0.3s ease;
	-webkit-transition:height 0.3s ease 0s;

	cursor: pointer;
}
.tab-close-arw:hover {
	height: 35px;
	border-radius: 2px 2px 0 0;
	z-index: 1;
}


/* group */
.sticky-header {
	background-color: #fff;
	z-index: 99;
}
.sticky-header th,
.sticky-table th,
.sticky-header td,
.sticky-table td {
	padding: 4px 10px;
	vertical-align: middle;
}

.draggable a.tabledrag-handle {
	height: auto;
}

.group_names_panel {
	width: 500px;
}

.group_names_panel .form-item {
	float: left;
	width: 200px;
	padding: 0 40px 0 10px;
}

.group_names_panel .form-item input {
	width: 100%;
}

.sortable-simple-table {
	margin-bottom: 30px;
}
.sortable-table-wrapper,
.sortable-group-wrapper {
}

#sortableGroup tr.region-title,
#sortableGroup tr.region-message {
	background-color: transparent;
	border: 0;
}
#sortableGroup tr.region-message {
	color: #999;
	font-weight: normal;
	padding: 0;
}
#sortableGroup tr.region-title td {
	font-weight: bold;
}
#sortableGroup tr.region-populated {
	display: none;
}

.group-selector {
	display: inline-block;
	padding: 0;
	margin: 0 auto 50px;
	height: 64px;
}
.group-selector li {
	display: inline-block;
	list-style: none;
	list-style-image: none;
	padding: 0;
	margin: 0 12px;
}
.group-selector li a {
	display: inline-block;
	line-height: 62px;
	padding: 2px 22px 0;
	color: #000;
	text-decoration: none;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 23pt;
	font-family: 'proxima_nova_ltlight';
}
.group-selector li a:hover {
	color: #a3222e;
}
.group-selector li a.active {
	color: #fff;
	background-color: #a3222e;
}
.images-slider-title {
	text-align: center;
	margin: 0 auto;
	padding: 0;
	color: #000;
	font-size: 24pt;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: 'proxima_nova_ltlight';
}
.page-central-title,
.group-selector-title {
	text-align: center;
	margin: 0 0 40px;
	padding: 55px 0 0;
	color: #000;
	font-size: 36pt;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: 'proxima_nova_ltlight';
}
.group-selector-description {
	text-align: center;
	margin: 40px 0 20px;
	color: #999;
	font-size: 13pt;
	font-family: 'proxima_nova_ltlight';
	text-transform: uppercase;
	letter-spacing: 0.075em;
}
.node-page .field-name-body p {
	line-height: 1.7em;
}
.node-type-page .block-system .node-page {
	width: 1000px;
	margin: 0 auto;
}
.node-type-page .block-system h3 {
	color: #000;
	font-size: 13.5pt;
	font-family: 'proxima_nova_ltlight';
	letter-spacing: 0.06em;
	margin: 2.1em 0 1.4em;
	text-transform: uppercase;
	font-weight: normal;
}
.node-type-page .block-system .description {
	display: block;
	color: #7b7b7b;
	line-height: 1.5em;
	text-transform: uppercase;
	font-size: 9pt;
	margin: 0.5em 0 -1.8em;
	letter-spacing: 0.06em;
}

.simple-tab-gmap-multi-tabs {
	position: relative;
	overflow: hidden;

	width: 450px;
	height: 300px;

	padding: 10px;
	margin: 14px 0;
	border: 1px solid #e0e0e0;
}
.simple-tab-gmap-multi-tabs .gmap-multi-wrap {
	position: absolute;
	overflow: hidden;
	top: 10px;
	left: 10px;
	width: 450px;
	height: 300px;

	margin-left: 460px;
}
.simple-tab-gmap-multi-tabs .gmap-multi-wrap.active {
	margin-left: 0;
}
.simple-tab-gmap-multi-tabs .gmap-multi-wrap>div {
	width: 450px;
	height: 300px;
	overflow: hidden;
}

.salon-map-select {
	padding: 8px 10px;
	background-color: #fff;
	color: #000;
	cursor: pointer;
}
.salon-map-select.active {
	background-color: #a3222e;
	color: #fff;
}
/*
.simple-tab-data {
	display: none;
}
.simple-tab-data.active {
	display: block;
}
*/

.gmap-control {
	float: right;
	height: 590px !important;
	width: 590px !important;
	border: 1px solid #b3b3b3;
	background-color: transparent !important;
}

.gmap-control .gm-style {
	height: 570px !important;
	width: 570px !important;
	margin: 10px;
}

/* SALONS TAB */

.nearest-salon-map {
	float: left;
	margin: 0 25px 0 0;
	width: 185px;
	height: 130px;
}

.salons-tab-panel .menu-slider {
	height: 120px;
	background: none;
}
.menu-slider-deep .arrow {
	margin-top: -50px;
}
.salons-tab-actions {
	padding: 0 15px;
	float: right;
	border-left: 1px solid #e0e0e0;
	white-space: nowrap;
	text-transform: uppercase;
}

.salons-tab-panel h3,
.company-tab-panel  h3 {
	margin: 0 0 10px;
}
.salons-tab-right-panel .salons-tab-panel-content,
.company-tab-right-panel .company-tab-panel-content {
	padding: 0 38px;
}
.salons-tab-left-panel .salons-tab-panel-content {
	padding: 0 99px 0 0;
}
.salons-tab-right-panel .salons-tab-panel-content {
	padding: 0 0 0 99px;
}
.company-tab-left-panel .company-tab-panel-content {
	padding: 0 40px 0 0;
}
.company-tab-left-panel .company-tab-panel-content .gallery-item {
}
.company-tab-left-panel .company-tab-panel-content .field-name-body,
.company-tab-left-panel .company-tab-panel-content .field-name-body p {
	color: #999;
	font-size: 13pt;
	line-height: 1.3em;
	font-family: 'proxima_nova_ltlight';
}

.salons-tab-panel-content .field {
	margin: 20px 0;
	font-size: 10pt;
	line-height: 1.6em;
}
.salons-tab-panel-content .field .field-label {
	font-weight: normal;
	color: #7b7b7b;
	text-transform: uppercase;
}

.company-tab-left-panel {
	margin-right: 30%;
}
.company-tab-right-panel {
	float: right;
	width: 30%;
	border-left: 1px solid #e0e0e0;
}

.salons-tab-left-panel {
/*
	margin-right: 50%;
	border-right: 1px solid #e0e0e0;
*/
}
.salons-tab-right-panel {
	float: right;
	width: 50%;
}
.salons-tab-select-panel {
	width: 226px;
}
.salons-tab-map-panel {
	float: right;
	width: 472px;
}

.spec-tab-item {
	position: relative;
	float: left;
	width: 143px;
	margin-bottom: 20px;
}
.spec-tab-item.odd {
	margin-right: 20px;
}
.spec-tab-item h4 {
	float: left;
	margin: 0;
}

/* GROUP ROLLOUT */
.group-rollout-selector {
	position: relative;
	display: block;
	width: auto;
	margin: 24px 0;
	border: 1px solid #e0e0e0;
}

.group-rollout-selector-title {
	position: relative;
	display: block;
	width: auto;
	
	line-height: 26px;
	padding: 8px 12px;

	background-color: #fff;

	color: #000;
	font-size: 12pt; /* 13.5 */
	font-family: 'proxima_nova_rgregular';
	text-transform: uppercase;
	font-weight: normal;

	cursor: pointer;
}

.group-rollout-selector-title i {
	display: block;
	width: 15px;
	height: 8px;

	float: right;
	margin: 7px 0;

	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}

.group-rollout-selector-title i:after,
.group-rollout-selector-title i:before {
	/* position: absolute;	top: 50%; */
	display: block;

	width: 50%;
	height: 1.4px;

	background-color: #a3222e;
	content: "";

	padding: 0;

	transition: transform 0.3s ease, margin 0.3s ease;
	-webkit-transition: -webkit-transform 0.3s ease 0s, margin 0.3s ease 0s;
}

.group-rollout-selector-title i:before {
	transform: translateY(0px) rotate(-43deg);
	-webkit-transform: translateY(0px) rotate(-43deg);
}
.group-rollout-selector-title:hover i:before {
	margin-left: 1px;
	transform: translateY(0px) rotate(-52deg);
	-webkit-transform: translateY(0px) rotate(-52deg);
}

.group-rollout-selector-title i:after {
	margin-top: -1px;
	margin-left: 5px;
	transform: translateY(0px) rotate(43deg);
	-webkit-transform: translateY(0px) rotate(43deg);
}
.group-rollout-selector-title:hover i:after {
	transform: translateY(0px) rotate(52deg);
	-webkit-transform: translateY(0px) rotate(52deg);
}
.group-rollout-selector-disabled {
	cursor: default;
}
.group-rollout-selector-disabled .group-rollout-selector-title {
	color: #e0e0e0;
}
.group-rollout-selector-disabled .group-rollout-selector-title i:after,
.group-rollout-selector-disabled .group-rollout-selector-title i:before {
	background-color: #e0e0e0;
}


.group-rollout-selector-items {
	position: relative;
	display: none;
	margin-left: -1px;
	padding: 5px 0;
	border: 1px solid #e0e0e0;
	position: absolute;
	background-color: #fff;
	width: 100% !important;

	max-height: 240px;
	overflow-y: auto;

	z-index: 1;

	transition: height 0.3s ease;
	-webkit-transition: height 0.3s ease 0s;
}

.group-rollout-selector-items .ajax-progress /*.throbber*/ {
	position: absolute;
	right: 10px;
	margin-top: -26px;

	width: 63px;
	height: 18px;

	margin-top: -25px;
}
.group-rollout-selector-items .ajax-progress .throbber {
	width: 63px;
	height: 18px;
	background: url('images/loader-small.gif') no-repeat 50% 50%;
}

.spec-tab-item .ajax-progress {
	position: absolute;
	width: 63px;
	height: 18px;

	left: 50%;
	top: 50%;
	margin-left: -32px;
	margin-top: -9px;
}
.spec-tab-item .ajax-progress .throbber {
	width: 63px;
	height: 18px;
	background: url('images/loader-small.gif') no-repeat 50% 50%;
}

.group-rollout-selector.active .group-rollout-selector-items {
	/* display: block; */
	/* height: auto; */
}

.group-rollout-selector-item {
	display: block;
	width: auto;
	line-height: 17px;
	margin: 9px 0;
	padding: 0 17px;
	color: #adadad;
	text-decoration: none;
}
a.group-rollout-selector-item {
	color: #000;
	cursor: pointer;
}
a.group-rollout-selector-item:hover {
	color: #a3222e;
}

/* NEARSALONT FRONT */
.nearsalon-front-title {
	text-align: center;
	color: #b1b1b1;
	margin: 0;
	font-size: 12pt;
	font-family: 'proxima_nova_ltlight';
}
.nearsalon-front-cityadr {
	display: block;
	margin: 0;
	padding-top: 0.8em;
	min-height: 110px;
	text-align: center;
	background: url('/local/templates/virs/img/big-dev.gif') no-repeat 50% 50%;
}
.nearsalon-front-onlyadr {
	display: inline-block;
	max-height: 80px;
	max-width: 600px;
	overflow: hidden;
}
.nearsalon-front-links {
	margin: 1em 0;
	text-align: center;
}
.nearsalon-front-links a {
	display: inline-block;
	margin-right: 32px;
	margin-bottom: 10px;
}

/* COMPANY INFO */

.company-information-links {
	padding-bottom: 10px;
	margin-bottom: 20px;
	background: url("../img/menu-slider-dev.gif") repeat-x 0 bottom transparent;
}
.company-information-links a {
	color: #000;
	font-size: 13.5pt;
	font-family: 'proxima_nova_rgregular';
	text-transform: uppercase;
	font-weight: normal;
	/* text-decoration: none; */
}
.company-information-links a:hover {
	color: #a3222e;
}
.company-tab-right-panel h4 {
	margin: 1.5em 0 0 0;
	color: #7b7b7b;
	font-size: 10pt;
	line-height: 1.6em;
	font-family: 'proxima_nova_ltlight';
	letter-spacing: 0.05em;
}
.company-tab-right-panel p {
	margin: 0 0 1em 0;
	font-size: 10.5pt;
	line-height: 1.6em;
	letter-spacing: 0.05em;
}

/* NEWS */
.wrap-940 {
	width: 940px;
	margin: 0 auto;	
}
.document-list {
	width: 800px;
	margin: 0 auto;
}
.document-list hr {
	margin: 30px 0;
}
.document-list-title {
	margin: 0.3em 0;
}
.document-list-item p {
	margin: 0.3em 0;
}
.document-list-item p {
	line-height: 1.3em;
	font-size: 14pt;
	color: #1d1f1e;
	font-family: 'proxima_nova_ltlight';
}

.search-form {
	width: 800px;
	margin: 0 auto;
}
.search-form .container-inline {
	position: relative;
	width: auto;
	margin-right: 200px;
}
.search-form .form-text {
	width: 100%;
}
.search-form .form-submit {
	position: absolute;
	top: 0;
	right: -200px;
}


#node-150,
.node-action,
.node-news {
	width: 800px;
	margin: 0 auto;
}

.node-action p,
.node-news p {
	line-height: 1.3em;
	font-size: 14pt;
	color: #1d1f1e;
	font-family: 'proxima_nova_ltlight';
}

.page-date-public-title {
	margin: 1em 0 0 0;
}
.page-date-public-date {
	margin: 1em 0 2em 0;
}

.jump-btn {
	position: absolute;
	bottom: 20px;
	left: 50%;
	margin-left: -24px;
	width: 48px;
	height: 74px;

	transition: padding 0.3s ease;
	-webkit-transition: padding 0.3s ease 0s;

	background-image: url('/local/templates/virs/img/scroll-down.png');
	background-repeat: no-repeat;
 	background-position: left bottom;

	color: #a3222e;
	text-align: center;
	letter-spacing: 1px;
	line-height: 2.4em;
	text-transform: uppercase;
	font-size: 9pt;

	z-index: 1;
	cursor: pointer;
}
.jump-btn-fixed {
	position: fixed;
	bottom: 56px;

	z-index: 2;
}
.jump-btn:hover {
	margin-bottom: 0 !important;

 	background-position: right bottom;
	/* padding-top: 10px; */
}
.jump-btn span {
	position: absolute;

	width: 48px;
	height: 13px;

	left: 0;
	bottom: 18px;

	background-image: url('/local/templates/virs/img/scroll-arrow.png');
	background-repeat: no-repeat;
 	background-position: left 0;
}
.jump-btn:hover span {
 	background-position: right 0;
}
/*
.jump-btn-gray {
	bottom: 40px;
	background: url('images/jump0-arw.png') no-repeat 50% 50%;
	z-index: 3;
}
.jump-btn-white  {
	bottom: 20px;
	background: url('images/jump1-arw.png') no-repeat 50% 50%;
}
*/

.nearestsalon-container {
	position: relative;
	padding-top: 100px;
	height: 200px;
	border-top: 1px solid #d5d5d5;
	margin: 30px 0 0;
	width: 100%;
	text-align: center;
}
.node-type-kitchen .nearestsalon-container {
	border: none;
	padding-top: 0px;
	padding-bottom: 60px;
}

.video {
	position: relative;
	width: 960px;
	height: 540px;
	overflow: hidden;
	margin: 0 auto;
}
.video img {
	position: absolute;
}

/* SPEC */

.spec-list-group {
	display: block;
	margin: 20px auto;
	color: #7b7b7b;
	font-size: 12pt;
	font-family: 'proxima_nova_ltlight';
	text-transform: uppercase;
	letter-spacing: 0.05em;

	max-width: 1030px;
}

.spec-single-container {
	margin: 0 auto;
	width: 800px;
}
.spec-list-container {
	margin: 50px auto 50px;
	/* width: 800px; */
}

.spec-list-container .node-salon {
	width: 800px;
}
.spec-list-container .node-salon .field-label {
	margin: 15px 0 25px;
}

.salons-spec-selectors {
	position: relative;
	max-width: 1030px;
	margin: 0 auto;
}
.salons-spec-selectors .group-rollout-selector {	
	float: left;
	width: 242px;
	margin-right: 34px;
	z-index: 2;
}
.salons-spec-selectors .group-rollout-selector-ukraina {
	margin-right: 0;
}

.discount-shield {
	position: absolute;

	color: #fff;
	height: 0;
	width: 0;
	line-height: 20px;
	text-align: center;
	border-radius: 25px;
	background-color: #fff;

	overflow: hidden;

	font-size: 12pt;
	font-family: 'proxima_nova_rgregular';

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}

.discount-label {
	display: none;
	color: #000;
}
.discount-label {
	margin-top: 20px;
	font-size: 12pt;
	text-transform: uppercase;
	font-weight: normal;
	white-space: nowrap;
	font-family: 'proxima_nova_rgregular';
}
.discount-label>div {
	display: block;
	text-transform: none;
}
.discount-label-old {
	color: #000;
}
.discount-label-old>div {
	font-size: 16pt;
	text-decoration: line-through;
}
.discount-label-new {
	color: #a3222e;
}
.discount-label-new>div {
	font-size: 18pt;
}

.gallery .image .discount-shield {
	top: 91px;
	right: 91px;
	z-index: 1;
}
.roll-tab .discount-shield,
.salon-tab .discount-shield {
	top: 30px;
	right: 180px;
}

.spec-tab-item .discount-shield {
	top: 42px;
	right: 70px;
	color: transparent;
}
.spec-tab-item:hover .discount-shield {
	top: 20px;
	right: 45px;
	height: 50px;
	width: 50px;
	line-height: 50px;
	color: #fff;
	background-color: #a3222e;
}

.gallery .image:hover .discount-shield {
	top: 66px;
	right: 66px;
	height: 50px;
	width: 50px;
	line-height: 50px;
	background-color: #a3222e;
}
.roll-tab:hover .discount-shield,
.salon-tab.active .discount-shield {
	top: 5px;
	right: 155px;
	height: 50px;
	width: 50px;
	line-height: 50px;
	background-color: #a3222e;
}

.node-spec .content {
}
.spec-content-first-column {
	width: 590px;
	float: left;
}
.spec-content-first-column .spec-slider {
	width: 550px;
	height: 365px;
	float: left;

	margin-bottom: 30px;
}

.field-dimensions {
	margin: 15px 0;
	font-size: 11pt;
}

.field-dimensions span {
	color: #999;
	text-transform: uppercase;
	display: block;
	margin-bottom: 5px;
	font-size: 9.5pt;
	letter-spacing: 0.05em;
}
.field-hull-dimensions {
}
.field-inwall-dimensions {
}

.node-spec {
	width: 200px;
	float: right;
}
.node-spec h3 {
	margin: 1.2em 0 0.4em;
}

.spec-content-first-column .field-label,
.node-spec .field-label {
	font-size: 13.5pt;
	text-transform: uppercase;
	font-weight: normal;
	font-family: 'proxima_nova_rgregular';
}

.node-spec .field-items {
	margin-bottom: 20px;
}

.field-name-field-price-new {
	color: #a3222e;
}

.field-name-field-price-old .field-items {
	font-size: 17pt;
	text-decoration: line-through;
}
.field-name-field-price-new .field-items {
	font-size: 23pt;
}


.page-full-slider-left,
.page-full-slider-right {
	float: left;
	margin-top: -54px;
	width: 50%;
}

.page-full-slider-left .content {
	margin-right: 15px;
}
.page-full-slider-right .content {
	margin-left: 15px;
}

.page-full-slider-left .prev-arrow {
	margin-left: -30px;

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}
.page-full-slider-left .next-arrow {
	margin-right: -32px;

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}
.page-full-slider-right .prev-arrow {
	margin-left: -30px;

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}
.page-full-slider-right .next-arrow {
	margin-right: -32px;

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}


.page-full-slider-left:hover .next-arrow {
	margin-right: 15px;
}
.page-full-slider-left:hover .prev-arrow {
	margin-left: 0;
}
.page-full-slider-right:hover .next-arrow {
	margin-right: 0;
}
.page-full-slider-right:hover .prev-arrow {
	margin-left: 15px;
}

.sticky-header {
	top: 84px !important;
}
.node-type-button {
	padding: 10px;
}

.simple-button {
	display: block;
	background-color: #ce2f3e;
	border: 0 none;
	border-radius: 3px;
	color: #fff;
	font-family: "proxima_nova_rgregular";
	font-size: 12pt;
	height: 16px;
	line-height: 16px;
	margin: 0 auto 20px;
	/* overflow: hidden; */
	padding: 10px 20px;
	text-align: center;
}
.simple-button:hover {
	color: #fff;
}
.load-documents {
	width: 90px;
}


.node-form select {
	width: 100%;
}
.node-form .field-name-field-project {
	min-height: 100px;
}

.designer-preview {
	position: relative;
	width: 206px;
	height: 264px;
	float: left;
}
.designer-preview-wrap {
	position: absolute;
	width: 182px;
	padding: 10px;
	border: 1px solid transparent;
	background-color: #fff;
	z-index: 0;
}
.designer-preview .content {
	display: none;
}

.designer-preview .field-type-image {
	display: block;
	color: #fff;
	width: 182px;
	height: 182px;
	border-radius: 96px;
	overflow: hidden;
}

.designer-preview:hover .designer-preview-wrap {
	border: 1px solid #ededed; 
	z-index: 1;
	box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}
.designer-preview:hover .content {
	display: block;
	color: #000;
}
.designer-preview-hover {
	position: absolute;
	/*top: 15px;*/
	left: 0px;
	width: 182px;
	height: 182px;
	border-radius: 96px;
	color: #fff;
	background-color: #a3222e;
	font-size: 11pt;
	text-align: center;
	z-index: 2;

	filter:alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	
	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;


	line-height: 260px;
}

.designer-preview:hover .designer-preview-hover {
	filter:alpha(opacity=1);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;

	line-height: 182px;
}

.designer-preview .designer-preview-wrap h3 {
	margin-bottom: 10px;
	display: inline-block;
}
.designer-preview:hover .designer-preview-wrap h3 {
	text-decoration: underline;
	color: #a3222e;
}
.designer-preview .designer-preview-wrap h3 span:after {
	display: none;
}
.designer-preview .designer-preview-wrap .content .field-item {
	font-size: 10pt;
	text-transform: uppercase;
}
.designer-preview .designer-preview-wrap .field-name-field-spec-salon .field-item,
.designer-preview .designer-preview-wrap .field-name-field-spec-salon .field-item a {
	color: #adadad;
}
.designer-preview .designer-preview-wrap .field-name-field-email {
	margin: 5px 0;
}
.designer-preview .designer-preview-wrap .field-name-field-email .field-item a {
	color: #a3222e;
}


.page-portfolio-designers {
}

.designers-list {
	width: 1030px;
	margin: 0 auto;
}

.designers-list .group-rollout-selector {
	margin: 0 10px;
	width: 300px;
	float: left;
}
.group-rollout-disigners-filter {
	width: 644px;
	height: 42px;
	margin: 50px auto;
}

.designer-view-page {
	position: relative;
	width: 1205px;
	margin: 0 auto;
}

.designers-page-media-block {
	position: relative;
	width: 590px;
	height: 425px;
	margin-bottom: 25px;
}
.designers-page-media-block.odd {
	float: left;
}
.designers-page-media-block.even {
	float: right;
}
.designers-page-media-block.center,
.designer-no-project .designers-page-media-photo {
	float: none;
	margin: 0 auto 25px;
}
.designers-page-media-photo .field-type-image {
	overflow: hidden;
	width: 280px;
	height: 425px;
	float: left;
}
.designers-page-media-photo .field-type-image img {
	height: 100%;
}
.designers-page-media-info {
	padding: 25px;
	width: 150px;
	height: 150px;
	border-top: 1px solid #ededed;
}
.designers-page-media-info.odd {
	float: left;
}
.designers-page-media-info.even {
	float: right;
}
.designers-page-media-info h2,
.designers-page-media-info h3  {
	margin: 0;
	color: #7b7b7b;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.designers-page-media-info h2  {
	font-size: 11pt;
}
.designers-page-media-info h3  {
	font-size: 9pt;
}
.designers-page-media-info p  {
	margin: 0.5em 0;
	line-height: 1.1em;
}
.designers-page-media-photo .designers-page-media-info {
	height: auto;
}
.designers-page-media-photo .designers-page-media-info h3 {
	margin-bottom: 15px;
}
.designers-page-media-photo .designers-page-media-info .field-item {
	line-height: 1.6em;
	font-size: 11pt;
}
.designers-page-media-photo .designers-page-media-info .field-name-field-spec-salon {
	text-transform: uppercase;
}
.designers-page-media-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.designers-page-media-slider .prev-arrow {
	margin-left: -30px;

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}
.designers-page-media-slider .next-arrow {
	margin-right: -32px;

	transition: 0.3s ease;
	-webkit-transition: 0.3s ease 0s;
}
.designers-page-media-slider:hover .prev-arrow {
	margin-left: 0;
}
.designers-page-media-slider:hover .next-arrow {
	margin-right: 0;
}

.portfolio-project-media {
	display: block;
	position: relative;
	overflow: hidden;
	height: 100%;
	float: left;
	margin-bottom: 25px;
}
.portfolio-project-media.single {
	margin: -84px 0 -37px;
	width: 100%;
}
.portfolio-project-media.double {
	margin: 25px 0 25px; /* + 25 top + 25 bottom */
	width: 50%;
}
.portfolio-project-media .portfolio-project-media-content {
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
/*.portfolio-project-media*/ .portfolio-project-media-content .gallery-inner-text {
	width: 72%;
	margin: 0 auto;
}

.portfolio-project-media.single .portfolio-project-media-content {
	top: 84px;
	bottom: 37px;
}
.portfolio-project-media.double-one .portfolio-project-media-content {
	left: 0;
	right: 11px;
}
.portfolio-project-media.double-two .portfolio-project-media-content {
	left: 11px;
	right: 0;
}
.portfolio-project-media .fit-inner-image {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

	overflow: hidden;
}
.portfolio-project-media .fit-inner-image img {
	width: 100%;
	height: auto;
}

.portfolio-project-media .show-more {
	position: absolute;
	left: 40px;
	bottom: 40px;
	color: #fff;
	z-index: 1;
}
.portfolio-project-media .show-more:hover {
	color: #a3222e;
}

.tumbler-panel {
	float: right;
	margin: 0 12px 18px;
	width: 388px;
}
.tumbler-panel .tumbler-block {
	height: 182px;
	line-height: 182px;
	margin-bottom: 8px;
	text-align: center;
}

.tumbler-text {
	color: #1c201d;
	font-size: 10pt;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.tumbler-text.active {
	color: #a3222e;
}
.tumbler-text-new {
}
.tumbler-text-old {
}

.tumbler-button {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 22px;
	margin: -6px 10px;
	border-radius: 11px;
	background-color: #ccc;
}

.tumbler-button i {
	position: absolute;
	display: inline-block;
	top: 2px;
	width: 18px;
	height: 18px;
	border-radius: 9px;
	background-color: #f2f2f2;

	transition: left 0.3s ease;
	-webkit-transition: left 0.3s ease 0s;
}
.tumbler-button-new i {
	left: 2px;
}
.tumbler-button-old i {
	left: 24px;
}

.tumbler-block {
	position: relative;
}
.tumbler-block .ajax-progress /*.throbber*/ {
	display: none;
	position: absolute;
	width: 63px;
	height: 18px;

	left: 50%;
	top: 50%;
	margin-left: -32px;
	margin-top: -9px;
}
.tumbler-block .ajax-progress .throbber {
	width: 63px;
	height: 18px;
	background: url('images/loader-small.gif') no-repeat 50% 50%;
}

blockquote {
	margin: 40px 0;
	padding: 0 25px 0;
	border-left: 2px solid #a82d39;
}

blockquote h2 {
	font-size: 18pt;
}

#node-admin-content table,
#node-admin-content fieldset {
	width: 800px;
	margin: 0 auto;
}
#node-admin-content .container-inline .form-submit {
	float: right;
}

.image-widget-data .description {
	display: none;
}
.image-widget-data .form-type-textfield input {
	width: 470px;
}
.image-widget {
	width: 700px;
}

.field-widget-dragndrop-upload-image {
	position: relative;
}
.field-widget-dragndrop-upload-image .image-widget {
	width: auto;
}
.field-widget-dragndrop-upload-image div.image-widget-data {
	width: 100%;
}
.field-widget-dragndrop-upload-image .droppable {
	float: none;
	margin: 0 0 20px;
	padding: 1px;
}
.field-widget-dragndrop-upload-image .droppable-standard-upload {
	min-height: auto;
}
.field-widget-dragndrop-upload-image .droppable-message {
	line-height: 1.5em;
	clear: both;
	padding: 20px;
	background-color: #f7f7f7;
}
.field-widget-dragndrop-upload-image .droppable-message:hover {
	background-color: transparent;
}
.field-widget-dragndrop-upload-image .droppable-controls {
	position: absolute;
	bottom: 0;
	right: 0;
}
.field-widget-dragndrop-upload-image .droppable-controls input {
	display: none;
}
.field-widget-dragndrop-upload-image .droppable-preview-image {
	width: 190px;
}

.droppable-browse-button {
	width: 80px;
	margin: 10px auto 20px;
}


/* CAPTHA */
.form-item-captcha-response {
	float: right;
}


.image-widget .image-preview {
	width: 120px;
}

.node-form>div>.form-actions input {
	float: left;
	margin: 0 20px 20px 0;
}
.node-form>div>.form-actions {
	height: 20px;
	clear: both;
}

/* tokens */
.node-token-area {
	margin: 30px 0;
}
.node-token-area>div {
	padding: 20px 0;
}
.node-token-area-panel {
	/*margin: 0 auto;*/
}
.node-token-area,
.node-token-area>div {
	background-image: url("../img/menu-slider-dev.gif");
	background-repeat: repeat-x;
}
.node-token-area {
	background-position: 0 0;
}
.node-token-area>div {
	background-position: 0 bottom;
}
.node-token-area h3 {
	margin: 0.7em 0 !important;
}
.node-token-area .gallery-item {
	margin: 0 22px 14px 0;
}


/* P A R T H N E R S */
.partners-items {
	width: 980px;
	margin: 60px auto;
}
.partners-items-line-wrapper {
	margin: 50px 0;
}
.partners-items-line {
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.partners-item {
	display: inline-block;
	/* float: left; */
	width: 196px; /* 20% */
	height: 100%;
	opacity: 0.5;

}
.partners-item:hover {
	opacity: 0.8;
}
.partners-item.active {
	opacity: 1;
}
.partners-item .partners-item-logo {
	overflow: hidden;
	text-indent: -999px;
	color: transparent;

	height: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.partners-item-info-wrapper {
	display: none;
	clear: both;
	margin-top: 50px;
/*
	opacity: 0;
*/
	height: 1px;
	overflow: hidden;

	transition: height 0.3s ease;
	-webkit-transition: height 0.3s ease 0s;
}
.partners-item-info-wrapper.active {
	display: block;

	opacity: 1;
/*
	height: auto;
	overflow: visible;
*/
}
.partners-item-info-wrapper hr {
	position: absolute;
	display: block;
	left: 35px;
	right: 35px;
	width: auto;

	border: 0;
	margin: 0;
	height: 1px;
	background-color: #d1d1d1;
}
.partners-item-info {
	width: 600px;
	margin: 0 auto;
	padding: 35px 0;
}

.partners-item-info-close {
	margin: 20px 0 0;
	text-align: center;
}
.partners-item-info-close-btn {
	font-size: 9pt;
	letter-spacing: 0.07em;
	text-transform: uppercase;

	padding-left: 18px;
	background: url('/local/templates/virs/img/rollup-btn.png') no-repeat 0 4px transparent;

	cursor: pointer;
}
.partners-item-info-text  {
	line-height: 1.5em;
}
.partners-item-info-text h2 {
	font-size: 14pt;
	margin: 0 0 20px;
	text-align: center;
}


/* BtB */
.miele {
	text-transform: none !important;/*!*/
}

.btb-item-list {
	margin: 0 auto;
	padding: 0;
	padding-bottom: 20px;
}
.btb-item-list-data {
	display: none;
}

.btb-item-inner-data {
	width: 940px;
	margin: 0 auto;
}
.btb-item-inner-head {
	width: 800px;
	margin: 0 auto;
}
.btb-item-inner-data .field-name-body {
	width: 800px;
	margin: 0 auto;

	line-height: 1.5em;
	letter-spacing: 0.03em;
}
.btb-item-inner-data h2 {
	width: 470px;
	margin-bottom: 1em;
}
.btb-item-inner-data h2 {
	font-size: 22pt;
	line-height: 1.3em;
	/*letter-spacing: 0.02em;*/
	letter-spacing: 0;

	text-transform: none;/*!*/
}
.btb-item-inner-data h3 {
	margin-top: 40px;
	margin-bottom: 15px;
	font-size: 13pt;
	line-height: 1.5em;
	letter-spacing: 0.03em;
}
.btb-item-inner-data hr {
	margin: 50px 0;
}

.btb-item-inner-data .field-name-body .field-items {
	width: 460px;
}
.b2b-wrap {
	margin-top: 25px;
	margin-bottom: 25px;
}

.header-space-wrapper {
	position: relative;
	overflow: hidden;
	width: auto;
	height: 100%;
	margin: -84px 0 -37px;
	/*background-color: #fff;*/
	min-height: 600px;
	max-height: calc(66vw);
}
.header-space-container {
	position: relative;
	overflow: hidden;
	width: 940px;
	height: 530px;
	margin: 0 auto;
	/*height: 500px;*/
}
.header-space-container>img {
}
.header-space-data {
	position: absolute;

	top: 68%;/*!*/

	color: #fff;
	text-align: center;
	width: 100%;
}
.header-space-data h1,
.header-space-data h2 {
	margin-top: 0;
	text-transform: none;/*!*/
}
.header-space-data h1 {
	line-height: 1.4em;
	margin-bottom: 0.3em;
	letter-spacing: -0.02em;

	font-size: 42pt;
	color: #a3222e;
}
.header-space-data p {
	width: 60%;
	margin: 0 auto;

	line-height: 1.5em;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 13pt;
	color: #000;
}
.header-space-data h1,
.header-space-data h2,
.header-space-data p {
	/* color: #fff; */
}

.btb-description-area {
	width: 940px;
	margin: 0 auto;
}
.btb-description-data {
	width: 800px;
	margin: 50px auto;

	line-height: 1.5em;
	letter-spacing: 0.03em;
}
.btb-description-data p {
	width: 460px;
}
.btb-description-data ul {
	margin: 0;
	padding: 0;
	width: 230px;
	float: right;
	line-height: 1.4em;
}
.btb-description-data ul li {
	line-height: 1.3em;
	margin: 0 0 1.5em 0;
	padding: 0;
	list-style: none;
	list-style-image: none;
	font-size: 10.5pt;
}


.btb-item-inner-data .field-name-field-recommendation-letter {
	width: 300px;
	float: right;
	margin-bottom: 40px;
}
.btb-item-inner-data .field-name-field-recommendation-letter .field-label {
	font-weight: normal;
	font-size: 10.5pt;
	margin-bottom: 15px;
}

.btb-item-inner-data .field-name-field-recommendation-letter .field-item {
	float: left;
	border: 1px solid #ebebeb;
}
.btb-item-inner-data .field-name-field-recommendation-letter .field-item>img {
	float: left;
}


/* R E V I E W S */

#block-mytools-claim,
#block-faq-ask-ask-a-question {
	border-top: 1px solid #d1d1d1;
	padding: 20px 50px;
	margin: 40px 0;

	height: auto;
	overflow: visible;
}

#block-mytools-claim>h2,
#block-faq-ask-ask-a-question>h2 {
	margin: 1em 0;
	text-align: center;

	font-size: 14pt;
	font-family: 'proxima_nova_rgregular';
}

#block-mytools-claim>.content,
#block-faq-ask-ask-a-question>.content {
	position: relative;
	width: 592px;
	margin: 0 auto;
	clear: both;
	overflow: visible;

	top: auto;
	bottom: auto;
}
#block-mytools-claim label,
#block-faq-ask-ask-a-question label {
	font-weight: normal;
	margin-bottom: 0.5em;
	font-size: 14pt;
}
#block-mytools-claim .form-item,
#block-faq-ask-ask-a-question .form-item {
	margin: 0 0 20px;
}


/* textarea */

#block-mytools-claim input.form-text,
#block-faq-ask-ask-a-question input.form-text {
	width: 250px;
}

/* left */
#block-faq-ask-ask-a-question .form-item-title,
#block-mytools-claim .form-item-card,
#block-mytools-claim .form-item-mail {
	float: left;
}

/* right */
#block-faq-ask-ask-a-question .field-name-field-review-city,
#block-mytools-claim .form-item-fio,
#block-mytools-claim .form-item-phone {
	float: right;
}
/**/

#block-mytools-claim .form-item-card-select {
	clear: both;
}

/* textarea */
#block-mytools-claim form-type-textarea,
#block-faq-ask-ask-a-question .field-widget-text-textarea {
	clear: both;
}
#block-mytools-claim textarea,
#block-faq-ask-ask-a-question textarea {
	padding: 15px;
	min-height: 110px;

	border-radius: 4px;
	color: #000;
	border: 1px solid #aaa;

	font-size: 10.5pt;
	font-family: 'proxima_nova_rgregular';
}
#block-mytools-claim textarea.error,
#block-faq-ask-ask-a-question textarea.error {
	border: 2px solid #f00;
}

#block-faq-ask-ask-a-question textarea::-moz-placeholder,
#block-faq-ask-ask-a-question textarea::-webkit-input-placeholder {
	font-family: 'proxima_nova_rgregular';
}
/**/

/* actions */
#block-mytools-claim .form-actions,
#block-faq-ask-ask-a-question .form-actions  {
	text-align: center;
	margin: 25px 0 0;
	height: auto;
}
#block-mytools-claim .form-actions input,
#block-faq-ask-ask-a-question .form-actions input {
	display: inline-block;
	float: none;
	margin: 0 10px;
}
/**/

.claim-form-rule {
	margin-bottom: 30px;
	float: left;
	width: 100%;
}
.claim-form-rule hr {
	position: absolute;
	left: -104px;
	width: 800px;
	margin: 0;
}

.claim-description-text {
	margin: 30px 0;
	line-height: 1.4em;
	font-style: normal;
	font-size: 14pt;
	color: #000;
	letter-spacing: 0;

	font-family: 'proxima_nova_rgregular';
}

#block-mytools-claim .form-type-radios {
	text-align: center;
}

#block-mytools-claim .form-type-radios>label {
	font-size: 11pt;
	text-transform: uppercase;
	color: #000;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 20px;

	font-family: 'proxima_nova_rgregular';
}

#block-mytools-claim .form-type-radios .form-item {
	display: inline-block;
	width: 110px;
}
#block-mytools-claim .form-type-radios .form-item>input {
	margin: -5px 5px 0 0;
}
#block-mytools-claim .form-type-radios .form-item>label {
	font-size: 14pt;
	font-family: 'proxima_nova_rgregular';
}

#block-mytools-claim .form-item-card {
	display: none;
	float: none;
}
#block-mytools-claim .form-item-card>label {
	color: #cfcfcf;
}

.claim-privacy-text {
	margin-top: 30px;
	color: #a7a7a7;
	line-height: 1.4em;
	font-size: 10.5pt;
	font-family: 'proxima_nova_rgregular';
}

/* F A Q */

.faq-question {
	padding: 0;
	text-align: center;
	color: #696969;
	text-transform: uppercase;
	font-size: 10pt;
	letter-spacing: 0.07em;
	line-height: 1.5em;
	margin: 10px 0;

	font-family: 'proxima_nova_rgregular';
}
.node-faq {
}
div.faq-detailed-question {
	margin: 20px 0 0;
	line-height: 1.5em;
	font-style: normal;
	font-size: 14pt;
	color: #000;
	letter-spacing: 0;

	font-family: 'proxima_nova_rgregular';
}
.node-faq ul.links {
	display: block;
	text-align: center;
	margin: 20px 0 0;
}

.faq_edit_link {
	padding: 0;
	margin: 0;
}

div.messages {
	margin: 60px 0 6px;
}

/* SOCIAL */

.soc-icons-area {
	margin-top: 36px;
}
.soc-icon {
	display: block;
	float: left;

	height: 33px;
	width: 33px;
	padding: 0;
	margin: 0 11px 0 0;

	background-image: url('/local/templates/virs/img/social-icons.png');
	background-repeat: no-repeat;
	background-position: 0 0;
}


.soc-icon-houzz {	background-position: 0 0; }
.soc-icon-instagram {	background-position: -33px 0; }
.soc-icon-google {	background-position: -66px 0; }
.soc-icon-facebook {	background-position: -99px 0; }
.soc-icon-youtube {	background-position: -132px 0; }
.soc-icon-pinterest {	background-position: -165px 0; }

.soc-icon-houzz:hover {	background-position: 0 -33px; }
.soc-icon-instagram:hover {	background-position: -33px -33px; }
.soc-icon-google:hover {	background-position: -66px -33px; }
.soc-icon-facebook:hover {	background-position: -99px -33px; }
.soc-icon-youtube:hover {	background-position: -132px -33px; }
.soc-icon-pinterest:hover {	background-position: -165px -33px; }




/* MOBILE */
#main-menu-links>li.first a {
	display: inline-block;
	text-align: center;
	width: 30px;
	line-height: 81px;
	padding: 0 31px;
	content: "";
	text-indent: -999px;

	/*background: url('images/menu.gif') no-repeat 50% 50% transparent;*/
	background: url('data:image/gif;base64,R0lGODlhHgAUAIAAALS0tP///yH5BAEAAAEALAAAAAAeABQAAAIjhI+py+0Zopy02ouz3rz7B4ai45XmiabfyLaPCsfyTLn2fRQAOw==') no-repeat 50% 50% transparent;
}
#main-menu-links>li.first a:hover,
#main-menu-links>li.first a.active {
	padding: 0 32px;
}


#main-menu-links>li.first {
	display: none;
}




.node-token-wrap {
	margin: 0 auto;
	width: 820px;
}

.page-full-slider .arrow {
	margin: 0 !important;
}

/* partners */
.partners-mobile {
	width: 392px;
	margin: 0 auto;
	display: none;
}
.partners-mobile .partners-item-info {
	width: 392px;
}
.partners-mobile .partners-item .partners-item-logo {
	height: 110px;
}

/* = = = = = */

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

	.node-facade {
		margin-right: 182px;
		width: auto;
	}

	#main-menu-links {
		position: static;
		width: 96px;
		margin: 0 auto;
	}

	.block-slider .content,
	.page-hilfe-slider .content {
		margin: 0 !important;
	}

	body,html {
		min-width:550px;
	}

	#block-block-1 {
		display: none;
	}

	.block-panel-free {
		padding: 0;
	}
	.block-panel-free .horizontal-rule { /* ! ! ! */
		margin: 0;
	}
	.block-quad {
		display: none;
	}
	.region-content {
		margin-bottom: 0px;
	}
	#block-slider-news {
		margin-bottom: 0px;
	}
/* - - - */
/*
	.block-quad {
		width: 100%;
	}
	.block-half {
	}

	.content-menu {
		margin: 0;
	}
	.block-panel-free h3 {
		text-align: center;
	}
	.block-panel-free ul {
		margin-top: 0;
		text-align: center;
	}
*/

	.subscribe-container {
		padding: 20px 14px;
		margin: 30px auto;
	}
	#promo-coupon-subscribe-form h2 {
		font-size: 18pt;
	}
	#edit-logos {
		margin: 30px 0 30px 0;
	}


/* CARD */
	.form-description {
		width: 420px;
	}
	.client-registration-form {
		width: 298px;
		margin: 0 auto;
	}
	.form-input-help {
		display: none;
	}

/* GMAP */
	.gmap-control {
		float: none;
		width: 418px !important;
	}

	.partners-items {
		display: none;
	}
	.partners-mobile {
		display: block;
	}

/* history */
	#timeline {
		width: 420px;
	}
	#issues {
		width: 290px;
	}
	#issues li {
		width: 290px;
	}
	#issues li img {
		width: 100%;
		height: auto;
	}
	#dates {
		width: 120px;
	}
	#dates li {
		width: 100px;
		height: 100px;
		line-height: 100px;
		font-size: 15px;
	}
	#dates a {
		padding: 0 0 0 20px;
		line-height: 28px;
		font-size: 14pt;
	}
	#dates .selected {
		font-size: 24pt;
	}

/* models*/

/*
	.page-hilfe-slider {
		width: 100% !important;
		float: none !important;
		margin: -84px 0 -37px; !important;
	}
	.page-hilfe-slider .content {
		margin: 0 !important;
	}
*/
	.page-hilfe-slider {
		display: none;
	}

	.node-kitchen .field-label-above {
		padding: 30px;
	}
	.gallery-inner-text h2 {
		font-size: 30pt;
	}
	.gallery-inner-text p {
		font-size: 14pt;
	}
/* - - - - */

	.jump-btn {
		display: none;
	}

	.site-phone {
		position: absolute;
		height: 84px;
		line-height: 84px;
		top: 0;
		left: auto;
		right: 10px;
		margin-left: auto;
		font-size: 17.5pt;
		white-space: nowrap;
		letter-spacing: -0.03em;
	}
	.site-phone div {
		display: none;
	}
	.find-btn {
		display: none;
	}

	#block-mytools-slider-main {
		font-size: 45%;
	}
	#block-mytools-slider-main h1 {
		line-height: 0.9em !important;
	}
	#block-mytools-slider-main h2 {
		font-size: 2em;
	}
	#block-mytools-slider-main .inside-content > a {
		padding: 0 40px;
	}
	.white-back.prev-arrow,
	.white-back.next-arrow {
		opacity: 0.5;
	}

	#block-mytools-slider-main h1,
	#block-mytools-slider-main h2 {
		letter-spacing: 0;
	}

	#ampersant-img {
		transform: scale(0.6);
	}

	.page-central-title,
	.group-selector-title {
		font-size: 24pt;
		padding: 0;
	}

	h1 {
		font-size: 24pt;
	}
	h2 {
		font-size: 16pt;
	}
	p {
		font-size: 10pt;
	}
	span.date {
		font-size: 10pt;
	}


/* MAP */
	.node-token-wrap {
		width: auto;
	}
	.salons-tab-map-panel {
		width: 390px;
		float: none;
	}
	.simple-tab-gmap-multi-tabs {
		width: 390px;
	}
	.simple-tab-gmap-multi-tabs .gmap-multi-wrap {
		width: 390px;
	}
	.simple-tab-gmap-multi-tabs .gmap-multi-wrap > div {
		width: 390px;
	}

	/* salons */
	.salon-media-inside {
		position: relative;
		height: 300px !important;
		width: 420px !important;
		overflow: hidden;
		margin-bottom: 20px;
	}
	.salon-media-inside img {
		width: 420px;
	}

	.salon-media-data {
		width: 420px;
		height: auto;
	}

/* - - - */
	.salon-media-data .salon-slider {
		width: 420px;
		height: 300px;
		float: none;
	}
	.salon-media-map3d {
		position: static;
		width: 420px;
		height: auto;
	}
	.salon-media-3d {
		display: none;
	}

	.node-salon .field-type-text,
	.node-salon .field-name-field-work-time {
		width: auto;
		padding: 0;
		float: none;
		margin-bottom: 20px;
	}
	.node-salon .field-type-text .field-label,
	.node-salon .field-name-field-work-time .field-label {
		margin-bottom: 5px;
	}

	/* content */
	.spec-content-first-column {
		width: 412px;
	}
	.spec-content-first-column .spec-slider {
		width: 412px;
		height: 300px;
	}
	.node-spec {
		width: auto;
		float: none;
	}

	.roll-tab .discount-shield,
	.salon-tab .discount-shield {
		right: 60px;
	}
	.roll-tab:hover .discount-shield,
	.salon-tab.active .discount-shield {
		right: 35px;
	}


/* - - - - */

	.fixed-header {
/*
		-webkit-transform:translateZ(1px);
		-moz-transform:translateZ(1px);
		-o-transform:translateZ(1px);
		transform:translateZ(1px);
*/
	}
	.fixed-header {
	/*	position: absolute !important;
		margin-top: 0 !important;*/
		min-width: 550px;
	}
	.fixed-sub-header {
		/*min-width: 520px;*/
	}

	.site-body,
	.menu-panel {
		/*min-width: 520px;*/
	}

	.fixed-footer { /*!*/
		position: static;
		min-width: 550px;
		padding: 10px 0 0;
	}
	.fixed-footer>span {
		display: none;
	}

/*
	.fixed-footer {
		min-width: 520px;
		height: 60px;
	}
	.fixed-footer>span {
		float: none;
		display: block;
	}
*/

	.document-list,
	.search-form,
	#node-150,
	.node-action,
	.node-news,
	.spec-single-container,
	.spec-list-container,
	.spec-list-container .node-salon,
	#node-admin-content table,
	#node-admin-content fieldset,
	.claim-form-rule hr {
		width: 412px;
	}
	.spec-list-container .gallery {
		width: 412px !important;
	}

	.spec-list-container .gallery:not(.gallery-slider) .gallery-item {
		position: relative;
		width: 100%;
		margin: 0 0 30px;
	}
	.spec-list-container .gallery .gallery-item .image {
		float: left;
		margin: 0 20px 0 0;
	}
	.spec-list-container .gallery .gallery-item .image .discount-shield {
		display: none;
	}

	.spec-list-container .gallery .gallery-item .link {
		overflow: hidden;
		font-size: 16pt;
	}
	.spec-list-container .gallery .gallery-item .link .discount-shield {
		top: 0px;
		right: 0px;
		height: 50px;
		width: 50px;
		line-height: 50px;
		background-color: #a3222e;
	}
	.spec-list-container .gallery .discount-label {
		display: block;
	}



/* - - - */
	.node-slider-style-p800x600 {
		height: 300px;
		width: 400px;
	}
	.node-slider-style-p800x450 {
		height: 225px;
		width: 400px;
	}


/* - - - */

	.page-header-image img {
		height: 300px;
		width: auto;
	}

	#node-2,
	#node-3 {
		right: 0;
		left: 0;
	}
	#node-2 .field-item,
	#node-3 .field-item {
		padding: 0;
	}
	.node-root {
		width: 100% !important;
	}

	.node-type-root .page-half-slider {
		display: none;
	}

	.gallery {
		padding: 50px 30px;
	}
	.gallery:not(.gallery-slider-action) {
		padding: 0;
	}
	.with-tumbler-panel {
		padding: 10px 0 100px;
	}
	.tumbler-panel {
		position: absolute;
		float: none;
		clear: both;
		width: 388px;
		/* margin-top: 40px; */
		bottom: 0;
		left: 50%;
		margin: 0 0 40px -194px;
	}
	.tumbler-panel .tumbler-block {
		height: auto;
		line-height: 1em;
		margin: 0;
	}

/* - - - */
	.salon-list-container {
		width: 420px;
		margin: 50px auto 50px;
	}
	.node-salon {
		width: 420px;
		margin: 0 auto;
	}
	.salon-media-data {
	}
	.salon-media-view {
		width: 420px !important;
	}
	.facade-full-view-wrap {
		width: 420px;
	}
	.node-type-page .block-system .node-page {
		width: 420px;
		margin: 0 auto;
	}

/* - - - */
	.salons-spec-selectors .group-rollout-selector {
		margin: 20px 0;
		width: 100%;
	}
	.designers-list {
		width: 420px;
		margin: 0 auto;
	}

	.designers-list .group-rollout-selector {
		margin: 0 0 20px 0;
		width: 420px;
	}

/* - - - */
	.menu-panel > div {
		width: auto;
		height: auto;
	}

/* - - - */
	#facade-full-view {
		margin-right: 0;
	}
	.node-kitchen {
		width: auto;
	}

/* - - - */


	#main-menu-links>li {
		display: none;
	}
	#main-menu-links>li.first {
		display: block;
	}

	.menu-panel {
		position: fixed;
		/* min-height: calc(100% - 156px); */
		height: calc(100% - 86px) !important;
		/* min-height: 470px; */
		overflow-y: scroll;
		padding: 0;
		margin-right: -20px;
		background-color: #fff;
		z-index: 299;

		min-width: 420px;
	}
	.menu-panel>div {
		position: relative;
		height: 100%;
	}
	.menu-panel .mobile-menu-list,
	.menu-panel .mobile-menu-container {
		min-height: calc(100% - 80px);
	}

	.mobile-menu-footer-place {
		position: absolute;
		width: 100%;
		text-align: center;
		background-color: #fff;
		margin-top: -1px;
		height: 80px;
		overflow: hidden;
	}
	.mobile-menu-footer-fix {
		height: 80px;
	}

	.mobile-menu-footer {
		border-top: 1px solid #e0e0e0;
		margin: 0 auto;
		padding: 20px 0;
		max-width: 550px;
		min-width: 260px;
	}

	.mobile-menu-footer .animated {
		display: inline-block;
		margin: 0 10px;
	}

/*
	.menu-panel>div {
		height: 100%;
		overflow-y: scroll;
		margin: 0 -20px;
	}
*/

	.tab-close-arw {
		display: none;
	}


	.header-space-container {
		width: 450px;
		height: 350px;
	}
	.b2b-wrap {
		width: 420px;
	}
	.b2b-image {
		width: 420px;
		height: 315px;
	}
	.b2b-image img {
		float: left;
	}
	.b2b .field-name-field-image {
		height: 60px;
		width: 320px;
	}
	.btb-description-area {
		width: 420px;
	}
	.btb-description-data {
		width: 420px;
		margin: 30px auto;
	}

	.btb-item-inner-data {
		width: 420px;
	}

	.btb-item-inner-data .field-name-body,
	.btb-item-inner-head,
	.btb-description-data p {
		width: 420px;
	}
	.btb-item-inner-data h2,
	.btb-item-inner-data h3,
	.btb-item-inner-data .field-name-body .field-items {
		width: 420px;
	}

	.b2b .prev-arrow {
		left: 25px;
	}
	.b2b .next-arrow {
		right: 25px;
	}

	.btb-description-data ul {
		width: 420px;
		float: none;
	}
	.btb-description-data ul li {
		font-size: 10pt;
	}
	.btb-item-inner-data .field-name-field-recommendation-letter {
		display: none;
	}

	/*!!!*/
	.header-space-data h1 {
		font-size: 28pt;
	}
	.header-space-data p {
		width: 80%;
		font-size: 10pt;
	}

	.content-shaded {
		min-width: 200px;
	}


	/* - - - */
	.site-body {
		padding: 0;
	}
	.fixed-header a.site-logo {
		left: 10px;
	}
	#main-menu-links {
		left: 220px;
	}

		/*min-height: 440px;*/
		/* max-height: 400px !important; */

	.menu-content {
		/*padding: 0 100px 0; */
	}


	.gallery:not(.gallery-slider-action) .gallery-item {
		width: 246px;
	}
	.gallery:not(.gallery-slider-action) .gallery-item .image {
		width: 246px;
		height: 246px;
	}
	.gallery:not(.gallery-slider-action) .gallery-item .image::before {
		width: 230px;
		height: 230px;
	}

	.group-rollout-disigners-filter {
		width: auto;
	}

	.designer-view-page {
		margin-top: 40px;
		width: 550px;
	}
	.designer-view-page center{
	}
	.designers-page-media-block {
		width: 550px;
		height: 300px;
	}
	.designers-page-media-block.odd,
	.designers-page-media-block.even,
	.designers-page-media-info.odd,
	.designers-page-media-info.even {
		float: none;
	}
	.designers-page-media-info {
		width: 150px;
		height: auto;
		padding: 0 0 25px 25px;
		border: 0;
	}
	.designers-page-media-photo {
	}
	.designers-page-media-photo .field-type-image {
		height: 300px;
	}
}

@media only screen and  (max-width: 980px) and (orientation : landscape) {
	.block-mytools,
	.block-slider,
	.page-full-slider {
		min-height: 100%;
		margin: 0 0 37px;
	}

	.block-mytools .content,
	.block-slider .content,
	.page-full-slider .content {
		top: 0;
		bottom: -37px;
	}

	.fixed-header {
		height: 46px;
		margin: 0 !important;
		position: static !important;
	}


	.menu-content {
		padding: 0 100px 0 !important;
	}

	.fixed-header a.site-logo {
		top: 6px;
	}
	#main-menu-links {
		height: 46px;
	}
	#main-menu-links li {
		height: 46px;
		line-height: 46px;
	}
	#main-menu-links > li.first a {
		height: 46px;
		line-height: 43px;
	}
	.site-phone {
		height: 46px;
		line-height: 46px;
	}
	.menu-panel {
		top: 46px;
		height: calc(100% - 46px) !important;
	}
}


/* = = = = = */

.mobile-menu-list,
.mobile-menu-container {
	width: 390px;
	margin: 0 auto;
}
.mobile-menu-item {
	border-bottom: 1px solid #e0e0e0;
	text-align: center;
}
.mobile-menu-item span {
	display: block;
	color: #a2232e;
	padding: 30px;
	font-size: 14pt;
	line-height: 1.20em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.mobile-menu-item a {
	display: block;
	color: #000;
	padding: 30px;
	font-size: 17pt;
	line-height: 1.0em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.mobile-menu-item a:hover {
	text-decoration: underline;
}

.tab-back {
	display: none;
	position: absolute;
	top: 25px;
	left: 35px;
	width: 24px;
	height: 24px;

	background-image: url("../img/larrow.gif");

	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: transparent;

	cursor: pointer;
}
.tab-back:hover {
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
.mobile-menu-container {
	display: none;
}

.animated.icon-book,
.animated.icon-eye {
	padding-left: 50px;
	line-height: 40px;
	font-size: 13pt;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.animated.icon-book .ul,
.animated.icon-eye .ul {
	left: 50px;
}
.animated.icon-book .ic,
.animated.icon-eye .ic {
	width: 40px;
	height: 40px;
	margin-top: -20px;
}
.animated.icon-book .ic {
	background-image: url("/local/templates/virs/img/icon-book.png");
}
.animated.icon-eye .ic {
	background-image: url("/local/templates/virs/img/icon-eye.png");
}


.fixed-fix {
	left: 0;
	right: 0;
	position: absolute;
}


/* - - - */
.fixed-header.hide {
	margin-top: -84px;
}
.fixed-sub-header.hide {
	display: none;
}
.menu-content.hide {
	display: none;
}
.site-body.full {
	padding: 0;
}


/* MAP */
.salon-type-marker {
	display: inline-block;
	font-weight: bolder;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 7.5pt;
	margin-left: 0;
	color: #a3222e;
	line-height: 13pt;
	vertical-align: middle;
}
.salon-type-marker b {
	display: block;
	float: left;
	width: 16px;
	height: 16px;
	margin-right: 2px;
	transform: scale(0.83);
	-webkit-transform: scale(0.83);
}

.simple-tab-salon-type-marker {
	display: inline-block;
	font-size: 10.5pt;
	margin-left: 9px;
	margin-bottom: 10px;
	color: #858585;
	line-height: 12pt;
	vertical-align: middle;
}

.simple-tab-salon-type-marker b {
	display: block;
	float: left;
	width: 16px;
	height: 16px;
	margin-right: 3px;
}

.salon-type-0 b {	background-image: url("/local/templates/virs/img/salon_0.png");	}
.salon-type-1 b {	background-image: url("/local/templates/virs/img/salon_1.png");	}
.salon-type-2 b {	background-image: url("/local/templates/virs/img/salon_2.png");	}
.salon-type-3 b {	background-image: url("/local/templates/virs/img/salon_3.png");	}


/* PRICE BLOCKS */

#kitchen-price {
	margin: 0 auto;
	max-width: 1000px;
}
#kitchen-price>h2 {
	font-size: 26pt;
}
#kitchen-price .block-block {
	margin: 60px auto;
}
#kitchen-price .block-block div.content > p,
#kitchen-price .block-block div.content > h3 {
	margin: 0;
}

.block-block {
	margin: 60px auto 120px;
	overflow: hidden;
	max-width: 1000px;
}
.block-block div.content:after {
	content: "";
	display: block;
	clear: both;
}
.block-block div.content {
	position: relative;
	margin-left: 100px
}
.block-block div.content>div {
	position: absolute;
	right: 100%;
}
.block-block div.content>p,
.block-block div.content>h2,
.block-block div.content>h3 {
	padding-left: 6.6%;
}
.block-block div.content>p {
	margin: 0.5em 0 1em;
	line-height: 1.5em;
	font-size: 16pt;
	clear: both;
}
.block-block div.content>h2 {
	font-size: 26pt;
	margin: 0;
	line-height: 1em;
}
.block-block div.content>h3 {
	float: left;
	clear: both;
	margin: 0.5em 0 0;
	line-height: 1.4em;
	font-size: 16pt;
	white-space: nowrap;
	font-family: 'proxima_nova_rgregular';
}
.block-block div.content>h3 u {
	display: block;
	position: absolute;
	right: 0;
	text-decoration: none;
	color: #a3222e;
	width: 26.6%;
	margin-top: -1.4em;
	text-transform: none;
	background-color: #fff;
	/*font-family: 'proxima_nova_ltlight';*/
	padding-left: 20px;
	margin-left: -20px;
	z-index: 1;
}

.block-block div.content>h3:after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 2px;
	margin-top: 0.66em;
	font-size: 16pt;
	font-family: 'proxima_nova_rgregular';
	background-color: #e1e1e1;
	margin-left: 20px;
	z-index: 0;
}


.block-block div.content>ul {
	display: block;
	float: left;
	margin: 0;
	padding: 0;

	padding-left: 6.6%;
	width: 26.6%;
}
.block-block div.content ul li {
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-image: none;
	font-size: 12pt;
	font-family: 'proxima_nova_rgregular';
}

.block-block div.content ul h3 {
	color: #a3222e;
	text-transform: none;
	margin: 0 0 1em;
	font-size: 16pt;
	font-family: 'proxima_nova_rgregular';
}

.block-block div.content h4 {
	margin: 0 0 0.6em;
	letter-spacing: 0.03em;
	font-size: 12pt;
	font-family: 'proxima_nova_rgregular';
}

/* FEEDBACK FORM*/
.feedback-submission-form {
	/* margin: 60px -1.5%; */
	/* padding: 35px; */
}

.feedback-submission-form {
	background-color: #f3f3f3;
	padding: 60px 0;
	margin: 60px -37px;
}
.feedback-submission-form h2 {
	margin: 0 1.5% 40px;
	line-height: 1.5em;
}
.feedback-submission-form div {
	width: 920px;
	margin: 0 auto;
}

.feedback-submission-form div.messages.error {
	position: absolute;
	color: #a3222e;
	border: none;
	background: none;
	margin: 0;
	padding: 0;
	text-transform: lowercase;
	font-size: 10pt;
	font-family: 'proxima_nova_rgregular';
}
.feedback-submission-form div.messages.status {
	margin: 0 1.5% 40px;
}

.feedback-submission-form .form-item {
	float: left;
	width: 47%;
	min-width: 300px;
	margin: 0 1.5%;
	padding: 0 26px 0 0;
	height: 100px;
	box-sizing: border-box;
}
.feedback-submission-form .form-item label {
	display: block;
	height: 35px;

	font-weight: normal;
	font-size: 13pt;
	line-height: 1.2em;
	/*margin-bottom: 0.7em;*/
	font-family: 'proxima_nova_rgregular';
}
.feedback-submission-form .form-item.form-type-checkbox {
	height: 60px;
}
.feedback-submission-form .form-item.form-type-checkbox label {
	display: inline;
}

.feedback-submission-form input[type="text"] {
	display: inline-block;
	width: 100%;
	padding: 5px 12px;
	margin-right: 10px;
	line-height: 1.5em;
	font-size: 10pt;
	font-family: 'proxima_nova_rgregular';
	border: 1px solid #ddd;
}
.feedback-submission-form input[type="text"]:focus {
	border: 1px solid #aaa;
}

.feedback-submission-form select {
	padding: 0 8px;
	margin: 0;
	height: 42px;
	line-height: 1.5em;
	width: 100%;
	color: #000;
	border-radius: 5px;
	border: 1px solid #ddd;
}
.feedback-submission-form select:focus {
	border: 1px solid #aaa;
}

.feedback-submission-form .form-item.form-item-p1,
.feedback-submission-form .form-item.form-item-p2 {
	width: 22%;
	min-width: 150px;
}
.feedback-submission-form .form-item.form-item-p2 input {
	width: 70px;
}
#feedback-submission-fields-wrapper:after {
	content: "";
	display: block;
	clear: both;
}
.feedback-submission-form .form-submit {
	clear: both;
	text-align: center;
	margin: 20px auto 0;
}

/* SELECT STYLE */
.feedback-submission-form .form-type-select {
	position: relative;
	padding: 0;
}
.feedback-submission-form .form-type-select:before {
	content: "";
	display: block;
	position: absolute;
	top: 36px;
	height: 40px; /* -1 -1 */
	width: 26px;
	right: 1px; /* +1 */
	border-radius: 0 4px 4px 0;
	background: url("../img/open-arw.gif") no-repeat #fff 0 50%;
	pointer-events: none;
}

/* ACTION */
.spec-action-page-head {
}
.spec-action-page-head-content {
	position: relative;
	height: 50vh;
	overflow: hidden;
}

.spec-action-list .fit-inner-image,
.spec-action-page-head-content .fit-inner-image {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

	overflow: hidden;
}
.spec-action-list .fit-inner-image img,
.spec-action-page-head-content .fit-inner-image img {
	width: 100%;
	height: auto;
}

.spec-action-list {
	margin: 0 auto;
	max-width: 1200px; /* ? */
	overflow: hidden; /* ??? */
}

.spec-action-list-line {
	overflow: hidden;
}
.spec-action-list-line:after {
	content: "";
	display: block;
	clear: both;
	height: 1px;
}

.spec-action-list-firs-line {
}
.spec-action-list-element {
	display: block;
	float: left;

	position: relative;
	max-height: calc(50vh - 80px);
}
div.spec-action-list-element {
	position: absolute;
}

.spec-action-list-element-text {
	position:absolute;
	bottom: -1px;
	width: 100%;
	background-color: #fff;
}

.spec-action-list-element h2 {
	margin: 0 0 0.5em;
	line-height: 1.1em;
	font-size: 20pt;
	padding: 0.8em 0 0;
	min-height: 2.2em;
}
.spec-action-list-element p {
	margin: 1em 0;
	line-height: 1.1em;
	color: #1d1f1e;
}
.spec-action-list-element span.date {
	display: block;
	margin: 1.5em 0 1em;
	line-height: 1.1em;
}

.spec-action-list-element-image {
	position: relative;
	width: 100%;
	height: 380px;
}
.spec-action-list-line {		margin: 0 -1%;	}
.spec-action-list-element {	padding: 0 1%;	}
.spec-action-list-element {
	width: 24%;	}
.spec-action-list-element:first-child {
	width: 46%;	}
.spec-action-list-firs-line:first-child .spec-action-list-element {
	width: 32%;	}
.spec-action-list-firs-line:first-child .spec-action-list-element:first-child {
	width: 64%;	}

.spec-action-list-2-col .spec-action-list-element {
	width: 48%;	}
.spec-action-list-2-col div.spec-action-list-element {
	width: 24%;	}

.spec-action-list>hr {
	display: block;
	height: 1px;
	width: 100%;
	background-color: #d5d5d5;

	margin: 40px auto 70px;
}
.spec-action-list-line {
	margin-bottom: 40px;
}


.extra_column_header_no_wrap th,
.extra_column_header_no_wrap td {
	padding: 6px 10px;
}

@media (max-width: 980px) {
	.feedback-submission-form {
		margin: 0;
		padding: 60px 20px;
	}
	.feedback-submission-form h2 {
		margin: 0 0 20px;
	}
	.feedback-submission-form div {
		width: auto;
	}
	.feedback-submission-form .form-item,
	.feedback-submission-form .form-item.form-item-p1,
	.feedback-submission-form .form-item.form-item-p2 {
		width: 100%;
		margin: 0;
		min-width: auto;
	}
	.feedback-submission-form .form-item.form-item-p2 {
		padding: 0;
	}
	.feedback-submission-form .form-item.form-item-p2 input {
		width: calc(100% - 60px);
		margin: 0;
	}
	.feedback-submission-form .form-item.form-item-p2 span.field-suffix {
		display: block;
		float: right;
		line-height: 40px;
		height: 40px;
	}
	.spec-action-list-element h2 {
		font-size: 16pt;
	}
	.spec-action-list-element-image {
		position: relative;
		width: 100%;
		height: 260px;
	}
	.spec-action-list-line {		margin: 0 -1.5%;	}
	.spec-action-list-element {	padding: 0 1.5%;	}
	.spec-action-list-element {
		width: 23%;	}
	.spec-action-list-element:first-child {
		width: 45%;	}
	.spec-action-list-firs-line:first-child .spec-action-list-element {
		width: 31%;	}
	.spec-action-list-firs-line:first-child .spec-action-list-element:first-child {
		width: 63%;	}

	.spec-action-list-2-col .spec-action-list-element {
		width: 47%;	}
	.spec-action-list-2-col div.spec-action-list-element {
		width: 23%;	}

	.spec-action-list>hr {
		margin: 30px auto 40px;
	}
	.spec-action-list-line {
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.feedback-submission-form {
		margin: 0;
		padding: 40px 10px;
	}
	.spec-action-list {
		width: 412px;
	}
	.spec-action-list-line {
		margin: 0;
	}
	.spec-action-list-element {
		display: block;
		float: none;
		width: 100% !important;

		padding: 0 0 20px;
		margin: 0 0 30px;
		border-bottom: 1px solid #d5d5d5;

		height: initial !important;
		min-height: initial !important;
		max-height: initial !important;
	}
	.spec-action-list-element-text {
		position: static;
	}
	.spec-action-list-element h2 {
		min-height: initial;
	}
	.spec-action-list-element-image {
		height: 260px !important;
	}
	.spec-action-list>hr {
		display: none;
	}
	.spec-action-list-line {
		margin-bottom: 0;
	}
}


.b2b-content .partners-items-line {
	justify-content: center;
}