@charset "utf-8";
.screen-1 .after-title b>b,.screen-2 .wrap .text .title b>b,.screen-10 .text p b>b {
	color: red;
    font-size: 35px;
}
.screen-2 .wrap .text .title b>b {
	font-size:44px;
}

body {
	margin: 0 auto;
	max-width: 1920px;
	min-width: 320px;
  	width: 100%;
  	background-color: #ffffff;
  	overflow-x: hidden;
  	font-family: 'Roboto', sans-serif;
  	font-weight: 400;
	font-size: 14px;
	color: #333;

}
body.overflow{
	height: 100vh;
	overflow: hidden;
}
a, button{
	box-shadow: none;
	outline: none !important;
}
.navbar{
	margin-bottom: 0;
}
.container{
	position: relative;
	z-index: 1;
}
.button{
	position: relative;
	display: block;
	margin: 0 auto;
	padding: 0;
	width: auto;
	height: 42px;
	border-radius: 3px;
	border: none;
	box-shadow: 0 10px 30px rgba(0,96,165,0.8);
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-size: 14px;
	color: #fff;
	line-height: 42px;
	text-align: center;
	text-transform: uppercase;
	z-index: 5;
	-webkit-transition: box-shadow 0.3s ease, margin 0.3s ease;
	transition: box-shadow 0.3s ease, margin 0.3s ease;
	cursor: pointer;
	/*overflow: hidden;*/
	outline: none !important;
}
.button>span{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 35px;
	border-radius: 3px;
	background-repeat: repeat-x;
	z-index: 3;
}
/*
.btn-wrap>span{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 35px;
	border-radius: 3px;
	background-image: url(/wp-content/themes/rolet/img/btn-bg.png);
	background-repeat: repeat-x;
	z-index: 3;
}
*/
.button:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	display: block;
	height: 100%;
	background-color: #45dafb;
	border-radius: 3px;
	z-index: 2;
	-webkit-transition: background-color ease 0.2s;
     -moz-transition: background-color ease 0.2s;
     -o-transition: background-color ease 0.2s;
     transition: background-color ease 0.2s;
}
.button:hover,.button:focus, .button:active{
	color: #fff !important;
	text-decoration: none !important;
	box-shadow: 0 10px 30px rgba(0,96,165,0.8);
	margin: -5px auto 0;
}
.button:hover:before {
	background-color: #07a3c6;
	-webkit-transition: background-color ease 0.2s;
     -moz-transition: background-color ease 0.2s;
     -o-transition: background-color ease 0.2s;
     transition: background-color ease 0.2s;
}
.descr button:hover {
	background-color: #07a3c6;
	-webkit-transition: background-color ease 0.2s;
    -moz-transition: background-color ease 0.2s;
    -o-transition: background-color ease 0.2s;
    transition: background-color ease 0.2s;
	color: white;
}
header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	margin-top: 0;
	z-index: 5;
	background-color: #fff;
	box-shadow: 0 0 0 rgb(0,0,0);
	-webkit-transition: box-shadow 0.5s ease, height 0.5s ease;
	transition: box-shadow 0.5s ease, height 0.5s ease;
}
header.scroll{
	height: 73px;
	box-shadow: 0 3px 15px rgba(0,0,0,0.2);
	background-color: #fff;
}
.navbar-inverse{
	background-color: transparent;
	border-color: transparent;
	border: none;
}
.navbar-brand {
	position: relative;
	top: 0;
	left: 0;
	float: left;
	display: block;
    width: 245px;
    height: 60px;
    margin: 20px 0 0 !important;
    padding: 0;
    padding-right: 15px;
    opacity: 1;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: #666 !important;
    -webkit-transition: opacity 0.3s ease,  margin 0.5s ease, height 0.5s ease;
    transition: opacity 0.3s ease,  margin 0.5s ease, height 0.5s ease;
}
.navbar-brand:hover{
	opacity: 0.9;
	color: #666 !important;
}
.navbar-brand span{
	display: block;
	margin-top: 10px;
}
header.scroll .navbar-brand {
	height: 24px;
	margin: 25px 0 0 !important;
}
.navbar-brand img{
	position: relative;
	max-width: 100%;
}
.button-block{
	float: right;
	width: 180px;
	margin-top: 27px;
	padding-left: 15px;
	-webkit-transition: margin-top 0.5s ease;
	transition: margin-top 0.5s ease;
}
header.scroll .button-block{
	margin-top: 5px;
	margin-bottom: 5px;
}
.button-block ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.button-block a{
	display: block;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 26px;
	color: #1a1a1a;
	text-decoration: none;
	line-height: 26px;
}
.button-text{
	display: inline-block;
    -webkit-animation: bounce 2s linear reverse infinite;
    animation: bounce 2s linear reverse infinite;
	
	margin: 5px auto;
	width: 160px;
	height: 27px;
	border: 1px solid #0099ff;
	background-color: #fff;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	line-height: 25px;
	font-size: 12px;
	color: #0099ff;
	text-transform: uppercase;
	-webkit-transition: all ease-out 0.2s;
     -moz-transition: all ease-out 0.2s;
     -o-transition: all ease-out 0.2s;
     transition: all ease-out 0.2s;
}
.button-text:hover{
	background-color: #0099ff;
	color: #fff;
	-webkit-transition: all ease-out 0.2s;
     -moz-transition: all ease-out 0.2s;
     -o-transition: all ease-out 0.2s;
     transition: all ease-out 0.2s;
}
.navbar-collapse{
	float: left;
	width: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px !important;
	margin-right: 0px !important;
	padding: 0;
}
.header-center{
	float: left;
	width: -webkit-calc(100% - 425px);
	width: calc(100% - 425px);
	padding: 0 15px;
}
.header-utp{
	width: 100%;
	padding: 0;
	list-style: none;
}
.header-utp li{
	position: relative;
	padding-left: 15px;
	display: table-cell;
	width: 1%;
	font-size: 12px;
	color: #666;
	white-space: nowrap;
}
.header-utp li:before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	display: block;
	width: 11px;
	height: 9px;
	background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/check.png);
	background-repeat: no-repeat;
	background-position: center;
}
.header-utp-wrap{
	margin-top: 30px;
	-webkit-transition: margin-top 0.5s ease;
	transition: margin-top 0.5s ease;
}
header.scroll .header-utp-wrap{
	margin-top: 10px;
}
header .tel_call {
	float:right;
	white-space: nowrap;
}
nav.navbar{
	float: left;
	width: 100%;
	min-height: 30px;
	border: none;
}
.navbar-nav{
	width: 100%;
	padding: 5px 0;
}
.navbar-nav>li{
	float: none;
	position: relative;
	padding: 0 8px;
	text-align: center;
}
.navbar-nav>li:first-child{
	width: 0.1%;
	padding-left: 0;
}
.navbar-nav>li:last-child,
.navbar-nav>li:nth-child(6){
	width: 0.1%;
	padding-right: 0;
}
.navbar-nav li:hover ul{
	/*display: block;*/
}
.navbar-nav>li>a {
	position: relative;
	display: inline-block;
    padding: 0 !important;
    background-color: transparent !important;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a !important;
    text-transform: uppercase;
    -webkit-transition: color 0.2s, font-size 0.2s ease;
    transition: color 0.2s, font-size 0.2s ease;
    white-space: nowrap;
}
/*.navbar-nav>li>a:after{
	content: '';
	position: absolute;
	bottom: 0px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	display: block;
	width: 100%;
	height: 2px;
	opacity: 0;
	background-color: #00ccff;
	-webkit-transition: width 0.5s ease, bottom 0.5s ease, opacity 0.5s ease;
    transition: width 0.5s ease, bottom 0.5s ease, opacity 0.5s ease;
}*/
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover{
	color: #00ccff !important;
}
/*.navbar-inverse .navbar-nav>li>a:hover:after{
	opacity: 1;
	bottom: -5px;
	width: 100%;
}
.navbar-inverse .navbar-nav>.active>a:after{
	opacity: 1;
	width: 100%;
}*/
.owl-theme .owl-nav {
    margin: 0;
    position: absolute;
    top: 145px;
    left: 0;
    right: 0;
    /*height: 30px;*/
    height: 0;
    z-index: 1;
}
.owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    background: #fff;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    border: 2px solid #00ccff;
    line-height: 30px;
    color: #00ccff;
    background-color: #fff;
}
.owl-theme .owl-nav [class*=owl-]:hover{
	background-color: #00ccff !important;
	color: #fff;
}
.owl-theme .owl-nav [class*=owl-] div {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 10px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
}
.owl-theme .owl-nav .owl-prev {
    left: -40px;
    -webkit-transition: left 0.2s ease, background-color 0.3s ease;
    transition: left 0.2s ease, background-color 0.3s ease;
}
.owl-theme .owl-nav .owl-prev:hover {
    left: -40px;
}
.owl-theme .owl-nav .owl-prev div {
    background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/left.png);
}
.owl-theme .owl-nav .owl-next {
    right: -40px;
    -webkit-transition: right 0.2s ease, background-color 0.3s ease;
    transition: right 0.2s ease, background-color 0.3s ease;
}
.owl-theme .owl-nav .owl-next:hover {
    right: -40px;
}
.owl-theme .owl-nav .owl-next div {
    background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/right.png);
}
.owl-theme .owl-dots .owl-dot span{
	width: 6px;
	height: 6px;
	margin: 3px;
	background-color: #ccc;
	border-radius: 0px;
	-webkit-transition: width 0.3s ease, background-color 0.3s ease;
	transition: width 0.3s ease, background-color 0.3s ease;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot.active:hover span{
	/*width: 28px;*/
	background-color: #ffcc00;
}
.owl-theme .owl-dots .owl-dot:hover span {
    background: #e4cd70;
}


.form-control::-webkit-input-placeholder       	{color: #b2b2b2; opacity: 1; transition: opacity 0.3s ease;}
.form-control::-moz-placeholder                	{color: #b2b2b2; opacity: 1; transition: opacity 0.3s ease;}
.form-control:-moz-placeholder                 	{color: #b2b2b2; opacity: 1; transition: opacity 0.3s ease;}
.form-control:-ms-input-placeholder            	{color: #b2b2b2; opacity: 1; transition: opacity 0.3s ease;}
.form-control::-ms-input-placeholder			{color: #b2b2b2; opacity: 1; transition: opacity 0.3s ease;}
.form-control::placeholder 						{color: #b2b2b2; opacity: 1; transition: opacity 0.3s ease;}

.form-control:focus::-webkit-input-placeholder 	{color: #b2b2b2; opacity: 0; transition: opacity 0.3s ease;}
.form-control:focus::-moz-placeholder          	{color: #b2b2b2; opacity: 0; transition: opacity 0.3s ease;}
.form-control:focus:-moz-placeholder           	{color: #b2b2b2; opacity: 0; transition: opacity 0.3s ease;}
.form-control:focus:-ms-input-placeholder      	{color: #b2b2b2; opacity: 0; transition: opacity 0.3s ease;}
.form-control:focus::-ms-input-placeholder		{color: #b2b2b2; opacity: 0; transition: opacity 0.3s ease;}
.form-control:focus::placeholder 				{color: #b2b2b2; opacity: 0; transition: opacity 0.3s ease;}

textarea.form-control{
	height: 70px;
	resize: none;
}
.swipe-rolet{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	z-index: 1111;
	background-color: rgba(255,255,255,1);
	background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/swipe-border.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
	visibility: visible;
	-webkit-transition: background-size 5s 2.5s ease, background-position 5s 2.5s ease, visibility 5s 2.5s ease;
	transition: background-size 5s 2.5s ease, background-position 5s 2.5s ease, visibility 5s 2.5s ease;
}
.swipe-rolet.close-rolet{
	/*height: 0;*/
	background-color: rgba(255,255,255,0);
	visibility: hidden;
	background-size: 150%;
	background-position: center 200px;
}
.swipe-rolet .swipe-rolet-top{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	/*height: 344px;*/
	height: 15vw;
	height: 11.5vw;
	background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/swipe-top.jpg);
	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: contain;
	box-shadow: 0 0 150px rgba(0,0,0,1);
	-webkit-transition: top 5s 2.5s ease, box-shadow 5s ease;
	transition: top 5s 2.5s ease, box-shadow 5s ease;
	z-index: 2;
}
.swipe-rolet.close-rolet .swipe-rolet-top{
	top: -350px;
	box-shadow: 0 0 0px rgba(0,0,0,0);
}
.swipe-rolet .swipe-rolet-rol{
	position: absolute;
	top: 0;
	left: 59px;
    right: 61px;
    bottom: 90px;
        left: 3.1vw;
    right: 3.2vw;
    bottom: 4.9vw;
    padding-top: 20vw;
	background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/swipe-rol.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
	-webkit-transition: bottom 5s ease, top 5s ease;
	transition: bottom 5s ease, top 5s ease;
	z-index: 1;
}
.swipe-rolet.close-rolet .swipe-rolet-rol{
	top: -105vh;
	bottom: 105vh;
}
.swipe-rolet .title{
	width: 875px;
    height: 97px;
    width: 45.6vw;
    height: 5vw;
	margin: 0 auto;
	/*background-image: url(../img/title.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;*/
}
.swipe-rolet .title img{
	width: 100%;
}
.swipe-rolet .after-title{
	margin-top: 15px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 22px;
	color: #4c4c4c;
	text-align: center;
}
.swipe-anim{
	margin-top: 50px;
}
.swipe-anim>span{
	display: block;
	width: 100%;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #0060a5;
	text-transform: uppercase;
	text-align: center;
}
#scroll-down {
  display: block;
  position: relative;
  padding-top: 230px;
  padding-top: 11vw;
  text-align: center;
}

.arrow-down {
	position: relative;
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 10px;
    width: 20px;
    height: 20px;
  background-color: #0060a5;
  border-radius: 50%;
  -webkit-animation: shadow 5s linear infinite;
  /* Safari 4+ */
  	-moz-animation: shadow 5s linear infinite;
  /* Fx 5+ */
  	-o-animation: shadow 5s linear infinite;
  /* Opera 12+ */
  	animation: shadow 5s linear infinite;
  	cursor: pointer;
}
@-webkit-keyframes shadow {
	0%{
		box-shadow: 0 0 0 #0060a5;
	}
	100%{
		box-shadow: 0 0 20px #0060a5;
	}
}
@-moz-keyframes shadow {
	0%{
		box-shadow: 0 0 0 #0060a5;
	}
	100%{
		box-shadow: 0 0 20px #0060a5;
	}
}
@-o-keyframes shadow {
	0%{
		box-shadow: 0 0 0 #0060a5;
	}
	100%{
		box-shadow: 0 0 20px #0060a5;
	}
}
@keyframes shadow {
	0%{
		box-shadow: 0 0 0 #0060a5;
	}
	100%{
		box-shadow: 0 0 20px #0060a5;
	}
}
.arrow-down:after{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	display: block;
	width: 30px;
	height: 30px;
	border: 1px dashed #0060a5;
	border-radius: 50%;
	-webkit-animation: rotate 10s linear infinite;
  /* Safari 4+ */
  	-moz-animation: rotate 10s linear infinite;
  /* Fx 5+ */
  	-o-animation: rotate 10s linear infinite;
  /* Opera 12+ */
  	animation: rotate 10s linear infinite;
}
@-webkit-keyframes rotate {
	0%{
		-webkit-transform: translate(-50%,-50%) rotate(0deg);
		-moz-transform: translate(-50%,-50%) rotate(0deg);
		-ms-transform: translate(-50%,-50%) rotate(0deg);
		-o-transform: translate(-50%,-50%) rotate(0deg);
		transform: translate(-50%,-50%) rotate(0deg);
	}
	100%{
		-webkit-transform: translate(-50%,-50%) rotate(360deg);
		-moz-transform: translate(-50%,-50%) rotate(360deg);
		-ms-transform: translate(-50%,-50%) rotate(360deg);
		-o-transform: translate(-50%,-50%) rotate(360deg);
		transform: translate(-50%,-50%) rotate(360deg);
	}
}
@-moz-keyframes rotate {
	0%{
		-webkit-transform: translate(-50%,-50%) rotate(0deg);
		-moz-transform: translate(-50%,-50%) rotate(0deg);
		-ms-transform: translate(-50%,-50%) rotate(0deg);
		-o-transform: translate(-50%,-50%) rotate(0deg);
		transform: translate(-50%,-50%) rotate(0deg);
	}
	100%{
		-webkit-transform: translate(-50%,-50%) rotate(360deg);
		-moz-transform: translate(-50%,-50%) rotate(360deg);
		-ms-transform: translate(-50%,-50%) rotate(360deg);
		-o-transform: translate(-50%,-50%) rotate(360deg);
		transform: translate(-50%,-50%) rotate(360deg);
	}
}
@-o-keyframes rotate {
	0%{
		-webkit-transform: translate(-50%,-50%) rotate(0deg);
		-moz-transform: translate(-50%,-50%) rotate(0deg);
		-ms-transform: translate(-50%,-50%) rotate(0deg);
		-o-transform: translate(-50%,-50%) rotate(0deg);
		transform: translate(-50%,-50%) rotate(0deg);
	}
	100%{
		-webkit-transform: translate(-50%,-50%) rotate(360deg);
		-moz-transform: translate(-50%,-50%) rotate(360deg);
		-ms-transform: translate(-50%,-50%) rotate(360deg);
		-o-transform: translate(-50%,-50%) rotate(360deg);
		transform: translate(-50%,-50%) rotate(360deg);
	}
}
@keyframes rotate {
	0%{
		-webkit-transform: translate(-50%,-50%) rotate(0deg);
		-moz-transform: translate(-50%,-50%) rotate(0deg);
		-ms-transform: translate(-50%,-50%) rotate(0deg);
		-o-transform: translate(-50%,-50%) rotate(0deg);
		transform: translate(-50%,-50%) rotate(0deg);
	}
	100%{
		-webkit-transform: translate(-50%,-50%) rotate(360deg);
		-moz-transform: translate(-50%,-50%) rotate(360deg);
		-ms-transform: translate(-50%,-50%) rotate(360deg);
		-o-transform: translate(-50%,-50%) rotate(360deg);
		transform: translate(-50%,-50%) rotate(360deg);
	}
}
#scroll-down::before {
	-webkit-animation: elasticus 3s cubic-bezier(1, 0, 0, 1) infinite;
	/* Safari 4+ */
	-moz-animation: elasticus 3s cubic-bezier(1, 0, 0, 1) infinite;
	/* Fx 5+ */
	-o-animation: elasticus 3s cubic-bezier(1, 0, 0, 1) infinite;
	/* Opera 12+ */
	animation: elasticus 3s cubic-bezier(1, 0, 0, 1) infinite;
	/* IE 10+, Fx 29+ */
	/*position: absolute;
	top: 5px;
	left: 50%;
	margin-left: -1px;
	width: 1px;
	height: 210px;
	height: 11vw;
	border-left: 1px dashed #0060a5;
	opacity: 0.5;
	content: ' ';*/
	position: absolute;
	top: 5px;
	left: 50%;
	margin-left: -20px;
	width: 40px;
	height: 11vw;
	background-image: url(/rolstavni-na-oknawp-content/themes/rolet/img/scroll-top.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
	opacity: 0.5;
	content: ' ';
}

@-webkit-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}

@-moz-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}

@-o-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}

@keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
.flip-clock-divider .flip-clock-label{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 12px;
	color: #666666;
	text-transform: uppercase;
}
.flip-clock-dot{
	display: none;
}
.flip-clock-divider{
	width: 10px;
}
.flip-clock-wrapper ul{
	margin: 5px 2px;
}
.flip-clock-divider.days .flip-clock-label {
    right: -79px;
}
.flip-clock-divider.hours .flip-clock-label {
    right: -81px;
}
.flip-clock-divider.minutes .flip-clock-label {
    right: -82px;
}
.flip-clock-divider.seconds .flip-clock-label {
    right: -85px;
}
.shadow::after{
	/*display: none !important;*/
}
.flip-clock-wrapper .flip {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}
/*.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
    background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
}*/
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.05) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.75)), color-stop(100%, rgba(0, 0, 0, 0.05)));
    background: linear, top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.05) 100%;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.05) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.05) 100%);
    background: linear, to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.05) 100%;
}
/*.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
    background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
    background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
}
.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
    background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
    background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
    background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
    background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
    background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
}*/
.flip-clock-wrapper ul li a div div.inn{
	background-color: #f7f7f7;
	/*text-shadow: 0 0px 3px #000;*/
	text-shadow: none;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	/*font-size: 60px;*/
	color: #313b50;
}
.screen-1{
	margin-top: 115px;
	padding: 0;
	height: 634px;
	background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/bg-1.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.screen-1 .title{
	/*margin-top: -20px;*/
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 53px;
	line-height: 52px;
	color: #172033;
	text-transform: uppercase;
}
.screen-1 .title b{
	font-weight: 700;
}
.screen-1 .after-title{
	margin-top: 16px;
	margin-bottom: 0;
	padding-right: 75px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #333333;
	margin-bottom: 20px;
}
.screen-1 .stock {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 60px;
	color: red;
	line-height: 60px;
}
.screen-1 .sub-stock {
	text-align: center;
}
.screen-1 .stock-percent {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 120px;
	line-height: 90px;
	color: red;
	text-align: center;
	max-width: 460px;
}
.screen-1 .little {
	font-family: 'Roboto Thin', sans-serif;
	font-size: 50px;
	color: red;
}
.screen-1 .stock > span {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 120px;
	color: red;
}
.screen-1 .after-title span.red{
	color: red;
}
.screen-1 .after-title > span{
	font-size: 22px;
	line-height: 50px;
	display: block;
	margin-top: 10px;
}
.screen-1 .after-title b{
	font-weight: 700;
}
.screen-1 .wrap{
	position: relative;
	height: 495px;
	margin-top: 86px;
}
.screen-1 .wrap:after{
	content: '';
	position: absolute;
	top: -90px;
	bottom: -90px;
	left: -80px;
	right: -80px;
	display: block;
	border-width: 10px;
	border-style: solid;
	border-color: transparent;
	border-image-slice: 1;
	z-index: -1;
}
.screen-1 .img{
	position: relative;
	height: 100%;
}
.screen-1 .img > img {
	width: 735px;
	height: 600px;
}
.screen-1 .img img{
	position: absolute;
	left: 30%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.screen-1 .door_left, .screen-1 .door_right, .screen-1 .window_up, .screen-1 .window_down{
	max-width: 113px;
}
.screen-1 .door_left img, .screen-1 .door_right img, .screen-1 .window_up img, .screen-1 .window_down img {
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(0, 0);
}
.screen-1 .door_left {
	position: absolute;
	bottom: -32px;
	left: -133px;
	overflow: hidden;
}
.screen-1 .door_right {
	position: absolute;
	bottom: -32px;
	left: -28px;
	overflow: hidden;
}
.screen-1 .door_left .frame, .screen-1 .door_right .frame {
	z-index: 2;
	position: relative;
	height: 145px;
	width: 113px;
}
.screen-1 .door_left .rolet, .screen-1 .door_right .rolet {
	position: absolute;
	z-index: 1;
	top: -90px;
	left: 8px;
	height: 124px;
	width: 97px;
	-webkit-transition: top 2s ease-out 0.5s;
    -moz-transition: top 2s ease-out 0.5s;
    -o-transition: top 2s ease-out 0.5s;
    transition: top 2s ease-out 0.5s;
}
.screen-1 .door_left .rolet.down, .screen-1 .door_right .rolet.down {
	top: 15px
}
.screen-1 .window_down .frame, .screen-1 .window_up .frame {
	z-index: 2;
	position: relative;
	height: 125px;
	width: 113px;
}
.screen-1 .window_down .rolet, .screen-1 .window_up .rolet {
	position: absolute;
	z-index: 1;
	top: -90px;
	left: 9px;
	-webkit-transition: top 2s ease-out 0.5s;
    -moz-transition: top 2s ease-out 0.5s;
    -o-transition: top 2s ease-out 0.5s;
    transition: top 2s ease-out 0.5s;
	height: 116px;
	width: 97px;
}
.screen-1 .window_down .rolet.down, .screen-1 .window_up .rolet.down {
	top: 3px;
}
.screen-1 .window_up {
	position: absolute;
	top: 162px;
	left: 164px;
	overflow: hidden;
}
.screen-1 .window_down {
	position: absolute;
	bottom: 15px;
	left: 164px;
	overflow: hidden;
}
.counter>span{
	display: block;
	width: 542px;
	margin-top: 5px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 10px;
	color: #808080;
	text-transform: uppercase;
	text-align: center;
}
.screen-1 .button-wrap{
	width: 542px;
	margin-top: 20px;
}
.screen-1 .button{
	width: 312px;
	max-width: 100%;
	margin: 0;
}
.screen-1 .button:active{
	margin: 25px auto 0;
}
.screen-1 button.button:focus {
	margin: 0;
}
.flip-clock-wrapper{
	margin: 0;
}
#ul-wrap-1{
	padding-top: 50px;
	padding-bottom: 50px;
}
.ul-wrap ul{
	float: left;
	list-style: none;
	padding: 0;
}
.ul-wrap ul li{
	float: left;
	width: 25%;
	padding: 0 15px;
}
.ul-wrap .item{
	padding: 0 10px;
}
.ul-wrap .item .img-wrap{
	position: relative;
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
}
.ul-wrap .item .img-wrap img{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.ul-wrap .item .title{
	margin: 15px 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 900;
	font-size: 16px;
	color: #172033;
	text-transform: uppercase;
}
.ul-wrap .item .descr{
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color: #4c4c4c;
}
.screen-2{
	padding-top: 50px;
	padding-bottom: 50px;
}
.screen-2 .wrap{
	position: relative;
	height: 590px;
}
.screen-2 .wrap .img-wrap{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -4.15%;
	/*overflow: hidden;*/
}
.screen-2 .wrap .text{
	position: absolute;
	width: 60%;
	top: 79%;
	right: -4.15%;
	/*-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);*/
/* 	height: 482px; */
	height:auto;
	margin-top: -241px;
	padding: 60px;
	background: rgba(255, 255, 255, 0.66);
/* 	background-image: url(/wp-content/themes/rolet/img/bg-2-text.jpg); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	box-shadow: 0 0 30px rgba(0,0,0,0.2);
}
.screen-2 .wrap .text .title{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 34px;
	color: #1a1a1a;
	text-transform: uppercase;
}
.screen-2 .wrap .text .title b{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 44px;
}
.screen-2 .wrap .text .title.screen-2-title {
	font-size:18px;
}
.screen-2 .wrap .text .title.screen-2-title b {
	font-size:39px;
}
.screen-2 .button{
	margin: 15px 0 0;
	margin-bottom: 5px;
}
.screen-2 .button:hover,.screen-2 .button:focus,.screen-2 .button:active{
	margin: 10px 0 0;
	margin-bottom: 10px;
}
.screen-2 .tab-block {
	height: 580px;
	width: 100%;
	box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
.screen-2 .text ul li {
	list-style-type: '- ';
}
.screen-3{
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}
.screen-3 ul{
	padding: 0;
	list-style: none;
}
.screen-3 ul li{
	width: 50%;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	line-height: 18px;
}
.screen-3 ul li b{
	font-weight: 700;
}
.screen-3 ul li:nth-child(even){
	float: left;
	padding-right: 20%;
    padding-left: 5%;
    text-align: right;
	margin: 10px 0;
}
.screen-3 ul li:nth-child(odd){
	float: right;
	padding-left: 20%;
	padding-right: 2%;
	margin: 10px 0;
}
.screen-3 ul>div{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: -webkit-calc(33.3333% + 30px);
	width: calc(33.3333% + 30px);
	height: 100%;
	margin: 0 auto;
	padding: 40px 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 48px;
	color: #1a1a1a;
	text-align: center;
	text-transform: uppercase;
	border-width: 4px;
    border-style: solid;
    border-color: transparent;
    -moz-border-image: -moz-linear-gradient(60deg, #00c6ff 0%, #00ffff 100%);
    -webkit-border-image: -webkit-linear-gradient(60deg, #00c6ff 0%, #00ffff 100%);
    border-image: linear-gradient(60deg, #00c6ff 0%, #00ffff 100%);
    border-image-slice: 1;
    border-top: none;
    border-bottom: none;
}
.screen-3 ul>div b{
	font-weight: 700;
}
.bg-img{
	position: absolute;
	z-index: -1;
}
.bg-img img{
	width: 100%;
}
.screen-3 .bg-img{
	right: 0;
	bottom: 0;
	width: 17.2vw;
}
.screen-4 .bg-img{
	left: 0;
	top: 50%;
	top: 100vh;
	margin-top: -424px;
	width: 21.5vw;
}
.screen-10 .bg-img{
	left: 0;
	bottom: 45%;
	bottom: -100vh;
	width: 20.5vw;
	/*transition: transform 0.5s ease-in;*/
}
.screen-4{
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	min-height: 500px;
}
.screen-4 .img-wrap{
	position: relative;
	width: 100%;
	height: 500px;
}
.screen-4 .img-wrap img{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.screen-4 .wrap .text{
	position: absolute;
	width: 57.5%;
	height: 100%;
	top: 100px;
	left: -7.6%;
	padding: 40px 60px;
	background-color: white;
	box-shadow: 0 0 30px rgba(0,0,0,0.2);
	color: #333;
}
.screen-4 .wrap .text .title{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 50px;
	line-height: 50px;
	color: #1a1a1a;
	text-transform: uppercase;
}
.screen-4 .wrap .text .title b{
	font-weight: 700;
}
.screen-4 .wrap .text .title span.red{
	color: red;
}
.screen-4 .wrap .text .descr{
	float: left;
	width: 100%;
	margin-top: 35px;
	margin-bottom: 35px;
	color: #333;
}
.screen-4 .wrap .text .descr .found_cheaper {
    font-size: 30px;
	font-family: 'Roboto Condensed', sans-serif;
	margin: 0;
}
.screen-4 .wrap .text .descr .more_discount {
    font-size: 30px;
	font-family: 'Roboto', sans-serif;
	color: #333333;
	font-weight: 100;
}
.screen-4 .wrap .text .descr .discount {
    font-size: 20px;
	font-family: 'Roboto', sans-serif;
	color: red;
	font-weight: 700;
	line-height: 50px;
	margin: 0;
}
.screen-4 .wrap .text .descr .discount span {
    font-size: 50px;
}
.screen-4 .wrap .text .button{
	float: left;
	margin-right: 20px;
}
.nav-tabs {
    border-bottom: none;
}
.nav-tabs > li > a {
    font-family: 'Roboto Condensed', Arial, sans-serif;
	font-size: 22px;
	color: #313140;
	font-weight: 700;
	margin-right: 0;
	line-height: 30px;
	-webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
    transition: all ease-out 0.3s;
}
.nav-tabs > li > a span{
    display: inline-block;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    border: none;
}
.nav-tabs > li {
    margin: 0;
	width: 20%;
	text-align: center;
	-webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
    transition: all ease-out 0.3s;
	box-shadow: inset 1px 1px 3px 2px rgba(0,0,0,0.05);
	background-color: #e2e2eb;
	margin-left: 1%;
}
.nav-tabs > li:first-child {
	margin-left: 0;
}
.nav-tabs > li.active {
	width: 37%;
	background-color: white;
	-webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
    transition: all ease-out 0.3s;
	overflow: hidden;
	margin-left: 0;
}
.nav-tabs > li.active a {
	color: #16bff0;
	padding-right: 100%;
	white-space: nowrap;
	-webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
    transition: all ease-out 0.3s;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    color: #16bff0;
	-webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
    transition: all ease-out 0.3s;
}
.tab-content {
	padding: 13px 14px;
	height: calc(100% - 52px);
}
.tab-content .text {
	height: 100%;
	width: 36%;
	margin: 0 0.4%;
	display: inline-block;
	float: left;
	padding-left: 20px;
}
.tab-content .text > p {
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 700;
}
.tab-content .text > .old-price {
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 300;
	text-decoration: line-through;
}
.tab-content .text > .new-price {
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 900;
	color: red;
	font-size: 28px;
}
.tab-content .text > img {
	margin: 0 8px;
}
.tab-content .image {
	max-height: 502px;
	width: 62%;
	margin: 0 0.4%;
	display: inline-block;
	float: left;
	height: 100%;
}
.tab-content .image img {
	display: inline-block;
	height: 502px;
	width: 100%;
}

.tab-content .tab-pane {
	max-height: 100%;
	width: 100%;
}
.tab-content .tab-pane ul li {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 14px;
	line-height: 24px;
}
.tab-content .tab-pane ul {
	max-height: 224px;
	overflow: auto;
	padding: 0;
}
.screen-1-new {
	margin: 150px 0;
}
.screen-1-new .img-wrap {
	width: 60%;
	display: inline-block;
	float: left;
}
.screen-1-new .img-wrap .window-block {
	width: 297px;
	display: inline-block;
	float: left;
	position: relative;
	text-align: center;
	margin: 0 20px;
	padding: 20px 0;
	overflow: hidden;
}
.screen-1-new .img-wrap .window-block img.window {
	display: inline-block;
	margin: 0 auto;
	z-index: 1;
}
.screen-1-new .img-wrap .window-block img.wrap {
	display: block;
	position: absolute;
	top: 0;
	z-index: 3;
}
.screen-1-new .img-wrap .window-block img.rolet {
    display: block;
    position: absolute;
	top: -280px;
    left: 22px;
	z-index: 2;
	-webkit-transition: all 2s ease-out 0.5s;
    -moz-transition: all 2s ease-out 0.5s;
    -o-transition: all 2s ease-out 0.5s;
    transition: all 2s ease-out 0.5s;
}
.screen-1-new .img-wrap .window-block img.rolet.down {
    display: block;
    position: absolute;
	top: 42px;
    left: 22px;
	z-index: 2;
	-webkit-transition: all 2s ease-out 0.5s;
    -moz-transition: all 2s ease-out 0.5s;
    -o-transition: all 2s ease-out 0.5s;
    transition: all 2s ease-out 0.5s;
}
.screen-1-new .img-wrap .left-window img.window {
    display: inline-block;
    margin: 0 auto;
    position: relative;
    right: 6px;
    top: 6px;
}
.screen-1-new .text-wrap {
	width: 40%;
	display: inline-block;
	float: left;
	margin-top: 60px;
}
.screen-1-new .text-wrap .title {
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-weight: 700;
	font-size: 38px;
	color: #1a1a1a;
	line-height: 46px;
}
.screen-1-new .text-wrap .content {
	font-family: "Roboto", Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #1a1a1a;
}
.mCSB_container {
	padding-left: 20px;
}
.screen-5 {
	height: 510px;
	margin-top: 220px;
}
.screen-5 .container{
	padding: 0;
}
.screen-5 .wrap{
	position: relative;
	height: 510px;
}
.screen-5 .wrap:after{
	content: '';
	position: absolute;
	top: 40px;
	bottom: 40px;
	left: -80px;
	right: -80px;
	display: block;
	border-width: 10px;
	border-style: solid;
	border-color: transparent;
	-moz-border-image: -moz-linear-gradient(60deg, #00c6ff 0%, #00ffff 100%);
	-webkit-border-image: -webkit-linear-gradient(60deg, #00c6ff 0%, #00ffff 100%);
	border-image: linear-gradient(60deg, #00c6ff 0%, #00ffff 100%);
	border-image-slice: 1;
	z-index: -1;
}
.screen-5 .text-wrap{
	position: relative;
	padding-top: 105px;
	padding-left: 0;
}
.screen-5 .text-wrap .title{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 38px;
	line-height: 44px;
	color: #1a1a1a;
	text-transform: uppercase;
}
.screen-5 .text-wrap .text{
	margin-top: 30px;
}
.screen-5 .controls #carousel-index{
	margin-top: 25px;
	margin-bottom: 25px;
	height: 38px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 38px;
	color: #1a1a1a;
}
.screen-5 .img{
	position: relative;
	padding: 0;
}
.screen-5 .controls{
	position: absolute;
	right: 45px;
}
.screen-5 .controls #carousel-index span{
	position: absolute;
    width: 25px;
    display: block;
    font-size: 16px;
    color: #808080;
    text-align: right;
    top: 18px;
    right: -23px;
}
.screen-5 .controls .carousel-control.left{
	left: -5px;
    top: auto;
    bottom: -10px;
	width: 30px;
	height: 30px;
	display: block;
	background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/carousel-prev.png);
	background-repeat: no-repeat;
	background-position: center;
	z-index: 3;
}
.screen-5 .controls .carousel-control.right{
	left: -5px;
    top: -10px;
	width: 30px;
	height: 30px;
	display: block;
	background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/carousel-next.png);
	background-repeat: no-repeat;
	background-position: center;
	z-index: 3;
}
.screen-5 .carousel-inner{
	position: relative;
	height: 511px;
}
.screen-5 .carousel-inner:before,
.screen-5 .carousel-inner:after{
	content: '';
	position: absolute;
	top: 0;
	display: block;
	width: 390px;
	height: 511px;
	background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/carousel-border.png);
	background-position: center;
	background-repeat: no-repeat;
	z-index: 5;
}
.screen-5 .carousel-inner:before{
	left: 0;
}
.screen-5 .carousel-inner:after{
	right: 0;
}
.screen-5 .item{
	position: relative;
	position: absolute;
	top: 0;
	left: 0;
	width: 780px;
	height: 511px;
}
.screen-5 .item>div{
	position: absolute;
	top: 58px;
	width: 302px;
	height: 431px;
	overflow: hidden;
}
.screen-5 .item .before{
	left: 44px;
}
.screen-5 .item .after{
	right: 44px;
}
.screen-5 .item>div:after{
	content: '';
	position: absolute;
	left: 0;
	top: -100%;
	right: 0;
	width: 302px;
	height: 431px;
	background-position: center;
	background-repeat: no-repeat;
}
.screen-5 .item .before:after{
	background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/carousel-before.png);
}
.screen-5 .item .after:after{
	background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/carousel-after.png);
}
.screen-5 .item>div:after{
	top: 0%;
}
.screen-5.onscreen .item>div:after{
	top: -100%;
}
.screen-5.onscreen .item.active>div:after{
	top: -100%;
	animation-name: OpenCloseOpen !important;
	animation-duration: 2s !important;
	animation-delay: 0.7s !important;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}
.screen-5.onscreen .item.active.first>div:after{
	top: 0%;
	animation-name: CloseOpen !important;
	animation-duration: 1s !important;
	animation-delay: 2.5s !important;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}
@keyframes OpenCloseOpen{
	0%{
		top: -100%;
	}
	35%{
		top: 0%;
	}
	65%{
		top: 0%;
	}
	100%{
		top: -100%;
	}
}
@-webkit-keyframes OpenCloseOpen{
	0%{
		top: -100%;
	}
	35%{
		top: 0%;
	}
	65%{
		top: 0%;
	}
	100%{
		top: -100%;
	}
}
@keyframes CloseOpen{
	0%{
		top: 0%;
	}
	100%{
		top: -100%;
	}
}
@-webkit-keyframes CloseOpen{
	0%{
		top: 0%;
	}
	100%{
		top: -100%;
	}
}
/*.screen-5 .item b{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 150px;
	color: #fff;
}*/
.carousel-fade .carousel-inner .item {
	display: block;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  z-index: 1;
}
.carousel-fade .carousel-inner .active{
	z-index: 2;
}
.carousel-fade .carousel-inner .item>div>img{
	opacity: 0;
	transition: opacity 0.5s 1.5s ease;
	/*width: 100%;*/
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	-o-transform:translateX(-50%);
	transform:translateX(-50%);
}
.carousel-fade .carousel-inner .item.active>div>img{
	opacity: 1;
	/*transition: opacity 1s 2.5s ease; */
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 1;
  /*transition-delay: 2.5s;*/
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
  /*transition-delay: 2.5s;*/
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}
#ul-wrap-2 {
	margin-top: 0;
	padding-top: 100px;
	height: auto;
	/*background-image: url(/wp-content/themes/rolet/img/zavod00002.jpg);*/
	background-repeat: no-repeat;
	background-position: center;
	padding-bottom: 40px;
}
#ul-wrap-2 .container>.title{
	margin-bottom: 30px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 44px;
	color: #1a1a1a;
	text-transform: uppercase;
	text-align: center;
}
#ul-wrap-2 .container>.title b{
	font-weight: 700;
}
.screen-6{
	margin-top: -215px;
}
.screen-6 .container{
	padding: 50px 0;
}
.screen-6 .text{}
.screen-6 .text .title{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 34px;
	line-height: 40px;
	color: #1a1a1a;
	text-transform: uppercase;
}
.screen-6 .text .title b{
	font-weight: 700;
}
.screen-6 .text .after-title{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 44px;
	color: #1a1a1a;
	text-transform: uppercase;
}
.screen-6 .text .after-title b{
	font-weight: 700;
}
.screen-6 .text .descr{
	float: left;
	width: 100%;
	margin-top: 35px;
	margin-bottom: 35px;
	color: #333;
}
.screen-6 .text .button{
	float: left;
	margin-right: 20px;
}
.screen-6 .owl-wrap{
	position: relative;
	width: 50%;
	margin-left: -8.33337%;
	padding-bottom: 50px;
	overflow: hidden;
}
.screen-6 .owl-wrap:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 30px;
	width: 50%;
	background: -moz-linear-gradient(left,  rgba(255,255,255,1) 30px, rgba(255,255,255,0) 75%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 30px,rgba(255,255,255,0) 75%);
	background: linear-gradient(to right,  rgba(255,255,255,1) 30px,rgba(255,255,255,0) 75%);
	z-index: 1;
}
.screen-6 .owl-wrap figure{
	overflow: hidden;
}
.screen-6 .owl-wrap .owl-carousel{
	width: 47.5%;
	width: 50%;
	float: right;
}
.screen-6 .owl-carousel .owl-stage-outer{
	overflow: visible;
}
.screen-6 .owl-wrap .owl-carousel .item{
	padding: 0 15px;
}
.work-gallery .owl-carousel .item{
	/*padding: 0 10px;*/
	overflow: hidden;
	height: 185px;
	width: 245px;
}
.work-gallery .owl-carousel .item img{
	height: 190px;
	max-width: 245px;
	max-height: 100%;
}

.work-gallery .owl-carousel .item{
	padding: 0 5px;
}

.owl-carousel .item{
	/*padding: 0 10px;*/
	overflow: hidden;
}
.owl-carousel .item{
	padding: 0 15px;
}
.owl-carousel .item a{
	position: relative;
	display: block;
	cursor: url('/rolstavni-na-okna/wp-content/themes/rolet/img/zoom.png'), pointer;
}
.owl-carousel .item a:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.7);
	z-index: 1;
}
.owl-carousel .item a:before{
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}
.owl-carousel .item a:hover:before{
	opacity: 1;
}
.owl-theme .owl-dots {
    position: absolute;
    left: 30px;
    right: 30px;
    height: 2px;
    margin-top: 40px !important;
    background-color: #e6e6e6;
}
.screen-6 .owl-theme .owl-dots{
    left: -87.5%;
} 
.owl-theme .owl-dots .owl-dot {
    width: -webkit-calc(18% - 10px);
    width: calc(18% - 10px);
    width: -webkit-calc(9% - 10px);
    width: calc(9% - 10px);
    margin: 0 5px;
    -webkit-transform: translateY(-11px);
    -moz-transform: translateY(-11px);
    -ms-transform: translateY(-11px);
    -o-transform: translateY(-11px);
    transform: translateY(-11px);
}
.screen-6 .owl-theme .owl-dots .owl-dot {
	width: -webkit-calc(9% - 10px);
    width: calc(9% - 10px);
} 
.owl-theme .owl-dots .owl-dot span {
    width: 100%;
    height: 4px;
    margin: 10px 0px;
    background: #2f98f1;
    display: block;
    opacity: 0.2;
    opacity: 0;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 0;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    opacity: 1;
    background: #2f98f1;
    background: -moz-linear-gradient(left,  #16c0f1 0%, #45dcfb 100%);
	background: -webkit-linear-gradient(left,  #16c0f1 0%, #45dcfb 100%);
	background: linear-gradient(to right,  #16c0f1 0%, #45dcfb 100%);
	
}
.owl-theme .owl-nav{
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 0px;
	margin: 0;
}
.screen-8 .owl-theme .owl-nav{
	position: absolute;
	left: 0;
	right: 0;
	top: 95%;
	-webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 0px;
	margin: 0;
}
.owl-theme .owl-nav .owl-prev{
	left: -40px;
	content: '>';
}
.owl-theme .owl-nav .owl-next{
	right: -40px;
}
.work-gallery {
	margin: 30px 0;
}
.work-gallery .title {
	font-family: 'Roboto Condensed', Arial, sans-serif;
	font-size: 38px;
	color: #1a1a1a;
	font-weight: 400;
	text-align: center;
	margin-bottom: 20px;
}
.work-gallery .owl-nav {
	display: block;
}
.work-gallery .owl-dots {
	display: none;
}
.screen-7{
	padding-top: 50px;
	padding-bottom: 85px;
}
.screen-7 .container{
	padding: 0;
}
.screen-7 .title{
	margin-bottom: 40px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 42px;
	color: #1a1a1a;
	text-transform: uppercase;
	text-align: center;
}
.screen-7 .title b{
	font-weight: 700;
}
.screen-7 .owl-carousel .item a{
	-webkit-transition: box-shadow 0.4s ease;
	transition: box-shadow 0.4s ease;
}
.screen-7 .owl-carousel .item a:hover{
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.screen-7 .owl-carousel .item a:before{
	background: -moz-linear-gradient(top,  rgba(69,220,251,0.7) 0%, rgba(22,192,241,0.7) 100%);
	background: -webkit-linear-gradient(top,  rgba(69,220,251,0.7) 0%,rgba(22,192,241,0.7) 100%);
	background: linear-gradient(to bottom,  rgba(69,220,251,0.7) 0%,rgba(22,192,241,0.7) 100%);

}
.screen-7 .owl-theme .owl-dots{
	width: 35%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
#scheme{
	margin-top: -50px;
    padding-top: 50px;
	height: auto;
	/*background-image: url(/wp-content/themes/rolet/img/ul-3-bg.jpg);*/
	background-repeat: no-repeat;
	background-position: center;
}
#scheme .container{
	padding: 0;
}
#scheme>div>.title{
	margin-bottom: 45px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 44px;
	color: #1a1a1a;
	text-transform: uppercase;
	text-align: center;
}
#scheme .title b{
	font-weight: 700;
}
#scheme ul{
	display: inline-block;
	width: 100%;
	padding: 0;
	list-style: none;
}
#scheme ul li{
	width: 25%;
	padding: 0 15px;
	float: left;
	position: relative;
}
#scheme .item .title{
	margin: 10px 0;
}
#scheme ul li .img-wrap{
	position: absolute;
	left: 0;
	height: 100px;
	width: 60px;
}
#scheme ul li:first-child .img-wrap{
	left: 15px;
}
#scheme ul li .img-wrap img{
	position: absolute;
	top: 50%;
	left: 0%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.ul-wrap-num .item {
	padding: 0 20px 0 50px;
}
.ul-wrap-num .item .title {
	position: relative;
    margin: 15px 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: #172033;
    text-transform: uppercase;
    z-index: 2;
}
.ul-wrap-num .item .descr {
	position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #4c4c4c;
    z-index: 2;
}
#scheme ul li .button-text{
	margin: 0;
}
.screen-8{
	margin-top: 0;
	padding-top: 50px;
	padding-bottom: 50px;
}
.screen-8>div>.title{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 44px;
	color: #1a1a1a;
	text-transform: uppercase;
	text-align: center;
}
.screen-8 .title b{
	font-weight: 700;
}
.screen-8 .owl-wrap{
	position: relative;
	overflow: hidden;
}
.screen-8 .owl-wrap .owl-carousel{
	width: 60%;
	margin: 0 20%;
	padding: 20px 0 30px;
}
.screen-8 .owl-carousel .owl-stage-outer{
	overflow: visible;
}
.screen-8 .owl-item{
	padding: 20px 15px;
}
.screen-8 .owl-item.active{
	
}
.screen-8 .owl-item .item{
	padding: 0;
	box-shadow: none;
	-webkit-transition: box-shadow 0.4s 0.2s ease;
	transition: box-shadow 0.4s 0.2s ease;
}
.screen-8 .owl-item .item{
	/*width: 132px;*/
}
.screen-8 .owl-item.active .item{
	/*width: auto;*/
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.screen-8 .owl-item .item .img-wrap{
	position: relative;
	float: right;
	width: 165px;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: transform 0.4s 0.2s ease;
	transition: transform 0.4s 0.2s ease;
}
/*
.screen-8 .owl-item.active .item .img-wrap img{
    width:100%;
    height: auto;
}
*/
.screen-8 .owl-carousel .owl-item img {
    width:auto;
    height: 100%;
}
.screen-8 .owl-item.active .item .img-wrap{
	float: left;
	width: 165px;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	height: 219px;
	overflow: hidden;
}
.screen-8 .owl-item.active + .owl-item .item .img-wrap{
	float: left;
}
.screen-8 .owl-theme .owl-dots{
	margin-top: 20px !important;
}
.screen-8 .owl-item .item .text-wrap{
	/*display: none;*/
	float: left;
	width: -webkit-calc(100% - 165px);
	width: calc(100% - 165px);
	padding: 28px;
	padding: 28px 15px 28px 28px;
	opacity: 0;
	-webkit-transition: opacity 0.4s 0.2s ease;
	transition: opacity 0.4s 0.2s ease;
}
.screen-8 .owl-item.active .item .text-wrap{
	display: block;
	opacity: 1;
}
.screen-8 .owl-item .item .text-wrap .title{
	margin-bottom: 15px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
}
.screen-8 .owl-item .item .text-wrap .text{
	color: #4c4c4c;
	height: 130px;
	max-height: 130px;
	overflow: hidden;
}
.screen-8 .owl-wrap:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 30px;
	width: 22.5%;
	background: -moz-linear-gradient(left,  rgba(255,255,255,1) 30px, rgba(255,255,255,0) 75%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 30px,rgba(255,255,255,0) 75%);
	background: linear-gradient(to right,  rgba(255,255,255,1) 30px,rgba(255,255,255,0) 75%);
	z-index: 2;
}
.screen-8 .owl-wrap:after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 30px;
	width: 22.5%;
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 30px, rgba(255,255,255,1) 75%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 30px, rgba(255,255,255,1) 75%);
	background: linear-gradient(to right,  rgba(255,255,255,0) 30px, rgba(255,255,255,1) 75%);
	z-index: 2;
}
.screen-9{
	padding-top: 50px;
	padding-bottom: 50px;
}
.screen-9 .container{
	padding: 0;
}
.screen-9 .sel-color{
	width: 60%;
	margin-top: 40px;
}
.screen-9 .sel-color .title{
	font-family: 'Roboto Condensed', Arial, sans-serif;
	font-weight: 400;
	font-size: 38px;
	color: #1a1a1a;
	line-height: 46px;
	text-transform: uppercase;
}
.screen-9 .sel-color .text{
	margin: 20px 0;
}
.screen-9 .sel-color .button{
	margin: 20px auto;
}
.screen-9 .sel-color .color-panel{
	width: 100%;
}
.material-color-picker {
  width: 100%;
  margin: 0 auto;
}
.material-color-picker__left-panel {
  z-index: 1;
}
.material-color-picker__right-panel {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 120px;
}

.color-selector {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    /*padding: 1em 0;*/
    padding: 8px 0 0 0;
    border-top: 2px solid #E0E0E0;
	justify-content: space-around;
}
.color-selector input[type='radio'] {
  display: none;
}
.color-selector label {
  position: relative;
  display: inline-block;
  padding: 0 5px;
  cursor: pointer;
}
.color-selector label:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  padding: 14px;
  background-color: currentColor;
}
.color-selector label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 7px;
  border: 1px solid;
  -webkit-transition: padding 250ms;
  transition: padding 250ms;
}
.color-selector input[type='radio']:checked + label:after {
  padding: 16px;
}

.color-palette-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}
.color-palette-wrapper.js-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
		  z-index: 1;
}
.color-palette-wrapper.js-active-2 {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
		  z-index: 2;
}

.color-palette-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  margin-bottom: 1em;
  font-weight: 400;
  color: #757575;
}

.color-palette {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 10;
      -ms-flex-positive: 1;
          flex-grow: 1;
		  height: 50%;
}
.color-palette__item {
  position: relative;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 10;
          flex-grow: 10;
  padding: 0;
  font-family: "Roboto", sans-serif;
  -webkit-transition: -webkit-transform 250ms;
  transition: -webkit-transform 250ms;
  transition: transform 250ms;
  transition: transform 250ms, -webkit-transform 250ms;
  cursor: pointer;
  width: 55px;
  height: 55px;
  margin: 0 3px;
}
.color-palette__item:after{
	content: '';
	position: absolute;
	left: 2px;
	right: 2px;
	top: 2px;
	bottom: 2px;
	border: 2px solid #fff;
	display: none;
}
.color-palette__item.js-select:after{
	display: block;
}
.color-palette__item:hover {
  /*-webkit-transform: scale(1.05);
          transform: scale(1.05);*/
}

.copied-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 0;
  -webkit-transition: all 250ms;
  transition: all 250ms;
}
.copied-indicator.js-copied {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.75;
}

.screen-9 .color-mask{
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
	/*background-color: #c7e91b;*/
	background: #fff;
	/*background-image: linear-gradient( to top, red, blue, white );*/
	-webkit-transition: background-color 0.3s ease, opacity 1s 0.6s ease ,transform 1s 0.6s ease ;
	transition: background-color 0.3s ease, opacity 1s 0.6s ease ,transform 1s 0.6s ease ;
}
.screen-9 .color-mask img{
	position: relative;
	width: 100%;
	z-index: 2;
}
/*.screen-9 .sel-color .color-mask:after{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	display: block;
	width: 95%;
	height: 95%;
}*/
.screen-9 .text-wrap{
	padding: 0;
	position: relative;
	background-color: #fff;
	width: 40%;
}
.screen-9 .text-wrap .title{
	margin-bottom: 35px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 44px;
	color: #1a1a1a;
	text-transform: uppercase;
}
.screen-9 .text-wrap .title b{
	font-weight: 700;
}
.screen-9 .text-wrap .text{
	margin-bottom: 35px;
	color: #4c4c4c;
}
.screen-9 .text-wrap .button{
	margin: 0;
}
.screen-9 .text-wrap .button:hover,.screen-9 .text-wrap .button:focus,.screen-9 .text-wrap .button:active{
	margin: -5px 0 5px;
}
.screen-9 .text-wrap:before{
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	display: block;
	background-color: #fff;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.screen-10{
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}
.screen-10 .title{
	margin-bottom: 30px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 44px;
	color: #1a1a1a;
	text-transform: uppercase;
	text-align: center;
}
.screen-10 .title b{
	font-weight: 700;
}
.screen-10 .text{
	margin-bottom: 50px;
	padding-left: 25%;
	padding-right: 25%;
	text-align: center;
	color: #4c4c4c;
}
.screen-10 .clock-2{
	width: 542px;
	margin: 0 auto;
}
.screen-10 .counter>span{
	margin: 5px auto 0;
}
.screen-10 .counter{
	margin-bottom: 35px;
}
.screen-10 .button:hover,.screen-10 .button:focus,.screen-10 .button:active{
	margin: -5px auto 5px;
}
.screen-10 .text-wrap {
	width: 65%;
	text-align: center;
	display: inline-block;
	float: left;
}
.screen-10 .img-wrap {
	width: 35%;
	text-align: center;
	display: inline-block;
	float: left;
}
.screen-10 .text-wrap {
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #1a1a1a;
}
.screen-10 .discount-block {
	text-align: center;
	margin: 15px 0;
}
.screen-10 .discount {
	max-width: 120px;
	text-align: center;
	display: inline-block;
	margin: 0 15px;
}
.screen-10 .discount .discount-box {
	display: block;
	width: 120px;
	height: 96px;
	border-radius: 4px;
	padding: 6px 0;
	-webkit-box-shadow:  0 0 5px rgba(0,0,0,0.2);
    box-shadow:  0 0 7px rgba(0,0,0,0.2);
	margin: 0 auto;
}
.screen-10 .discount .discount-inner-box {
	width: 120px;
	height: 100%;
	border-radius: 4px;
	-webkit-box-shadow:  0 0 5px rgba(0,0,0,0.2);
    box-shadow:  0 0 7px rgba(0,0,0,0.2);
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-weight: 700;
	font-size: 50px;
	line-height: 82px;
	color: #ff0000;
}
.screen-10-title {
	font-family: 'Roboto Condensed', Arial, sans-serif;
	font-weight: 700;
	font-size: 38px;
	color: #1a1a1a;
}
.screen-10-content {
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #4d4d4d;
	margin: 10px 0;
}
.screen-10 .counter {
	margin: 60px auto 40px;
}
#map{
	position: relative;
	height: 640px;
}
#map:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	display: block;
	height: 100px;
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}
.pin-wrap {
    position: absolute;
  width: 100px;
  height: 100px;
	width: 75px;
	height: 99px;
  background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/point.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
	margin-top: -94px;
	margin-left: -38px;
  -webkit-transform-origin: 50% 120.7106781187% 0;
          transform-origin: 50% 120.7106781187% 0;
}

.pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  -webkit-transform-origin: 50% 120.7106781187% 0;
          transform-origin: 50% 120.7106781187% 0;
}

/*.pin::after {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100px;
  height: 100px;
  content: '';
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  border: 20px solid #00f6ff;
  border-radius: 50% 50% 50% 50%;
}

.pin::before {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100px;
  height: 100px;
  content: '';
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  border: 18px solid #00c5de;
  border-radius: 50% 50% 50% 0;
}*/

.shadow-map {
  position: absolute;
}

.shadow-map::after {
	opacity: 0;
  position: absolute;
  left: -125px;
  display: block;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  content: '';
  -webkit-transform: rotateX(55deg);
          transform: rotateX(55deg);
  border-radius: 50%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 100px 0 20px;
          box-shadow: rgba(0, 0, 0, 0.5) 100px 0 20px;
}

.pulse {
  position: absolute;
  margin-top: -50px;
  margin-left: -50px;
  -webkit-transform: rotateX(55deg);
          transform: rotateX(55deg);
}

.pulse::after {
  display: block;
  width: 100px;
  height: 100px;
  content: '';
  -webkit-animation: pulsate 1s ease-out;
          animation: pulsate 1s ease-out;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
  border-radius: 50%;
/*  -webkit-box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.5);*/
  -webkit-box-shadow: 0 0 6px 3px #00d6ff;
          box-shadow: 0 0 6px 3px #00d6ff;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
footer{
	min-height: 205px;
	padding-top: 45px;
	padding-bottom: 45px;
	background-color: #172033;
}
footer .container{
	padding: 0;
}
footer .title{
	margin-bottom: 15px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #00c8ff;
	text-transform: uppercase;
}
footer .text,
footer .text a{
	color: #fff !important;
	text-decoration: none;
}
footer .text .button-text{
	background-color: transparent;
	width: 263px;
	padding: 0 30px;
	color: #fff;
	border-color: #fff;
	-webkit-transition: all ease-out 0.2s;
     -moz-transition: all ease-out 0.2s;
     -o-transition: all ease-out 0.2s;
     transition: all ease-out 0.2s;
}
footer .text .button-text:hover{
	background-color: white;
	width: 263px;
	padding: 0 30px;
	color: #172033;
	border-color: #fff;
	-webkit-transition: all ease-out 0.2s;
     -moz-transition: all ease-out 0.2s;
     -o-transition: all ease-out 0.2s;
     transition: all ease-out 0.2s;
}
.copyright{
	margin-top: 25px;
	padding-top: 15px;
	padding-bottom: 0px;
	background-color: #172033;
	font-size: 12px;
	color: #b2b2b2;
	text-align: center;
}
.copyright a{
	color: #00c8ff;
	text-decoration: underline;
}
.copyright a:hover{
	text-decoration: none;
}
#back-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    margin-bottom: 0;
    z-index: 55;
}
#back-top a {
    padding: 10px 13px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #0060a5;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0060a5;
    box-shadow: 0 3px 15px rgba(0,0,0,0.4);
}
#back-top a:hover {
    color: #0060a5;
    text-decoration: underline;
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #2dcdf6;
}
.mCSB_scrollTools .mCSB_dragger{
	height: 30px !important;
}
.error .text{
	margin: 150px 0;
}
.error .title{
	padding-left: 15px;
	position: relative;
}
.error .after-title{
	padding-left: 15px;
}
.error .title>span{
	position: absolute;
	left: -50px;
	font-size: 300px;
	font-weight: 700;
	color: #e0e0e0;
	z-index: -1;
}
.error .button {
    width: 250px;
    margin: 30px 0 0 15px;
}
.pswp__bg {
    background: rgba(15, 170, 222, 0.5);
}
.modal-open .navbar-inverse{
	/*padding-right: 17px;*/
}
/*****Модальное ВХОД*****/
.modal-open{
	width: 100% !important;
	/*padding: 0 17px 0 0 !important;*/
}
.modal-open header{
	padding: 0 17px 0 0 !important;
}
.modal .button img{
	top: -10px;
	width: 100%;
}
.modal-dialog,.modal.in .modal-dialog{
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background-color: #fff;
    /* margin: 50px auto; */
    margin: 0;
	width: 410px;

	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#modal-consult .modal-dialog, #modal-consult .modal.in .modal-dialog,#modal-consult-color .modal-dialog, #modal-consult .modal.in .modal-dialog,
#modal-consult1 .modal-dialog, #modal-consult1 .modal.in .modal-dialog,
#modal-consult3 .modal-dialog, #modal-consult3 .modal.in .modal-dialog{
	width: 490px;
}
.modal-dialog .modal-content{
    padding: 20px;
	border-radius: 0px;
	background-color: transparent;
  	border: none;
	-webkit-box-shadow: none;
    box-shadow: none;
}
.modal-dialog .modal-header{
	position: relative;
	z-index: 2;
	padding: 0;
	width: 100%;
	margin: 0 auto;
	/*border-bottom: 2px solid #c3028b;*/
	border: none;
}
.modal-dialog .modal-header .title{
	display: block;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 20px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 48px;
	color: #172033;
	text-transform: uppercase;
}
.modal-dialog .close{
	position: absolute;
	top: -20px;
    right: -20px;
	margin: 0;
	margin-top: 0px;
	width: 20px;
	height: 20px;
	text-shadow: none;
	/*background-image: url(../img/close.png);*/
	background-repeat: no-repeat;
	background-position: center;
	opacity: 1;
	transition: opacity 0.2s;
}
.modal-dialog .close:hover{
	opacity: 0.5;
}
.modal-dialog .modal-body{
	margin: 0 auto;
	padding: 40px 50px 50px;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-width: 10px;
    border-style: solid;
    border-color: transparent;
    -moz-border-image: -moz-linear-gradient(60deg, #00c6ff 0%, #00ffff 100%);
    -webkit-border-image: -webkit-linear-gradient(60deg, #00c6ff 0%, #00ffff 100%);
    border-image: linear-gradient(60deg, #00c6ff 0%, #00ffff 100%);
    border-image-slice: 1;
}
.modal-dialog .modal-body .after-title{
	font-size: 16px;
}
.modal-dialog .form-vertical .form-group{
	margin: 0;
}
.modal-dialog .form-vertical .form-group{
	margin-bottom: 14px;
}
.modal-dialog .form-vertical .form-group:nth-child(1){
	float: left;
	width: 100%;
}
.modal-dialog .form-vertical .form-group:nth-child(2){
	width: 100%;
}
/*
#modal-consult .modal-dialog .form-vertical .form-group:nth-child(1){
	float: left;
	width: 48%;
}
*/

#modal-consult .modal-dialog .form-group,
#modal-consult1 .modal-dialog .form-group,
#modal-consult3 .modal-dialog .form-group{
	float: left;
	width: 48%;
}
#modal-consult .modal-dialog .form-group:nth-child(2),
#modal-consult1 .modal-dialog .form-group:nth-child(2),
#modal-consult3 .modal-dialog .form-group:nth-child(2){
	float: right;
	width: 48%;
}
#modal-consult .form-group-textarea,#modal-consult1 .form-group-textarea,
#modal-consult3 .form-group-textarea{
    width: 100%!important;
    
}
.modal-content .button {
    background-image: url(/rolstavni-na-okna/wp-content/themes/rolet/img/btn-bg.png);
    width: 100%;    
}
.btn-wrap {
   position: relative;
    width: 70%;
    margin: 0 auto;
}
.btn-wrap-call {
    width: 70%;
}
.btn-wrap:hover {
       top: -3px; 
}
/*
#modal-consult .modal-dialog .form-vertical .form-group:nth-child(2){
	float: right;
	width: 48%;
}
*/
.modal-dialog .form-group input, .modal-dialog .form-group textarea{
	/*padding: 0;*/
	height: 40px;
    background-color: transparent;
    /*border: none;*/
    /*border-bottom: 1px solid #ccc;*/
    /*border-radius: 0;*/
    box-shadow: none;
    line-height: 24px;
    font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #666666;
}
.modal-dialog .form-group textarea{
	height: 80px;
	resize: none;
}
.modal-dialog .form-group input:focus, .modal-dialog .form-group textarea:focus{
	border: none;
	border-bottom: solid 1px #e1e1e8;
}
.modal-dialog .form-vertical .btn-wrap{
	display: inline-block;
	width: 100%;
}
.modal-dialog .policy{
	position: absolute;
	bottom: -43px;
	width: 100%;
	padding: 0 65px;
}
.modal-dialog .policy,
.modal-dialog .policy a{
	float: none;
	margin-top: 10px;
	width: 100%;
	font-size: 12px;
	line-height: 14px;
	color: #fff;
	text-align: center;
}
.modal-dialog .form-vertical .button{
	margin-top: 10px;
}
.modal-dialog .form-vertical .button:hover,.modal-dialog .form-vertical .button:focus,.modal-dialog .form-vertical .button:active{
	margin: 5px auto;
}
.modal-dialog .policy a{
	float: none;
	text-decoration: underline;
	margin: 0;
}
.modal-dialog .policy a span{
	display: block;
}
.modal-dialog .policy a:hover{
	text-decoration: none;
}
.modal-backdrop{
	background-color: #000;
}

#policy .modal-dialog{
	width: 70%;
}
#policy .modal-dialog .modal-body{
	width: 100%;
}
#policy .modal-dialog .modal-header{
	width: 100%;
}
#policy .modal-dialog .modal-header .title{
	/*font-size: 16px;*/
}
/*#policy .modal-dialog, .modal.in #policy .modal-dialog {
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -o-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
}*/
section {
	/*overflow: hidden;*/
}

.screen-1.screen-error .img-wrap {
    position: relative;
    height: 330px;
    margin-top: 170px;
}
.screen-1.screen-error .img-wrap .img-car {
    position: absolute;
    left: -25%;
    bottom: auto;
    top: 50%;
}
.screen-1.screen-error .img-wrap .img-numb {
    position: relative;
    top: -10px;
    left: -48px;
}
.screen-1.screen-error .main-title .after-title{
	padding-right: 50px;
}
.screen-1.screen-error .main-title .button {
    width: 310px;
}
/*CF7*/
input[type=text].wpcf7-not-valid, input[type=email].wpcf7-not-valid, input[type=tel].wpcf7-not-valid, textarea.wpcf7-not-valid, #block-7 input[type=text].wpcf7-not-valid, #block-7 input[type=tel].wpcf7-not-valid, #block-15 input[type=tel].wpcf7-not-valid, #block-15 input[type=text].wpcf7-not-valid{
        border: 1px solid #ec3c06;
        z-index:12000;
        position:relative;
}
 
div span.wpcf7-not-valid-tip{
        left:3%;
}
 
body span.wpcf7-not-valid-tip {
	display: none;
	color: #ec3c06;
	border: none;
	background: none;
}
body span.wpcf7-not-valid-tip-no-ajax{
	display:inline-block;
	font-size:18px;
	margin:0 0 0 10px;
}
body div.wpcf7-validation-errors {
        background: #ffe2e2;
    border: 1px solid #ff8a8a;
    color: #ec3c06;
    font-size: 14px;
    text-align: center;
    position: relative;
    z-index: 12000;
}
.contact-inner-form .wpcf7-response-output{
	width:95%;
}
body div.wpcf7-response-output {
        padding: 6px;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        border-radius: 3px;
}
 
body .wpcf7-mail-sent-ng {
        background: #fff2e2;
        border: 1px solid #ffbc8a;
        color: #e17731;
}
 
body .wpcf7-mail-sent-ok {
        background: #e8ffe2;
        border: 1px solid #6fdf51;
        color: #1ea524;
        font:12px arial, sans-serif;
        text-align:center;
    font-weight: 400;
}

@media screen and (max-width: 1500px) {
	.screen-9,
	.screen-5{
		overflow: hidden;
	}
	.screen-4 .img-wrap img{
		max-width: 100vw;
	}
}
@media screen and (max-width: 1200px) {
	.screen-1 .sub-stock {
		text-align: left;
	}
	.screen-10 .img-wrap img{
		width: 325px;
	}
	.owl-theme .owl-nav .owl-prev {
		left: 0;
	}
	.owl-theme .owl-nav .owl-next {
		right: 0;
	}
	.owl-theme .owl-nav .owl-prev:hover {
		left: 0;
	}
	.owl-theme .owl-nav .owl-next:hover {
		right: 0;
	}
	.screen-9 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.color-selector label {
		padding: 0 2px;
	}
	.screen-1-new .text-wrap .title {
		font-size: 28px;
		line-height: 34px;
	}
	.screen-1-new .img-wrap {
		text-align: center;
	}
	.screen-1-new .img-wrap .window-block {
		width: 42%;
		float: none;
	}
	.screen-1-new .img-wrap .window-block img.window {
		width: 95%;
	}
	.screen-1-new .img-wrap .window-block img.wrap {
		width: 100%;
		top: 0;
	}
	.screen-1-new .img-wrap .window-block img.rolet.down {
		width: 100%;
		left: 4px;
		width: 92%;
		
	}
	.screen-1-new .img-wrap .window-block img.rolet {
		width: 100%;
		left: 4px;
		width: 92%;
	}
	.tab-content .image img {
		display: inline-block;
		height: auto;
		width: 100%;
	}.tab-content .image {
		float: right;
		width: 50%;
	}
	.tab-content .text {
		width: 48%;
	}
	.tab-content .text > img {
		position: relative;
		bottom: 0;
	}
	.screen-1 .window_up, .screen-1 .window_down {
		left: 139px;
	}
	.screen-1 .door_right {
		left: -54px;
	}
	.screen-1 .door_left {
		left: -156px;
	}
	.nav-tabs > li > a {
		font-size: 20px;
	}
	.nav-tabs > li {
		width: 23%;
	}
	.nav-tabs > li.active {
    width: 31%;
	}
	.tab-content .text > img {
		max-width: 26%;
	}
	.screen-1 .stock-percent {
		text-align: left;
}
	.screen-9,
	.screen-5{
		overflow: visible;
	}
	.screen-1 .wrap:after {
	    content: '';
	    position: absolute;
	    top: -50px;
	    bottom: -50px;
	    left: -20px;
	    right: -20px;
	}
	.screen-1 .title {
	    font-size: 38px;
	    line-height: 42px;
	}
	.screen-1 .after-title{
		padding-right: 0;
	}
	.flip-clock-wrapper ul li a div div.inn,
	.flip-clock-wrapper ul li a div{
		font-size: 50px;
	}
	.flip-clock-wrapper ul {
		width: 50px;
		height: 70px;
		font-size: 50px;
		line-height: 70px;
	}
	.flip-clock-wrapper ul li{
		line-height: 70px;
	}
	.counter>span{
		width: 462px;
	}
	.screen-1 .button-wrap {
	    width: 462px;
	}
	#ul-wrap-1 {
	    padding-top: 50px;
	    padding-bottom: 50px;
	}
	.ul-wrap .item {
	    padding: 0;
	}
	.ul-wrap .item .descr{
		font-size: 14px;
	}
	.screen-2 .wrap .img-wrap{
		left: 0;
	}
	.screen-2 .wrap .img-wrap img{
		width: 100%;
	}
	.screen-2 .wrap .text {
		    height: 440px;
	    right: 0;
	    padding: 40px;
	}
	.screen-2 .wrap .text .title b{
		font-size: 38px;
	}
	.screen-2 .wrap .text .title {
		margin-bottom: 15px;
	    font-size: 28px;
	    line-height: 34px;
	}
	.screen-2 .wrap {
	    position: relative;
	    height: 512px;
	}
	.screen-3 ul>div {
	    width: -webkit-calc(27.3333% + 30px);
	    width: calc(27.3333% + 30px);
	    height: 100%;
	    margin: 0 auto;
	    padding: 50px 0;
	    font-size: 28px;
	    line-height: 38px;
	}
	.screen-3 ul li:nth-child(even) {
	    float: left;
	    padding-right: 17%;
	    padding-left: 0;
	}
	.screen-3 ul li:nth-child(odd) {
	    float: right;
	    padding-left: 17%;
	    padding-right: 0;
	}
	.screen-4 .container{
		padding: 0;
	}
	.screen-4 .img-wrap{
		height: 330px;
	}
	.screen-4 .img-wrap img{
		width: 100%;
	}
	.screen-4 .wrap .text {
	    width: 60%;
	    height: 100%;
	    top: 15px;
	    left: 0;
	    padding: 20px 40px;
	}
	.screen-4 .wrap{
		height: 410px;
	}
	.screen-4 .wrap .text .title {
	    font-size: 28px;
	    line-height: 34px;
	    white-space: nowrap;
	}
	.screen-4 .wrap .text .descr{
		margin-top: 15px;
		margin-bottom: 25px;
	}
	.screen-5{
		margin-top: 50px;
	}
	.screen-5 .text-wrap .title {
	    font-family: 'Roboto Condensed', sans-serif;
	    font-weight: 700;
	    font-size: 28px;
	    line-height: 34px;
	}
	.screen-5 .carousel-inner:before, .screen-5 .carousel-inner:after{
		width: 50%;
		background-size: 95%;
	}
	.screen-5 .item>div {
	   position: absolute;
	    top: 83px;
	    width: 259px;
	    height: 370px;
	}
	.screen-5 .item{
		width: 100%;
	}
	.screen-5 .item .before {
	    left: 33px;
	}
	.screen-5 .item .after {
	    right: 33px;
	}
	.screen-5 .item>div:after {
	    width: 100%;
	    height: 370px;
	    background-size: contain;
	}
	.carousel-fade .carousel-inner .item.active>div>img {
	    width: 100%;
	}
	.carousel-fade .carousel-inner .item>div>img{
		width: 100%;
	}
	#ul-wrap-2{
		padding-top: 210px;
		background-size: contain;
	}
	#ul-wrap-2 .container>.title {
	    font-size: 28px;
	    line-height: 34px;
	}
	.screen-6 .container {
	    padding: 0;
	}
	.screen-6 .text {
	    width: 50%;
	    padding-left: 0;
	}
	.screen-6 .owl-wrap{
		margin-left: 0;
	}
	.screen-6 .text .title,
	.screen-6 .text .after-title {
	    font-size: 28px;
	    line-height: 34px;
	}
	.screen-6 .text .descr {
	    margin-top: 15px;
	    margin-bottom: 15px;
	}
	.screen-6 .text .button {
	    float: none;
	    margin-right: 0;
	    margin: 0 auto 15px;
	}
	.screen-6 .text .button + div{
		text-align: center;
	}
	.screen-7 .title {
	    margin-bottom: 30px;
	    font-size: 28px;
	    line-height: 32px;
	}
	.ul-wrap-num .item {
	    padding: 0 0 0 40px;
	}
	#scheme {
	    height: 280px;
	    background-size: contain;
	}
	#scheme>div>.title,
	.screen-8>div>.title{
		font-size: 28px;
		line-height: 34px;
	}
	.screen-8 .owl-wrap .owl-carousel {
	    width: 70%;
	    margin: 0px 15%;
	}
	.screen-5 .wrap:after {
	    left: -10px;
	    right: -10px;
	}
	.screen-5 .text-wrap {
	    position: relative;
	    padding-top: 105px;
	    padding-left: 15px; 
	    padding-right: 0;
	}
	.screen-9 .text-wrap:after{
		display: none;
	}
	.screen-9 .sel-color {
	    width: 60%;
	}
	.screen-9 .text-wrap {
	    width: 40%;
	}
	.screen-10 .title {
	    font-size: 28px;
	    line-height: 34px;
	}
	.screen-10 .clock-2 {
	    width: 462px;
	}
	.flip-clock-divider{
		height: 80px;
	}
	footer .container>div{
		width: 25%;
		float: left;
		padding: 0;
	}
	footer .container>.copyright{
		width: 100%;
	}
	footer .title {
	    margin-bottom: 5px;
	    font-weight: 400;
	    font-size: 15px;
	}
	footer {
	    min-height: 180px;
	}
	#map {
	    position: relative;
	    height: 500px;
	}
	.header-center{
		padding: 0;
		width: -webkit-calc(100% - 382px);
    	width: calc(100% - 382px);
	}
	.navbar-inverse{
		padding: 0;
	}
	.navbar-brand{
		width: 230px;
	}
	.navbar-nav>li>a{
		font-size: 13px;
	}
	.button-block a{
		font-size: 18px;
		text-align: center;
	}
	header .button-text{
		width: 130px;
	}
	.button-block{
		width: 145px;
		margin-top: 19px;
	}
	.navbar-brand span {
	    display: block;
	    margin-top: 10px;
	    font-size: 10px;
	    text-align: center;
	}
	.header-utp li:before{
		left: 3px;
	}
	.header-utp li{
		font-size: 10px;
	}
	.header-utp-wrap {
	    margin-top: 25px;
	}
	.screen-1 {
	    margin-top: 50px;
	}
	.modal-dialog .modal-body {
	    padding: 30px 40px 40px;
	}
	.modal-dialog .modal-header .title {
	    font-size: 38px;
	    line-height: 38px;
	}
	#policy .modal-dialog {
	    width: 70%;
	    position: relative;
	    top: 0;
	    left: 0;
	    -webkit-transform: translate(0%,0%);
	    -moz-transform: translate(0%,0%);
	    -o-transform: translate(0%,0%);
	    -ms-transform: translate(0%,0%);
	    transform: translate(0%,0%);
	    margin: 50px auto;
	}
}
/*@media screen and (max-width: 1024px) {*/
/*	.screen-9 .sel-color {*/
/*	    display: none !important;*/
/*	}*/
/*	.screen-9 .text-wrap{*/
/*		float: none !important;*/
/*		width: 50% !important;*/
/*		margin: 0 25% !important;*/
/*    	text-align: center !important;*/
/*	}*/
/*	.screen-9 .text-wrap .button{*/
/*		margin: 0 auto !important;*/
/*	}*/
/*}*/
@media screen and (max-width: 991px) {
	.screen-10 {
		overflow: hidden;
	}
	.screen-9 .color-mask {
		width: 60%;
		margin-left: 20%;
	}
	#ul-wrap-2 {
		padding-top: 50px;
	}
	#scheme {
		padding-top: 0;
	}
	.screen-1-new {
		margin-bottom: 50px;
	}
	.screen-4 .wrap .text .title {
		font-size: 48px;
		line-height: 46px;
	}
	.screen-1 .pull-left {
		float: none !important;
	}
	.screen-1-new .img-wrap .window-block {
		padding: 0;
	}
	.screen-1-new .img-wrap .window-block img.window {
		top: 0
	}
	.screen-1-new .img-wrap .right-window img.window {
		width: 88%;
	}
	.screen-1-new .img-wrap .window-block img.wrap {
		top: 0
	}
	.screen-1-new .img-wrap .left-window img.window {
		right: 0;
		top: 0;
	}
	.screen-1-new .img-wrap {
		width: 100%;
	}
	.screen-1-new .text-wrap {
		width: 100%;
		margin-top: 60px;
	}
	.screen-1-new .text-wrap .title {
		text-align: center;
	}
	.screen-1-new .text-wrap .title br {
		display: none;
	}
	.screen-4 .wrap .text .title {
		text-align: center;
	}
	.screen-4 .wrap .text .descr {
		text-align: center;
	}
	.nav > li > a {
		padding: 10px 10px;
	}
	.nav-tabs > li > a {
		font-size: 14px;
	}
	#navbar-menu.collapse.opened {
		display: block;
    visibility: visible;
	}
	.modal-open header {
	    padding: 0 !important;
	}
	.modal-dialog .close .glyphicon-remove:before{
		color: #fff;
		background-image: linear-gradient(60deg, #00c6ff 0%, #00ffff 100%);
    	-webkit-background-clip: text;
  		-webkit-text-fill-color: transparent;
	}
	.header-center{
		position: fixed;
	    width: 100%;
	    height: 0;
	    left: 0;
	    right: 0;
	    top: 0;
	    background-color: rgba(0, 48, 82, 0.9);
	    overflow: hidden;
	    opacity: 0;
	    -webkit-transition: height 0.5s ease, opacity 0.5s ease;
	    transition: height 0.5s ease, opacity 0.5s ease;
	}
	.header-center.opened{
		position: fixed;
	    height: 100vh;
	    height: 100%;
	    opacity: 1;
	}
	.header-utp-wrap{
		display: none;
	}
	header{
		height: 80px;
	}
	header.scroll {
	    height: 50px;
	}
	header.scroll .navbar-brand {
	    height: 24px;
	    margin: 15px 0 0 !important;
	}
	.navbar-brand{
		margin: 10px 0 0 !important;
	}
	.navbar-collapse.collapse {
	    display: none!important;
	    height: auto!important;
	    padding-bottom: 0;
	    overflow: visible!important;
	}
	.navbar-collapse.collapse.opened{
		display: block !important;
	}
	.navbar-inverse .navbar-toggle {
	    border-color: #00f9ff;
	}
	header .button-block {
		display: none;
	    width: 145px;
	    margin-top: 15px;
	}
	nav.navbar {
    	float: left;
	    width: 100%;
	    min-height: 0;
	    border: none;
	    position: absolute;
	    top: 50%;
	    -webkit-transform: translateY(-50%);
	    -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    -o-transform: translateY(-50%);
	    transform: translateY(-50%);
	}
	.navbar-nav>li>a {
	    font-size: 15px;
	    line-height: 25px;
	    color: #fff !important;
	}
	.button-text {
	    height: 29px;
	    background-color: transparent;
	}
	.navbar-nav>li {
	    display: block !important;
	    width: 100% !important;
	    margin-bottom: 15px;
	    padding: 0 8px !important;
	}
	.navbar-toggle {
	    display: block;
	}
	.navbar-toggle {
	    position: relative;
	    float: right;
	    height: 30px;
	    width: 40px;
	    padding: 0;
	    margin-top: 25px;
	    margin-right: 0;
	    margin-bottom: 25px;
	    background-color: #fff;
	    background-image: none;
	    border: 1px solid #00f9ff;
	    border-radius: 4px;
	    -webkit-transition: margin-top 0.5s ease, margin-bottom 0.5s ease;
	    transition: margin-top 0.5s ease, margin-bottom 0.5s ease;
	}
	header.scroll .navbar-toggle {
	    margin-top: 10px;
	    margin-bottom: 10px;
	}
	.sandwich {
	  width: 60%;
      height: 100%;
	  position: absolute;
	  top: 0;
	  bottom: 0;
	  left: 0;
	  right: 0;
	  margin: auto;
	}
	.sw-topper {
	  position: relative;
	  margin-top: 6px;
	  width: 100%;
	  height: 3px;
	  background: #00f9ff;
	  border: none;
	  border-radius: 1px;
	  transition: transform 0.5s, top 0.2s;
	/* transition-delay: 0.2s, 0s; */
	}
	.sw-bottom {
	  position: relative;
	  width: 100%;
	  height: 3px;
	  margin-top: 4px;
	  background: #00f9ff;
	  border: none;
	  border-radius: 1px;
	  transition: transform 0.5s, top 0.2s;
	  transition-delay: 0.2s, 0s;
	}
	.sw-footer {
	  position: relative;
	  width: 100%;
	  height: 3px;
	  margin-top: 4px;
	  background: #00f9ff;
	  border: none;
	  border-radius: 1px;
	  transition: all 0.5s;
	  transition-delay: 0.1s;
	}
	.sandwich.active .sw-topper {
	  top: 7px;
	  transform: rotate(140deg);
	}
	.sandwich.active .sw-bottom {
	  top: 0px;
	  transform: rotate(-140deg);
	}
	.sandwich.active .sw-footer {
	  opacity: 0;
	  top: 0;
	  transform: rotate(180deg);
	}
	footer .container>div {
	    width: 100%;
	    text-align: center;
	    float: left;
	    padding: 0;
	    margin-bottom: 15px;
	}
	footer .container>.copyright {
	    width: 100%;
	    margin-top: 0;
	}
	.screen-1{
		padding: 50px 0;
		height: auto;
	}
	.screen-1 .title {
	    font-size: 34px;
	    line-height: 38px;
	    text-align: center;
	}
	.screen-1 .after-title {
	    padding-right: 0;
	    padding: 0 75px;
	    text-align: center;
	}
	.screen-1 .stock-percent {
		text-align: center;
		display: inline-block;
	}
	.screen-1 .wrap {
		position: relative;
		height: 495px;
		margin-top: 0;
	}
	.flip-clock-wrapper {
	    margin: 0;
	    width: 462px;
	    margin: 0 auto;
	}
	.counter>span {
	    width: 462px;
	    margin: 5px auto 0;
	}
	.screen-1 .button-wrap {
	    width: 462px;
	    /*margin: 0 auto;*/
	    margin-top: 20px;
	}
	.screen-1 .img {
	    display: none;
	}
	
	.screen-1 .img img {
	    left: 50%;
	    width: 40%;
	    top: 10%;
	    left: 75%;
	}
	.screen-1 .text.pull-left {
		text-align: center;
	}
	.screen-1 .stock-percent {
		text-align: center;
	}
	.screen-1 .button-wrap {
		display: inline-block;
		text-align: center;
	}
	.screen-1 .button {
		display: inline-block;
	}
	.ul-wrap ul li {
	    float: left;
	    width: 50%;
	    padding: 0 15px;
	    margin: 15px 0;
	}
	.screen-2 .wrap .text {
	    width: 100%;
	    margin-top: 250px;
	    height: 385px;
	    right: 0;
	    padding: 30px;
	    top: 0;
	}
	.screen-2 .wrap {
	    position: relative;
	    height: 630px;
	}
	.screen-2 .wrap .text .title {
		padding: 0 50px;
	    margin-bottom: 15px;
	    font-size: 24px;
	    line-height: 28px;
	    text-align: center;
	}
	.screen-2 .wrap .text .title b {
	    font-size: 24px;
	}
	.screen-2 .button {
	    margin: 30px auto 0;
	}
	.screen-2 .button:hover, .screen-2 .button:focus, .screen-2 .button:active {
	    margin: 25px auto 0;
	}
	.screen-3 ul>div {
	    position: relative;
	    width: 100% !important;
	    height: 100%;
	    margin: 0 auto 15px;
	    padding: 30px 0;
	    font-size: 24px;
	    line-height: 28px;
	}
	.screen-3 ul li {
	    width: 100%;
	    padding: 0 !important;
	    text-align: left !important;
	    min-height: 10px;
    	margin-bottom: 10px;
	}
	.bg-img{
		display: none;
	}
	.screen-4 .container {
	    padding: 0 15px;
	}
	.screen-4 .wrap {
		position: relative;
	    height: 525px;
	}
	.screen-4 .wrap .text {
	    width: 100%;
	    height: auto;
	    top: 0;
	    left: 0;
	    margin-top: 230px;
	    padding: 30px;
		text-align: center;
	}
	.screen-4 .wrap .text .button {
		float: none;
		display: inline-block;
		margin: 0;
	}
	.screen-4 .wrap .text .title {
		padding: 0 50px;
	    margin-bottom: 15px;
	    font-size: 24px;
	    line-height: 28px;
	    text-align: center;
	}
	.screen-5{
		height: auto;
	}
	.screen-5 .container {
	    padding: 0 15px;
	}
	.screen-5 .text-wrap {
	    position: relative;
	    padding-top: 60px;
	    padding-left: 15px;
	    padding-right: 15px;
	}
	.screen-5 .wrap {
	    position: relative;
	    height: auto;
	}
	.screen-5 .text-wrap .title {
	    float: left;
	    margin-right: 30px;
	    font-size: 24px;
    	line-height: 28px;
	}
	.screen-5 .text-wrap .text {
	    margin-top: 0;
	}
	.screen-5 .wrap:after{
		bottom: -20px;
	}
	.screen-5 .controls {
	    position: relative;
	    right: auto;
	}
	.screen-5 .controls #carousel-index{
		position: relative;
		top: -6px;
		font-size: 28px;
		line-height: 30px;
		height: 30px;
		display: inline-block;
		margin: 0;
	}
	.screen-5 .controls #carousel-index span {
	    position: relative;
	    width: auto;
	    display: inline-block;
	    font-size: inherit;
	    color: #808080;
	    text-align: right;
	    top: 0;
	    right: 0;
	}
	.screen-5 .controls .carousel-control.left,
	.screen-5 .controls .carousel-control.right {
	    position: relative;
	    left: auto;
	    right: auto;
	    top: auto;
	    bottom: auto;
	    display: inline-block;
	}
	.screen-5 .controls{
		height: 30px;
		text-align: center;
	}
	.screen-5 .item>div {
	    position: absolute;
	    top: 83px;
	    width: 286px;
	    height: 395px;
	}
	.screen-5 .item .before {
	    left: 37px;
	}
	.screen-5 .item .after {
	    right: 38px;
	}
	.screen-5 .item>div:after{
		height: 410px;
		margin-top: -13px;
	}
	.screen-6 .owl-wrap{
		width: 100%;
	}
	.screen-6 .owl-wrap .owl-carousel {
	    width: 100%;
	    float: right;
	}
	.screen-6 .owl-theme .owl-dots {
	    left: 30px;
	}
	.screen-6 .owl-wrap:after{
		display: none;
	}
	.screen-6 {
	    margin-top: -100px;
	}
	.screen-6 .text {
	    width: 100%;
	    margin-top: 0;
    	margin-bottom: 30px;
	    padding-left: 30px;
	    padding-right: 30px;
	}
	#ul-wrap-2 .container>.title {
	    font-size: 24px;
	    line-height: 28px;
	}
	.screen-6 .text .title, .screen-6 .text .after-title {
	    font-size: 24px;
	    line-height: 28px;
	    text-align: center;
	}
	.screen-7 .title {
	    font-size: 24px;
	    line-height: 28px;
	}
	.screen-7 .owl-theme .owl-dots {
	    width: auto;
	    left: 30px;
	    right: 30px;
	    -webkit-transform: translateX(0%);
	    -moz-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	    -o-transform: translateX(0%);
	    transform: translateX(0%);
	}
	#scheme ul li {
	    width: 50%;
	    height: 125px;
	    padding: 0 15px;
	    float: left;
	    position: relative;
	}
	#scheme {
		padding-top: 50px;
	    height: auto;
	}
	.screen-8 {
	    margin-top: 0;
	}
	.screen-8 .owl-wrap .owl-carousel {
	    width: 100%;
	    margin: 0;
	}
	.screen-8 .owl-item .item .img-wrap{
		float: left;
	}
	.screen-8 .owl-wrap:before,
	.screen-8 .owl-wrap:after{
		display: none;
	}
	.screen-9{
		padding-top: 0; 
	}
	.screen-9 .sel-color {
	    width: 100%;
	    float: left;
	}
	.screen-9 .sel-color .color-panel {
		float: left;
		width: 100%;
		margin-bottom: 20px;
	}
	.screen-9 .sel-color .color-mask {
	    float: left;
	    width: 55%;
	    margin-top: 0;
	}
	.screen-9 .text-wrap {
	    width: 100%;
	    float: left;
	    padding: 0 15px 50px;
	}
	.screen-9 .text-wrap .title {
	    font-size: 24px;
	    line-height: 28px;
	    text-align: center;
	}
	.screen-9 .text-wrap .button {
	    margin: 0 auto;
	}
	.screen-9 .text-wrap .button:hover, .screen-9 .text-wrap .button:focus, .screen-9 .text-wrap .button:active {
	    margin: -5px auto 5px;
	}
	.screen-10 .title {
	    font-size: 24px;
	    line-height: 28px;
	}
	.screen-10 .text {
	    padding-left: 10%;
	    padding-right: 10%;
	}
	.swipe-rolet .swipe-rolet-rol,
	.swipe-rolet{
		background-size: 100% 100%;
	}
	.screen-1.error .img{
		display: none;
	}
	.screen-1.error .button-wrap {
	    width: 100%;
	}
	.error .button {
	    width: 250px;
	    margin: 30px auto 0;
	}
	.error .title {
	    padding-left: 0px;
	}
	.error .title>span{
		left: 50%;
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	#scheme ul li:first-child .img-wrap {
	    left: 0;
	}
	.ul-wrap-num .item {
	    padding: 0 0 0 55px;
	}
}
@media screen and (max-width: 767px) {
	.screen-1 .sub-stock {
		text-align: center;
	}
	.screen-10 {
		overflow: hidden;
	}
	.screen-7 .owl-carousel .owl-item img {
		margin: 0 auto;
	}
	.screen-1-new {
		margin: 50px 0;
	}
	.screen-1-new {
		margin: 50px 0;
	}
	#ul-wrap-2 {
		padding-top: 70px;
		background-size: contain;
	}
	.screen-10 .text-wrap {

		width: 100%;

	}
	.screen-10 .img-wrap {

		display: none;

	}
	.screen-9 .sel-color .button {
		top: 16px;
	}
	.screen-9 .color-mask {
		max-width: 50%;
		margin: 0 auto;
		display: inline-block;
		float: none;
	}
	.screen-1-new .img-wrap .window-block img.wrap {
		height: 100%;
	}
	.tab-content .image {
		display: none;
	}	
	.tab-content .text {
		width: 100%;
	}	
	.tab-content .text img {
		margin: 0 32px;
	}
	.nav-tabs {
		display: inline-block;
	}
	.tab-content {
		display: inline-block;
	}
	.screen-2 .tab-block {
		height: auto;
	}
	.screen-2 .button {
		margin: 30px auto 10px;
	}
	.screen-2 .button:hover, .screen-2 .button:focus, .screen-2 .button:active {
		margin: 25px auto 15px;
	}
	.nav-tabs > li {
		width: 50%;
		float: left;
		margin: 0;
		height: 52px;
	}
	.nav-tabs > li.active {
		width: 50%;
	}
	.nav-tabs > li.active a {
		width: 100%;
	}
	.screen-1 .stock-percent {
		font-size: 80px;
		line-height: 80px;
	}
	.swipe-rolet{
		display: none !important;
	}
	.color-palette-wrapper{
		-webkit-transform: translateX(-105%);
    	transform: translateX(-105%);
	}
	body.overflow {
	    height: auto !important;
	    overflow: visible !important;
	}
	.modal-dialog, .modal.in .modal-dialog {
	    position: absolute;
	    top: 0;
	    left: 50%;
	    -webkit-transform: translate(-50%,0%);
	    -moz-transform: translate(-50%,0%);
	    -o-transform: translate(-50%,0%);
	    -ms-transform: translate(-50%,0%);
	    transform: translate(-50%,0%);
	    margin: 50px 0;
	    width: 425px;
	}
	/*.navbar-toggle {
	    position: relative;
	    float: right;
	    height: 30px;
	    width: 40px;
	    padding: 0;
	    margin-top: 10px;
	    margin-right: 0;
	    margin-bottom: 10px;
	    background-color: #333;
	    background-image: none;
	    border: 1px solid transparent;
	    border-radius: 4px;
	}
	.sandwich {
	  width: 60%;
      height: 100%;
	  position: absolute;
	  top: 0;
	  bottom: 0;
	  left: 0;
	  right: 0;
	  margin: auto;
	}
	.sw-topper {
	  position: relative;
	  margin-top: 6px;
	  width: 100%;
	  height: 3px;
	  background: #f61f1b;
	  border: none;
	  border-radius: 1px;
	  transition: transform 0.5s, top 0.2s;
	/* transition-delay: 0.2s, 0s; */
	/*}
	.sw-bottom {
	  position: relative;
	  width: 100%;
	  height: 3px;
	  margin-top: 4px;
	  background: #f61f1b;
	  border: none;
	  border-radius: 1px;
	  transition: transform 0.5s, top 0.2s;
	  transition-delay: 0.2s, 0s;
	}
	.sw-footer {
	  position: relative;
	  width: 100%;
	  height: 3px;
	  margin-top: 4px;
	  background: #f61f1b;
	  border: none;
	  border-radius: 1px;
	  transition: all 0.5s;
	  transition-delay: 0.1s;
	}
	.sandwich.active .sw-topper {
	  top: 7px;
	  transform: rotate(140deg);
	}
	.sandwich.active .sw-bottom {
	  top: 0px;
	  transform: rotate(-140deg);
	}
	.sandwich.active .sw-footer {
	  opacity: 0;
	  top: 0;
	  transform: rotate(180deg);
	}*/
	.navbar-brand{
		width: 100px;
		height: 30px;
	}
	.navbar-brand {
	    margin: 10px 0 !important;
	}
	nav.navbar {
	    height: auto;
	    min-height: 0px;
	    border: none;
	    float: none;
	}
	.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form{
		border: none;
		box-shadow: none;
	}
	.navbar-nav {
	    margin: 7.5px 0px;
	    z-index: 5;
	}
	/*#navbar-menu{
		position: fixed;
	    left: 0;
	    right: 0;
	    top: 0;
	    bottom: 0;
	    padding: 50px 0;
	    background-color: rgba(230, 0, 31, 0.9);
	}*/
	.navbar-toggle{
		position: relative;
		z-index: 55;
	}
	.inner {
	    padding-top: 80px;
	    background-size: 150%;
	}
	.inner .title {
	    font-family: 'Proxima Nova Extra Bold';
	    font-size: 22px;
	    line-height: 26px;
	}
	.navbar-nav>li>a {
	    font-family: 'Proxima Nova Bold';
	    font-size: 14px;
	    color: #fff !important;
	}
	.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover, .navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover {
	    color: #fff !important;
	}
	.navbar-nav>li{
		padding: 0;
	}
	.navbar-nav>li:first-child {
	    width: 100%;
	    padding-left: 0px;
	}
	.navbar-nav>li:last-child {
	    width: 100%;
	    padding-right: 0px;
	}
	.nav-justified>li>a{
		margin-bottom: 0;
		line-height: 30px;
		width: 100%;
	}
	.nav-justified>li>a:after{
		-webkit-transition: width 1s ease, bottom 0.5s ease, opacity 0.5s ease;
    	transition: width 1s ease, bottom 0.5s ease, opacity 0.5s ease;
	}
	.navbar-nav>li.active>a,
	.navbar-nav>li:active>a,
	.navbar-nav>li:focus>a,
	.navbar-nav>li:hover>a{
		background-color: rgba(255,255,255,0.7) !important;
	}
	.nav-justified>.dropdown .dropdown-menu{
		position: relative;
	    width: 100%;
	    top: 0;
	    border: none;
	    background-color: rgba(255, 255, 255, 0.3);
	    border-radius: 0;
	    float: none;
	}
	.screen-4 .wrap .text .title {
	    padding: 0;
	    margin-bottom: 0px;
	    font-size: 32px;
	    line-height: 32px;
	}
	.screen-4 .wrap .text{
		padding: 15px;
    background-size: contain;
    background-color: #fafafa;
	}
	.navbar-brand span{
		display: none;
	}
	.navbar-brand {
	    width: 245px;
	    height: 24px;
	}
	.navbar-inverse {
	    padding: 0 15px;
	}
	.navbar-brand {
	    margin: 13px 0 !important;
	}
	header.scroll .navbar-brand {
	    height: 24px;
	    margin: 13px 0 !important;
	}
	.navbar-toggle{
		margin-top: 10px;
		margin-bottom: 10px;
	}
	header {
	    height: 50px;
	}
	.screen-1 .wrap .text{
		float: none !important;
	}
	.screen-1 .wrap:after {
	    left: 0;
	    right: 0;
	}
	.screen-1 .title {
	    font-size: 34px;
	    line-height: 32px;
	}
	.screen-1 .after-title {
	    font-size: 14px;
	    line-height: 16px;
	}
	.screen-1 .after-title{
		padding: 0 50px;
	}
	.owl-theme .owl-nav .owl-prev:hover {
		left: 0;
	}
	.owl-theme .owl-nav .owl-next:hover {
		right: 0;
	}
	.owl-theme .owl-nav .owl-prev {
		left: 0;
	}
	.owl-theme .owl-nav .owl-next {
		right: 0;
	}
	.flip-clock-wrapper {
	    width: 420px;
	}
	.flip-clock-wrapper ul li a div div.inn, .flip-clock-wrapper ul li a div {
	    font-size: 30px;
	}
	.flip-clock-wrapper ul {
		width: 40px;
		height: 50px;
		font-size: 30px;
		line-height: 50px;
	}
	.flip-clock-wrapper ul li {
	    line-height: 50px;
	}
	.flip-clock-divider{
		height: 50px;
	}
	.flip-clock-wrapper {
	    width: 382px;
	}
	.screen-1 .img{
		display: none;
	}
	.screen-1 {
	    padding: 40px 0;
	    height: auto;
	    background-size: contain;
    	background-repeat: no-repeat;
		margin-top: 30px;
	}
	.screen-1 .after-title > span {
		font-size: 18px;
		line-height: 30px;
	}
	.screen-1 .wrap {
	    position: relative;
	    height: auto;
	}
	.counter>span {
	    width: 382px;
	    margin: 5px auto 0;
	}
	.screen-1 .button-wrap {
	    width: 100%;
	    margin-top: 30px;
	}
	.ul-wrap .item .img-wrap{
		margin: 0 auto;
	}
	.ul-wrap .item .title {
	    margin: 10px 0 5px;
	    text-align: center;
	}
	.ul-wrap .item .descr {
	    font-size: 12px;
	    text-align: center;
	}
	.screen-2 {
	    padding-top: 0;
	    padding-bottom: 50px;
	}
	.screen-2 .wrap .text{
		position: relative;
		margin-top: 0px;
		height: auto;
		padding: 15px;
		background-size: contain;
	    background-position: right bottom;
	    background-color: #fff;
	}
	.screen-2 .wrap .img-wrap {
	    position: relative;
	    height: auto;
	}
	.screen-2 .wrap .text .title,
	.screen-2 .wrap .text .title b,
	.screen-3 ul>div {
	    padding: 0;
	    font-size: 20px;
	    line-height: 24px;
	}
	.screen-3 {
	    position: relative;
	    padding-top: 25px;
	    padding-bottom: 50px;
	}
	.screen-4 {
	    padding-top: 0;
	}
	.screen-4 .img-wrap {
	    height: auto;
	}
	.screen-4 .img-wrap img {
	    position: relative;
	}
	.screen-4 .wrap .text {
	    position: relative;
	    margin-top: 0;
	}
	.screen-4 .wrap .text .button {
	    float: none;
	    margin-right: auto;
	}
	.screen-4 .text .button + div {
		margin-top: 15px;
	    text-align: center;
	}
	.screen-5 .img{
		width: 450px;
		margin: 0 auto;
	}
	.screen-5 .carousel-inner {
	    position: relative;
	    height: 310px;
	}
	.screen-5 .carousel-inner:before, .screen-5 .carousel-inner:after{
		height: 310px;
	}
	.screen-5 .item{
		height: 310px;
	}
	.screen-5 .item>div {
	    position: absolute;
	    top: 36px;
	    width: 182px;
	    height: 260px;
	}
	.screen-5 .item>div:after{
		width: 182px;
	    height: 260px;
	    margin-top: 0;
	}
	.screen-5 .item .before {
	    left: 22px;
	}
	.screen-5 .item .after {
	    right: 21px;
	}
	#ul-wrap-2 .container>.title {
	    font-size: 20px;
	    line-height: 24px;
	}
	.screen-6 .text .title, .screen-6 .text .after-title {
	    font-size: 20px;
	    line-height: 24px;
	    text-align: center;
	}
	#scheme>div>.title, .screen-8>div>.title {
	    font-size: 20px;
	    line-height: 24px;
	}
	.screen-8 .owl-item.active .item .img-wrap {
	    float: none;
	    margin: 0 auto;
	}
	.screen-8 .owl-item .item .text-wrap{
		width: 100%;
	}
	.screen-8 .owl-item .item .img-wrap {
	    float: none;
	    margin: 0 auto;
	}
	.screen-8 .owl-item.active + .owl-item .item .img-wrap {
	    float: none;
	    margin: 0 auto;
	}
	.screen-9 .text-wrap {
	    float: left;
	    width: 100% !important;
	    margin: 0 !important;
	    text-align: center !important;
		margin-top: 20px !important;
	}
	.screen-9 .text-wrap .title {
	    font-size: 20px;
	    line-height: 20px;
	}
	.screen-9 .sel-color .color-panel {
	    float: left;
	    width: 100%;
	    margin-left: 0;
	}
	.screen-9 .sel-color .color-mask {
	    float: left;
	    width: 70%;
	    margin-top: 50px;
	}
	.screen-9 .sel-color {
	    width: auto;
	    float: none !important;
	    margin: 0 auto;
	}
	.screen-10{
		padding-top: 0;
	}
	.screen-10 .title {
	    font-size: 20px;
	    line-height: 24px;
	}
	.screen-10 .clock-2 {
	    width: 382px;
	}
	#map {
	    position: relative;
	    height: 400px;
	}
	.flip-clock-divider.days .flip-clock-label {
	    right: -58px;
	}
	.flip-clock-divider.hours .flip-clock-label {
	    right: -61px;
	}
	.flip-clock-divider.minutes .flip-clock-label {
	    right: -62px;
	}
	.flip-clock-divider.seconds .flip-clock-label {
	    right: -65px;
	}
	.pin-wrap {
	    width: 100px;
	    height: 126px;
	    margin-top: -125.710678px;
	    margin-left: -50px;
	}
	#policy .modal-dialog {
	    width: 90%;
	    margin: 20px auto;
	}
	.modal-dialog .close {
	    top: 0;
	    right: 2px;
	}
	.modal-dialog .modal-body {
	    padding: 20px 20px 10px;
	}
	.modal-dialog .modal-header .title {
	    font-size: 24px;
	    line-height: 28px;
	}
	#modal-consult .modal-dialog, #modal-consult .modal.in .modal-dialog,#modal-consult1 .modal-dialog, #modal-consult1 .modal.in .modal-dialog {
	    width: 425px;
	}
	.screen-2 .wrap{
		height: auto;
	}
	.screen-7 .title {
	    font-size: 20px;
	    line-height: 24px;
	}
	.screen-1 .wrap:after{
		display: none;
	}
	#scheme ul li .img-wrap{
		left: 10px !important;
	}
	.ul-wrap-num .item {
	    padding: 0px 0 0 60px;
	}
}
@media screen and (max-width: 600px) {
	.screen-1-new .img-wrap .window-block img.rolet {
		top: -280px;
	}
	.screen-1-new .img-wrap .window-block img.rolet.down {
		top: 21px;
	}
	.tab-content .text img {
		margin: 0 26px;
	}
}
@media screen and (max-width: 560px) {
	.screen-4 .wrap .text .descr .more_discount {
		font-size: 22px;
	}
	.screen-4 .wrap .text .descr .discount span {
		font-size: 36px;
	}
	.screen-1 .after-title > span {
		font-size: 16px;
		line-height: 24px;
	}
}
@media screen and (max-width: 550px) {
	.tab-content .text img {
		margin: 0 20px;
	}
}
@media screen and (max-width: 520px) {
	.tab-content .text img {
		margin: 0 10px;
	}
}
@media screen and (max-width: 480px) {
	.color-palette__item {
		width: 38px;
		height: 38px;
	}
	.color-selector label::before {
		padding: 10px;
	}
	.screen-1-new .img-wrap .window-block {
		margin: 0 10px;
	}
	.screen-5 .img {
	    width: 290px;
	    margin: 0 auto;
	}
	.screen-4 .wrap .text .title{
		white-space: normal;
	}
	.flip-clock-wrapper,
	.screen-10 .clock-2 {
	    width: 287px;
	}
	.counter>span{
		width: 100%;
	}
	.screen-9 .sel-color {
	    width: 100%;
	}
	.screen-1 .wrap:after{
		display: none;
	}
	.screen-1 .wrap .text{
		padding: 0;
	}
	.screen-1 {
	    padding: 60px 0;
	}
	.screen-1 .after-title {
	    padding: 0;
	}
	.flip-clock-wrapper ul li a div div.inn, .flip-clock-wrapper ul li a div {
	    font-size: 20px;
	}
	.flip-clock-wrapper ul {
		padding: 0;
		width: 30px;
		height: 40px;
		font-size: 20px;
		line-height: 40px;
	}
	.flip-clock-wrapper ul li {
	    line-height: 40px;
	}
	.flip-clock-divider{
		height: 50px;
		width: 5px;
	}
	.flip-clock-divider .flip-clock-label{
		font-size: 10px;
	}
	.flip-clock-divider.days .flip-clock-label {
	    right: -47px;
	}
	.flip-clock-divider.hours .flip-clock-label {
	    right: -49px;
	}
	.flip-clock-divider.minutes .flip-clock-label {
	    right: -50px;
	}
	.flip-clock-divider.seconds .flip-clock-label {
	    right: -52px;
	}
	.button{
		height: 34px;
		line-height: 38px;
	}
	.screen-5 .text-wrap .title {
	    float: none;
	    margin-bottom: 15px;
	    margin-right: 0;
    	text-align: center;
	}
	.ul-wrap ul li {
	    padding: 0 10px;
	    padding: 0 15px;
	}
	.screen-6 .text {
	    padding-left: 15px;
	    padding-right: 15px;
	}
	#scheme ul li {
	    width: 100%;
	}
	.screen-8 .owl-wrap{
		padding: 0;
	}
	.screen-9 .sel-color .color-panel {
	    width: 100%;
	}
	.screen-9 .sel-color .color-mask {
	    width: 100%;
	    margin-top: 105px;
	}
	.screen-5 .carousel-inner,
	.screen-5 .item{
	    height: 820px;
	}
	.screen-5 .carousel-inner:before, .screen-5 .carousel-inner:after {
		width: 100%;
	    height: 410px;
	    position: relative;
	}
	.screen-5 .item>div {
	    position: relative;
	    top: 0;
	    width: 234px;
	    height: 332px;
	}
	.screen-5 .item .before {
		margin-top: 52px;
	    left: 29px;
	}
	.screen-5 .item .after {
	    right: auto;
	    left: 29px;
	    margin-top: 79px;
	}
	.screen-5 .item>div:after {
	    width: 234px;
	    height: 332px;
	    margin-top: 0;
	}
	.modal-dialog, .modal.in .modal-dialog{
		width: 95% !important;
	}
	.modal-dialog .form-vertical .button span{
		padding: 0 25px;
	}
	.modal-dialog .modal-header .title {
	    font-size: 20px;
	    line-height: 24px;
	}
	#modal-consult .modal-dialog .form-vertical .form-group:nth-child(1),
    #modal-consult1 .modal-dialog .form-vertical .form-group:nth-child(1) {
	    float: left;
	    width: 100%;
	}
	#modal-consult .modal-dialog .form-vertical .form-group:nth-child(2),
    #modal-consult1 .modal-dialog .form-vertical .form-group:nth-child(2){
	    float: left;
	    width: 100%;
	}
	#ul-wrap-2{
		height: auto;
	}
	.screen-6 {
	    margin-top: 0;
	}	
	.error .text {
	    margin: 130px 0;
	}
	.error .title>span{
		font-size: 210px;
	}
	.ul-wrap-num .item {
	    padding: 0px 0 0 70px;
	}
}
@media (max-height: 480px) {
	.nav-tabs > li > a {
		font-size: 12px;
	}.nav-tabs > li.active {
		text-align: center;
	}
	.navbar-collapse.collapse{
		max-height: 85vh;
		overflow: auto !important;
	}
	.error .text {
	    margin: 15px 0;
	}
	.screen-1.error {
	    padding: 75px 0 0;
	}
}
@media (max-width: 420px) {
	.work-gallery .title {
		font-family: 'Roboto Condensed', Arial, sans-serif;
		font-size: 32px;
	}
}
@media (max-width: 380px) {
	.screen-1 .title {
		font-size: 30px;
		line-height: 30px;
	}
	.work-gallery .owl-carousel.owl-drag .owl-item {
		text-align: center;
	}
	.work-gallery .owl-carousel .item {
		display: inline-block;
	}
	.screen-1-new .text-wrap .title {
		font-size: 24px;
		line-height: 30px;
	}
	.screen-1 .after-title b>b, .screen-2 .wrap .text .title b>b, .screen-10 .text p b>b {
		color: red;
		font-size: 26px;
	}
	.tab-content .text > img {
		margin: 0;
		max-width: 30%;
	}
	.screen-1-new .img-wrap .window-block {
		margin: 0 10px;
	}
	.screen-9 .color-mask {

		max-width: 100%;
		margin: 0 auto;
		display: inline-block;
		float: none;

	}
	.color-palette-wrapper.js-active-2 {

    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translateY(60px);
    transform: translateY(44px);

}
.material-color-picker__right-panel {
    height: 84px;
}
.color-palette__item {

    width: 28px;
    height: 28px;

}
.color-selector input[type="radio"]:checked + label::after {

    padding: 11px;

}
}
@media screen and (max-width: 360px) { 
	.screen-1-new .img-wrap .window-block img.rolet.down {
		top: 10px;
	}
	.screen-1 .title {
		font-size: 26px;
		line-height: 26px;
	}
	.screen-4 .wrap .text .descr .more_discount {
		font-size: 18px;
	}
	.screen-9 .sel-color .title {
		font-size: 34px;
		line-height: 38px;
	}
	.screen-10-title {
		font-size: 32px;
	}
}
@media screen and (max-width: 320px) {
	.work-gallery .title {
		font-family: 'Roboto Condensed', Arial, sans-serif;
		font-size: 28px;
	}
	.button {
		font-size: 12px;
	}
	.screen-2 button {
		position: relative;
		left: -10px;
	}
	.screen-4 .wrap .text .descr .more_discount {
		font-size: 15px;
	}
	.screen-1-new .text-wrap .title {
		font-size: 22px;
		line-height: 30px;
	}
	.color-selector label::after {
		padding: 6px;
	}
	
}
@media screen and (max-width: 560px) {
	.screen-1 .after-title > span {
		font-size: 14px;
		line-height: 22px;
	}
	.color-selector label::before {
		padding: 7px;
	}
}

#myModalLabel{
	    font-size: 39px;
}


form .btn-wrap:hover {
	top:auto;
}