/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
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, label, legend,
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;
}

/* HTML5 display-role reset for older browsers */
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;
}

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


/* -------------------------------------------------------------------- */	
/* -------------------------------- BODY ------------------------------ */	
/* -------------------------------------------------------------------- */


	body {
		color:#252525;
		background:#fff;
		font-family: 'Titillium Web', sans-serif;
		font-size: 12px;
		margin: 0;
		padding: 0;
		overflow-x:hidden;
	}

	b { 
		font-weight:bold;
	}
	
	img {
		border: 0px;
	}
		
	a {
		text-decoration: none;
	}
		
	
/* -------------------------------------------------------------------- */	
/* ------------------------------- CLASSES ---------------------------- */	
/* -------------------------------------------------------------------- */


	.section {
		width:100%;  
		margin:0 auto;
		overflow:hidden;
	}

	.left { 
		width:50%;
		float:left;
		text-align:left;
	}

	.right {
		width:50%;
		float:right;
		text-align:right;
	}
		
	.transition {
		transition: all 0.9s ease;
    	-moz-transition: all 0.9s ease;
    	-webkit-transition: all 0.9s ease;
	}
	
	.transition:hover {
		transform: scale(0.96);
	}
	
	.parallax {
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-attachment: fixed;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	
	.parallax-katalog {
  		background-image:url('../img/bg_cat.jpg');
	}
	
	.animate-in {
	  -webkit-transition: all 0.6s ease-in-out 0s;
	  -moz-transition: all 0.6s ease-in-out 0s;
	  transition: all 0.6s ease-in-out 0s;
	  -webkit-transform: translateZ(0);
	  -moz-transform: translateZ(0);
	  transform: translateZ(0);
	}
	
	.animate-in-sync {
	  -webkit-transition: all 0.6s ease-in-out 0s;
	  -moz-transition: all 0.6s ease-in-out 0s;
	  transition: all 0.6s ease-in-out 0s;
	  -webkit-transform: translateZ(0);
	  -moz-transform: translateZ(0);
	  transform: translateZ(0);
	}
	
	.animate-in {
	  -webkit-transition: all 0.7s ease-in-out 0s;
	  -moz-transition: all 0.7s ease-in-out 0s;
	  transition: all 0.7s ease-in-out 0s;
	  -webkit-transform: translateZ(0);
	  -moz-transform: translateZ(0);
	  transform: translateZ(0);
	}
	
	.pre-animate {
	  opacity: 0;
	  -webkit-transform: translateX(25px);
	  -moz-transform: translateX(25px);
	  transform: translateX(25px);
	}
	
	.pre-animate-sync {
	   opacity: 0;
	  -webkit-transform: scale(0.8);
	  -moz-transform: scale(0.8);
	  transform: scale(0.8);
	}

	::-webkit-scrollbar {
	  width: 13px;
	  height: 2px;
	}
	
	::-webkit-scrollbar-button {
	  width: 0px;
	  height: 0px;
	}
	
	::-webkit-scrollbar-thumb {
	  background: #e71010;
	  border: 0px none #ffffff;
	
	}
	
	::-webkit-scrollbar-thumb:hover {
	  background: #e71010;
	}
	
	::-webkit-scrollbar-thumb:active {
	  background: #e71010;
	}
	
	::-webkit-scrollbar-track {
	  background: #666666;
	  border: 0px none #ffffff;
	
	}
	
	::-webkit-scrollbar-track:hover {
	  background: #666666;
	}
	
	::-webkit-scrollbar-track:active {
	  background: #666666;
	}
	
	::-webkit-scrollbar-corner {
	  background: transparent;
	}
	
	.sitepreloader {
		background: #ffffff;
		width: 100%;
		height: 100%;
		position: absolute;
		text-align: center;
		z-index: 5000000;
		position: fixed;
	}
	
	.sitepreloader #outer {
		height: 100%;
		width: 100%;
		display: table;
		vertical-align: middle;
	}
	
	.sitepreloader #container {
		text-align: center;
		position: relative;
		vertical-align: middle;
		display: table-cell;
		height: 400px;
	}
	
	.sitepreloader #inner {
		width: 300px;
		height: 400px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

/* -------------------------------------------------------------------- */	
/* ------------------------------ NAGLOWKI ---------------------------- */	
/* -------------------------------------------------------------------- */	

		
	h3 {
		text-transform:uppercase;
	}
	
	
/* -------------------------------------------------------------------- */	
/* ------------------------------- COLORS ----------------------------- */	
/* -------------------------------------------------------------------- */	


	.blue {
		color:#132f6a;
	}
	
	.bg_blue {
		background-color:#132f6a;
	}
	
	.orange {
		color:#ff5639;	
	}
	
	.bg_orange {
		background-color:#ff5639;
	}
	
	.green {
		color:#61b830;
	}
	
	.bg_green {
		background-color:#61b830;
	}	
	
	.red {
		color:#ea212d;
	}
	
	.bg_red {
		background-color:#ea212d;
	}
	
	.violet {
		color:#b475d5;
	}
	
	.bg_violet {
		background-color:#b475d5;
	}		
	
	.dark_violet {
		color:#382872;
	}
	
	.bg_dark_violet {
		background-color:#382872;
	}	
	
/* -------------------------------------------------------------------- */	
/* --------------------------------- TOP ------------------------------ */	
/* -------------------------------------------------------------------- */		


	#wrapper_top {
		margin: 0px auto;
		width:100%;
		height:40px;
		background: #1c191d;
	}
		
	#top {
		position:relative;
		width:1100px;
		margin:0 auto;
		z-index:9999;
	}	
	
	#top a {
		color:#fff;
		font-size:13px;
	}
			
	#hornav .line{
		float:right;
	}	
		
	#hornav {
		width:450px;
		height:34px;
		float:right;
		color:#737373;
	}
		
	#hornav form {
		width:70%;
		float:left;
	}
		
	#hornav ul { 
		margin-left:50px;
		padding-left:10px;
		padding-top:12px;
		float:left;
	} 
	
	#hornav ul li { 
		padding-left:10px;
		float:right;
	} 
				
	#hornav li a:link, #hornav li a:visited{
		font-size:12px;
		margin-top:6px;
		color:#fff;
		text-decoration:none;
		transition: all 0.9s ease;
		-moz-transition: all 0.9s ease;
		-webkit-transition: all 0.9s ease;
	}
		
	#hornav li a:hover, #hornav a:active{
		font-size:12px;
		color:#737373;
		margin-top:3px;
	}
		
	#hornav .icon{
		padding-right:10px;
		vertical-align:middle;
	}	
		
	#hornav .elementy{
		margin-top:10px;
	}	
	
	#telefony {
		float:left;
		padding-top:10px;	
	}
	
	#telefony p {
		padding-right:13px;
		font-size:13px;
		margin-top:2px;
		color:#fff;
		float:left;
	}

	
/* -------------------------------------------------------------------- */	
/* ------------------------------- HORNAV ----------------------------- */	
/* -------------------------------------------------------------------- */		


	#wrapper_header{
		margin: 0px auto;
		width:100%;
		height:160px;
		background: #fff;
	}
		
	#header {
		position:relative;
		width:1100px;
		margin:0 auto;
		z-index:9999;
	}		
		
	#fast_tel {
		padding-left:120px;
		float:right;
		width:300px;
		text-align:right;
		padding-top:40px;
		height:50px;
	}
	
	#fast_tel .icon {
		vertical-align:middle;
		padding-right:8px;
	}
	
	#fast_tel a {		
		color:#d12424;	
		font-weight:700; 
		font-size:17px;
		text-transform:uppercase;
		float:left;
		padding-top:25px;
		padding-left:30px;
	}
	
	#fast_tel p {		
		color:#19377d;	 
		font-size:13px;
		font-weight:bold;
		padding-bottom:7px;
	}

/* -------------------------------------------------------------------- */	
/* ------------------------ FORMULARZ KONTAKOWY ----------------------- */	
/* -------------------------------------------------------------------- */	
	
	
	.form{
		float:left;
		width:50%;
		height:60px;
		z-index:999;
		position:absolute;
		padding-top:50px;
		box-sizing:border-box;
	}

	.form a {
		padding-top:50px;
		font-size:14px;
		font-weight:900;
		color:#132f6a;
		text-transform:uppercase;
	}
	
	.form .icon {
		vertical-align:middle;
		padding-left:8px;
	}

/* -------------------------------------------------------------------- */	
/* -------------------------------- LOGO ------------------------------ */	
/* -------------------------------------------------------------------- */	
	
	
	.logo{
		float:left;
		z-index:999;
	}
		
	.logo_mobi {
		display:none;
	}
			
	
/* -------------------------------------------------------------------- */	
/* -------------------------------- MENU ------------------------------ */	
/* -------------------------------------------------------------------- */	


	#wrapper_navigation{
		margin: 0px auto;
		width:100%;
		height:67px;
		background:#000;
	}
		
	#navigation {
		width:1100px;
		margin:0 auto;
		z-index:999999;
	}				
	
	#menu ul {
		padding-left:15px;
		height: 64px;
		padding: 0px;
		z-index: 999999;
		float:left;
	}
		
	#menu li {
		float:left;
		list-style: none;
		text-align:left;
		z-index:99999999;
		padding-top:25px;
		padding-left:27px;
		padding-right:27px;
		padding-bottom:26px;
		margin:0;
		transition: all 0.9s ease;
		-moz-transition: all 0.9s ease;
		-webkit-transition: all 0.9s ease;
	}
	
	#menu li a{
		font-size:16px;
		text-align:left;
		color:#fff;
		font-weight:600;
		transition: all 0.9s ease;
		-moz-transition: all 0.9s ease;
		-webkit-transition: all 0.9s ease;
	}
	
	#menu li p{
		font-size:16px;
		text-align:left;
		color:#fff;
		font-weight:600;
		transition: all 0.9s ease;
		-moz-transition: all 0.9s ease;
		-webkit-transition: all 0.9s ease;
	}
	
	#menu li:hover {
		border-bottom:#0d2660;
	}
	
	.icon_shop {
		vertical-align:middle;
	}

	.slicknav_menu {
		display:none;
	}	
	
	
/* -------------------------------------------------------------------- */	
/* ------------------------------ SUB MENU ---------------------------- */	
/* -------------------------------------------------------------------- */	
	
	
	#menu .bg_submenu {
		position:absolute;
		list-style:none;
		display:none;
		z-index:99999999;
		margin-top:25px;
		height:auto;
		background: url('../img/bg_sub.png') no-repeat !important;
		width:712px !important;
		height:254px !important;
		left:220px !important;
	}
	
	#menu .bg_sub {
		position:absolute;
		list-style:none;
		display:none;
		z-index:99999999;
		margin-top:25px;
		padding-bottom:5px;
		padding-top:5px;
		height:auto;
		background:#fff;
		width:212px !important;
		height:auto;
		-webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.75);
		-moz-box-shadow:    0px 2px 10px 0px rgba(0, 0, 0, 0.75);
		box-shadow:         0px 2px 10px 0px rgba(0, 0, 0, 0.75);
	}
	
	.row1 {
		float:left; 
		width:30%; 
		padding-left:30px; 
		padding-top:30px; 
		box-sizing:border-box;
	}
	
	.row2 {
		float:left;
		width:30%;
		padding-left:20px;
		padding-top:30px;
	}
	
	.row3 {
		float:left;
		width:30%;
		padding-left:40px;
		padding-top:30px;
	}
		
	#menu li ul li {
		width:100%;
		float:left;
		list-style: none;
		text-align:left;
		z-index:99999999;
		padding-top:15px;
		padding-bottom:15px;
		padding-right:0px;
		padding-left:0px;
		margin:0;
	}
	
	#menu li ul p{
		margin-bottom:10px;
		padding-left:10px;
		font-size:14px;
		text-align:left;
		color:#153370 !important;
		font-weight:600;
		transition: all 0.9s ease;
		-moz-transition: all 0.9s ease;
		-webkit-transition: all 0.9s ease;
		text-transform:uppercase;
	}
	
	#menu li ul hr {
		margin-left:10px;
		width: 100px;
		background: #D12424;
		height: 3px;
		margin-bottom:15px;
		border: none;
	}
		
	#menu li ul li a{
		font-weight:600;
		font-size:13px;
		text-align:left;
		padding-left:10px;
		color:#1f1f1f !important;
		transition: all 0.9s ease;
		-moz-transition: all 0.9s ease;
		-webkit-transition: all 0.9s ease;
	}

	#menu li ul li:hover {
		background: none;
		padding-left:15px;
	}


/* -------------------------------------------------------------------- */	
/* ------------------------------- SLIDER ----------------------------- */	
/* -------------------------------------------------------------------- */	
	
	
	#flash {
		overflow: hidden;
		text-align:center;
		z-index:999;
		height:561px;
		width:2000px;
	}
	
	#flash_pd {
		overflow: hidden;
		text-align:center;
		z-index:999;
		height:161px;
		width:2000px;
		background: url(../img/slider/bg_sub.jpg) no-repeat;
	}
		
	#flash_pd h1 {
		width:100%;
		float:left;
		text-align:left; 
		font-size:35px;
		color:#000;
		margin-top:40px;
		font-weight:bold;
		padding-bottom:15px;
		margin-bottom:10px;
		border-bottom:none;
		text-transform:uppercase;
	}	
	
	#flash_pd hr {
		margin-left:1px;
		text-align:left;
		border: none;
		background: #df1700;
		height: 5px;
		width: 15%;
		margin-bottom: 50px;
		clear:both;
	}
	
	#slider_pd {
		width:1100px;
		text-align:left;
		margin:0 auto;
		clear:both;
		z-index:999;
	}	
		
	#slider {
		overflow: hidden;
		margin:0 auto;
	}
	
	.txt_slider {
		position:absolute; 
		text-align:center; 
		margin:0 auto;
		margin-top:120px;
		width:100%;
		z-index:99999;
		left:7%;
	}
	
	.txt_slider_pd {
		position:absolute; 
		text-align:center; 
		margin:0 auto;
		margin-top:40px;
		width:100%;
		z-index:99999;
		left:10%;
	}
	
	.txt_slider h2,
	.txt_slider_pd h2 {
		font-size:27px;	
		color:#fff;
		font-weight:normal;
		text-align:left;
		margin-bottom:10px;
		text-shadow: 1px 1px 10px rgba(0, 0, 0, 1);
	}
	
	.txt_slider h3,
	.txt_slider_pd h3 {
		font-size:48px;	
		color:#fff;
		font-weight:bold;
		text-align:left;
		margin-bottom:20px;
		text-shadow: 1px 1px 10px rgba(0, 0, 0, 1);
	}
	
	.txt_slider hr,
	.txt_slider_pd hr {
		left:0px;
		border:none;
		background: #e71010;
		height:5px;
		width:10%;
		margin-bottom:25px;
		margin-left:0px;
		clear:both;
	}
	
	.txt_slider p,
	.txt_slider_pd p {
		font-size:15px;	
		color:#fff;
		font-weight:normal;
		text-align:left;
		margin-top:10px;
		margin-bottom:30px;
		text-shadow: 1px 1px 10px rgba(0, 0, 0, 1);
	}
	
	.txt_slider a,
	.txt_slider_pd a {
		font-size:15px;	
		color:#fff;
		font-weight:bold;
		text-align:left;
		text-transform:uppercase;
		padding-top:15px;
		padding-bottom:15px;
		padding-right:45px;
		padding-left:45px;
		margin-right:12px;
		margin-left:12px;
	}


/* -------------------------------------------------------------------- */	
/* -------------------------------- MYJNIE ---------------------------- */	
/* -------------------------------------------------------------------- */	
		
		
	#wrapper_prace {
		width:100%;
		z-index:99999999;
		height:230px;
		margin-top:-90px;
		position:relative;
	}
	
	#wrapper_prace_pd {
		width:100%;
		z-index:999999;
		position:relative;
	}		
		
	#prace {
		width:1130px;
		text-align:center;
		margin:0 auto;
		clear:both;
		z-index:999;
		margin-bottom:3px;
	}
	
	#prace h2 {
		font-weight:400;
		position:relative;
		font-size:26px;
		color:#fff;
		text-transform:uppercase;
		bottom: 0px;
		margin-top:60px;
		padding-bottom:35px;
		line-height:35px;
	}
	
	#prace p {
		font-weight:400;
		position:relative;
		font-size:26px;
		color:#fff;
		text-transform:uppercase;
		bottom: 0px;
		margin-top:60px;
		padding-bottom:35px;
		line-height:35px;
	}

	#prace .space {
		padding-right:20px;
	}
	
	#prace .more {
		margin-top:150px;
		width:150px;
		height:50px;
		filter:none; /* Firefox 10+, Firefox on Android */
		-moz-filter:none; 
		-ms-filter:none; 
		-o-filter:none; 
		-webkit-filter: none; 
	}
	
	#prace a {
		top:180px;
		position:relative;
		margin-top:150px;
		color:#fff;
		font-weight:600;
		text-transform:uppercase;
		font-size:16px;
	}
	
	#prace .ziemne {
		float:left;
		background: url('../img/box_ziemne.jpg') no-repeat;
		margin-left:13px;
		width:268px;
		height:213px;
	}

	#prace .budowlane {
		float:left;
		background: url('../img/box_budowlane.jpg') no-repeat;
		margin-left:13px;
		width:268px;
		height:213px;
	}
	
	#prace .transportowe {
		float:left;
		background: url('../img/box_transportowe.jpg') no-repeat;
		margin-left:13px;
		width:268px;
		height:213px;
	}
	
	#prace .kostka {
		float:left;
		background: url('../img/box_kostka.jpg') no-repeat;
		margin-left:13px;
		width:268px;
		height:213px;
	}
		
	#myjnie .modulowe:hover {
		
	}
	
	#myjnie .kontenerowe:hover {
		
	}
	
	#myjnie .tir:hover {
      	
    }


/* -------------------------------------------------------------------- */	
/* --------------------------- FAST FORMULARZ ------------------------- */	
/* -------------------------------------------------------------------- */	
		
		
	#wrapper_formularz {
		background: #000;
		width:100%;
		height:200px;
	}
	
	#formularz {
		width:1100px;
		height:200px;
		margin-bottom:20px;
		margin:0 auto;
		text-align:center;
	}	
		
	#formularz h2 {
		color:#f2f2f2;
		font-size:30px;
		font-weight:700; 
		padding-top:45px;
	}
	
	#formularz .tytul1 {
		color:#f2f2f2;
		font-size:30px;
		font-weight:700; 
		padding-top:45px;
		padding-bottom: 2px;
	}
	
	#formularz h3 {
		color:#f2f2f2;
		font-size:21px;
		font-weight:600; 
		padding-top:30px;
	}
	
	#formularz .tytul2 {
		color:#f2f2f2;
		font-size:21px;
		font-weight:600; 
		padding-top:30px;
		text-transform:uppercase;
	}
	
	#formularz p {
		color:#f2f2f2;
		font-size:14px;
		font-weight:regular; 
		padding-top:5px;
		padding-bottom:10px;
	}
		
	form#formularz1 {
		width: 98%;
		margin: 10px auto;
		text-align: center;
	}
		
	form#formularz1 .input {
		width: 24%;
		height: 49px;
		outline: none;
		display: inline;
		float:left;
		border:0;
		font-size:13px;
		color:#8d8d8d;
		text-transform:uppercase;
		text-align:center;
		background:#ffffff;
		margin-right:10px;
		margin-top:10px;
	}
	
	form#formularz1 .input_nr {
		width: 25px;
		text-align: center;
		margin: 0px;
	}
	
	form#formularz1 input[type="submit"] {
		background: #e71010;
		-moz-transition: all 0.9s ease;
		-webkit-transition: all 0.9s ease;
		transition: all 0.9s ease;
		width: 24%;
		height: 50px;
		margin: 11px auto;
		line-height: 40px;
		outline: none;
		border:0;
		float:left;
		color: #fff;
		font-weight:bold;
		text-transform:uppercase;
	}
		
	form#formularz1 input[type="submit"]:hover {
		transform: scale(0.95);
		border:none;
		outline: none;
		cursor: pointer;
	} 

	
/* -------------------------------------------------------------------- */	
/* ------------------------- ZAMÓWIENIE FORMULARZ --------------------- */	
/* -------------------------------------------------------------------- */	
		

	#userForm7 input[type="text"] {
		float:right;
		padding-left:10px;
		padding-right:15px;
		height:20px;
		border:1px solid #CCC;
		width:110px;
		background: #fff;;
		-webkit-box-shadow: inset 2px 2px 5px 0px #f6f6f6;
		box-shadow: inset 2px 2px 5px 0px #f6f6f6;
		color:#888888;
		font-size:11px;
		outline:none;
		resize:none;
		-webkit-border-top-left-radius: 3px;
		-webkit-border-bottom-left-radius: 3px;
		-moz-border-radius-topleft: 3px;
		-moz-border-radius-bottomleft: 3px;
		border-top-left-radius: 3px;
		border-bottom-left-radius: 3px;
	}
	
	#userForm7 input[type="file"] {
		float:right;
		padding:5px 10px;
		margin-bottom:10px;
		border:1px solid #3BAA35;
		-webkit-border-radius:2px;
		-moz-border-radius:2px;
	
		color:#777;
		font-size:12px;
		outline:none;
		resize:none;
	}
	
	#userForm7 textarea {
		float:right;
		padding:5px 10px;
		margin-bottom:10px;
		border:1px solid #ccc;
		-webkit-border-radius:2px;
		margin-top:6px;
		-moz-border-radius:2px;
		border-radius:2px;
		width:160px;
		color:#777;
		font-size:12px;
		outline:none;
		resize:none;
	}
	
	#userForm7 input[type="submit"] {
		font-size:11px;
		height:24px;
		width:60px;
		color:#fff;
		background:#3BAA35;
		border:none;
		cursor: pointer;
	}
			
	#form_dane {	
		padding-right:30px;
	}
		
	#form_dane h3 {
		font-size:13px;
		text-transform:uppercase; 
		margin-bottom:10px;
		text-align:left !important;
	}
		
	#form_dane input[type="text"] {
		width:100%; 
		float:left; 
		height:27px; 
		margin-bottom:15px; 
		margin-top:5px;
	}
		
	#form_dane #box_left {
		display:inline-block;
		width:45%; 
	}
	
	#form_dane #box_right {
		display:inline-block; 
		float:right; 
		width:45%; 
		padding-top:22px;
	}
	
	.box_tytul {
		margin-bottom:10px; 
		font-size:13px;
	}
	
	#form_produkt {
		padding-right:23px;
		margin-top:10px;
	}
	
	#form_produkt h3 {
		font-size:13px; 
		text-transform:uppercase;
		text-align:left !important;
	}
	
	#form_produkt #box_left {
		display:inline-block; 
		width:100%; 
		padding-top:20px;
	}
	
	#form_produkt #box_right {
		display:inline-block;
		float:right; 
		width:45%; 
		padding-top:20px;
	}
	
	#form_produkt .box_tytul {
		font-size:13px;
	}
	
	#form_produkt input[type="text"] {
		width:100%;
		float:left; 
		height:27px; 
		margin-top:5px; 
		margin-bottom:15px; 
		font-size:14px; 
		text-transform:uppercase; 
		color:#3BAA35; 
		font-weight:bold;
	}
	
	#form_produkt select {
		width:100%; 
		float:left; 
		height:27px; 
		margin-bottom:15px; 
		font-size:13px; 
		color:#999; 
		font-weight:bold; 
		margin-top:5px;
	}
	
	#form_wysylka {
		padding-right:0px; 
		margin-top:10px;
	}
	
	#form_wysylka #box_left {
		display:inline-block; 
		width:46%;
	}
	
	#form_wysylka #box_right {
		display:inline-block; 
		float:right;
		width:46%;
	}
	
	#form_wysylka .box_tytul{
		padding-bottom:10px; 
		font-size:13px;
	}
	
	#form_wysylka input[type="text"] {
		width:95%;
		float:left;
		height:27px; 
		margin-bottom:15px;
		margin-top:5px;
	}
	
	#form_wysylka select {
		width:100%; 
		float:left; 
		height:27px; 
		margin-bottom:15px; 
		font-size:13px; 
		color:#999; 
		font-weight:bold; 
		margin-top:5px;
	}
	
	#form_dodatkowe {
		padding-right:23px;
		margin-top:10px;
	}
	
	#form_dodatkowe h3 {
		font-size:13px; 
		text-transform:uppercase;
		text-align:left !important;
	}
	
	#form_dodatkowe #dodatkowe_info {
		display:inline-block; 
		width:100%; 
		padding-top:10px;
	}
	
	#form_dodatkowe textarea {
		width:100%; 
		float:left; 
		height:70px;
	}
	
	#form_submit {
		height:70px;
	}
	
	#form_submit #box_left {
		display:inline-block;
		width:50%;
	}
	
	#form_submit #box_right {
		display:inline-block; 
		float:right;
		width:50%; 
	}
	
	#form_submit input[type="submit"] {
		width:190px; 
		height:40px;
		background:#e71010;
		font-weight:bold;
		text-transform:uppercase;
	}


/* -------------------------------------------------------------------- */	
/* ------------------------------ BOX SLIDER -------------------------- */	
/* -------------------------------------------------------------------- */	
		
		
	#wrapper_box {
		width:100%;
		height:200px;
		margin-bottom:20px;
		margin-top:-60px;
		background:#f6f5f5;
	}
	
	#wrapper_box_pd {
		width:100%;
		height:200px;
		margin-bottom:20px;
		background:#f6f5f5;
	}	
		
	#box_container {
		position:relative;
		width:1100px;
		text-align:left;
		margin:0 auto;
		clear:both;
		z-index:999;
	}
	
	
/* -------------------------------------------------------------------- */	
/* ------------------------------ NAVI PATH ----------------------------- */	
/* -------------------------------------------------------------------- */


	#wrapper_navi{
		background:#fafafa;
		margin: 0px auto;
		display:inline-block;
		width:100%;
		height:45px;
		padding-bottom:10px;
	}
		
	#navi {
		width:1100px;
		margin:0 auto;
		z-index:999999;
	}	
	
	#navi img {
		padding-left:10px;
	}	
	
	#navi p{
		font-size:14px;
	}

	#mini_help {
		float:right;
		padding-top:20px;
		padding-right:10px;	 
	}
	
	#mini_help img {
		padding-left:10px;
	}
	
	#path {
		float:left;
		font-size:14px;
		padding-top:20px;
		padding-right:10px;	
	}
	
	#path a {
		color:#7c7c7c;
	}
	
	#path b {
		color:#7c7c7c;
		font-weight:bold;
	}
	
/* -------------------------------------------------------------------- */	
/* ---------------------------- STRONA GŁÓWNA ------------------------- */	
/* -------------------------------------------------------------------- */	


	#wrapper_main{
		width:100%;
		min-height:681px;
		background: url('../img/bg_content.jpg') bottom repeat-x;
		display:inline-block;
	}
		
	#main {
		width:1100px;
		height:inherit;
		text-align:left;
		margin:0 auto;
		clear:both;
		padding-top:10px;
		z-index:999999;
	}	
		
	#main h1 {
		width:100%;
		float:left;
		text-align:left; 
		font-size:21px;
		color:#e61800;
		margin-top:35px;
		padding-bottom:15px;
		margin-bottom:10px;
		border-bottom:none;
		text-transform:uppercase;
	}	
	
	#main hr {
		margin-left:1px;
		text-align:left;
		border: none;
		background: #df1700;
		height: 3px;
		width: 20%;
		margin-bottom: 50px;
		clear:both;
	}
		
	#main p {
		color:#848484;
		padding-right:12px;
		font-size: 14px;
		line-height: 25px;
		text-align:justify;
	}
	
	#main .o_firmie	{
		float:left; 
		width:50%;
	}
	
	#main .o_firmie p {
		color:#dddddd;
	}
	
	#main .park_maszynowy {
		float:left; 
		width:48%; 
		margin-left:22px; 
		background: url('../img/bg_maszyny.jpg') bottom no-repeat; 
		height:688px;
		box-sizing:border-box; 
		padding-left:30px;
	}

	#main .park_maszynowy a {
		float:right;
		background:#080808;
		font-size:14px;
		color:#fff !important;
		padding:10px 35px;
		font-weight:600;
		margin-top:-40px; 
		margin-right:20px;
	}
	
	#main .park_maszynowy .tyt1 {
		color:#f4f4f4; 
		margin-top:560px; 
		font-size:20px; 
		font-weight:600; 
		padding-bottom:25px;
	}
	
	#main .park_maszynowy .tyt2 {
	 	color:#f4f4f4; 
		font-size:13px; 
		font-weight:300;
	}
	
	
/* -------------------------------------------------------------------- */	
/* ------------------------------- CONTENT ---------------------------- */	
/* -------------------------------------------------------------------- */	


	#wrapper_content{
		width:100%;
		display:inline-block;
	}
		
	#content {
		width:1100px;
		height:inherit;
		text-align:left;
		margin:0 auto;
		clear:both;
		padding-top:10px;
		z-index:999999;
	}	
		
	#content h1 {
		width:100%;
		float:left;
		text-align:left; 
		font-size:21px;
		color:#e61800;
		margin-top:35px;
		padding-bottom:15px;
		margin-bottom:10px;
		border-bottom:none;
		text-transform:uppercase;
	}	
	
	#content hr {
		margin-left:1px;
		text-align:left;
		border: none;
		background: #df1700;
		height: 3px;
		width: 20%;
		margin-bottom: 50px;
		clear:both;
	}
	
	#content h2 {
		width:100%;
		padding-top:20px;
		padding-bottom:20px;
		float:center;
		text-align:left; 
		font-size:20px;
		color:#e71010;
		margin-bottom:20px;
		border-bottom:1px solid #ccc;
		text-transform:uppercase;
	}
	
	#content h3 {
		padding-top:10px;
		padding-bottom:10px;
		text-align:center; 
		font-size:17px;
		color:#333;
		font-weight:bold;
		text-transform:uppercase;
	}
						
	#content .sciezka {
		float:left;
		width:900px;
		padding-top:0px;
		text-align:left; 
		font-size:12px;
		text-shadow: 1px 1px 2px rgba(255, 255, 255, 1);
	}		
	
	#content .more {
		vertical-align:middle;
		padding-left:5px;
		cursor: pointer;
	}
		
	#content p {
		color:#848484;
		padding-right:12px;
		font-size: 14px;
		line-height: 25px;
		text-align:justify;
	}
	
	#content a {
		color:#000;
		padding-right:12px;
		font-size: 14px;
		font-weight:bold;
		line-height: 22px;
	}	
		
	#content a:link, #content a:visted {
		color:#1d2f8c !important;}		
		
	#content .dystrybutor {
		float:right;
	}
		
	#uslugi {
		margin-top:25px
	}
	
	#uslugi .bannery {
		float:left;	
		padding-right:18px;
		padding-bottom:25px;
		transition: all 0.9s ease;
		-moz-transition: all 0.9s ease;
		-webkit-transition: all 0.9s ease;
	}
	
	#uslugi .bannery1 {
		position:relative;
		float:right;	
		padding-right:18px;
		padding-bottom:25px;
		transition: all 0.9s ease;
		-moz-transition: all 0.9s ease;
		-webkit-transition: all 0.9s ease;
	}
	
	#uslugi .bannery:hover,
	#uslugi .bannery1:hover {
		transform: scale(0.95);
	}
	

/* -------------------------------------------------------------------- */	
/* ------------------------- PODSTRONA KONTAKT ------------------------ */	
/* -------------------------------------------------------------------- */	
	
	
	.kontakt_main {
		text-align:left; 
		margin-bottom:5px; 
		height:120px;
	}
	
	.kontakt_main .box_kontakt1 {
		width:32%; 
		float:left;
	}
	
	.kontakt_main .box_kontakt2 {
		width:32%; 
		float:left;
	}
	
	.kontakt_main .box_kontakt3 {
		width:35%; 
		float:left;
	}
	
	.sklep_main {
		text-align:left; 
		margin-bottom:5px; 
		height:50px;
	}
	
	.kontakt_sub {
		text-align:left;
	}
	
	.kontakt_sub .box_kontakt {
		 width:19%; 
		 padding-right:10px; 
		 float:left;
	}
	
	.kontakt_sub .box_kontakt a {
		font-size: 12px !important;
	}
	
	.kontakt_mapy {
		text-align:left; 
		margin-bottom:5px; 
		height:70px;
	}
	
	.kontakt_mapy .box_kontakt2 {
		width:32%; 
		float:left;
	}

	.kontakt_left {
		width:48%;
		float:left;
		margin-right:20px;
		margin-bottom:20px;
	}

	.map_siedziba {
		width: 100%;
		margin-top:25px;
		margin-left:30px;
		height: 425px;
		cursor: pointer;
	}
	
/* -------------------------------------------------------------------- */	
/* ------------------------------ KATALOG ----------------------------- */	
/* -------------------------------------------------------------------- */


	.katalog {
		margin:0 auto;
		height:363px;
		text-align:center;
		width:1100px;
	}
		
	.katalog h2 {
		width:100%;
		margin-top:25px;
		padding-bottom:10px;
		text-align:center; 
		font-size:20px;
		color:#080808;
		font-weight:bold;
		margin-bottom:5px;
		text-transform:uppercase;
	}		
		
	.katalog h3 {
		font-size:16px;
		font-weight:600;
		color:#080808;
		text-transform:uppercase;
		text-shadow: 0px 2px 25px rgba(255, 255, 255, 0.63);
		padding:30px 0 25px 0;
	}
	
	.katalog p {
		color:#474747;
		font-size:13px;
		font-weight:300;
		line-height:25px;
	}
	
	.katalog .btn {
		text-align:center;
		margin:0 auto;
		background:#29166f;
		width:250px;
		height:50px;
		margin-top:40px;
		cursor: pointer;
	}
	
	.katalog hr {
		margin:0 auto;
		text-align:center;
		border: none;
		background: #df1700;
		height: 3px;
		width: 40%;
		margin-bottom: 10px;
		clear:both;
	}
	
	.katalog .btn a {
		color:#fff;
		line-height:50px;
		font-size:18px;
		font-weight:bold;
		text-transform:uppercase;
	}

	.box_ikony {
		width:270px;
		float:left;
		text-align:center;
	}
		
	.box_ikony img {
		clear:both;
	}

/* -------------------------------------------------------------------- */	
/* -------------------------------- INFO ------------------------------ */	
/* -------------------------------------------------------------------- */

	
	#wrapper_info {	
		margin-bottom:40px;
		display:inline-block;
		height:100px;
		width:100%;
	}
	
	#wrapper_info_pd {	
		width:100%;
	}
	
	#info {
		margin: 0px auto;
		width:1120px;
	}
	
	#info h2 {
		width:100%;
		padding-top:30px;
		padding-bottom:10px;
		text-align:center; 
		font-size:20px;
		color:#080808;
		font-weight:bold;
		margin-bottom:5px;
		text-transform:uppercase;
	}	
	
	#info hr {
		margin:0 auto;
		border: none;
		background: #e61800;
		height: 4px;
		width: 12%;
		margin-bottom: 20px;
		clear:both;
	}
	
	#info a {
		font-size:17px !important;
		line-height:25px;
		text-transform:uppercase;
		color:#ffffff;
	}
	
	#info p {
		text-align:center;
		color: #211e22;
		font-size: 14px;
		font-weight: 400;
	}
	
	#info .big {
		font-size:28px;
		font-weight:bold;
	}
	
	#info .mid {
		font-size:28px;
	}
	
	#info .icon_play {
		float:right; 
		vertical-align:middle; 
		margin-top:-38px;
		margin-right:25px;
	}
		
	.title_box {
		margin-top:176px;
		margin-left:15px;
		width:351px;
		bottom:0;
		padding:10px;
		box-sizing:border-box;
	}
	
	.title_box1 {
		margin-top:176px;
		margin-left:15px;
		width:351px;
		padding:10px;
		box-sizing:border-box;
	}
	
	.title_box2 {
		margin-top:176px;
		margin-left:15px;
		width:351px;
		padding:10px;
		box-sizing:border-box;
	}
	
	.sklep {
		float:left;
		background: url('../img/box_sklep.jpg') no-repeat;
		height:231px;
		width:351px;
		box-sizing:border-box;
		position:relative;
	}
	
	.galeria {
		float:left;
		background: url('../img/box_galeria.jpg') no-repeat;
		height:231px;
		width:326px;
		box-sizing:border-box;
		position:relative;
	}
	
	.filmy {
		float:left;
		background: url('../img/box_filmy.jpg') no-repeat;
		height:231px;
		width:418px;
		box-sizing:border-box;
		position:relative;
	}


/* -------------------------------------------------------------------- */	
/* ---------------------------- AKTUALNOSCI --------------------------- */	
/* -------------------------------------------------------------------- */


	.aktualnosci {
		margin:0 auto;
		width:1100px;
		margin-bottom:40px;
	}
	
	.aktualnosci img {
		vertical-align:middle;
	}

	.aktualnosci h2 {
		width:100%;
		padding-bottom:10px;
		text-align:center; 
		font-size:20px;
		color:#080808;
		font-weight:bold;
		margin-bottom:5px;
		text-transform:uppercase;
	}	
	
	.aktualnosci hr {
		margin:0 auto;
		border: none;
		background: #e71010;
		height: 4px;
		width: 12%;
		margin-bottom: 20px;
		clear:both;
	}
	
	.news_box {
		width:100%;
		height:100px;
		margin-top:20px;
		margin-bottom:20px;
	}
	
	.news_box .data {
		background:#e71010;
		margin-right:3%;
		float:left;
		padding:15px 20px 15px 20px;
		box-sizing:border-box;
	}
	
	.news_box .data p{
		color:#fff;
		font-size:23px;
		font-weight:bold;
	}
	
	.news_box h3{
		color:#211e22;
		font-size:16px;
		font-weight:600;
	}
	
	.news_box p{
		color:#211e22;
		font-size:14px;
		font-weight:400;
	}
	
	.news_box .zawartosc {
		float:left;
		width:88%;
		padding-top:10px;
	}
	
	.news_box .zawartosc a{
		padding-top:10px;
		float:right;
		color:#211e22;
		font-size:14px;
		font-weight:600;
	}
	
	.news_box .img_news {
		position:relative;
		margin-left:30px;
		background:#ccc;
		float:right;
		width:385px;
		height:110px;
	}
	
	.news_box .city {
		position:absolute;
		bottom:0px;
		right:10px;
		width:40%;
		background:#153270;
		padding: 20px 15px 20px 15px;
	}
	
	.city p {
		color:#fff;
		font-size:15px;
		text-transform:uppercase;
	}
	
	.city b {
		font-size:18px;
	}

/* -------------------------------------------------------------------- */	
/* ------------------------------ TELFONY ----------------------------- */	
/* -------------------------------------------------------------------- */

	
	#wrapper_telefon {
		display:inline-block;
		background: url('../img/bg_telefon.jpg') repeat-x;
		height:112px;
		width:100%;
	}
	
	.telefon {
		width:1100px;
		margin:0 auto;
		height:113px;
		text-align:left;
		padding-top:40px;
	}
	
	.telefon p {
		color:#ffffff;
		vertical-align:middle;
		font-size:15px;
		font-weight:bold;
		text-transform:uppercase;
	}

	.telefon .big {
		font-size:20px;
	}
	
	.telefon .big1 {
		font-size:35px;

	}
	
/* -------------------------------------------------------------------- */	
/* ------------------------------- PRODUKTY --------------------------- */	
/* -------------------------------------------------------------------- */	


	#produkty {
		width:31%; 
		height:auto; 
		border:1px solid #f0f0f0; 
		float:left;
		margin:1%;
		transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
	   -webkit-transition: all .4s ease-in-out;
	   margin-bottom:25px;
	}
	
	#produkty-sys {
		width:47%; 
		height:auto; 
		border:1px solid #f0f0f0; 
		float:left;
		margin:1%;
		text-align:center;
		transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
	   -webkit-transition: all .4s ease-in-out;
	   margin-bottom:25px;
	}
	
	
	#opis {
		height:100px;
		margin-top:-4px;
		background:#19377D ;
	}
	
	#opis h3 {
		text-align:left;
		color:#fff;
		padding-left:20px; 
		padding-top:20px; 
		padding-bottom:7px;
		font-size:17px; 
		font-weight:bold;
		text-transform:uppercase;
	}
	
	#mini_info {
		padding-right:17px; 
		padding-top:33px; 
		padding-bottom:10px; 
		font-size:12px; 
		float:right; 
	}
	
	.cat { 
		padding-left:20px; 
		padding-bottom:20px; 
		font-size:12px; 
		color:#ccc;
	}
	
	#foto_prod {
		float:left; 
		width:45%
	}
	
	#info_prod {
		float:left;
		text-align:left; 
		width:53%; 
		padding-top:10px;
	}
	
	.slides {
		width:210px; 
		height:190px; 
		float:left; 
		padding:20px; 
		margin-top:20px; 
		margin-left:10px; 
		margin-right:10px; 
		margin-bottom:40px; 
		border:1px solid #ccc;
	}

	.nr {
		color:#666; 
		border:0px;
		clear: left;
	}

	.nr a,
	.nr a:link,
	.nr a:visited,
	.nr a:hover,
	.nr a:active {
		text-decoration:none;
		color: #636363;
		background:#F9F9F9;
		border:1px solid #E6E6E6;
		padding:6px 12px;
		font-size:13px;
	}
		
	.nr a:hover {
		background:#232323;
		color:#FFFFFF;
		border-color:#E6E6E6;
	}

	.nr span {
		text-decoration:none;
		background:#232323;
		padding:6px 12px;
		border:1px solid #E6E6E6;
		color:#fff;
		font-size:13px;
	}	
	
	.atrybuty_prod {
		width:100%;
		margin-top:20px;
	}
	
	.atrybuty_prod p {
		font-size:13px;
	}
	
	.atrybuty_prod a {
		width:100%;
		display:block;
		background:#232323;
		padding:10px;
		color:#fff !important;
		margin-bottom:10px !important;
	}
		

/* -------------------------------------------------------------------- */	
/* -------------------------------- MAP ------------------------------- */	
/* -------------------------------------------------------------------- */

	
	#map {
		width: 100%;
		height: 350px;
		cursor: pointer;
	}
	
	.full_mapa {
		float:left;
		background:#fff; 
		width: 35%;
		height: 800px !important;
		z-index:99999; 
		height: auto;
		cursor: pointer;
		margin:0 auto;
		overflow-y:scroll;
		overflow-x:hidden;
	}
	
	.full_mapa li {
		padding:15px;
	}
	
	.full_mapa li a{
		font-size:13px;
		color:#384e85;
	}
	
	.full_mapa li a:hover{
		padding-left:5px;
	}
	
	#mapa_realizacji {
		float:left;
		width: 65%;
		height: 800px;
		cursor: pointer;
	}
	
	.mapa_box {
		position:absolute;
		background:#fff; 
		width:420px; 
		height:225px; 
		z-index:99999; 
		left:10%; 
		margin-top:65px;
	}
		
	.mapa_box .icon {
		vertical-align:middle;
		padding-right:15px;
	}
	
	.mapa_box .icon1 {
		float:right; 
		padding-left:20px;
	}
	
	.mapa_box h3 {
		color:#16356e;
		font-weight:normal;
		text-transform:uppercase;
		font-size:35px;
		padding-top:25px;
		padding-bottom:25px;
		padding-left:40px;
		padding-right:40px;
	}
	
	.mapa_box p {
		padding-left:40px;
		padding-bottom:35px;
		font-size:13px;
		color:#656565;
		line-height:22px;
	}
	
	.mapa_box .more {
		background:#e61800;
		
	}
	
	.mapa_box a {
		margin-left:80px;
		color:#fff;
		font-weight:bold;
		text-transform:uppercase;
		font-size:15px;
		padding-top:12px;
		padding-bottom:12px;
		padding-left:40px;
		padding-right:40px;
	}
	
/* -------------------------------------------------------------------- */	
/* ------------------------------- FOOTER ----------------------------- */	
/* -------------------------------------------------------------------- */

	footer {
		margin: 0px auto; 
		text-align:left;
		width:100%;
		height:350px;
		background:#080808;
	}
	
	#wrapper_footer {
		margin: 0px auto;
		width:1100px;
		padding-top:35px;
		text-align:right;	
	}
	
	footer .left {
		width:25%; 
		height:300px; 
		float:left;
	}
			
	footer h2 { 
		font-size:16px; 
		font-weight:bold; 
		color:#ffffff; 
		text-align:left;
		padding-left:30px; 
		padding-top:25px;
	}
	
	footer h3 {
		font-size:17px;
		font-weight:bold;
		color:#ffffff;
		text-transform:uppercase;
		text-align:left;
		padding-bottom:15px;
		padding-top:15px;
	}
	
	footer hr {
		float: left;
		border: none;
		background: #e71010;
		height: 3px;
		width: 20%;
		margin-bottom: 10px;
		clear:both;
	}
	
	footer ul li {
		padding-bottom:8px;
		font-size:13px;
		color:#ffffff;	
	}
		
	footer p {
		color:#ffffff;
		font-size:13px;
	}
	
	footer a,
	footer p {
		color:#ffffff;
		font-size:13px;
		line-height:20px;
		-moz-transition: all 0.9s ease;
		-webkit-transition: all 0.9s ease;
		transition: all 0.9s ease;
	}
		
	footer a:hover{
		color:#666;
		padding-left:5px;
	}
		
	footer .icon {
		vertical-align:middle;
		padding-right:12px;
	}
	
	footer .bg_grey {
		background:#303030; 
	}

	footer .bg_blue {
		background:#0c6fa9; 
	}
	
	footer .mini_logo {
		float:left; 
		padding-right:25px;
	}
	
	footer #copyright {
		width:100%; 
		padding:50px; 
		box-sizing:border-box; 
		border-top:1px solid #242424;
	}
	
	footer #newsletter {
		width:100%; 
		height:305px; 
		padding:50px; 
		box-sizing:border-box;
	}
	
	footer #box_newsletter {
		padding-top:20px;
	}
	
	footer #bnewsletter {
		float:left;
	}
	
	.inputGray {
		float:left;
		width:180px; 
		line-height:28px; 
		background:#f5f5f5; 
		border:none; 
		text-align:left; 
		padding-left:10px;
	}
	
	
/* -------------------------------------------------------------------- */	
/* ------------------------------ COPYRIGHT --------------------------- */	
/* -------------------------------------------------------------------- */


	#wrapper_copyright {	
		margin: 0px auto;
		height:100px;
		width:100%;
		background:#101010;
	}
	
	#copyright {
		margin: 0px auto;
		width:1100px;
	}
		
	#copyright p{
		color:#b7b7b7;
		padding-top:5px;
		font-size:12px;
		line-height:15px;
	}	
	
	#copyright a {
		color:#b7b7b7;
		padding-top:5px;
		font-size:12px;
	}
	
	#copyright a:hover {
		color:#b7b7b7;
	}
	
	#copyright .icon {
		padding-right:16px;	
		padding-top:3px;
	}
	
/* -------------------------------------------------------------------- */	
/* ---------------------------- MEDIA QUERIES ------------------------- */	
/* -------------------------------------------------------------------- */	

  	
	@media (max-width: 1150px) {

	}
	
	@media (max-width: 1024px) {
		

	}
	
	
	@media (max-width: 960px) {
		
		.ukryj {
			display:none !important;
		}
		
		.logo_mobi {
			margin:0 auto;
			display:block;
			float:none;
			text-align:center;
			z-index:999;
			padding-top:15px;
			padding-bottom:15px;
		}
		
		.logo {
			display:none;
		}
		
		section {
			height:auto;
		}
		
		.slicknav_menu {
			display:block;
		}	
		
		.js .slicknav_menu{
			display:block;
		}
				
		#wrapper_footer,
		#copyright,
		.telefon,
		#info {
			width:100%;
		}
				
		.left,
		.right {
			width:100%;
			float:none;
			text-align:center;
		}
		
		#flash {
			display:none;
		}
		
		
		/* ------- WRAPPER TOP ------ */
			
				
		#wrapper_top {
			height:auto;	
			width:100%;
			background: none;
			float:left;
		}
		
		#top {
			height:auto;	
			width:100%;
			background: none;
		}
		
		#hornav {
			width:100%;
			height:auto;
			float:left;
		}
		
		#hornav table {
			width:100%;
		}
		
		#hornav table td{
			width:20%;
		}
		
		userForm2 {
			width:100%;
			float:none;
		}
		
		#hornav form {
			width:100%;
		}
		
		#hornav ul {
			position:absolute;
			right:0px;
			clear:both;
			width:100%;
			float:left;
			margin:0 auto;
			text-align:center;
		}
		
		#hornav ul li {
			margin:0 auto;
			padding-left: 10px;
			float: left;
			text-align:center;
		}
		
		#telefony {
			text-align:center;
			margin:0 auto;
			padding-bottom:15px;
			float:none;
		}
		
		#telefony a {
			padding-left:5px;	
		}
		
		
		/* ------- WRAPPER HEADER ------ */
			
			
		#wrapper_header {
			height:auto;
			width:100%;	
			float:none;
		}
		
		#header {
			height:auto;
			width:100%;	
		}
		
		.form {
			position:relative;
			float:none;
			width:100%;
			height:auto;
			margin:0 auto;
			padding-top:5px;
			box-sizing:border-box;
			text-align:center;
		}
		
		.form a {
			margin:0 auto;
			text-align:center;
		}
		
		#shop-online {
			position:relative;
			width:100%;
			height:auto;
			float:none;
			padding-left:10px;
			margin:0 auto;
			text-align:center;
			box-sizing:border-box;
			padding-bottom:20px;
		}
		
		#shop-online .icon1 {
			float:left;
			vertical-align:middle;
			box-sizing:border-box;
			padding-left:5px;
		}

		#fast_tel {
			width:100%;
			height:auto;
			text-align:center;
			padding-left:0px;
			margin-bottom:20px;
		}
		
		#fast_tel a {
			float: none;
			padding-top: 25px;
			text-align:center;
			padding-left:0px;
		}
		
		.txt_slider {
			display:none;
		}
		
		/* ------- NAVIGACJA ------ */
		
		
		#wrapper_navigation {
			display:none;
		}
		
		.row1 {
			float:left; 
			width:100%; 
			padding-left:0px; 
			padding-top:10px; 
			box-sizing:border-box;
		}
		
		.row2 {
			float:left;
			width:100%; 
			padding-left:0px;
			padding-top:10px;
		}
		
		.row3 {
			float:left;
			width:100%; 
			padding-left:0px;
			padding-top:10px;
		}
		
		
		/* ------- BOX MYJNIE ------ */
		
		
		#wrapper_myjnie {
			margin:0 auto;
			heigh:auto;
			position:relative;
		}
		
		#myjnie {
			width:100%;
			text-align:center;
			margin: 0 auto;
			display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
			display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
			display: -ms-flexbox;      /* TWEENER - IE 10 */
			display: -webkit-flex;     /* NEW - Chrome */
			display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
			justify-content: center;
			-ms-justify-content: center;
			-webkit-justify-content: center;
		}
		
		#myjnie h2 {
			padding-top:55px;
			margin:0;
		}
		
		#myjnie .modulowe,
		#myjnie .kontenerowe,
		#myjnie .tir {
			text-align:center;
			margin:0 auto;
			
		}
		
		
		/* ------- FORM PLANY ------ */
		
		
		#wrapper_formularz {
			height: auto;
			box-sizing:border-box;	
		}
		
		#formularz {
			width:100%;
			height:500px;
			padding:10px;
			box-sizing:border-box;
		}
		
		form#formularz1 {
		
		}
		
		form#formularz1 .input {
			width:100%;	
		}
		
		form#formularz1 input[type="submit"] {
			width:100%;
		}
		
		/* ------- ŚĆIEŻKA ------ */
		
		#navi {
			width:100%;
		}		
		
		#path {
			float:none;
			text-align:center;
		}
		
		#path a {
			line-height:15px;
		}
		
		#mini_help {
			display:none;
		}

		/* ------- WRAPPER PRACE ------ */
		
		#wrapper_prace {
			height:auto;	
		}
		
		#prace {
			width:100%;
			text-align:center;
		}
		
		#prace .ziemne,
		#prace .budowlane,
		#prace .transportowe,
		#prace .kostka {
			float:none;
			margin:0 auto;
		}
		
		/* ------- WRAPPER MAIN ------ */
		
		#wrapper_main,
		#main {
			width:100%;
		}
		
		#main .o_firmie,
		#main .park_maszynowy {
			float:left;
			width:100%;
		}
		
		#main .o_firmie {
			background:#000;
			padding-bottom:30px;
		}
		
		#main .park_maszynowy {
			margin-left: 0px;
			background: url('../img/bg_maszyny.jpg') top no-repeat;
			height: 650px;
		}
		
		#main .park_maszynowy .tyt1 {
			margin-top:505px;
			padding-bottom: 5px;
		}
		
		#main .park_maszynowy .tyt2 {
			clear:both;	
			margin-bottom:22px;
		}
		
		#main .park_maszynowy a {
			float:none;		
		}
		
		/* ------- CONTENT ------ */
		
		#wrapper_content,
		#content {
			width:100%;
			height:auto;
		}
		
		#content {
			padding:10px;
			box-sizing:border-box;
		}
		
		.galeria_bg {
			box-sizing:border-box;
			width:97% !important;
		}
		
		.galeria_bg img{
			width:100% !important;
		}
		
		/* ------- PRODUKTY ------ */
		
		#produkty {
			width:98%; 
			height:auto;
			display:block; 
			border:1px solid #ccc; 
			float:left;
			margin:2%;
		}
		
		#foto_prod {
			text-align:center;
			float:none; 
			width:100%;
		}
		
		#foto_prod img{
			width:100% !important;
		}
	
		#info_prod {
			float:none;
			text-align:left; 
			width:100%; 
			padding-top:10px;
		}
		
		/* ------- ZAMOWIENIE ------ */
		
		#formularz {
			height: 450px !important;
		}
		
		#zamowienie {
			width:100%;	
		}
		
		#form_dane #box_left,
		#form_dane #box_right,
		#form_opcje #box,
		#form_produkt #box_left,
		#form_produkt #box_right,
		#zamowienie .boksik {
			width:100%;	
			padding:0px;
		}
		
		/* ------- REALIZACJE ------ */
		
		#realizacje {
			width:100% !important;
		}
			
		/* ------- KONTAKT ------ */
		
		.kontakt_main,
		.kontakt_sub,
		.kontakt_mapy,
		.kontakt_left {
			width:100%;
			height:auto;
			float:none;
		}
		
		.kontakt_main .box_kontakt1,
		.kontakt_main .box_kontakt2,
		.kontakt_main .box_kontakt3,
		.kontakt_sub  .box_kontakt,
		.kontakt_mapy .box_kontakt2 {
			width:100%;
			float:none;
			padding-bottom:10px;
			
		}
			
		.kontakt_mapy .box_kontakt2 {
			height:40px;
		}
		
		.kontakt_mapy .box_kontakt2 img {
			padding-right:0px !important;
			clear:both;
			
		}
		
		.kontakt_left #formularz {
			height:auto;
		}
		
		.map_siedziba {
			margin-left:0px;
			height:250px;
		}
		
		/* ------- PARALAX ------ */
		
		.parallax,
		.katalog {
			width:100%;
			height:auto;
		}
		
		.box_ikony {
			width:48%;
			float:none;
			display:inline-block;
		}
		
		.box_ikony h3,
		.box_ikony p {
			padding: 15px;
		}
		
		
		/* ------- BOXY ------ */
		
		
		#wrapper_info {
			display:none;
			height:auto;
			text-align:center;
			margin:0 auto;
			padding:0px;
		}
		
		#wrapper_info_pd {
			display:none;
			height:100%;
			text-align:center;
			margin:0 auto;
			padding:0px;
		}
		
		#info {
			text-algin:center;
		}
		
		.sklep,
		.galeria,
		.filmy {
			text-align:center;
			margin:0 auto;
			width:100%;
		}
		
		.title_box,
		.title_box1,
		.title_box2 {
			left:0px;
			margin-left:0px;
			width:70%;
		}
		
		.title_box2 img {
			display:none;
		}
		
		.news_box .city {
			width:90%;
			box-sizing:border-box;
			padding:5px;
		}
		
		.news_box .city b,
		.news_box .city p {
			font-size:15px;
		}
		
		
		/* ------- NEWS ------ */
		
		.aktualnosci  {
			width:100%;
			height:auto;
			padding-top:20px;
		}
		
		.aktualnosci h2 {
			text-align:center;
			padding-bottom: 0px;
			margin:0px;
		}
		
		.aktualnosci img {
			width:99%;
		}
		
		.news_box {
			width:50%;
			float:left;
			height:auto;
			padding:10px;
			box-sizing:border-box;
			margin-bottom:20px;
		}
		
		.news_box .data {
			text-align:center;
			width:100%;
			margin-bottom:15px;
		}
		
		.news_box .data br {
			display: none;
		}
		
		.news_box .zawartosc {
			float:none;
			width:100%;
			clear:both;
			height:auto;
			margin-bottom:40px;
		}
		
		.news_box .img_news {
			position: relative;
			margin:0 auto;
			float: none;
			width:90%;
			background:none;
		}
		
		
		/* ------- TELFON ------ */
		
		#wrapper_telefon {
			height:auto;
			padding-top:20px;
			padding-bottom:10px;
			box-sizing:border-box;
			background: #19377d;
		}
		
		.telefon {
			padding-top: 10px;
		}
		
		/* ------- FOOTER ------ */	
		
		#wrapper_footer {
			height:auto;
		}		
		
		footer {
			height:auto;
		}
		
		footer .left,
		footer .right {
			width:100%;
			height: auto;
			float:none;
		}
		
		
		footer h3 {
			text-align:center;
		}
		
		footer hr {
			float:none;
			text-align:center;
		}
		
		footer .box_right,
		footer .box_right1 {
			float:none;
			width:100%;
			height: auto;
			padding: 0px 10px 20px;
			text-align:center;
		}
		
		footer .box_right {
			margin-top:20px;
		}
		
		footer .box_right a {
			display:block;
			width:100%;
		}
		
		footer .spacer,
		footer .spacer1 {
			padding-left:0px;
		}
		
		footer .icon {
			padding-right:0px;
		}
		
		.copyright {
			text-align:center;	
		}
		
		#copyright .right {
			display:none;	
		}
		
	}
	
	
	@media (max-width: 768px) {
			
		.ukryj {
			display:none !important;
		}
		
		.logo_mobi {
			margin:0 auto;
			display:block;
			float:none;
			text-align:center;
			z-index:999;
			padding-top:15px;
			padding-bottom:15px;
		}
		
		.logo {
			display:none;
		}
		
		section {
			height:auto;
		}
		
		.slicknav_menu {
			display:block;
		}	
		
		.js .slicknav_menu{
			display:block;
		}
				
		#wrapper_footer,
		#copyright,
		.telefon,
		#info {
			width:100%;
		}
				
		.left,
		.right {
			width:100%;
			float:none;
			text-align:center;
		}
		
		#flash {
			display:none;
		}
		
		
		/* ------- WRAPPER TOP ------ */
			
				
		#wrapper_top {
			height:auto;	
			width:100%;
			background: none;
			float:left;
		}
		
		#top {
			height:auto;	
			width:100%;
			background: none;
		}
		
		#hornav {
			width:100%;
			height:auto;
			float:left;
		}
		
		#hornav table {
			width:100%;
		}
		
		#hornav table td{
			width:20%;
		}
		
		userForm2 {
			width:100%;
			float:none;
		}
		
		#hornav form {
			width:100%;
		}
		
		#hornav ul {
			position:absolute;
			right:0px;
			clear:both;
			width:100%;
			float:left;
			margin:0 auto;
			text-align:center;
		}
		
		#hornav ul li {
			margin:0 auto;
			padding-left: 10px;
			float: left;
			text-align:center;
		}
		
		#telefony {
			text-align:center;
			margin:0 auto;
			padding-bottom:15px;
			float:none;
		}
		
		#telefony a {
			padding-left:5px;	
		}
		
		
		/* ------- WRAPPER HEADER ------ */
			
			
		#wrapper_header {
			height:auto;
			width:100%;	
			float:none;
		}
		
		#header {
			height:auto;
			width:100%;	
		}
		
		.form {
			position:relative;
			float:none;
			width:100%;
			height:auto;
			margin:0 auto;
			padding-top:5px;
			box-sizing:border-box;
			text-align:center;
		}
		
		.form a {
			margin:0 auto;
			text-align:center;
		}
		
		#shop-online {
			position:relative;
			width:100%;
			height:auto;
			float:none;
			padding-left:10px;
			margin:0 auto;
			text-align:center;
			box-sizing:border-box;
			padding-bottom:20px;
		}
		
		#shop-online .icon1 {
			float:left;
			vertical-align:middle;
			box-sizing:border-box;
			padding-left:5px;
		}

		
		/* ------- NAVIGACJA ------ */
		
		
		#wrapper_navigation {
			display:none;
		}
		
		.row1 {
			float:left; 
			width:100%; 
			padding-left:0px; 
			padding-top:10px; 
			box-sizing:border-box;
		}
		
		.row2 {
			float:left;
			width:100%; 
			padding-left:0px;
			padding-top:10px;
		}
		
		.row3 {
			float:left;
			width:100%; 
			padding-left:0px;
			padding-top:10px;
		}
		
		
		/* ------- BOX MYJNIE ------ */
		
		
		#wrapper_myjnie {
			margin:0 auto;
			heigh:auto;
			position:relative;
		}
		
		#myjnie {
			width:100%;
			text-align:center;
			margin: 0 auto;
			display:block;
		}
		
		#myjnie h2 {
			padding-top:55px;
			margin:0;
		}
		
		#myjnie .modulowe,
		#myjnie .kontenerowe,
		#myjnie .tir {
			text-align:center;
			margin:0 auto;
			float:none;
		}
		
		
		/* ------- FORM PLANY ------ */
		
		
		#wrapper_formularz {
			height: auto;
			box-sizing:border-box;
		}
		
		#formularz {
			width:100%;
			height:600px;
			padding:10px;
			box-sizing:border-box;
		}
		
		form#formularz1 {
		
		}
		
		form#formularz1 .input {
			width:100%;	
		}
		
		form#formularz1 input[type="submit"] {
			width:100%;
		}
		
		/* ------- ŚĆIEŻKA ------ */
		
		#navi {
			width:100%;
		}		
		
		#path {
			float:none;
			text-align:center;
		}
		
		#path a {
			line-height:15px;
		}
		
		#mini_help {
			display:none;
		}
		
		/* ------- CONTENT ------ */
		
		#wrapper_content,
		#content {
			width:100%;
			height:auto;
		}
		
		#content {
			padding:10px;
			box-sizing:border-box;
		}
		
		.galeria_bg {
			box-sizing:border-box;
			width:97% !important;
		}
		
		.galeria_bg img{
			width:100% !important;
		}
		
		/* ------- PRODUKTY ------ */
		
		#produkty {
			width:98%; 
			height:auto;
			display:block; 
			border:1px solid #ccc; 
			float:left;
			margin:2%;
		}
		
		#foto_prod {
			text-align:center;
			float:none; 
			width:100%;
		}
		
		#foto_prod img{
			width:100% !important;
		}
	
		#info_prod {
			float:none;
			text-align:left; 
			width:100%; 
			padding-top:10px;
		}
		
		/* ------- ZAMOWIENIE ------ */
		
		#zamowienie {
			width:100%;	
		}
		
		#form_dane #box_left,
		#form_dane #box_right,
		#form_opcje #box,
		#form_produkt #box_left,
		#form_produkt #box_right,
		#zamowienie .boksik {
			width:100%;	
			padding:0px;
		}
		
		/* ------- KONTAKT ------ */
		
		.kontakt_main,
		.kontakt_sub,
		.kontakt_mapy,
		.kontakt_left {
			width:100%;
			height:auto;
			float:none;
		}
		
		.kontakt_main .box_kontakt1,
		.kontakt_main .box_kontakt2,
		.kontakt_main .box_kontakt3,
		.kontakt_sub  .box_kontakt,
		.kontakt_mapy .box_kontakt2 {
			width:100%;
			float:none;
			padding-bottom:10px;
			
		}
			
		.kontakt_mapy .box_kontakt2 {
			height:40px;
		}
		
		.kontakt_mapy .box_kontakt2 img {
			padding-right:0px !important;
			clear:both;
			
		}
		
		.kontakt_left #formularz {
			height:auto;
		}
		
		.map_siedziba {
			margin-left:0px;
			height:250px;
		}
		
		/* ------- PARALAX ------ */
		
		.parallax,
		.katalog {
			width:100%;
			height:auto;
		}
		
		.box_ikony {
			width:100%;
			float:none;
		}
		
		.box_ikony h3,
		.box_ikony p {
			padding: 15px;
		}
		
		
		/* ------- BOXY ------ */
		
		
		#wrapper_info {
			display:none;
			height:auto;
			text-align:center;
			margin:0 auto;
			padding:0px;
		}
		
		#wrapper_info_pd {
			display:none;
			height:100%;
			text-align:center;
			margin:0 auto;
			padding:0px;
		}
		
		#info {
			text-algin:center;
		}
		
		.sklep,
		.galeria,
		.filmy {
			text-align:center;
			margin:0 auto;
			width:100%;
		}
		
		.title_box,
		.title_box1,
		.title_box2 {
			left:0px;
			margin-left:0px;
			width:70%;
		}
		
		.title_box2 img {
			display:none;
		}
		
		.news_box .city {
			width:90%;
			box-sizing:border-box;
			padding:5px;
		}
		
		.news_box .city b,
		.news_box .city p {
			font-size:15px;
		}
		
		
		/* ------- NEWS ------ */
		
		.aktualnosci  {
			width:100%;
			height:auto;
			padding-top:20px;
		}
		
		.aktualnosci h2 {
			text-align:center;
			padding-bottom: 0px;
			margin:0px;
		}
		
		.aktualnosci img {
			width:99%;
		}
		
		.news_box {
			width:50%;
			float:left;
			height:auto;
			padding:10px;
			box-sizing:border-box;
			margin-bottom:20px;
		}
		
		.news_box .data {
			text-align:center;
			width:100%;
			margin-bottom:15px;
		}
		
		.news_box .data br {
			display: none;
		}
		
		.news_box .zawartosc {
			float:none;
			width:100%;
			clear:both;
			height:auto;
			margin-bottom:40px;
		}
		
		.news_box .img_news {
			position: relative;
			margin:0 auto;
			float: none;
			width:90%;
			background:none;
		}
		
		
		/* ------- TELFON ------ */
		
		
		#wrapper_telefon {
			height:auto;
			padding-top:20px;
			padding-bottom:20px;
			box-sizing:border-box;
			background: #19377d;
		}
		
		.telefon {
			padding-top: 10px;
		}


		/* ------- MAPA ------ */
		
		
		#map {
			display:none;
		}
		
		.mapa {
			width:100%;
			height:auto;
			margin-bottom:50px;
			margin-top:30px;
		}
	
		.mapa_box {
			position:relative;
			margin-top: 0px;
			width: 100%;
			height:auto;
			left:0;
		}
		
		.mapa_box h3 {
			width:100%;
			text-align:center;
			padding:0px;
		} 
		
		.mapa_box a {
			display:block;
			width:90%;
			margin:0 auto;
			text-align:center;
			float:none;
			padding:15px;
		}
		
		.mapa_box br {
			display:none;
		}
		
		/* ------- FOOTER ------ */	
		
		#wrapper_footer {
			height:auto;
		}		
		
		footer {
			height:auto;
		}
		
		footer .left,
		footer .right {
			width:100%;
			height: auto;
			float:none;
		}
		
		
		footer h3 {
			text-align:center;
		}
		
		footer hr {
			float:none;
			text-align:center;
		}
		
		footer .box_right,
		footer .box_right1 {
			float:none;
			width:100%;
			height: auto;
			padding: 0px 10px 20px;
			text-align:center;
		}
		
		footer .box_right {
			margin-top:20px;
		}
		
		footer .box_right a {
			display:block;
			width:100%;
		}
		
		footer .spacer,
		footer .spacer1 {
			padding-left:0px;
		}
		
		footer .icon {
			padding-right:0px;
		}
		
		.copyright {
			text-align:center;	
		}
		
	}	
	
	@media (max-width: 480px) {
		
		.ukryj {
			display:none !important;
		}
		
		.logo_mobi {
			margin:0 auto;
			display:block;
			float:none;
			text-align:center;
			z-index:999;
			padding-top:15px;
			padding-bottom:15px;
		}
		
		.logo {
			display:none;
		}
		
		section {
			height:auto;
		}
		
		.slicknav_menu {
			display:block;
		}	
		
		.js .slicknav_menu{
			display:block;
		}
				
		#wrapper_footer,
		#copyright,
		.telefon,
		#info {
			width:100%;
		}
				
		.left,
		.right {
			width:100%;
			float:none;
			text-align:center;
		}
		
		#flash {
			display:none;
		}
		
		
		/* ------- WRAPPER TOP ------ */
			
				
		#wrapper_top,
		#top {
			height:auto;	
			width:100%;
			background: none;
		}
		
		#hornav {
			width:90%;
			height:auto;
			float:none;
		}
		
		#hornav form {
			display:none;
			width:100%;
		}
		
		#hornav table {
			width:80%;
		}
		
		#hornav table td{
			width:20%;
		}
		
		userForm2 {
			width:100%;
			float:none;
		}
		
		#hornav ul {
			clear:both;
			width:100%;
			float:none;
			margin:0 auto;
			text-align:center;
		}
		
		#hornav ul li {
			margin:0 auto;
			padding-left: 10px;
			float: left;
			text-align:center;
		}
		
		#telefony {
			text-align:center;
			margin:0 auto;
			padding-bottom:15px;
			float:none;
		}
		
		#telefony a {
			padding-left:5px;	
		}
		
		/* ------- WRAPPER HEADER ------ */
			
			
		#wrapper_header {
			height:auto;	
			width:100%;	
		}
		
		#header {
			height:auto;
			width:100%;	
		}
		
		.form {
			position:relative;
			float:none;
			width:100%;
			height:auto;
			margin:0 auto;
			padding-top:20px;
			box-sizing:border-box;
			text-align:center;
		}
		
		.form a {
			margin:0 auto;
			text-align:center;
		}
		
		#shop-online {
			position:relative;
			width:100%;
			height:auto;
			float:none;
			padding-left:10px;
			margin:0 auto;
			text-align:center;
			box-sizing:border-box;
			padding-bottom:20px;
		}
		
		#shop-online .icon1 {
			float:left;
			vertical-align:middle;
			box-sizing:border-box;
			padding-left:5px;
		}

		
		/* ------- ZAMOWIENIE ------ */
		
		#zamowienie {
			width:100%;	
		}
		
		#form_dane #box_left,
		#form_dane #box_right,
		#form_opcje #box,
		#form_produkt #box_left,
		#form_produkt #box_right,
		#zamowienie .boksik {
			width:100%;	
			padding:0px;
		}
		
		
		/* ------- NEWS ------ */
		
		.aktualnosci  {
			width:100%;
			height:auto;
			padding-top:20px;
		}
		
		.aktualnosci h2 {
			text-align:center;
			padding-bottom: 0px;
			margin:0px;
		}
		
		.aktualnosci img {
			width:99%;
		}
		
		.news_box {
			width:100%;
			float:none;
			height:auto;
			padding:10px;
			box-sizing:border-box;
			margin-bottom:20px;
		}
		
		.news_box .data {
			text-align:center;
			width:100%;
			margin-bottom:15px;
		}
		
		.news_box .data br {
			display: none;
		}
		
		.news_box .zawartosc {
			float:none;
			width:100%;
			clear:both;
			height:auto;
			margin-bottom:40px;
		}
		
		.news_box .img_news {
			position: relative;
			margin:0 auto;
			float: none;
			width:90%;
			background:none;
		}
		
	}
			
/* -------------------------------------------------------------------- */	
/* -------------------------------- SEARCH ---------------------------- */	
/* -------------------------------------------------------------------- */


	#userForm2 input[type="text"] {
		float:right;
		padding-left:20px;
		margin-left:48px;
		height:40px;
		border:none;
		width:280px;
		background-color:#e7e7e7;
		color:#868686;
		font-size:12px;
		outline:none;
		resize:none;
	}
	
	#userForm2 input[type="submit"] {
		font-size:12px;
		height:40px;
		width:110px;
		color:#fff;
		border:none;
		cursor: pointer;
		font-weight:bold;
		text-transform:uppercase;
		background: #e71010;
	}
	
	#userForm2 input[type="submit"]:hover {
		opacity:0.9;
	}		
	
	
/* -------------------------------------------------------------------- */	
/* ----------------------- FORMULARZ KONTAKTOWY ----------------------- */	
/* -------------------------------------------------------------------- */	
	
	
	form#formularz {
		width: 100%;
		margin: 10px auto;
		text-align: left;
	}
		
	form#formularz .input,
	form#formularz textarea {
		display: block;
		width: 100%;
		height: 40px;
		margin: 10px auto;
		text-indent: 10px;
	}
	
	form#formularz .input_nr {
		width: 25px;
		text-align: left;
		margin: 0px;
	}
	
	form#formularz input[type="submit"] {
		font-weight:bold;
		text-transform:uppercase;
		background:#e71010;
		width: 100%;
		height: 40px;
		margin: 0 auto;
		margin-top:20px;
		line-height: 40px;
		outline: none;
		border: none;
		color: #fff;
	}


/* -------------------------------------------------------------------- */	
/* ------------------------------ NEWSLETTER -------------------------- */	
/* -------------------------------------------------------------------- */


	#newsletter input[type="text"] {
		float:left;
		padding-left:20px;
		margin-left:28px;
		height:37px;
		border:none;
		width:170px;
		background-color:#e7e7e7;
		color:#868686;
		font-size:12px;
		outline:none;
		resize:none;
	}
	
	#newsletter input[type="submit"] {
		font-size:12px;
		height:37px;
		width:110px;
		float:left;
		color:#fff;
		border:none;
		cursor: pointer;
		font-weight:bold;
		text-transform:uppercase;
		background: #080808;
	}
	
	#newsletter input[type="submit"]:hover {
		opacity:0.9;
	}		
	


/* -------------------------------------------------------------------- */	
/* -------------------------------- SEARCH ---------------------------- */	
/* -------------------------------------------------------------------- */	

	
	#formularz_main {
		font-family: 'Open Sans', sans-serif !important;
		font-size: 11px;
		color: #fff;
		height: 180px;
	}
	
	#formularz_main form, 
	#formularz_main input, 
	#formularz_main textarea, 
	#formularz_main select, 
	#formularz_main option,
	#formularz_main .caption {
		-webkit-box-sizing: border-box; /* iOS <= 4 i Android <= 2.3 */
		-moz-box-sizing: border-box; /* Firefox */
		box-sizing: border-box; /* Chrome, Opera, Safari 5+ i IE 8+ */
		color: #fff;
		
	}
	
	#formularz_main input[type="text"], 
	#formularz_main textarea, 
	#formularz_main select,
	#formularz_main .caption {
		border: 1px solid #444444;
		background: rgba(52, 52, 52, 0.15);
		margin-bottom: 5px;
		color: #fff !important;
		font-family: 'Open Sans', sans-serif !important;
		font-size:12px !important;
		background: #292929 !important;
	}
	
	#formularz_main input, 
	#formularz_mainselect, 
	#formularz_main .caption {
		height: 33px;
		line-height: 33px;
	}
	
	#formularz_main .formularz-opis,
	#formularz_main .formularz-content {
		display: inline-block;
	}
		
	#formularz_main .formularz-opis {
		width: 240px;
		padding-right: 30px;
	}
	
	#formularz_main .formularz-opis .opis {
		margin-top: 30px;
	}
		
	#formularz_main .formularz-content {
		width: 830px;
	}
	
	#formularz_main .formularz-content form {
		margin-top: 0.67em;
	}
	
	#formularz_main .formularz-content > form > div.inline {
		width: 49.4%;
		margin-left: 0.3%;
	}
	
	#formularz_main input[type="text"] {
		width: 100%;
		text-indent: 10px;
		font-family: 'Open Sans', sans-serif !important;
		font-size:12px;
	}
	
	#formularz_main textarea {
		width: 100%;
		height: 72px;
		padding: 10px 10px;
		color: #ccc;
	}
	
	#formularz_main select {
		width: 69%;
		color: #da6601;
		padding-left: 50px;
	}
	
	#formularz_main select:focus,
	#formularz_main input:focus,
	#formularz_main textarea:focus {
		outline: 1px solid  #ccc;
	}
	
	#formularz_main input[type="submit"] {
		width: 160px;
		float:right;
		outline: none;
		padding: 0; margin: 0;
		background: #ea212d;
		color: #fff;
		border: 1px solid #7e231d;
		font-size: 12px;
		text-transform:uppercase;
		text-shadow: rgba(255, 153, 0, .5) 0px 0px 1px;
	}
	
	#formularz_main .lewa {
		width:47% !important;
		float: left;
	}
	
	#formularz_main .prawa {
		width:47% !important;  
		float: right;
	}
	
	.clear {
		clear: both;
	}
	
	.inline {
		display: inline; /* Dla IE < 8 */
		zoom: 1; /* Dla IE < 8 */
		display: inline-block;
	}


/* ---------------FACEBOOK--------------- */				

#multitab{
	position:fixed;
	right:0px;
	top:190px;
	z-index:999999;
}

#multitab p{
	padding-right:7px;
	font-size:11px;
	text-align:justify;
	line-height:15px;
}

#multitab .title{
	font-size:12px;
	text-align:center;
	font-weight:bold;}

#multitab li{
	cursor:pointer;
	width:35px;
	height:110px;
	margin-bottom:3px;
	position:relative;
}
#multitab > li > div{
	padding:10px;
	border: solid #0170cf 3px;
	background: #fff;
	float:left;
	width:286px;
	height:296px;
	-moz-border-radius: 0 0 0 8px;
	-webkit-border-radius: 0 0 0 8px;
	border-radius: 0 0 0 8px;
	position:absolute;
	top:0;
	left:35px;
	z-index:999999;
}

/* ---------------FORMULARZ--------------- */	

#userForm input[type="text"] {
	float:right;
	padding-left:10px;
	padding-right:15px;
	height:20px;
	border:1px solid #CCC;
	width:110px;
	background: #fff;;
	-webkit-box-shadow: inset 2px 2px 5px 0px #f6f6f6;
	box-shadow: inset 2px 2px 5px 0px #f6f6f6;
	color:#888888;
	font-size:11px;
	outline:none;
	resize:none;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

#userForm input[type="file"] {
	float:right;
	padding:5px 10px;
	margin-bottom:10px;
	border:1px solid #3BAA35;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;

	color:#777;
	font-size:12px;
	outline:none;
	resize:none;
}

#userForm textarea {
	float:right;
	padding:5px 10px;
	margin-bottom:10px;
	border:1px solid #ccc;
	-webkit-border-radius:2px;
	margin-top:6px;
	-moz-border-radius:2px;
	border-radius:2px;
	width:160px;
	color:#777;
	font-size:12px;
	outline:none;
	resize:none;
}

#userForm select {
	
}

#userForm select {
	width:200px;
	padding:4px;
}
#userForm input[type="file"] {
	width:387px;
}
#userForm input[type="submit"] {
	font-size:11px;
	height:24px;
	width:60px;
	color:#fff;
	background:#3BAA35;
	border:none;
	cursor: pointer;
}


