/* !!! IN DIESER DATEI NUR MIXINS UND LESS-VARIABLEN DIFINIEREN !!! */
/*
@font-size-h1-desktop: 60px;
@font-size-h2-desktop: 35px;
@font-size-h3-desktop: 32px;
@font-size-h4-desktop: 24px;
@font-size-h5-desktop: 17px;
*/
/*
    Variablen-Definitionen zur Benutzung durch alle Marken
*/
/* !!! IN DIESER DATEI NUR MIXINS UND LESS-VARIABLEN DIFINIEREN !!! */
/* !!! IN DIESER DATEI NUR MIXINS UND LESS-VARIABLEN DIFINIEREN !!! */
/*
SHARED MIXINS
(derzeit von SF, l4m, SPL & Strauss gemeinsam genutzt)
*/
/* --- Defaults für Variablen ---
(ggf. in den seitenunabhängigen Styles überschreiben)*/
/*
Mixin funktioniert nur auf oberster Ebene!
Beispiele:
Ein Icon:       .PreloadIcons(url('@{resources-icons}/arrow.png'));
Mehrere Icons:  .PreloadIcons(url('@{resources-icons}/arrow.png') url('@{resources-icons}/example.svg'));
*/
#Main h1 {
  margin-bottom: 0;
  font-family: "Futura Light", 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
#Main h1 strong {
  font-family: "Futura Book", 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: normal;
}
@media (min-width: 600px) {
  #Main h1 {
    font-size: 42px;
  }
}
@media (min-width: 1025px) {
  #Main h1 {
    font-size: 60px;
    margin-top: 50px;
  }
}
#Main p.Intro {
  line-height: 1.4;
  font-size: 16px;
}
@media (min-width: 600px) {
  #Main p.Intro {
    font-size: 17px;
  }
}
/* GALLERY (BANNERSLIDER) + SELEKTOREN */
#Gallery {
  margin-left: -8px;
  margin-right: -8px;
}
@media (min-width: 600px) {
  #Gallery {
    margin-left: 0;
    margin-right: 0;
  }
}
#Gallery img {
  width: 100%;
}
#Gallery .Slider {
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#Gallery .Slider .ButtonContainer {
  position: absolute;
  top: 50%;
  margin-top: -5%;
  height: 30%;
  min-width: 47px;
  max-height: 90px;
  min-height: 50px;
  cursor: pointer;
}
#Gallery .Slider .ButtonContainer.Left {
  left: 0;
  background: url(images/orbit-left-arrow.png) left center no-repeat;
  background-size: contain;
}
#Gallery .Slider .ButtonContainer.Right {
  right: 0;
  background: url(images/orbit-right-arrow.png) right center no-repeat;
  background-size: contain;
}
#Gallery .Slider .Slide {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.75s 0s;
  transition-timing-function: ease-out;
  display: none;
}
#Gallery .Slider .Slide.LeftOfActive {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  display: block;
}
#Gallery .Slider .Slide.LeftOfActive.MovingLeft {
  display: none;
}
#Gallery .Slider .Slide.Active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  display: block;
}
#Gallery .Slider .Slide.RightOfActive {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  display: block;
}
#Gallery .Slider .Slide.RightOfActive.MovingRight {
  display: none;
}
#Gallery .Slider .Slide .VideoWrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#Gallery .Slider .Slide .VideoWrapper video {
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-height: 100%;
  width: auto;
  max-width: 67%;
}
@media (min-width: 600px) {
  #Gallery .Slider .Slide .VideoWrapper video {
    top: 15%;
    left: 7%;
    -webkit-transform: none;
            transform: none;
    width: 60%;
    height: auto;
    max-width: 640px;
    max-height: 360px;
  }
}
#GallerySelector {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-bottom: 1px solid #cfcfcf;
  position: relative;
}
#GallerySelector h2 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1em;
  color: #393939;
}
@media (min-width: 600px) {
  #GallerySelector h2 {
    font-size: 35px;
  }
}
#GallerySelector > div {
  -webkit-flex: 1 1 50%;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  margin: 0;
  padding: 10px;
  border: 0 none;
  border-right: 2px solid #FFF;
  cursor: pointer;
}
@media (min-width: 600px) {
  #GallerySelector > div {
    -webkit-flex: 1 1 22%;
        -ms-flex: 1 1 22%;
            flex: 1 1 22%;
  }
}
@media (min-width: 1025px) {
  #GallerySelector > div {
    padding: 20px 10px 20px 20px;
  }
}
#GallerySelector > div.Active h2:after,
#GallerySelector > div:hover h2:after {
  content: ' »';
}
@media (min-width: 600px) {
  #GallerySelector > div > div {
    border: none;
  }
}
#GallerySelector > div:nth-child(1) {
  border-right: 1px solid #cfcfcf;
  padding-top: 0;
  margin-top: 10px;
}
#GallerySelector > div:nth-child(3) {
  border-top: 1px solid #cfcfcf;
  border-right: 1px solid #cfcfcf;
  padding-bottom: 0;
  margin-bottom: 10px;
}
#GallerySelector > div:nth-child(4) {
  border-top: 1px solid #cfcfcf;
}
#GallerySelector .Middle1,
#GallerySelector .Middle2 {
  position: absolute;
  left: 0;
  top: 0;
  background: #FFF;
  padding: 0;
}
@media (min-width: 600px) {
  #GallerySelector .Middle1,
  #GallerySelector .Middle2 {
    display: none;
  }
}
#GallerySelector .Middle1 {
  width: 40px;
  height: 3px;
  -webkit-transform: translate3d(-20px, -1px, 0);
          transform: translate3d(-20px, -1px, 0);
}
#GallerySelector .Middle2 {
  width: 3px;
  height: 40px;
  -webkit-transform: translate3d(-1px, -20px, 0);
          transform: translate3d(-1px, -20px, 0);
}
@media (min-width: 600px) {
  #GallerySelector > div:nth-child(n) {
    border: none;
    margin: 30px 0 40px 0;
    padding: 0;
  }
}
@media (min-width: 600px) {
  #GallerySelector > div > div {
    padding: 0 30px;
  }
}
@media (min-width: 600px) {
  #GallerySelector > div:not(:nth-child(4)) {
    border: none;
    border-right: 1px solid #cfcfcf;
  }
}
#GallerySelector .Images.Active h2 {
  color: #941d1f;
}
#GallerySelector .Features.Active h2 {
  color: #6d60a8;
}
#GallerySelector .Videos.Active h2 {
  color: #317ad9;
}
#GallerySelector .Recipes.Active h2 {
  color: #25a35d;
}
#GallerySelector .Recipes {
  position: relative;
}
/* NEWS */
.News {
  margin-bottom: -20px;
}
@media (min-width: 600px) {
  .News {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1025px) {
  .News {
    margin-top: 50px;
  }
}
.News a,
.News a:hover,
.News a:visited,
.News a:link,
.News a:active {
  text-decoration: none;
}
.News .NewsItem {
  position: relative;
  border: 1px solid #cfcfcf;
  margin-bottom: 20px;
  padding: 10px 10px 0 10px;
}
.News .NewsItem p:last-child {
  margin-bottom: 10px !important;
}
@media (min-width: 600px) {
  .News .NewsItem p:last-child {
    margin-bottom: 15px !important;
  }
}
@media (min-width: 600px) {
  .News .NewsItem {
    padding: 15px 15px 0 15px;
    width: calc(50% - 10px);
    box-sizing: border-box;
  }
  .News .NewsItem a::after {
    content: '\00A0\00BB';
  }
}
.News .NewsItem img.NewsImage {
  float: left;
  margin: 0 15px 10px 0;
  max-width: 40%;
}
@media (min-width: 1000px) {
  .News .NewsItem img.NewsImage {
    margin: 0 20px 15px 0;
  }
}
.News .NewsItem img.BlogBadge {
  position: absolute;
  top: -10px;
  right: 10px;
}
@media (min-width: 600px) {
  .News .NewsItem img.BlogBadge {
    right: 15px;
  }
}
.News .NewsItem .BlogBadgePlaceholder {
  visibility: hidden;
  float: right;
  width: 37px;
  height: 30px;
}
@media (min-width: 600px) {
  .News .NewsItem .BlogBadgePlaceholder {
    width: 42px;
    height: 25px;
  }
}
.News .NewsItem h2 {
  margin: 0;
  line-height: 1.1em;
  font-size: 19px;
}
@media (min-width: 600px) {
  .News .NewsItem h2 {
    font-size: 24px;
  }
}
@media (min-width: 1025px) {
  .News .NewsItem h2 {
    font-size: 29px;
  }
}
/* KEYWORDLEXIKON */
.KeywordDictionary {
  display: none;
  margin-top: 50px;
}
@media (min-width: 600px) {
  .KeywordDictionary {
    display: block;
  }
  .KeywordDictionary h2 {
    font-size: 26px;
  }
}
.KeywordDictionary .Letters {
  margin: 0 5px;
  line-height: 1.4 !important;
}
.KeywordDictionary .Letters a.Size1,
.KeywordDictionary .Letters a.Size2,
.KeywordDictionary .Letters a.Size3,
.KeywordDictionary .Letters a.Size4,
.KeywordDictionary .Letters a.Size5,
.KeywordDictionary .Letters a.Size6,
.KeywordDictionary .Letters a.Size7,
.KeywordDictionary .Letters a.Size8 {
  margin-right: 8px;
  text-decoration: none;
  font-family: "Futura Book", 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
.KeywordDictionary .Letters a.Size1:hover,
.KeywordDictionary .Letters a.Size2:hover,
.KeywordDictionary .Letters a.Size3:hover,
.KeywordDictionary .Letters a.Size4:hover,
.KeywordDictionary .Letters a.Size5:hover,
.KeywordDictionary .Letters a.Size6:hover,
.KeywordDictionary .Letters a.Size7:hover,
.KeywordDictionary .Letters a.Size8:hover {
  color: #941d1f;
}
.KeywordDictionary .Letters a.Size1 {
  font-size: 22px;
  color: #5c5c5c;
  vertical-align: super;
}
.KeywordDictionary .Letters a.Size2 {
  font-size: 25px;
  color: #7d7d7d;
  vertical-align: super;
}
.KeywordDictionary .Letters a.Size3 {
  font-size: 25px;
  color: #Bababa;
  vertical-align: text-top;
}
.KeywordDictionary .Letters a.Size4 {
  font-size: 30px;
  color: #979797;
  vertical-align: top;
}
.KeywordDictionary .Letters a.Size5 {
  font-size: 40px;
  color: #b6b6b6;
  vertical-align: center;
}
.KeywordDictionary .Letters a.Size6 {
  font-size: 45px;
  color: #b3b3b3;
}
.KeywordDictionary .Letters a.Size7 {
  font-size: 50px;
  color: #939393;
}
.KeywordDictionary .Letters a.Size8 {
  font-size: 60px;
  color: #a5a5a5;
}
#CountrySelectLayer {
  height: auto !important;
}
#CountrySelectLayer p {
  margin: 0;
}
#CountrySelectLayer .CountryList {
  margin: 15px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#CountrySelectLayer .CountryList > ul {
  list-style: none;
  padding: 0;
  margin: 0 10px 0 0;
}
#CountrySelectLayer .CountryList > ul:last-child {
  margin-right: 0;
}
#CountrySelectLayer .CountryList > ul li {
  line-height: 1.5;
}
#CountrySelectLayer .CountryList > ul a:hover {
  color: #941d1f;
}

/*# sourceMappingURL=../../../../Sites/StockFood/Controllers/HomePage/Styles.css.map */