/*
Theme Name: ElkiArt Theme
Author: UpLinK
*/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr,
acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong,
sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption,
tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video 
{margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}ol, ul {list-style: none;}blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
html {box-sizing: border-box;} *, *:before, *:after {box-sizing: inherit;}

body {
	position: relative;
	padding-top: 84px;
	background: #f9f9f9;
	font: 400 15px/20px 'Roboto', sans-serif;
	color: #333;
}

.wrapper {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

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

.noselect, label, button {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input, textarea, select, img, option {
	outline: none;
	border: none;
}

input, textarea, select {
	font: 400 15px/20px 'Roboto', sans-serif;
	color: #333;
}

strong {
	color: #303030;
}

a {
	text-decoration: none;
	color: #3db6ef;
	outline: none;
}

@media all and (max-width: 900px) {
	body {
		padding-top: 54px;
	}
}





.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 1px 10px 1px rgba(0,0,0,.1);
	z-index: 999;
}

.header > .wrapper {
	padding: 12px 20px;
}

.logo {
	width: 120px;
	height: 60px;
	background: url(images/logo.jpg) no-repeat;
}

@media all and (max-width: 900px) {
	.logo {
		width: 60px;
		height: 30px;
		background: url(images/logo_small.jpg) no-repeat;
	}
}

.logo a {
	display: block;
	height: 100%;
}

.menu {
	position: absolute;
	top: 30px;
	left: 50%;
	width: 800px;
	margin-left: -400px;
}

.menu li {
	display: block;
	float: left;
}

.menu li a {
	position: relative;
	display: block;
	margin: 0 20px 0 19px;
	padding: 3px 0;
	color: #1f1700;
}

.menu li:not(:last-child) a:before {
	position: absolute;
    top: 10px;
    right: -20px;
    display: block;
    content: '';
	width: 1px;
	height: 10px;
	background-color: #eee;
}


@media all and (max-width: 1100px) {
	.menu {
		width: 600px;
		margin-left: -300px;
	}
	
	.menu li a {
		margin: 0 10px 0 9px;
		font-size: 14px;
	}
	
	.menu li:not(:last-child) a:before {
		right: -10px;
	}
}

@media all and (max-width: 900px) {
	.menu {
		display: none;
	}
}

.menu li a:after {
	position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 2px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 350ms ease-out, opacity 350ms ease-out, left 350ms ease-out, width 350ms ease-out;
    background-color: #3db6ef;
}

.menu li a:hover:after  {
    width: 100%;
    left: 0;
    visibility: visible;
    opacity: 1;
}

.header-right {
	top: 2px;
	right: 20px;
	position: absolute;
}

.header-right div {
	height: 20px;
	margin: 5px 0;
	text-align: center;
}

.header-right div a {
	color: #1f1700;
	transition: all 350ms ease;
}

.header-right div a:hover {
	color: #3db6ef;
}

.search input[type=submit] {
	display: block;
	width: 20px;
	height: 20px;
	margin-left: 5px;
	background: url(images/sprites.png) no-repeat;
	cursor: pointer;
	float: right;
}

.search input[type=text] {
	width: 140px;
	height: 20px;
	color: #777;
	font-size: 13px;
	text-align: center;
	border-bottom: 1px dotted #eee;
}

.header-right .phone, .header-right .mail {
	position: relative;
	line-height: 25px;
	font-size: 14px;
	padding-right: 25px;
}

.header-right .phone:after, .header-right .mail:after {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	content: '';
	width: 20px;
	height: 20px;
	background: url(images/sprites.png) no-repeat;
}

.header-right .phone:after {
	background-position: -20px 0;
}

.header-right .mail:after {
	background-position: -40px 0;
}

@media all and (max-width: 900px) {
	.header-right {
		top: 10px;
		padding-right: 50px;
	}
	
	.header-right div {
		margin-left: 50px;
		float: left;
	}
	
	.header-right div.search {
		float: right;
	}
}

@media all and (max-width: 767px) {
	.search {
		display: none;
	}
	
	.header-right {
		top: 7px;
	}
	
	.header-right div {
		margin: 0;
		float: none;
	}
}

#mobile {
	position: absolute;
	top: 7px;
	right: 7px;
	display: none;
	width: 40px;
	height: 40px;
	background: url(images/sprites.png) -220px 0 no-repeat;
}

@media all and (max-width: 900px) {
	#mobile {
		display: block;
	}
}












.slider-wrapper {
	max-height: 225px;
	overflow: hidden;
}

#slider li {
	max-height: 225px;
}

#slider li a img {
	display: block;
	width: 100%;
}

.slider-wrapper .lSSlideOuter .lSPager.lSpg {
	position: absolute;
	bottom: 2px;
	right: 10px;
}



.container {
	margin: 20px 0;
}

.aleft, .aright {
	width: 18%;
	float: left;
}

.aright {
	will-change: min-height;
	float: right;
	z-index: 1;
}

#aright_wrap {
	padding: 0 0 0 10px;
}

.body {
	width: 64%;
	padding: 0 30px;
	float: left;
}

@media all and (max-width: 1366px) {
	.aleft {
		width: 20%;
		padding: 0 10px;
	}
	
	.aright {
		width: 20%;
	}
	
	#aright_wrap {
		padding: 0 10px;
	}
	
	.body {
		width: 60%;
		padding: 0 5px
	}
}

@media all and (max-width: 1100px) {
	.aleft {
		width: 25%;
	}
	
	.aright {
		width: 25%;
	}
	
	.body {
		width: 50%;
		
	}
}

@media all and (max-width: 900px) {
	.aleft {
		display: none;
	}
	
	.body {
		width: 70%;
		padding: 0 0 0 10px;
	}
	
	.aright {
		width: 30%;
	}
}

@media all and (max-width: 767px) {
	.body {
		width: 100%;
		padding: 0 10px;
	}
	
	.aright {
		display: none;
	}
}

.aleft > ul {
	padding: 15px 10px;
	background-color: #fff;
	box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
	border-radius: 2px;
	border: 1px solid #f0f0f0;
}

.aleft a.title {
	color: #333;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: underline;
	transition: all 350ms ease;
}

@media all and (max-width: 1100px) {
	.aleft a.title {
		font-size: 12px;
	}
}

.aleft a.title:hover {
	text-decoration: none;
}

.aleft ol {
	margin: 10px 0 30px 5px;
	padding-left: 15px;
	border-left: 4px solid #1f1700;
}

.aleft ol li:last-child {
	padding-bottom: 10px;
}

.aleft ol li a {
	display: block;
	padding: 10px 0 2px;
	font-size: 14px;
	border-bottom: 1px dashed #eee;
	line-height: 14px;
	color: #555;
	transition: all 350ms ease;
}

.aleft ol li a:hover {
	padding-left: 3px;
}

.aleft ul li.blue ol {
	border-color: #3db6ef;
}

.aleft ul li.pink ol {
	border-color: #d7589d;
}

.aleft ul li.yellow ol {
	border-color: #dcd214;
}

.aleft ul li.black ol {
	border-color: #1f1700;
}

.aleft ul li.blue a.title:hover, .aleft ul li.blue ol a:hover {
	color: #3db6ef;
	border-color: #3db6ef;
}

.aleft ul li.pink a.title:hover, .aleft ul li.pink ol a:hover {
	color: #d7589d;
	border-color: #d7589d;
}

.aleft ul li.yellow a.title:hover, .aleft ul li.yellow ol a:hover {
	color: #dcd214;
	border-color: #dcd214;
}

.aleft ul li.black a.title:hover, .aleft ul li.black ol a:hover {
	color: #1f1700;
	border-color: #1f1700;
}

#aright_wrap {
	transform: translate(0, 0);
    transform: translate3d(0, 0, 0);
    will-change: position, transform;
}

.ar-box {
	display: block;
	margin-bottom: 20px;
	padding: 15px 10px;
	background-color: #fff;
	box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
	border-radius: 2px;
	border: 1px solid #f0f0f0;
}

.ar-top > img {
	display: block;
	width: 100%;
	max-width: 120px;
	margin: 0 auto 20px;
}

.ar-top p {
	line-height: 18px;
}

.ar-top p.phones {
	margin: 20px 0;
}

.ar-top p:after {
    content: '';
    display: block;
    clear: both;
}

.ar-top .val-left {
	position: relative;
	display: block;
	height: 25px;
	font-size: 13px;
	padding-left: 22px;
	float: left;
}

.ar-top .val-left:before {
	position: absolute;
	top: -3px;
	left: 0;
	display: block;
	content: '';
	width: 20px;
	height: 20px;
}

.ar-top .val-left.mail:before {
	background: url(images/sprites.png) -40px 0 no-repeat;
}

.ar-top .val-left.phone:before {
	background: url(images/sprites.png) -20px 0 no-repeat;
}

.ar-top .val-left.viber:before {
	background: url(images/sprites.png) 0 -20px no-repeat;
}

.ar-top .val-left.wa:before {
	background: url(images/sprites.png) -20px -20px no-repeat;
}

.ar-top .val-left.viber {
	color: #7d3daf;
}

.ar-top .val-left.wa {
	color: #1bd741;
}

.ar-top .val {
	display: block;
	height: 18px;
	margin-bottom: 5px;
	color: #333;
	font-size: 14px;
	border-bottom: 1px dashed #999;
	transition: all 350ms ease;
	float: right;
}

@media all and (max-width: 1280px) {
	.ar-top .val-left {
		width: 100%;
		height: 20px;
		float: none;
	}
	
	.ar-top .val {
		width: 100%;
		text-align: center;
	}
	
	.ar-top p.phones, .ar-top p {
		margin: 0 0 20px 0;
	}
}

.ar-top .val:hover {
	color: #3db6ef;
	border-color: transparent;
}

.ar-page {
	text-align: center;
}
.ar-page img {
	display: block;
	width: 90%;
	margin: 0 auto 20px;
}

.ar-page span {
	display: inline-block;
	color: #3db6ef;
	border-bottom: 1px dashed #3db6ef;
	transition: all 350ms ease;
}

.ar-page:hover span {
	border-color: transparent;
}

.ar-box.ar-insta {
	position: relative;
	padding: 0;
}

.ar-box.ar-insta img {
	position: relative;
	display: block;
	width: 100%;
	border-radius: 2px 2px 0 0;
	z-index: 1;
}

.ar-box.ar-insta .title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 32px;
	padding: 0 0 0 32px;
	color: #fff;
	font-size: 14px;
	line-height: 34px;
	background-color: #df1ea7;
	border-radius: 2px 2px 0 0;
	z-index: 3;
}

.ar-box.ar-insta .title:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 32px;
	height: 32px;
	background: url(images/instagram.png);
}

.ar-box.ar-insta .text {
	position: absolute;
	width: 90%;
	height: 59px;
	bottom: 45px;
	left: 5%;
	padding: 5px 5px 0;
	color: #333;
	background-color: rgba(255,255,255,.8);
	text-align: center;
	font-size: 12px;
	line-height: 17px;
	overflow: hidden;
	border-radius: 5px 5px 0 0;
	transition: all .35s ease;
	z-index: 3;
}

.ar-box.ar-insta .link {
	position: absolute;
	bottom: 13px;
	left: 5%;
	width: 90%;
	height: 32px;
	line-height: 32px;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	background-color: rgba(223,30,167,.8);
	transition: all .35s ease;
	z-index: 3;
}

.ar-box.ar-insta:hover .text {
	background-color: rgba(255,255,255,1);
}

.ar-box.ar-insta:hover .link {
	background-color: rgba(223,30,167,1);
}

.cnt-fix {
	margin: 20px 0;
	list-style: none;
}

.cnt-fix li {
	position: relative;
	width: 33.33%;
	padding: 0 5px 0 75px;
	float: left;
}

@media all and (max-width: 1100px) {
	.cnt-fix li {
		width: 50%;
	}
}

@media all and (max-width: 1100px) {
	.cnt-fix li {
		width: 220px;
		margin: 0 auto;
		padding-right: 0;
		float: none;
	}
}

.cnt-fix li:before {
	position :absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 60px;
	height: 60px;
}

.cnt-fix li:nth-child(1):before {
	background: url(images/sprites.png) -200px -65px no-repeat;
}

.cnt-fix li:nth-child(2):before {
	background: url(images/sprites.png) -140px -65px no-repeat;
}

.cnt-fix li:nth-child(3):before {
	background: url(images/sprites.png) -260px -65px no-repeat;
}

.cnt-fix li a {
    height: 18px;
    margin-top: 5px;
    color: #333;
    font-size: 14px;
    border-bottom: 1px dashed #999;
    transition: all 350ms ease;
	line-height: 30px;
	text-decoration: none;
}

.cnt-fix li a:hover {
    color: #3db6ef;
    border-color: transparent;
}

.cnt-content .l {
	width: 50%;
	padding-right: 20px;
	float: left;
}

.cnt-content .r {
	width: 50%;
	float: right;
}

@media all and (max-width: 1100px) {
	.cnt-content .l, .cnt-content .r {
		width: 100%;
		margin-bottom: 15px;
		float: none;
	}
}

.cnt-content .r iframe {
	height: 300px;
	border: 1px solid #dfdfdf;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.2);
	margin-bottom: 10px;
}

.cnt-content .r p {
	margin: 0;
}

.cnt-slider, .add-slider {
	position: relative;
}

.cnt-slider-title, .cnt-slider-title2, .add-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	line-height: 32px;
	font-weight: 700;
	color: #505050;
	text-align: center;
	z-index: 2;
}

.cnt-slider-title2 {
	background-color: #f0f0f0;
	border-radius: 16px;
}

.cnt-slider li, .add-slider li {
	padding-top: 40px;
}

.cnt-slider li > a {
	display: block;
    width: 90%;
    max-width: 200px;
    margin: 0 auto;
	padding: 2px;
    border: 1px solid #dfdfdf;
	transition: all 350ms ease;
}

.cnt-slider li > a:hover {
	border-color: #999;
}

.cnt-slider li > a > img {
    display: block;
    width: 100%;
}
	
.cnt-content .h {
	padding: 20px 0;
	clear: both;
}

.cnt-content .h > i {
	text-transform: uppercase;
	color: #3db6ef;
	border-bottom: 1px dashed #3db6ef;
	cursor: pointer;
}

.cnt-content .h-c {
	display: none;
}

.cnt-select {
	margin: 30px 0 15px; 
}

.cnt-select div {
	position: relative;
	margin: 0 25px;
	padding-left: 45px;
	line-height: 30px;
	cursor: pointer;
	color: #505050;
	float: left;
}

@media all and (max-width: 500px) {
	.cnt-select div {
		margin: 0 10px 0 0;
		padding-left: 35px;
		font-size: 13px;
	}
}

.cnt-select div i {
	border-bottom: 1px dashed #505050;
}

.cnt-select div:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 30px;
	height: 30px;
	background: url(images/sprites.png) no-repeat;
}

.cnt-select div.list:before {
	background-position: -260px 0;
}

.cnt-select div.map:before {
	background-position: -260px -30px;
}

.cnt-select div.list:hover:before, .cnt-select div.list.active:before {
	background-position: -290px 0;
}

.cnt-select div.map:hover:before, .cnt-select div.map.active:before {
	background-position: -290px -30px;
}

.cnt-select div:hover, .cnt-select div.active, .cnt-select div:hover i, .cnt-select div.active i {
	color: #3fdf5f;
	border-color: #3fdf5f;
}

#cnt_map {
	display: none;
	border: 1px solid #dfdfdf;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.2);
}

#MySuperMap {
    width: 100%;
    height: 500px;
}

@media all and (max-width: 767px) {
	#MySuperMap {
		height: 300px;
	}
}

.cnt-table {
	margin: 0;
	border: 1px solid #dfdfdf;
	border-bottom: none;
	list-style: none;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.2);
}

.cnt-table li {
	position: relative;
	margin: 0;
	padding: 15px;
	border-bottom: 1px solid #dfdfdf;
}

.cnt-table li:nth-child(odd) {
	background-color: #fafafa;
}

.cnt-table li:first-child {
	font-size: 13px;
	background-color: #f2f2f2;
	font-weight: 700;
}

.cnt-table li:before {
	position: absolute;
	top: 0;
	left: -2px;
	display: none;
	content: '';
	width: 5px;
	height: 100%;
	border-radius: 2px;
	background-color: #3fdf5f;
}

.cnt-table li.current:before, .cnt-table li:hover:before {
	display: block;
}

.cnt-table li:first-child:before {
	display: none;
}

.cnt-table li p {
	margin-bottom: 5px;
}	

.cnt-table .adr {
	font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.cnt-table .i-1, .cnt-table .i-2, .cnt-table .i-3 {
	width: 45%;
	float: left;
}

.cnt-table .i-2, .cnt-table .i-3 {
	width: 22.5%;
	text-align: center;
}

.cnt-table .i-3 {
	float: right;
}

@media all and (max-width: 767px) {
	.cnt-table .i-1, .cnt-table .i-2, .cnt-table .i-3 {
		width: 50%;
	}
	
	.cnt-table .i-3 {
		padding-top: 10px;
	}
}

@media all and (max-width: 500px) {
	.cnt-table .i-1, .cnt-table .i-2, .cnt-table .i-3 {
		width: 100%;
		float: none;
	}
	
	.cnt-table li:first-child .i-2 {
		display: none;
	}
}

.cnt-table .i-3 a {
	display: block;
	width: 100%;
	max-width: 130px;
	height: 30px;
	margin: 0 auto;
	background-color: #dadada;
	line-height: 30px;
	color: #505050;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	border-radius: 2px;
	text-decoration: none;
	transition: all 350ms ease;
}

.cnt-table .i-3 a:hover {
	background-color: #3fdf5f;
	color: #fff;
}	

.metroicon {display: block; position: relative; padding-left: 30px; line-height: 19px;}
.metroicon:before{position: absolute; top: 0; left:0; display: block; content: ''; width:24px;height:19px;background:url(images/metro-icons.png) no-repeat;}
.metroicon.red:before{background-position:0 0;} .metroicon.red {color: #d24a43;}
.metroicon.green:before{background-position:-24px 0;} .metroicon.green {color: #3b5f42;}
.metroicon.blue:before{background-position:-48px 0;} .metroicon.blue {color: #4d59a1;}
.metroicon.brown:before{background-position:-72px 0;} .metroicon.brown {color: #5d4837;}
.metroicon.orange:before{background-position:-96px 0;} .metroicon.orange {color: #ff6600;}
.metroicon.violet:before{background-position:-120px 0;} .metroicon.violet {color: #8e5893;}
.metroicon.gray:before{background-position:-144px 0;} .metroicon.gray {color: #979695;}
.metroicon.light-green:before{background-position:-168px 0;} .metroicon.light-green {color: #b2cb62;}

.product-slider {
	margin-bottom: 30px;
}

.product-slider li > a {
	display: block;
	width: 90%;
	max-width: 200px;
	margin: 0 auto;
	border: 1px solid #dfdfdf;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.2);
}

.product-slider li > a img {
	display: block;
	width: 100%;
}

.box {
	width: 50%;
	float: left;
}

.box .title {
	display: block;
	height: 40px;
	color: #fff;
    font-size: 15px;
	background-color: #000;
	border-radius: 2px 2px 0 0;
	text-align: center;
}

.box .title span {
	display: inline-block;
	padding: 7px 0 2px;
	border-bottom: 1px dashed #fff;
}

.box .title:hover span {
	border-color: transparent;
}

.box .inner {
	position: relative;
	min-height: 370px;
	margin: 0 20px 20px;
	background-color: #fff;
	box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
	border-radius: 2px;
	border: 1px solid #f0f0f0;
	border-bottom: 4px solid #f0f0f0;
	background-size: 70%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 350ms ease;
	overflow: hidden;
}

.box .inner:hover {
	background-size: 95%;
}

.box.blue .inner {
	border-bottom-color: #3db6ef;
}

.box.pink .inner {
	border-bottom-color: #d7589d;
}

.box.yellow .inner {
	border-bottom-color: #EDFF21;
}

.box.black .inner {
	border-bottom-color: #1f1700;
}

.box .inner ol {
	position: absolute;
	top: 100%; 
	left: 0;
	width: 100%;
	height: 100%;
	padding: 25px;
	background-color: rgba(0,0,0,.5);
	z-index: 2;
	transition: all 500ms ease;
}

.box .inner:hover ol {
	top: 40px;
}

.box.blue .inner .title {background-color: rgba(61,182,239,1);}
.box.blue .inner ol {background-color: rgba(61,182,239,.9);}
.box.pink .inner .title {background-color: rgba(215,88,157,1);}
.box.pink .inner ol {background-color: rgba(215,88,157,.9);}
.box.yellow .inner .title {background-color: rgba(220,210,20,1);}
.box.yellow .inner ol {background-color: rgba(220,210,20,.9);}
.box.black .inner .title {background-color: rgba(31,23,0,1);}
.box.black .inner ol {background-color: rgba(31,23,0,.9);}

.box .inner ol li a {
	position: relative;
	display: block;
	padding: 4px 0 2px 2px;
	border-bottom: 1px dashed rgba(255,255,255,.3);
	color: #fff;
	transition: all 350ms ease;
}

.box .inner ol li a:before {
	position: absolute;
	top: 5px;
	left: -10px;
	display: block;
	content: '\00bb';
	color: #fff;
	opacity: 0;
	transition: all 350ms ease;
}

.box .inner ol li a:hover {
	padding-left: 5px;
}

.box .inner ol li a:hover:before {
	opacity: 1;
}

@media all and (max-width: 1100px) {
	.box .inner {
		min-height: 350px;
		margin: 0 5px 10px;
	}
	
	.box .inner ol {
		padding: 5px 15px;
	}
	
	.box .inner ol li a {
		padding: 3px 0 3px 2px;
		font-size: 13px;
	}
}

@media all and (max-width: 500px) {
	.box {
		width: 90%;
		max-width: 300px;
		margin: 0 auto 20px;
		float: none;
	}
}





.body-title {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 10px;
	font-size: 25px;
	line-height: 30px;
	color: #333;
	text-transform: uppercase;
	text-align: center;
}

.body-title:after {
	position: absolute;
	top: 100%;
	left: 50%;
	display: block;
	content: '';
	width: 50%;
	margin-left: -25%;
	border-bottom: 1px solid #f0f0f0;
}

.title-price {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 10px;
	font-size: 15px;
	line-height: 30px;
	color: #333;
	text-transform: uppercase;
	text-align: center;
}

.title-price:after {
	position: absolute;
	top: 100%;
	left: 50%;
	display: block;
	content: '';
	width: 50%;
	margin-left: -25%;
	border-bottom: 1px solid #f0f0f0;
}



.why {
	margin-top: 40px;
}

.why ul {
	padding-top: 20px;
}

.why ul li {
	width: 25%;
	color: #555;
	font-size: 14px;
	text-align: center;
	float: left;
}

.why ul li > div {
	width: 100%;
	max-width: 200px;
	margin: 0 auto 20px;
}

.why ul li > div img {
	display: block;
	width: 100%;
	max-width: 100px;
	margin: 0 auto 10px;
}

.why ul li > div p {
	height: 40px;
	overflow: hidden;
}

@media all and (max-width: 500px) {
	.why ul li {
		width: 50%;
	}
}


.clients {
	position: relative;
	margin-top: 40px;
}

.clients .body-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

.clients ul li {
	width: 25%;
	padding-top: 40px;
	float: left;
}

.clients ul li img {
	display: block;
	width: 90%;
	max-width: 160px;
	margin: 0 auto;
}









.pr-box {
	margin: 0 0 30px;
}

.pr-box li {
	position: relative;
	display: block;
	width: 32.3333%;
	height: 230px;
	margin: 0 0.5% 8px;
	background-color: #fff;
	background-size: 70%;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
	border-radius: 2px;
	border: 1px solid #f0f0f0;
	text-align: center;
	float: left;
	overflow: hidden;
	transition: all 350ms ease;
}

@media all and (max-width: 767px) {
	.pr-box li {
		width: 48%;
		margin: 0 1% 10px;
	}
}

@media all and (max-width: 500px) {
	.pr-box li {
		width: 90%;
		max-width: 280px;
		margin: 0 auto 10px;
		float: none;
	}
}

.pr-box li:hover {
	background-size: 85%;
}

.pr-box li a {
	display: block;
	height: 100%;
	color: #fff;
}

.pr-box li div {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
	line-height: 30px;
	font-size: 13px;
	background-color: rgba(0,0,0,.75);
	transition: all 350ms ease;
	overflow: hidden;
}

.pr-box.blue li div {
	background-color: #3db6ef;
}

.pr-box.pink li div {
	background-color: #d7589d;
}

.pr-box.yellow li div {
	background-color: #dcd214;
}

.pr-box.black li div {
	background-color: #1f1700;
}







.pr {
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
	border-radius: 2px;
	border: 1px solid #f0f0f0;
}

.pr-left {
	width: 30%;
	float: left;
}

.pr-thumb {
	display: block;
	width: 90%;
	margin: 0 auto 20px;
}

.sum, .promo_sum {
	position: relative;
	margin-bottom: 15px;
	text-align: center;
	text-transform: uppercase;
	color: #555;
	font-size: 14px;
}

.promo_sum {
	display: none;
}

.sum i, .promo_sum i {
	color: #111;
	font-size: 28px;
	font-weight: 700;
}

.sum.no, .sum.no i {
	font-size: 18px;
	color: #999;
}

.sum.no:before,.sum.no:after {
	position: absolute;
	top: 9px;
	left: 50%;
	display: block;
	content: '';
	width: 100px;
	height: 2px;
	margin-left: -50px;
	background-color: #f16c62;
	transform: skewY(15deg);
}

.sum.no:after {
	transform: skewY(-15deg);
}

.order_btn {
	width: 100%;
	max-width: 250px;
	height: 40px;
	margin: 0 auto;
	background-color: #1bd741;
	border-bottom: 3px solid #1bc93e;
	line-height: 40px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	border-radius: 2px;
	transition: all 350ms ease;
}

.order_btn:hover {
	background-color: #1bc93e;
}

.promo {
	margin: 10px 0;
	padding: 5px 10px 10px;
	background-color: #f0f0f0;
	border-radius: 2px;
}

.promo-title {
	position: relative;
	padding: 4px 0 4px 30px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	color: #f44336;
	transition: all 500ms ease;
}

@media all and (max-width: 500px) {
	.promo-title {
		font-size: 10px;
	}
}

.promo p {
	padding: 5px;
	text-align: center;
}

.promo-title:before {
	position: absolute;
	top: 3px;
	left: 0;
	display: block;
	content: '';
	width: 20px;
	height: 20px;
	background: url(images/sprites.png) -320px 0 no-repeat;
	transition: all 500ms ease;
}

.promo.ok .promo-title {
	color: #1bd741;
}

.promo.ok .promo-title:before {
	background-position: -320px -20px;
}

.promo input {
	display: block;
	width: 100%;
	height: 30px;
	border: 1px solid #d0d0d0;
	text-align: center;
	font-size: 13px;
	text-transform: uppercase;
}

.pr-right {
	width: 70%;
	padding-left: 20px;
	float: right;
}

@media all and (max-width: 767px) {
	.pr-left, .pr-right {
		width: 100%;
		margin-bottom: 20px;
		padding: 0;
		float: none;
	}
	
	.pr-thumb {
		max-width: 280px;
	}
}

.calc > span {
	display: block;
	padding-bottom: 10px;
	font-size: 18px;
	text-transform: uppercase;
	color: #111;
}

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

.calc-l {
	width: 40%;
	padding: 5px 5px 0 0;
	margin-bottom: 10px;
	font-size: 13px;
	float: left;
}

.calc-r {
	width: 60%;
	float: right;
}

@media all and (max-width: 500px) {
	.calc-l, .calc-r {
		width: 100%;
		float: none;
	}
	.calc-l {
		margin-bottom: 0;
	}
	.calc-r {
		margin-bottom: 20px;
	}
}

.calc select, .calc input[type=text] {
	display: block;
	width: 100%;
	height: 30px;
	padding-left: 10px;
	line-height: 30px;
	border-bottom: 1px dotted #d0d0d0;
}

.calc input[type=text] {
	padding-left: 14px;
}

.mobile-sum {
	display: none;
	margin: 30px 0;
}

@media all and (max-width: 767px) {
	.mobile-sum {
		display: block;
	}
}


.calc-l.info {
	position: relative;
	cursor: pointer;
}

.calc-l.info:after {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 10px;
	content: '?';
	background-color: #f0f0f0;
	color: #111;
	font-size: 13px;
	font-weight: 700;
	line-height: 14px;
	text-align: center;
	border-radius: 50%;
	border: 1px solid #ddd;
}

.info-text {
	position: absolute;
	bottom: 100%;
	left: -10%;
	display: none;
	width: 120%;
	padding: 10px;
	background-color: #f9f9f9;
	box-shadow: 0 0 12px 1px rgba(0,0,0,.25);
	border: 1px solid #ccc;
	border-radius: 2px;
	font-size: 12px;
	text-align: left;
}

.info-text p {
	margin-bottom: 5px;	
}

.info-text strong {
	font-weight: 700;
	color: #111;
}

@media all and (max-width: 767px) {
	.info-text {
		width: 96%;
		left: 2%;
	}
}

.calc-l.info:hover .info-text {
	display: block;
}

.pr-tabs {
	margin: 20px 0 0;
}

.pr-tabs.faq {
	margin-top: 0;
}

.pr-tabs .tabs:after {
	content: '';
    display: block;
    clear: both;
}

.tabs {
	text-align: center;
}

.tabs li {
	display: inline-block;
	margin-bottom: 5px;
	float: none;
}

.pr-tabs.faq .tabs {
	text-align: left;
}

.pr-tabs.faq .tabs li {
	width: 49.5%;
	margin-bottom: 20px;
	font-size: 13px;
}

.tabs li > span {
	position: relative;
    display: block;
    margin: 0 20px;
    padding: 3px 0;
    color: #1f1700;
	cursor: pointer;
	border-bottom: 1px dashed #777;
}

.tabs li > span:after {
	position: absolute;
    bottom: -1px;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 2px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 350ms ease-out, opacity 350ms ease-out, left 350ms ease-out, width 350ms ease-out;
    background-color: #3db6ef;
}

.tabs li > span:hover:after,
.tabs li.active >span:after {
	width: 100%;
    left: 0;
    visibility: visible;
    opacity: 1;
}

@media all and (max-width: 768px) {
	.pr-tabs.faq .tabs li {
		width: 100%;
		margin: 0 0 10px;
	}
}

.tabs-content {
	position: relative;
	margin-top: 20px;
}

.tabs-content > li {
	display: block;
	height: 0;
	opacity: 0;
	transition: all .5s ease;
	overflow: hidden;
}

.tabs-content > li.active {
	height: auto;
	opacity: 1;
}

.tabs-content article {
	box-shadow: none;
}

.tabs-content .cnt-slider {
	margin: 20px 0;
}

@media all and (max-width: 768px) {
	.tabs-content article {
		padding: 3px;
		border: none;
	}
}
























article {
	margin: 0;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
	border-radius: 2px;
	border: 1px solid #f0f0f0;
}

article.sub-article {
	padding: 20px 10px 0;
	box-shadow: none;
	border: none;
}

article h2 {
	padding: 20px 0 10px;
	font-size: 20px;
	text-transform: uppercase;
}

article h3 {
	padding: 20px 0 5px;
	font-size: 18px;
	text-transform: uppercase;
}

article h4 {
	padding: 10px 0 5px;
	font-size: 16px;
	text-transform: uppercase;
}

article p {
	margin-bottom: 20px;
}

article ul {
	margin: 15px 30px;
	list-style: outside disc;
}

article ol {
	margin: 15px 30px;
	list-style: outside decimal;
}

article ul li, article ol li {
	margin-bottom: 10px;
}

article strong {
	font-weight: 700;
}

article a {
	text-decoration: underline;
}

article a:hover {
	text-decoration: none;
}

article img.alignleft {
	display: block;
	margin: 0 20px 10px 0;
	float: left;
}

article img.alignright {
	display: block;
	margin: 0 0 10px 20px;
	float: right;
}

article img.aligncenter {
	display: block;
	margin: 10px auto;
}

article .border {
	display: block;
	padding: 8px;
	border-radius: 2px;
	background-color: #f9f9f9;
	box-shadow: 0 0 2px 0 rgba(0,0,0,.2);
}


.sub-title {
	color: #555;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: underline;
}

.sub-title:hover {
	color: #3db6ef;
	text-decoration: none;
}

.post-ul {
	margin-top: 10px;
}

.post-ul li {
	position: relative;
	width: 31.33333%;
	height: 250px;
	margin: 0 1% 10px;
	border: 1px solid #fff;
	border-radius: 2px;
	transition: all 350ms ease;
	float: left;
}

@media all and (max-width: 1100px) {
	.post-ul li {
		width: 48%;
	}
}

@media all and (max-width: 500px) {
	.post-ul li {
		width: 100%;
		margin: 0 0 30px;
		float: none;
	}
}

.post-ul li:hover {
	border-color: #f0f0f0;
}

.post-li-thumb {
	display: block;
	width: 100%;
	max-width: 300px;
	height: 100%;
	margin: 0 auto;
	background-size: 90%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s linear;
}

.post-ul-title {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 2;
}

.post-ul-title i {
	display: inline-block;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	color: #fff;
	border-radius: 2px;
	background-color: rgba(0,0,0,.8);
	transition: all 350ms ease;
}

.post-li-thumb:hover {
	background-size: 95%;
}

.post-li-thumb:hover .post-ul-title i {
	background-color: rgba(61,182,239,.9);
}





.gallery {
	width: 100%;
	margin: 20px auto;
	list-style: none;
}

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

.gallery .gallery-item {
	position: relative;
	width: 32%;
	margin: .4%;
	float: left;
}

.gallery .gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height: 40px;
	padding: 3px;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
	background-color: rgba(0,0,0,.8);
	color: #fff;
}

.gallery-columns-2 .gallery-item { 
	width: 49%; 
}

.gallery-columns-4 .gallery-item { 
	width: 24%; 
}

.gallery img {
	display: block;
	width: 100%!important;
	height: 100%!important;
	padding: 5px;
	border: 1px solid #f0f0f0;
	transition: all .5s ease;
}

@media all and (max-width: 500px) {
	.gallery .gallery-item, .gallery-columns-2 .gallery-item, .gallery-columns-4 .gallery-item {
		width: 100%;
		margin-bottom: 10px;
		float: none;
	}
	.gallery img {
		max-width: 280px;
		margin: 0 auto;
	}
}

.gallery img:hover {
	border-color: #999;
}

.gallery dl, .gallery dt { margin: 0; }
.gallery br, .gallery br+br { display: none; }
.gallery .gallery-caption br { display: block; }




.post {
	margin: 0 0 60px;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
	border-radius: 2px;
	border: 1px solid #f0f0f0;
}

.post-thumb {
	display: block;
	width: 40%;
	max-width: 400px;
	height: 250px;
	margin: 0 20px 5px 0;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0 0 10px 1px rgba(0,0,0,.1);
	float: left;
}

@media all and (max-width: 1280px) {
	.post-thumb {
		height: 250px;
	}
}

@media all and (max-width: 1100px) {
	.post-thumb {
		width: 100%;
		max-width: 400px;
		height: 300px;
		margin: 0 auto 20px;
		box-shadow: none;
		float: none;
	}
}

@media all and (max-width: 500px) {
	.post-thumb {
		max-width: 100%;
		height: 220px;
	}
}

.post-title {
	color: #111;
	font-size: 18px;
	text-transform: uppercase;
}

a.post-title {
	text-decoration: underline;
}

a.post-title:hover {
	text-decoration: none;
}

.post-meta {
	margin-bottom: 20px;
	font-size: 13px;
	color: #909090;
}

.post-content .more-link {
	display: inline-block;
	margin: 30px 0 0 0;
	font-size: 13px;
	text-transform: uppercase;
	border-bottom: 1px dashed #3db6ef;
	float: right;
}

.post-content .more-link:hover {
	border-color: transparent;
}

.list-nav div {
	padding: 0 5px 3px;
	border-bottom: 1px dashed #777;
	color: #777;
	transition: all .5s ease;
}

.list-nav div:hover {
	border-color: transparent;
}

.list-nav .prev {
	float: left;
}

.list-nav .next {
	float: right;
}

@media all and (max-width: 500px) {
	.list-nav {
		text-align: center;
	}
	
	.list-nav .prev, .list-nav .next {
		margin-bottom: 20px;
		float: none;
	}
}

.search-list {
	margin: 20px;
	list-style: outside square;
}

.search-list li {
	margin-bottom: 10px;
}

.search-list li a {
	color: #111;
	text-decoration: underline;
}

.search-list li a:hover {
	text-decoration: none;
}


footer {
	position: relative;
	margin-top: 150px;
	padding: 0 0 20px;
	background: #111 url(images/footer-bg.png) repeat;
	color: #a7a7a7;
	z-index: 2;
}

@media all and (max-width: 767px) {
	footer {
		margin-top: 0;
	}
}

.social {
	margin-bottom: 30px;
}

.social li {
	width: 16.666666%;
	float: left;
}

.social li a {
	position: relative;
	display: block;
	height: 40px;
	text-align: center;
	line-height: 36px;
	border-top: 4px solid rgba(0,0,0,.25);
	color: #fff;
	transition: all 350ms ease;
	opacity: .8;
}

.social li a:hover {
	opacity: 1;
	transform: translateY(-4px);
}

.social li a:before {
	position: absolute;
	top: 4px;
	left: 3px;
	display: block;
	content: '';
	width: 25px;
	height: 25px;
	background: url(images/sprites.png) no-repeat;
}

@media all and (max-width: 900px) {
	.social li a {
		font-size: 12px;
		text-align: left;
		padding-left: 30px;
	}
}

@media all and (max-width: 767px) {
	.social li {
		width: 33.33%;
		overflow: hidden;
	}
	.social li a {
		border-top: 1px solid rgba(0,0,0,.25);
	}
}
.social li.vk a:before {
	background-position: 0 -40px;
}
.social li.vk a {
	background-color: #4d97ca;
}

.social li.fb a:before {
	background-position: -25px -40px;
}
.social li.fb a {
	background-color: #3a6197;
}

.social li.tw a:before {
	background-position: -50px -40px;
}
.social li.tw a {
	background-color: #00c4ff;
}

.social li.ok a:before {
	background-position: -75px -40px;
}
.social li.ok a {
	background-color: #ff9d39;
}

.social li.yt a:before {
	background-position: -100px -40px;
}
.social li.yt a {
	background-color: #ff4141;
}

.social li.insta a:before {
	background-position: -125px -40px;
}
.social li.insta a {
	background-color: #e533a8;
}


.footer-logo {
	position: absolute;
	bottom: 0;
	right: 10px;
	width: 240px;
	z-index: 1;
}

.footer-logo img {
	display: block;
	width: 80%;
	max-width: 150px;
	margin: 0 auto;
	border-radius: 50%;
	opacity: .15;
}

.footer-logo p {
	padding: 20px 5px 0;
	text-align: center;
	font-size: 12px;
	color: #fff;
}

.fmenu {
	position: relative;
	width: 66.66666%;
	padding: 0 20px;
	float: left;
	z-index: 2;
}

.fmenu a {
	color: #fff;
	text-decoration: underline;
	transition: all 350ms ease;
}

.fmenu ul {
	width: 33.33333%;
	float: left;
}

.fmenu ul > li {
	margin-bottom: 15px;
}

.fmenu ul > li ol {
	margin: 5px;
	padding: 3px 5px 3px 12px;
	border-left: 1px solid #505050;
}

.fmenu ul > li ol li {
	margin-bottom: 3px;
}

.fmenu ul > li ol li a {
	font-size: 13px;
	color: #d9d9d9;
}

.fmenu a:hover {
	color: #fff;
	text-decoration: none;
}

.fcon {
	position: relative;
	width: 33.33332%;
	padding: 0 20px;
	float: left;
	z-index: 2;
}

.fcon li {
	position: relative;
	margin-bottom: 25px;
	padding: 0 0 0 45px;
}

.fcon li:before {
	position: absolute;
	top: 0;
	left: -10px;
	display: block;
	content: '';
	width: 40px;
	height: 40px;
}

.fcon li:nth-child(1):before {
	background: url(images/sprites.png) -60px 0 no-repeat;
}

.fcon li:nth-child(2):before {
	background: url(images/sprites.png) -100px 0 no-repeat;
}

.fcon li:nth-child(3):before {
	background: url(images/sprites.png) -140px 0 no-repeat;
}

.fcon li:nth-child(4):before {
	background: url(images/sprites.png) -180px 0 no-repeat;
}

.fcon .val {
	display: inline-block;
	margin-right: 10px;
	color: #fff;
}

.fcon a {
	color: #fff;
	text-decoration: underline;
}

.fcon a:hover {
	text-decoration: none;
}

@media all and (max-width: 1100px) {
		
}

@media all and (max-width: 900px) {	
	.fmenu {
		width: 100%;
		margin-bottom: 20px;
		float: none;
	}
	
	.fcon {
		width: 100%;
		float: none;
	}
	
	.fcon li {
		width: 45%;
		float: left;
	}
}

@media all and (max-width: 500px) {
	.fmenu {
		display: none;
	}
	
	.fcon li {
		width: 100%;
		margin: 0 0 20px;
		float: none;
	}
	
	.footer-logo {
		bottom: -35px;
		right: 50%;
		margin-right: -120px;
	}
	
	.footer-logo img {
		opacity: .08;
	}
	
}

#elki_msg {
	position: fixed;
	bottom: 65px;
	right: 0;
	display: none;
	width: 100%;
	z-index: 1003;
}

#elki_msg.active {
	display: block;
}

#elki_msg p {
	display: block;
	width: 350px;
	margin: 0 auto;
	padding: 12px;
	background-color: #1bd741;
	border: 2px solid #21b93f;
	border-radius: 3px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
	z-index: 1001;
	cursor: pointer;
}

#layer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, .5);
	z-index: 1000;
}

.pp {
	position: fixed;
	bottom: -120%;
	left: 50%;
	width: 350px;
	min-height: 500px;
	margin: 0 0 -250px -175px;
	padding: 20px;
	background-color: #fff;
	border-radius: 2px 2px 0 0;
	box-shadow: 0 0 8px 1px rgba(255,255,255,.4);
	border-bottom: 4px solid #111;
	transition: bottom .4s ease-in-out;
	z-index: 1001;
}

.pp.translate {
	bottom: 50%;
}

.pp-close {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 25px;
	height: 25px;
	background: url(images/sprites.png) -150px -40px no-repeat;
	z-index: 1002;
	cursor: pointer;
	transition: all .25s ease;
	opacity: .7;
}

.pp-close:hover {
	opacity: 1;
}

.pp-title {
	padding-bottom: 10px;
	border-bottom: 1px solid #dee0ee;
}

.pp-title p {
	padding-top: 20px;
	font-size: 18px;
    text-transform: uppercase;
    color: #575b71;
}

.pp-icon {
	width: 60px;
	height: 60px;
	margin-right: 10px;
	float: left;
	background: url(images/sprites.png) 0 -65px no-repeat;
}

.pp-form {
	margin: 10px 0 30px;
}

.pp-form p {
	font-size: 13px;
	padding-bottom: 10px;
}

.form input[type=text], .form input[type=submit] {
	width: 100%;
	height: 40px;
	border: 1px solid #dee0ee;
	line-height: 40px;
	border-radius: 2px;
	background-color: #fff;
}

.input-wrap {
	position: relative;
	margin-bottom: 2px;
}

.input-wrap input[type=text], .input-wrap input[type=password] {
	padding-left: 40px;
}

.input-wrap:before {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	content: '';
	width: 40px;
	height: 40px;
	z-index: 2;
}

.input-wrap.fname:before {
	background: url(images/sprites.png) -60px -65px no-repeat;
}

.input-wrap.ftel:before {
	background: url(images/sprites.png) -100px -65px no-repeat;
}

.input-wrap.fmail:before {
	background: url(images/sprites.png) -100px -105px no-repeat;
}

.form input.submit-btn  {
	background-color: #1bd741;
	border: none;
	border-bottom: 3px solid #1bc93e;
	color: #fff;
	text-transform: uppercase;
	transition: all .25s ease;
	cursor: pointer;
	text-align: center;
}

.form .submit-btn:hover {
	background-color: #1bc93e;
}

.form textarea {
	display: block;
	width: 100%;
	height: 60px;
	padding: 8px;
	font-size: 13px;
	border: 1px solid #dee0ee;
}

.form .submit-btn:disabled,.form .submit-btn:disabled:hover {
	opacity: .5;
	cursor: default;
}

.submit-wrap {
	position: relative;
}

.pp-form .submit-wrap {
	margin-top: 10px;
}

.form .submit-btn + .loader {
	position: absolute;
	top: 0;
	left: 5px;
	display: none;
	width: 40px;
	height: 40px;
	background: url(images/loader.svg) center no-repeat;
	z-index: 2;
}

.form .submit-btn:disabled + .loader {
	display: block;
}

.ip-check {
	position: relative;
	display: block;
	padding-left: 30px;
	margin-top: 15px;
	font-size: 12px;
	cursor: pointer;
}

.ip-check a {
	color: #4090db;
}

.ip-check a:hover {
	color: #62a6e5;
	text-decoration: none;
}

.ip-check input {
	display: none;
}

.ip-check input + i {
	position: absolute;
	top: 0;
	left: 5px;
	display: block;
	content: '';
	width: 20px;
	height: 20px;
	background: url(images/sprites.png) -60px -105px no-repeat;
}

.ip-check input:checked + i {
	background-position: -80px -105px;
}

.ip-check.agree.red, .ip-check.agree.red a {
	color: #f5513f;
}

.form .valid {
	display: none;
	min-width: 180px;
	margin: 5px 1px 0 2px;
	padding: 2px 5px;
	font-size: 11px;
	line-height: 13px;
	color: #fff;
	border-radius: 2px 2px 0 0;
	background-color: #f5513f;
	text-align: center;
	float: right;
}

@media all and (max-width: 500px) {
	.pp {
		width: 96%;
		left: 0;
		height: 98%;
		min-height: auto;
		margin: 0 0 0 2%;
		overflow-y: scroll;
	}
	
	.pp.translate {
		bottom: 1%;
	}
}

#uploads {
	margin-bottom: 10px;
}

.upload-wrapper input {
	display: none;
}

.upload-wrapper .info {
	margin-bottom: 10px;
	font-size: 12px;
	color: #555;
	text-align: center;
}

.upload-wrapper label {
	position: relative;
	display: block;
	height: 40px;
	margin-bottom: 2px;
	line-height: 40px;
	text-align: center;
	background-color: #3db6ef;
	border-bottom: 3px solid #3099ca;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 2px;
	transition: all 350ms ease;
}

.upload-wrapper label:hover {
	background-color: #3099ca;
}

.upload-wrapper label:before {
	position: absolute;
	top: 0;
	right: 0;
	display: none;
	content: '';
	width: 40px;
	height: 40px;
	background: url(images/loader_gear.svg) no-repeat;
	z-index: 2;
}

.upload-wrapper label.disabled {
	opacity: .85;
}

.upload-wrapper label.disabled:before {
	display: block;
}

.upload-error {
	margin-bottom: 10px; 
	padding: 5px;
	background-color: #f7255b;
	color: #fff;
	text-align: center;
	font-size: 12px;
	border-radius: 2px;
}

.upload-ok {
	position: relative;
	padding: 0 30px;
	margin-bottom: 5px;
	border-bottom: 1px solid #dee0ee;
	line-height: 25px;
	font-size: 13px;
	color: #111;
}

.upload-ok:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 25px;
	height: 25px;
	background: url(images/sprites.png) -200px -40px no-repeat;
}

.upload-delete {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 25px;
	height: 25px;
	color: #ff4141;
	font-size: 25px;
	line-height: 25px;
	text-align: center;
	cursor: pointer;
}

#mobile_menu {
	position: fixed;
	top: 0;
	right: -400px;
	width: 250px;
	height: 100%;
	padding: 10px 20px 10px 10px;
	background-color: rgba(0,0,0,.9);
	z-index: 10000;
	transition: right .5s ease;
}

#mobile_menu.translate {
	right: 0;
}

#m_close {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 25px;
	height: 25px;
	background: url(images/sprites.png) -175px -40px no-repeat;
	z-index: 10001;
}

.m-wrap {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.m-wrap ul {
	margin-left: 25px;
}

.m-wrap a {
	display: block;
	color: #fff;
}

.m-wrap ul > li > a {
	padding: 5px;
	border-top: 1px dashed #333;
	font-size: 14px;
}

.m-wrap ul > li:first-child > a {
	border: none;
}

.m-wrap ol {
	margin: 0 0 20px 20px;
	list-style: outside disc;
}

.m-wrap ol a {
	font-size: 12px;
}



.gallery p {
	margin: 0;
}

.dl {
	position: relative;
}

.dl br {
	margin: 0;
	display: none;
}

.dl-title {
    width: 100%;
    height: 30px;
    background-color: #dadada;
    line-height: 30px;
    color: #505050;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 350ms ease;
}

.dl:hover .dl-title {
    background-color: #3fdf5f;
    color: #fff;
}

.dl-icons {
	position: absolute;
	bottom: 30px;
	left: 0;
	display: none;
	width: 100%;
}

.dl:hover .dl-icons {
	display: block;
}

.dl-icons:after {
	content: '';
    display: block;
    clear: both;
}

.dl-icons a {
	position: relative;
	display: block;
	width: 50%;
	height: 100px;
	background-color: rgba(0,0,0,.6);
	transition: all 350ms ease;
	float: left;
}

.dl-icons a:before {
	position: absolute;
	top: 25px;
	left: 50%;
	display: block;
	content: '';
	width: 50px;
	height: 50px;
	margin-left: -25px;
}

.dl-icons a.jpg:before {
	background: url(images/dl-icons.png) 0 0 no-repeat;
}

.dl-icons a.pdf:before {
	background: url(images/dl-icons.png) -50px 0 no-repeat;
}

.dl-icons a.cdr:before {
	background: url(images/dl-icons.png) -100px 0 no-repeat;
}

.dl-icons a.ai:before {
	background: url(images/dl-icons.png) -150px 0 no-repeat;
}

.dl-icons a.jpg:hover {
	background-color: #50bee8;
}
.dl-icons a.pdf:hover {
	background-color: #ff0000;
}
.dl-icons a.cdr:hover {
	background-color: #84bd5a;
}
.dl-icons a.ai:hover {
	background-color: #f7b84e;
}




/*========================================*/
/* lightslider v1.1.6 */

.lSSlideOuter {
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.lightSlider:before, .lightSlider:after {
    content: " ";
    display: table;
}
.lightSlider {
    overflow: hidden;
    margin: 0;
}
.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.lSSlideWrapper > .lightSlider:after {
    clear: both;
}
.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform,height;
    -moz-transition-property: -moz-transform,height;
    transition-property: transform,height;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade {
    position: relative;
}
.lSSlideWrapper .lSFade > * {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}
.lSSlideWrapper.usingCss .lSFade > * {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade > *.active {
    z-index: 10;
}
.lSSlideWrapper.usingCss .lSFade > *.active {
    opacity: 1;
}

.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
}
.lSSlideOuter .lSPager.lSpg > li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background-color: #222222;
    border-radius: 30px;
    display: inline-block;
    height: 8px;
    overflow: hidden;
    text-indent: -999em;
    width: 8px;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #428bca;
}
.lSSlideOuter .media {
    opacity: 0.8;
}
.lSSlideOuter .media.active {
    opacity: 1;
}

.lSSlideOuter .lSPager.lSGallery {
    list-style: none outside none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
    transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    height: auto;
    max-width: 100%;
}
.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
    content: " ";
    display: table;
}
.lSSlideOuter .lSPager.lSGallery:after {
    clear: both;
}

.lSAction > a {
    width: 32px;
    display: block;
    top: 50%;
    height: 32px;
    background-image: url(images/slider_controls.png);
    cursor: pointer;
    position: absolute;
    z-index: 99;
    margin-top: -16px;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}
.lSAction > a:hover {
    opacity: 1;
}
.lSAction > .lSPrev {
    background-position: 0 0;
    left: 10px;
}
.lSAction > .lSNext {
    background-position: -32px 0;
    right: 10px;
}
.lSAction > a.disabled {
    pointer-events: none;
}
.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}

.lSSlideOuter.vertical {
    position: relative;
}
.lSSlideOuter.vertical.noPager {
    padding-right: 0px !important;
}
.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0;
}
.lSSlideOuter.vertical .lightSlider > * {
    width: 100% !important;
    max-width: none !important;
}

.lSSlideOuter.vertical .lSAction > a {
    left: 50%;
    margin-left: -14px;
    margin-top: 0;
}
.lSSlideOuter.vertical .lSAction > .lSNext {
    background-position: 31px -31px;
    bottom: 10px;
    top: auto;
}
.lSSlideOuter.vertical .lSAction > .lSPrev {
    background-position: 0 -31px;
    bottom: auto;
    top: 10px;
}

.lSSlideOuter.lSrtl {
    direction: rtl;
}
.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    padding-left: 0;
    list-style: none outside none;
}
.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
    padding-right: 0;
}
.lSSlideOuter .lightSlider > *,  .lSSlideOuter .lSGallery li {
    float: left;
}
.lSSlideOuter.lSrtl .lightSlider > *,  .lSSlideOuter.lSrtl .lSGallery li {
    float: right !important;
}

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
@keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd 0.3s;
    animation: topEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd 0.3s;
    animation: bottomEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}

.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.clients .lSAction > a {
	top: 0;
	margin: 0;
}

.product-slider .lSAction .lSNext {
	right: 0;
}

.product-slider .lSAction .lSPrev {
	left: 0;
}

.cnt-slider .lSAction .lSNext, .cnt-slider .lSAction .lSPrev,
.add-slider .lSAction .lSNext, .add-slider .lSAction .lSPrev {
	top: 0;
	margin-top: 0;
	background-color: #fff;
	border-radius: 16px;
}

.cnt-slider .lSAction .lSPrev,
.add-slider .lSAction .lSPrev {
	left: 0;
}

.cnt-slider .lSAction .lSNext,
.add-slider .lSAction .lSNext {
	right: 0;
}
/* ScrollBar */
.ps-container .ps-scrollbar-y-rail {
    position: absolute;
    left: 3px;
    width: 4px;
	background-color: #eee;
    border-radius: 2px;
    opacity: 1;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
}

.ps-container:hover .ps-scrollbar-y-rail,
.ps-container.hover .ps-scrollbar-y-rail {
    opacity: 1;
}

.ps-container .ps-scrollbar-y {
    position: absolute;
    right: 0;
    width: 4px;
    background-color: #555;
    border-radius: 4px;
    -webkit-transition: background-color.2s linear;
    transition: background-color .2s linear;
}

.ps-container.ie6 .ps-scrollbar-y {
    font-size: 0;
}

.ps-container .ps-scrollbar-y-rail:hover .ps-scrollbar-y,
.ps-container .ps-scrollbar-y-rail.hover .ps-scrollbar-y {
    background-color: #888;
}

#mobile_nav .ps-container .ps-scrollbar-y-rail {
	left: auto;
	right: 1px;
	opacity: 1;
}

.gallery.ps-container .ps-scrollbar-y-rail {
	left: auto;
	right: 0;
	opacity: 1;
}

.scroll-arrows:before, .scroll-arrows:after {
	position: absolute;
	right: -20px;
	font-size: 23px;
	color: #999;
	z-index: 2;
}

.scroll-arrows:before {
	top: 0;
	content: "\2191";
}

.scroll-arrows:after {
	bottom: 7px;
	content: "\2193";
}


/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:url(images/cb/overlay.png) repeat 0 0; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
    #cboxTopLeft{width:21px; height:21px; background:url(images/cb/controls.png) no-repeat -101px 0;}
    #cboxTopRight{width:21px; height:21px; background:url(images/cb/controls.png) no-repeat -130px 0;}
    #cboxBottomLeft{width:21px; height:21px; background:url(images/cb/controls.png) no-repeat -101px -29px;}
    #cboxBottomRight{width:21px; height:21px; background:url(images/cb/controls.png) no-repeat -130px -29px;}
    #cboxMiddleLeft{width:21px; background:url(images/cb/controls.png) left top repeat-y;}
    #cboxMiddleRight{width:21px; background:url(images/cb/controls.png) right top repeat-y;}
    #cboxTopCenter{height:21px; background:url(images/cb/border.png) 0 0 repeat-x;}
    #cboxBottomCenter{height:21px; background:url(images/cb/border.png) 0 -29px repeat-x;}
    #cboxContent{background:#fff; overflow:hidden;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:28px;}
        #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
        #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
        #cboxLoadingOverlay{background:url(images/cb/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(images/cb/loading.gif) no-repeat center center;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
        #cboxPrevious{position:absolute; bottom:0; left:0; background:url(images/cb/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:-75px -25px;}
        #cboxNext{position:absolute; bottom:0; left:27px; background:url(images/cb/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxNext:hover{background-position:-50px -25px;}
        #cboxClose{position:absolute; bottom:0; right:0; background:url(images/cb/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxClose:hover{background-position:-25px -25px;}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}
/*=====================================*/
/* Таблица */

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    margin-bottom: 24px;
	border: 2px solid #707070;
	border-spacing: 2px;
	border-color: grey;
}

/*====================================*/
/* BreadCrumbs */
.bcn {
	padding: 0 10px;
	margin-bottom: 10px;
	background-color: #f1f1f1;
	border: 1px solid #e8e8e8;
	border-radius: 2px;
}

.bcn a, .bcn i, .bcn em {
	display: inline-block;
	color: #777;
	font-size: 12px;
	line-height: 30px;
	text-decoration: underline;
	float: left;
}

.bcn a {
	padding-left: 5px;
}

.bcn a:hover, .bcn a.current-item, .bcn em {
	color: #333;
	text-decoration: none;
}

.bcn i {
	display: block;
	background: url(images/separator.jpg) no-repeat;
    width: 20px;
    height: 30px;
	float: left;
}
/*====================================*/
/* Price Table */

.prt {
	
}

.prt p {
	margin: 0;
	padding: 0;
}

.prt-row {
	margin-bottom: 10px;
	overflow: hidden;
}

.prt-row-wrap, .prt-sub-row-wrap {
	height: 0;
	opacity: 0;
	transition: all .25s ease-out;
	overflow: hidden;
}

.prt-row.open .prt-row-wrap, .prt-sub-row.open .prt-sub-row-wrap {
	height: auto;
	padding-bottom: 20px;
	opacity: 1;
}

.prt-title {
	position: relative;
	height: 50px;
	background-color: #f0f0f0;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 50px;
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	cursor: pointer;
}

.prt-title:before {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	content: '+';
	width: 50px;
	height: 50px;
	font-size: 25px;
	line-height: 50px;
	color: #333;
}

.prt-row.open .prt-title {
	color: #fff;
	background-color: #3db6ef;
	border-color: #3db6ef;
}

.prt-row.open .prt-title:before {
	color: #fff;
	content: '-';
	font-size: 40px;
}

.prt-sub-row {
	width: 98%;
	margin: 5px auto 0;
}

.prt-sub-row.cols-2 .prt-sub-title, .prt-sub-row.cols-21 .prt-sub-title {
	position: relative;
	height: 30px;
	background-color: #f5f5f5;
	text-align: center;
	font-size: 17px;
	line-height: 30px;
	border: 1px solid #eaeaea;
	border-radius: 2px;
	cursor: pointer;
}

.prt-sub-row.cols-2 .prt-sub-title:before, .prt-sub-row.cols-21 .prt-sub-title:before {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	content: '+';
	width: 50px;
	height: 30px;
	font-size: 20px;
	line-height: 30px;
	color: #333;
}

.prt-sub-row.cols-2.open .prt-sub-title:before, .prt-sub-row.cols-21.open .prt-sub-title:before {
	content: '-';
	font-size: 35px;
}

.prt-sub-row.cols-2 .prt-col {
	width: 48%;
	margin: 10px 0 5px 1.3333%;
	padding: 10px;
	border: 1px solid #d0d0d0;
	border-radius: 2px;
	float: left;
}

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

.prt-prices li {
	max-height: 25px;
	padding: 5px;
	font-size: 13px;
	border-bottom: 1px dashed #e5e5e5;
	clear: both;
	overflow: hidden;
}

.prt-prices .l {
	width: 70%;
	float: left;
}

.prt-prices .r {
	width: 30%;
	float: right;
	text-align: right;
	font-weight: 700;
}

.prt-sub-row.cols-2 .prt-col-title {
	padding: 5px 0;
	font-size: 15px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
}

.prt-sub-row.cols-1, .prt-sub-row.cols-21 .prt-col {
	padding: 10px;
	border: 1px solid #d0d0d0;
	border-radius: 2px;
}

.prt-sub-row.cols-21 .prt-col {
	margin-top: 5px;
}

.prt-sub-row.cols-1 .prt-sub-title, .prt-sub-row.cols-21 .prt-col-title {
	width: 50%;
	padding: 5px 0;
	font-size: 15px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	float: left;
}

.prt-sub-row.cols-1 .prt-col, .prt-sub-row.cols-21 .prt-prices {
	width: 50%;
	float: right;
}

@media all and (max-width: 767px) {
	.prt-title {
		font-size: 14px;
		padding: 0 5px;
	}
	
	.prt-sub-row.cols-1 .prt-sub-title,
	.prt-sub-row.cols-21 .prt-col-title	{
		font-size: 13px;
	}
	
	.prt-sub-row.cols-2 .prt-col {
		width: 100%;
		margin: 10px 0;
		float: none;
	}
	
	.prt-sub-row.cols-1 .prt-sub-title, .prt-sub-row.cols-1 .prt-col,
	.prt-sub-row.cols-21 .prt-col-title, .prt-sub-row.cols-21 .prt-prices	{
		width: 100%;
		float: none;
	}
}


@media all and (max-width: 500px) {
	#cboxCurrent {
		bottom: 27px;
		left: 0;
		padding: 2px 6px 0;
		border-radius: 0 5px 0 0;
		background-color: #fff;
		font-size: 12px;
	}
	
	#cboxTitle {
		bottom: 0;
		font-size: 12px;
	}
	
	.cnt-slider-title {
		font-size: 13px;
	}
	
}

.pr-toggle-btn {
	position: relative;
	width: 100%;
    height: 40px;
	padding: 0 50px;
    background-color: #29c148;
    line-height: 40px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
    transition: all 350ms ease;
}

.pr-toggle-btn.two {
	width: 48%;
	margin: 0 1%;
	float: left;
}

.pr-toggle-btn.active, .pr-toggle-btn.b.active {
	background-color: #f5513f;
}

.pr-toggle-btn:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	content: '';
	background: url(images/sprites.png) -320px -80px no-repeat;
}

.pr-toggle-btn.b {
	background-color: #3db6ef;
}

.pr-toggle-btn.b:before {
	background-position: -320px -120px;
}

.calc-toggle, .builder-toggle {
	display: none;
	margin-top: 20px;
}

.calc-toggle.active, .builder-toggle.active {
	display: block;
}

@media all and (max-width: 1100px) {
	.pr-toggle-btn.two {
		width: 100%;
		margin: 0;
		float: none;
	}
	
	.pr-toggle-btn.b {
		margin-top: 10px;
	}
}

@media all and (max-width: 500px) {
	.pr-toggle-btn {
		font-size: 13px;
		padding: 0 0 0 50px;
		text-align: left;
	}
}

.add-slider {
	max-height: 400px;
	overflow: hidden;
	margin: 40px 0;
}

.add-slider li {
	position: relative;
	padding-bottom: 10px;
}

.add-title {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 400;
	color: #111;
}

@media all and (max-width: 500px) {
	.add-title {
		font-size: 15px;
	}
	
	.add-slider.also .add-title {
		font-size: 12px;
	}
}

.add-slider .wrap {
	position: relative;
	display: block;
	width: 96%;
	margin: 0 auto;
	padding-bottom: 40px;
	border: 1px solid #dadada;
	border-bottom: none;
	border-radius: 2px;
	box-shadow: 0 4px 6px -2px rgba(0,0,0,.3);
	border-radius: 2px;
}

.add_slider p {
	margin: 0;
	padding: 0;
}

.add_slider br {
	display: none;	
}

.add-slider img {
	display: block;
	width: 100%;
}

.add-li-title {
	display: flex; 
	flex-direction: column; 
	justify-content: center; 
	align-items: center;
	height: 40px;
	border-bottom: 1px solid #e7e7e7;
	background-color: #f9f9f9;
	line-height: 13px;
	font-weight: 700;
	font-size: 12px;
	color: #303030;
	text-transform: uppercase;
	text-align: center;
	overflow: hidden;
}

.add-li-price {
	position: absolute;
	bottom: 45px;
	right: -1px;
	min-width: 80px;
	height: 25px;
	padding: 0 5px 0 10px;
	line-height: 25px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	background-color: #f11c4e;
	border-right: 3px solid #d3244e;
	border-radius: 12px 0 0 12px;
	box-shadow: 0 2px 3px -1px rgba(0,0,0,.3);
}

.add-li-price:after {
	content: '';
	display: inline-block;
	width: 13px;
	height: 13px;
	margin: -3px 0 0 3px;
	vertical-align: middle;
	background: url(images/rub.png);
}

.add-li-btn {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
    height: 40px;
    background-color: #1bd741;
	border-bottom: 3px solid #1bc93e;
    line-height: 40px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
	transition: all .25s ease;
	border-radius: 0 0 2px 2px;
}

.add-li-btn:hover {
	background-color: #1bc93e;
}

.add-slider.also .add-li-btn {
	background-color: #3db6ef;
	border-bottom: 3px solid #3099ca;
}

.add-slider.also li:hover .add-li-btn {
	background-color: #3099ca;
}

.add-li-video {
	position: relative;
	display: block;
	width: 135px;
	margin: 0 auto;
	padding-left: 25px;
	color: #555;
	text-decoration: underline;
	font-size: 12px;
	transition: all 350ms ease;
}

.add-li-video:hover {
	color: #f44336;
	text-decoration: none;
}

.add-li-video:before {
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 15px;
	content: '';
	background: url(images/sprites.png) -320px -40px no-repeat;
}

.pp-add-title {
	margin-top: 5px;
	padding: 5px;
	background-color: #3db6ef;
	font-size: 12px;
	color: #fff;
	text-align: center;
	border-radius: 2px;
}

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

.prt-i-box {
	display: inline-block;
	width: 214px;
	vertical-align: top;
}

.prt-i p {
	margin: 0;
}

.prt-i-wrap {
	margin: 0 8px 15px;
	padding: 8px;
	border: 1px solid #f0f0f0;
	box-shadow: 1px 1px 5px 0px rgba(0,0,0,.25);
}

.prt-i-title {
	height: 40px;
    line-height: 16px;
    font-weight: 700;
    font-size: 12px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    overflow: hidden;
}

.prt-i-box img {
	display: block;
	width: 50%;
	max-width: 250px;
	margin: 10px auto;
}

.prt-i.img-80 .prt-i-box img {
	width: 80%;	
}

.prt-i-prices {
	text-align: center;
	margin: 0;
}

.prt-i-prices li {
	max-height: 25px;
    padding: 5px;
    font-size: 13px;
    border-bottom: 1px dashed #e5e5e5;
    clear: both;
    overflow: hidden;
}