@charset "UTF-8";
/**
 * CSS für Frontoffice Junghanswolle
 *
 * [Basisfarben]
*
 * [Typo]
 *   Überschriften
 *   Fließtext
 *   Inputs
 *
 * [Rahmen]
 *
 *
/****************************
 * Inhaltsverzeichnis
 *
 * 1.0 - Global Styles (HTML Elemente)
 * 2.0 - Typography
 * 2.1 - Icons
 * 3.0 - Formulare
 * 4.0 - Navigation
 *   4.1 - Links
 *   4.2 - Buttons
 *   4.3 - Listen & Tabellen
 * 5.0 - Layout
 *   5.1 - Header
 *   5.2 - Main
 *   5.3 - Footer
 * 6.0 - Seitenelemente
 * 7.0 - Media (Shopgrafiken)
 * 8.0 - SIS
 * 9.0 - Extern
 * 10.0 - Media Queries
 *    10.1 - XS
 *    10.2 - SM
 *    10.3 - MD
 *    10.4 - LG
 *    10.5 - XL
 * 11.0 - Print

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

/*****************************
 *
 * 1.0 Global Styles (HTML Elemente)
 *
 **********************************************************/

ul.brotkrumen {
    display: block;
    line-height: 18px;
    margin: 0;
}

ul.brotkrumen > li {
    display: inline-block;
    font-size: 12px;
}

ul.brotkrumen.seperator-a > li:before {
    content: "/ ";
    float:left;
    padding: 0 5px 0 0;
}

ul.brotkrumen.seperator-b > li:before {
    content: "| ";
    float:left;
    padding: 0 5px 0 0;
}

ul.brotkrumen.seperator-c > li:before {
    content: "\00BB";
    float:left;
    line-height: 18px;
    padding: 0 5px 0 0;
}

ul.brotkrumen > li:first-child:before {
    content: "";
    padding: 0px;
}

ul.brotkrumen > li:first-child {
    padding-left: 0px;
}

hr {
    background-color: #FED97C;
    border: 0;
    height: 2px;
    margin-bottom: 20px;
}

ul{
    list-style-position: outside;
}

iframe,
select{
    width: 100%;
}


form div.warnung input,
form div.warnung textarea,
form div.warnung select,
form div.warnung file {
    background-color:#f2dede;
}
form span.warnung {
    /*background: #8ba2b7 none repeat scroll 0 0;*/
    color: #a94442;
    display: block;
    font-weight: bold;
/*    padding: 10px 0 5px 5px;*/
    width: 100%;

}
form td.warnung {
    color:#57ACFC;
}


/** Basisfarben
*****************************/

.clr-primary{
    color: #AD111C !important;
}
.clr-secondary{
    color: #FEC536 !important;
}
.clr-hellbraun{
    color: #E1C1AB !important;
}
.clr-braun{
    color: #A06753 !important;
}
.clr-facebook{
    color: #1755AE;
}
.clr-disabled{
    color: #cdcdcd !important;
}

.clr-text{
    color: #3d1000 !important;
}
.clr-text-soft{
    color: #a06753 !important;
}
.clr-weiss{
    color: #FFFFFF !important;
}

.bg-primary{
    background: #AD111C !important;
}
.bg-secondary{
    background: #FEC536 !important;
}
.bg-hellgelb{
    background: rgba(254, 217, 124, 0.80) !important;
}
.bg-hellbraun{
    background: #E1C1AB !important;
}
.bg-weissbraun{
    background: #F3E6DD !important;
}
.bg-braun{
    background: #A06753 !important;
}
.bg-text{
    background: #3d1000 !important;
}
.bg-weiss{
    background: #FFFFFF !important;
}



/** Kacheln
 *****************************/


/** Hilfsklassen
 *****************************/

.top-area{
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.top-area:before{
    content: "";
    display: inline-block;
    height: 100%;
    margin: auto;
    vertical-align: top;
}

.top{
    display: inline-block;
    padding: 10px;
    position: relative;
    vertical-align: top;
    width: 100%;
}

.center-area{
    left: 0;
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
}

.center-area:before{
    content: "";
    display: inline-block;
    height: 100%;
    margin: auto;
    vertical-align: middle;
}

.center{
    display: inline-block;
    padding: 10px;
    position: relative;
    vertical-align: middle;
    width: 100%;
}

.bottom-area{
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.bottom-area:before{
    content: "";
    display: inline-block;
    height: 100%;
    margin: auto;
    vertical-align: bottom;
}

.bottom{
    display: inline-block;
    padding: 10px;
    position: relative;
    vertical-align: bottom;
    width: 100%;
}

.baseline-content {
    display: table;
}

.baseline-content > *{
    display: table-cell;
    height: inherit;
    vertical-align: middle;
}

.rund img {
    border-radius: 50%;
}

img.bt_job,
img.tt_bild,
img.bt_neu {
    display: inline-block;
}

.teaser-table{

    height: 100%;
}

.teaser-table td{
    padding: 0;
}

.input-anzahl input {
    width: 40px;
}

.fa-md {
  font-size: 0.8em;
}

/** Meldungen
 *****************************/

.kachel-info,
.kachel-erfolg,
.kachel-warnung,
.kachel-fehler {
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 10px;
    padding: 15px;
}
.kachel-info {
    background-color: #044295;
}
.kachel-erfolg {
    background-color: #E6EDF5;
    color: #303030;
}
.kachel-warnung {
    background-color: #e4b9b9;
}
.kachel-fehler {
    background-color: #A90000;
}

/** Tooltips
 *****************************/

.ui-tooltip{
    background: url("../img/bg_tooltip.gif") repeat-x scroll 0px 0px transparent;
    padding: 5px;
    color: #fff;
    border: 1px solid #631A00;
    border-radius: 0;
}

.test_tt_markant{
    background: url("../img/bg_tooltip_markant.gif") repeat-x scroll 0px 0px transparent;
}

.ui-tooltip-content{

}

/*! Add shadows to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE5.5+, Safari 2+ */
.ui-tooltip-shadow{
    -webkit-box-shadow: 4px 4px 3px 4px rgba(61, 16, 0, 0.5);
    -moz-box-shadow: 4px 4px 3px 4px rgba(61, 16, 0, 0.5);
    box-shadow: 4px 4px 3px 4px rgba(61, 16, 0, 0.5);
}

.tt {
    padding: 3px 6px 0;
    cursor:help;
}
.tt_markant {
    padding: 3px 6px 0;
    cursor:help;
}
/*****************************
 *
 * 2.0 Typography
 *
 **********************************************************/

body,
button,
input,
select,
textarea {
    color: #333333;
    font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
    font-size: 13px;
    line-height: 1.6;
}

.mfp-wrap {
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
}

html.mfp-helper {
    height: 100%;
}
html.mfp-helper body {
    overflow: hidden;
    height: 100%;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility:hidden;
}

input,
select{
    font-size: 14px;
}

.ui-widget-content a {
    color: #ad111c;
}

a {
    color: #AD111C;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
}
a.strong {
    color: #AD111C;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}
a.klein {
    font-weight:bold;
    font-size:11px;
}
span.jobcafe {
    font-size:11px;
    font-weight:normal;
    background-color: #E1C1AB;
    line-height: 28px;
    padding: 1px 10px;
}

span.firmenname{
    line-height: 28px;
}

ul.brotkrumen a,
#FOOTER a{
    color: #3d1000;
    font-size: 12px;
    font-weight: normal;
}

ul.brotkrumen > li a,
ul.brotkrumen > li a:link,
ul.brotkrumen > li a:visited {
    float:left;
    text-decoration: none;
}
ul.brotkrumen > li a:hover,
#FOOTER a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    color:#3d1000;
    padding-bottom:2px;
    margin-bottom: 10px;
}
h2 {
    padding:12px 0 2px 0;
    margin-bottom: 2px;
    font-size: 17px;
    color:#3d1000;
    font-weight: bold;
    line-height:20px;
}
h2 a {
    color: #3D1000;
    font-size: 17px;
    font-weight: bold;
    text-decoration: underline;
}
h2.gross, h2.teaser {
    font-size: 22px;
    line-height: 25px;
    font-weight: bold;
    color:#3d1000;
    padding-bottom:2px;
    margin-bottom: 2px;
}
h2.teaser {
    font-style:italic;
}
h2.first {
    padding:0 0 2px 0;
    margin-bottom: 2px;
}

h3 {
    font-size: 15px;
    color:#3d1000;
    font-weight: bold;
    line-height:19px;
}
h4 {
    font-size: 13px;
    color:#3d1000;
    font-weight: bold;
}
h5 {
    font-size: 12px;
    text-decoration:underline;
}
h6 {
    font-size: 13px;
    font-style:italic;
}

p {
    margin: 0;
    line-height: 16px;
    padding: 5px 0;
}

dt {
    font-weight: bold;
}
dd {
    margin: 0 0 1em 1em
}

cite, blockquote {
    font-style:italic
}
blockquote {
    margin: 0 0 1em 1.5em
}

strong,b {
    font-weight: bold
}
em,i {
    font-style:italic
}
pre, code {
    font-family: monospace; font-size: 1.1em;
}
acronym, abbr {
    letter-spacing: .07em;
    border-bottom: .1em dashed #dddddd;
    cursor: help;
}

/** 2.1 Icons
  *****************************/



/*****************************
 *
 * 3.0 Formulare
 *
 **********************************************************/

.input-wrapper-standard,
.input-wrapper-highlight{
    display: block;
    margin-top: 8px;
    margin-bottom: 5px;
    overflow: hidden;
    position: relative;
}

.wrapper-standard input,
.input-wrapper-highlight input,
.wrapper-standard a.button,
.input-wrapper-highlight a.button,
.input-wrapper .input-multiple{
    float: right;
    height: 100%;
    margin-right: 0;
}

.input-multiple input {
    width: 50%;
}
.input-multiple input:first-child {
    float: left;
}
.input-wrapper-highlight input{
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #ad111c;
    border-image: none;
    border-style: solid;
    border-width: 1px 1px 3px 2px;
}

.input-wrapper-standard .pjb-button,
.input-wrapper-highlight .pjb-button {
    float: right;
    height: 100%;
    position: absolute;
    right: 0;
}


 /*****************************
 *
 * 4.0 Navigation
 *
 **********************************************************/

/** 4.1 Links
  *****************************/


/** 4.2 Buttons
  *****************************/

.pjb-button,
input[type='button'],
input[type='reset'],
input[type='submit'],
.button {
    background: #fff linear-gradient(to bottom, #fff, #ead9c6) repeat scroll 0 0;
    box-shadow: 2px 2px 1px #ad111c;
    color: #AD111C;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    padding: 5px 10px;
    text-align: center;
    font-size: 13px;
    white-space: nowrap;
}

.button{
    border: 2px solid #ad111c;
    text-decoration: none !important;
    margin: -1px 0 10px;
    background: none;
}
.button.disabled{
    opacity: 0.3;
    filter: grayscale(0.8);
    pointer-events: none;
}

.pjb-button.highlight {
    background: #ad111c none repeat scroll 0 0;
    box-shadow: 2px 2px 1px #5f0700;
    color: #fff;
    font-size: 16px;
}

.button-fw{
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 5px !important;
}

.mfp-content .popup{
    background-color: #fff;
    position: relative;
}



/** 4.3 Listen & Tabellen
  *****************************/

table, th, td {
    border: none;
}
table td.label {
    font-size: 13px;
    font-weight:bold;
}
table td{
    vertical-align: middle;
    /*overflow: hidden;*/
}

div.listenlabel {
    clear:both;
    /*background-color:#A06753;*/
    font-size: 15px;
    font-weight:bold;
    color:#A06753;
    float:left;
    height:22px;
    margin:0;
    padding: 2px 10px 0;
}

div.listenlabel_markant {
    clear:both;
    background-color:#ad111c;
    font-size: 15px;
    font-weight:bold;
    color:#FFFFFF;
    float:left;
    height:22px;
    margin:0;
    padding: 2px 10px 0;
}

table.listen {
    border: none;
    margin-bottom: 20px;
    clear:both
}
table.listen th {
    padding: 2px 10px 0;
    border-bottom: 5px solid #A06753;
    font-size: 15px;
    font-weight:bold;
    color:#FFFFFF;
}
table.listen .label {
    background-color:#A06753;
}
table.listen tr {
    margin:0;
    padding: 0;
}
table.listen td {
    /*background-color:#E1C1AB;*/
    padding: 4px 10px;
}
table.listen strong {
    font-weight:bold;
    color:#3D1000;
}
table.listen td.rahmen_u {
    border-bottom: 2px solid #F0DED1;
}
table.listen td.rahmen_o {
    border-top: 5px solid #A06753;
}
table.listen tfoot td {
    border-top: 2px solid #A06753;
    text-align:right;
    background-color:#ffffff;
    padding: 0 5px 1px;
    width: 90px;
}
table.listen tfoot a {
    color:#ffffff;
    font-weight:normal;
}

table.listen_markant {
    border: none;
    margin-bottom: 20px;
    clear:both
}
table.listen_markant th {
    border-bottom: 5px solid #feb400;
    color:#FFFFFF;
}
table.listen_markant .label {
    background-color:#feb400;
}
table.listen_markant tr {
    margin:0;
    padding: 0;
}
table.listen_markant td {
    background-color:#fed97c;
    padding: 4px 10px;
}
table.listen_markant strong {
    font-weight:bold;
    color:#3D1000;
}
table.listen_markant td.rahmen_u {
    border-bottom: 2px solid #F0DED1;
}
table.listen_markant td.rahmen_o {
    border-top: 5px solid #feb400;
}
table.listen_markant tfoot td {
    border-top: 5px solid #feb400;
    text-align:right;
    background-color:#ffffff;
    padding: 0 5px 1px;
    width: 90px;
}
table.listen_markant tfoot a {
    color:#000000;
}
table.listen_markant span.soft{
    color:#feb400;
}

table.formular td {
    padding-bottom:4px;
    vertical-align:middle;
}
table.formular td.feldname {
    font-weight:bold;
    text-align:right;
    padding-right:5px;
    white-space:nowrap;
}
table.formular td.feldname_vertikal {
    font-weight:bold;
    text-align:left;
    padding-bottom:0px;
    white-space:nowrap;
}
table.formular td.feld {
    padding-right:5px;
}
table.formular td.checkbox {
    padding-right:5px;
    padding-top:2px;
}
table.formular td.fehler {
    font-weight:bold;
    color:red;
}
table.formular span.zusatz {
    font-size:12px;
    font-style:italic;
}

/*Verfügbarkeit*/
table.liste_verfuegbarkeit th {
    border-bottom:2px solid #A06753;
    color:#3D1000;
    font-size: 13px;
    font-weight: normal;
    text-align: center;
}
table.liste_verfuegbarkeit td {
    border-bottom:1px solid #F0DED1;
    white-space:nowrap;
}

table.liste_verfuegbarkeit2 th {
    border-bottom:2px solid #A06753;
    color:#3D1000;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}
table.liste_verfuegbarkeit2 td {
    border-bottom:1px solid #A06753;
    text-align:center;
}
table.liste_verfuegbarkeit2 td.label {
    text-align:left;
}
table.liste_verfuegbarkeit,
table.legende-verfuegbarkeit{
    border-spacing: 2px 0;
}
table.legende-verfuegbarkeit{
    margin: 0 auto;
    width: auto;
}
table.legende-verfuegbarkeit tr {
    display: table-cell;
}

#BERUFSFELD_KLASSE td{
    vertical-align: top;
}
#BERUFSFELD_KLASSE .label1 {
    border-bottom: 1px solid #ddd;
    padding: 15px 0 0;
}
ul.auswahl{
    margin: 0 0 20px;
}

ul.auswahl li{
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    background: #fff;
    list-style: none;
    border: 2px groove #ddd;
    padding: 2px;
    font-style: italic;
    margin: 5px 5px 0 0;
    cursor: pointer;
}

ul.auswahl li .fa{
    padding-left: 5px;
}

.berufsfelder{
    height: 500px;
}

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


 /*****************************
 *
 * 5.0 Layout
 *
 ***********************************************************/

.block{
    margin-bottom: 20px;
}

.block-small{
    margin-bottom: 10px;
}

.block-big{
    margin-bottom: 35px;
}

/** 5.1 Header
  *****************************/
#HEADER_WRAPPER{
    position: relative;
}

#NAVBAR_ROOF{
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 999;
}

/** 5.2 Main
  *****************************/

#JC_NEWS{
    height: 445px;
}

#MAIN1 {
    min-height:400px;
    padding: 0;
}

#MAIN1 div[class*="col-"]:not(.block-reset),
#MAIN2 div[class*="col-"]:not(.block-reset){
    margin-bottom: 15px;
}

#MAIN2 {
    min-height:400px;
    background: #ffffff;
    padding-top: 10px;
}
#MAIN3{
    border:2px solid #A8000C;
    min-height:400px;
    background: #ffffff;
    padding-top: 10px;
}

.block01,
.block02,
.block03,
.block04 {
    overflow: auto;
}

/* Block 01 */
.block01 {
    border: 2px solid #A06753;
    padding: 1px;
    background-color: #ffffff;
    margin-bottom:20px;
}
.block01 h2{
    padding: 5px 10px;
    background-color: #E1C1AB;
}
.block01 p{
    padding: 5px 10px;
}

/* Block 02 */
.block02 {
    overflow: hidden;
    width: 100%;
    margin-bottom:20px;
}
.block02_rahmen {
    border-bottom: 5px solid #A06753;
    background-color: #ffffff;
    margin:0;
    height:150px;
    overflow: hidden;
}
.block02_farbe {
    background-color: #ff0000;
}
.block02_mehr {
    float: right;
    margin: 0 0 0 -5px;
    padding-left: 25px;
    width: 110px;
    height:16px;
    background-color: #A06753;
    background-image: url(../img/bg_block02_pm.gif);
    background-repeat: no-repeat;
    background-position:4px -1px;
    color: #ffffff;
    font-size: 13px;
    line-height: 13px;
    cursor:pointer;
}
.block02_weniger {
    background-position:4px -21px;
}

/* Block 03 */
.block03 {
    border: none;
    overflow:auto;
    padding: 0;
    background-color: #ffffff;
    margin-bottom:20px;
}
.block03_inhalt{
    border-bottom: 5px solid #EAD9C6;
    padding: 5px 10px;
    overflow: hidden;
}
.block03 h2{
    font-size: 17px;
    font-weight: bold;
    line-height: 19px;
    color: #AD111C;
    padding: 5px 0px;
}
.block03 h2 a{
    font-size: 17px;
    font-weight: bold;
    color: #AD111C;
    text-decoration:none;
}
.block03 h3{
    color:#3d1000;
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
}
.block03 p{
}
.block03_klein {
    height:100%;
}

#WRAPPER_SUCHE {
    position: relative;
    z-index: 5;
}
#FORMULAR_SUCHE_VARIABEL_2 .block03 {
    height: auto;
    min-height: 600px;
}

/* Block 04 */
.block04 {
    border: none;
    padding: 0;
    background-color: #ffffff;
    margin-bottom:20px;
}
.block04_teammitglied {
    padding: 0px 10px 0px 0px;
    position:relative;
}
.block04_teammitglied  img.links_rl {
    padding: 0 10px 0px 0;
}
.block04_teammitglied_anzeigenseite {
    margin-bottom: 15px;
    padding: 0px 10px 0px 0px;
    position:relative;
}
.block04 ul, .block04 ol {
    list-style-position: outside;
}

/* Block 05 */
.block05 {
    border: none;
    padding: 5px 10px;
    background-color: #A06753;
    margin:0;
    overflow: auto;
}
.block05 p{
    color:#ffffff;
}
.block05 h1{
    font-size: 17px;
    line-height: 20px;
    font-weight: bold;
    color: #ffffff;
    padding: 0;
    margin-bottom: 2px;
}
.block05 h2{
    color:#ffffff;
    padding:0;
}

/* Block 06 */
.block06 {
    border: none;
    padding: 0 0 20px;
    margin:0;
    clear:both;
}

/* Block 07 */
.block07 {
    border: 2px solid #A06753;
    padding: 1px 1px 10px 1px;
    margin:0 0 20px;
}
.block07 > * {
    padding: 0 10px;
}
.block07 h2 {
    padding: 5px 10px;
    background-color: #E1C1AB;
    font-size: 17px;
    font-weight: bold;
    line-height: 19px;
    color: #631A00;
}
.block07 p{
    padding: 5px 10px;
}
.block07 table {
    padding: 10px;
}
.block07 table td,
.block07 table th {
    padding: 2px;
}
.block07.abstand_u {
    margin-bottom:0px;
}

/* Block 08 */
.block08 {
    border: none;
    clear:both;
    background-color:#F0E0D5;
    margin: 0 0 20px;
    padding: 1px 1px 10px;
}
.block08 h3{
    font-size: 17px;
    font-weight: bold;
    line-height: 19px;
    color: #631A00;
    padding: 5px 0px;
}
.block08 img{
    margin-top:8px;
}
.block08 table td,
.block08 table th {
    padding: 6px;
    vertical-align: top;
}

img.rechts_rl {
    float: right;
    padding: 0 0 10px 30px;
}
img.rechts {
    float: right;
    padding: 10px;
}
img.links_rl {
    float: left;
    padding: 0 30px 10px 0;
}
img.links {
    float: left;
    padding: 10px;
}
img.abstand_o {
    padding-top: 10px;
}

/* Block übergreifend */
.block02 h2,
.block04 h2{
    font-size: 17px;
    font-weight: bold;
    line-height: 19px;
    color: #AD111C;
    padding: 10px 10px 5px;
    margin:0;
}
.block02 h3,
.block04 h3{
    color:#3d1000;
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
    padding: 5px 10px 5px;
}
.block02 p,
.block04 p {
    padding: 5px 10px;
}
.block02 p.first,
.block04 p.first {
    padding: 10px 10px;
}

.block02 ul,
.block04 ul {
    margin: 0 10px 0 25px;
    padding: 10px 0;
}

.block02 ol,
.block04 ol {
    padding: 10px;
}

/** 5.3 Footer
  *****************************/


/****************************
 *
 * 6.0 Seitenelemente
 *
 ***********************************************************/
/*.mfp-content{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}*/
.popup-header{
    position: relative;
    z-index: 10;
    top: 0;
    height: 55px;
    margin: 0 auto;
    box-shadow: -1px 1px 3px;
    /*width: calc(100% - 12px);*/
    background: #FEC536;
    left: 0;
    right: 0;
    padding: 5px 10px;
}

form[name='FORMULAR_ANMELDUNG_SHOP'] table{
    padding: 0;
}

.lighbox{
    display: inline-table;
    padding: 10px 20px;
    border: 2px solid #A06753;
    height: 100%;
    margin: 1px auto;
    position: relative;
    width: 99%;
    left: 2px;
    right: 1px;
    top: 1px;
}

.pp_close {
    display: none !important;
}

.mfp-close-btn-in .mfp-close{
    display: none;
}

.accordion.ui-accordion .ui-accordion-header .ui-icon{
    background: none;
    position: relative;
    text-indent: initial;
    width: initial;
    height: initial;
    margin: 0;
    left: initial;
}
.accordion.profil-accordion.ui-accordion .ui-accordion-content {
    padding: 0;
    border: none;
    background: #fff;
    margin: 0;
    border-bottom: 2px solid #A06753;
    border-radius: 0;
}
.accordion.profil-accordion.ui-accordion .ui-accordion-content table.listen{
    margin: 0;
}
.accordion.profil-accordion.ui-accordion .ui-accordion-header {
    border: none;
    padding: 5px 0;
    border-bottom: 5px solid #A06753 !important;
    background: #fff;
    border-radius: 0;
    padding: 5px 5px 0 !important;
    margin: 0;
    color: #A06753;
}
.accordion.profil-accordion.ui-accordion .ui-accordion-header-active {
    border-bottom: initial;
}
.btn-profil-bearbeiten{
    background: #a06753;
    display: inline-block;
    float: right;
    padding: 2px 10px;
    color: #FFF;
}
.btn-profil-bearbeiten:hover, .btn-profil-bearbeiten:focus{
    color: #fff;
}

.profil-accordion table.listen td {
    padding: 4px 0 4px 10px;
}

/** Cookie-Opt
  *****************************/
#COOKIE_HINWEIS{
    bottom: 0;
    opacity: 0.95;
    position: fixed;
    width: 100%;
    z-index: 10000;
    box-shadow: 0px 0px 5px #333;
    background: #FEC536;
}

#COOKIE_OPT {
    width:100%;
    line-height:18px;
    text-align:center;
    position:relative;
    z-index:999;
    overflow:hidden;
    padding-bottom: 10px;
}

#COOKIE_OPT .cookie_opt_content {
    display:block;
    padding: 10px 0;
    color: #333;
    font-size: 14px;
}

#COOKIE_OPT a {
    text-decoration:underline;
    font-weight:bold;
    color: #333;
    display: inline-block;
}

#COOKIE_OPT a.cookie_a {
    border:1px solid;
    padding:3px;
    text-decoration:none;
    padding: 10px;
    display: inline-block;
    margin: 5px 0;
}

#COOKIE_OPT a.cookie_a:hover {
    text-decoration:none;
}


/** Navbar-Top
  *****************************/
#NAVBAR_TOP{
    background: none;
}

#HEADER_STYLE{
    position: absolute;
    right: 10px;
    top: 19px;
    z-index: 1;
}

/** Menu-Meta
  *****************************/

#MENUE_META ul{
    margin: 0;
    padding: 5px 0px 5px 10px;
    text-align: right;
}

#MENUE_META li {
    vertical-align: middle;
}

#MENUE_META li a {
    text-transform: uppercase;
}

#MENUE_META .brotkrumen-img:before{
    content: "";
    padding: 0;
}

/** Offcanvas Menu
 *****************************/

.mm-listview > li:not(.mm-divider)::after {
    left: 0;
}
.mm-menu {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
#mm-blocker {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
}
#MENUE_OFFCANVAS .mm-navbar.jb-header > div{
    height: 80px;
}
.jb-header-links,
.jb-header-rechts{
    width: 80px;
}

#MENUE_NAVIGATION a:focus,
#OFFC_SUBMENUE a:focus,
#SUCHE_VERFEINERN:focus {
    outline: none;
}

#OFFC_LOGOUT{
    margin: 10px;
    padding: 10px 0;
    width: 90%;
    color: #333;
}

#MENUE_OFFCANVAS li.active{
    background: #fff;
}

/** Headerkern
 *****************************/

#HEADERKERN{
    background-color: #FEC536;
}

#HEADERKERN_SPALTE_LINKS .fa,
#HEADERKERN_SPALTE_RECHTS .fa{
    padding: 15px 0;
}

#HEADERKERN_SPALTE_LINKS,
#HEADERKERN_SPALTE_RECHTS{
    position: relative;
    z-index: 2;
}

/** Menu-Hauptmenue
  *****************************/
#MENUE_HAUPTMENUE {
    overflow: hidden;
    background: none;
    border: none;
    padding-top: 15px;
}

#MENUE_HAUPTMENUE.ui-tabs .ui-tabs-nav {
    margin: 1px 0 0 -4px;
}

#MENUE_HAUPTMENUE.ui-tabs .ui-tabs-panel {
    padding: 0 10px;
}

.ui-tabs #TAB_UNTERNEHMEN.ui-tabs-panel,
.ui-tabs #TAB_BEWERBER.ui-tabs-panel,
.ui-tabs #TAB_PRIVATKUNDEN.ui-tabs-panel {
    padding: 0 1.2em;
}

#MENUE_HAUPTMENUE hr{
    margin-bottom: 5px;
}

#MENUE_HAUPTMENUE h2{
    padding: 0 0 2px;
}

#MENUE_HAUPTMENUE p {
    padding: 2px 0;
}

#MENUE_HAUPTMENUE strong {
    color: #3d1000;
    font-size: 14px;
    font-weight: bold;
}

#MENUE_HAUPTMENUE #MENUE_ICON_HOME{
    color: rgba(61, 16, 0, 0.45);
}

#MENUE_HAUPTMENUE .ui-tabs-nav,
#MENUE_HAUPTMENUE .ui-tabs-nav li {
    border-radius: 0 0 0 0;
    border: none;
    height: 35px;
    overflow: hidden;
    padding: 0;
}

#MENUE_HAUPTMENUE ul.ui-tabs-nav li.ui-state-active {
    background-color:#FEC536;
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
    border-top-left-radius: 0px;
}

#MENUE_HAUPTMENUE .ui-widget-header {
    background: none;
}

#MENUE_HAUPTMENUE ul.ui-tabs-nav li {
    margin-right: 2px;
    background: none;
    background-color:#AD111C;
    border: none;
    border-radius: 0 0 0 0;
    top:0px;
    float: left;
    position: relative;
}

#MENUE_HAUPTMENUE ul.ui-tabs-nav li.ui-state-active a,
#MENUE_HAUPTMENUE ul.ui-tabs-nav li.ui-state-active a span,
#MENUE_HAUPTMENUE ul.ui-tabs-nav li.ui-state-active a:link,
#MENUE_HAUPTMENUE ul.ui-tabs-nav li.ui-state-active a:visited {
    color: #3D1000;
    font-weight: bold;
}

#MENUE_HAUPTMENUE ul.ui-tabs-nav li.ui-state-active #MENUE_ICON_HOME{
    color: rgba(61, 16, 0, 0.45);
}

#MENUE_HAUPTMENUE ul.ui-tabs-nav li #MENUE_ICON_HOME{
    color: rgba(255, 255, 255, 0.45);
}

#MENUE_HAUPTMENUE ul.ui-tabs-nav li a,
#MENUE_HAUPTMENUE ul.ui-tabs-nav li a:link,
#MENUE_HAUPTMENUE ul.ui-tabs-nav li a:visited {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: normal;
    font-style: italic;
    text-decoration: none;
    padding: 6px 15px 0;
    cursor: pointer;
    float: left;
}

#MENUE_HAUPTMENUE ul.subnav li {
    padding: 4px 0 0;
    margin: 0px;
    float: none;
    list-style: none outside none;
    color: #AD111C;
    border-bottom: 2px solid #FEB400;
    overflow: hidden;
}

#MENUE_HAUPTMENUE ul.subnav li a,
#MENUE_HAUPTMENUE ul.subnav li a:link,
#MENUE_HAUPTMENUE ul.subnav a:visited {
    color: #AD111C;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    padding: 0 0 0 10px;
}

#MENUE_HAUPTMENUE ul.subnav li.aktiv ,
#MENUE_OFFCANVAS ul.mm-listview li.aktiv{
    color: #AD111C;
    background-color:#FFE8AF;
}

#MENUE_HAUPTMENUE ul.subnav li:hover {
    color: #AD111C;
    background-color:#FFE8AF;
}

#MENUE_HAUPTMENUE ul.subnav li.aktiv a,
#MENUE_HAUPTMENUE ul.subnav li.aktiv a:link,
#MENUE_HAUPTMENUE ul.subnav li.aktiv a:visited {
    color: #3D1000;
}

#MENUE_HAUPTMENUE .subnav{
    overflow: auto;
    padding: 10px 0 5px;
    background: rgba(254, 217, 124, 0.80);
}

#MENUE_HAUPTMENUE ul.subnav{
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    margin: 0 20px 0 -21px;
    padding: 0;
}

#TAB_HOMEPAGE,
#TAB_JOBSUCHE,
#TAB_BEWERBER,
#TAB_UNTERNEHMEN,
#TAB_PRIVATKUNDEN {
    display: none;
}

#TAB_HOMEPAGE .subnav a{
    color: #ad111c;
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    text-decoration: underline;
}

#TAB_JOBSUCHE .subnav a{
    font-weight: bold;
    text-decoration: underline;
}

#TAB_JOBSUCHE .subnav {
    height: 95px;
}

#TAB_JOBSUCHE .subnav-spalte{
    height: 70px;
}

#MENUE_HAUPTMENUE .subnav-zeile{
    margin-bottom: 8px;
}

#TAB_UNTERNEHMEN .subnav-zeile{
    background: rgba(254, 217, 124, 0.80);
}

#STOERER1,
#STOERER2 {
    position: absolute;
    right: 0;
    top: 35px;
    z-index: 100;
}

#STOERER3{
    bottom: -10px;
    position: absolute;
    right: 20px;
    z-index: 100;
}

/*TAB_BEWEREBR*/

#PROFIL_STATUS {
    background:url(../img/bg_profil_status.gif) no-repeat -50px 0px;
    height:11px;
    width:150px;
    border: 1px solid #732E0D;
    display: block;
    float: left;
    padding: 0;
    margin-top: 5px;
}
#PROFIL_STATUS_WERT {
    margin: 0 5px;
    height:13px;
    width:30px;
    display: block;
    float: left;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    padding: 0px;
    margin-top: 4px;
}

table.merkliste_klein {
    margin:0 0 5px;
    padding:0;
    border: none;
}
table.merkliste_klein td{
    line-height: 15px;
    font-size: 13px;
    padding: 0 5px 2px 0;
}
table.merkliste_klein td.rahmen_u {
    border-bottom: 1px solid #FEC536;
}
table.merkliste_klein td.vergeben {
    text-align:right;
}

/** Brotkrumen
  *****************************/



/** Referenzen
  *****************************/

p.referenzen {
    line-height: 30px;
}
p.referenzen span {
    padding: 20px 20px 20px 0px;
    white-space: nowrap;
}


 /** Sidebar
  *****************************/
/* ASN */
#ASN{
    padding: 0 0 30px;
    display: none;
}

#ASN h3, #MOBILE_FILTER h3{
    color:#3D1000;
    padding:10px 0 5px;
    font-size: 17px;
}
#ASN p, #MOBILE_FILTER p{
    margin:0;
    padding: 0 0 2px 22px;
}
#ASN p a, #MOBILE_FILTER p a{
    font-weight: normal;
    font-size: 14px;
    color: #000000;
    line-height: 1.8;
}

#ASN p.e2, #MOBILE_FILTER p.e2{
    padding: 0 0 2px 40px;
    font-size: 12px;
}

#ASN p.e2 a, #MOBILE_FILTER p.e2 a{
    font-weight: normal;
}
#ASN p a:hover, #MOBILE_FILTER p a:hover,
#ASN p.e2 a:hover , #MOBILE_FILTER p.e2 a:hover {
    color: #FF0000;
    font-weight: bold;
}

#ASN p.aktiv a, #MOBILE_FILTER p.aktiv a{
    color: #FF0000;
    font-weight: bold;
}

#ASN p.e2.aktiv a, #MOBILE_FILTER p.e2.aktiv a{
    color: #FF0000;
    font-weight: bold;
}

#ASN em, #MOBILE_FILTER em{
    font-style:italic;
}

#ASN img , #MOBILE_FILTER img {
    display: inline-block;
}

#ASN_MOBILE {
    padding: 5px 20px;
}

#ASN_MOBILE select option[disabled]:first-child {
    display: none;
}
#ASN_MOBILE select {
    font-style: italic;
}
#ASN_MOBILE select option {
    font-style: normal;
}
#ASN_DIREKTEINSTIEG .button{
    margin: 0;
}
/** Slider
  *****************************/


/** Menu-Footer
  *****************************/

#MENUE_FOOTER h2, #MENUE_FOOTER h2 a {
    color: #ad111c;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    padding-bottom: 10px;
    text-decoration: underline;
}

.menu-footer-spalten {
    list-style: outside none none;
    margin: 0;
}

.menu-footer-spalten li {
    border-bottom: 1px solid #feb400;
    padding-left: 10px;
    font-weight: normal;
    line-height: 24px;
}


/** Menu-Abbinder
  *****************************/

#MENUE_ABBINDER div:first-child,
#MENUE_ABBINDER {
    text-align: right;
    text-transform: uppercase;
}


/** Job-Anzeige
  *****************************/
.kachel-job{
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}
.kachel-job > p {
    color: #333;
    font-weight: normal;
}
.kachel-job > h2 {
    color: #ad111c;
}

.kachel-job span.pjb-button{
    font-size: 10px;
    font-weight: 700;
    padding: 1px 5px;
    text-transform: uppercase;
}


#job_kopf {
    background-color: #fec536;
    margin-top: -10px;
    padding: 5px 10px;
}
#job_titel {
    padding:3px 10px;
}
#job_kopf a:link,
#job_kopf a:visited,
#job_kopf a:hover {
    text-decoration:none;
}

table.job_details {
    background-color:#FED97C;
    border: 2px solid #FED97C;
}
table.job_details td {
    padding: 4px 10px;
}

table.job_details td.label {
    font-size: 15px;
    font-weight:bold;
    color:#AD111C;
}
table.job_details td.rahmen_u {
    border-bottom: 2px solid #FEEBB2;
}
table.job_details td.abbinder {
    background-color:#ffffff;
    text-align:center;
    padding: 15px 10px;
}
table.job_details td.label {
    font-size: 15px;
    font-weight:bold;
    color:#3D1000;
}

.firmenlogo {
    float: right;
}

.pjb-button.preis {
    padding: 15px 10px 15px 10px;
}

div.bild_beschriftung {
    background-color:#A06753;
    font-size: 11px;
    color:#FFFFFF;
    padding:5px;
    text-align:right;
}

div.bild_container {
    float:left;
    margin:0 10px 10px 0;
    padding-top:5px;
    max-width: 280px;
    width: 49%;
}

/*TESTIMONIAL*/
.testimonial-wrapper{
    background: rgba(0, 0, 0, 0) url("../img/banner_testimonials.png") no-repeat scroll 10px center / contain;
}
.testimonial-banner-wrapper{
    background: rgba(0, 0, 0, 0) linear-gradient(135deg, rgba(231, 199, 166, 0.9) 0%, rgba(227, 182, 133, 0.9) 7%, rgba(247, 231, 215, 0.9) 25%, rgba(247, 231, 215, 0.9) 50%, rgba(247, 231, 215, 0.9) 75%, rgba(227, 182, 133, 0.9) 93%, rgba(231, 199, 166, 0.9) 100%) repeat scroll 0 0;
}

.kachel-testimonial blockquote {
    line-height: 1.6em;
    margin: 0 0 1em 1.5em;
    position: relative;
    padding: 20px;
    font-size: 15px;
}
.kachel-testimonial cite {
    quotes: "„" "“" "‚" "‘";
}
.kachel-testimonial cite::before {
    content: open-quote;
    font-size: 95px;
    left: -13px;
    line-height: 0;
    opacity: 0.1;
    position: absolute;
    top: -10px;
}

.kachel-testimonial cite::after {
    bottom: 10px;
    content: close-quote;
    font-size: 32px;
    line-height: 0;
    opacity: 0.3;
    position: absolute;
    right: 0;
}

.kachel-testimonial {
    padding: 10px 50px;
    line-height: 2em;
    overflow: hidden;
}
.kachel-testimonial .firmenlogo{
    width: 125px !important;
}

#TESTIMONIAL_SLIDER{
    background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;
    position: relative;
    box-shadow: 0 2px 3px #AD111C;
}

#TESTIMONIAL_SLIDER .owl-nav div{
    background: transparent;
}
#TESTIMONIAL_SLIDER .inactive {
    opacity: 0.3;
}
#TESTIMONIAL_SLIDER .owl-item {
    display: table-cell;
    float: none;
    vertical-align: middle;
}
/*BANNER TESTIMONIAL*/
.testimonial-banner-wrapper{
    min-height: 160px;
}
.testimonial-banner-wrapper #TESTIMONIAL_SLIDER{
    box-shadow: none;
    background: none;
}
.testimonial-banner-wrapper .owl-nav {
    display: none;
}
.testimonial-banner-wrapper .kachel-testimonial{
    padding: 0 30px;
}

.testimonial-banner-wrapper .kachel-testimonial blockquote{
    font-size: 14px;
    line-height: 1.4em;
    margin: 0 0 0 1.5em;
    padding: 5px 20px;
}
.testimonial-banner-wrapper .kachel-testimonial  .firmenlogo{
    width: 110px !important;
}

.sterne-bewertung span {
    display: table-cell;
}



/****************************
 *
 * 7.0 Media (Shopgrafiken)
 *
 ***********************************************************/



/****************************
 *
 * 8.0 SIS
 *
 ***********************************************************/


/****************************
 *
 * 9.0 Extern
 *
 ***********************************************************/

/** Core Owl Carousel CSS File
  *****************************/
.slider-wrapper {
    /*padding: 0 20px;*/
}

.owl-controls{
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
}
.owl-controls::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.owl-nav {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: attr(data-icon);
    font-size: 20px;
    font-style: normal !important;
    font-variant: normal !important;
    font-weight: normal !important;
    speak: none;
    text-transform: none !important;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 100%
}
.owl-nav div {
    background: rgba(254, 197, 54, 1);
    color: #AD111C;
    display: inline-block;
    cursor: pointer;
    pointer-events: auto;
    padding: 5px;
}
.owl-next {
    float: right;
}

.owl-carousel .owl-item {
    padding: 10px 10px;
    position: initial;
}

.owl-carousel .owl-item img {
    display: block;
    width: auto;
}
#JOB_SLIDER{
    box-shadow: 0 2px 4px 1px #b5a0a0;
    background: #fff none repeat scroll 0 0;
}
#JOB_SLIDER .kachel-job{
    background-color: #fff;
    height: 100%;
    max-width: 100%;
    opacity: 1;
    overflow: hidden;
    padding: 10px 40px 80px;
    position: relative;
}

#JOB_SLIDER .kachel-footer{
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
}

#JOB_SLIDER .kachel-job .stundenlohn{
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
}

#JOB_SLIDER_NAV .owl-kat {
    display: inline-block;
    margin: 5px 5px 10px 0;
}

#JOB_SLIDER_NAV .pjb-button.active,
#JOB_SLIDER_NAV .pjb-button:hover{
    color: #fff;
    background: #AD111C;
}

#JOB_SLIDER .owl-nav .active{
    background: #776959 !important;
    color: #FFF;
}

#JOB_SLIDER .owl-nav .inactive{
    opacity: 0.2;
}



/** Offcanvas Menu
 *****************************/
#OFFCANVAS_TOGGLE {
    opacity: 0.5;
}

#MENUE_OFFCANVAS:not( .mm-menu ) {
   display: none;
}

/****************************
 *
 * 10.0 Media Queries
 *
 ***********************************************************/


 /** 10.1 - XS
 *****************************/

@media (max-width : 767px) {
    .mfp-container::before {
        vertical-align: top;
    }

    #XS_FW_SPALTE{
        width: 100%;
    }


    .pp_pic_holder.pp_default { width: 100%!important; left: 0!important; overflow: hidden; }
    div.pp_default .pp_content_container .pp_left { padding-left: 0!important; }
    div.pp_default .pp_content_container .pp_right { padding-right: 0!important; }
    .pp_content { width: 100%!important; height: auto!important; }
    .pp_fade { width: 100%!important; height: 100%!important; }
    a.pp_expand, a.pp_contract, .pp_hoverContainer, .pp_gallery, .pp_top, .pp_bottom { display: none!important; }
    #pp_full_res img { width: 100%!important; height: auto!important; }
    .pp_details { width: 100%!important; padding-left: 3%; padding-right: 4%; padding-top: 10px; padding-bottom: 10px; background-color: #fff; margin-top: -2px!important; }
    a.pp_close { right: 7%!important; top: 10px!important; }

    h1{
        font-size: 20px;
        line-height: 24px;
    }

    #HEADER_STYLE {
        background: rgba(0, 0, 0, 0) url("../img/tasse_small_devices.png") no-repeat local right 20px top 15px / 95px auto;
        height: 105%;
        left: 0;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 0;
    }

    #MENUE_ABBINDER div:first-child,
    #MENUE_ABBINDER {
        text-align: center;
    }

    #MYSHOP .listen > td{
        display: block;
    }

    #HEADERKERN .logo{
        width: 100px;
    }

    #HEADERKERN{
        padding: 5px 10px;
    }

    /*LISTEN*/
    table.listen td {
        display: block;
    }
    table.listen tbody tr td:first-child {
        border-top: 2px solid #ca917d;
        color: #8f5642;
        padding: 5px 10px;
    }
    table.listen tbody tr:first-child td:first-child {
        border-top: none;
    }
    table.listen_markant tbody tr td:first-child {
        border-top: 2px solid #feb400;
    }
    table.listen tfoot td {
        border: none;
        padding: 0;
        text-align:center;
        width: 100%;
    }
    table.listen_markant tfoot td{
        width: 100%;
    }
    table.listen .label {
        padding: 5px;
    }
    table.listen td.rahmen_o,
    table.listen td.rahmen_u{
        border: none;
    }
    table.listen tbody .rahmen_u > img {
        display: initial;
    }
    table.liste_verfuegbarkeit td,
    table.liste_verfuegbarkeit th {
        display: table-cell;
        padding: 4px !important;
    }
    table.legende-verfuegbarkeit tr{
        display: table-row;
    }
    table.legende-verfuegbarkeit{
        margin: 0;
    }

    table.rtbl td {
        display: block;
        /*overflow: auto;*/
    }
    table.rtbl  {
        padding-top: 5px;
        border-spacing: 0 10px;
    }
    table.rtbl.mit-pflicht td.label{
        display: inline;
        float: left;
    }
    table.rtbl.mit-pflicht td:empty,
    table.rtbl td:empty {
        display: none;
    }
    table.rtbl.mit-pflicht td.label + td:empty::after {
        content: "";
        display: table;
    }
    table.rtbl.mit-pflicht td.label + td {
        display: block;
    }
    .block07 table {
        padding: 0 10px 10px;
    }


    #BERUFSFELD_KLASSE td:not(.label1),
    #BERUFSFELD_KLASSE span.tbl-cell {
        display: block;
    }

    div.listenlabel {
        height:24px;
    }

    div.listenlabel_markant {
        height:24px;
    }

    div.bild_container {
        max-width: 280px;
        width: 100%;
    }

    img.links_rl,
    img.rechts_rl {
        width: 40%;
    }

    .block04_teammitglied  img {
        width: 35%;
    }

    .liste_verfuegbarkeit2 .label {
        display: table-cell;
        padding: 10px 0 0;
        width: 100%;
    }
    .liste_verfuegbarkeit2 td:not(.label) {
        border: none;
        padding: 5px 0;
    }

    .kachel-testimonial {
        padding: 10px 25px;
    }

    .kachel-testimonial blockquote {
        font-size: 14px;
        line-height: 1.3em;
    }
    .testimonial-wrapper{
        background-position: 50%;
    }
}


 /** 10.2 - SM
 *****************************/

@media (min-width: 768px) {

    #MENUE_FOOTER{
        padding-left: 10px;
        padding-right: 10px;
    }

    .menu-footer-spalten li{
        border: none;
    }

    .liste_verfuegbarkeit2 .label {
        border: medium none;
        display: table;
        padding: 10px 0;
        width: 100%;
    }


}

 /** 10.3 - MD
 *****************************/

@media (min-width: 992px) {
    .popup{
        width: 95%;
        margin: 0 auto;
    }
  /*  .popup-header{
        width: calc(80% - 12px);
    }*/

    input,
    select{
        font-size: 13px;
    }

    #TABS{
        height: 215px;
    }

    #HEADERKERN{
        background: none;
        padding: 0;
    }

    #NAVBAR_TOP{
        background: url("../img/tasse.png") no-repeat local right 20px top -10px, transparent url("../img/header_bg.png") repeat-x scroll right 0 top -20px;
        height: 305px;
        margin-top: -70px;
        padding-top: 50px;
    }

    .menu-footer-spalten li{
        line-height: inherit;
        padding-left: 0;
    }

    #ASN{
        display: block;
    }

    #ASN p a {
        line-height: 1.3;
    }

    .testimonial-banner-wrapper{
        background: url("../img/banner_testimonials.png") no-repeat scroll 10px center / contain , rgba(0, 0, 0, 0) linear-gradient(135deg, rgba(231, 199, 166, 0.9) 0%, rgba(227, 182, 133, 0.9) 7%, rgba(247, 231, 215, 0.9) 25%, rgba(247, 231, 215, 0.9) 50%, rgba(247, 231, 215, 0.9) 75%, rgba(227, 182, 133, 0.9) 93%, rgba(231, 199, 166, 0.9) 100%) repeat scroll 0 0;
    }

}

 /** 10.4 - LG
 *****************************/

@media (min-width: 1200px) {

    .popup{
        width: 80%;
        margin: 0 auto;
    }

    #MENUE_ABBINDER div:first-child {
        text-align: left;
    }

}

 /** 10.5 - XL
 *****************************/

@media (min-width: 1550px) {
  .popup{
        width: 60%;
        margin: 0 auto;
    }
/*    .popup-header{
        width: calc(60% - 6px);
    }*/

}

 /** 10.6 Exakte Device-Größe
 *****************************/

/* NUR MD */
@media (min-width: 992px) and (max-width: 1549px) {

    #MENUE_HAUPTMENUE ul.ui-tabs-nav li a,
    #MENUE_HAUPTMENUE ul.ui-tabs-nav li a:link,
    #MENUE_HAUPTMENUE ul.ui-tabs-nav li a:visited{
        font-size: 18px;
    }

}

/* NUR SM */
@media (min-width: 768px) and (max-width: 991px) {
    .mfp-container::before {
        vertical-align: top;
    }

    #HEADERKERN .logo{
        width: 135px;
    }

    #HEADERKERN{
        margin-right: 0;
        margin-left: 0;
    }
    #HEADER_STYLE {
        background: rgba(0, 0, 0, 0) url("../img/tasse_small_devices.png") no-repeat local right 11px top 1px / contain ;
        height: 100px;
        right: 28%;
        top: 4px;
        z-index: 1;
    }

}

/****************************
 *
 * 11.0 Print
 *
 ***********************************************************/

@media print {

}
