/*
    Variablen-Definitionen zur Benutzung durch alle Marken
*/
/*
SHARED MIXINS
(zur Verwendung durch alle Marken)
*/
#MainMenu {
  border-bottom: 0 none;
}
#BannerLabel {
  color: #FFF;
  display: inline-block;
  font-size: 15px;
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
}
#BannerCategory {
  font-size: 24px;
}
.jumbotron {
  padding: 0;
}
@keyframes ResetOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes DarkenBanner {
  0% {
    filter: brightness(100%);
    -webkit-filter: brightness(100%);
  }
  100% {
    filter: brightness(65%);
    -webkit-filter: brightness(65%);
  }
}
@keyframes InputField {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#BannerContainer {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  z-index: 2;
  /*
    animation-name: DarkenBanner;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-delay: 1s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    */
}
input.UserInput,
#SeasonsLabel,
#SeasonsByline,
#DiscoverLink {
  /*
    animation-name: ResetOpacity, InputField;
    animation-duration: 0s, 1s;
    animation-iteration-count: 1;
    animation-delay: 0s, 2s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    */
}
#DiscoverLink {
  text-align: center;
  position: absolute;
  bottom: 7%;
  width: 100%;
  color: #fff;
  z-index: 2;
}
#DiscoverLink a,
#DiscoverLink a:visited {
  color: #FFF;
  font-family: Arial, Sans-Serif;
  font-size: 14px;
  text-transform: uppercase;
  border: 0 none;
}
#BannerContainer .Slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-position: top center;
  background-size: cover;
  filter: brightness(65%);
}
.SeasonsText1 {
  font-size: 26px;
  font-weight: bold;
  color: #58585a;
}
.SeasonsText2 {
  margin-top: 1em;
  margin-bottom: 1em;
}
.SeasonsTextContainer.Opened .Open {
  display: none;
}
.SeasonsTextContainer.Closed .Close,
.SeasonsTextContainer.Closed .SeasonsText1,
.SeasonsTextContainer.Closed .SeasonsText2 {
  display: none;
}
.SeasonsTextContainer .Open,
.SeasonsTextContainer .Close {
  background-position: right 13px center;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.SeasonsTextContainer .btn {
  font-size: 14px;
}
.SeasonsTextContainer .Open {
  background-image: url('images/OpenText.png');
}
.SeasonsTextContainer .Open:hover {
  background-image: url('images/OpenText-Active.png');
}
.SeasonsTextContainer .Close {
  background-image: url('images/CloseText.png');
}
.SeasonsTextContainer .Close:hover {
  background-image: url('images/CloseText-Active.png');
}
.BigBorderedButton {
  font-size: 14px;
  padding: 6px 10px;
}
.NewsMessage {
  position: absolute;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 50px;
  width: 100%;
  text-align: center;
  font-size: 19px;
  padding-top: 13px;
  color: #fff;
}
.NewsMessage a {
  color: #fff;
  text-decoration: none;
}
.NewsMessage a:hover {
  text-decoration: underline;
}
/* -- TOPICS -- */
.Topics {
  width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.Topics .TopicRow {
  margin-bottom: 19px;
}
.Topics .Topic {
  float: left;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}
.Topics .Topic:first-child {
  margin-right: 19px;
}
.Topics .Topic a:link,
.Topics .Topic a:visited,
.Topics .Topic a:hover,
.Topics .Topic a:active {
  text-decoration: none;
}
.Topics .Topic .Head,
.Topics .Topic .Description,
.Topics .Topic .PlayButton div {
  position: absolute;
  font-family: "hypatia-sans-pro", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 300;
  color: #FFF;
  margin: 30px;
  margin-top: 20px;
  white-space: pre-wrap;
}
.Topics .Topic:hover .Head[style] {
  color: #FFF !important;
}
.Topics .Topic .Head {
  line-height: 1;
}
.Topics .Topic .Head::after {
  content: "\00a0»";
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.Topics .Topic:hover .Head::after {
  content: "\00a0»";
  opacity: 1;
  visibility: visible;
  transition: all 0.3s 0.6s;
}
.Topics .Topic .Description {
  visibility: hidden;
  opacity: 0;
  font-size: 27px;
  line-height: 1.2;
  margin-top: 25px;
  transition: all 0.3s;
}
.Topics .Topic:hover .Description {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s 0.6s;
}
.Topics .Topic .PlayButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.Topics .Topic .PlayButton img {
  transition: all 0.3s;
}
.Topics .Topic .PlayButton div {
  position: static;
  font-size: 18px;
  margin: 20px 0 0 0;
  opacity: 0;
  transition: all 0.3s;
}
.Topics .Topic:hover .PlayButton img,
.Topics .Topic:hover .PlayButton div {
  transform: scale(1.4) rotate(0.1deg);
  transition: all 0.5s 0.1s;
}
.Topics .Topic:hover .PlayButton div {
  opacity: 1;
}
.Topics .Topic img.TopicImg {
  height: 380px;
  width: 380px;
  z-index: 0;
  transition: all 0.3s;
}
.Topics .Topic:hover img.TopicImg {
  filter: brightness(0.45);
  transform: scale(1.1) rotate(0.1deg);
  transition: all 0.5s 0.1s;
}
.Topics .TopicRow.LeftTemplate .Topic:first-child .Head,
.Topics .TopicRow.LeftTemplate .Topic:last-child .Description,
.Topics .TopicRow.RightTemplate .Topic:first-child .Head {
  bottom: 0;
  left: 0;
  text-align: left;
}
.Topics .TopicRow.CenterTemplate .Topic .Head {
  bottom: 0;
  right: 0;
  text-align: right;
}
.Topics .TopicRow.LeftTemplate .Topic:last-child .Head,
.Topics .TopicRow.LeftTemplate .Topic:first-child .Description,
.Topics .TopicRow.RightTemplate .Topic:first-child .Description,
.Topics .TopicRow.CenterTemplate .Topic .Description {
  top: 0;
  left: 0;
  text-align: left;
}
.Topics .TopicRow.RightTemplate .Topic:last-child .Head {
  bottom: 0;
  right: 0;
  text-align: right;
}
.Topics .TopicRow.RightTemplate .Topic:last-child .Description {
  top: 0;
  right: 0;
  text-align: right;
}
.Topics .TopicRow.LeftTemplate .Topic:last-child img.TopicImg,
.Topics .TopicRow.RightTemplate .Topic:first-child img.TopicImg {
  width: 770px;
}
.Topics .TopicRow.CenterTemplate .Topic img.TopicImg {
  width: 1170px;
}
#KeywordDictionary {
  text-align: center;
  margin: 50px auto 0 auto;
}
#KeywordDictionary h2 {
  font-family: "hypatia-sans-pro", sans-serif;
  font-size: 40px;
  margin-bottom: 20px;
}
#KeywordDictionary .Letters {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
#KeywordDictionary .Letters a {
  display: inline-block;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  width: 35px;
  padding: 10px 0;
  margin: 0 4px 4px 0;
  line-height: 1;
  text-align: center;
  font-family: "hypatia-sans-pro", sans-serif;
  font-size: 23px;
  text-decoration: none;
  border: 1px solid #dfdfdf;
  background-color: #FFF;
}
@media (min-width: 1000px) {
  #KeywordDictionary .Letters a {
    width: 39px;
    padding: 13px 0 17px 0;
  }
}
#KeywordDictionary .Letters a:hover {
  border-color: #464646;
}
#KeywordDictionary .Letters a.Active {
  color: #FFFFFF;
  border-color: #a2005c;
  background-color: #a2005c;
}
#KeywordDictionary .Letters {
  -ms-flex-pack: center;
      justify-content: center;
}
#KeywordDictionary .Letters a:hover {
  color: #FFFFFF;
  border-color: #a2005c;
  background-color: #a2005c;
}
/* ---- */
.GoToNewsletter {
  background-image: url('images/GoToNewsletter.png');
  background-position: right 15px center;
  background-repeat: no-repeat;
  padding-right: 28px;
  font-size: 14px;
}
.GoToNewsletter:hover {
  background-image: url('images/GoToNewsletter-Active.png');
}
#NewsContainer {
  margin-bottom: 40px;
  padding-bottom: 100px;
}
#SearchContainer {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 30%;
  z-index: 2;
}
#SearchContainer .SearchBar {
  display: inline-block;
  position: relative;
}
#SearchContainer .SearchBar form {
  display: -ms-flexbox;
  display: flex;
}
#SearchContainer .SearchBar form input.UserInput,
#SearchContainer .SearchBar form button.StartSearch {
  height: 56px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 0 none;
}
#SearchContainer .SearchBar form input.UserInput {
  padding: 10px;
  font-size: 25px;
  width: 574px;
  font-family: "hypatia-sans-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  outline: none;
}
#SearchContainer .SearchBar form button.StartSearch {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  padding: 0;
  border-left: 1px solid #DFDFDF;
  width: 56px;
  background-image: url('/Sites/Seasons/Resources/images/icons/Search.svg');
  background-size: 29px auto;
  background-position: center;
  background-repeat: no-repeat;
}
#SearchContainer .SearchBar form button.StartSearch:hover {
  transition: all 0.2s ease;
  background-color: #a2005c;
  background-image: url('/Sites/Seasons/Resources/images/icons/Search_white.svg');
}
#SearchContainer .SearchBar #AutosuggestContainer.dropdown.open > ul.autosuggest.dropdown-menu {
  background: rgba(255, 255, 255, 0.9);
}
#SearchContainer #SeasonsLabel,
#SearchContainer #SeasonsByline {
  font-family: "hypatia-sans-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #FFF;
}
#SearchContainer #SeasonsLabel {
  font-size: 160px;
  line-height: 1em;
  margin-top: 10px;
}
#SearchContainer #SeasonsByline {
  font-size: 40px;
}
/* -- */
@media (max-width: 700px) {
  input.UserInput {
    width: 254px !important;
  }
}
body::after {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  content: url('/Sites/Seasons/Resources/images/icons/Search_white.svg');
}

/*# sourceMappingURL=../../../Sites/Seasons/HomePage/Styles.css.map */