<!--
@charset "UTF-8";

/* GLOBAL
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

html, body { height: auto;  }
body { 
    margin:0; 
    padding: 0; 
    color: #3b3b3b; 
    font-family: 'Open Sans', Tahoma, sans-serif; 
    font-size: 16px; 
    font-weight: 400; 
    line-height: 24px; 
    overflow-x: auto; 
    background: #31A3DD;
}

p { margin: 7px 0 7px 0; }
strong { font-weight: 600; }
img { max-width: 100%; height: auto !important; }
img.left { margin-right: 15px; }
img.right { margin-left: 15px; }

hr { border: 0; border-top: 2px solid #2f63b3; margin: 15px 0; clear: both; }
ul, ol { margin: 0; padding: 0; }
* { outline: 0; }

/* Show image placeholders */
@-moz-document url-prefix(http), url-prefix(https), url-prefix(file) {
    img:-moz-broken {
        -moz-force-broken-image-icon: 1;
        width: 24px;
        height: 24px;
    }
}

/* LOADER
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

#loader {
    margin: 100px auto 0;
    width: 70px;
    position: absolute; 
    top: 50%; 
    left: 50%;
    z-index: 999; 
    margin: -9px 0 0 -35px;
    text-align: center;
    -webkit-transition: background 300ms ease-in-out;
    -moz-transition: background 300ms ease-in-out;
    -ms-transition: background 300ms ease-in-out;
    -o-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
}

#loader > div {
    width: 18px;
    height: 18px;
    background-color: #31A3DD; 
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#loader .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

#loader .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0.0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
    0%, 80%, 100% { 
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 40% { 
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* MAIN
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

/*opacity: 0;*/
.container { width: 1170px; margin: 0 auto; position: relative;  }
.container:before, .container:after {
    content: " ";
    display: table;
}
.container:after { clear: both; }

header { margin: 0; }
#header_top { 
    height: auto;  /* 100px */
    padding: 15px 0;
    background-color: #31A3DD;
    background-image: -moz-linear-gradient(#31A3DD, #2F63B3); 
    background-image: -webkit-gradient(linear, left top, left bottom, from(#31A3DD), to(#2F63B3));    
    background-image: -webkit-linear-gradient(#31A3DD, #2F63B3);  
    background-image: -o-linear-gradient(#31A3DD, #2F63B3);
    background-image: -ms-linear-gradient(#31A3DD, #2F63B3);
    background-image: linear-gradient(#31A3DD, #2F63B3);
    color: #FFFFFF;
    position: relative;
}

#header_logo { 
    float: left; 
    width: 285px;
    /* padding-top: 62px; */
}

#header_logo img { 

}

#header_banner { 
    float: right; 
    width: 750px;
    height: 200px;
    overflow: hidden;
}

#header_contact { 
    position: absolute;
    top: 25px;
    right: 0;
    display: none;
}

#header_contact p { 
    margin-top: 0;
}

#header_contact a { 
    color: #FFFFFF;
}

#header_contact_menu { 
    display: inline-block;
    float: right;
    padding: 10px 0;
}

#header_contact_menu p { 
    margin-top: 0;
    display: inline-block;
    margin: 0 0 0 15px;
}

#header_contact_menu a { 
    color: #3b3b3b;
}

#header_contact_button {
    text-align: center;
    padding: 0;
    background: #2F63B3; 
    display: none; 
}

#header_menu { background: #FFFFFF; }
#header_menu .container { padding: 25px 0; }

#header_menu.fixed {
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
    border-bottom: 3px solid #2f63b3;
}
#header_menu.fixed .container { padding: 10px 0; }

#logo {  }
#logo img { display: block; }

#main_section { background: #D4D7D8; position: relative; z-index: 1; padding: 25px 0; }
#main_section.fixed { margin-top: 66px; }

#content_bg { 
    position: absolute; 
    top: 0; 
    right: 0; 
    width: 860px; 
    background: #FFFFFF; 
    height: 100%; 
}

#sidebar { 
    float: left; 
    width: 285px; 
    background: #FFFFFF; 
    z-index: 2;
}

#content {
    float: right; 
    width: 860px;
    background: #FFFFFF; 
    /*padding: 20px; 
    width: 820px; 
    */
    z-index: 2; 
    position: relative;
}

#portamento_container { float: left; position: relative;} /* take the positioning of the sidebar, and become the start point for the sidebar positioning */
    #portamento_container #sidebar { float: none; position: absolute; } /* no need to float anymore, become absolutely positoned */
    #portamento_container #sidebar.fixed { position: fixed; } /* if the panel is sliding, it needs position:fixed */

/* FOOTER
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

#footer { 
    position: relative; 
    height: 100px; 
    background-color: #31A3DD;
    background-image: -moz-linear-gradient(#2F63B3, #31A3DD); 
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2F63B3), to(#31A3DD));    
    background-image: -webkit-linear-gradient(#2F63B3, #31A3DD);  
    background-image: -o-linear-gradient(#2F63B3, #31A3DD);
    background-image: -ms-linear-gradient(#2F63B3, #31A3DD);
    background-image: linear-gradient(#2F63B3, #31A3DD);
    color: #FFFFFF; 
    font-size: 12px;
    padding: 15px 0;
}
#footer_copyright { float: left; width: 200px; }
#footer_design { clear: both; margin-top: 14px; }
#footer_menu { float: right; width: 855px; text-align: right; }
         
/* MOBILE NAV
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

#logo, nav a, header, #mobile-nav {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.responsive-nav {
    display: none;
    margin: 10px auto 0px;
    padding: 5px;
    z-index: 10;
    position: relative;
}

#mobile-nav {
    background: #111 url('../grafika/ico_menu.png') center left no-repeat; 
    width: 100%; 
    height: 45px; 
    line-height: 45px;
    vertical-align: middle;
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: 99; 
    display: none;
    cursor: pointer; 
    text-align: center;
    color: #FFF;
}

#mobile-nav i {
    font-size: 24px; text-shadow: 0px 1px 0px #000; position: absolute; top: 7px; left: 15px;
}   
         
/* HEADINGS
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

h1 { color: #2f63b3; font-size: 30px; margin: 0 0 20px 0; line-height: normal; font-weight: 600; border-bottom: 2px solid #2f63b3; padding-bottom: 10px; text-align: left; }
h2 { color: #2f63b3; font-size: 24px; margin: 0 0 20px 0; line-height: normal; font-weight: 600; }
h3 { color: #2f63b3; font-size: 18px; margin: 0 0 10px 0; line-height: normal; font-weight: normal; }

h4 { color: #3b3b3b; font-size: 16px; margin: 0 0 10px 0; line-height: normal; font-weight: normal; }
h5 { color: #3b3b3b; font-size: 14px; margin: 0 0 10px 0; line-height: normal; font-weight: normal; }
h6 { color: #3b3b3b; font-size: 12px; margin: 0 0 10px 0; line-height: normal; font-weight: normal; }

/* nadpisanie wartości - update strony */
h1 { color: #FFF; border: 0; background: #2F63B3; padding: 10px 20px 10px 20px; }
article { padding: 20px; padding-top: 0; }

/* LINKS
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

a { color: #2f63b3; text-decoration: none; }
a:hover { color: #E4272E; text-decoration: none; }

article a { color: #2f63b3; }
article a:hover { color: #E4272E; }

#footer a { color: #FFFFFF; }
#footer_menu a { margin-left: 25px; }
#footer_menu a:hover { text-decoration: underline; }

.button1 { 
    display: inline-block;
    background: #E74117; 
    color: #FFFFFF;
    padding: 7px 15px; 
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 16px;
    line-height: normal;
    position: relative;
    text-decoration: none;
}

#btn_oferta { 
    -webkit-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    -moz-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    color: #FFFFFF;
    background: #2F63B3; 
    display: block;
    padding: 7px 15px; 
    font-size: 14px;
    line-height: normal;
    position: relative;
    text-decoration: none;
    margin: 20px auto;
    width: 120px;
}

#btn_oferta:hover { color: #FFFFFF; background: #31a3dd; }

/*
#header_contact_button a {
    color: #000;
    background: #FFF;
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
    padding: 10px 20px;
    text-transform: uppercase;
    box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    margin: 0 5px; 
}

#header_contact_button a:hover {
    -webkit-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    -moz-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    color: #FFFFFF;
    background: #31A3DD; 
}
*/

#header_contact_button a {
    display: block;
    color: #FFF; 
    font-size: 30px; 
    padding: 10px 20px 10px 20px;
    line-height: normal; 
    font-weight: 600; 
    text-align: center;
}

#header_contact_button a:hover {
    color: #31A3DD;
}

/* LISTS
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

article ol, article ul { margin: 0 0 0 40px; }
article ul {  }
article li { margin: 4px 0; }

article h1 + ul { margin-top: 20px; }

#sidebar ul, #sidebar ol { list-style: none; }
#sidebar li { margin: 5px 0; font-size: 14px; }

/*  TABLES
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

table {
    border-collapse: separate;
    
    color:#666;
    font-size:12px;
    text-shadow: 1px 1px 0px #fff;
    background:#eaebec;
    margin: 20px 0;
    border: #ccc 1px solid;

    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;

    -moz-box-shadow: 0 1px 2px #d1d1d1;
    -webkit-box-shadow: 0 1px 2px #d1d1d1;
    box-shadow: 0 1px 2px #d1d1d1;
    
    width: 100%;
}

table th {
    padding: 10px 15px;
    border-top:1px solid #fafafa;
    border-bottom:1px solid #e0e0e0;

    background: #ededed;
    background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ebebeb));
    background: -moz-linear-gradient(top,  #ededed,  #ebebeb);
}

table th:first-child {
    padding-left:20px;
}

table tr:first-child th:first-child {
    -moz-border-radius-topleft:3px;
    -webkit-border-top-left-radius:3px;
    border-top-left-radius:3px;
}

table tr:first-child th:last-child {
    -moz-border-radius-topright:3px;
    -webkit-border-top-right-radius:3px;
    border-top-right-radius:3px;
}

table tr {
    text-align: center;
    padding-left:20px;
}

table td:first-child {
    border-left: 0;
}

table td {
    padding: 10px;
    border-top: 1px solid #ffffff;
    border-bottom:1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;

    background: #fafafa;
    background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
    background: -moz-linear-gradient(top,  #fbfbfb,  #fafafa);
    
    overflow: hidden;
}

table tr.even td {
    background: #f6f6f6;
    background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
    background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
}

table tr:last-child td {
    border-bottom:0;
}

table tr:last-child td:first-child {
    -moz-border-radius-bottomleft:3px;
    -webkit-border-bottom-left-radius:3px;
    border-bottom-left-radius:3px;
}

table tr:last-child td:last-child {
    -moz-border-radius-bottomright:3px;
    -webkit-border-bottom-right-radius:3px;
    border-bottom-right-radius:3px;
}

table tr:hover td {
    background: #f2f2f2;
    background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
    background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);  
}

.tablesorter thead .disabled {display: none}

/* MENU
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

nav { text-align: left; display: inline-block; }
nav a {
    display: block;  
    font-size: 15px;
    font-weight: normal;
    color: #000000;
    padding: 10px 20px;
    text-transform: uppercase;
}

nav a span {
    display: inline-block;
    width: 60px;
    text-align: center;
    font-size: 24px;
}

nav ul { list-style: none; }
nav li { position: relative; display: inline-block; margin-right: 10px; }

nav li a.active {
    -webkit-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    -moz-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    color: #FFFFFF;
    background: #2F63B3; 
}

nav li:hover a {
    -webkit-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    -moz-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    color: #FFFFFF;
    background: #31A3DD; 
}

nav ul ul { display: none; }

/* MENU KATEGORIE
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

#menu_kategorie {
    background: #2F63B3;
}

#menu_kategorie ul {
    list-style: none;
}

#menu_kategorie ul li {
    padding: 0;
    margin: 0;  
}

#menu_kategorie ul li a {
    position: relative;
    padding: 7px 15px 7px 15px;
    display: block;
    text-decoration: none;
    font: 400 14px/21px "Open Sans",sans-serif;
    border-bottom: 1px solid #366EC1;
    color: #fff;
}

#menu_kategorie ul li a:last-child { border-bottom: 0; }

#menu_kategorie ul li a.active {
    background-color: #E4272E;
    background-image: -moz-linear-gradient(#E4272E, #A80E13); 
    background-image: -webkit-gradient(linear, left top, left bottom, from(#E4272E), to(#A80E13));    
    background-image: -webkit-linear-gradient(#E4272E, #A80E13);  
    background-image: -o-linear-gradient(#E4272E, #A80E13);
    background-image: -ms-linear-gradient(#E4272E, #A80E13);
    background-image: linear-gradient(#E4272E, #A80E13);
}

#menu_kategorie ul li a:hover {
    background-color: #31A3DD;
   
    /*
    background-color: #E4272E;
    background-image: -moz-linear-gradient(#E4272E, #A80E13); 
    background-image: -webkit-gradient(linear, left top, left bottom, from(#E4272E), to(#A80E13));    
    background-image: -webkit-linear-gradient(#E4272E, #A80E13);  
    background-image: -o-linear-gradient(#E4272E, #A80E13);
    background-image: -ms-linear-gradient(#E4272E, #A80E13);
    background-image: linear-gradient(#E4272E, #A80E13);
    */
}

#menu_kategorie ul li ul {
    list-style: none;
}

#menu_kategorie ul li ul li {
    margin: 0;
    padding: 0;
}

#menu_kategorie ul li ul li a {
    padding: 7px 15px 7px 25px;
}

#menu_kategorie ul li ul li a:before { 
    /*content: "· ";*/
    content: "\f105  ";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

#menu_kategorie ul li ul li ul li {
    margin: 0;
    padding: 0;
}

#menu_kategorie ul li ul li ul li a {
    padding: 7px 25px 7px 65px;
}

/* CONTENT
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

article { position: relative; text-align: justify; }

article li a[href$=".pdf"] {
    padding-right: 30px;
    background: url('../grafika/ico_pdf1.png') top right no-repeat;
    line-height: 20px;
    display: inline-block;
    height: 20px;
}

article table a[href$=".pdf"] {
    padding-right: 25px;
    background: url('../grafika/ico_pdf1.png') top right no-repeat;
    line-height: 20px;
    display: inline-block;
    height: 20px;
}

/* OFERTA
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

#nawigator {
    margin-bottom: 10px; 
    font-size: 12px; 
}

#nawigator a {
    text-decoration: none;
}

#nawigator a:hover {
    color: #31A3DD;
}

#nawigator { color: #FFF; border: 0; background: #2F63B3; padding: 10px 20px 0px 20px; margin: 0; }
#nawigator a { color: #FFF; }

/* GALLERY
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

ul.galeria {
    list-style-type: none;
    margin: 20px 0;
    clear: both;
    overflow: hidden;
}

ul.galeria li { 
    width: 190px;   
    margin: 0 20px 20px 0;
    overflow: hidden;
    display: block; 
    float: left; 
}

ul.galeria li:nth-child(4n+4) { 
    margin-right: 0; 
}

ul.galeria li img {
    width: 100%;
    display: block;
}

ul.galeria:after {
    clear: both;
    display: table; 
    line-height: 0; 
    content: ""; 
}

/* OFERTA
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

#oferta_kategorie {
    margin-top: 20px;
}

.oferta_kategoria { 
    width: 190px; 
    float: left;
    display: block; 
    height: 230px;
    margin: 0 20px 20px 0;
    position: relative; 
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    overflow: auto;
}

.oferta_kategoria { 
    border-bottom: 2px solid #2F63B3;
}

.oferta_kategoria a { 
    display: block;
}
.oferta_kategoria:hover a { 
    color: #E4272E;
}

.oferta_podkategoria_silniki {
    height: auto !important;
    border: 0;
    width: auto;
}

.oferta_podkategoria_silniki:hover a { 
    color: #FFF;
}

.button2 { 
    -webkit-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    -moz-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    color: #FFFFFF;
    background: #2F63B3; 
    display: inline-block;
    padding: 15px 15px; 
    font-size: 22px;
    line-height: normal;
    position: relative;
    text-decoration: none;
    margin: 20px auto;
    border: 0;
}

.button2:hover { color: #FFFFFF !important; background: #31a3dd; }
.button2.active { color: #FFFFFF !important; background: #e4272e; }

/* SILNIKI FORM
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

#silniki-kryteria {
	text-align: center;
}

#silniki-kryteria .item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	display: block;
	float: left;
	padding: 0 10px;
	width: 25%;
}

#silniki-kryteria .item select {
    width: auto;
    background: #2f63b3 ;
    color: #FFF;
    font-weight: 600;
}

#silniki-kryteria .item select.active {
    background: #e4272e;
}

#silniki-kryteria .item select:focus {

}

#silniki-kryteria .item label {
    float: none;
    width: auto;
    display: block;
    font-weight: 700;
    padding-bottom: 10px;
    font-size: 16px;
}

#silniki-kryteria .submit {
    padding: 10px 15px;
    font-weight: 600;
}

/* OFERTA - PRODUKTY
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

#produkty {
    margin-top: 20px; 
}

.produkty {
    margin-top: 20px; 
}

.produkt_box {
    width: 190px; 
    float: left;
    display: block; 
    height: 230px;
    margin: 0 20px 20px 0;
    position: relative; 
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.produkt_box:first-child { 
    clear: both;
}

.produkt_box { 
    /*border-bottom: 2px solid #2F63B3;*/
}

.produkt_box a { 
    display: block;
}
.produkt_box:hover a { 
    color: #E4272E;
}

.produkt_box .obrazek {
    text-align: center;
}

.produkt_box .tekst {

}

.produkt_box .info {
    text-align: right;
}

.produkt_box img {
    vertical-align: middle;
}

.produkt_box h2 {
    color: #000000;
    font-size: 17px;
    text-align: left;
    margin: 0;
    margin-bottom: 5px;
    line-height: normal;
    font-weight: bold;
}   

.produkt_box div p a[href$=".pdf"]:after {
    content: url('../grafika/ico_pdf1.png');
    padding-left: 5px;
    line-height: 20px;
}


/* COOKIES
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

#cookies-box {
    background: #FFFFFF; 
    color: #000000; 
    border-bottom: 1px solid #999999; 
    position: fixed;
    opacity: 0.95; 
    bottom: 0; 
    width: 100%; 
    z-index: 999; 
    -webkit-box-shadow: 0 2px 4px 2px #999999;
    -moz-box-shadow: 0 2px 4px 2px #999999;
    box-shadow: 0 2px 4px 2px #999999;
}

#cookies-text {
    max-width: 960px; 
    margin: 0 auto;
    padding: 15px;
    font-size: 11px;
    line-height: 18px;
    text-align: justify;
}

#cookies-close {
    font-weight: bold;
    height: 22px;
    line-height: 22px;
    width: 70px;
    text-align: center;
    border: 1px solid #999999;
    display: block;
    margin: 10px auto;
}

/* FORMS
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

input, textarea, select { padding: 12px 10px; }
input[type="submit"] { width: auto; cursor: pointer; border: 0; }

.form { padding: 8px 10px; border: 1px solid #C9C8C6; font-size: 14px; }
.form:focus { border-color: #F3896E; }
form .blad .form { border: 1px solid #FFBABA; }     
        
/* WebKit browsers */
::-webkit-input-placeholder { 
    color: #000;
    font-size: 14px;
}

/* Mozilla Firefox 4 to 18 */
:-moz-placeholder { 
    color: #000;
    font-size: 14px;
}

/* Mozilla Firefox 19+ */
::-moz-placeholder { 
    color: #000;
    font-size: 14px;
}

/* Internet Explorer 10+ */
:-ms-input-placeholder { 
    color: #000;
    font-size: 14px;
}
 
/* WebKit browsers */       
#form_contact .blad ::-webkit-input-placeholder { 
    color: #FF1616; 
}

/* Mozilla Firefox 4 to 18 */
#form_contact .blad :-moz-placeholder { 
    color: #FF1616; 
}

/* Mozilla Firefox 19+ */
#form_contact .blad ::-moz-placeholder { 
    color: #FF1616; 
}

/* Internet Explorer 10+ */
#form_contact .blad :-ms-input-placeholder { 
    color: #FF1616; 
}
     
#form_contact { padding: 0px; margin-top: 20px; margin-bottom: 20px; }
    #form_contact textarea { height: 180px; }
    #form_contact .f_maxlength { font-size: 10px; }
    #form_contact .left { width: 48%; float: left; }
    #form_contact .right { width: 50%; float: right; }
    #form_contact .full { clear: both; }

.submit { 
    -webkit-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    -moz-box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    box-shadow: 3px 3px 0 rgba(201, 201, 201, 1);
    color: #FFFFFF;
    background: #2F63B3; 
    display: inline-block;
    padding: 7px 15px; 
    font-size: 14px;
    line-height: normal;
    position: relative;
    text-decoration: none;
}

.submit:hover { color: #FFFFFF; background: #31a3dd; }

.form-group { font-size: 14px; margin-bottom: 10px; clear: both; }
.form-horizontal .control-label {
    float: left;
    width: 200px;
    margin: 6px 10px 0 0;
    text-align: right;
}
.form-horizontal .form-offset { margin-left: 210px; }
.form-horizontal input.form { width: 430px; }
.form-horizontal select.form { width: 450px; }
.form-horizontal textarea.form { width: 430px; height: auto; }

.checkbox-inline, .radio-inline {
    cursor: pointer;
    display: inline-block;
    padding-right: 10px;
    vertical-align: middle;
    margin-top: 7px;
}

/* OTHER
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

.contact_half {
    float: left;
    width: 400px; 
}

.resp-tabs-list li {
    font-size: 15px;
}

.resp-tab-item {
	position: relative;
	padding-left: 15px;
	color: #2F63B3;
}

.resp-tab-item:hover {
    color: #E0252C;
}

.resp-tab-item:before {
    content: "\f10c";
    font-family: FontAwesome;
    left: -5px;
    position: relative;
    top: 0;
}

.resp-accordion:before {
    content: "\f10c";
    font-family: FontAwesome;
    left: -5px;
    position: relative;
    top: 0;
}

.resp-tab-active {
    background: #2f63b3 none repeat scroll 0 0;
    color: #FFF;
}

h2.resp-tab-active {
    background: #2f63b3 none repeat scroll 0 0 !important;
}

.resp-tab-active:hover {
    color: #FFF;
}

.resp-tab-active:before {
    content: "\f192";
    font-family: FontAwesome;
    left: -5px;
    position: relative;
    top: 0;
 }


/* MESSAGES
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

.message_info, .message_success, .message_warning, .message_error, .message_validation {
    border: 1px solid; 
    margin: 10px auto; 
    padding: 15px 10px 15px 50px; 
    background-repeat: no-repeat; 
    background-position: 10px center; 
    width: 500px; 
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px; 
}

.message_info { color: #00529B; background-color: #BDE5F8; background-image: url('../grafika/icons/info.png'); }
.message_success { color: #4F8A10; background-color: #DFF2BF; background-image:url('../grafika/icons/success.png'); }
.message_warning { color: #9F6000; background-color: #FEEFB3; background-image: url('../grafika/icons/warning.png'); }
.message_error { color: #000000; background-color: #FFBABA; background-image: url('../grafika/icons/error.png'); }
.message_validation { color: #D63301; background-color: #FFCCBA; background-image: url('../grafika/icons/validation.png'); }

#tooltip { position: absolute; border:0; background: #F28E00; color: #FFFFFF; padding: 3px 6px 3px 6px; display: none; z-index: 100; }

/* HELPERS
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

.left { float: left; }
.hide { display: none; }
.right { float: right; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.block { display: block; }

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }

.bold { font-weight: bold; }
.italic { font-style: italic; }
.underline { border-bottom: 1px solid; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }

.clearfix { *zoom: 1; }
.clearfix:before, 
.clearfix:after { display: table; line-height: 0; content: ""; }
.clearfix:after { clear: both; }
.clear { clear: both; }
-->

 #nav {
    position:relative;
    width:620px;
    margin:0 auto;
}
 
ul#menu {
    margin:0px auto;
    position:relative;
    float:left;
   
}
 
ul#menu li {
    display:inline;
    font-size:12px;
    font-weight:bold;
    margin:0;
    padding:0;
    float:left;
    position:relative;
    
}
 
ul#menu li a {
    padding:10px 25px;
   
    text-decoration:none;
    display:inline-block;

  
 
     
    -webkit-transition:color 0.2s linear, background 0.2s linear;    
    -moz-transition:color 0.2s linear, background 0.2s linear;    
    -o-transition:color 0.2s linear, background 0.2s linear;    
    transition:color 0.2s linear, background 0.2s linear;    
}
 
ul#menu li a:hover {
  
}
 
ul#menu li:hover > a {
}
ul#menu li:hover > ul
{
    visibility:visible;
    opacity:1;
}
 
ul#menu ul, ul#menu ul li ul {
    list-style: none;
    margin: 0;
    padding: 0;    
    visibility:hidden;
    position: absolute;
    z-index: 99999;
    width:280px;
    
    box-shadow:1px 1px 3px #2F63B3;
    opacity:0;
    -webkit-transition:opacity 0.2s linear, visibility 0.2s linear; 
    -moz-transition:opacity 0.2s linear, visibility 0.2s linear; 
    -o-transition:opacity 0.2s linear, visibility 0.2s linear; 
    transition:opacity 0.2s linear, visibility 0.2s linear;     
}
 
ul#menu ul {
    top: 43px;
    left: 1px;
}
 
ul#menu ul li ul {
    top: 0;
    left: 281px;
}
 
ul#menu ul li {
    clear:both;
    width:100%;
    border:0 none;
    border-bottom:1px solid #fff;
	background-color: #31A3DD;
}
 
ul#menu ul li a {
    background:none;
    padding:7px 15px;
    color:#fff;
    text-shadow:1px 1px 0px #2F63B3;
    text-decoration:none;
    display:inline-block;
    border:0 none;
    float:left;
    clear:both;
    width:250px;
}
 
ul#menu li a.first {
    border-left: 0 none;
}
 
ul#menu li a.last {
    border-right: 0 none;
}

nav ul ul {
    display: block !important;
}


 
 @media screen and (max-width: 990px) {
.nav-menu{
padding: 25px 0;
margin: 0 auto;
position: relative;
}
}
 @media screen and (min-width: 991px) {
.nav-menu{
padding: 25px 0;
width: 1170px;
margin: 0 auto;
position: relative;
}
}
.bradcrumb
{
color: #FFF;
border: 0;
background: #2F63B3;
padding: 10px 20px 0px 20px;
margin: 0;
font-size: 12px;	
height: 18px;
}
.bradcrumb li a{
color: #FFF;
font-size: 12px;		
}
.bradcrumb li {
float: left;
list-style-type: none;
} 

.menu_shop {
    background: #2f63b3;
    color: #FFFFFF;
    font-weight: bold;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    margin-left: 5px;
    
}

.menu_shop2 {
    background: #FFFFFF !important;
    color: #2f63b3 !important;
    font-weight: bold;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    margin-left: 5px;
    display: inline-block !important;
    margin-bottom: 10px;
}