* {
  box-sizing: border-box;
}
.preisliste {
  margin-top: 30px;
}
.preisliste h1 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #333;
}
.preisliste p {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
  font-size: 1.1rem;
}
.preis-item {
  background: #f9fafb;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}
.preis-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.produkt-header {
  display: flex;
  align-items: center;
}
.produktname {
  font-weight: 700;
  font-size: 1.4em;
  color: #0097b2;
}
.linie {
  flex: 1;
  border-bottom: 1px dotted #bbb;
  margin: 0 1rem;
}
.untertitel {
  color: #484848;
  font-size: 1.0em;
}
.preis {
  color: #0097b2;
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
}
.bildmaster {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  top: 40px;
}
.bildmaster img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bildmaster:after {
  content: "";
  display: block;
  padding-bottom: calc(100vh - 400px);
}
.imgtxt {
  width: 520px;
  border: 1px solid transparent;
  position: absolute;
  bottom: 160px;
  color: #fff;
  font-weight: 900;
  font-size: 1.8em;
  line-height: 1.6em;
  text-shadow: 2px 2px 4px #222222;
  left: 50%;
  letter-spacing: 0.05em;
  margin-left: -260px;
  text-align: center;
}
.bildblende {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000000;
  opacity: 0;
}
html {
  margin: 0;
  padding: 0;
  width: 100%;
}
html.no-scroll {
  overflow-y: hidden;
  padding-right: 10px;
}
body {
  font-size: 1.2em;
  line-height: 1.5em;
  padding: 0;
  margin: 0;
  font-family: 'Outfit', serif;
  width: 100%;
  color: #000000;
  font-weight: 300;
  background-color: #f0e9df;
}
.maincontent {
  padding-left: 150px;
  max-width: 1280px;
}
.master {
  position: relative;
  display: flex;
}
.sidebar {
  min-width: 30%;
  background-color: #0097b2;
  position: fixed;
  height: 100vh;
  z-index: 22;
  padding-top: 120px;
}
.sidebar.is-open {
  min-width: 100%;
  width: 100%;
}
.logowrapper {
  position: absolute;
  top: 100px;
  /* Abstand vom oberen Rand, anpassbar */
  left: calc(30% - 150px);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(to right, #0097b2 50%, #f0e9df 50%);
}
.basecontent {
  margin-left: 30%;
  min-width: 70%;
}
header {
  width: 100%;
  min-height: 20px;
  background-color: #0097b2;
  border-bottom: 1px solid #f0e9df;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  z-index: 100;
  transition: all 1s ease;
}
.master.is-scrolled .header {
  border-bottom: 1px solid #0097b2;
  transition: all 1s ease;
  top: 0;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
.master.affe .header {
  transition: all 1s ease;
  top: 0;
}
.infoboxwrapper {
  padding: 22px;
  border: 3px solid #0097b2;
  background-color: #e7e7e7;
  position: relative;
  border-radius: 10px;
  margin: 10px 0;
}
.infoboxwrapper::before {
  position: absolute;
  content: "i";
  width: 40px;
  height: 40px;
  left: -16px;
  top: -16px;
  background-color: #0097b2;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4em;
  color: #fff;
}
.tab {
  display: inline-block;
  width: 120px;
}
a.tonext {
  display: block;
  position: relative;
  margin: 60px auto 30px auto;
  padding: 0;
  width: 50px;
  height: 50px;
  background-color: #0097b2;
  transition: all .5s ease;
  background-image: url(../../static/images/tonext.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
a.tonext.totop {
  background-image: url(../../static/images/totop.svg);
}
a.tonext:hover {
  opacity: .8;
  transform: translateY(6px);
}
a.tonext.totop:hover {
  opacity: .8;
  transform: translateY(-6px);
}
p {
  font-size: 1.0em;
  margin: 0 0 20px 0;
}
h1 {
  color: #484848;
  font-size: 2.2em;
  line-height: 1.2em;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 700;
}
h2 {
  color: #0097b2;
  font-size: 1.4em;
  line-height: 1.2em;
  margin-top: 0;
  font-weight: 600;
}
h3 {
  color: #0097b2;
  margin-bottom: 10px;
}
b,
strong {
  font-weight: 600;
}
.leibox {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
.leibox.is-middle {
  margin: 150px 0;
  flex-direction: row-reverse;
}
.leibox.is-middle.less-top {
  margin: 75px 0;
}
.leiimage {
  min-width: 35%;
}
.leihcontent {
  width: 60%;
}
.square {
  position: relative;
  width: 100%;
}
.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.squarecontent {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #ccc;
  overflow: hidden;
}
.squarecontent img {
  width: 100%;
  height: 100%;
}
a {
  color: #0097b2;
  text-decoration: none;
}
#imageContainer {
  position: relative;
  width: 100%;
  height: calc(100% - 60px);
  overflow: hidden;
  margin-top: 60px;
}
.word {
  position: absolute;
  display: none;
  font-size: 25px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 1px 1px 2px #000000;
  line-height: normal;
  text-align: center;
}
.logo {
  width: 250px;
  height: auto;
  position: relative;
}
.logo img {
  width: 250px;
  height: auto;
}
.logo h3 {
  position: absolute;
  left: 30px;
  width: 250px;
  top: 25px;
  z-index: 90;
  line-height: 1.4em;
  color: #333;
  font-size: 1.0em;
  font-weight: 400;
  letter-spacing: .02em;
}
.small-menu {
  padding: 15px 30px;
  display: flex;
  font-size: 1.0em;
}
.small-menu a {
  margin: 0 25px 0 0;
  color: #f0e9df;
}
.menuwrapper {
  padding-left: 30px;
}
.menu-wrap {
  position: relative;
  width: 100%;
  transition: all .5s ease;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 1.0em;
}
.menu-wrap.is-open {
  overflow: auto;
  height: 100vh;
  padding-top: 10px;
}
.menu-item {
  font-size: 1em;
  text-decoration: none;
  padding: 10px 10px;
  transition: all ease .3s;
  letter-spacing: .05em;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #f0e9df;
}
.menu-item:hover {
  color: #ffffff;
  padding-left: 15px;
}
.menu-item.is-active {
  color: #0097b2;
}
.row {
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.binding {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.contentwrap {
  padding: 110px 0;
}
.binding-header {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.row-headline {
  margin: 0 0 20px 0;
  font-size: 1.6em;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #484848;
}
.row-headline span {
  color: #000;
}
footer {
  background-color: #ecdecf;
  width: 100%;
  position: relative;
  margin-top: 150px;
}
footer p {
  color: #000;
  margin-bottom: 10px;
}
footer h3 {
  color: #000;
}
footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  top: -36px;
  left: 0;
  right: 0;
  z-index: 10;
  background-image: url(../../static/images/kante.svg);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 1000px 40px;
}
.f-left,
.fleft {
  float: left;
}
.f-right,
.fright {
  float: right;
}
.footer-wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 60px 0;
  font-size: .9em;
}
.footerzeile {
  width: 100%;
  text-align: left;
  color: #000;
  font-size: 1.0em;
  line-height: 160%;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footerzeile .footercol {
  width: 50%;
  margin-bottom: 30px;
}
.footerzeile a {
  color: #0097b2 !important;
}
.footerzeile a:visited {
  color: #0097b2 !important;
}
.footerzeile a:hover {
  color: #333 !important;
}
.footerlinks {
  font-size: 1em;
  border-top: 1px solid #0097b2;
  padding-top: 15px;
  text-align: right;
  width: 100%;
}
.footerlinks a {
  color: #333 !important;
}
.footerlinks a:visited {
  color: #333 !important;
}
.footerlinks a:hover {
  color: #0097b2 !important;
}
.footer-item {
  color: #000;
  margin-bottom: 10px;
}
.swiper-container {
  width: 100%;
  height: 100%;
  background-color: #0097b2;
  border-bottom: 3px solid #0097b2;
  position: absolute;
}
.slide-height {
  position: absolute;
  height: 100%;
  width: 100%;
}
.swiper-slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slider-wrap {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.slider-wrap h4 {
  background-color: #0097b2;
  color: #fff;
  font-size: 1.5em;
  padding: 6px 10px;
  margin: 0;
  letter-spacing: .02em;
}
.slider-wrap a.slidebtn {
  background-color: #484848;
  color: #fff;
  padding: 5px 10px;
  margin: 10px 0 60px 0;
}
.scroll-arrow {
  width: 50px;
  height: 50px;
  background-image: url('../../static/images/down-arrow.svg');
  background-repeat: no-repeat;
  background-size: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-position: center center;
  opacity: .8;
  position: absolute;
  background-color: #0097b2;
  left: 50%;
  margin-left: -25px;
  bottom: 50px;
  z-index: 5;
  transition: all 1s ease;
}
.scroll-arrow:hover {
  opacity: 1;
}
.scroll-arrow.bounce {
  -moz-animation: bounce 4s infinite;
  -webkit-animation: bounce 4s infinite;
  animation: bounce 4s infinite;
  -moz-animation-iteration-count: 3;
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
}
.spacer {
  height: 120px;
  width: 100%;
}
.master.is-scrolled.spacer {
  height: 120px;
  width: 100%;
}
.button {
  background-color: #fff;
  color: #000000;
  font-weight: bold;
  font-size: 1.3em;
  padding: 15px 20px;
  transition: all ease .3s;
  text-decoration: none;
  margin: 10px 0 0 0;
  display: inline-block;
}
.button:hover {
  background-color: #0097b2;
  color: #fff;
}
.btn {
  font-size: 1.0em;
  background-color: #0097b2;
  box-decoration-break: clone;
  display: inline-block;
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
  transition: all ease .3s;
  margin-top: 15px;
  margin-right: 20px;
  border-radius: 30px;
  border: 1px solid #0097b2;
}
.btn:hover {
  background-color: #484848;
  border: 1px solid #484848;
}
.btn.start-btn {
  min-width: 210px;
  text-align: center;
}
.btn-anker {
  font-size: .9em;
  background-color: #0097b2;
  box-decoration-break: clone;
  color: #fff;
  padding: 4px 8px;
  text-decoration: none;
  transition: all ease .3s;
  margin-bottom: 15px;
  margin-right: 10px;
  border-radius: 8px;
  border: 1px solid #0097b2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4em;
  font-weight: 500;
  flex-direction: column;
}
.btn-anker:hover {
  background-color: #0097b2;
}
.btn-anker span {
  font-size: .9em;
  font-weight: normal;
}
.input-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.input-group label {
  min-width: 120px;
  background-color: #ccc;
  padding: 0 10px;
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  font-size: .9em;
  justify-content: flex-end;
}
.input-group input {
  min-width: calc(100% - 120px);
  padding: 0 10px;
  height: 40px;
  border: 1px solid #ccc;
}
.input-group textarea {
  min-width: calc(100% - 120px);
  padding: 0 5px;
  min-height: 140px;
  border: 1px solid #ccc;
}
.nodesktop {
  display: none;
}
ul.pluslist {
  margin: 20px 0;
  padding: 0;
}
ul.pluslist li {
  padding-left: 20px;
  list-style: none;
  margin: 0 0 15px 0;
}
ul.pluslist li:before {
  content: "+";
  margin-right: 8px;
  color: #0097b2;
  font-weight: 700;
  margin-left: -15px;
}
.eventbox-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 20px;
}
.eventbox {
  border: 1px solid #ddd;
  display: inline-block;
  border-radius: 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.eventbox img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
.auswahl-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.auswahl-button {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 25px 40px;
  cursor: pointer;
  font-weight: 700;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}
.auswahl-button img {
  width: 90px;
  min-width: 90px;
  margin-right: 50px;
}
.auswahl-button:focus,
.auswahl-button:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.button-container {
  display: flex;
  gap: 15px;
  position: relative;
}
.contact-button {
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  background-color: transparent;
  position: relative;
  transition: all .5s ease;
}
.contact-button img {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-button:hover {
  transform: scale(1.1);
}
.overlay {
  position: absolute;
  top: 70px;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  padding: 15px 20px;
  border-radius: 5px;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  min-width: 250px;
}
.overlay.active {
  display: block;
}
.overlay .close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}
.overlay ul li {
  margin-bottom: 8px;
}
.burger {
  display: none;
  position: relative;
  overflow: hidden;
  margin: 0 auto 0 40px;
  padding: 0;
  width: 60px;
  height: 60px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: background .3s;
  z-index: 99999999;
  transition: all 1s ease;
}
.burger:focus {
  outline: 0;
}
.burger span {
  display: block;
  position: absolute;
  top: 28px;
  left: 14px;
  right: 16px;
  height: 3px;
  background: #fff;
  width: 30px;
}
.burger span::after,
.burger span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #fff;
  content: "";
}
.burger span::before {
  top: -10px;
}
.burger span::after {
  bottom: -10px;
}
.burgertox {
  background-color: transparent;
  background-image: url(../../static/images/bg-burger.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.burgertox span {
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.burgertox span::after,
.burgertox span::before {
  -webkit-transition: opacity 0.3s ease-in-out 0.3s, transform 0.3s ease-in-out 0s;
  transition: opacity 0.3s ease-in-out 0.3s, transform 0.3s ease-in-out 0s;
}
.burgertox span::before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.burgertox span::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
.burgertox.is-active span {
  background: 0 0;
}
.burgertox.is-active span::before {
  top: 0;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burgertox.is-active span::after {
  bottom: 0;
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burgertox.is-active span::after,
.burgertox.is-active span::before {
  -webkit-transition-delay: 0s, .3s;
  transition-delay: 0s, 0.3s;
}
@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@media only screen and (max-width: 1024px) {
  font-size: .9em;
}
.nodesktop {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .auswahl-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .contentwrap {
    padding: 100px 0 110px 0;
  }
  .burger {
    margin-left: 20px;
    display: block;
  }
  .menu-item {
    display: block;
    text-align: center;
    font-size: 1.4em;
  }
  .logowrapper {
    top: 5px;
    /* Abstand vom oberen Rand, anpassbar */
    left: 20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(to right, #0097b2 50%, #f0e9df 50%);
  }
  .sidebar {
    width: 0;
    min-width: 0;
    overflow: hidden;
    background-color: #46b3c7;
    padding-top: 160px;
  }
  .sidebar.is-open {
    min-width: 20%;
    overflow: auto;
  }
  .basecontent {
    margin-left: 0;
    min-width: 100%;
    width: 100%;
  }
  .menuwrapper {
    padding: 20px;
  }
  .maincontent {
    padding-left: 0;
  }
  .menuwrapper {
    align-items: center;
    flex-direction: row;
  }
  .nodesktop {
    display: block;
  }
  .swiper-master:after {
    padding-bottom: 70%;
  }
  .leibox {
    flex-wrap: wrap;
  }
  .leibox.is-middle {
    margin: 90px 0;
    flex-direction: row;
  }
  .leiimage {
    min-width: 100%;
    margin-bottom: 20px;
  }
  .leihcontent {
    min-width: 100%;
    margin-bottom: 30px;
  }
  .row-headline {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .binding {
    padding: 40px 0;
  }
  .logo {
    margin-top: -10px;
  }
  .logo h3 {
    font-size: 1.1em;
  }
  .nomobile {
    display: none !important;
  }
  .content.abstand {
    width: 100%;
  }
  .row.abstand {
    padding: 30px 0;
  }
  .row.abstand p {
    width: 90%;
    margin: 0 auto;
  }
  .row.center {
    text-align: center;
  }
  .row.center p {
    font-size: .9em;
  }
  .nobr {
    display: none;
  }
  body {
    font-size: .9em;
  }
  a[href^="tel"] {
    color: inherit;
    /* Inherit text color of parent element. */
    text-decoration: none;
    /* Remove underline. */
    /* Additional css `propery: value;` pairs here */
  }
  .footerlinks {
    text-align: center;
  }
  .zitatzeile {
    padding: 30px 10px;
    font-size: .6em;
  }
  p {
    line-height: 140%;
  }
  h1 {
    font-size: 1.8em;
    font-weight: 900;
  }
  .content {
    padding: 10px 0;
  }
  .burger {
    display: block;
  }
  .slider-wrap {
    padding: 0 0 10px 0;
    width: 86%;
  }
  .slider-wrap h4 {
    font-size: 0.9em;
    padding: 3px 6px;
  }
  .slider-wrap a.slidebtn {
    font-size: .9em;
    margin-bottom: 10px;
  }
  .scroll-arrow {
    width: 40px;
    height: 40px;
    margin-left: -20px;
    bottom: 35px;
  }
  .nomobile {
    display: none;
  }
  .column.half {
    width: 100%;
  }
  .column.third {
    width: 100%;
  }
  .column.two-thirds {
    width: 100%;
  }
  .footerzeile .footercol {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .imgtxt {
    width: 82%;
    border: 1px solid transparent;
    bottom: 120px;
    font-size: 1.3em;
    line-height: 1.6em;
    margin-left: -41%;
  }
}
/* pop up Cookies */
#cookie-hinweis {
  display: none;
  position: fixed;
  -webkit-box-shadow: 0 0 3px 1px rgba(25, 25, 25, 0.8);
  box-shadow: 0 0 3px 1px rgba(25, 25, 25, 0.8);
  -moz-box-shadow: 0 0 3px 1px rgba(25, 25, 25, 0.8);
  bottom: 20px;
  right: 20px;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow: hidden;
  font-size: 1em;
  z-index: 999999;
  border-radius: 10px;
}
a.popup-btn,
.popup-btn {
  padding: 10px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  cursor: pointer;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 5px;
  border-radius: 6px;
  font-size: .9em;
}
a.popup-btn:hover,
.popup-btn:hover {
  background-color: #555;
  text-decoration: underline;
}
.popup-box {
  position: relative;
  background-color: #fafafa;
  background-clip: padding-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.popup-content {
  width: 100%;
  padding: 15px;
  overflow-x: hidden;
  overflow-y: auto;
  color: #000;
  font-size: .9em;
  box-sizing: border-box;
  line-height: 1.5em;
}
.popup-content a {
  color: #333;
}
/* outfit-100 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/outfit-v14-latin-100.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-200 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/outfit-v14-latin-200.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/outfit-v14-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-v14-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/outfit-v14-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/outfit-v14-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/outfit-v14-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/outfit-v14-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/outfit-v14-latin-900.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ephesis-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ephesis';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ephesis-v10-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*# sourceMappingURL=premala.css.map */