/*Cookies*/

.cookie-banner {
  position: fixed;
  bottom: 40px;
  left: 10%;
  right: 10%;
  height: 20%;
  width: auto;
  padding: 5px 14px;
  display: flex;
  justify-content: center; /*Ausrichtung vertikal. Default value: flex-start or flex-end, center, space-between, space-around, space-evenly*/
  align-items: center; /*Ausrichtung horizontal*/
  text-align: center; /*Ausrichtung horizontal*/
  background-color: #a9c82c;
  opacity: 1.0;
  border-radius: 15px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  z-index: 98;
}

.close {
  padding-top: 20px;
  cursor: pointer;
}

/**************************************** Mediascreen ****************************************/

@media screen and (max-width: 1124px) {

/**************************************** Mediascreen ****************************************/

/*Cookies*/

.cookie-banner {
  position: fixed;
  bottom: 40px;
  left: 10%;
  right: 10%;
  height: 20%;
  width: auto;
  padding: 5px 14px;
  display: flex;
  justify-content: center; /*Ausrichtung vertikal. Default value: flex-start or flex-end, center, space-between, space-around, space-evenly*/
  align-items: center; /*Ausrichtung horizontal*/
  text-align: center; /*Ausrichtung horizontal*/
  background-color: #a9c82c;
  opacity: 1.0;
  border-radius: 15px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  z-index: 98;
}

.close {
  padding-top: 10px;
  cursor: pointer;
}

}