/* 
    Created on : 13.04.2015, 13:59:52
    Author     : Vitaliy Savchenko
*/
/*@import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,700,400italic);*/
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,800);
/*@import url(http://fonts.googleapis.com/css?family=Exo+2:400,600,700,800,900,300);*/
* {
    margin: 0;
    padding: 0;
    outline: 0;
    /*    font-family: 'Ubuntu', sans-serif;*/
    font-family: 'Open Sans', sans-serif;
    /*    font-family: 'Exo 2', sans-serif;*/
}
/*-------------------- Body ---------------------*/
body {
    background-color: white;
}
/*-------------------- Main ---------------------*/
#main {
    width: 1000px;
    margin: 0 auto;
    background-color: white;
    color: #666666;
    box-sizing: border-box;
}
/*-------------------- Header ---------------------*/
header {
    width: 100%;
    background-color: white;
}
span.title_desc {
    padding: 2px 7px;
    margin-left: 18px;
    color: white;
    background-color: #420389;
}

.wrapper_header {
    margin: 0 auto;
    width: 1000px;
    /*    position: relative;*/
    /*    border: 1px solid blue;*/
}
.wrapper_inheader_left {
    float: left;
    display: inline;
}
.wrapper_inheader_right {
    float: right;
    /*    display: block;*/
    width: 60%;
}
/*-------------------- Suche line ---------------------*/
.search form {
    height: 30px;
}
.search {
    /*width: 240px;*/
    height: 30px;
    position: relative;
    text-align: right;
    display: block;
    color: #CECECE;
    margin: 5px 30px 5px 0;
}
.search input[type="text"] {
    height: 30px;
    border: none;
    border-bottom: 2px solid cadetblue;
    background-color: #fff;
    padding: 3px 10px;
    box-sizing: border-box;
    color: #055557;
}
.search input[type="text"]:focus {
    background-color: rgba(95, 158, 160, 0.2);
}
.search input[type="submit"]{
    border: none;
    width: 30px;
    height: 30px;
    background: cadetblue;
    background-image: url(http://genekam.de/images/search_btn.png);
    background-position: center center;
    background-size: cover;
    position: absolute;
}
.search input[type="submit"]:hover{
    background-color: #055557;
    cursor: pointer;
}
.fixed {
    position: fixed;
    top: 0;
    right: 0;
}
/* WebKit, Blink, Edge */
::-webkit-input-placeholder { 
    color: cadetblue;
}
/* Mozilla Firefox 4 to 18 */
:-moz-placeholder { 
   color: cadetblue;
   opacity:  1;
}
/* Mozilla Firefox 19+ */
::-moz-placeholder { 
   color: cadetblue;
   opacity:  1;
}
/* Internet Explorer 10-11 */
:-ms-input-placeholder { 
   color: cadetblue;
}
/*-------------------- Adress line ---------------------*/
.adress {
    font-size: 14px;
    color: red;
    text-align: right;
}
/*-------------------- Language line ---------------------*/
.lang {
    /*    display: inline;*/
    /*    float: right;*/
    text-align: right;
    height: 32px;
}
/*-------------------- Language Navigation ---------------*/
ul.languageNav {
    text-align: left;
    display: inline;
    margin: 0;
    list-style: none;
}
ul.languageNav li {
    display: inline-block;
    position: relative;
    /*  padding: 15px 20px;*/
    background: #fff;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
ul.languageNav li:hover {
    background: #FFF;
    color: #000;
}
ul.languageNav li ul {
    padding: 0;
    position: absolute;
    top: 32px;
    left: 0;
    width: 32px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transiton: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -transition: opacity 0.2s;
}
ul.languageNav li ul li { 
    background: #FFF; 
    display: block; 
    color: #000;
    text-shadow: 0 -1px 0 #000;
}
ul.languageNav li ul li:hover { background: #FFF; }
ul.languageNav li:hover ul {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 105;
}

/*-------------------- Main Slider ---------------------*/
#main_slider {
    width: 100%;
    max-height: 400px; 
    background-color: activeborder;
    overflow: hidden;
}
#main_slider img {
    width: 100%;
    max-height: 600px;
}
/*-------------------- Navigation Menu ---------------------*/
nav {
    width: 1000px;
    position: relative;
    display: block;
}
nav ul {
    padding: 0px;
    margin: 0px;

    /*    box-shadow: 2px 2px 2px #dfdfdf;
        -moz-box-shadow: 2px 2px 2px #dfdfdf;
        -webkit-box-shadow: 2px 2px 2px #dfdfdf;*/
}

nav ul:after {
    clear: both;
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
}

nav ul,nav ul li{
    background-color: #FFF;
}
nav ul li {
    list-style: none;
    float:left;

    /*    border-right: 1px solid #dfdfdf;*/
}
nav ul li a {
    text-decoration: none;
    display: block;
    color: #056C8E;
    padding: 14px 34px 14px 34px;

    transition: background 0.3s ease-out; /* explorer 10 */
    -webkit-transition: background 0.3s ease-out; /* chrome & safari */
    -moz-transition: background 0.3 ease-out; /* firefox */
    -o-transition: background 0.3 ease-out; /* opera */
}
nav ul li.cat1:hover a, nav ul li.cat1:hover > ul li a  {
    background-color: #FF8800;
}
nav ul li.cat2:hover a, nav ul li.cat2:hover > ul li a  {
    background-color: #008C74;
}
nav ul li.cat3:hover a, nav ul li.cat3:hover > ul li a {
    background-color: cadetblue;
}
nav ul li.cat4:hover a, nav ul li.cat4:hover > ul li a {
    background-color: #004C66;
}
nav ul li.cat5:hover a, nav ul li.cat5:hover > ul li a {
    background-color: #332B40;
}
nav ul li.cat6:hover a, nav ul li.cat6:hover > ul li a {
    background-color: #056C8E;
}
nav ul li.cat7:hover a, nav ul li.cat7:hover > ul li a  {
    background-color: #2D37EF;
}
nav ul li.cat8:hover a, nav ul li.cat1:hover > ul li a  {
    background-color: #007788;
}
nav ul li:hover > a {
    color: #FFF;
}
nav ul li:hover > ul {
    visibility: visible;
}

nav ul li ul{
    display: inline;
    visibility: hidden;
    position: absolute;
    padding:0px;
    z-index: 101;
}
nav ul li ul li{
    float: none;
}
nav ul li ul li a {
    color: #FAFAFA;
}
nav ul li ul li a:hover{
    color: #333;
    background-color: #FAFAFA !important;
}
/*----------------- Mobile JQuery Navigation Menu -----------------*/
#mobile-menu {
    display: none;
    width: 100%;
    min-height: 50px;
    cursor: pointer;
    //background-color: #33B5E5;
    line-height: 50px;
    text-align: right;
    color: black;
}
#mobile-menu .icon {
    margin-right: 10px;
    margin-top: 10px;
}
.mobile-menu {
    display: none;
}
.mobile-menu li{
    list-style: none;
}
.mobile-menu li a{
    width: 100%;
    display: block;
    height: 50px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    padding: 10px;
    box-sizing: border-box;
    background-color: #056C8E;
}
.mobile-menu li a:hover {
    background-color: #16B3E7;
}
/*------- animated border-bottom ------*/
.cmn-t-underline {
    position: relative;
    /*  color: #ff3296;*/
}
.cmn-t-underline:after {
    display: block;
    position: absolute;
    left: 0;
    /*    bottom: -10px;*/
    top: -5px;
    width: 0;
    height: 3px;
    background-color: cadetblue;
    content: "";
    transition: width 0.2s;
}

.cmn-t-underline:hover {
    /*  color: #98004a;*/
}
.cmn-t-underline:hover:after {
    width: 100%;
}

/*-------------------- Wrapper Info ---------------------*/
.wrapper_info {
    margin: 0 auto;
    width: 1000px;
    height: 150px;
    position: relative;
    margin-top: -100px;
    z-index: 100;
    margin-bottom: 20px;
}
.info_box {
    width: 320px;
    height: 150px;
    background-color: black;
    overflow: hidden;
    float: left;
    margin-right: 20px;
    -webkit-box-shadow: 0px 0px 20px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px -7px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px -7px rgba(0,0,0,0.75);
    box-sizing: border-box;
}
.info_box:last-child {
    margin-right: 0px;
}

/*-------------- Info-Box Content Style ------------*/
.box_content {
    height: 100%;
    /*    padding: 3px 5px 3px 5px;*/
}
.box_content span.title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    /*    color: #00478F;*/
}
.box_content p {
    /*    color: white;*/
    height: 105px;
    font-size: 18px;
    font-weight: 400;
    margin: 0px 0px 0px 10px;
}

/*-------------------- Content ---------------------*/
.content_fullwidth {
    width: 100%;
    box-sizing: border-box;
}
.content_fullwidth img {
    max-width: 100%;
    display: inline;
    float: left;
    margin: 10px 20px 0 0;
}
.content_fullwidth p {
    line-height: 2;
    font-size: 16px;
    font-weight: 400;
    color: black;
}
.content_fullwidth h1 {
    color: #232071;
    letter-spacing: 0px;
    margin: 10px 0;
    font-size: 26px;
}
.calls_200 {
    width: 200px;
    height: 200px;
    box-sizing: border-box;
    /*    background-color: #cecece;*/
    float: left;
    border-left: 1px solid black;
    margin-bottom: 10px;
    padding-left: 10px;
}
.calls_200 a {
    font-size: 13px;
    font-weight: 500;
    display: block;
    text-decoration: none;
    color: #00478F;
}
.calls_200 a:hover {
    font-weight: 600;
    color: #84BBF2;
}
.content-box {
    width: 490px;
    float: left;
    box-sizing: border-box;
}
.content-produkte a {
    text-decoration: none;
    color: #00478F;
    font-weight: 600;
}
a.title {
    font-size: 24px;
    color: #8B0000;
    text-decoration: none;
    border-bottom: 1px solid #CECECE;
    display: block;
    margin-bottom: 10px;
}
.content-produkte {

}
.content-produkte li {
    list-style-position: inside;
    list-style-type: circle;
    margin-left: 20px;
}
/*------------------------------------------------------ Products Style -----*/
.product_button a{
    width: 490px;
    height: 60px;
    background-color: #6F1336;
    color: white;
    margin: 0 0 10px 10px;
    float: left;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    font-size: 24px;
}
.product_button a:hover {
    background-color: #C23C6F;
    text-decoration: none;
}
.product_button_small a{
    width: 490px;
    height: 40px;
    background-color: #6F1336;
    color: white;
    margin: 0 0 10px 10px;
    padding-top: 12px;
    float: left;
    text-align: center;
    text-decoration: none;
    line-height: 20px;
    font-size: 16px;
}
.product_button_small a:hover {
    background-color: #C23C6F;
    text-decoration: none;
}
.product_button_small_no_action a{
    width: 490px;
    height: 40px;
    background-color: #6F1336;
    color: white;
    margin: 0 0 10px 10px;
    padding-top: 12px;
    float: left;
    text-align: center;
    text-decoration: none;
    line-height: 20px;
    font-size: 16px;
}
/*---------  DE  ---------*/
.product_button_de a{
    width: 100%;
    min-height: 60px;
    background-color: #6F1336;
    color: white;
    margin: 0 0 10px 10px;
    float: left;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    font-size: 24px;
}
.product_button_de a:hover {
    background-color: #C23C6F;
    text-decoration: none;
}

/*-------------------- Footer ---------------------*/
footer {
    width: 100%;
    height: auto;
    color: cadetblue;
    margin-top: 20px;
    border-top: 2px solid cadetblue;
    float: left;
}
footer .oneline {
    width: 100%;
    min-height: 50px;
    line-height: 50px;
    text-align: center;
}
footer .last_update {
    font-size: 12px;
    color: tomato;
    text-align: center;
}
.wrapper_footer {
    width: 320px;
    color: #666666;
    margin-right: 20px;
    float: left;
    padding-left: 50px;
    box-sizing: border-box;
}
.wrapper_footer:last-child {
    margin-right: 0px;
}
/*-------------------- News ---------------------*/
.news {
    width: 100%;
    display: block;
    /*float: left;*/
    margin-bottom: 20px;
}
.news img {
    max-width: 300px;
    display: block;
    float: left;
    margin: 0 20px 10px 0;
}
/*.news:nth-child(3){
    margin-right: 0;
}*/
.news p {
    color: #000;
    font-size: 14px;
    /*text-align: justify;*/
    line-height: 20px;
    margin-bottom: 10px;
}
.article_footer {
    border-top: 1px solid #CECECE;
    font-size: 14px;
    font-weight: 300;
    clear: both;
}
.article_footer a {
    float: right;
    text-decoration: none;
    color: #8B0000;
}
/*-------------------- h1 h2 h3 ---------------------*/
h2 {
    display: block;
    margin: 10px 0;
    font-size: 20px;
    font-weight: bold;
    color: #055557;
}
/*-------------------- Other ---------------------*/
.clear {
    clear: both;
}
.meldung-positiv {
    color: green;
    font-size: 18px;
    /*    padding: 5px;
        border: 1px solid green;
        box-sizing: border-box;*/
}
.meldung-negativ {
    color: red;
    font-size: 18px;
    /*    padding: 5px;
        border: 1px solid red;
        box-sizing: border-box;*/
}
/*------------------ Table Style ---------------*/
table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #056C8E;
    float: left;
}
th {
    /*    border: 1px solid #CECECE;*/
    padding: 2px 10px;
    text-align: center;
    background-color: #056C8E;
    color: white;
    font-weight: normal;
}
td{
    /*    border: 1px solid #CECECE;*/
    padding: 2px 10px;
    text-align: center;
    border-right: 1px solid #056C8E;
}
td:first-child  {
    min-width: 80px;
}
td:nth-child(2)  {
    text-align: left;
}
tr:nth-child(even) {background-color: #EDEDED}
tr:nth-child(odd) {background-color: #FFF}

table a {
    color: #056C8E;
    text-decoration: none;
}
table a:hover {
    text-decoration: underline;
}
/*----------------- Box-Style ---------------*/
.info_box a.readmore {
    padding: 0px 5px;
    text-decoration: none;
    font-size: 13px;
}
.info_box .box_content_footer {
    /*    width: 320px;*/
    position: relative;
    width: 100%;
    text-align: right;
    /*    right: 0;*/
    /*    bottom: 0px;*/
    /*    text-align: right;*/
}
.info_box span.title {
    padding-left: 10px;
}
.info_box a {
    text-decoration: none;
}
.info_box a:hover {
    text-decoration: underline;
}
/*--- Cadetblue Style ---*/
.cadetblue_bg {
    background-color: cadetblue;
}
.cadetblue_bg span.title {
    color: white;
    background-color: #055557;
}
.cadetblue_bg p {
    color: white;
}
.cadetblue_bg a.readmore {
    color: white;
    background-color: #055557;
}
.cadetblue_bg a {
    color: #B9F9FA;
}
/*--- Tomato Style ---*/
.tomato_bg {
    background-color: tomato;
}
.tomato_bg span.title {
    color: white;
    background-color: red;
}
.tomato_bg p {
    color: white;
}
.tomato_bg a {
    color: #FFBB33;
}

.tomato_bg a.readmore {
    color: white;
    background-color: red;
}
/*--- Blue Style ---*/
.blue_bg {
    background-color: #33B5E5;
}
.blue_bg span.title {
    color: white;
    background-color: #056C8E;
}
.blue_bg p {
    color : white;
}
.blue_bg a {
    color: #043C4F;
}
.blue_bg a.readmore {
    color: white;
    background-color: #056C8E;
}
/*--- Violett-white Style ---*/
.vio-white_bg {
    background-color: white;
}
.vio-white_bg span.title {
    color: white;
    background-color: #420389;
}
.vio-white_bg p {
    color: #2D37EF;
}
.vio-white_bg a.readmore {
    color: white;
    background-color: #420389;
}
.vio-white_bg a {
    color: #420389;
    text-decoration: underline;
}
/*----------------- Input Style --------------------*/
input {
    width: 200px;
    height: 30px;
    margin-bottom: 10px;
}
textarea {
    width: 500px;
    height: 200px;
    display: block;
}
button {
    margin: 10px 10px 10px 0;
    padding: 5px 15px;
    cursor: pointer;
}
button[type="reset"] {
    background-color: red;
    border: 1px solid darkred;
    color: white;
}
button[type="reset"]:hover{
    background-color: darkred;
}
button[type="submit"]{
    background-color: green;
    border: 1px solid darkgreen;
    color: white;
}
button[type="submit"]:hover{
    background-color: darkgreen;
}
/*----------------- Very Simple Slider --------------------*/
.simple_slider {
    position: relative;
    overflow: hidden;
    /*  margin: 20px auto 0 auto;*/
    /*  border-radius: 4px;*/
}

.simple_slider ul {
    position: relative;
    margin: 0;
    padding: 0;
    height: 200px;
    list-style: none;
}

.simple_slider ul li {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    width: 320px;
    height: 150px;
    /*  background: #ccc;*/
    /*  text-align: center;*/
    /*  line-height: 300px;*/
}

a.control_prev, a.control_next {
    position: absolute;
    top: 30%;
    z-index: 999;
    display: block;
    /*  padding: 4% 3%;*/
    width: auto;
    height: auto;
    /*  background: #2a2a2a;*/
    /*    background: white;*/
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.3;
    cursor: pointer;
    display: none;
}

a.control_prev:hover, a.control_next:hover {
    opacity: 1;
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
}

a.control_prev {
    /*  border-radius: 0 2px 2px 0;*/
    padding: 20px 0px 20px 5px;
}

a.control_next {
    right: 0;
    /*  border-radius: 2px 0 0 2px;*/
    padding: 20px 5px 20px 0px;
}

/*----------------- Responsive ab 1000px ------------------*/
@media (max-width: 1000px){
    #main {
        width: 100%;
    }
    .wrapper_header {
        width: 100%;
    }
    .wrapper_info {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 990px){
    .wrapper_info {
        width: 680px;
        height: 300px;
    }
    .info_box:last-child {
        width: 660px;
        margin-top: 5px;
    }
    nav ul li a {
        padding: 14px;
    }
}
@media (max-width: 660px){
    nav {
        display: none;
    }
    #mobile-menu {
        display: block;
    }
    .mobile-menu {
        display: block;
    }
    .wrapper_info {
        width: 100%;
        margin: 0;
        //height: 450px;
    }
    .wrapper_inheader_left img {
        width: 100%;  
    }
    .wrapper_inheader_right{
        width: 100%;  
    }
    .info_box {
        margin-right: 0;
        width: 100%;
        height: 100px;
    }
    .box_content p {
        width:100%;
        height: 55px;
        margin-left: 0;
        box-sizing: border-box;
    }
    .info_box:last-child {
        width: 100%;
    }
    .table_scrollable{
        width: 100%;
        overflow-y: auto;
    }
}
/*@media (max-width: 440px){
    table td:nth-child(3) {
        display: hide;
    }
}*/
@media (max-width: 320px){
    #main_slider {
        width: 100%;
    }
    #main_slider img {
        width: 100%;
    }
    .wrapper_info {
        width: 100%;
        //height: 450px;
        margin-top: 0;
    }
    .info_box{
        margin-right: 0;
    }
    .info_box:last-child {
        width: 320px;
    }
    /*    table{
            width: 320px;
        }
        html {
            width: 320px;
        }*/
}
.img_right {
    position: absolute;
    right: 20px;
}
.img_right1 {
    position: relative;
    right: 0px;
}