
@import url('animate.min.css');
/* Root variables */
:root {
  /* Blue Color Palette */
  --blue-darkest: #0d0c3f;
  --blue-darker: #00006a;
  --blue-dark: #0014a8;
  --blue-primary: #0c26d9;
  --blue-mid: #4869f3;
  --blue-light: #78a2f9;
  --blue-lighter: #a3c5fc;
  --blue-lightest: #dbe7ff;
  --white: #FFFFFF;
  --black: #000;
  
  --blue-old1: #0072b9;
  --blue-old2: #006aa8;
  --blue-old3: #0084b6;
  --blue-old4: #006ea7;

  /* Typography Colors */
  --color-heading: #0F05A0;
  --color-subtitle: #6592FF;
  --color-body: #252323;

  /* Font settings */
  --font-family: 'Roboto', sans-serif;
  --font-size-heading: 65px;
  --font-size-subtitle: 19px;
  --font-size-h1: 28px;
  --font-size-h2: 19px;
  --font-size-h3: 15px;
  --font-size-body: 14px;

  /* Button colors */
  --btn-primary-bg: #0c26d9;
  --btn-secondary-bg: #78a2f9;

  /* Spacing */
  --spacing-small: 7px;
  --spacing-medium: 28px;
  --spacing-large: 42px;
  
  /* Background Image*/
  --background-image: url('');
}
div.lang,
.lang > a:last-child{
    display:none!important;
}

/* General styles */
body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  color: var(--color-body);
}

.container{
    width:100%;
    max-width:1440px;
    margin: 0 auto;
}
.container-fluid{
    width:100%;
    margin: 0 auto;
}
p {
  font-size: var(--font-size-body);
  line-height: 1.4;
  max-width: 800px;
  text-align: center;
  margin: var(--spacing-medium) 0;
}

.btn-cta{
    width: 40%;
    height: 40px;
    background-color: var(--btn-secondary-bg);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    /*border-radius: 0.5em;*/
    border-radius: 0;
    color: var(--white);
    font-weight: 700;
    margin: 10px auto;
}
.btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-body);
  font-weight: 700;
  /*border-radius: 0.5em;*/
  border-radius: 0;
}

.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--btn-secondary-bg);
  color: var(--white);
}
#page {
    /*position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;*/
    padding: 20px;
    box-sizing:border-box;
    margin-bottom: 100vH;
}
#page.navi_bottom{
    position:relative;
}
@media only screen and (max-width:980px), screen and (max-height: 1020px){
    #page{
        position:relative;
    }
}

#page:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vW;
    height: 100vH;
    background-image: var(--background-image);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -2;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}
/*#page::after {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue-darkest);
  background: linear-gradient(180deg, rgb(13, 12, 63) 0%, rgba(13,12,63,0) 50%);
    background-color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  height: 50vH;
}*/
#page.show::before {
    opacity: 1;
}

.header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: -20px;
    padding: 5px 20px 20px;
    background-color: rgba(13,12,63,0.3);
    /*background-color:rgba(13,12,63,0.05);
    background-color: rgba(0, 36, 59, 1);
    border-bottom: 1px solid var(--blue-darkest);
    background-color: var(--blue-mid);
    border-bottom: 1px solid var(--blue-darkest);
    align-items: center;
    height: 55px;*/
}
.scroll .header .header--logo__img{
    animation-name: logoSizeScrolled;
    animation-duration: 0.2s; 
    animation-timing-function: ease-out; 
    animation-delay: 0s;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-composition: add;
}
@keyframes logoSizeScrolled {
  from {width: 150px;}
  to {width: 115px;}
}
.scroll .header,
.header:hover,
.menu-active .header{
    background-color: transparent;
    animation-name: bgHeaderNav;
    animation-duration: 0.2s; 
    animation-timing-function: ease-out; 
    animation-delay: 0s;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-composition: add;
    height: auto;
}
@keyframes bgHeaderNav {
  from {background-color: rgba(13,12,63,0.3);}
  to {background-color: rgba(13,12,63,1);}
}
.header .nav_mobile{
    display: none;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-left: auto;
    margin-right: 25px;
}
.header .nav_mobile .logo{
    position: absolute;
    left: 50px;
    top: 15px;
}
.header .nav_mobile .lang{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    z-index:3;
}
.header .nav_mobile .saldo{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    z-index:3;
}
.header + nav .search{
    display: none;
}
nav.open > ul {
  margin-top: 20px;
}
nav.open > ul > li {
  padding: 5px 0;
}
/*.header .nav_desktop .saldo {
  display: flex;
  flex-direction: row;
  gap: 10px;
  z-index: 3;
  margin-right: 15px;
}*/
.header .nav_desktop .saldo {
  display: block;
  z-index: 3;
  margin-right: 15px;
}
.header+nav>.service{display:none;}
.header--logo__img{max-width:150px;}
.nav_desktop{display: flex;width: 100%;justify-content: normal;flex-direction: column;}
#page.blocks{
    padding-left:0;
    padding-right:0;
}
.hamburger{
    width: 40px;
    height: 50px;
    display:flex;
    align-items: center;
    cursor:pointer;
    z-index: 3;
}

.hamburger div{
    width: 100%;
    height: 4px;
    background: white;
    position:relative;
}

.hamburger div:before,
.hamburger div:after{
    position:absolute;
    content:'';
    width: 100%;
    height: 4px;
    background: white;
    left:0;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}
.hamburger div:before{
    top:-10px;
    transition-property: top, transform;
}
.hamburger div:after{
    top:10px;
    transition-property: bottom, transform;
}

.hamburger.active div{
    background-color:transparent;
}
.hamburger.active div:before{
    top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.3s;
}
.hamburger.active div:after{
    top: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.3s;
}

nav{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    background-color: #0d0c3f;
    overflow-x: hidden;
    transition: 0.5s;
    box-sizing: border-box;
    padding: 0;
}
.nav_desktop nav{position: relative;height: auto;width: auto;margin: 0 15px 0 25px;padding: 0;background-color: transparent;margin-top: 15px;}
.nav_desktop nav .logo{float: left;display: block;}
.nav_desktop nav > ul{float: right;display: flex;margin:0;}
.nav_desktop li {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
.nav_desktop li.active,
.nav_desktop li:hover {
  /*background-color: #0d0c3f;*/
}
nav.open{
    width:500px;
    padding:100px 44px 60px 40px;
}
nav.close{
    width:0;
    padding:0;
}
nav .card {display:none;}

@media only screen and (max-width:500px){
    nav.open{
        width:100%;
    }
}

nav.open:after {
  content: ' ';
  position: fixed;
  bottom: 0;
  background-image: url('../files/kontur-stadt-prim.png'); /*silhouette*/
  height: 92px;
  width: 100%;
  background-size: contain;
  margin-left: -40px;
  background-position: bottom -18px left 0;
  background-repeat: no-repeat;
  z-index:0;
}
nav ul{
    /*display: flex;
    flex-direction: column;
    gap: 10px;*/
    margin:40px 0;
    padding:0;
}
nav ul li a{text-decoration:none;font-size:20px;font-weight:600;color:#FFFFFF;text-transform:uppercase;letter-spacing:0.05em;}
/*nav ul li a:hover,
nav ul li a.active{text-decoration:underline;}*/
nav ul li a:hover {
  color: var(--blue-light);
}
nav ul li a.active:after {
  content: ' ';
  border-bottom: 1px solid white;
  display: block;
  margin-top: 3px;
  width: 20px;
  margin-left: -3px;
}
nav.open ul li a.active:after {
  margin-left: 0;
}
nav ul ul li a.active:after {
  content: ' ';
  border-bottom: 0;
  display: none;
}
nav ul ul li a:hover, nav ul ul li a.active {
  color: var(--blue-light);
}
nav ul ul {
  padding-top: 5px;
  margin-left: 0;
  margin-bottom: 10px;
  margin-top: 0;
}
nav ul ul a {
  font-size: 16px;
  line-height: 28px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav_desktop nav ul ul li {
  padding: 0;
}
nav ul li img{max-width:25px;vertical-align:text-bottom;margin-right:7px;margin-left:-2px;}
nav ul li:first-child img,
nav ul li:last-child img{max-width:23px;margin-left:0;}
.nav_desktop nav ul li img{max-width:30px;vertical-align:top;margin-right:7px;margin-left:-2px;display:none;}
.nav_desktop nav ul li:first-child img,
.nav_desktop nav ul li:last-child img{margin-left:0;}
#home{
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.navi_bottom #home {
    flex-direction: column;
    padding:50px;
    box-sizing:border-box;
    gap:50px;
}
.breadcrumb{position: absolute;z-index: 1;top: 180px;left: 90px;color:var(--blue-darkest);display:none;}
.breadcrumb a{color:var(--blue-primary);text-decoration:none;margin:0 10px;}
.breadcrumb a:hover{color:#ffffff;}
@media only screen and (max-width:980px), screen and (max-height: 1020px){
    #home {
        flex-direction: column;
        box-sizing:border-box;
        gap:50px;
    }
    .blocks #home {
        padding:50px 0;
    }
    #page.home_page #home {
      margin-top: 0;
    }
    .content_detail.navi_right.member_list #home .home--right .ads-example #company {
      margin-top: 10px;
    }
}

@media only screen and (max-width:500px){
    #home {
        padding:0;
    }
}

.home_page #home .home--left{
    margin-bottom: 150px;
}
#home .home--left{
    width:100%;
    /*margin-bottom: 150px;*/
}
.content_detail.store_detail #home .home--left{
    margin-bottom: 0;
}
.blocks #home .home--left{
}
@media only screen and (max-width:1200px), screen and (max-height: 1020px){
    #home .home--left{
        /*width:70%;
        padding-top: 100px;*/
    }
}

.navi_bottom #home .home--left{
    width:100%;
    padding-top: 20px;
    margin-bottom: 0;
}
@media only screen and (max-width:980px), screen and (max-height: 1020px){
    #home .home--left{
        width:100%;
        padding-top: 20px;
    }
}

#home .home--left .home--left__text{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    /*padding-right: 50px;*/
    align-items: flex-start;
}
#home .home--left .home--left__text p.home_content{
    background: var(--blue-primary);
    padding: 50px;
    font-size: 28px;
    line-height: 40px;
    color: #FFFFFF;
    background: transparent;
    text-align: left;
    letter-spacing: 0.01em;
}
#home .home--left .home--left__text h1{
    color: var(--blue-darkest);
    font-size: 56px;
    line-height: 65px;
    max-width: 700px;
    text-align: center;
    margin: var(--spacing-medium) 0;
    padding: 50px;
    letter-spacing: 0.02em;
    max-width: 375px;
}
#page.home_page .header{
    position: fixed;
    left: 0;
    right: 0;
    z-index: 3;
  align-items: center;
}
#page.home_page #home{
    margin: 60vH -20px 0;
    width: auto;
    background-color: var(--blue-mid);
}
.home_page #home .home--left .home--left__text h1{
    color: #ffffff;
    /*-webkit-animation: color-change 15s infinite;
    -moz-animation: color-change 15s infinite;
    -o-animation: color-change 15s infinite;
    -ms-animation: color-change 15s infinite;
    animation: color-change 15s infinite;*/
    text-shadow: none !important;
    font-weight: 600;
}


@-webkit-keyframes color-change {
    0% { color: #ffffff; }
    25% { color: var(--blue-lighter); }
    50% { color: var(--blue-darkest); }
    75% { color: var(--blue-lighter); }
    100% { color: #ffffff; }
}
@-moz-keyframes color-change {
    0% { color: #ffffff; }
    25% { color: var(--blue-lighter); }
    50% { color: var(--blue-darkest); }
    75% { color: var(--blue-lighter); }
    100% { color: #ffffff; }
}
@-ms-keyframes color-change {
    0% { color: #ffffff; }
    25% { color: var(--blue-lightest); }
    50% { color: var(--blue-darkest); }
    75% { color: var(--blue-lightest); }
    100% { color: #ffffff; }
}
@-o-keyframes color-change {
    0% { color: #ffffff; }
    25% { color: var(--blue-lighter); }
    50% { color: var(--blue-darkest); }
    75% { color: var(--blue-lighter); }
    100% { color: #ffffff; }
}
@keyframes color-change {
    0% { color: #ffffff; }
    25% { color: var(--blue-lighter); }
    50% { color: var(--blue-darkest); }
    75% { color: var(--blue-lighter); }
    100% { color: #ffffff; }
}
#home .home--left .home--left__text .home--left__buttons,
.__buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0 50px;
}
.__buttons{
    max-width: none;
    width: auto;
}
#home .home--left .home--left__text .home--left__buttons .btn,
.__buttons .btn{
    font-size: 22px;
    font-weight: 400;
    width: 250px;
    height: 100px;
    position: relative;
    border-radius: 10px;
}
@media only screen and (max-width:500px){
    #home .home--left .home--left__text{gap:20px}
    #home .home--left .home--left__text h1{font-size: 50px;line-height: 45px;}
    #home .home--left .home--left__text .home--left__buttons,
    .__buttons{width: auto;flex-direction: column;gap:20px;}
    #home .home--left .home--left__text .home--left__buttons .btn,
    .__buttons .btn{width:100%;}
}


#home .home--right{
    position:absolute;
    right: 0;
    top: 5%;
    display:flex;
    flex-direction: column;
    align-items: end;
    justify-content: start;
    gap:30px;
    width:300px;
    height:auto;
    box-sizing:border-box;
    margin-right: 40px;
}
.home_page #home .home--right{
    bottom: 15%;
    justify-content: center;
}
@media only screen and (max-width:1200px), screen and (max-height: 1020px){
    #home .home--right{
        width:30%;
    }
    #home{
        justify-content: left;
        align-items: normal;
    }
}

.navi_bottom #home .home--right{
    width:100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap:wrap;
    position:relative;
}
@media only screen and (max-width:980px), screen and (max-height: 1020px){
    #home .home--right{
        width:100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap:wrap;
        position:relative;
    }
    #home .home--left .home--left__text p.home_content{
        padding: 25px;
        font-size: 20px;
        line-height: 30px;
    }
}




#home .home--right a{text-decoration:none;}
#home .home--right .ads-example{
    width: 250px;
    height: auto;
    background-color: rgba(255,255,255,0.7);
    color: var(--blue-darkest);
    text-align: center;
    border-radius:0.5em;
    border: 2px solid var(--blue-lighter);
    align-content: center;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}
.home_page #home .home--right .ads-example{
    background-color: rgba(255,255,255,0.7);
    justify-content: space-between;
    padding-bottom: 5px;
    background-color: var(--blue-lightest);
}
.home_page #home .home--right .ads-example hr{
    display: none;
}
#home .home--right .ads-example p {
  margin: 20px 10px 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
}
.home_page #home .home--right .ads-example p {
  margin: 15px 10px 0;
  text-shadow: 0px 0 8px var(--blue-lightest);
}
.home_page #home .home--right .ads-example p:first-of-type {
  background-color: white;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 6px 6px 0 0;
  height: 46px;
  justify-content: center;
  display: flex;
  padding: 10px;
}
#home .home--right .ads-example hr {
  color: var(--blue-lightest);
  width: 25%;
}


#home > div > div .btn:first-child{
    padding-right: 70px;
    padding-left: 15px;
    /*border: 2px solid var(--blue-lightest);*/
    background-color: var(--blue-light);
}
#home > div > div .btn:nth-child(2){
    padding-left: 70px;
    padding-right: 15px;
    /*border: 2px solid var(--blue-lightest);*/
    background-color: var(--blue-light);
}
#home > div > div .btn:hover{
    background-color: var(--blue-dark);
}
#home > div > div .btn:first-child:before {
    content: ' ';
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('../files/bino.svg');
    background-repeat: repeat;
    background-size: auto;
    border: 0;
    background-size: contain;
    display: block;
    right: 20px;
    background-repeat: no-repeat;
    cursor: pointer;
}
nav .card .btn-cta{
    padding-right: 70px;
    padding-left: 15px;
    border: 2px solid var(--blue-lightest);
}
nav .card .btn-cta:after {
    content: ' ';
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('../files/saldo.svg');
    background-repeat: repeat;
    background-size: auto;
    border: 0;
    background-size: contain;
    display: inline-block;
    margin-left: 218px;
    margin-top: -12px;
    background-repeat: no-repeat;
    cursor: pointer;
}

#home > div > div .btn:last-child:before {
    content: ' ';
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('../files/basket-wht.svg');
    background-repeat: repeat;
    background-size: auto;
    border: 0;
    background-size: contain;
    display: block;
    margin-left: -40px;
    background-repeat: no-repeat;
    cursor: pointer;
}

/*[ SEARCH ]*/

.search{
    width:100%;
    height:auto;
    margin-top: 30px;
}
.nav_desktop .search{
  width: 100%;
  height: unset;
  margin-top: 0px;
  flex-direction: row;
  display: flex;
  justify-content: end;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--blue-lightest);
  padding-bottom: 4px;
}
/*#search:after {
  content: ' ';
  position: absolute;
  width: 30px;
  height: 50px;
  background: url('../files/magnifier-search-zoom-2.svg');
  border: 0;
  background-size: contain;
  display: inline-block;
  margin-left: -40px;
  margin-top: 24px;
  background-repeat: no-repeat;
  cursor: pointer;
}*/
.search input[type="text"]{
    background-color:#FFFFFF;
    width: 96%;
    height: 30px;
    font-size: 20px;
    outline: none;
    padding: 2%;
    border:0;
    border-radius:0;
    margin-top: 0;
}
.header .nav_desktop .search input[type="text"] {
    height: 34px;
}
.search input[type="submit"]{
  position: absolute;
  width: 30px;
  height: 50px;
  background: url('../files/magnifier-search-zoom-2.svg');
  border: 0;
  background-size: contain;
  display: inline-block;
  margin-left: -40px;
  background-repeat: no-repeat;
  cursor: pointer;
  background-position: right 8px;
}

nav .card{
    /*position:absolute;*/
    bottom: 85px;
    text-align: center;
    left: 40px;
    right: 40px;
    z-index: 4;
}
.card img {
  max-width: 60%;
}

/* [ FOOTER ] */
footer{
    display: flex;
    padding: 10px 30px;
    position: relative;
    bottom: 0;
    background-color: var(--blue-darkest);
    width: 100%;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    height: 80px;
    color: var(--blue-lightest);
    border-top: 1px solid var(--blue-lightest);
    justify-content: center;
    align-items: center;
}
footer a,
footer a:hover,
footer a:visited {
    color: var(--blue-lightest);
}
footer a {
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
footer p {
  font-size: 16px;
  margin: 0;
  line-height: 20px;
  max-width: none;
}
footer p:after {
  content: ' ';
  border: 1px solid var(--blue-lighter);
  margin: 0 25px;
}
footer p:last-child:after {
  margin: 0 0;
  border: none;
}



/* [ cookie-privacy-setting ] */
.cookie-privacy-setting{
    background-color: var(--blue-darkest);
    color: var(--white);
    width: 100%;
    max-width: 400px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 70px;
    left: 20px;
    font-size:20px;
    border-radius: 0.5em;
    justify-content: center;
    align-items: center;
    z-index:999;
    border: 1px solid var(--blue-lightest);
}
.cookie-privacy-setting h2{
    margin:0;
}
.cookie-privacy-setting div{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}
#cookie-setting {
  background: transparent;
  font-size: 18px;
  font-weight: normal;
  line-height: 24px;
  text-decoration: underline;
  letter-spacing: 0.02em;
  padding: 5px 40px;
}
#accept-cookie-setting {
  background: transparent;
  font-size: 18px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0.02em;
  border: 1px solid var(--blue-lightest);
  border-radius: 8px;
  padding: 5px 40px;
}
#cookie-setting:hover,
#accept-cookie-setting:hover{
    color: var(--blue-lighter);
}
@media only screen and (max-width:600px){
    .cookie-privacy-setting{
        max-width: 250px;
    }
}

.cookie-privacy-setting > p,.modal-cookie-setting p{
    font-size:20px;
    color:var(--white);
}
.modal-cookie-setting{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    z-index: 999;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing:border-box;
}
.modal-body{
    width: 100%;
    max-width: 500px;
    height: auto;
    background-color: var(--blue-darkest);
    border-radius: 0.5em;
    max-height: 500px;
    padding: 50px;
    box-sizing: border-box;
    position: relative;
    overflow:scroll;
}
.close-modal{
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
}

@media only screen and (max-width:500px){
    .modal-cookie-setting{
        padding:20px;
    }
    .modal-body{
        max-height: 600px;
        max-width: 100%;
    }
}


#form-cookie-setting{
    width:100%;
}
#form-cookie-setting .form-group{
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    justify-content: start;
}

#form-cookie-setting .form-group a{
    color:var(--white);
    font-size:20px;
    text-decoration:none;
}
#form-cookie-setting .form-group a:hover{
    text-decoration:underline;
}


#form-cookie-setting .form-group input[type="checkbox"]{
    width: 20px;
    height: 20px;
}


#page.content_detail .header{
    position: fixed;
    left: 0;
    right: 0;
    z-index: 3;
}
#page.content_detail{
    position: relative;
}
.content_detail #home{
    justify-content: normal;
    align-items: normal;
    min-height: 1000px;
}

.content_detail #home .home--left .home--left__text{
    text-align: center;
}
.content_detail #home .home--left .home--left__text form {
  text-align: left;
  padding: 0 50px;
}
.content_detail #home .home--left .home--left__text hr{
    color: var(--blue-lightest);
    max-width: 550px;
}
.content_detail #home .home--left .home--left__text h1{
    color: var(--blue-darkest);
    font-size: 52px;
    font-weight: 600;
    line-height: 58px;
    max-width: none;
    text-shadow: none;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 0;
    text-align: left;
}
.content_detail #home .home--left .home--left__text p{
    max-width: none;
    font-size: 22px;
    padding: 0 50px;
    margin: 30px 0;
    text-align: left;
}
.content_detail #home .home--left .home--left__text {
  display: block;
  margin: 115px auto 0;
  /*min-height: 100vH;*/
  max-width: 1250px;
  background: var(--white);
  padding: 50px;
  font-size: 18px;
}
.max-550{max-width:100%;width:550px;}
.ads-example .navicon {
  max-width: 50px;
}
.ads-example .logoicon {
  max-height: 60px;
}
.content_detail.navi_right .ads-example .navicon,
.content_detail.navi_bottom .ads-example .navicon{
  max-width: 65px;
}
.content_detail.navi_right #home .home--right{
    top: 115px;
}
.content_detail.navi_right #home .home--right .ads-example p,
.content_detail.navi_bottom #home .home--right .ads-example p{
    font-size: 22px;
    align-content: space-evenly;
    margin-top: 0;
}
.content_detail.navi_right #home .home--right .ads-example p:first-of-type,
.content_detail.navi_bottom #home .home--right .ads-example p:first-of-type {
  background: var(--blue-lightest);
  margin: 0 0 15px 0;
  border-radius: 6px 6px 0 0;
  line-height: 0;
  border-bottom: 1px solid var(--blue-light);
}
.content_detail.navi_right #home .home--right .ads-example .btn,
.content_detail.navi_bottom #home .home--right .ads-example .btn{
    margin-top: 10px;
    border-radius: 0;
  background: white;
  color: black;
  font-weight: 300;
  font-size: 16px;
  padding: 5px 10px 8px;
}
.content_detail.navi_right #home .home--right .ads-example .btn:hover,
.content_detail.navi_bottom #home .home--right .ads-example .btn:hover{
  text-decoration: underline;
  background-color: var(--blue-lighter);
}
/*SHOP*/
.store_detail .home--left__text input.button, .store_detail .home--left__text input[type="submit"],.store_detail .home--left__text button {
	background-color: transparent;
	cursor: pointer;
	height: 39px;
	border: 1px solid var(--blue-darkest);
	line-height: normal;
	margin: 0;
	padding: 0 18px;
	color: var(--blue-darkest);
	text-transform: uppercase;
	font-weight: 500;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    font-size: 18px;
    border-radius: 4px;
}

.store_detail .home--left__text input[type="text"] {
	background-color: var(--blue-lighter);
	color: var(--blue-darkest);
	height: 39px;
	padding: 0 1%;
	border: none;
	font-size: 20px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    font-weight: 700;
    width: 98%;
    border-radius: 4px;
}

.store_detail .home--left__text textarea {
    background-color: var(--blue-lighter);
	padding: 1%;
	color: var(--blue-darkest);
    font-size: 20px;
	height: 98px;
	border: none;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    font-weight: 700;
    width: 98%;
    border-radius: 4px;
}

.store_detail .home--left__text select {
	background-color: var(--blue-lighter);
	color: var(--blue-darkest);
	height: 39px;
	padding: 0 1%;
	border: none;
	font-size: 20px;
    font-family: 'Roboto', sans-serif;
    width: 544px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    font-weight: 700;
    width: 100%;
    border-radius: 4px;
}

.store_detail .home--left__text option {
    background-color: var(--blue-lighter);
}

.store_detail .home--left__text input[type="checkbox"] {
    background-color: var(--blue-lighter);
    margin: 0 4px 0 0;
    padding: 0;
    color: #064413;
}

.store_detail .home--left__text .form_error,
.store_detail .home--left__text .form_success {
    float: left;
    color: #000000;
    padding-top: 3px;
    padding-bottom: 8px;
    font-weight: 500;
}

.store_detail .home--left__text .errors {
    margin-bottom: 1em;
}

.store_detail .home--left__text .error {
    color: red;
}

.store_detail .home--left__text p.error,
.store_detail .home--left__text p.success {
    margin-bottom: 5px;
}

.store_detail .home--left__text input.formfield_error {
    background-color: #FFCCCC;
}

.store_detail .home--left__text label {
	text-transform: uppercase;
}
.store_detail .home--left__text label:after {
	content: '\A';
	white-space: pre;
	display: block;
	height: 5px;
}

.store_detail .home--left__text .clear {
    clear: both;
}

.store_detail .home--left__text .left {
    float: left;
}

.store_detail .home--left__text .right {
    float: right;
}

.store_detail .home--left__text .dsplno {
    display: none;
}

.store_detail .home--left__text .clickable{
	cursor: pointer;
}
.store_detail .home--left__text #cards > div > div{
	display: inline-block;
	text-align: left;
	flex-basis: 20%;
}
.store_detail .home--left__text #cards > div > div:last-child{
	text-align: right;
}
.store_detail .home--left__text #cards > div > div:nth-child(1){
	flex-basis: 30%;
}
.store_detail .home--left__text input.betrag{
	width: 144px;
	margin-right: 27px;
	padding: 0 13px;
}
.store_detail .home--left__text input.anzahl{
	width: 44px;
	margin-right: 22px;
	padding: 0 13px;
}
.store_detail .home--left__text .card_row button{
	width: 208px;
}
.store_detail .home--left__text .card_row .error button{
    color: red;
    border-color: red;
}
.store_detail .home--left__text label[for=total],
.store_detail .home--left__text .card_total{
	display: none;
}
.card_total {
  font-size: 20px;
  margin-top: 30px;
}
.content_detail #home .home--left .home--left__text p.card_total{
    padding: 25px 0px;
}
.basket_card {
  display: flex;
}
.basket_card .navicon{width:100px;}
.ads-example.card_total {
  margin-top: 0;
}
.store_detail .home--left__text .card_row.buy, .store_detail .card_total {
    /*background-color: rgba(0,0,0,0.4);*/
}
.card_row {
  display: flex;
  justify-content: space-between;
}
#cards label,
.card_row.buy {
  font-size: 17px;
}
.store_detail .home--left__text .card_row.buy > div{
	padding-right: 16px;
}
.store_detail .home--left__text .card_row.buy > div:last-child{
	padding-right: 0;
    padding-left: 1px;
   vertical-align: top;
}
.store_detail .home--left__text .card_row.buy > div:last-child label{
    display:none;
}
.store_detail .home--left__text .card_row > div:last-child button{
    margin-bottom:25px;
}
.store_detail .home--left__text .order-cards > p + div > div,
.store_detail .home--left__text .order-cards > div + div > div{
	display: inline-block;
        text-align: left;
        width: 100%;
}
.store_detail .home--left__text .order-cards > p + div label,
.store_detail .home--left__text .order-cards > div + div label,
.store_detail .home--left__text .order-cards > div + div input[type=submit]{
	color: var(--blue-darker);
}
.store_detail .home--left__text .order-cards > p + div .error label,
.store_detail .home--left__text .order-cards > div + div .error label {
    color: red !important;
}
.store_detail .home--left__text .order-cards > p + div input[type=text],
.store_detail .home--left__text .order-cards > div + div input[type=text],
.store_detail .home--left__text .order-cards > div + div textarea,
.store_detail .home--left__text .order-cards > div + div select{
	background-color: var(--blue-lighter);
	color: var(--blue-darkest);
    margin-bottom: 10px;
}
.store_detail .home--left__text .order-cards > div + div input[type=submit]{
    border-color: var(--blue-darker);/*#0066cc;*/
    margin-top: 20px;
    padding: 0 30px;
}
.accordion {
  display: inline-block;
  width: 100%;
  padding: 0 !important;
  margin: 10px 0 !important;
}
.accordion label {
  display:block;
  background: var(--blue-lighter);
  font-weight: 300;
  padding: 15px;
  cursor:pointer;
  font-size: 20px;
  border-radius: 8px;
}
.content_detail.blocks #home .home--left .home--left__text section:first-child label,
.content_detail.blocks #home .home--left .home--left__text section .content_right label,
.content_detail.blocks #home .home--left .home--left__text section:not(.full) label {
  background: #ffffff;
  color: #000000;
}
.content_detail.blocks #home .home--left .home--left__text section:first-child label:hover,
.content_detail.blocks #home .home--left .home--left__text section .content_right label:hover,
.content_detail.blocks #home .home--left .home--left__text section:not(.full) label:hover {
  background: var(--blue-lightest);
}
.content_detail.store_detail #home .home--left .home--left__text section:first-child label:hover,
.content_detail.store_detail #home .home--left .home--left__text section .content_right label:hover,
.content_detail.store_detail #home .home--left .home--left__text section:not(.full) label:hover {
  background-color: transparent;
  color: var(--blue-darkest);
}
.content_detail #home .home--left .home--left__text p.accordion label {
  margin: 0 50px;
}
.accordion label:before {
  content: '\279C';
  padding-right: 15px;
  color: #ffffff;
  margin-left: -35px;
}
.content_detail.blocks #home .home--left .home--left__text section:first-child .accordion label:before,
.content_detail.blocks #home .home--left .home--left__text section .content_right .accordion label:before,
.content_detail.blocks #home .home--left .home--left__text section:not(.full) .accordion label:before {
  color: #000000;
}
.content_detail.blocks #home .home--left .home--left__text section:first-child .accordion label:hover:before,
.content_detail.blocks #home .home--left .home--left__text section .content_right .accordion label:hover:before,
.content_detail.blocks #home .home--left .home--left__text section:not(.full) .accordion label:hover:before {
  /*color: #ffffff;*/
}

.accordion + article {
  width: 100%;
  margin: 0 auto;
  visibility: hidden;
  display:block;
  height: 0;
}
.accordion.open + article {
  visibility: visible;
  height: auto;
  line-height: 30px;
  font-size: 20px;
  margin: 5px 50px 10px;
  width: auto;
  font-size: 20px;
  text-align: left;
}
.accordion.open label:before {
  content: '\279C';
  transform: rotate(90deg);
  display: inline-block;
  padding-right: 0;
  margin-right: 15px;
}
.content_detail.blocks #home .home--left .home--left__text section[style*="blue-light"] .accordion.open + article{
      /*color: var(--blue-darkest);*/
}
input.searchfield{
  width: 650px;
  max-width: 96%;
  line-height: 26px;
  border: 2px solid var(--blue-lighter);
  border-radius: 0;
  height: 40px;
  padding: 0 2%;
  border-radius: 6px;
}
.searchform_content > div:first-child {
  max-width: 650px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.searchform_content > div:first-child:after {
  content: ' ';
  position: absolute;
  width: 30px;
  height: 50px;
  background: url('../files/magnifier-search-zoom-2.svg');
  border: 0;
  background-size: contain;
  display: inline-block;
  right: 20px;
  top: 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.searchform_content > div {
  margin-bottom: 25px;
}
.searchform_content > div > span {
  display:block;
  margin-bottom: 10px;
  font-size: 22px;
}
.searchform_content > div > button,
.searchform_results > button{
  padding: 0 10px;
  margin: 5px;
  line-height: 45px;
  height: 45px;
  border: none;
  background-color: var(--blue-lighter);
  border-radius: 8px;
}
.searchform_content > div > button:hover,
.searchform_results > button:hover{
  background-color: var(--blue-lightest);
}
.searchform_content > div > button img,
.searchform_results > button img{
  max-width: 40px;
  vertical-align: top;
  margin-left: -10px;
}
.searchform_content > div:last-child > span {
  cursor: pointer;
  margin-left: 15px;
}
.searchform_content > div:last-child > span:before {
  content:'▼';
  position: absolute;
  margin-left: -25px;
}
.searchform_content > div.on:last-child > span:before {
  content:'▲';
}
.searchform_content > div:last-child > button {
  display: none;
}
.searchform_content > div.on:last-child > button {
  display: inline-block;
}
.searchform_results ul{
    list-style-type: none;
    padding: 0;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.searchform_results li{
  padding: 5px 10px 5px;
  margin: 5px;
  line-height: 30px;
  font-size: 22px;
  cursor: pointer;
  flex-basis: 45%;
  flex-grow: 0;
}
.searchform_results li.on{
  background-color: var(--blue-lightest);
}
.searchform_results li:after {
  content: ' ';
  margin: 0 auto;
  height: 2px;
  border-bottom: 2px dotted var(--blue-light);
  display: block;
}
.member_list_entry {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-direction: column;
}
.member_list_entry > div {
  flex-basis: 33.33333%;
}
/*.member_list_entry > div:first-child {
  text-align: left;
}
.member_list_entry > div:nth-child(2) {
  text-align: right;
}*/
.member_list_entry > div:last-child {
  display: none;
}
.content_detail.navi_right.member_list #home .home--right{
    position: fixed;
    right: 20px;
    top: 135px;
}
.content_detail.blocks #home .home--left .home--left__text{
    padding-left: 0;
    margin: -20px 0 0;
    padding-top: 0;
    padding-right: 0;
    max-width: none;
    background-color: transparent;
}
.content_detail.blocks #home .home--left .home--left__text section{
    margin: 0;
    background-color: var(--blue-mid);
    color: white;
    position: relative;
    width: 32%;
    padding: 50px 50px 10px;
}
.content_detail.blocks #home .home--left .home--left__text section .__buttons {justify-content: left;}
.content_detail.blocks #home .home--left .home--left__text section a {
  color: var(--blue-dark);
}
.content_detail.blocks #home .home--left .home--left__text section a:hover {
  color: var(--blue-primary);
}
.content_detail.blocks #home .home--left .home--left__text section.full{width:100%;padding: 25px 0 30px;background-color:white;color:var(--color-body);}
/*.content_detail.blocks #home .home--left .home--left__text section.full p,*/
.content_detail.blocks #home .home--left .home--left__text section.full h2{margin: var(--spacing-small) 0;}
.content_detail.blocks #home .home--left .home--left__text section h2{color: var(--color-body);font-size: 34px;font-weight: 300;line-height: 40px;text-align: left;padding: 0 50px;}
.content_detail.blocks #home .home--left .home--left__text section.full a {
  color: var(--color-body);
}
.content_detail.blocks #home .home--left .home--left__text section.flex{display: flex;padding:0;background-color: var(--blue-mid);color:white;}
.content_detail.blocks #home .home--left .home--left__text section.flex h2{color:white;}
.content_detail.blocks #home .home--left .home--left__text section.flex a {
  color: white;
}
.content_detail.blocks #home .home--left .home--left__text section:first-child{
    margin-top:0;
}
.content_detail.blocks #home .home--left .home--left__text section:first-child {
  background-color: var(--blue-light);
  color: white;
  padding-top: 200px;
  width: 32%;
}
.content_detail.store_detail #home .home--left .home--left__text section:first-child .content_right {
  color: #000000;
}
.content_detail.blocks #home .home--left .home--left__text section:first-child .content_left,
.content_detail.blocks #home .home--left .home--left__text section:first-child .content_right {
    padding-top: 200px;
}
@media only screen and (max-width:2150px), screen and (max-height: 1020px){
    .content_detail.blocks #home .home--left .home--left__text section:first-child{
      width: 42%;
    }
    .content_full{
      max-width: 42%;
    }
    .content_detail.blocks #home .home--left .home--left__text section {
        width: 42%;
    }
    .content_right {
      flex-basis: 42%;
      padding: 30px 25px 0;
    }
    .content_detail #home .home--left .home--left__text,
    .content_detail.blocks #home .home--left .home--left__text section {
          padding-left: 25px;
          padding-right: 25px;
    }
    .content_detail #home .home--left .home--left__text h1 {
      font-size: 46px;
      line-height: 52px;
    }
    .content_detail #home .home--left .home--left__text p {
      font-size: 20px;
    }
    .breadcrumb {
        left: 65px;
    }
}
@media only screen and (max-width:1550px){
    .content_detail.blocks #home .home--left .home--left__text section:first-child{
      width: 48%;
    }
    .content_detail.blocks #home .home--left .home--left__text section {
        width: 48%;
    }
    .content_right {
      flex-basis: 48%;
    }
    .content_full{
      max-width: 65%;
    }
    .content_detail.blocks #home .home--left .home--left__text section {
          padding-left: 0;
          padding-right: 0;
    }
    .content_detail.blocks #home .home--left .home--left__text section:first-child .content_left,
    .content_detail.blocks #home .home--left .home--left__text section:first-child .content_right,
    .content_detail.blocks #home .home--left .home--left__text section:first-child {
        padding-top: 80px;
    }
    #page .home--left .home--left__text section .content_right {
          padding-left: 0;
          padding-right: 0;
    }
    #home .home--left .home--left__text h1,
    .content_detail #home .home--left .home--left__text p,
    #page .home--left .home--left__text h1,
    #page .home--left .home--left__text h2,
    .content_detail.blocks #home .home--left .home--left__text section h2,
    .content_detail #page .home--left .home--left__text p,
    .content_detail .home--left .home--left__text .__buttons{
        padding-left: 30px;
        padding-right: 30px;
    }
    .content_detail #home .home--left .home--left__text h1 {
      font-size: 38px;
      line-height: 44px;
      hyphens: auto;
    }
    .content_detail.blocks #home .home--left .home--left__text section h2 {
      font-size: 30px;
    }
    .content_detail #home .home--left .home--left__text p,
    .accordion.open + article{
      font-size: 18px;
    }
    .content_detail #home .home--left .home--left__text p.accordion label {
      margin: 0 30px;
    }
    #home .home--left .home--left__text .home--left__buttons .btn, .__buttons .btn {
      font-size: 20px;
    }
    .breadcrumb {
        left: 20px;
    }
}
.content_left {
  flex-basis: 65%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.content_right {
  flex-basis: 32%;
  padding: 50px 50px 0;
}
@media only screen and (max-width:2150px), screen and (max-height: 1020px){
    .content_right {
      flex-basis: 42%;
      padding: 30px 25px 0;
    }
    .content_left {
      flex-basis: 58%;
    }
}
@media only screen and (max-width:1550px){
    .content_right{
      flex-basis: 48%;
    }
    .content_left {
      flex-basis: 52%;
    }
}
.content_img-left {
  max-width: 100%;
  object-fit: cover;
}
.content_full {
  max-width: 32%;
  margin: 0 auto;
}
@media only screen and (max-width:2150px), screen and (max-height: 1020px){
    .content_detail  .content_full{
      max-width: 45%;
    }
    .store_detail  .content_full{
      max-width: 45%;
    }
}
@media only screen and (max-width:1550px){
    .content_detail  .content_full{
      max-width: 50%;
    }
    .store_detail  .content_full{
      max-width: 65%;
    }
}
section .navicon{max-width: 150px;height:auto;}
/*.blocks footer {background-color: var(--blue-lightest);}*/
.blocks .accordion label {
  background: var(--blue-light);
  color: var(--blue-darkest);;
  font-weight: 400;
  padding-left: 50px;
}
.blocks .accordion label:hover {
  background: var(--blue-lighter);
}
.blocks section:first-child .accordion label:hover {
  background: var(--blue-lighter);
}
.content_detail.blocks #home .home--left .home--left__text section.full .accordion.open + article p{font-size: 22px;line-height: 32px;}
@media only screen and (max-width:980px), screen and (max-height: 1020px){
    .content_detail.navi_right.member_list #home .home--right{
        display:none;
    }
    .content_detail.navi_right.member_list #home .home--right.on{
        display:flex;
        right: 0;
        margin-right: 0;
        height: 100vH;
        top: 0;
        background-color: rgba(0,0,0,0.6);
        z-index: 999999;
    }
    .content_detail.navi_right.member_list #home .home--right.on #address_block:after {
        content: '';
        position: absolute;
        margin-left: -5px;
        margin-top: -40px;
        width: 40px;
        background-image: url(/assets/templates/files/close-wht.svg);
        height: 50px;
        background-size: contain;
        background-repeat: no-repeat;
    }
}
#member_content_data,
#address_block,
#map,
#map_block,
.searchform_results li.off{
     display:none;   
}
.searchform_content button.on,
.searchform_results button.on{
  background-color: var(--blue-lightest);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1) inset;
}
#address_block.on,
#map_block.on,
#map.on{
     display:block;   
}
#map{
     margin: 1em 0; 
}

.content_detail.navi_right.member_list #home .home--right .ads-example{
    background-color: rgba(255,255,255,0.7);
    justify-content: space-between;
    padding-bottom: 5px;
}
.content_detail.navi_right.member_list #home .home--right .ads-example hr{
    display: none;
}
.content_detail.navi_right.member_list #home .home--right .ads-example p {
  margin: 15px 10px 0;
  text-shadow: 0px 0 8px var(--blue-lightest);
}
.content_detail.navi_right.member_list #home .home--right .ads-example p:first-of-type {
  background-color: white;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 6px 6px 0 0;
  height: 46px;
  justify-content: center;
  display: flex;
  padding: 10px;
}
.content_detail.navi_right.member_list .ads-example .navicon {
  max-width: 50px;
}
.content_detail.navi_right.member_list #home .home--right .ads-example #company_map_block {
  height: 250px;
  margin: 0;
  margin-bottom: -4px;
}
.content_detail.navi_right.member_list #map {
  height: 550px;
  z-index: 0;
}
.content_detail.navi_right.member_list #home .home--right .ads-example #company_map_block .leaflet-control-attribution.leaflet-control{
    font-size: 10px;
}
.extract p{
    margin: 0;
}
img.content{
    max-width: 50%;
    margin: 0 auto;
    display: block;
    height: auto;
}
.bullet {
  margin-left: 30px;
  display: block;
}
.bullet:before {
  content: '●';
  padding-right: 15px;
  margin-left: -26px;
}
/*SHOP*/
.card_row.buy {
  border-top: 1px solid var(--blue-primary);
  padding-top: 20px;
}
@media only screen and (max-width: 1200px), screen and (max-height: 1020px) {
  .content_detail #home .home--left {
    margin: 0 auto;
    padding-top: 0;
  }
   .blocks.content_detail #home .home--left {
    margin: 0 0 0;
    width: 100%;
  }
    .content_detail.blocks #home .home--left .home--left__text section .content_left{
        flex-basis: 75% !important;
    }
}
@media only screen and (max-width: 980px), screen and (max-height: 1020px) {
  .content_detail #home {
    padding-top: 0;
  }
}
@media only screen and (max-width: 2100px) and (min-height: 1020px) {
  .content_detail.navi_right #home .home--left .home--left__text {
    margin-left: 25px;
    margin-right: 350px;
    max-width: 100%;
  }
  .content_detail.navi_right.member_list #home .home--left .home--left__text {
    margin-left: auto;
    margin-right: auto;
    max-width: 1250px;
  }
}
@media only screen and (max-width: 1200px), screen and (max-height: 1020px) {
  .content_detail.navi_right #home .home--left {
    width: 100%;
  }
  .store_detail .home--left__text #cards > div > div {
    display: block;
    text-align: left;
  }
  .store_detail .home--left__text .card_row > div label{
      display: inline-block;
      vertical-align: middle;
      position: relative;
      padding-right: 15px;
  }
  .card_row {
      flex-direction: column;
    }
.store_detail .home--left__text #cards label:after {
  content: ':';
  white-space: pre;
  display: block;
  height: 5px;
  position: absolute;
  right: 8px;
  top: -1px;
  font-weight: bold;
}
#anzahl:before,
#betrag:before{
  content: ' ';
  display: block;
}
.content_detail #home .home--left .home--left__text p.card_total {
  padding: 0px;
}
  .store_detail .home--left__text .card_row > div:last-child label,
  .store_detail .home--left__text .card_row:first-child label[for="total"] {
    display: none !important;
  }
  .store_detail .home--left__text .card_row > div:last-child button {
    margin-bottom: 25px;
    margin-top: 10px;
  }
  .store_detail .home--left__text #cards input {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1200px) {
    .searchform_results li{
      height: auto;
      font-size: 20px;
      line-height: 26px;
    }
}
@media only screen and (max-width: 1295px) {
    .content_full {
      max-width: none;
      margin: 0;
      padding-left: 25px;
      padding-right: 25px;
    }
    .content_detail .content_full {
      padding-left: 0;
      padding-right: 0;
      margin: 0 auto;
    }
    .store_detail .content_full {
      padding-left: 0;
      padding-right: 0;
      margin: 0 auto;
    }
    .content_detail #home .home--left .home--left__text form {
      padding: 0 30px;
    }
}
@media only screen and (max-width: 1500px), screen and (max-height: 1020px) {
    .header .nav_desktop{
        display: none;
    }
    .header .nav_mobile{
        display: flex;
    }
    #home .home--left .home--left__text p.home_content {
      font-size: 22px;
      line-height: 30px;
      padding: 25px;
      text-align: center;
    }
    #home .home--left .home--left__text h1 {
      font-size: 40px;
      line-height: 48px;
    }
    #home .home--left .home--left__text .home--left__buttons{
      padding: 5px;
    }
}
@media only screen and (max-width: 980px), screen and (max-height: 1020px) {
  .content_detail.navi_right #home .home--left {
    order: 2;
  }
  #home .home--left .home--left__text {
    padding-right: 0;
  }
  .content_detail.navi_right #home .home--right{
    order: 1;
  }
  .content_detail.navi_right #home .home--right .ads-example{
    width: auto;
    flex-grow: 1;
    display: flex;
    min-height: 185px;
  }
  .content_detail.navi_right #home .home--right > a {
    display: flex;
    flex-basis: 30%;
  }
}
@media only screen and (max-width: 980px) {
  .header .nav_mobile .saldo {
    display: none;
  }
  .header+nav>.service{display:block;}
  .content_detail.navi_right #home .home--left .home--left__text {
    margin-right: 0;
    margin-left: 0;
  }
  .blocks.content_detail #home .home--left {
    margin: 0;
  }
  .blocks.content_detail #home .home--left .home--left__text {
    margin-top:380px ;
  }
  #page.blocks:before{
      background-position: top center;
      height: 400px;
  }
  .scroll.far #page.blocks:before{
      height: 100vH;
  }
  .breadcrumb {
    left: 20px;
    top: 85px;
    color: #fff;
  }
  .breadcrumb a {
    color: #fff;
  }
  .content_detail.blocks #home .home--left .home--left__text section,
  .content_detail.blocks #home .home--left .home--left__text section:first-child,
  .content_detail.blocks #home .home--left .home--left__text section .content_left,
  .content_detail.blocks #home .home--left .home--left__text section .content_right{
     width: auto; 
     padding-top: 25px;
  }
  .content_detail.blocks #home .home--left .home--left__text section:first-child{
     flex-direction: column;
  }
  .content_detail.blocks #home .home--left .home--left__text section:first-child .content_left,
  .content_detail.blocks #home .home--left .home--left__text section:first-child .content_right{
     padding-top:25px;
  }
  .content_detail.store_detail #home .home--left .home--left__text section:first-child .content_left{
     order: 2;
  }
  .store_detail .content_full,
  .content_detail .content_full {
    max-width: none;
  }
  .content_right {
    flex-basis: 58%;
  }
  .content_left {
    flex-basis: 42%;
  }
  footer{
      flex-direction: column;
      height: auto;
  }
    footer p:after {
      display: none;
    }
  /*#page{margin-bottom:100px;}*/
    .searchform_results li{
      height: auto;
      font-size: 18px;
      line-height: 24px;
    }
    #home .home--left .home--left__text .home--left__buttons {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding-right: 5px;
    }
    .member_list_entry {flex-direction: column;}
    .member_list_entry > div,
    .member_list_entry > div:first-child,
    .member_list_entry > div:last-child{text-align: center;}
}
@media only screen and (max-width: 760px) {
  .home_page #home .home--left .home--left__text > h1 {
    padding-top: 50px;
  }
  .home_page #home .home--left .home--left__text .home--left__buttons {
      width: auto;
    }
  .content_detail.navi_right.member_list #home .home--right {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .content_detail.navi_right #home .home--right > a {
    display: flex;
    flex-basis: 100%;
  }
  .content_detail.navi_right.member_list #home .home--right > a {
    width: 100%;
    flex-basis: auto;
  }
  .content_detail.navi_right #home .home--right .ads-example{
    height: 100px;
    min-height: auto;
  }
  .content_detail.navi_right.member_list #home .home--right .ads-example {
    height: auto;
    margin: 0 15px;
  }
  .content_detail.navi_right.member_list #home .home--right #map_block .ads-example {
      max-height: 40vH;
  }
  .content_detail.navi_right.member_list #home .home--right .ads-example #company {
      margin-top: 5px;
  }
  .content_detail.navi_right #home .home--right .ads-example p {
      font-size: 20px;
      align-content: space-evenly;
      margin-top: 0;
      line-height: 26px;
  }
  .content_detail.navi_right #home .home--right .ads-example .navicon {
      max-width: 30px;
      margin-top: 5px;
  }
  .content_detail.navi_right.member_list #home .home--right #map_block .ads-example .navicon {
      max-width: 50px;
      margin-top: 0;
  }
  .content_detail.navi_right.member_list #home .home--right.on #address_block:after{
      margin-left: 10px;
  }
  .store_detail .home--right a:last-child br:nth-of-type(2),
  .store_detail .home--right a:last-child b+br,
  .store_detail .home--right a:last-child br:last-of-type{display:none;}
  .content_detail.blocks #home .home--left .home--left__text section.flex {flex-direction: column;}
  .content_left {width: 100%;min-height: 30vH;}
  .cookie-privacy-setting div {
    flex-direction: column;
  }
  #home .home--left .home--left__text {
    flex-direction: column;
    gap: 0;
  }
  .home_page #home .home--left .home--left__text > h1 {
    padding-top: 30px;
    font-size: 56px;
    line-height: 60px;
    margin: 0 auto;
  }
  #home .home--left .home--left__text p.home_content {
    margin: 0 0 15px;
  }
  #home .home--left .home--left__text .home--left__buttons {
    padding-right: 15px;
    padding-left: 15px;
  }
    img.content{
        max-width: 60%;
        width: 60%;
    }
}
.home_page .home--right{display:none!important;}
nav ul li ul{display:none;}
.header:hover nav ul li a + ul,
nav.open ul li a + ul{display:block;}
nav.open ul li a + ul{margin-bottom:0;}
/*.header .saldo img{max-width: 45px;vertical-align:middle;margin-right:5px;}*/
.header .saldo img,
.header+nav .saldo img{max-width: 20px;vertical-align:text-top;margin-right:5px;}
.header .saldo a,
.header+nav .saldo a{text-decoration:none;color:#ffffff;font-size: 16px;padding:0 10px; /*background-color:var(--blue-darkest);*/}
.header+nav .saldo a{padding: 5px 0;display: block;}
.header .saldo a.last {
  padding: 0 10px 0 0;
}
.header+nav .saldo a.last {
  padding: 5px 0;
}
/*.header .saldo a:hover{background-color:var(--blue-dark);}
.header .nav_desktop .saldo a{font-size: 18px;}*/

.header .nav_desktop .saldo a{
  font-size: 18px;
  padding-top: 4px;
  padding-bottom: 1px;
  display: inline-block;}
  
@media only screen and (max-width: 1750px) {
    /*.header .nav_desktop ul li a{font-size: 18px;line-height: 30px;}*/
    .header .nav_desktop nav ul li:first-child img,
    .header .nav_desktop nav ul li:last-child img {max-width: 25px;}
}
.header .nav_desktop nav ul li ul:hover{display: block;}
/*.header .nav_desktop nav ul li.active:hover a.active + ul {
  display: flex;
  position: fixed;
  margin-left: -10px;
  background-color: var(--blue-darkest);
  margin-top: 8px;
}*/
.text h2{text-align:left;padding-left:50px;}

@media only screen and (max-width: 550px) {
    .searchform_content > div > button,
    .searchform_results > button{width: 100%;}
}
#page.home_page #home {
  background-color: var(--blue-old1);
}
.home_page #home .home--left .home--left__text h1 {
  text-shadow: 3px 3px 5px #333333;
}
#home > div > div .btn:first-child,
#home > div > div .btn:nth-child(2){
  background-color: var(--blue-old3);
}
#home > div > div .btn:first-child:hover,
#home > div > div .btn:nth-child(2):hover{
  background-color: var(--blue-darkest);
}
[style*="background-color: var(--blue-light"]{
  background-color: var(--blue-old1) !important;
}
.content_detail.blocks #home .home--left .home--left__text section:first-child,
.content_detail.blocks #home .home--left .home--left__text section.flex,
.content_detail.blocks #home .home--left .home--left__text section{
  background-color: var(--blue-old1);
}
.blocks .accordion label{
  background-color: var(--blue-old1);
  color: #ffffff;
}
.blocks .accordion label:hover{
  background-color: var(--blue-darkest);
}