@charset "utf-8";

#background-filter {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
}

.container-caption {
  font-weight: bold;
  margin-bottom: 20px;
}

* {
  box-sizing: border-box;
  margin:0px;
  padding:0px;
  font-family: Arial, Helvetica, sans-serif;
  color: #2F3645;
}

#footer {
	width:100%;
	height:calc(50vh - 70px);
	min-height: 300px;
	bottom: 0px;
	/* background-color: #254336; */
  background-color: #2F3645;
	font-size: 30px;
	text-align: center;
  display:flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  font-size: 70%;
  box-sizing: border-box;
}

#footer * {
  color:white !important;
}

#map-container {
  display: none;
}

#agree-section {
  width: 400px;
}

#standort-agree-section {
  width: 800px;
  height: 600;
  display: flex; /* Enables flexbox layout */
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    flex-direction: column; /* Ensures text and button are stacked */
}

#standort-frame {
  display: none;
}

/* Button-CSS */
.button {
  appearance: none;
  backface-visibility: hidden;
  background-color: #008f00;
  border-radius: 8px;
  border-style: none;
  box-shadow: rgba(39, 174, 96, .15) 0 4px 9px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 13px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
  margin: 10px auto;
}

.button:hover {
  background-color: #007200;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.button:active {
  transform: translateY(2px);
  transition-duration: .35s;
}

.button:hover {
  box-shadow: rgba(39, 174, 96, .2) 0 6px 12px;
}
