@charset "UTF-8";

@font-face {
  font-family: "Roboto";
  font-weight: normal;
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto';
  font-weight: bold;
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto';
  font-weight: light;
  src: url('../fonts/Roboto-Light.ttf') format('truetype');
}

.body {
  font-family: 'Roboto';
  font-weight: normal;
}

.menu-head {
  font-size: 40px;
  font-family: "Roboto";
  font-weight: light;
  color: #01a0c3;
}

.menu-title {
  font-size: 30px;
  font-family: "Roboto";
  font-weight: bold;
  color: black;
}

.body-text {
  font-size: 20px;
  font-family: "Roboto";
  font-weight: light;
  color: black;
}


.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 200px;
  background-color: #12385f;
  padding: 15px;
}

.sidebar h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  display: block;
  padding: 10px;
  background-color: #12385f;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.sidebar a:hover {
  background-color: #ccc;
}

.space {
  height: 500px;
  width: 100%;
  background-color: none;
}

.transparent-footer {
  backdrop-filter: blur(5px);
}

.weather-data {
  font-size: 10px;
  font-family: "Roboto";
  font-weight: light;
  color: black;
}

.windtable-data {
  font-size: 10px;
  font-family: "Roboto";
  font-weight: light;
  color: black;
}

.button--primary {
  background: #01a0c3;
  border: 4px solid #01a0c3;
  border-radius: 9999px;
  width: max-content;
  min-width: 160px;
  height: 60px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin: 10px 10px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.button--secondary {
  background: #ffffff;
  border: 2px solid #01a0c3;
  border-radius: 9999px;
  width: max-content;
  min-width: 160px;
  height: 60px;
  color: #01a0c3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin: 10px 10px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.button-maesure-ar {
  background: #01a0c3;
  border: 4px solid #01a0c3;
  border-radius: 9999px;
  width: max-content;
  min-width: 160px;
  height: 60px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin: 10px 10px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

#btn-measure-ar:before {
  content: "";
  /* No need for position:absolute or top/transform properties */
  margin-right: 15px;
  /* Space between the image and text */
  width: 30px;
  height: 30px;
  background: url('../pics/scan.png') no-repeat center;
  background-size: contain;
}

.button--secondary {
  background: #ffffff;
  border: 2px solid #01a0c3;
  border-radius: 9999px;
  width: max-content;
  min-width: 160px;
  height: 60px;
  color: #01a0c3;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin: 10px 10px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}


.button--lang {
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  font-size: 20px;
  font-weight: light;
  /*line-height: 1.6;*/
  margin: 10px 5px;
}

.btn-round {
  background: white;
  border-radius: 32px;
  border: none;
  display: block;
  color: black;
  width: 40px;
  height: 40px;
  text-align: center;
  margin: 5px;
}

.btn-imprint-privacy {
  border: none;
  background: transparent;
  color: white;
  font-family: "Roboto";
  font-weight: light;
}

.map-container {
  position: relative;
  /* set container to a relative position */
  max-height: 400px;
  /* set your desired width */
  z-index: 1;
}

.button-map-fs {
  background-image: url('../pics/btn_map_fullscreen.svg');
  background-size: cover;
  background-color: transparent;
  /* make the button transparent */
  background-repeat: no-repeat;
  /* make the background image appear only once */
  /* background-position: 0px 0px;  */
  /* equivalent to 'top left' */
  border: none;
  /* assuming we don't want any borders */
  cursor: pointer;
  width: 150px;
  height: 50px;
  margin-top: 10px;
  text-align: left;
}

.button-map-reset {
  background-image: url('../pics/btn_map_reset.png');
  background-size: cover;
  background-color: transparent;
  /* make the button transparent */
  background-repeat: no-repeat;
  /* make the background image appear only once */
  /* background-position: 0px 0px;  */
  /* equivalent to 'top left' */
  border: none;
  /* assuming we don't want any borders */
  cursor: pointer;
  width: 150px;
  height: 50px;
  margin-top: 10px;
  text-align: right;
}

.map-button-minimize {
  background-image: url('../pics/btn_map_mini_de.png');
  background-size: cover;
  background-color: transparent;
  /* make the button transparent */
  background-repeat: no-repeat;
  /* make the background image appear only once */
  /* background-position: 0px 0px;  */
  /* equivalent to 'top left' */
  border: none;
  /* assuming we don't want any borders */
  cursor: pointer;
  width: 150px;
  height: 50px;
  margin-top: 10px;
}

.dropdown--item {
  border: none;
  color: black;
  cursor: pointer;
  font-size: 40px;
  font-weight: light;
  margin: 0px 20px;
}

.leaflet-container {
  height: 800px;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.roundrect-gray {
  background: #E9E9E9;
  border-radius: 32px;
  display: block;
  color: black;
  opacity: 0.8;
  width: fit-content;
  height: fit-content;
  padding: 20px;
  margin: 10px;
}



.map-button-search {
  position: fixed;
  display: block;
  box-shadow: none;
  border: none;
  background: #E9E9E9;
  border-radius: 32px;
  color: black;
  width: 350px;
  height: 60px;
  z-index: 200;
  left: 40px;
  top: 100px;
  opacity: 0.8;
  padding-left: 20px;
  padding-top: 15px;
}

.center-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  max-width: 400px;
  /* Make it larger */
}

.large-text {
  font-size: 1.5em;
}

.custom-carousel-item {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-carousel-caption {
  position: static;
  transform: none;
  color: black;
}

