
body {
	background: #f3f1f2 url(../images/gfx/body_bg.jpg) center 175px no-repeat;
	color: #3b3b3c;
	color: #5f5f63;
	font-size: 14px;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	line-height: 1.4em;
}

.bg2 {
	background-color: #eae9e9;
}

strong {
	color: #3b3b3c;
}

a, .orange {
	color: #f07b00;
	text-decoration: none;
}
a:hover {
	color: #F03F15;
}

.p,
p, ul, ol {
	margin: .7em 0;
	padding: 0;
}

hr {
	height: 10px;
	margin: 20px 0 10px;
	background: none;
	border: 0 solid #e9e8e7;
	border-top-width: 1px;
}

h1, .h1 {
	font-size: 30px;
	line-height: 1.0em;
	margin: .8em 0;
	color: #464648;
}
h2, .h2 {
	font-weight: 700;
	font-size: 30px;
	margin: .8em 0;
	line-height: 1.1em;
	color: #464648;
}
h3, .h3 {
	font-weight: normal;
	font-size: 1.5em;
	margin: .7em 0;
	line-height: 1.2em;
	color: #464648;
}
h4, .h4 {
	font-size: 1.2em;
	margin: .5em 0;
	line-height: 1.2em;
	color: #464648;
}
h5, .h5 {
	font-size: 1em;
	margin: .4em 0;
	color: #464648;
}


	.h-small {
		font-size: 18px;
		font-weight: bold;
		color: #2f2f30;
		margin: 10px 0;
		line-height: 1.35em;
	}

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

	.h-white {
		color: #fff;
		margin: 0 0 10px;
	}

	.h-start {
		margin-top: 25px;
		font-size: 30px;
		color: #404041;
		font-weight: 400;
	}

/*
 * Lists
 */

ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}
ol {
	margin-left: 35px;
}
	ol li {
		padding: 1px 0 1px 0;
	}

/*
 * Table
 */

table {
	margin: 1em auto;
}
	td, th {
		padding: 0.5em 1em;
		border: 1px solid #EEE;
	}
	th {
		font-weight: bold;
	}
	thead {
		background-color: #F7F7F7;
	}
	tfoot {
		background-color: #F7F7F7;
		color: #888;
	}

	.datapicker th {
		color: #afafaf;
		font-size: 12px;
		font-weight: 400;
	}

	.datapicker thead {
		background-color: #fff;
	}

	.datapicker thead tr:nth-child(2) th {
		color: inherit;
		font-size: 14px;
		font-weight: 700;
	}

img {
	vertical-align: middle;
}

.tableHover tr:hover td {
	background-color: #F7F7F7;
}
.tableFull {
	width: 100%;
}


/*
 * Input
 */

.input {
	display: inline-block;
	padding: 10px 10px 9px;
	width: 220px;
	border-radius: 1px;
	max-width: 100%;
	border: 1px solid #f0eeed;
	background: #fff;
	vertical-align: middle;
	font: 13px/13px Arial, Helvetica, sans-serif;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
	.input--long {
		width: 350px;
	}
	.input--full {
		width: 100%;
	}
	.input--number {
		width: 55px;
		text-align: center;
	}
	.input--short {
		width: 70px;
		text-align: center;
	}
	.input--textarea {
		max-width: 380px;
		width: 100%;
		height: 90px;
		vertical-align: top;
		line-height: 1.2em;
	}
	.input--full {
		max-width: none;
	}
	.input--textarea--medium {
		height: 200px;
	}
	.input--textarea--large {
		height: 400px;
	}
	.input:focus {
		border-color: #AAA;
		box-shadow: 0 0 6px rgba(0,0,0,0.1);
	}
	.input--invalid {
		border-color: #D47171;
	}


/*
 * Button
 */

.button {
	display: inline-block;
	padding: 10px 30px;
	border: 1px solid #f07b00;
	background: #f07b00;
	border-radius: 1px;
	color: #fff;
	vertical-align: middle;
	text-decoration: none;
	text-transform: lowercase;
	font: bold 14px'Lato',  Arial, Helvetica, sans-serif;
	line-height: 14px;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	cursor: pointer;
}
	.button--large {
		padding: 15px 30px 14px;
		font-size: 16px;
	}
	.button:hover {
		border-color: #F03F15;
		background-color: #F03F15;
		color: #fff;
		text-decoration: none;
	}
	.button:active {
		border-color: #666;
		background: #888;
		box-shadow: inset 0 0 3px rgba(0,0,0,.8);
	}

	.mb-10 {
		margin-bottom: 10px;
	}

	.button--arrow {
		line-height: 1.4em;
    	padding-top: 5px;
    	padding-right: 17px;
    	overflow: hidden;
	}

	.button--arrow:after {
		content: "›";
	    font-size: 37px;
	    font-weight: 400;
	    display: inline-block;
	    padding-left: 17px;
	    vertical-align: -5px;
	}

	.button--light {
		background-color: #bfbfbd;
		border-color: #bfbfbd;
	}

		.button--light:hover {
			background-color: #9D9D9D;
			border-color: #9D9D9D;
		}

	.button--darck {
		background-color: #78787d;
		border-color: #78787d;
	}
		.button--darck:hover {
			background-color: #525356;
			border-color: #525356;
		}

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

	.button--full {
		width: 100%;
		text-align: center;
	}

	.button--mini {
		padding: 0;
		text-align: center;
		width: 15px;
		line-height: 14px;
		margin: 4px;
	}


/*
 * Select
 */

.select {
    padding: 0;
    width: 100%;
    border: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}




.select-label {
	display: block;
    padding: 9px 10px 10px;
    margin: 0;
   	width: 220px;
	border-radius: 1px;
	max-width: 100%;
	border: 1px solid #f0eeed;
    overflow: hidden;
    background: #fff url(../images/gfx/arrow_down.png) no-repeat 97.5% 51%;
    margin-bottom: 10px;
    cursor: pointer;
}
	.select-label.disabled {
		opacity: .8;
		cursor: not-allowed;
	}

	.label .select-label {
		 padding: 8px 10px 9px;
		 margin-bottom: 0;
	}

	.select--full {
		width: 100%;
	}

	.select-label select:focus {
	    outline: none;
	}

.datapicker_input_label {
	height: 15px;
}

	


/*
 * Form
 */

.form {
	max-width: 450px;
	margin: 0 auto;
}

.label,
.formActions {
	display: block;
	clear: both;
	padding: 3px 0 3px 120px;
}
	.label-name {
		float: left;
		margin-left: -120px;
		padding-top: 5px;
		padding-right: 5px;
		width: 110px;
		text-align: right;
		font-size: 13px;
	}
	.label-value {
		padding: 5px 0 0 0;
		display: inline-block;
	}
	.label-help {
		display: block;
		color: #aaa;
		font-size: 11px;
		line-height: 1.2em;
	}
	.label-help--after {
		display: inline-block;
		vertical-align: middle;
	}
	.label--invalid {
		color: #B72B2B;
	}
	.label--invalid .input {
		border-color: #D92E2E;
	}

	.label--big {
		padding-left: 210px;
	}
		.label--big .label-name {
			margin-left: -210px;
			width: 200px;
		}

	.label--small {
		padding-left: 80px;
	}
		.label--small .label-name {
			margin-left: -80px;
			width: 70px;
		}

	/* elastyczne labele */
	.elasticLabels .label {
		padding-left: 0;
	}
		.elasticLabels .label-name {
			display: inline-block;
			float: none;
			margin-left: 0;
			padding-right: 10px;
			min-width: 110px;
			width: auto;
			vertical-align: top;
		}

.formActions {
	margin: 1em 0;
	padding-bottom: 15px;
}
	.formActions--center {
		padding-left: 0;
		text-align: center;
	}
	.formActions--sides {
		padding: 15px;
		overflow: hidden;
	}
		.formActions--sides-left {
			float: left;
		}
		.formActions--sides-right {
			float: right;
		}


/*
 * Loading
 */

.loading {
	background: url(../images/gfx/loading.png) center center no-repeat;
}
	.loading--full {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #FFF;
		opacity: .8;
		filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	}
	.loading-text {
		position: absolute;
		width: 100%;
		text-align: center;
		top: 50%;
	}


/*
 * Media element
 */

.media {
	overflow: hidden;
	display: block;
	margin: .8em 0;
}
	.media-image {
		float: left;
		margin-right: .8em;
	}
	.media-content {
		overflow: hidden;
		margin: 0;
	}
	.media--triple,
	.media--double {
		display: inline-block;
		vertical-align: top;
		width: 48.8%;
		margin: .8em .4%;
	}
	.media--triple {
		width: 32%;
	}

.media2 {
	display: table;
	margin: .8em 0;
}
	.media2-image,
	.media2-content {
		display: table-cell;
		vertical-align: middle;
	}
	.media2-image {
		padding: 0 .6em 0 0;
	}
	.media2-image--after {
		padding-right: .6em;
		padding: 0 0 0 .6em;
	}
	.media2--double {
		display: inline-block;
		vertical-align: top;
		width: 48.9%;
		margin: .4em .4% .8em;
	}
	.media2--inline {
		display: inline-block;
		vertical-align: middle;
		margin: .8em .3em;
	}


/*
 * Table Grid
 */

.grid {
	display: table;
	width: 100%;
}
	.grid--fixed {
		table-layout: fixed;
	}
	.grid-cell {
		display: table-cell;
		vertical-align: middle;
	}
	.grid-cell--tabloid {
		width: 1px;
	}


/*
 * Dropdown
 */

.dropdown {
	position: relative;
}
	.dropdown-content {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 500;
	}


/*
 * Hint
 */
.hint {
	color: #999;
	font-size: .8em;
	line-height: 1.3em;
}


/*
 * Container
 */
.container {
	position: relative;
	margin: 0 auto;
	padding: 0 10px;
	/*min-width: 920px;*/
	max-width: 1100px;
}

/*
 * Left
 */
.leftBlock {
	float: left;
	padding-right: 20px;
	padding-top: 47px;
	/*width: 200px;*/
}

/*
 * Right
 */
.rightBlock {
	float: right;
	padding-left: 20px;
	width: 200px;
}

/*
 * Content
 */
.content {
	overflow: hidden;
	padding-bottom: 30px;
}
	.content img {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		max-width: 100%;
	}
		.content-noimg img {
			max-width: none;
			-webkit-box-sizing: content-box;
			-moz-box-sizing: content-box;
			box-sizing: content-box;
		}

	.content ul {
		margin: .8em 0 15px;
		list-style: square;
	}
		.content ul li {
			padding: 1px 0 1px 12px;
			background: no-repeat 0 0.6em url(../images/gfx/dot.png);
		}

	.content .dropdown-content {
		background: #FFF;
		padding: 5px 10px;
		border-radius: 4px;
		box-shadow: 0 2px 6px rgba(0,0,0,.4);
		font-size: 14px;
		min-width: 140px;
		border: 1px solid #E6E6E6;
	}


/*
 * Breadcrumbs
 */

.breadcrumbs {
	margin: -23px 0 1.5em;
	font-size: 12px;
	color: #9b9b9d;
	border-bottom: 1px solid #e9e8e7;
	padding-bottom: 5px;
}
	.breadcrumbs a,
	.breadcrumbs b,
	.breadcrumbs span {
		display: inline-block;
		vertical-align: middle;
		text-decoration: none;
		color: inherit;
	}
	.breadcrumbs a:hover {
		color: #7C7D7F;
	}

	.breadcrumbs .icon {
		margin-top: -3px;
		margin-right: 3px;
	}

.white-box {
	background: #fff;
	padding: 7px 20px 5px;
	-webkit-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	-moz-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	box-shadow: 18px 18px 20px rgba(15,15,27,.1);
}

	.gallery-item {
		display: inline-block;
		text-align: center;
		width: 32%;
		margin-bottom: 20px;
	}

	.span-4 .gallery-item  {
		width: 49%;
	}
	.gallery-item img,
	.product-gallery a:first-child img {
		display: inline-block;
		padding: 3px;
		background: #fff;
		-webkit-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		-moz-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	}

.product-gallery {
	text-align: center;
	margin-bottom: 10px;
}

	.product-gallery a:first-child {
		display: block;
		margin-bottom: 7px;
	}

	.product-gallery .gallery-item {
		margin: 4px;
		width: 30%;
	}

/*
@Product-wrapper
 */
.productWrapper {
	padding: 0 2px;
	text-align: justify; 
}

	.productWrapper:after {
		content: "";
		display: inline-block;
		width: 80%; 
	}

.product {
	display: inline-block;
	background: #fff;
	width: 32%;
	position: relative;
	margin-bottom: 32px;
	padding: 13px 15px 50px;
	vertical-align: top;
	-webkit-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	-moz-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}	

	.product:hover {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		transform: translateY(-10px);

		-webkit-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		-moz-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	}

	.product-img {
		display: block;
		text-align: center;
		line-height: 180px;
		vertical-align: middle;
	}
		.product-img img {
			display: inline-block;
			vertical-align: middle;
		}

	.product-name {
		font-size: 14px;
	font-weight: bold;
	color: #404041;
	min-height: 2.8em;
	line-height: 1.4em;
	}

	.product .price {
		font-size: 18px;
		font-weight: bold;
		color: #f07b00;
		position: absolute;
		bottom: 15px;
	}

		.promo-price {
			display: block;
			font-size: 12px;
			font-weight: 400;
			text-decoration: line-through;
			color: #b3b3b1;
		}

	.product .button {
		position: absolute;
		bottom: -17px;
		right: 15px;
	}


	.product-oferta {
		width: 24%;
	}

		.product-oferta .product-name {
			font-size: 18px;
			text-align: center;
			min-height: 1.4em;
		}

		.product-desc {
			text-align: center;
			margin-top: 0;
			color: #949494;
		}


.basket {
	display: block;
	position: absolute;
	top: 23px;
	right: 0;
	min-width: 300px;
	white-space: nowrap;
	color: inherit;
}	



	.basket:before {
		content: "\e914";
		display: inline-block;
		float: left;
		margin-right: 15px;
		margin-top: -2px;
		width: 40px;
		height: 40px;
		color: #fff;
		background: #f07b00;
		text-align: center;
		line-height: 40px;
	    font-size: 24px;
	}

/*
 * Slider
 */

.slider {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}
	.slider img {
		display: block;
		width: 100%;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	}
	.slider-arr {
		position: absolute;
		z-index: 200;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		top: 0;
		bottom: 0;
		width: 40px;
		height: 40px;
		line-height: 30px;
		font-size: 70px;
		margin: auto;
		color: #F3F3F3;
		color: rgba(255,255,255,.7);
		text-align: center;
		cursor: pointer;
	}
		.slider-arr:hover {
			color: #FFF;
		}
		.slider-prev {left: -40px}
		.slider-next {right: -40px}

	.slider-pager {
		position: absolute;
		z-index: 200;
		right: 0;
		bottom: -30px;
		left: 0;
		text-align: center;
		overflow: hidden;
		padding: 4px;
	}
		.slider-pager-page {
			display: inline-block;
			width: 10px;
			height: 10px;
			margin: 0 3px;
			background-color: #222;
			background-color: rgba(0,0,0,.3);
			border-radius: 100%;
			cursor: pointer;
			vertical-align: middle;
		}
			.slider-pager-page:hover,
			.slider-pager-page--active {
				background-color: #fff ;
			}

		.slider-prev,
		.slider-next,
		.slider-pager {
			opacity: 0;
			-webkit-transition: all .2s ease;
			-moz-transition: all .2s ease;
			-ms-transition: all .2s ease;
			-o-transition: all .2s ease;
			transition: all .2s ease;
		}

		.slider:hover .slider-prev {left: 0; opacity: 1}
		.slider:hover .slider-next {right: 0; opacity: 1}
		.slider:hover .slider-pager {bottom: 0; opacity: 1}


/*
 * Pagination
 */

.pagination {
	text-align: center;
}
	.pagination-info {
		padding-bottom: 0;
		color: #CCC;
		font-weight: 400;
	}
	.pagination-element {
		display: inline-block;
		margin: 0 -1px 0;
		padding: 3px 10px;
		/*border: 1px solid #DDD;*/
		text-decoration: none;
		border-radius: 1px;
		color: #777;
	}
	.pagination-element--left,
	.pagination-element--right {
		background-color: #EEE;
		padding: 3px 15px;
	}
	.pagination-element:hover {
		position: relative;
		background-color: #f07b00;
		text-decoration: none;
		color: #fff;
	}
	.pagination-element--active,
	.pagination-element--active:hover {
		font-weight: bold;
		background: #666;
		color: #FFF;
	}
	.pagination-element--disabled,
	.pagination-element--disabled:hover {
		color: #CCC;
		font-weight: normal;
		background-color: transparent;
	}


/*
 * Items
 */

.item {
	display: inline-block;
	margin: 0;
	padding: 5px 0 20px;
	background: none;
	vertical-align: top;
	text-align: center;
}
	.item--2 {width: 49.5%;}
	.item--3 {width: 32.5%;}
	.item--4 {width: 24.5%;}
	.item--5 {width: 20%;}

	.item-image {
		display: block;
		height: 140px;
		line-height: 140px;
	}
		.item-image img {
			vertical-align: middle;
		}

	.item-name {
		display: block;
		margin: 0 auto;
		max-width: 70%;
		font-weight: normal;
		line-height: 1.2em;
		min-height: 2.4em; /* 2 x line-height */
	}


/*
 * Box
 */

.box {
	position: relative;
	margin: 0.9em 0.7em;
	padding: 0.7em 1em;
	border: 1px solid #CCC;
	border-radius: 1px;
	background-color: #F5F5F5;
	color: #666;
	text-align: left;
	line-height: 1.4em;
}
	.box-close {
		position: absolute;
		top: -6px;
		right: -6px;
		width: 16px;
		height: 16px;
		border: 1px solid #CCC;
		border-radius: 100%;
		background-color: #F5F5F5;
		box-shadow: 0 0 1px rgba(0,0,0,0.3);
		color: #666;
		text-align: center;
		font-size: 12px;
		line-height: 16px;
		cursor: pointer;
	}
	.box-close:hover {
		top: -7px;
		right: -7px;
		width: 18px;
		height: 18px;
		line-height: 18px;
		font-weight: bold;
	}

	.box--ok,
	.box--ok .box-close {
		border-color: #78CA52;
		background: #F7FFED;
		color: #4DAB01;
	}
	.box--error,
	.box--error .box-close {
		border-color: #FF9494;
		background: #FFF0F0;
		color: #D92A2A;
	}
	.box--info,
	.box--info .box-close {
		border-color: #81AEFF;
		background: #E9F1FF;
		color: #2F5DB3;
	}
	.box--alert,
	.box--alert .box-close {
		border-color: #E1D042;
		background: #FFFFDE;
		color: #A99B27;
	}


/*
 * Main
 */
.main {
	/*overflow: hidden;*/
}


/*
 * Top
 */

.top {
	width: 100%;
	background: #e5e4e4 url(../images/gfx/top_bg.png) center 0 repeat-y;
	/*box-shadow: 0 0 15px rgba(0, 0, 0, 0);*/
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	top: -124px;
	z-index: 100;
	padding: 20px 0 5px;
}

	.top-wrapper {
		background: #fff;
	}

	body.affix {
		padding-top: 124px;
	}

	body.affix .top {
		position: fixed;
		top: -36px;
		/*box-shadow: 0 0 20px rgba(0, 0, 0, .2);*/
	}

	.top .container	{
		position: static;
	}

	.top-bar {
		height: 30px;
		line-height: 30px;
		margin-top: -15px;
	}

	.top-phone {
		/*margin-top: -15px;*/
		float: left;
		height: 30px;
		line-height: 30px;
		font-weight: 700;
		background: #fff;
		padding-right: 10px;
	}
		.top-phone a {
			color: #3b3b3c;
		}

		.top-phone .icon {
			background: #f07b00;
			color: #fff;
			width: 30px;
			height: 30px;
			text-align: center;
			font-size: 16px;
			display: block;
			float: left;
			margin-right: 10px;
			line-height: 30px;
		}

	.top-search {
		/*margin-top: -15px;*/
		float: right;
	}

	.top-menu {
		display: inline-block;
		margin: 0;
		padding: 0;
		vertical-align: top;
	}


			.top-a {
				padding: 0;
				margin-left: -4px;
				font-weight: 700;
				font-size: 11px;
				background: #fff;
				color: inherit;
				display: inline-block;
				width: 30px;
				height: 30px;
				text-align: center;
				vertical-align: top;
			}

			.top-menu a:hover,
			.top-menu a:hover .icon,
			.top-a:hover,
			.top-a.active {
				color: #fff;
				background: #78787d;
			}

			.top-menu a .icon {
				display: none;
			}

			.top-menu a .icon-mail {
				font-size: 11px;
			}


/*
 * Search
 */

.search {
	display: inline-block;
	padding: 0;
	margin: 0;
	border: 0;
	white-space: nowrap;
	text-align: right;
}

	.search form {
		display: inline-block;
		overflow: hidden;
		width: 0;
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
	}

	.search.active form {
		width: 140px;
	}

	.search-input {
		height: 30px;
		padding: 0px 10px;
		border: 1px solid #f5f6f7;
		background: #f5f7f7;
		width: 140px;
	}

	.search-button {
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		border: 0;
		padding: 0;
	}

	.search-input:focus,
	.search-button:focus {
	    outline: none;
	}

	.search legend {
		display: none;
	}


/*
 * Logo
 */

.logo {
	display: block;
	float: left;
	margin: 7px 30px 20px;
	padding: 0;
	/*width: 230px;*/
	clear: left;
}
	.logo img {
		display: block;
		width: 100%;
	}

	body.affix .logo {
		width: 120px;
		margin: 6px 10px;
	}


/*
 * Nav
 */

.nav {
	float: right;
	clear: right;
	margin-top: 7px;
}

	
	body.affix .nav {
		margin-top: 3px;
	}

	.nav li {
		float: left;
	}
	.nav a {
		display: block;
		padding: 10px 3px;
		margin: 0 20px;
		text-decoration: none;
		font-size: 14px;
		text-transform: uppercase;
		font-weight: 700;
		color: #3b3b3c;
		border-bottom: 3px solid #fff;
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
		position: relative;
	}
	.nav .dropdown--open a,
	.nav a:hover {
		border-bottom-color: #f07b00;
		color: #f07b00;
	}

	.nav .dropdown--open > a:after {
		content: "";
		width: 1px;
		height: 1px;
		border: 6px solid transparent;
		border-bottom-color: #f07b00;
		position: absolute;
		bottom: -13px;
		left: 50%;
		margin-left: -6px;
	}

	.nav .dropdown-content {
		background-color: #f07b00;
		width: 200px;
		border-top: none;
		border-radius: 1px;
		margin-top: 10px;
			-webkit-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		-moz-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	}
		.nav .dropdown-content li {
			float: none;
		}
		.nav .dropdown-content a {
			padding: 6px 10px;
			border: none;
			color: #fff;
			margin: 0;
			font-size: 13px;
		}
		.nav .dropdown-content a:hover {
			background-color: #78787d;
		}


/*
 * Categories
 */

.categories {
	display: block;
}
	.categories a {
		display: block;
		padding: 7px 10px;
		text-decoration: none;
		font-size: 14px;
		font-weight: 700;
		color: inherit;
	}
		.categories a:before {
			display: inline-block;
			content: "";
			width: 6px;
			height: 6px;
			background: #f07b00;
			margin: 3px 8px 3px 0;
		}

		.categories a:hover {
			background: #f07b00;
			color: #fff;
		}

			.categories >li > a:hover:before,
			.categories > .open > a:before {
				background: #fff;
			}

	.categories ul {
		display: none;
		margin-left: 15px;
		/*padding: 0 0 5px 5px;*/
	}
	.categories ul a {
		font-size: 13px;
		padding: 2px 10px;
	}

		.categories ul a:hover {
			background: none;
			color: #f07b00;
		}
	.categories > .open > a {
		background: #f07b00;
			color: #fff;
	}

	.categories .active > a {
		color: #f07b00;
		font-weight: bold;
	}


/*
 * Footer
 */

.footer {
	clear: both;
	padding: 40px 0 10px;
	
	border-top: 1px solid #7F7F7F;
	background: #8a8a8a url(../images/gfx/footer_bg.jpg) center 0 no-repeat;
	color: #ffffff;
	position: relative;
	z-index: 2;
}
	.section-start.section-offer + .footer {
		margin-top: 0;
	}

	.footer strong,
	.footer b,
	.footer a {
		color: #fff;
	}

	.footer .h-mini {
		color: #fff;
		font-size: 18px;
		font-weight: 700;
	}

	.footer .media-image {
		font-size: 24px;
	    color: #fff;
	    margin-right: 10px;
	    margin-top: 7px;
	    text-align: center;
	}


	.footer-info {
		font-size: 11px;
		color: #c6c6c6;
		line-height: 1.2em;
	}

	.footer-info a {
		color: inherit;
		opacity: .5;
	}


.section {
	padding: 40px 0;
}





.section-start-img {
	overflow: hidden;
	position: relative;
}

	.start-absolute {
		position: absolute;
		width: 100%;
		top: 0;
	}
	.section-start-img .container {
		position: relative;
		height: 730px;
		/*min-height: 608px;*/
	}

	.start-img {
		display: block;
		margin: 0 auto;	
		position: relative;
		top: 0;
		z-index: 0;
		max-width: 100%;
		min-width: 1200px;
	}


	@media only screen and (max-width: 1200px) {
		.start-img {
			left: 50%;
			margin-left: -600px;
		}
	}


	.start-row {
		margin-left: -10px;
	}

	.start-box {
		position: absolute;
		bottom: 10%;
		z-index: 10;
		padding: 10px 20px 15px;
		font-weight: 700;
		background: #fff;
		background: rgba(255,255,255,.9);
		-webkit-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		-moz-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
	}	

	.start-box:hover {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		transform: translateY(-10px);

		-webkit-box-shadow: 28px 28px 20px rgba(15,15,27,.1);
		-moz-box-shadow: 28px 28px 20px rgba(15,15,27,.1);
		box-shadow: 28px 28px 20px rgba(15,15,27,.1);
	}

		.start-box.offset-8 {
			bottom: auto;
			top: 10%;
			bottom: auto;
			-webkit-box-shadow: -18px 18px 20px rgba(15,15,27,.1);
			-moz-box-shadow: -18px 18px 20px rgba(15,15,27,.1);
			box-shadow: -18px 18px 20px rgba(15,15,27,.1);
		}

			.start-box.offset-8:hover {
				-webkit-box-shadow: -28px 28px 20px rgba(15,15,27,.1);
				-moz-box-shadow: -28px 28px 20px rgba(15,15,27,.1);
				box-shadow: -28px 28px 20px rgba(15,15,27,.1);
			}

		.start-more {
			display: block;
			text-align: right;
			padding: 0 20px;
		}

	.h-icon {
		padding-left: 44px;
		margin: 20px 0;
		background: url(../images/gfx/icon_rocket.png) 0 center no-repeat;
	}
	
	.h-icon--chip {
		background-image: url(../images/gfx/icon_chip.png);
		line-height: 2.1em;
		padding-left: 50px;
	}

	.start-line {
		position: absolute;
		bottom: 3px;
		height: 200px;
		left: 98%;
		width: 138px;
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
		background: url(../images/gfx/line_1_right.png) 0 bottom no-repeat;
	}

		.start-line:after {
			content: "";
			position: absolute;
			height: 25px;
			right: -100px;
			bottom: 186px;
			width: 102px;
			-webkit-transition: all 0.2s ease-out;
			transition: all 0.2s ease-out;
			background: url(../images/gfx/line_1_left.png) right center no-repeat;
		}


		.start-box:hover .start-line {
			height: 190px;
		}

		.start-box:hover .start-line:after {
			bottom: 176px;
			width: 105px;
		}


	.start-line-2 {
		position: absolute;
    	bottom: -130px;
    	height: 145px;
    	right: 70px;
    	width: 152px;
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
		background: url(../images/gfx/line_2_right.png) right top no-repeat;
	}

		.start-line-2:after {
			content: "";
			position: absolute;
			height: 25px;
			right: 149px;
			bottom: -10px;
			width: 162px;
			-webkit-transition: all 0.2s ease-out;
			transition: all 0.2s ease-out;
			background: url(../images/gfx/line_2_left.png) left center no-repeat;
		}


		.start-box:hover .start-line-2 {
			height: 155px;
			width: 156px;
			bottom: -140px;
		}

		.start-box:hover .start-line-2:after {
			/*bottom: -10px;*/
			width: 159px;
			right: 152px;
		}


.section-instalacje,
.section-nowosci {
	background: #eae9e9;
}

	.section-subtext {
		text-align: center;
		margin: 20px auto;
	}


.umow {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 20;
	background: #f07b00;
	overflow: hidden;
	-webkit-box-shadow: -18px 18px 20px rgba(15,15,27,.1);
	-moz-box-shadow: -18px 18px 20px rgba(15,15,27,.1);
	box-shadow: -18px 18px 20px rgba(15,15,27,.1);
}

	.umow-button {
		float: left;
		width: 60px;
		height: 100px;
		text-align: center;
		color: #fff;
		padding-top: 20px;
		font-size: 26px;
	}

		.umow-button:before {
		    content: "\e912";
		}

		.umow.active .umow-button:before {
		    content: "×";
		    font-weight: 700;
		}

	.umow-box {
		background: #fff;
		padding: 5px 15px 20px;
		overflow: hidden;
	}

	.umow-body {
		display: block;
		max-height: 0;
		padding: 0;
		overflow: hidden;
		-webkit-transition: all 0.5s ease-out;
		transition: all 0.5s ease-out;
	}

		.umow.active .umow-body {
		    max-height: 600px;
		}

	.umow-bg {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #78787d;
		opacity: .6;
		z-index: 15;
		display: none;
	}

.datapicker_input {
	height: 0;
	border: 0;
	padding: 0;
	opacity: 0;
}

.form-error {
    font-size: 12px;
    margin: -3px 0 1px;
    color: #d92e2e;
}

	.form-error + .select-label {
	/*.label--invalid + .datapicker{*/
		border:1px solid #d92e2e;
	}

.offer-box {
	text-align: center;
	margin: 60px 0 30px;
	padding: 10px 20px 0;
	background: #fff;
	background: rgba(255,255,255,.9);
	-webkit-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	-moz-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	box-shadow: 18px 18px 20px rgba(15,15,27,.1);

	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}	

	.offer-box:hover {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-o-transform: translateY(-10px);
		transform: translateY(-10px);

		-webkit-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		-moz-box-shadow: 18px 18px 20px rgba(15,15,27,.1);
		box-shadow: 18px 18px 20px rgba(15,15,27,.1);
	}

	.offer-box p {
		min-height: 6em;
		margin: 20px 0;
	}

	.button-offer {
		margin-bottom: -17px;
	}


	.offer-img {
		margin-top: -40px;
		padding-bottom: 10px;
	}

	.offer-img.img-115 {
		margin-top: -65px;
	}

.producenci {
	padding: 20px 0 10px;
	text-align: center;
}	

.section-realizacje {
	background: #bfbfbd url(../images/gfx/squer_bg.jpg) center repeat-y;
	color: #fff;
}

	.row-table {
		display: table;
		width: 100%;
	}

		.vb {
			vertical-align: bottom;
		}

		.vm {
			vertical-align: middle;
		}

		.span-cell {
			display: table-cell;
			padding: 0 0 0 20px;
		}

.realizacje-box {
	background: #e5e4e4 url(../images/gfx/realizacje_bg.jpg) center bottom;
	margin-bottom: 20px;
	-webkit-box-shadow: 18px 28px 20px rgba(15,15,27,.1);
	-moz-box-shadow: 18px 28px 20px rgba(15,15,27,.1);
	box-shadow: 18px 28px 20px rgba(15,15,27,.1);
}

	.realizacje-box > div {
		padding-top: 40px;
		padding-bottom: 30px;
	}

/*
 * Modyfikatory
 */

.alignLeft   {text-align: left}
.alignRight  {text-align: right}
.alignCenter {text-align: center}

.pullLeft {
	float: left;
	margin: .8em .8em .8em 0;
}
.pullRight {
	float: right;
	margin: .8em 0 .8em .8em;
}
	.pullRight:first-child,
	.pullLeft:first-child {
		margin-top: 0;
	}

.pullCenter {
	display: block;
	margin: .8em auto;
}

/* read more link */
.more {
	padding-left: 5px;
	font-weight: bold;
	font-size: .9em;
}

/* price hightlight style */
.price {
	/*font-size: 1.1em;*/
	font-weight: bold;
	color: #f07b00;
}

	.product-price {
		font-weight: bold;
		color: #f07b00;
		font-size: 34px;
		line-height: 0.8em;
	}
/* multiline indent */
.rr {
	display: inline-block;
	vertical-align: top;
}

/* invisible link */
.il {
	text-decoration: inherit;
	color: inherit;
}
	.il:hover {
		text-decoration: underline;
		color: inherit;
	}

.mt0 {
	margin-top: 0;
}
.mb0 {
	margin-bottom: 0;
}

.block {
	display: block;
}
.hide {
	display: none;
}

.ninja {
	position: absolute !important;
	width: 1px;
	height: 1px;
	top: -1px;
	left: -1px;
	text-indent: 1px;
	overflow: hidden;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
}

.relative {
	position: relative;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both
}

.pointer {
	cursor: pointer;
}


/****************************************************************************/



/* Small tablets */
@media only screen and (max-width: 900px) {

	.leftBlock, .rightBlock {
		float: none;
		width: auto;
	}


	.nav a {
	  display: block;
	  padding: 20px 15px;
	}


	.no-tablet {
		display: none;
	}

	.nav {
		float: none;
		width: 100%;
		clear: both;
		margin: 10px;
	}
	.nav > ul {
		text-align: center;
	}
	 .nav > ul > li {
	 	display: inline-block;
	 	float: none;
	 	text-align: left;
	 }


    	body.affix .nav {
    		margin-top: 0;
    	}

.menu-h {
    z-index: 120;
    display: block;
    position: fixed !important;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    width: 40px;
    height: 40px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    top: 51px;
    right: 20px;
    background: rgba(255, 255, 255, 0.75);
    border: 5px solid rgba(255, 255, 255, 0.75) !important;
    background-clip: padding-box;
    border-radius: 3px;
    left: auto;
}

	.affix .menu-h {
		top: 10px;
	}

	.menu-h:focus {
	  outline: none;
	}

	.menu-h span {
	  display: block;
	  position: absolute;
	  top: 14px;
	  left: 0;
	  right: 0;
	  height: 3px;
	  background: #293545;
	}

	.menu-h span::before,
	.menu-h span::after {
	  position: absolute;
	  display: block;
	  left: 0;
	  width: 100%;
	  height: 3px;
	  background-color: #293545;
	  content: "";
	}

	.menu-h span::before {
	  top: -7px;
	}

	.menu-h span::after {
	  bottom: -7px;
	}

	.menu-h {
	  /*background-color: #fff;*/
	}

	.menu-h span {
	  -webkit-transition: background 0s 0.3s;
	          transition: background 0s 0.3s;
	}

	.menu-h span::before,
	.menu-h span::after {
	  -webkit-transition-duration: 0.3s, 0.3s;
	          transition-duration: 0.3s, 0.3s;
	  -webkit-transition-delay: 0.3s, 0s;
	          transition-delay: 0.3s, 0s;
	}

	.menu-h span::before {
	  -webkit-transition-property: top, -webkit-transform;
	          transition-property: top, transform;
	}

	.menu-h span::after {
	  -webkit-transition-property: bottom, -webkit-transform;
	          transition-property: bottom, transform;
	}

	/* active state, i.e. menu open */
	.menu-h.is-active {
	  /*background-color: #cb0032;*/
	}

	.menu-h.is-active span {
	  background: none;
	}

	.menu-h.is-active span::before {
	  top: 0;
	  -webkit-transform: rotate(45deg);
	      -ms-transform: rotate(45deg);
	          transform: rotate(45deg);
	}

	.menu-h.is-active span::after {
	  bottom: 0;
	  -webkit-transform: rotate(-45deg);
	      -ms-transform: rotate(-45deg);
	          transform: rotate(-45deg);
	}

	.menu-h.is-active span::before,
	.menu-h.is-active span::after {
	  -webkit-transition-delay: 0s, 0.3s;
	          transition-delay: 0s, 0.3s;
	}

    .nav {
        clear: both;
        display: block;
        background: #fff;
        box-shadow: 0 0 14px rgba(0, 0, 0, .2);
        position: fixed;
        top: 0;
        right: -300px;
        bottom: 0;
		height: auto;
        margin: 0;
        width: 280px;
        padding-top: 80px;
        z-index: 800;
         -moz-transition: all 1s ease;
        -webkit-transition: all 1s ease;
        transition: all 1s cubic-bezier(0.78, 0.04, 0.25, 1);
    }

    .nav.active {
        right: 0;
    }

    .nav > ul {
      overflow: auto;
      height: 100%;
      float: none !important;
	  display: block;
	  margin: 0;
	  border-bottom: 1px solid #eee;
	  background: #fff;
    }

    .nav li, .nav > ul > li  {
    	background: none;
        display: block;
        float: none;
        margin:0;
        padding: 0;
    }
    .nav a {
        display: block;
        font-size: 14px !important;
        /*color: #333 !important;*/
        padding: 10px 20px !important;
    }

    .nav a:hover, .nav a.active, .nav .dropdown-content a, .nav .dropdown--open > a {
        /*color: #fff !important;*/
    }

    .nav .dropdown-content, .nav .dropdown-content  ul {
        position: static !important;
        width: 100%;
        box-shadow: none;
        margin: 0 !important;
    }

    .nav .dropdown-content  ul {
		margin: 0;
		left: 0;
		top: 0;
		-webkit-column-count: 1;
		    -moz-column-count: 1;
		    column-count: 1;
		    -webkit-column-gap: 0;
		    -moz-column-gap: 0;
		    column-gap: 0;
	}

	.nav .dropdown-content .brake {
	     -webkit-column-break-before: auto; 
	     page-break-before: auto; 
	    break-before: auto;
	     display: block; 
	}

	.nav .dropdown--open > a:before,
	.nav .dropdown--open > a:after {
		display: none;
	}

          .nav .dropdown-content ul {
              margin-left: 20px;
              display: block;
              padding: 0;
          }


            .nav .dropdown-content ul ul {
              margin-left: 15px !important;
          }

          .nav .dropdown-content a {
              font-size: 12px !important;
              padding: 5px !important;
              padding-left: 30px !important;

          }

	.logo {
	    display: block;
	    float: none;
	    margin: 5px 0 10px;
	    width: 120px;
	}

	.h-small {
		font-size: 15px;
		margin: 5px 0;
	}


	.footer .media-image {
	    font-size: 20px;
	    padding-left: 10px;
	    margin-right: 5px;
	}

}


/****************************************************************************/


/* Mobile */
@media only screen and (max-width: 580px) {
	.span {
		width: auto;
		float: none;
		margin-left: 0 !important;
	}

	.productWrapper {
		text-align: center;
	}


		.product {
			display: block;
			width: 100%;
		}
	
	.no-mobile {
		display: none;
	}

	.row-table, 
	.span-cell {
		display: block;
		width: 100%;
	}

	.realizacje-box > div {
	    padding: 10px;
	}

	.offer-box {
		margin-top: 100px;
	}


	.section {
		padding: 10px 0;
	}

	.start-box {
		position: relative;
		width: 100%;
		float: none;
		margin: 10px 0;
	}

	.start-row {
		margin: 0;
	}
		.start-line {
			display: none;
		}

	.umow {
		width: 100%;
	}

	.leftBlock {
	    padding: 3px;
	    padding-top: 72px;
	}

	.section-start-img .container {
		padding-bottom: 60px;
	}

	.addToCart-qty {
		text-align: center;
		padding-bottom: 10px;
	}

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

	.footer-info a {
		float: none;
		display: block;

	}

	.content-small-underphoto {
		padding-top: 0;
	}

	.item--3 {
	    width: 48.5%;
	}
		.item-image {
		    display: block;
		    height: auto;
		    line-height: normal;
		}


}



/****************************************************************************\
|********************************** SHOP ************************************|
\****************************************************************************/


/*
 * Login box
 */

.loginBox {
	margin: 30px auto;
	border: 1px solid #CCC;
	background: #EEE;
	padding: 10px;
	border-radius: 4px;
	max-width: 330px;
}
	.loginBox-header {
		margin-top: 0;
		text-align: center;
	}
	.loginBox .box {
		margin: 6px -11px;
		border-radius: 0;
	}
	.loginBox .formActions {
		background: none;
		padding: 10px 0 0;
		margin: 0;
		border-color: #CCC;
	}


/*
 * Cart Steps
 */

.stepsWrapper {
	overflow: hidden;
	display: table;
	table-layout: fixed;
	width: 100%;
	margin: 10px 0;
	padding: 0;
}
	.step {
		display: table-cell;
		border-bottom: 2px solid #639C24;
		color: #639C24;
		background: none !important;
		list-style: inside;
		padding: 0;
	}
	.step--active {
		border-color: #D8A122;
		color: #D8A122;
	}
	.step--active ~ .step {
		border-color: #EEE;
		color: #ccc;
	}
		.step b {
			font-size: 1.2em;
			display: block;
		}
		.step .hint {
			line-height: 1.1em;
			margin: 5px 44px 5px 0;
		}



/*
 * Shop Cart
 */

.cartWrapper {
	position: relative;
	margin-top: 40px;
	border-top: 1px solid #EEE;
}
.cart-table {
	display: table;
	width: 100%;
}
	.cart-row {
		display: table-row;
	}
	.cart-header {
		display: none;
		position: absolute;
		bottom: 100%;
		margin-bottom: 10px;
		text-align: left;
		color: #888;
	}
	.cart-row:first-child .cart-header {display: block}

	.cart-cell {
		display: table-cell;
		vertical-align: middle;
		text-align: left;
		border-bottom: 1px solid #EEE;
		padding: 10px 0;
	}

	.cart-product {
		width: 60%;
	}
		.cart-product-image {
			width: 70px;
			display: inline-block;
			margin-right: 10px;
			vertical-align: middle;
		}
			.cart-product-image img {
				display: block;
			}

		.cart-product-name {
			display: inline-block;
			vertical-align: middle;
			width: 70%;
		}
			.cart-product-name .box {
				font-size: 12px;
				line-height: 1.1em;
				padding: 4px 6px;
				margin: 0;
			}

		.cart-product-attrs {
			margin: 0;
			overflow: hidden;
			font-size: 0.8em;
			line-height: 1.3em;
		}
			.cart-product-attrs li {
				background: none;
				padding: 0;
				display: inline-block;
				margin-right: 20px;
			}
		.cart-product-delivery {
			max-width: 90%;
		}

	.cart-price {
		color: #888;
	}

	.cart-delete {
		text-align: center;
		width: 5%;
	}

	.cart-x {
		font-size: 20px;
	}

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

	.cart-wrapper {
		margin-top: 0;
	}
	.cart-table {
		border: 0;
	}
		.cart-row {
			display: block;
			text-align: justify;
		}
		.cart-row:after {
			content: "";
			width: 100%;
			display: inline-block;
		}

		.cart-header {
			position: static;
			display: block;
			text-align: center;
			border: none;
			margin: 0 0 5px;
		}

		.cart-cell {
			display: inline-block;
			vertical-align: top;
			border: 0;
		}

		.cart-product {
			width: 100%;
			border-top: 1px solid #EEE;
		}
			.cart-product .cart-header {
				display: none !important;
			}

		.cart-qty,
		.cart-price,
		.cart-delete {
			width: 32%;
			text-align: center;
			padding-top: 10px;
		}

}


/****************************************************************************/


.no-js * {
	-webkit-transition: none !important;
	transition: none !important;
}