/* VARIABLES und FONTS müssen ins Backoffice unter Vorlagen -> Designs -> Reiter "Styles Generell"
Sie liegen hier nur für die korrekte Funktion des Master */
/* VARIABLES */
:root {
  --c-text: #232220;
  --c-primary: #49729b;
  --c-primary-light: #ABCDEF;
  --c-primary-dark: #3a536b;
  --c-secondary: #3a6c7b;
  --c-secondary-light: #ABCDEF;
  --c-secondary-dark: #ABCDEF;
  --c-tertiary: #ABCDEF;
  --c-tertiary-light: #ABCDEF;
  --c-tertiary-dark: #ABCDEF;
  --c-grey: #efebe7;
  --c-grey-light: #f3f5f3;
  --c-grey-dark: #d2d2d2;
  --c-green: #6ABE83;
  --c-green-light: #6ABE83;
  --c-green-dark: #6ABE83;
  --c-red: #D76161;
  --c-red-light: #D76161;
  --c-red-dark: #D76161;
  --c-white: #ffffff;
  --c-black: #000000;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Bricolage Grotesque', sans-serif;
  --font-tertiary: 'Bricolage Grotesque', sans-serif;
}

/* FONTS */
/* bricolage-grotesque-latin-300-normal */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(/assets/abm/fonts/bricolage/bricolage-grotesque-latin-300-normal.woff2) format("woff2"); }

/* bricolage-grotesque-latin-400-normal */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/abm/fonts/bricolage/bricolage-grotesque-latin-400-normal.woff2) format("woff2"); }

/* bricolage-grotesque-latin-500-normal */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/assets/abm/fonts/bricolage/bricolage-grotesque-latin-500-normal.woff2) format("woff2"); }

/* montserrat-latin-300-normal */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(/assets/abm/fonts/montserrat/montserrat-latin-300-normal.woff2) format("woff2"); }

/* montserrat-latin-400-normal */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/abm/fonts/montserrat/montserrat-latin-400-normal.woff2) format("woff2"); }

/* montserrat-latin-500-normal */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/assets/abm/fonts/montserrat/montserrat-latin-500-normal.woff2) format("woff2"); }

  @font-face {
    font-family: 'Glyphicons Halflings';
    src: url(/assets/abm/fonts/glyphicons/glyphicons-halflings-regular.eot);
    src: url(/assets/abm/fonts/glyphicons/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(/assets/abm/fonts/glyphicons/glyphicons-halflings-regular.woff2) format('woff2'),url(/assets/abm/fonts/glyphicons/glyphicons-halflings-regular.woff) format('woff'),url(/assets/abm/fonts/glyphicons/glyphicons-halflings-regular.ttf) format('truetype'),url(/assets/abm/fonts/glyphicons/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
}


/* GENERAL */
.bookingEngine .wrapper header {
  background-color: var(--c-white);
}

.bookingEngine .flex {
  display: flex;
  align-items: center;
}

.bookingEngine .header {
  padding: 15px 0;
}

@media screen and (min-width: 550px) {
  .bookingEngine .header {
    padding: 35px 0;
  }
}

.bookingEngine a,
.bookingEngine a::after {
  transition: color .3s ease;
}

/* LOGO */
.bookingEngine .header .logo img {
  max-height: 40px;
  max-width: 100%;
}

@media screen and (min-width: 550px) {
  .bookingEngine .header .logo img {
    max-height: 55px;
  }
}

/* MENU ITEMS */
.bookingEngine .header .menu a {
  background-color: transparent;
  color: var(--c-black);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
}

.bookingEngine .header .menu a:hover {
  background-color: transparent;
  color: var(--c-primary-dark);
  text-decoration: none;
}

/* FOOTER */
.bookingEngine main {
  min-height: calc(100vh - 85px - 110px - 100px); /*hier die Höhen von Header und Footer abziehen*/
}

.bookingEngine main p.text-center:has(.fa-cog.fa-spin),
.bookingEngine main .fa-cog.fa-spin {
  display: none !important;
}

.abm-hidden:has(#abmCalendarArea) {
  display: block !important;
  transition: height 5s ease;
}

.bookingEngine footer {
  padding: 30px 0;
}

.bookingEngine footer .socialIcons a,
.bookingEngine footer .legals a {
  color: var(--c-tertiary);
  text-decoration: none;
}

.bookingEngine footer .socialIcons a:hover,
.bookingEngine footer .socialIcons a:active,
.bookingEngine footer .socialIcons a:focus,
.bookingEngine footer .legals a:hover,
.bookingEngine footer .legals a:active,
.bookingEngine footer .legals a:focus {
  color: var(--c-primary-dark);
}

.bookingEngine footer svg {
  height: 25px;
  width: 25px;
}

.bookingEngine footer .legals,
.bookingEngine footer .socialIcons {
  width: 100%;
  padding: 5px 15px;
  text-align: center;
}

.bookingEngine footer .legals a:not(:last-child)::after {
  content: '|';
  position: relative;
  top: -1px;
  padding-left: 5px;
}

.bookingEngine footer .legals a:not(:last-child):hover::after {
  color: var(--c-tertiary);
}

@media screen and (min-width: 550px) {
  .bookingEngine footer .row {
    display: flex;
    align-items: center;
  }

  .bookingEngine footer .socialIcons {
    width: 30%;
    text-align: left;
  }

  .bookingEngine footer .legals {
    width: 70%;
    text-align: right;
    font-size: 18px;
  }
}