/*
Theme Name: 	Pöschl Tobacco
Theme URI: 		http://www.icwt.de
Description: 	Pöschl Tobacco custom theme
Version: 		1.3.5
Author: 		Matthias Rösele
Author URI: 	http://www.icwt.de
Tags: 			
*/
/*
===========================
CONTENTS:

01 Sensible defaults
02 Typography
03 Containers
04 Navigation
05 Content
06 Extras
07 Admin Stuff
===========================
*/
/* ----------------------------------------------------------------------------------------------------------
01 Sensible defaults ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
@import "css/reset.css";
@import "css/webfonts.css";
@import "css/single-job.css";

/*@import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,600);*/
/*!* font-family: 'Open Sans', sans-serif; *!*/
/*@import url(//fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700);*/
/*!* font-family: 'Open Sans Condensed', sans-serif; *!*/
/*@import url(//fonts.googleapis.com/css?family=Marcellus+SC);*/
/* font-family: 'Marcellus SC', serif; */

:root{
    --color-button: #4A3400;
    --color-bg-button: #DCCDA7;
    --color-bg-button-hover: #ADA182;
    --color-link: #333D99;
}

* {
    /*outline: none !important;*/
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

div, article, section, header, footer, nav, li {
    position: relative;
}

.group:after {
    display: block;
    height: 0;
    clear: both;
    content: ".";
    visibility: hidden;
}

.clearfix:after {
    clear: both;
    display: block;
    content: '';
}

/* ----------------------------------------------------------------------------------------------------------
02 Typography -----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

html {
    font: 14px/24px 'Open Sans', sans-serif;
    font-weight: 300;
    padding: 0;
    color: #00032b;

   /* text-rendering: optimizeLegibility !important; */
    -webkit-font-smoothing: subpixel-antialiased;

    /* preventing horizontal scrollbars when sub menu is active */
    width: 100vw;
    overflow-x: hidden;
}

body, input, textarea {
}

b, strong {
    font-weight: 600;
}

.condensed {
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: 0.1em;
}

.headline_h1, .headline_h2, .headline_h3 {
    line-height: 1.2;
    margin-bottom: .5em;
    font-family: 'Marcellus SC', serif;
}

.headline_h1 {
    font-size: 37px;
}

@media screen and (max-width: 760px) {
    
    .headline_h1 {
    font-size: 25px;
    }
    
}


.headline_h2 {
    font-size: 24px;
/*
    font-size: 34px;
*/
    
}
.headline_h2.centered{
  font-size: 34px;
}

.intro .headline_h2,
.headline_h3 {
    color: #333d99;
    font: 20px/36px 'Open Sans Condensed', sans-serif;
}

.headline_h4 {
}

.text_box_repeater_list .headline_.headline_h4 {
    line-height: 1;
    font-size: 23px;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 15px;
}

.text_box_repeater_list a{
   /*color: #916700;*/ /* Level AA */
    color: var(--color-link);
}

a {
    /*color: #c4b693;*/
    color: #916700; /* Level AA */
    text-decoration: none;
}


.collapsible a,
.content a {
    color: #900;
    text-decoration: underline;
}

.collapsible a:hover,
.content a:hover {
    text-decoration: none;
}

.content .download_link {
    text-decoration: none;
    display: block;
}

p {
    margin: 0 0 1em;
}

.centered {
    text-align: center;
}

/* ----------------------------------------------------------------------------------------------------------
03 Containers -----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

html, body, .page_wrapper {
    height: 100%;
}

.page_wrapper {
    height: auto;
    min-height: 100%;
    width: 100%;
}

.content_wrapper {
    min-height: 300px;
    z-index: 1;
    margin-top: 80px;

    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.home .content_wrapper {
    margin-top: 0;
}

/* more margin for pages with child pages --> second menu line */
.page-parent .content_wrapper,
[class*="parent-pageid-"] .content_wrapper {
    margin-top: 132px;
}

.page-template-template-products .content_wrapper{
        margin-top: 80px;
}


.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: block;
    padding: 0 20px;
}

.container.full_width{
    max-width: 1400px;
}

.error404 .flex_content,
.search .flex_content {
    color: #900;
}

.search .content a {
    color: #900;
    text-decoration: underline;
}

.content {
}

.event_content {
    padding-right: 70px;
    padding-top: 0;
}

.object_content {
    padding-right: 200px;
}

.main_header {
    background: url(img/header_bg.jpg) no-repeat center top;
    background-size: cover;
    height: 235px;
    text-align: center;
}

.navigation_header {
    height: auto;
    z-index: 2;
    transition: opacity 300ms ease-in-out;
}

.navigation_header.sticky{
    position: fixed;
    top: 0;
    width: 100%;
    width: 100vw;
    opacity: .95;
}

.admin-bar .navigation_header.sticky{
    top: 32px;
}

.nav_is_sticky .content_wrapper{
    padding-top: 58px;
}




.logo_container {
    display: inline-block;
    margin-top: 66px;

    opacity: 0;

    -webkit-transition: opacity 750ms ease-in;
    -moz-transition: opacity 750ms ease-in;
    -o-transition: opacity 750ms ease-in;
    transition: opacity 750ms ease-in;

    -webkit-transition-delay: 450ms;
    -moz-transition-delay: 450ms;
    -o-transition-delay: 450ms;
    transition-delay: 550ms;

}

.logo_container.show {
    opacity: 1;
}

.logo {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 760px) {
    
    
    .navigation_header.sticky_{
        height: 100%;
        height: 100vh;
        overflow: auto;
    }
    
    
    .age_verification_logo,
    .logo{
        max-width: 60%;
        margin: 0 auto;
    }
    
    .age_verification_logo{
        margin-left: -30% !important;
    }
    
    .main_header {
        height: auto;
        padding-bottom: 40px;
    }
}

.main_footer {
    clear: both;
    position: relative;
    color: #555555;
    font-size: 12px;
    background: #dadada;
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 30px;
}


.main_footer a {
    color: #555555;
}

.main_footer .headline_h4 {
    color: #11192c;
    border-bottom: 1px solid #c8c8c8;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-block;
    padding-right: 40px;
    padding-bottom: 10px;
    line-height: 1;
    margin-top: 30px;
}


@media only screen and (min-width: 50em) {
  
  .footer_list > li {
      padding: 0 3%;
  }
  
  .footer_list > li:first-child {
      padding-left: 0;
  }
  
  .footer_list > li:before {
      content: '';
      display: block;
      position: absolute;
      top: 32px;
      left: 0;
      height: 250px;
      width: 0;
      border-left: 1px solid #c8c8c8;
  }
  
  .footer_list > li:first-child:before {
      display: none;
  }
  .main_footer .headline_h4 {
    margin-bottom: 30px;
    margin-top: 0;
  }

}




/* Age Verification */

.age_verification {
    background: url(img/age_verfication_bg.jpg) no-repeat;
    background-size: cover;
    display: block;
    height: 100%;
    margin-top: 0;
    overflow: hidden;
    width: 100%;
    color: #fff;
}

.age_verification {
    text-align: center;
}

.prod_details_nav a,
input.wpcf7-submit,
a.btn,
.age_confirmation_btn {
    text-transform: uppercase;
    /*background: #c4b693;*/
    /*background: #916700;*/
    background: var(--color-bg-button);
    padding: 12px 32px;
    text-align: center;
    min-width: 100px;
    /*color: #fff;*/
    color: var(--color-button);
    font-size: 18px;
    display: inline-block;
    letter-spacing: 1px;
    transition: background 300ms ease-in-out;
}

.float_list_item a.btn{
    font-size: 12px;
    min-width: 80px;
    padding: 6px 20px;
    margin-bottom: 3em;
}


.prod_details_nav a:hover,
input.wpcf7-submit:hover,
a.btn:hover,
.age_confirmation_btn:hover{
    /*background-color: #dccda7;*/
    background-color: var(--color-bg-button-hover);
}

    .age_confirmation_btn{
        /* padding: 5px 20px; */
        /* font-size: 20px; */
    }

input.wpcf7-submit{
    border: 0;
    float: right;
    font-family: 'Open Sans Condensed', sans-serif
}


.age_verification_logo {
    /*
      margin: 66px 0 10vh 0;
    */
    position: fixed;
    z-index: 5;
    top: 66px;
    left: 50vw;
    margin-left: -178px;
}

.age_verification_content {
    margin-top: 30vh;
    font-size: 16px;
    padding: 0 20px;
}

.age_verification_content .age_headline {
    line-height: 1.2;
	margin-bottom: .5em;
	font-family: 'Marcellus SC', serif;
    
    font-size: 37px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccba7b;
    display: inline-block;
    padding: 0 20px 10px;
}

p.age_confirmation_claim {
    font-size: 30px;
    text-transform: uppercase;
}

.age_confirmation_claim strong{
  font-weight: 700;
}

.age_verification_menu {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 54px;
    background: rgba(12, 17, 29, .54);
    font-size: 0;
}

.age_verification_menu li {
    display: inline-block;
    line-height: 1;
    font-family: 'Open Sans Condensed', sans-serif;
    text-align: center;
}

.age_verification_menu li:before {
    content: "|";
    font-size: 12px;
    position: relative;
    top: -2px;
}

.age_verification_menu li:first-child:before {
    display: none;
}

.age_verification_menu a {
    font-size: 16px;
    line-height: 54px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 20px;
}

.age_verification_menu li:first-child a {
    margin-left: none;
}

.age_verification_languages{
    margin: 25px 0 27px 0;
    text-align: center;
}

.age_verification_languages ul{
  list-style: none;
  margin:0;
  padding:0;
}

.age_verification_languages ul li img{
  padding: 2px;
  border: 2px solid #c4b693;
  display: inline-block;
  border-radius: 5px;

}
.age_verification_languages ul li a img{
  border: none;  
}

.age_verification_languages ul li{
  display:inline;
  margin:0 5px 0 5px;
  padding:0;
}

.age_verification_languages ul li a, .age_verification_languages ul li a:visited{
}

.age_verification_languages ul li a:hover, .age_verification_languages ul li a:active{

}

@media screen and (max-height: 670px) {
    
    .age_verification_content{
        margin-top: 5vh;
    }
    /* .age_verification_content h1, /* probably not in use */
    .age_verification_content .headline_h1{
        font-size: 36px;
    }
    .age_verification_languages{
        margin: 15px 0;
    }
    
    p.age_confirmation_claim{
        font-size: 20px;
    }
    
    .age_verification_logo {
        display: none;
    }

}


@media screen and (max-height: 450px) {
  .age_verification_content .age_headline{
    font-size: 25px;
  }
    .age_verification_content .age_headline + p{
        font-size: 14px !important;
        line-height: 1.3;
    }
    p.age_confirmation_claim{
        font-size: 18px;
    }
}

/* ---------------------------------------------------------------------------------------------------------- 
04 Navigation -----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

.menu {
    font-size: 0;
    font-family: 'Open Sans Condensed', sans-serif;
    text-align: center;
    background: #2b3e74;
    border-bottom: 2px solid #c4b693;
}

.menu li {
    display: inline-block;
    /*  margin: 0 0 0 60px; */
    vertical-align: top;
    font-size: 18px;
    letter-spacing: 1px;   
    line-height: 54px;
    text-transform: uppercase;
    position: static;
}

.menu li:first-child {
    margin: 0;
}

.menu li a {
    /* color: rgba(255, 255, 255, .7); */
    color: rgb(190, 194, 210);
    -webkit-transition: color 200ms ease-in-out;
    -moz-transition: color 200ms ease-in-out;
    -o-transition: color 200ms ease-in-out;
    transition: color 200ms ease-in-out;
    display: block;
    padding: 0 30px;

    &:focus{
        outline: none;
    }
    &:focus-visible{
        outline: 3px solid #fdcc00;
    }
}

.menu li a:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 150px;
    margin-left: -30px;
}


@media screen and (max-width: 760px) {
    .sub-menu{
        background: rgba(255,255,255,0.2);
    }
    
    /*
    .menu li .sub-menu li{
        line-height: 50px;
    }
    */
}


@media screen and (min-width: 760px) {

    .sub-menu {
        display: block;
        height: 0;
        left: 0;
        opacity: 0;
        /* top: 56px; */
        top: 100%;
        position: absolute;
        width: 100vw;
        background: #2b3e74;

        -webkit-transition: all 200ms ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;

        overflow: hidden;

    }

    .menu > li:hover .sub-menu,
    .current-menu-parent .sub-menu,
    .current_page_item.menu-item-has-children .sub-menu {
        height: 54px;
        opacity: 1;
    }

    .menu > li:hover .sub-menu,
    .menu > li:focus-within .sub-menu,
    .menu > li a:focus + .sub-menu {
        height: 54px;
        z-index: 1;
        opacity: 1;
    }
}

.menu .current-page-ancestor  > a,
.menu .current-menu-item > a,
.menu .current-menu-parent > a,
.menu .current_page_parent > a,
.menu a:hover,
.menu .current_page_parent  .current-page-ancestor  a:hover {
    color: #fff;
}

.menu .highlight > a{
    color: #c4b693;
}
.menu .highlight > a:hover {
    color: #fff;
}

/* prevent highlighting of submenu items that are parents, too */
.menu .current_page_parent  .current-page-ancestor  a{
    /* color: rgba(255, 255, 255, .7); */
    color: rgb(190, 194, 210);
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
    font-family: 'Open Sans Condensed', sans-serif;

    font-size: 20px;
    line-height: 54px;
    text-transform: uppercase;

    text-decoration: none;
    color: #fff;
    background: #2b3e74;
    text-indent: 15px;
    display: none;
}

.show-menu:before{
    content: '≡ ';
    font-size: 30px;
}

/*Hide checkbox */
.navigation_header input[type=checkbox] {
    display: none;
}


/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ .main_menu {
    display: block;
}


/*Responsive Styles*/

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

    /*Hide checkbox */
    .navigation_header input[type=checkbox] {
        display: block;
        width: 100%;
        height: 58px;
        position: absolute;
        top: 0;
        appearance: none;
    }

    .menu{
        text-align: left;
    }
    
    /*Display 'show menu' link*/
    .show-menu {
        display: block;
    }

    /*Make dropdown links appear inline*/
    .main_menu {
        position: static;
        display: none;
        
        overflow: auto;
        height: calc(100vh - 54px);
    }

    /*Create vertical spacing*/
    .main_menu li a {
        border-bottom: 2px solid #c4b693;
    }

    /*Make all menu links full width*/
    .main_menu li {
        width: 100%;
    }
    
    .menu li a{
        padding: 0 15px;
    }
    
    .menu li .sub-menu a{
        padding-left: 35px;
    }
    
    .sub-menu{
        line-height: 1;
    }
    .menu li .sub-menu li{
        line-height: 40px;
    }

}

/* ----------------------------------------------------------------------------------------------------------
05 Sprites --------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

.sprite {
    display: block;
    text-indent: -9999px;
 /*   background: url(img/poeschl_sprites.png); */
    background-size: 500px 500px;
}

/*  
.fb_link a{
  background-position: 0 -100px;
  width: 15px;
  height: 15px; 
  opacity: .55; 
  position: relative;
  top: -4px;
  -webkit-transition: opacity 150ms ease-in-out;
  -moz-transition: opacity 150ms ease-in-out;
  -o-transition: opacity 150ms ease-in-out;
  transition: opacity 150ms ease-in-out;
  
}
.fb_link a:hover{
  opacity: 1;  
}

*/

.rounded_img {
    /* border-radius: 50%; */
    
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

/* ----------------------------------------------------------------------------------------------------------
06 Extras ---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

/* Flexible Content Boxes */

/* intro */
.intro {
    text-align: center;
    padding: 0 50px;
}

.intro .headline_h1 {
    color: #333d99;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.intro .headline_h1:before,
.intro .headline_h1:after {
    display: none;
    content: '';
    border-top: 1px solid #333d99;
    width: 85px;
    height: 0;
    position: absolute;
    top: 22px;
}

.intro .headline_h1:before {
    left: -107px;
}

.intro .headline_h1:after {
    right: -107px;
}

@media only screen and (min-width: 50em) {

    .intro .headline_h1:before,
    .intro .headline_h1:after {
        display: block;
        width: 85px;
    }
    .intro .headline_h1:before {
        left: -107px;
    }

    .intro .headline_h1:after {
        right: -107px;
    }

    
}

.intro p{
  max-width: 750px;
  display: inline-block;  
}

.back_link{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}

.back_link i{
    font-size: 22px;
    position: relative;
    top: 1px;
    margin-right: 5px;
}





/* Full Width Blue */
.full_width_blue {
    background: url(img/full_width_blue_bg.jpg) no-repeat center top #00032b;
    background-size: cover;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 400;

    padding: 50px 0;
    margin: 90px 0;
}

.full_width_blue p {
    line-height: 1.8;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.full_width_blue .headline_h2 {
letter-spacing: 4px;
padding-bottom: 20px;
    font-size: 35px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccba7b;

    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.full_width_blue .headline_h3 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
        
    font-size: 19px;
    letter-spacing: 1px;
    
        max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.illu_img{
  max-width: 90%;
  height: auto;  
}


.parallax-window {
  /* max-height: 30em; */
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}

.parallax-static-content {
  position: relative;
  z-index: 9;
}

.parallax-background {
  background-repeat: repeat;
  background-position: top;
  background-size: cover;
  background-color: transparent;
  height: 60em;
  left: 0;
  position: absolute;
  top: -30em / 3;
  width: 100%;
}


@media only screen and (min-width: 50em) {

    .full_width_blue .headline_h2 {
        font-size: 50px;
    }

    .full_width_blue .headline_h3 {
        font-size: 30px;
    }

}

/* Text Full Width */
.has_ornament:before {
    content: '';
    background: url(img/ornament.png) no-repeat center;
    width: 100%;
    height: 37px;
    display: block;
    margin: 60px 0;
}

.full_width_blue + .text_full_width:before {
    display: none;
}

.text_full_width{
    padding-bottom: 20px;       
}

.text_full_width b a{
    color: var(--color-link);
}

.text_full_width_right {
    text-align: center;
}

.text_full_width_right img {
    width: 50%;
    height: auto;
}

@media only screen and (min-width: 50em) {
    
    .text_full_width_left {
        width: 70%;
        float: left;
        padding-right: 5%;
    }

    .text_full_width_right {
        width: 30%;
        float: left;
    }

    .text_full_width_right img {
        width: 100%;
        position: relative;
        top: -4em;
    }

}

/* Quote Box */
.quote_box {
    /*color: #c4b693;*/
    /*color: #916700;*/
    color: var(--color-link);
    font-size: 20px;
}

.quote_content {
    background: #f2f2f2;
    padding: 10px;
}

.quote_img_container {
    text-align: center;
    margin-bottom: 1em;
}

.quote_img_container img {
    width: 50%;
    height: auto;
}

.quote_txt_container {
    text-align: center;
}

@media only screen and (min-width: 50em) {
    .quote_content{
      font-size: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .quote_txt_container{
      font-size: 20px;
      padding: 0 50px;
    }
    .quote_txt_container p{
      margin-bottom: 0;  
    }
    .quote_img_container {
        display: inline-block;
        width: 30%;
        margin: 0;
        vertical-align: baseline;
    }

    .quote_img_container img {
        width: 100%;
    }

    .quote_txt_container {
        display: inline-block;
        width: 70%;
    }
}

/* three column teaser boxes */

.float_list_item img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.three_col_rounded {
    text-align: center;
}

.three_col_rounded li {
    padding: 0 5%;
}

.three_col_rounded .headline_h2{
    /* font-size: 24px; */
    margin-bottom: 50px;
}

@media only screen and (min-width: 50em) {

    .float_list {
        font-size: 0;
    }

    .float_list_item {
        display: inline-block;
        font-size: 14px;
        vertical-align: top;
    }

    .page-id-103 .three_col_rounded_list .float_list_item p{
        min-height: 220px;
    }

    .cols_2 > li {
        width: 50%;
    }

    .cols_3 > li {
        width: 33.3%;
    }

    .cols_4 > li {
        width: 25%;
    }

    .cols_5 > li {
        width: 20%;
    }

}

/* grey text boxes (repeater) */

.text_box_repeater_list {
    background: #f2f2f2;
    padding: 30px;
}

.text_box_repeater_list li {
    border-top: 1px solid #d9d9d9;
    padding-top: 35px;
    padding-bottom: 20px;
}
.text_box_repeater_list .img_container img {
    width: 100%;
    height: auto;
}
.text_box_repeater_list .img_container {
    margin: 30px auto 0;
    width: 100%;
    max-width: 300px;
}

@media only screen and (min-width: 50em) {
    .text_box_repeater_list li {
        display: flex;
    }

    .text_box_repeater_list .content_container {
        width: 100%;
    }

    .text_box_repeater_list .img_container {
        margin-top: 0;
    }


}

.text_box_repeater_list a{
    font-weight: 600;
}

.text_box_repeater_list li:first-child {
    border-top: none;
    padding-top: 0;
}

img.alignright {
    float: right;
}

/* job advertisement boxes */

.job_advertisements_wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job_advertisements .single_job_advertisement{
    border: 1px solid #e8e5e5;
    border-radius: 4px;
    padding: 15px 15px 10px 15px;
    position: relative;
}

.single_job_advertisement .position_categories_container{
    display: flex;
    flex-direction: column;
}

.main_content_wrapper{
    display: flex;
    flex-direction: column;
}

.single_job_advertisement .job_position{
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    font-family: 'Marcellus SC', serif;
    color: #333d99;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media only screen and (min-width: 50em){
    .single_job_advertisement .position_categories_container{
        /*flex-direction: row;*/
    }

    .main_content_wrapper{
        flex-direction: row;
    }

    .single_job_advertisement .position_categories_container{
        width: 75%;
        padding-right: 15px;
    }

    .single_job_advertisement .locations_container{
        width: 25%;
        padding-left: 15px;
    }
}

.single_job_advertisement .category,
.single_job_advertisement .locations_container{
    font-size: 12px;
    line-height: 28px;
    color: #00032b;
}

.single_job_advertisement .permalink{
    outline: none !important;
}
.single_job_advertisement .permalink:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.single_job_advertisement .permalink:focus:after{
    outline: thin dotted #333d99;
}

/* News Template */

.news_container .headline_h2{
    text-transform: uppercase;
}


.news_img_container {
    text-align: center;
    margin-bottom: 1em;
    background: #f2f2f2;
}

.news_img_container img {
    width: 50%;
    height: auto;
}

.caption {
    display: block;
    color: #c4b693;
    font-size: 14px;
    line-height: 22px;
    padding: 20px 0 0;
}

.small_print {
    font-size: 11px;
    line-height: 1.5;
}

@media only screen and (min-width: 50em) {
    .news_img_container {
        float: left;
        width: 25%;
        margin: 0;
        padding: 20px;
    }

    .news_img_container img {
        width: 100%;
    }

    .news_left_container {
        float: left;
        width: 75%;
        padding-right: 5%;
    }
}

/* front page */

.home_news_header {
    padding: 128px 0 50px 0;
}

.home .flex_content{ 
    padding-top: 128px;
}

.home_news_list + .flex_content{
    padding-top: 0;
}

.home_news_list{
    margin-bottom: 50px;
}

.home_news_list li {
    padding: 0 5%;
}

.home_news_list .headline_h2 {
  /*
  border-bottom: 1px solid #333d99;
  font-size: 20px; 
  */
  color: #333d99;  
  font-size: 16px;
  border-bottom: 1px solid #CBCBCB;
  padding-bottom: 11px;
}

.home_news_list p{
  line-height: 23px;
  /*color: #848484;*/
    color: #313131;
}

.home_news_img_container {
    margin-bottom: 20px;
}

.more_cta{
    /* color: #916700; /* Level AA */
    color: var(--color-link);
    border-bottom: 1px solid var(--color-link);
    font-weight: 600;
}

.timestamp{
    color: #B3B3B3;
    font-size: 12px;
}


/* product list */

.prod_groups_list {
  margin-top: 80px;
}

.prod_group {
    background-repeat: no-repeat;
    background-color: #40261f;
    background-size: cover;
    min-height: 433px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 90px;
    /* padding-bottom: 60px; */
}

.prod_group_header {
    padding: 65px 30px 0;
    text-align: center;
}

.prod_group_desc {
    min-height: 165px;
}

.prod_group .headline_h2 {
    text-transform: uppercase;
    font-size: 25px;
    border-bottom: 1px solid #ccba7b;
    padding-bottom: 8px;
    display: inline-block;
    margin-bottom: 55px;
}

@media only screen and (min-width: 50em) {

    .prod_group .headline_h2{
        font-size: 35px;
    }

}
.prod_info_container {
    padding: 50px 100px;
    border-top: 1px solid #ccc;
}

.prod_details_nav{
    font-size: 0;
    display: block;
    text-align: center;
}

.prod_details_nav li{
    display: inline-block;
    font-size: 16px;
    padding: 0 20px 20px;
}

.prod_details_nav a{
/*    color: #c4b693; */
}


.brand_group{
    padding: 0 50px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #ccba7b;
}

.single_brand .tooltip{
    opacity: 0;
    position: absolute;
    width: 140px;
    font-size: 12px;
    line-height: 1.2;
    height: auto;
    z-index: 1;
    background: rgba(255,255,255,0.9);
    border: 2px solid #dccda7;
    color: #000;
    bottom: 0;
    left: 0;
    transition: opacity 500ms ease-in-out;
    padding: 0 5px;
}

.single_brand:hover .tooltip{
    opacity: 1;
}


.tooltip p{
    margin-bottom: 0;
}


/*
.prod_details_nav li a:before{
    content: '> ';
}
*/


@media only screen and (min-width: 50em) {
.prod_group_header {
    padding: 65px 100px 0;
}
}




/* dictionary */

.dict_nav{
  font-size: 0;
  margin-top: 60px;
  margin-bottom: 50px;
}

.dict_nav_item{
  display: inline-block;
  font-size: 14px;
  margin: 0 10px 10px 0;
}

.dict_nav_item a{
  background: #dadada;
  color: #00032b;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;  
}

.dict_nav_item a:hover{
  background: #333d99;
  color: #fff;
}

.dictionary_list{
}

.dictionary_list_item{
  border-bottom: 1px solid #dadada;
  padding-bottom: 40px;
  margin-bottom: 50px;
}


.dictionary_list_item_headline{
  font-size: 50px;
}

.dictionary_terms{
}

@media only screen and (min-width: 50em) {

.dictionary_list_item{
  border-bottom: 1px solid #dadada;
  padding-bottom: 40px;
  margin-bottom: 50px;
}

.dictionary_list_item_headline{
  font-size: 80px;
  line-height: 80px;
  float: left;
  width: 50px;
}

.dictionary_terms{
  float: left;
  width: calc(100% - 50px);
  padding-left: 50px;
  max-width: 600px;
}

}

.dictionary_term{
  margin-bottom: 30px;    
}

.dict_anchor{
  display: block;
  position: absolute;
  top: -100px;  
}


/* facts table */

.container.table{
    margin-bottom: 50px;
}
.facts_table{
    width: 100%;
    margin-bottom: 10px;
}

.facts_table tr{
    border-bottom: 1px solid #f2f2f2;
    padding: 7px 0;
    display: block;
}

.facts_table tr:last-of-type{
    border-bottom: none;
}

.facts_table .term{
    width: 140px;
    font-weight: bold;
}

.facts_table .description{
    
}


@media only screen and (min-width: 50em) {

    .facts_table .term{
        width: 180px;
    }

}


/* checklist */

.container.checklist{
    margin-bottom: 50px;
}

.checkpoint i{
    color: #c4b693;
}

ul.checklist li:before {
    content: "\f00c";
    margin-right: 10px;
    display: block;
    color: #c4b693;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
	margin-left: -20px;
    margin-top: 4px;
}
ul.checklist {
	margin-left: 20px;
}

 
/* progress bar */
.container.progress{
    margin-bottom: 50px;
}

.progress-bar-indication {  
 
    background-color: #E2E2E2;
    width: 100%;
    position: relative;
    height: 50px;
    margin: 0 0 10px 0;
    
}

  .progress-bar-indication > span.meter {
    background-color: #c4b693;
    background-repeat: repeat-x;
    background-size: 40px 40px;
    display: block;
    height: 100%;
    width: 0%;
    transition: width 2000ms ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }


  .progress-bar-indication p {
    color: #666;
    text-transform: uppercase;
    margin: 0;
    padding: .1em .5em;
    text-align: right;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 50px;
    font-weight: bold;
}



/* Timeline */

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

.container.timeline:before{
    display: block;
    content: '';
    width: 87px;
    height: 88px;
    background: url(img/logo-timeline.png);
    background-size: 87px 89px;
    position: relative;
    left: 0;
    margin-left: 15px;
    top: 30px;
}

@media only screen and (min-width: 768px) {

    .container.timeline:before{
    left: 50%;
    margin-left: -44px;
    top: 42px;
    }
    
}

/* -------------------------------- 

Main components 

-------------------------------- */

#cd-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 19px;
  height: 100%;
  width: 2px;
  background: #333d99;
}
@media only screen and (min-width: 768px) {
  #cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  #cd-timeline::before {
    left: 50%;
    margin-left: -1px;
  }
}

.cd-timeline-block {
  position: relative;
  margin: 2em 0;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .cd-timeline-block {
    margin: -3em 0;
  }
  .cd-timeline-block:first-child {
    margin-top: 0;
  }
  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}

.cd-timeline-img {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
    background: #fff;
  box-shadow: 0 0 0 2px #333d99;
}
.cd-timeline-img img {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
}

@media only screen and (min-width: 768px) {
  .cd-timeline-img {
    width: 20px;
    height: 20px;
    left: 50%;
    margin-left: -10px;
      margin-top: 20px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }

  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }

  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  background: #f1f1f1;
  border-radius: 0.25em;
  padding: 1em;
}
.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content .headline_h2 {
  color: #303e49;
}
.cd-timeline-content p, .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  font-size: 13px;
  font-size: 0.8125rem;
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: #f1f1f1;
  border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
  background-color: #bac4cb;
}
.cd-timeline-content .cd-date {
  float: left;
  padding: .8em 0;
  opacity: .7;
}
.cd-timeline-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 16px solid transparent;
  border-right: 16px solid #f1f1f1;
}
@media only screen and (min-width: 768px) {
  .cd-timeline-content .headline_h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .cd-timeline-content p {
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}


.cd-timeline-content img{
    width: 45%;
    float: left;
    margin-right: 3%;
}

.cd-timeline-content div{
    width: 50%;
    float: right;
}
.cd-timeline-content .date{
    color: #c4b693;
    font-size: 40px;
}


@media only screen and (min-width: 768px) {
  .cd-timeline-content {
    margin-left: 0;
    padding: 1.6em;
    width: 45%;
  }
  .cd-timeline-content::before {
    top: 32px;
    left: 100%;
    border-color: transparent;
    border-left-color: #f1f1f1;
  }
  .cd-timeline-content .cd-read-more {
    float: left;
  }
  .cd-timeline-content .cd-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 16px;
    font-size: 1rem;
  }
    .cd-timeline-content .date{
        font-size: 50px;
    }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 34px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: #f1f1f1;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 768px) {
  /* inverse bounce effect on even content blocks */
  .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}



/* Production steps */

.production_steps{
    overflow: auto;
}

.production_step{    
}


@media only screen and (min-width: 50em){

    .production_step .prod_left{
        width: 25%;
        margin-right: 3%;
        float: left;
    }


    .production_step .prod_right{
        width: 72%;
        margin: 0 auto;
    }

    .production_step .prod_left + .prod_right{
         float: left;   
    }
    
}



.production_step img{
    max-width: 100%;
    height: auto;
}




/* Hero Teaser */

.hero_teaser{
    min-height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.hero_text_box{
    background: rgba(1, 17, 51, 0.84);
    padding: 50px;
    text-align: center;
    color: #fff;
}
@media only screen and (min-width: 50em){
    .hero_text_box{
        width: 50%;
        min-height: 280px;
    }
}


.hero_text_box .headline_h2{
    color: #c4b693;
    font-size: 35px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero_text_box p{
    font-size: 16px;
}
.hero_text_box .quote,
.hero_text_box .quote p{
    font-size: 20px;
    line-height: 1.3;
    color: #c4b693;
}
.hero_text_box .quote > div{
    height: auto !important; /* override manually set height from wysiwyg */
}

.hero_text_box .headline_h2.title{
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    margin-top: 30px;
}

/* Slider */
.text_img_slider{
    margin-left: -20px;
    margin-right: -20px;
}
.text_img_slider .hero_text_box{
    margin-top: 55vw;
}
.text_img_slider .hero_teaser{
    background-position: top center;
}
@media only screen and (min-width: 50em){
    .text_img_slider .hero_text_box{
        margin-top: 0;
        background-position: center right;
    }
}

/* scroll to top button */

.back_to_top{  
  text-indent: -9999px;
  background: url(img/back-to-top.png);
  color: #000000; /* Level AAA */
  background-size: 66px 66px;
  width: 66px;
  height: 66px;
  position: fixed;
  bottom: 50px;
  right: 45px;
  display: block;
  opacity: 1;
  transition: opacity 300ms linear;
  -webkit-transform: translateZ( 0 );
  transform: translateZ( 0 );
  z-index: 1;
}

@media only screen and (max-width: 50em){

.back_to_top{
  -webkit-transform: scale(0.7);
  -webkit-transform-origin: 100% 100%;

  transform: scale(0.7);
  transform-origin: 100% 100%;

  
  margin: 0 -10px -10px 0;
}

}

.back_to_top:hover{
  
}

.hidden {
  opacity: 0;
/*  right: -100px; */
}



/* search field */
.search-form {
    bottom: 19px;
    position: absolute;
    right: 0;
    background: #fff;
    background: rgba(100, 0, 0, 0.15);
    border-radius: 14px;
    padding: 1px 10px;
}

.search-field {
    border: 0;
    background: transparent;
    width: 100px;
    color: #900;
}

.search-submit {
    background-position: -125px -100px;
    border: medium none;
    display: inline-block;
    height: 18px;
    width: 14px;
}

.cta_link {
    font-weight: bold;
    font-size: 28px;
    padding: 20px 0;
}

/* Contact Form */

.wpcf7-form{
    max-width: 910px;
}


.wpcf7-form span.label {
    display: block;
    float: left;
    text-align: right;
    width: 140px;
    padding: 0 10px 0 0;
}

.wpcf7-form label span.label {
    width: 140px;
    line-height: 31px;
}

.wpcf7-form textarea,
.wpcf7-form input[type="email"],
.wpcf7-form input[type="text"] {
    width: 100%;
    border: 0;
    padding: 8px 5px 7px;
    font-family: "ff-meta-web-pro", sans-serif;
}

.wpcf7-radio .wpcf7-list-item {
    display: block;
}

.wpcf7-radio.one_line .wpcf7-list-item {
    display: inline-block;
    margin: 0 50px 0 0;
}

.wpcf7-radio {
    margin: 0 0 10px 0;

    display: inline-block;
    /* width: 550px; */
    /* float: right;*/
}


.wpcf7-not-valid {
    background: #EFCDCD;
}

span.wpcf7-not-valid-tip {
    /*  background: none repeat scroll 0 0 #fff;
      border: 1px solid #ccc;
      border-radius: 5px;
      color: #f00;
      display: block;
      padding: 2px 5px;
      position: absolute;
      top: 13px;
      z-index: 1;*/
    left: 0;
    font-size: 12px;

}

span.wpcf7-list-item {
    margin-left: 0;
}

div.wpcf7-mail-sent-ok {
/*    display: none !important; */
}


.wpcf7-form label.textlabel{
	width: 100%;
	display: block;
    min-height: 48px;
    line-height: 48px;
}
.wpcf7-form label.textlabel.radio_label{
    min-height: 20px;
    line-height: 20px;
}
.wpcf7-form label.textlabel.strasse{
	width: 80%;
	float: left;
}
.wpcf7-form label.textlabel.hausnr{
	width: calc( 20% - 8px );
	float: left;
}
.wpcf7-form label.textlabel.plz{
	width: 55%;
	float: left;
}
.wpcf7-form label.textlabel.ort{
	width: calc(45% - 8px);
	float: left;
}

.wpcf7-form label span.label{
	width: 150px;
}
.wpcf7-form span.label{
	display: block;
	float: left;
	text-align: left;
	width: 150px;
	padding: 0 10px 0 0;
}
.wpcf7-form label span.label{
	width: 150px;
}

.wpcf7-form input[type="email"],
.wpcf7-form input[type="text"]{
    width: calc(100% - 150px);
	border: 0;
    background: #E8E8E8;
	padding: 16px 10px;
}
.wpcf7-form textarea{
    background: #E8E8E8;
    resize: none;
    height: 300px;
}


.wpcf7-form .ort input[type="text"]{
    width: 100%;
    margin: 0 0 0 8px;
}

/*
.wpcf7-form .strasse input[type="text"]{
	width: calc(100% - 170px);
}
*/

.wpcf7-form .hausnr input[type="text"]{
	width: 100%;
	margin: 0 0 0 8px;
}



.wpcf7-form p{
    clear: both;
    margin-bottom: 8px;
}

.wpcf7-list-item{
    display: block;
    margin-bottom: 10px;
}

@media only screen and (min-width: 50em){

    .form_left,
    .form_right{
        float: left;
        width: 47.5%;
    }
    .form_left{
        margin-right: 2.5%;
    }
    .form_right{
        margin-left: 2.5%;
    }
    
}

/* application form (bewerber 3) */

html.BewerberWeb > body{
    background-color: red;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 24px;
}


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


.custom{
background: url(img/sprites/buttons-21x21.png) no-repeat;
}

.custom.checkbox{
background-position: 0 0;
display: inline-block;
width: 24px;
height: 24px;
float: left;
}
.custom.checkbox:hover{
background-position: -24px 0;
}
.custom.checkbox:active{
background-position: -48px 0;
}
.custom.checkbox.checked{
background-position: 0 -24px;
}
.custom.checkbox.checked:hover{
background-position: -24px -24px;
}
.custom.checkbox.checked:active{
background-position: -48px -24px;
}

.custom.radio{
background-position: 0 -48px;
display: inline-block;
width: 24px;
height: 24px;
float: left;
}
.custom.radio:hover{
background-position: -24px -48px;
}
.custom.radio:active{
background-position: -48px -48px;
}
.custom.radio.checked{
background-position: 0 -72px;
}
.custom.radio.checked:hover{
background-position: -24px -72px;
}
.custom.radio.checked:active{
background-position: -48px -72px;
}

.custom + span{
display: inline-block;
line-height: 24px;
}



div.custom.dropdown {
	position: relative;
	/* display: inline-block; */
	zoom: 1;
	width: 100%;
	/*	max-width: 150px;*/
	z-index: 20;
	background-color: white;
	font-style: normal;
	text-align: left;
	font-size: 14px;
}
div.custom.dropdown a.current {
	display: block;
	width: 100%;
	text-indent: 10px;
	color: #515151;
	background: #f2f2f2;
	text-decoration: none;
	height: 50px;
	line-height: 50px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding-right: 50px;
}

div.custom.dropdown a.current:after{
	content: "\f078";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	right: 20px;
	position: absolute;
	top: 18px;
}

div.custom.dropdown ul {
	position: absolute;
	width: 100%;
	display: none;
	left: 0px;
	top: 45px;
	z-index: 20;
	text-align: left;
	padding: 3px 0;
	margin: 5px 0 0 0;
	box-shadow: 0 2px 5px rgba(0,0,0,.4);
	border: 1px solid #d1d1d1;
	background: #f2f2f2; /* Old browsers */
}

div.custom.dropdown.open ul {
	display: block;
}
div.custom.dropdown ul li {
	cursor: pointer;
	color: #333;
	padding: 4px 0 4px 10px;
	border-top: 1px solid #dadada;
}
div.custom.dropdown ul li:first-child {
border-top: none;
}

div.custom.dropdown ul li.selected {
font-weight: 700;
}
div.custom.dropdown ul li:hover {
	background: #ececed;
	color: #515151;
}
div.custom.dropdown ul li.selected:hover {
	background-color: #ececed;
}






/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
    
    padding-top: 24px;
    padding-bottom: 24px;
    background: rgba(196, 182, 147, 0.24);
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage.center{
	margin: 0 auto;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	color: #ccba7b;
	font-size: 25px;
	position: absolute;
}

.owl-prev{
 	left: -30px;
	top: -60px;   
}

.owl-next{
    right: -30px;
    top: -60px;
}

.owl-prev:before{
    content: '\f053';
}

.owl-next:before{
    content: '\f054';
}


.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
 /* background: url("owl.video.play.png") no-repeat; */
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}


.assortment_overlay{
    z-index: 2;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.overlay_blocker{
    background: rgba(255,255,255,0.2);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.overlay{
    position: absolute;
    top: 20%;
    bottom: 10%;
    left: 0;
    right: 0;
}

.overlay_content{
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 20px 20px 0 20px;
    z-index: 1;
    margin: 0 auto;
    background: #fff;
    color: #00032b;
    max-height: 100%;
    overflow: auto;
}

.close_btn{
    position: absolute;
    top: -20px;
    right: calc( 50vw - 220px);
    border-radius: 50%;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    border: 4px solid #C4B694;
    color: #C4B694;
    font-size: 25px;
    z-index: 2;   
}


@media only screen and (max-width: 768px) {
 
    .overlay{
        top: 80px;
        bottom: 0;
    }
    
    .close_btn{
        right: 20px;
        top: 20px;
    }
    
}

.overlay .headline_h4{
/*  
    color: #c4b693;
    text-transform: uppercase;
    border-bottom: 1px solid #CBCBCB;
*/
    color: #c4b693;
    text-transform: uppercase;
    padding-bottom: 8px;
}

.assortment_table{
    margin-bottom: 30px;
    width: 100%;
}

.assortment_table tr{
    border-bottom: 1px solid rgba(203, 203, 203, 0.35);
}

.assortment_table td{
    padding: 10px 0;
}

.td_name{
    width: 60%;
}

html.no_scroll{
    overflow: hidden;
}






.footer_languages_list img{
    display: inline-block;
    width: 20px;
    height: auto;
    margin: 0;
}

.footer_languages_list a img{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 300ms ease-in-out;
}

.footer_languages_list a:hover img{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}



/* ----------------------------------------------------------------------------------------------------------
07 Admin Stuff ----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

.post-edit-link {
    background: #ff0;
    color: #333;
    padding: 0 10px;
    position: absolute;
    right: 147px;
    z-index: 1;
    border: 1px solid #000;
}

.post-edit-link:hover {
    background: #ee0;
}

body.logged-in:after {
    content: 'mobile small';
    display: inline-block;
    background: rgba(153, 0, 0, 0.5);
    color: #900;
    position: fixed;
    bottom: 50px;
    left: 0;
    padding: 0 10px;
    z-index: 1000;
}

@media only screen and (min-width: 30em) {
    body.logged-in:after {
        content: 'mobile extended';
        background: rgba(153, 153, 0, 0.50);
    }
}

@media only screen and (min-width: 50em) {
    body.logged-in:after {
        content: 'desktop / tablet';
        background: rgba(0, 153, 153, 0.5);
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {
}

.logged-in .page_wrapper:before {
    content: 'Admin-Modus aktiv';
    display: block;
    position: fixed;
    bottom: 20px;
    left: 0;
    background: rgba(255, 0, 0, 0.8);
    padding: 0 10px;
    z-index: 2000;
}

.acf_debug {
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 5px solid #bada55;
    background: #eee;
    color: #333;
    padding: 20px;
}

.acf_debug a {
    text-decoration: underline;
    color: #333;
}

.acf_debug a:hover {
    text-decoration: none;
}

.xdebug-error,
.xdebug-var-dump {
    background: #eee;
    color: #333;
    padding: 20px;
}

.slick-prev{
    left: 25px !important;
    z-index: 1;
}
.slick-next{
    right: 25px !important;
}
/* Job application form */
#application_form {
    min-height: 2100px;
}
@media screen and (min-width: 1025px) {
    #application_form {
        min-height: 1300px;
    }
}