@media ( min-width: 1200px) {}

@media ( min-width: 992px) {}

@media ( min-width: 769px) {}

@media ( max-width: 768px) {}

/* barlow-regular - latin */
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/barlow-v5-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/barlow-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/barlow-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/barlow-v5-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/barlow-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/barlow-v5-latin-regular.svg#Barlow') format('svg'); /* Legacy iOS */
  }
  /* barlow-600 - latin */
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/barlow-v5-latin-600.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/barlow-v5-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/barlow-v5-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/barlow-v5-latin-600.woff') format('woff'), /* Modern Browsers */
         url('../fonts/barlow-v5-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/barlow-v5-latin-600.svg#Barlow') format('svg'); /* Legacy iOS */
  }
  /* barlow-700 - latin */
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/barlow-v5-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/barlow-v5-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/barlow-v5-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/barlow-v5-latin-700.woff') format('woff'), /* Modern Browsers */
         url('../fonts/barlow-v5-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/barlow-v5-latin-700.svg#Barlow') format('svg'); /* Legacy iOS */
  }

body {
    --primary-color: #292826;
    
}

h1 {
    color: var(--primary-color);
}

@media only screen and (min-width: 993px) {
    .container {
        width: 90%;
    }
}

a:focus {
    outline: none !important;
}

* {
    border: 0px;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.4);
    box-sizing: border-box;
}

*::selection {
    background: #ccc;
    color: #fff;
}

textarea,
input[type="text"] {
    -webkit-appearance: none;
}

html,
body {
    height: 100%;
}

body {
    background-color: #eeeeee;
    color: var(--primary-color);
    font-family: 'Roboto', Arial, Verdana, sans-serif;
    font-size: 15px;
    -webkit-text-size-adjust: none;
    font-weight: 400;
}

div {
    position: relative;
}

img,
iframe,
video {
    vertical-align: bottom;
}

img {
    max-width: 100%;
    height: auto;
}

.image-fitted {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: .6s;
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: 50% 50%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 10px 0;
    -webkit-hyphens: auto;
    hyphens: auto;
    word-wrap: break-word;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 18px;
    text-transform: uppercase;
}


@media ( max-width: 768px) {
    h1 { font-size: 30px; }
    h2 { font-size: 24px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 16px; }
    h6 { font-size: 16px; }
}

p {
    margin: 0 0 10px 0;
    line-height: 1.45em;
    letter-spacing: 0.02em;
    -webkit-hyphens: auto;
    hyphens: auto;
}

p a {
    color: #666;
}

p a:hover {
    color: #888;
}

a.readmore:after {
    font-family: 'FontAwesome';
    content: '\f105';
    margin: 0 0 0 5px;
    transform: translate(0, 1px);
    color: #b7ce00;
    display: inline-block;
    transition: .1s;
}

a.readmore:hover:after {
    transform: translate(3px, 1px);
}

.no-hyphens {
    -webkit-hyphens: none;
    hyphens: none;
    word-wrap: break-word;
}

strong, b{
    font-weight: 700;
}

hr {
    height: 0;
    margin: 20px 0;
    border-bottom: 3px solid #ccc;
    width: 100px;
    text-align: left;
}

/* LAYOUT */

.bodywrap {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.innerwrap {
    min-height: calc(100vh - 85px);
}

.section {
    width: 100%;
    padding: 0;
}


.row {
    margin-bottom: 0;
}

/*.col{outline: 1px dotted #ccc;}*/

.padding30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padding70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.paddingbottom10 {
    padding-bottom: 10px;
}

.paddingbottom20 {
    padding-bottom: 20px;
}

.spacer10 {
    height: 10px;
}

.spacer20 {
    height: 20px;
}

.spacer30 {
    height: 30px;
}

.spacer50 {
    height: 50px;
}

@media ( max-width: 768px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .wrap {
        width: 100%;
    }
    .padding30 {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .padding50 {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .padding70 {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .spacer10 {
        height: 5px;
    }
    
    .spacer20 {
        height: 10px;
    }
    
    .spacer30 {
        height: 15px;
    }
    
    .spacer50 {
        height: 25px;
    }
}

.bodywrap {
    margin: 0 auto 0;
}

.footer {
    margin: 0 auto;
    width: 100%;
    padding: 30px 0 34px 0;
    transition: transform .15s;
    color: var(--primary-color);
    text-align: right;
    font-size: 14px;
}

.footer a {
    color: var(--primary-color);;
}

.footer a:hover {
    opacity: .7;
}

@media ( max-width: 768px) {
    .footer {
        height: auto;
    }
    .bodywrap {
        margin: 0 auto;
        min-height: auto;
        height: auto;
    }
    .push {
        height: auto;
        display: none;
    }
}


/* **** FULLSCREEN ********* */

.fullscreen {
    min-height: 100%;
    width: 100%;
    display: table;
    padding: 30px;
}

.fullscreencontent {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

table{
    max-width: 100%;
    box-sizing: border-box;

}

table td{
    text-overflow: ellipsis;
    box-sizing: border-box;
    max-width: 20%;

}

/* NAVIGATION */

.navigation {
    position: absolute;
    right: 15px;
    top: 30px;
}

.navigation ul {
    list-style: none;
    margin-bottom: 0;
}

.navigation ul li {
    margin: 0 0 0 20px;
    float: left;
}

.navigation ul li a {
    display: block;
    color: #000;
    text-transform: uppercase;
}

.navigation ul li a:hover {
    opacity: 0.5;
}

.navigation ul li a.current {
    color: #666;
    font-weight: bold;
}

.navigation ul li a.current:hover {
    opacity: 1;
}

.navigation ul li ul {
    position: absolute;
    z-index: 100;
    left: 0px;
    padding-top: 10px;
    display: none;
    padding-bottom: 20px;
}

.navigation ul li ul li {
    float: none;
    border-left: 0;
    padding: 5px 0 6px 0px;
    min-width: 400px;
}

.navigation ul li ul li a {
    text-transform: none;
    font-weight: inherit;
}

.navigation ul li a.current, .current-menu-item a, .current-page-parent a:not(.sub-menu a){
    color: var(--secondary-color) !important;
    font-weight: bold !important; 
}

.current-menu-item ul li a{ 
    color: #000 !important;
    font-weight: 300 !important;
}

.navoverlay {
    background: #f6f6f6;
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 110px;
    z-index: 99;
    transition: 0.15s;
    opacity: 0.4;
    display: block !important;
    z-index: 99;
}


/* CUSTOM */

.header {
    padding-top: 40px;
    padding-bottom: 40px;
}

.logo {
    width: 200px;
}

@media ( max-width: 768px) {
    .header {
        padding-top: 20px;
        padding-bottom: 15px;
    }
    .logo {
        width: 200px;
    }
}

.bg_white{
    background: #fff;
    border:1px solid #ddd;
}

.f_col{
    padding:10px 15px;
    float:left;
}

.first_f_row{
    font-weight: bold;
}

.first_f_row label{
    font-weight: 400;
}


@media ( max-width: 768px) {
    .first_f_row{
        display: none;
    }
}


.f_row:not(.first_f_row){
    border-top:1px solid #eee;
}

.f_row:not(.first_f_row):hover{
    background: rgb(245, 245, 245);
}

.f_col_1{ /*Produkt-ID*/
    width:350px;
    white-space: nowrap;                   
    overflow: hidden;              
    text-overflow: ellipsis;  
}

@media ( max-width: 768px) {
    .f_col_1{
        width:100%;
    }
}

.f_col_2{ /*ZIEL-ADRESSE*/
    width:calc(100% - 620px);
    white-space: nowrap;                   
    overflow: hidden;              
    text-overflow: ellipsis;  
    /*direction:rtl;*/
    text-align:left;
}

@media ( max-width: 768px) {
    .f_col_2{
        width:100%;
        padding:5px 15px;
    }
}


.f_col_3{ /*TAG*/
    width:calc(150px);
    display: none;
}

@media ( max-width: 768px) {
    .f_col_3{
        width:80%;
        padding:5px 15px;
    }
}

.f_col_4{
    width:80px;
    text-align: right;
}

@media ( max-width: 768px) {
    .f_col_4{
        width:20%;
        padding:5px 15px;
    }
}

.f_col_5{
    width:190px;
    text-align: right;
}

@media ( max-width: 768px) {
    .f_col_5{
        width:100%;
        text-align: right;
    }
     

}

.f_btn{
    color:var(--primary-color);
    background: #fff;
    padding: 3px 10px 2px 10px;
    border:1px solid #ddd;
    border-radius: 3px;
}

.f_btn:hover{
    color: #fff;
    background: #aaa;
    border:1px solid #ddd;
    border-radius: 3px;
    text-decoration: none;
}

.f_btn_2{
    padding: 5px 12px 5px 12px;
}

.edit_field{
    display: none;
}


a, a:hover{
    color:var(--primary-color);
}





/* VIDEO / YOUTUBE */

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
}


/* GRID */


/*<div class="grid" data-columns> */

@media ( max-width: 768px) {
    .grid[data-columns]::before {
        content: '1 .column.size-1of1';
    }
}

@media ( min-width: 769px) {
    .grid[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media ( min-width: 992px) {
    .grid[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

.column {
    float: left;
}

.size-1of1 {
    width: 100%;
}

.size-1of2 {
    width: 50%;
}

.size-1of3 {
    width: 33.333%;
}

.grid .item {
    padding: 0 15px 15px 15px;
}


/* ACC */

.acc_item {
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
    font-size: 16px;
    line-height: 22px;
}

.acc_btn {
    font-weight: 500;
    cursor: pointer;
    padding-top: 4px;
    padding-right: 15px;
}

.acc_btn p {
    margin: 0;
}

.acc_btn:after {
    font-family: 'FontAwesome';
    content: "\f0d7";
    z-index: 100;
    color: var(--primary-color);
    position: absolute;
    top: 3px;
    right: 5px;
    transition: all .2s;
}

.acc_btn.active:after {
    transform: rotate(-180deg);
}

.acc_btn:hover {
    opacity: .7;
}

.acc_content {
    padding-top: 12px;
    display: none;
}

.cms .acc_content {
    display: block;
}


/* MAP */

.map {
    height: 400px;
    background: #f9f8f8;
    width: 100%;
}

@media ( max-width: 750px) {
    .map {
        height: 250px;
    }
}


/* *** */

.arrow_up_section {
    position: fixed;
    z-index: 15;
    bottom: 0;
    padding: 0;
    margin: 0;
}

.arrow_up_section .row {
    margin-bottom: 0;
}

.arrow_up {
    position: absolute;
    right: 15px;
    bottom: -200px;
    z-index: 10;
    transition: .5s;
    background: #ccc;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 40px;
}

.arrow_up.visible {
    bottom: 0;
}

.arrow_up i {
    color: #fff;
}


/* CONTENTOVERLAY / LIGHTBOX */

.contentoverlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1250;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    text-align: center;
    padding: 40px 15px;
    display: none;
}

.contentoverlay img {
    max-width: 100%;
}

.contentoverlayclose {
    position: fixed;
    cursor: pointer;
    top: 15px;
    right: 30px;
    font-size: 20px;
    z-index: 360;
    color: #666;
}

.contentoverlayclose:hover {
    opacity: 0.5;
}


/* MARQUEE */

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-1800px, 0);
    }
}

.marqueesection {
    background: #eee;
}

.marqueewrap {
    width: 100000px;
}

.marquee.animated {
    animation: marquee 80s linear infinite
}

.marquee a {
    transition: .1s;
    display: inline-block;
    color: #c0392b
}

.marquee h3 {
    font-size: 20px;
    display: inline;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.marquee h3 a:hover {
    color: var(--primary-color);
}

.marquee h3 strong {
    font-size: 22px;
    display: inline;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--primary-color);
}

@media (max-width:800px) {
    .marquee h3 {
        font-size: 18px;
        display: inline;
    }
}


/*  * * * *  */

.fadeInOnLoad {
    opacity: 0;
    transition: .15s;
}

.clearer {
    clear: both;
}

.overflowhidden {
    overflow: hidden;
}

@media ( min-width: 769px) {
    .mobile {
        display: none !important;
    }
}

.navicon {
    position: absolute;
    right: 15px;
    top: 5px;
    height: 30px;
    width: 30px;
    display: block;
    z-index: 100;
}

.navicon .line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 2px solid var(--primary-color);
}

.navicon .line:nth-child(1) {
    top: 10px;
}

.navicon .line:nth-child(2) {
    top: 20px;
}


/* MOBILE  NAVIGATION * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

@media ( max-width: 768px) {
    .navigation {
        display: none;
    }
    .outerwrap {
        transition: transform .15s;
    }
    .shifted {
        transition: transform .15s;
        transform: translateX(-270px);
    }
    .subnav_mobile {
        background: var(--primary-color);
        position: fixed;
        width: 270px;
        top: 0;
        bottom: 0;
        right: -270px;
        transition: transform .15s;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0;
    }
    .subnav_mobile ul {
        list-style: none;
        margin:0;
    }
    .subnav_mobile ul ul {
        margin-left:10px;
    }
    .subnav_mobile ul li {
        margin: 0 0 0 0;
        text-transform: uppercase;
    }
    .subnav_mobile ul li ul li {
        text-transform: none;
    }
    .subnav_mobile ul li a {
        padding: 10px 5px 10px 20px;
        display: block;
        font-weight: 300;
        color: #fff;
        letter-spacing: 1px;
        word-wrap: break-word;
        hyphens: auto;
    }
    .subnav_mobile ul li a:hover {
        opacity: .8;
    }
    .subnav_mobile ul li a.current {
        color: #fff;
        font-weight: bold;
    }
    .subnav_mobile ul li ul {
        padding: 0 0 0 20px;
    }
    .subnav_mobile ul li ul li {}
    .subnav_mobile ul li ul li a {
        padding: 7px 0;
        color: #fff;
    }
    .subnav_mobile ul li ul li:last-child a {
        margin-bottom: 10px;
    }
    .subnav_mobile.shifted {
        /*box-shadow: 0 0 6px rgba(0, 0, 0, .3) !important;*/
    }
    .subnav_mobile_overlay {
        background: rgba(255, 255, 255, .7);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        transition: transform .15s;
    }
    .bodywrap {
        transition: transform .15s;
    }
}


/* Dots */

.slick-dotted.slick-slider {
    /*margin-bottom: 30px;*/
}

.slick-dots {
    position: absolute;
    /*bottom: -25px;*/
    bottom: 15px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 100;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: sans-serif;
    font-size: 22px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}


/* Change Autocomplete styles in Chrome*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #111 !important;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}

.owl-dots button {
    background: red;
    width: 20px;
    height: 20px;
}

.owl-nav {
    display: none;
}

.stage .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.stage .owl-dots button {
    height: 20px;
    width: 20px;
    margin:0 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 20px;
}

.stage .owl-dot.active {
    background: rgba(255,255,255,1);
}


.stage{
    background: #000;
    min-height: 80vh;
}

.stage *{
   color:#fff;
}


.owl-carousel{
    min-height: 80vh;
}

.stage .item{
    padding: 200px 0 150px 0;
    overflow: hidden;
    min-height: 80vh;
}

@media ( max-width: 768px) {
    .stage .item{
        padding: 150px 0 50px 0;
        overflow: hidden;
        min-height: 70vh;
    }
}

@keyframes wobble {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}


.stage .bgimg{
    animation: wobble 60s linear infinite;
    width: 100%;
    position: absolute;
    top:0;
    bottom:0;
}

.stage .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.stage .owl-dots button {
    height: 15px;
    width: 15px;
    margin:0 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 20px;
}

.stage .owl-dot.active {
    background: rgba(255,255,255,1);
}


.embed-responsive {
    margin-bottom: 20px;
}

/*
	These styles were extracted from bootstrap,
	so, if you already use bootstrap, you don't
	need this.
*/

.alert
{
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
}

.alert-info
{
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

.alert-danger
{
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.alert-warning
{
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}

.alert-success, .alert.success
{
	color: #3c763d;
	background-color: #dff0d8 !important;
	border-color: #d6e9c6 !important;
}

.close
{
	float: right;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .2;
}

.close:hover,
.close:focus
{
	color: #000;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: .5;
}

label{
    font-size: 13px;
    padding-top: 2px;
    margin-bottom: 5px;
}