/* ============================== VARIABLES ============================== */
@import 'Variables.css';

/* ============================== GENERAL ============================== */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'ClassicGrotesque', sans-serif;
  background-color: #ffffff;
  color: #343434;
  font-size: 18px;
  font-weight: 400;
  font-variant: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  line-height: 1.35;
  scroll-behavior: smooth;
}

@media screen and (max-width: 992px) {
  html {
    font-size: 16px;
  }

  //body {
  //  word-break: break-word;
  //  hyphens: auto;
  //  -webkit-hyphens: auto;
  //  -ms-hyphens: auto;
  //}
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

.Button {
  margin-right: 2px;
}

@media screen and (max-width: 576px) {
  .Button {
    width: 100%;
  }

  .Button a {
    text-align: center;
    line-height: 1.25em;
    width: 100%;
  }
}

button.MenuToggle:hover,
button.Header-navigationClose:hover,
button.Accordion-button:hover {
  background: transparent;
}

button.Header-navigationClose:hover i {
  color: var(--clr-secondary);
}

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

a {
  color: var(--clr-blue);
  text-decoration: none;
  display: inline-block;
}

a[href$='.pdf']::before {
  content: '';
  background-image: url('../Images/pdf_line-blue.svg');
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  float: left;
  margin-right: 5px;
}

/* ============================== CONTAINER ============================== */

.Container {
  /* max-width: 1480px; */
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

/* ============================== HEADER ============================== */

.Header {
  width: 100%;
}

.Header-containerTop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}

.Header-logo {
  width: 330px;
}

.Header-containerTop-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 182px;
}

.Header-containerTop-searchForm {
  position: relative;
  display: flex;
  flex-direction: column;
}

.Header-containerTop-searchLabel {
  margin-bottom: 5px;
}

.Header-containerTop-searchInput {
  border-radius: 0;
  border: 2px solid var(--clr-blue);
  font-family: 'ClassicGrotesque', sans-serif;
  font-size: 18px;
  padding: 15px 20px;
  width: 550px;
  transition: all 0.3s;
}

.Header-containerTop-searchInput::placeholder {
  color: #919191;
}

.Header-containerTop-searchButton {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 58px;
  color: var(--clr-blue);
  text-align: center;
  line-height: 60px;
  font-size: 26px;
  padding: 0 15px;
  border: 0;
  background-color: transparent;
}

.Header-containerTop-rightButton {
  font-family: 'ClassicGrotesque', sans-serif;
  height: 58px;
  /* color: #ffffff;
  background-color: var(--clr-blue); */
  padding: 0 20px;
  border: 0;
  margin-left: 20px;
  position: relative;
  z-index: 11;
}

.Header-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.Header-buttonsElement {
  margin-left: 10px;
}

.Header-buttonsElement-button i {
  font-size: 32px;
}

.Header-buttonsElement-overlay {
  background: #fff;
  border: 2px solid var(--clr-blue);
  border-radius: 10px;
  display: none;
  min-width: 300px;
  max-width: 500px;
  padding: 15px;
  position: absolute;
  margin-top: 25px;
  right: 20px;
  z-index: 100;
}

.Header-buttonsElement-overlay .header-icon-maps {
  display: flex;
  flex-flow: column;
  height: 85px;
  border: 1px solid;
  width: 105px;
  align-items: center;
  justify-content: center;
  background: var(--clr-blue);
  color: #fff;
  text-decoration: none;
  margin-top: 15px;
}

.Header-buttonsElement-overlay .close {
  cursor: pointer;
  position: relative;
  text-align: right;
}

.Header-buttonsElement-overlay .close svg {
  transition: transform 0.5s;
}

.Header-buttonsElement-overlay .close svg:hover {
  transform: rotate(90deg);
}

.Header-buttonsElement-overlay.clock > div > .row > .col:first-of-type {
  display: none;
}

.Header-buttonsElement-overlay.clock .row .row {
  flex-flow: column;
}

.Header-buttonsElement-overlay.clock .row .col {
  flex-basis: 100%;
  max-width: 100%;
}

.Header-buttonsElement-overlay.clock .row .col:last-of-type {
  margin-top: 15px;
}

.Header-buttonsElement-overlay.clock .row .col > div {
  height: inherit;
}

.Header-buttonsElement-overlay.clock h4,
.Header-buttonsElement-overlay.clock .row .row .col:last-of-type .OpeningHours > div:first-of-type strong {
  display: none;
}

.Header-buttonsElement-overlay h5 {
  color: #6a9900;
  font-size: 1rem;
}

.Header-buttonsElement-overlay p {
  font-size: 0.8rem;
}

@media screen and (max-width: 1300px) {
  .Header-containerTop-searchInput {
    width: 350px;
  }
}

@media screen and (max-width: 1060px) {
  .Header-containerTop-searchInput {
    width: 280px;
  }
}

@media screen and (max-width: 991px) {
  .Header-containerTop-rightButton {
    display: none;
  }

  .Header-containerTop-right {
    width: 100%;
  }

  .Header-containerTop-right form {
    margin-top: 15px;
  }

  .Header-containerTop-right form label {
    display: none;
  }

  .Header-containerTop-right form,
  .Header-containerTop-right form input {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .Header-containerTop {
    flex-flow: column;
  }
}

@media screen and (max-width: 850px) {
  .Header-buttonsElement-overlay {
    left: 0;
    right: 0;
    width: 100%;
  }

  /* .Header-containerSub .Container .MenuWrapper {
    margin-bottom: 10px;
  } */

  /* .Header-containerSub .Container {
    flex-flow: column;
  } */
}

/* ============================== WEATHER ============================== */
.HeaderWeatherContainer {
  align-items: center;
  display: flex;
  height: 58px;
  margin-right: 15px;
}
.HeaderWeatherContainer .wetter {
  align-items: center;
  display: flex;
  font-size: 16px;
  line-height: 100%;
  text-align: left;
  padding-left: 45px;
  margin-left: 25px;
  text-transform: capitalize;
  width: 100px;
}
.HeaderWeatherContainer .wetter.word {
  height: 25px;
  margin-left: 0;
}
.HeaderWeatherContainer > .wetter {
  height: 34px;
}
.heiter {
  background: url('../Images/wetterIcons.png') no-repeat scroll left 0 transparent;
}
.wolkig {
  background: url('../Images/wetterIcons.png') no-repeat scroll left -50px transparent;
}
.bedeckt,
.bedeckt_n {
  background: url('../Images/wetterIcons.png') no-repeat scroll left -97px transparent;
}
.regenschauer {
  background: url('../Images/wetterIcons.png') no-repeat scroll left -144px transparent;
}
.regen {
  background: url('../Images/wetterIcons.png') no-repeat scroll left -194px transparent;
}
.schneefall {
  background: url('../Images/wetterIcons.png') no-repeat scroll left -334px transparent;
}
.schneeregen {
  background: url('../Images/wetterIcons.png') no-repeat scroll left -334px transparent;
}
.schneeschauer {
  background: url('../Images/wetterIcons.png') no-repeat scroll left -334px transparent;
}
.gewitter {
  background: url('../Images/wetterIcons.png') no-repeat scroll left -243px transparent;
}
.nebel {
  background: url('../Images/wetterIcons.png') no-repeat scroll left -288px transparent;
}
@media screen and (max-width: 500px) {
  .HeaderWeatherContainer .wetter {
    min-width: 98px;
    margin-left: 10px;
  }
  .HeaderWeatherContainer .wetter {
    background-size: 20px;
    padding-left: 22px;
  }
  .regen {
    background-position: left -110px;
  }
  .heiter {
    background-position: left 4px;
  }
  .wolkig {
    background-position: left -27px;
  }
  .bedeckt {
    background-position: left -55px;
  }
  .regenschauer {
    background-position: left -80px;
  }
  .schneefall,
  .schneeregen,
  .schneeschauer {
    background-position: left -195px;
  }
  .gewitter {
    background-position: left -140px;
  }
  .nebel {
    background-position: left -167px;
  }
}

@media screen and (max-width: 768px) {
  .HeaderWeatherContainer .wetter {
    font-size: 18px;
  }
}

@media screen and (max-width: 576px) {
  .HeaderWeatherContainer {
    display: none;
  }
}
