:root {
  font-size: 16px;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-weight: 100;
  margin: 0;
}

a {
  color: #1030a0;
  text-decoration: none;
}

.text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 90%;
  text-align: justify;
  font-size: 1.2em;
  line-height: 1.5;
  font-weight: 300;
}

.text a {
  font-weight: 600;
  border-bottom: 1px dotted #1030a0;
}

.secondary-text {
  text-align: justify;
  font-size: 0.8em;
  line-height: 1.5;
}

.secondary-text a {
  border-bottom: 1px dotted #1030a0;
}

.light {
  font-weight: 100;
}

.normal {
  font-weight: 300;
}

.bold {
  font-weight: 400;
}

.bolder {
  font-weight: 700;
}

.lin-grad {
  background: -webkit-gradient(linear, left top, right top, from(#1fbdc9), to(#24b));
  background: linear-gradient(to right, #1fbdc9, #24b);
}

.button {
  cursor: pointer;
  border-radius: 50px;
  border: none;
  -webkit-transition: background-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #1030a0;
  color: #fff;
  padding: 1.0rem;
}

.button a {
  color: #fff;
}

.button span {
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
}

.button span:first-of-type {
  border-right: 0.5px solid white;
}

@media (min-width: 1025px) {
  .button {
    padding: 1.4rem;
  }
  .button span {
    font-size: 1.35rem;
    padding: 0.5rem 1.5rem;
  }
  .button span:first-of-type {
    border-right: 0.5px solid white;
  }
}

.button:hover {
  background-color: #24b;
}

.button:active {
  background-color: black;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub {
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 1025px) {
  .sub {
    width: 10%;
    margin: 0;
    padding: 0;
  }
}

.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fh {
  min-height: 100vh;
}

.fh-last {
  min-height: calc(100vh - 4em);
}

.fw {
  width: 100vw;
}

.y-spacer {
  padding-top: 2em;
}

.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.h-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.h-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.v-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.v-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.blur {
  background: #ECF1F524;
  mix-blend-mode: normal;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}

.shadow {
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.header-lvl1 {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1fbdc9), to(#24b));
  background: linear-gradient(to right, #1fbdc9, #24b);
  font-family: "Parisienne", 'Open Sans';
  font-size: clamp(2em, 5vw, 5em);
  padding: 20px 30px;
  width: 100%;
  margin: 50px 0 50px 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
}

@media (min-width: 1025px) {
  .header-lvl1 {
    border-radius: 15px;
    width: 90%;
    font-size: 3em;
  }
}

.header-lvl2 {
  width: 90%;
  text-align: center;
  padding: 5px;
  border-bottom: 2px solid #24b;
  font-size: clamp(1.4em, 5vw, 3em);
  font-weight: 300;
}

.header-lvl3 {
  margin: 10px 0;
  padding: 5px 5px;
  border-bottom: 1px solid #1030a0;
  width: 100%;
  font-size: clamp(1.2em, 2vw, 2.5em);
}

.nav-bar, .nav-bar-constant {
  position: fixed;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: -80px;
  width: 100vw;
  height: 70px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: #ECF1F524;
  mix-blend-mode: normal;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  border-bottom: 1px solid #1030a0;
}

@media (min-width: 1025px) {
  .nav-bar, .nav-bar-constant {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.nav-bar .nav-logo, .nav-bar-constant .nav-logo {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.nav-bar .nav-logo svg, .nav-bar-constant .nav-logo svg {
  font-family: 'Lato', 'Open Sans', sans-serif;
}

@media (min-width: 1025px) {
  .nav-bar .nav-logo, .nav-bar-constant .nav-logo {
    position: relative;
    -webkit-transform: scale(1);
            transform: scale(1);
    margin: 0 20px;
  }
}

.nav-bar .nav-burger, .nav-bar-constant .nav-burger {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  --width-burger: 25px;
  cursor: pointer;
  width: var(--width-burger);
  margin: 20px 20px 20px 20px;
}

.nav-bar .nav-burger .top, .nav-bar .nav-burger .mid, .nav-bar .nav-burger .bot, .nav-bar-constant .nav-burger .top, .nav-bar-constant .nav-burger .mid, .nav-bar-constant .nav-burger .bot {
  height: calc(var(--width-burger)/12.5);
  background: #000;
  margin-top: calc(var(--width-burger)/5);
  margin-bottom: calc(var(--width-burger)/5);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 50px;
}

@media (min-width: 1025px) {
  .nav-bar .nav-burger, .nav-bar-constant .nav-burger {
    display: none;
  }
}

.nav-bar .nav-content, .nav-bar-constant .nav-content {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  left: 0;
  top: 0;
  height: inherit;
  width: 100vw;
}

@media (min-width: 1025px) {
  .nav-bar .nav-content, .nav-bar-constant .nav-content {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 64px;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background-color: transparent;
  }
}

.nav-bar .nav-content .nav-item, .nav-bar-constant .nav-content .nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
  opacity: 0;
  margin: 0px 15px;
}

@media (min-width: 1025px) {
  .nav-bar .nav-content .nav-item, .nav-bar-constant .nav-content .nav-item {
    visibility: visible;
    opacity: 1;
  }
}

.nav-bar .nav-content .nav-item a, .nav-bar-constant .nav-content .nav-item a {
  border: 1px solid transparent;
  font-size: 2em;
  font-weight: 300;
  font-variant: small-caps;
  padding: 0.5em 5px 0.1em 5px;
  -webkit-transition: border-bottom-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-bottom-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-bar .nav-content .nav-item a:hover, .nav-bar-constant .nav-content .nav-item a:hover {
  border-bottom: 1px dotted #1030a0;
}

@media (min-width: 1025px) {
  .nav-bar .nav-content .nav-item a, .nav-bar-constant .nav-content .nav-item a {
    font-size: 2em;
    padding: 0.42em 5px 0.40em 5px;
  }
}

.nav-bar .nav-content .rsvp a, .nav-bar-constant .nav-content .rsvp a {
  border: 1px solid transparent;
  border-radius: 50px;
  background-color: #1030a0;
  color: #fff;
  margin-top: 10px;
  padding: 0 15px 10px 15px;
  -webkit-transition: background-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-bar .nav-content .rsvp a:hover, .nav-bar-constant .nav-content .rsvp a:hover {
  background-color: #24b;
}

.nav-bar .nav-content .nav-item:first-child, .nav-bar-constant .nav-content .nav-item:first-child {
  margin-top: 4em;
}

@media (min-width: 1025px) {
  .nav-bar .nav-content .nav-item:first-child, .nav-bar-constant .nav-content .nav-item:first-child {
    margin-top: 0;
  }
}

.nav-bar .nav-content .nav-item:last-child, .nav-bar-constant .nav-content .nav-item:last-child {
  margin-bottom: 4em;
}

@media (min-width: 1025px) {
  .nav-bar .nav-content .nav-item:last-child, .nav-bar-constant .nav-content .nav-item:last-child {
    margin-bottom: 0;
  }
}

.nav-bar-constant {
  top: 0;
}

._active {
  height: 100vh;
}

._active .top {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}

._active .mid {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

._active .bot {
  -webkit-transform: translateY(-7px) rotate(45deg);
          transform: translateY(-7px) rotate(45deg);
}

._active .nav-content > .nav-item {
  visibility: visible;
  opacity: 1;
}

.covid-overlay {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  z-index: 9999;
  width: auto;
  max-width: 90%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 50px 0;
  background-color: #aa0000;
  border-radius: 15px;
  color: white;
  font-weight: 400;
}

.covid-overlay * {
  border-bottom-color: white;
  padding: 15px;
}

.covid-overlay .button {
  background-color: white;
  color: #aa0000;
  padding: 15px 80px;
}

.covid-overlay .text, .covid-overlay .secondary-text {
  max-width: 90%;
}

.covid-overlay .covid-close {
  position: absolute;
  cursor: pointer;
  width: 30px;
  height: 30px;
  padding: 0;
  right: 20px;
  top: 20px;
}

.covid-overlay .covid-close::before, .covid-overlay .covid-close::after {
  position: absolute;
  content: '';
  cursor: pointer;
  right: 14px;
  width: 2px;
  height: 30px;
  border-radius: 50px;
  background-color: white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.covid-overlay .covid-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (min-width: 1025px) {
  .covid-overlay {
    max-width: 60%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .covid-overlay .text, .covid-overlay .secondary-text {
    max-width: 80%;
  }
}

#Willkommen {
  background: -webkit-gradient(linear, left top, right top, from(#1fbdc9), to(#24b));
  background: linear-gradient(to right, #1fbdc9, #24b);
}

#Willkommen svg {
  width: 75vw;
  margin: 28% 0 2em 0;
}

#Willkommen #logo {
  display: none;
}

#Willkommen #logo-mobile {
  display: block;
}

#Willkommen #date, #Willkommen #place {
  color: #fff;
  font-size: 2em;
  text-align: center;
  font-weight: 300;
}

@media (min-width: 1025px) {
  #Willkommen #date, #Willkommen #place {
    font-size: 3em;
  }
}

#Willkommen .menu {
  position: relative;
  z-index: 999;
  background-color: white;
  width: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

#Willkommen .menu :first-child {
  padding: 0 0 0 5px;
}

#Willkommen .menu :last-child {
  padding: 0 5px 0 0;
}

#Willkommen .menu .menu-item {
  background-color: transparent;
  font-size: 1.3em;
  font-weight: 400;
  text-align: center;
  font-variant: small-caps;
  letter-spacing: 0px;
  border: 1px dotted transparent;
  margin: 10px 0;
  padding: 5px 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

#Willkommen .menu .menu-spacer {
  padding: 0;
  margin: 7px 0 0 0;
  width: 1px;
  height: 1.5em;
  border-left: 1px solid #1030a0;
}

@media (min-width: 1025px) {
  #Willkommen .menu {
    position: relative;
    top: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: 75vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-radius: 15px;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    padding: 0;
  }
  #Willkommen .menu .menu-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.3em;
    letter-spacing: 3px;
    padding: 10px 5px 10px 5px;
  }
  #Willkommen .menu .menu-item:hover {
    border-bottom: 1px dotted #1030a0;
  }
  #Willkommen .menu .menu-item::after {
    content: "";
    margin: 0;
  }
  #Willkommen .menu .menu-spacer {
    height: 2em;
  }
}

#Willkommen .bg-left, #Willkommen .bg-right {
  display: none;
}

@media (min-width: 1025px) {
  #Willkommen .bg-left, #Willkommen .bg-right {
    display: block;
    height: 100vh;
    width: calc(100vw/3);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
  }
}

#Willkommen .bg-right {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

#Willkommen .btn-rsvp {
  margin: 50px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 1025px) {
  #Willkommen {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #Willkommen svg {
    width: 65vw;
    margin: 4em 0 0 0;
  }
  #Willkommen #logo {
    display: block;
  }
  #Willkommen #logo-mobile {
    display: none;
  }
}

#Zeitplan table {
  width: 90%;
  border-collapse: collapse;
  border-radius: 50px;
}

@media (min-width: 1025px) {
  #Zeitplan table {
    width: auto;
  }
}

#Zeitplan table .left {
  text-align: right;
}

#Zeitplan table .right {
  text-align: left;
}

@media (min-width: 1025px) {
  #Zeitplan table .left:hover::after, #Zeitplan table .right:hover::before {
    position: absolute;
    opacity: 1;
    z-index: -999;
    content: "\2764";
    font-size: 2em;
    color: #24b;
    padding: 19px 0;
  }
}

#Zeitplan table tr:hover {
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}

#Zeitplan table tr:first-child td {
  border-top: 25px solid transparent;
}

#Zeitplan table tr:last-child td {
  border-bottom: 25px solid transparent;
}

#Zeitplan table a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px;
  font-size: 1em;
  font-weight: 400;
  margin: 2px 0;
}

@media (min-width: 1025px) {
  #Zeitplan table a {
    font-size: 2em;
    font-weight: 300;
    padding: 15px 50px;
  }
}

#Standesamt .sub, #Restaurant .sub, #Zuhause .sub {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1025px) {
  #Standesamt .flex, #Restaurant .flex, #Zuhause .flex {
    width: 50vw;
  }
  #Standesamt .sub, #Restaurant .sub, #Zuhause .sub {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#Standesamt .info, #Standesamt .travel, #Restaurant .info, #Restaurant .travel, #Zuhause .info, #Zuhause .travel {
  padding: 25px 0 25px 0;
}

#Standesamt img, #Restaurant img, #Zuhause img {
  width: 100%;
}

#Standesamt #suresnes-img, #Standesamt #lb-logo, #Standesamt #ubahn, #Restaurant #suresnes-img, #Restaurant #lb-logo, #Restaurant #ubahn, #Zuhause #suresnes-img, #Zuhause #lb-logo, #Zuhause #ubahn {
  border-radius: 50px;
  width: 90%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}

@media (min-width: 1025px) {
  #Standesamt #suresnes-img, #Standesamt #lb-logo, #Standesamt #ubahn, #Restaurant #suresnes-img, #Restaurant #lb-logo, #Restaurant #ubahn, #Zuhause #suresnes-img, #Zuhause #lb-logo, #Zuhause #ubahn {
    width: 70%;
  }
}

#Standesamt #ubahn, #Restaurant #ubahn, #Zuhause #ubahn {
  margin-bottom: 50px;
}

#Standesamt u3, #Restaurant u3, #Zuhause u3 {
  font-weight: 700;
  color: #EC6725;
}

#Standesamt u6, #Restaurant u6, #Zuhause u6 {
  font-weight: 700;
  color: #0065AE;
}

#Standesamt #g-map-suresnes, #Standesamt #g-map-boheme, #Restaurant #g-map-suresnes, #Restaurant #g-map-boheme, #Zuhause #g-map-suresnes, #Zuhause #g-map-boheme {
  width: 90%;
  border-radius: 50px;
}

#Geschenke .text {
  width: 80%;
}

#Geschenke a {
  border-bottom: 1px dotted #1030a0;
}

#Geschenke sub {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1025px) {
  #Geschenke sub {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#Geschenke .btn-paypal {
  display: block;
  width: 200px;
  padding: 15px 0;
}

#Geschenke .btn-fake {
  display: block;
  width: 200px;
  padding: 14px 0;
  border-radius: 50px;
  border: 1px solid #1030a0;
}

#Geschenke .sub {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 90%;
  padding: 50px 0;
}

#Geschenke .sub .fin {
  margin: 25px 0;
  padding: 25px 25px;
  border-radius: 50px;
}

#Geschenke .sub .fin .fin-text {
  font-size: 0.8em;
  text-align: center;
}

@media (min-width: 1025px) {
  #Geschenke .sub {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
  }
  #Geschenke .sub .fin {
    width: 25vw;
  }
}

#Unterkunft .text {
  width: 80%;
}

#Unterkunft a {
  border-bottom: 1px dotted #1030a0;
}

#Unterkunft .sub {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media (min-width: 1025px) {
  #Unterkunft .sub {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

#Unterkunft .hotel-list {
  padding: 50px 50px;
  margin: 25px 0 50px 0;
  border-radius: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1em;
  line-height: 2;
  text-align: left;
}

#Unterkunft .hotel-list #g-logo {
  display: none;
}

#Unterkunft .hotel-list .btn-airbnb {
  text-align: center;
  margin: 20px 0;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
}

#Unterkunft .hotel-list .btn-airbnb a {
  display: block;
  padding: 1.0em 1.2em;
}

#Unterkunft .hotel-list #logo-airbnb::before {
  content: '';
  position: relative;
  padding: 0.5em;
  margin-right: 0.5em;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg height='56.7px' id='logo-airbnb' style='enable-background:new 0 0 56.7 56.7%3B' version='1.1' viewBox='0 0 56.7 56.7' width='56.7px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath fill='%23FF5A5F' d='M50.3075 38.2082c-0.2454-0.5886-0.4908-1.2267-0.7362-1.7662c-0.3924-0.8831-0.785-1.7175-1.1285-2.5024l-0.0491-0.049 c-3.3855-7.3597-7.0164-14.8179-10.8434-22.1775l-0.1472-0.2946c-0.3926-0.7362-0.7854-1.5211-1.1776-2.3061 c-0.4909-0.883-0.9813-1.8156-1.7666-2.6988c-1.5699-1.9625-3.8269-3.0419-6.2311-3.0419c-2.4534 0-4.6614 1.0794-6.2807 2.9438 c-0.7358 0.8834-1.2757 1.8157-1.7662 2.6988c-0.3926 0.7849-0.7853 1.5701-1.1776 2.306l-0.1472 0.2946 c-3.7783 7.3596-7.4583 14.8179-10.8438 22.1775l-0.0491 0.0982c-0.3432 0.7853-0.7358 1.6193-1.1285 2.5023 c-0.245 0.5396-0.4905 1.1285-0.7358 1.7663c-0.6382 1.8157-0.8341 3.5327-0.589 5.2993c0.5399 3.68 2.9932 6.7711 6.3788 8.145 c1.2757 0.5395 2.6003 0.7849 3.9742 0.7849c0.3926 0 0.8835-0.049 1.2757-0.0982c1.6193-0.1963 3.2874-0.7358 4.9067-1.6684 c2.0116-1.1285 3.9254-2.7475 6.0843-5.1027c2.1589 2.3552 4.1214 3.9742 6.0844 5.1027c1.6189 0.9326 3.2873 1.4721 4.9063 1.6684 c0.3927 0.0491 0.8835 0.0982 1.2757 0.0982c1.374 0 2.7479-0.2454 3.9746-0.7849c3.4346-1.3739 5.8389-4.5141 6.3784-8.145 C51.1416 41.741 50.9452 40.024 50.3075 38.2082z M28.1787 40.7597c-2.6497-3.3364-4.3668-6.4765-4.9558-9.1262 c-0.2454-1.1285-0.2945-2.1097-0.1472-2.9929c0.0982-0.7849 0.3926-1.4721 0.7854-2.0607c0.9321-1.3249 2.502-2.1588 4.3177-2.1588 c1.8153 0 3.4347 0.7849 4.3177 2.1588c0.3927 0.5886 0.6872 1.2757 0.7854 2.0607c0.1469 0.8832 0.0978 1.9135-0.1473 2.9929 C32.5455 34.2341 30.8283 37.3742 28.1787 40.7597z M47.756 43.0658c-0.3436 2.5516-2.0607 4.7595-4.4649 5.7408 c-1.1777 0.4908-2.4534 0.6381-3.7291 0.4908c-1.2267-0.1473-2.4534-0.5399-3.7291-1.2757 c-1.7662-0.9813-3.5324-2.5024-5.5934-4.7594c3.2387-3.9746 5.2011-7.605 5.937-10.8434c0.3436-1.5212 0.3926-2.8951 0.2454-4.1709 c-0.1962-1.2267-0.6381-2.3552-1.3248-3.3364c-1.5212-2.208-4.0723-3.4837-6.9183-3.4837c-2.8456 0-5.3972 1.3249-6.9183 3.4837 c-0.6868 0.9813-1.1285 2.1097-1.3249 3.3364c-0.196 1.2758-0.1473 2.6988 0.2454 4.1709 c0.7359 3.2383 2.7479 6.9179 5.9371 10.8924c-2.0116 2.2571-3.8273 3.7782-5.5935 4.7594 c-1.2757 0.7359-2.5024 1.1285-3.7291 1.2758c-1.3249 0.1469-2.6006-0.0491-3.7291-0.4908 c-2.4043-0.9813-4.1213-3.1893-4.4649-5.7408c-0.1472-1.2266-0.049-2.4534 0.4418-3.8273c0.1473-0.4904 0.3923-0.9813 0.6377-1.5698 c0.3435-0.785 0.7362-1.6193 1.1285-2.4534l0.0491-0.0982c3.3854-7.3106 7.0165-14.7688 10.7947-22.0307l0.1473-0.2941 c0.3922-0.7362 0.7849-1.5212 1.1776-2.2571c0.3922-0.7853 0.834-1.5211 1.3735-2.1588C25.3821 7.2481 26.7556 6.61 28.2768 6.61 s2.8952 0.6381 3.9255 1.8156c0.5395 0.6377 0.9813 1.3736 1.374 2.1588c0.3922 0.7359 0.7849 1.5208 1.1775 2.2571l0.1469 0.2941 c3.7291 7.311 7.36 14.7687 10.7456 22.0797v0.0491c0.3923 0.7849 0.7359 1.6684 1.1285 2.4534 c0.2454 0.5885 0.4905 1.0794 0.6377 1.5698C47.8051 40.5635 47.9524 41.7902 47.756 43.0658z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#Unterkunft .hotel-list #logo-hotel::before {
  content: '';
  position: relative;
  padding: 0.5em;
  margin-right: 0.5em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' width='256' height='256' viewBox='0 0 256 256' xml:space='preserve'%3E%3Cdesc%3ECreated with Fabric.js 1.7.22%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg transform='translate(128 128) scale(0.72 0.72)' style=''%3E%3Cg style='stroke: none%3B stroke-width: 0%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: none%3B fill-rule: nonzero%3B opacity: 1%3B' transform='translate(-175.05 -175.05000000000004) scale(3.89 3.89)' %3E%3Crect x='9.04' y='28.4' rx='0' ry='0' width='71.92' height='61.6' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: %2324b%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) '/%3E%3Cpath d='M 77.015 0 H 12.985 C 10.806 0 9.04 1.766 9.04 3.944 v 19.451 h 71.92 V 3.944 C 80.96 1.766 79.194 0 77.015 0 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: %2324b%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 52.105 88 h -14.21 V 62.499 c 0 -0.982 0.796 -1.779 1.779 -1.779 h 10.652 c 0.982 0 1.779 0.796 1.779 1.779 V 88 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill:%23fff%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 51.098 39.07 H 38.902 c -0.556 0 -1.007 0.451 -1.007 1.007 v 12.196 c 0 0.556 0.451 1.007 1.007 1.007 h 12.196 c 0.556 0 1.007 -0.451 1.007 -1.007 V 40.077 C 52.105 39.521 51.654 39.07 51.098 39.07 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill:%23fff%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 72.599 39.07 H 60.404 c -0.556 0 -1.007 0.451 -1.007 1.007 v 12.196 c 0 0.556 0.451 1.007 1.007 1.007 h 12.196 c 0.556 0 1.007 -0.451 1.007 -1.007 V 40.077 C 73.607 39.521 73.156 39.07 72.599 39.07 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: rgb(249 249 249)%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 29.596 39.07 H 17.401 c -0.556 0 -1.007 0.451 -1.007 1.007 v 12.196 c 0 0.556 0.451 1.007 1.007 1.007 h 12.196 c 0.556 0 1.007 -0.451 1.007 -1.007 V 40.077 C 30.603 39.521 30.152 39.07 29.596 39.07 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: rgb(249 249 249)%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 72.599 60.72 H 60.404 c -0.556 0 -1.007 0.451 -1.007 1.007 v 12.196 c 0 0.556 0.451 1.007 1.007 1.007 h 12.196 c 0.556 0 1.007 -0.451 1.007 -1.007 V 61.727 C 73.607 61.171 73.156 60.72 72.599 60.72 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: rgb(249 249 249)%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 29.596 60.72 H 17.401 c -0.556 0 -1.007 0.451 -1.007 1.007 v 12.196 c 0 0.556 0.451 1.007 1.007 1.007 h 12.196 c 0.556 0 1.007 -0.451 1.007 -1.007 V 61.727 C 30.603 61.171 30.152 60.72 29.596 60.72 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: rgb(249 249 249)%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 88.225 21.595 H 1.775 C 0.795 21.595 0 22.39 0 23.371 v 5.607 c 0 0.981 0.795 1.775 1.775 1.775 h 86.449 c 0.981 0 1.775 -0.795 1.775 -1.775 v -5.607 C 90 22.39 89.205 21.595 88.225 21.595 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: %231030a0%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 25.369 4.138 c -0.552 0 -1 0.448 -1 1 v 4.684 h -4.281 V 5.138 c 0 -0.552 -0.448 -1 -1 -1 s -1 0.448 -1 1 v 11.368 c 0 0.552 0.448 1 1 1 s 1 -0.448 1 -1 v -4.684 h 4.281 v 4.684 c 0 0.552 0.448 1 1 1 s 1 -0.448 1 -1 V 5.138 C 26.369 4.585 25.921 4.138 25.369 4.138 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: rgb(255 222 85)%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 34.161 17.506 H 33.43 c -2.082 0 -3.775 -1.693 -3.775 -3.775 V 7.913 c 0 -2.082 1.693 -3.775 3.775 -3.775 h 0.731 c 2.082 0 3.775 1.693 3.775 3.775 v 5.818 C 37.936 15.813 36.242 17.506 34.161 17.506 z M 33.43 6.138 c -0.979 0 -1.775 0.796 -1.775 1.775 v 5.818 c 0 0.979 0.796 1.775 1.775 1.775 h 0.731 c 0.979 0 1.775 -0.796 1.775 -1.775 V 7.913 c 0 -0.979 -0.796 -1.775 -1.775 -1.775 H 33.43 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: rgb(255 222 85)%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 47.294 4.138 h -6.281 c -0.552 0 -1 0.448 -1 1 s 0.448 1 1 1 h 2.14 v 10.368 c 0 0.552 0.448 1 1 1 s 1 -0.448 1 -1 V 6.138 h 2.141 c 0.553 0 1 -0.448 1 -1 S 47.847 4.138 47.294 4.138 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: rgb(255 222 85)%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 58.475 11.822 c 0.553 0 1 -0.448 1 -1 s -0.447 -1 -1 -1 h -5.28 V 6.138 h 5.28 c 0.553 0 1 -0.448 1 -1 s -0.447 -1 -1 -1 h -6.28 c -0.553 0 -1 0.448 -1 1 v 11.368 c 0 0.552 0.447 1 1 1 h 6.28 c 0.553 0 1 -0.448 1 -1 s -0.447 -1 -1 -1 h -5.28 v -3.684 H 58.475 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: rgb(255 222 85)%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3Cpath d='M 70.911 15.506 h -5.28 V 5.138 c 0 -0.552 -0.447 -1 -1 -1 s -1 0.448 -1 1 v 11.368 c 0 0.552 0.447 1 1 1 h 6.28 c 0.553 0 1 -0.448 1 -1 S 71.464 15.506 70.911 15.506 z' style='stroke: none%3B stroke-width: 1%3B stroke-dasharray: none%3B stroke-linecap: butt%3B stroke-linejoin: miter%3B stroke-miterlimit: 10%3B fill: rgb(255 222 85)%3B fill-rule: nonzero%3B opacity: 1%3B' transform=' matrix(1 0 0 1 0 0) ' stroke-linecap='round' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 1025px) {
  #Unterkunft .hotel-list {
    font-size: 1.3em;
  }
  #Unterkunft .hotel-list #g-logo {
    width: 22px;
    height: 22px;
  }
}

.footer {
  display: absolute;
  left: 0;
  bottom: 0;
  height: 4em;
}

.footer #footer {
  background-color: #1030a0;
  width: 100%;
  color: white;
  font-size: 0.8em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0 10px 25px;
}

.footer .f-text-l, .footer .f-text-rs {
  position: relative;
  padding: 13px 0;
}

.footer .f-text-l {
  margin-right: 15px;
}

.footer .f-text-r {
  margin-left: 50px;
}

.footer .f-heart-wrapper {
  position: relative;
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

.footer .f-heart {
  position: relative;
}

.footer .f-heart:before, .footer .f-heart:after {
  position: absolute;
  content: "";
  left: 20px;
  top: -16px;
  width: 20px;
  height: 32px;
  background: #aa0000;
  border-radius: 50px 50px 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-animation: pulsecolor 1s infinite;
          animation: pulsecolor 1s infinite;
}

.footer .f-heart:after {
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-animation: pulsecolor 1s infinite;
          animation: pulsecolor 1s infinite;
}

@-webkit-keyframes pulse {
  10% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}

@keyframes pulse {
  10% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}

@-webkit-keyframes pulsecolor {
  10% {
    background: #aa0000;
  }
}

@keyframes pulsecolor {
  10% {
    background: #aa0000;
  }
}

@media (min-width: 1025px) {
  .footer {
    font-size: 1.5em;
  }
}

.back-to-top {
  position: -webkit-sticky;
  position: sticky;
  float: right;
  cursor: pointer;
  right: 1em;
  bottom: 1em;
  height: 5em;
  width: 5em;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #1030a0;
}

.back-to-top:hover {
  background-color: #24b;
}

.back-to-top .btt-circle {
  font-size: 2em;
  padding-bottom: 4px;
  color: #fff;
}

.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
}

.hidden {
  display: none;
}
/*# sourceMappingURL=main.css.map */