@font-face {
  font-family: "GrandHotel";
  src: url("GrandHotel-Regular.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "GrandHotel";
}

.content {
  flex: 1;
  padding: 125px 50px;
  align-items: center;
  justify-content: center;
}

.header {
  padding: 10px 20px;
  width: 100%;
  height: 80px;
  background-color: rgb(135, 121, 119);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  justify-content: center;
  z-index: 10;
}

.title {
  flex: 1;
  color: white;
  font-size: 20pt;
  margin: 0;
}

.subtitle {
  flex: 1;
  color: white;
  font-size: 18pt;
  margin: 0;
}

.footer {
  justify-content: center;
  left: 0;
  display: flex;
  position: fixed;
  align-items: center;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: rgb(135, 121, 119);
  z-index: 10;
}

.footer-element {
  flex: 1;
  padding: 20px;
  text-align: center;
  color: white;
  font-size: 18pt;
}

.footer-element-link {
  flex: 1;
  padding: 20px;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 18pt;
}

.footer-element-link:hover {
  color: rgb(220, 220, 220);
}

.titleSlides {
  display: none;
}

img {
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  flex: 1;
  max-width: 35%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 10px 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.content-text {
  font-size: 18pt;
  margin: 50px;
}

.content-text-link {
  text-decoration: none;
}

.map {
  flex: 1;
  align-items: center;
  position: relative;
  justify-content: center;
  margin: auto;
  width: 80%;
  height: 500px;
  margin: 100px;
  z-index: 0;
}

.collapsible {
  margin-top: 10px;
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 24px;
  font-family: "GrandHotel";
}

.active-collapsible,
.collapsible:hover {
  background-color: #ccc;
}

.content-collapsible {
  padding: 18px;
  font-size: 18pt;
  overflow: hidden;
  background-color: #f1f1f1;
  transition: max-height 0.2s ease-out;
  display: none;
}

.plan {
  display: grid;
  grid-template-columns: 55% 45%;
  max-height: 1000px;
}

.preis-tabelle {
  margin-top: 20px;
  padding: 15px 0;
  border: 1px solid black;
  width: auto;
}

td {
  padding: 0 25px;
}

.panel-body {
  grid-column: 1;
}

.prices {
  grid-column: 2;
}

.collapsible:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.active-collapsible:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

@media (max-width: 1000px) {
  .slideshow-container {
    max-width: 90%;
  }

  .content-text {
    margin: 20px;
  }

  .footer {
    height: 75px;
  }
}
