﻿
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
  scroll-behavior: smooth;
}

:root {
  --primary: #1c1c1c;
  --secondary: #18F76F;
  --contrast: #18F76F;
  --light: #F6F6F6;
  --highlight: #18F76F;
  --grey: #f0f0f0;
  --darkgrey: #161616;
  --green: #18F76F;
  --maxWidth: 980px; /* Hinweis: Hier kann die Maximalbreite des Containers bestimmt werden */
  --fontSize: calc(12px + 0.6vw);
  --lineHeight: calc(var(--fontSize) * 1.5);
  --letterSpacing: calc(var(--fontSize) * 0.0015);
  --fontWeight: 400;
  --borderradius: 0px;
}

/*
Scrollbar + Markierung von Texten: Kleines Feature passend zum Gesamtkonzept / Corporate Design
*/
::-webkit-scrollbar {
  width: 8px;
}
  
::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--highlight);
  border-radius: var(--borderradius);
}

::-moz-selection {
  color: var(--darkgrey);
  background: var(--highlight);
}

::selection {
  color: var(--darkgrey);
  background: var(--highlight);
}

/*
typography
Hinweis: Um die Skalierbarkeit zu garantieren ohne Breakpoints setzen zu müssen, wird rechnerisch die Typografie anhand der Monitorbreite festgelegt.
Die Mindestgröße beträgt immer wie in :root abgebildet.
*/

html {
  font-family: 'aktiv-grotesk', sans-serif;
  color: var(--primary);
}

h1 {
  font-family: 'roc-grotesk', sans-serif;
  font-weight: 400;
  font-size: calc(var(--fontSize) * 3);
  letter-spacing: var(--letterSpacing);
}

h2 {
  font-family: 'roc-grotesk', sans-serif;
  font-weight: 400;
  font-size: calc(var(--fontSize) * 2);
  letter-spacing: var(--letterSpacing);
}

.mark {
  background-color: var(--contrast);
}

h3 {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 400;
  font-size: calc(var(--fontSize) * 1.25);
  letter-spacing: var(--letterSpacing);
}

h4 {
  font-family: 'roc-grotesk', sans-serif;
  font-weight: 600;
  font-size: calc(var(--fontSize) * 1.25);
  letter-spacing: var(--letterSpacing);
}

h5 {
  font-family: 'roc-grotesk', sans-serif;
  font-weight: 600;
  font-size: calc(var(--fontSize) * 1);
  letter-spacing: var(--letterSpacing);
}

h6 {
  font-family: 'roc-grotesk', sans-serif;
  font-weight: 600;
  font-size: calc(var(--fontSize) * 1);
  letter-spacing: var(--letterSpacing);
}

p, li, b, strong, a, mark {
  font-size: var(--fontSize);
  line-height: var(--lineHeight);
  letter-spacing: var(--letterSpacing);
  font-feature-settings: normal;
}

p a {
  color: inherit;
  text-decoration: underline;
}

p a:hover {
  color: var(--highlight);
  text-decoration: underline;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

/*
icon positioning 
*/

.far, .fas {
  margin-right: 8px;
}

/*
positioning
*/

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

/*
Container & Grid
Hinweis: Verwendet wird ein 12er Grid-System mit CSS-Grid um das ganze Web Design so modular wie möglich zu gestalten.
Somit kann auch hier teilweise auf Breakpoints verzichtet werden und ist voll skalierbar.
*/

.container {
  max-width: var(--maxWidth);
  margin: auto;
  padding: 16px;
}

.map__container {
  max-width: 100vw;
  top: 0;
  padding: 0;
}

@media(orientation: landscape) {

  section, form {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 16px;
    margin: 4em auto; /* set auto if no fixed Navigation*/
  }

  .col-2{
    grid-column: span 2 / auto;
  }

  .col-3{
    grid-column: span 3 / auto;
  }

  .col-4{
    grid-column: span 4 / auto;
  }

  .col-5{
    grid-column: span 5 / auto;
  }

  .col-6{
    grid-column: span 6 / auto;
  }

  .col-7{
    grid-column: span 7 / auto;
  }

  .col-8{
    grid-column: span 8 / auto;
  }

  .col-9{
    grid-column: span 9 / auto;
  }

  .col-10{
    grid-column: span 10 / auto;
  }

  .col-11{
    grid-column: span 11 / auto;
  }

  .col-12 {
    grid-column: span 12 / auto;
  }

  .col-12 .blogtext {
    max-width: 64%;
    margin: auto;
  }
}

/*
Grid Responsive: Wenn das Element auch in der mobilen Ansicht X Columns breit sein soll, wird einfach -sm drangehängt
*/

.col-2-sm {
  grid-column: span 2 / auto;
}

.col-3-sm {
  grid-column: span 3 / auto;
}

.col-4-sm {
  grid-column: span 4 / auto;
}

.col-5-sm {
  grid-column: span 5 / auto;
}

.col-6-sm {
  grid-column: span 6 / auto;
}

.col-7-sm {
  grid-column: span 7 / auto;
}

.col-8-sm {
  grid-column: span 8 / auto;
}

.col-9-sm {
  grid-column: span 9 / auto;
}

.col-10-sm {
  grid-column: span 10 / auto;
}

.col-11-sm {
  grid-column: span 11 / auto;
}

.col-12-sm {
  grid-column: span 12 / auto;
}

/*
display grid in color visual (for design manual) 
*/

.coloredgrid {
 background-color: var(--highlight);
 padding: 16px;
 vertical-align: middle;
 border-radius: 4px;
 color: var(--light)
}


/*
Navigation
*/

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li a {
  color: inherit;
  text-decoration: none;
}

label[for="mobile-menu"] {
  top: 0;
  z-index: 10;
  font-size: 32px;
  cursor: pointer;
  position: fixed;
  padding: 20px;
}

ul.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  margin: 0;
  width: 300px;
  height: 100%;
  z-index: 999;
  background: var(--light);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-x: hidden;
  overflow-y: auto;
}

ul.side-nav > li.logo a {
  padding: 20px 15px;
  font-family: 'roc-grotesk', sans-serif;
  font-weight: 400;
  font-size: 24px;
  background-color: var(--primary);
  color: var(--light);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

ul.side-nav > li a,
ul.side-nav > li label {
  display: block;
  font-size: 16px;
  line-height: 44px;
  padding-left: 15px;
  white-space: nowrap;
  color: var(--primary);
}

ul.side-nav > li:not(.logo) a:hover,
ul.side-nav > li label:hover {
  background-color: var(--highlight);
}

.dropdown input[type="checkbox"] {
  display: none;
}

.dropdown input[type="checkbox"]:checked ~ label {
  background-color: var(--secondary);
  color: var(--primary);
}

.dropdown input[type="checkbox"]:checked ~ ul {
  max-height: 100vh;
}

.dropdown label {
  cursor: pointer;
}

.dropdown > ul {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown > ul > li > a {
  padding-left: 30px;
}

.ripple {
  transition: all 0.4s;
  background-position: 50%;
  background-size: 200%;
}

.ripple:active {
  background-repeat: no-repeat;
  background-size: 1000%;
  background-image: radial-gradient(circle, rgba(0,0,0,0.1) 10%, rgba(0,0,0,0) 11%);
}

@media only screen and (max-width: 1800px) {
  input[type="checkbox"]#mobile-menu:checked ~ label[for="mobile-menu"] {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transition: all 0.25s ease-in-out;
  }

  input[type="checkbox"]#mobile-menu:checked ~ ul.side-nav {
    margin-left: 0%;
  }

  ul.side-nav {
    margin-left: -100%;
  }
}

.hidden {
  display: none;
}

/*
Code Anzeige für CD
*/

code {
  white-space: pre;
  background-color: var(--grey);
  color: var(--primary);
  font-size: 14px;
  padding-left: 1em;
  border-radius: var(--borderradius);
}

@media (orientation: portrait) {
  code {
    display: none;
  }
}

/*
Button Styling
*/

.primary-button-outline {
  font-weight: 700;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  padding: 12px 24px;
  border: 1px solid var(--secondary);
  background-color: var(--light);
  color: var(--secondary);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.primary-button-outline:hover {
  background-color: var(--highlight);
  color: var(--light);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  transition: 0.5s;
}

.primary-button {
  font-weight: 700;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  padding: 12px 24px;
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: var(--light);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.primary-button:hover {
  background-color: var(--highlight);
  color: var(--light);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  transition: 0.5s;
}

.secondary-button {
  font-weight: 700;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  padding: 12px 24px;
  border: 1px solid var(--darkgrey);
  background-color: var(--darkgrey);
  color: var(--light);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.secondary-button:hover {
  background-color: var(--grey);
  color: var(--light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

/*
Image
*/
img {
  width: 100%;
  object-fit: cover;
}

/*
Kontaktformular
*/

.form-group {
  margin-bottom: 4vh;
}

.group {
  position: relative;
  margin-bottom: 45px;
}

input {
  padding: 12px 12px 12px 6px;
  display:block;
  width: 96%;
  border:none;
  border-bottom: 1px solid var(--darkgrey);
}

input:focus {
  outline: none;
}

#form-label {
  color:var(--secondary);
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

input:focus ~ #form-label, input:valid ~ #form-label {
  top: -20px;
  font-size: 14px;
  color: var(--primary);
}

.bar {
  position: relative;
  display: block;
  width: 100%;
}

.bar:before, .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: var(--primary);
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.bar:before {
  left: 50%;
}

.bar:after {
  right: 50%;
}

input:focus ~ .bar:before, input:focus ~ .bar:after {
  width: 50%;
}

.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

@-webkit-keyframes inputHighlighter {
	from { background: var(--primary); }
  to { width:0; background: transparent; }
}

@-moz-keyframes inputHighlighter {
	from { background: var(--primary); }
  to { width:0; background: transparent; }
}

@keyframes inputHighlighter {
	from { background: var(--primary); }
  to { width:0; background:transparent; }
}

/*
Shadows
*/
.shadow-z-1 {
  -webkit-box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  -moz-box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

/*
Divider
*/

.divider-top {
  border-top: 2px solid var(--darkgrey);
  margin-top: 1em;
}

/*
Tabelle
*/

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
  background-color: var(--white);
  font-size: 1em;
}

.table > thead > tr,
.table > tbody > tr,
.table > tfoot > tr {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  text-align: left;
  padding: 1.2rem;
  vertical-align: top;
  border-top: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.table > thead > tr > th {
  font-weight: 700;
  color: var(--primary);
  vertical-align: bottom;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.mapboxgl-popup-content > table > tbody > tr > th {
  text-align: left;
  width: 10vw;
  font-size: 1.25em;
}

.mapboxgl-popup-content > table > tbody > tr > td {
  font-size: 1.25em;
}

.mapboxgl-popup-content > table {
  margin-top: 1em;
  margin-bottom: 1em;
}

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.table > tbody + tbody {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.table .table {
  background-color: var(--white);
}

.table .no-border {
  border: 0;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 0.8rem;
}

.table-bordered {
  border: 0;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 0;
  border-bottom: 1px solid var(--grey);
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 768px) {
  .table-responsive-vertical > .table {
    margin-bottom: 0;
    background-color: transparent;
  }
  .table-responsive-vertical > .table > thead,
  .table-responsive-vertical > .table > tfoot {
    display: none;
  }

  .table-responsive-vertical > .table > tbody {
    display: block;
  }

  .table-responsive-vertical > .table > tbody > tr {
    display: block;
    border: 1px solid var(--grey);
    border-radius: 2px;
    margin-bottom: 1.6rem;
  }

  .table-responsive-vertical > .table > tbody > tr > td {
    background-color: var(--light);
    display: block;
    text-align: right;
  }

  .table-responsive-vertical > .table > tbody > tr > td[data-title]:before {
    content: attr(data-title);
    float: left;
    font-size: inherit;
    font-weight: 400;
    color: var(--darkgrey);
  }

  .table-responsive-vertical.shadow-z-1 {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .table-responsive-vertical.shadow-z-1 > .table > tbody > tr {
    border: none;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  }

  .table-responsive-vertical > .table-bordered {
    border: 0;
  }

  .table-responsive-vertical > .table-bordered > tbody > tr > td {
    border: 0;
    border-bottom: 1px solid var(--grey);
  }

  .table-responsive-vertical > .table-bordered > tbody > tr > td:last-child {
    border-bottom: 0;
  }

  .table-responsive-vertical > .table-striped > tbody > tr > td,
  .table-responsive-vertical > .table-striped > tbody > tr:nth-child(odd) {
    background-color: var(--light);
  }

  .table-responsive-vertical > .table-striped > tbody > tr > td:nth-child(odd) {
    background-color: #f5f5f5;
  }

  .table-responsive-vertical > .table-hover > tbody > tr:hover > td,
  .table-responsive-vertical > .table-hover > tbody > tr:hover {
    background-color: var(--light)
  }

  .table-responsive-vertical > .table-hover > tbody > tr > td:hover {
    background-color: rgba(0, 0, 0, 0.12);
  }
}

@media screen and (max-width: 767px) {
  .table-responsive-vertical .table-striped.table-mc-blue > tbody > tr > td,
  .table-responsive-vertical .table-striped.table-mc-blue > tbody > tr:nth-child(odd) {
    background-color: var(--white);
  }

  .table-responsive-vertical .table-striped.table-mc-blue > tbody > tr > td:nth-child(odd) {
    background-color: var(--highlight);
  }

  .table-responsive-vertical .table-hover.table-mc-blue > tbody > tr:hover > td,
  .table-responsive-vertical .table-hover.table-mc-blue > tbody > tr:hover {
    background-color: var(--white);
  }

  .table-responsive-vertical .table-hover.table-mc-blue > tbody > tr > td:hover {
    background-color: var(--highlight);
  }
}

.table-striped.table-mc-color > tbody > tr:nth-child(odd) > td,
.table-striped.table-mc-color > tbody > tr:nth-child(odd) > th {
  background-color: var(--highlight);
}

.table-hover.table-mc-color > tbody > tr:hover > td,
.table-hover.table-mc-color > tbody > tr:hover > th {
  background-color: var(--highlight);
}


/*
Parallax effect
*/

.parallax {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  z-index: 9;
}

.parallax:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0,0,0,.1);
}

.parallax h2 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translate(0, -50%);
  font-size: 60px;
  color: var(--light);
}

/*
Accordion
*/

.accordion {
  background-color: var(--highlight);
}

.accordion a {
  font-weight: 700;
  display: block;
  padding: 12px;
  text-align: left;
  transition: 0.4s;
  cursor: pointer;
  border-top: 1px solid var(--light);
}

.active, .accordion a:hover {
  background-color: var(--secondary);
  color: var(--light)
}

.panel {
  padding: 0 18px;
  background-color: var(--secondary);
  color: var(--light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/*
Image Slideshow
*/

.mySlides {
  display: none;
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.slideshow-container img {
  max-height: 480px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: var(--light);
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 8px 0 0 8px;
}

.prev:hover, .next:hover {
  background-color: var(--primary);
}

.dot {
  cursor: pointer;
  height: 16px;
  width: 16px;
  margin: 0 2px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.activeslide, .dot:hover {
  background-color: var(--contrast);
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
} */

/*
Switch
*/

.switch {
  --duration: .3s;
  cursor: pointer;
}

.switch input {
  display: none;
}

.switch input + div {
  position: relative;
}

.switch input + div:before, .switch input + div:after {
  --s: 1;
  content: '';
  position: absolute;
  height: 4px;
  top: 10px;
  width: 24px;
  background: var(--primary);
  -webkit-transform: scaleX(var(--s));
  transform: scaleX(var(--s));
  -webkit-transition: -webkit-transform var(--duration) ease;
  transition: -webkit-transform var(--duration) ease;
  transition: transform var(--duration) ease;
  transition: transform var(--duration) ease, -webkit-transform var(--duration) ease;
}

.switch input + div:before {
  --s: 0;
  left: 0;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  border-radius: 2px 0 0 2px;
}

.switch input + div:after {
  left: 28px;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  border-radius: 0 2px 2px 0;
}

.switch input + div span {
  padding-left: 56px;
  line-height: 24px;
  color: var(--darkgrey);
}

.switch input + div span:before {
  --x: 0;
  --b: var(--contrast);
  --s: 4px;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 var(--s) var(--b);
  -webkit-transform: translateX(var(--x));
  transform: translateX(var(--x));
  -webkit-transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  transition: box-shadow var(--duration) ease, transform var(--duration) ease;
  transition: box-shadow var(--duration) ease, transform var(--duration) ease, -webkit-transform var(--duration) ease;
}

.switch input + div span:not(:empty) {
  padding-left: 64px;
}

.switch input:checked + div:before {
  --s: 1;
}

.switch input:checked + div:after {
  --s: 0;
}

.switch input:checked + div span:before {
  --x: 28px;
  --s: 12px;
  --b: var(--highlight);
}

/*
Bildergallerie
*/

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  grid-gap: 8px;
}

.media-gallery :nth-child(n) {
  max-height: calc(100vh / 3);
  max-height: 25vh;
  object-fit: cover;
}

.lb-number {
  display: none !important;
}

/*Mapbox*/

#map {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100vw; 
  height: 100vh;
}

.mapboxgl-popup {
  max-width: 30vw;
}

.mapboxgl-popup p {
  font-size: 1.25em;
  line-height: 1.2;
}

strong {
  font-size: 1.75em;
}

.mapboxgl-map {
  overflow: auto !important;
}

