#cookiePopup {
  background-color: #ffffff;
  color: #666;
  position: fixed;
  font-size: 12px;
  width: 70vw;
  max-width: 62em;
  box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
  font-family: Arial, sans-serif;
  padding: 0em 1.4em;
  border-radius: 6px;
  transition: all 0.5s ease-in;
}
#cookiePopup img {
  display: block;
  width: 3.75em;
  transform: translateZ(0);
  position: relative;
  margin: auto;
}
#cookiePopup p {
  text-align: left;
  margin: 1.4em 0;
  display: block;
}
#acceptAll {
  background-color: #17428B;
  border: #17428B 1px solid;
  color: #ffffff;
  font-size: 1.2em;
  padding: 0.5em 0.7em;
  display: inline-flex;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  margin: 0.1em;
  white-space: nowrap;
}
#acceptNecessary{
  background-color: #ffffff;
  color: #17428B;
  border: #17428B 1px solid;
  font-size: 1.2em;
  padding: 0.5em 0.7em;
  display: inline-flex;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  margin: 0.1em;
  white-space: nowrap;
}
#cookiePopup a {
  color: #17428B;
}
.hide {
  visibility: hidden;
  bottom: 0;
  left: 2em;
}
.show {
  visibility: visible;
  bottom: 2em;
  left: 2em;
}
@media only screen and (max-width: 37.5em) {
  #cookiePopup {
    width: 100%;
  }
  .hide {
    bottom: 2em;
    left: 0;
  }
  .show {
    left: 0;
    bottom: 0;
  }
}
