.lightest-grey-background {
  background-color: #f2f2f2;
}

#cookie-warn {
  display: flex;
  justify-content: space-around;
  flex-flow: row nowrap;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 42%;
  transform: translateX(-50%);
  max-height: 100%;
  width: 84%;
  box-sizing: border-box;
  z-index: 2000;
  background-color: #006cd1;
  color: #ffffff;
  padding: 20px 45px;
  text-align: center;
  box-shadow: 0 0 15px 0 #6d6d6d;
}
#cookie-warn .cookie-accept-text {
  text-align: left;
  padding-right: 10px;
}
#cookie-warn .cookie-accept-text a {
  color: #ffffff;
}
#cookie-warn .cookie-accept-text a:hover, #cookie-warn .cookie-accept-text a:active {
  text-decoration: underline;
}
#cookie-warn .cookie-accept-button-container button {
  background: #006cd1;
  border: 1px solid #ffffff;
  border-radius: 2px;
  color: #ffffff;
}
#cookie-warn .cookie-accept-button-container button:hover, #cookie-warn .cookie-accept-button-container button:active {
  background: #ffffff;
  color: #006cd1;
}

@media all and (max-width: 770px) {
  #cookie-warn {
    padding: 20px 10px;
    flex-wrap: wrap;
  }
  #cookie-warn .cookie-accept-text,
#cookie-warn .cookie-accept-button-container {
    width: 100%;
    text-align: center;
  }
  #cookie-warn .cookie-accept-text {
    flex: 0 1 100%;
    padding: 0 0 20px;
  }
}
@media all and (max-width: 1390px) {
  #cookie-warn {
    left: 38%;
    width: 80%;
  }
}
@media all and (max-width: 1250px) {
  #cookie-warn {
    left: 38%;
    width: 76%;
  }
}
@media all and (max-width: 1050px) {
  #cookie-warn {
    left: 36%;
    width: 72%;
  }
}
@media all and (max-width: 950px) {
  #cookie-warn {
    left: 34%;
    width: 68%;
  }
}
@media all and (max-width: 850px) {
  #cookie-warn {
    left: 34%;
    width: 68%;
  }
}