#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 200;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

#cookie-banner.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#cookie-banner .cookie-banner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 545px;
  padding: 30px;
  background: #323379bf;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1199.98px) {
  #cookie-banner .cookie-banner-container {
    max-width: 460px;
    gap: 15px;
    padding: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cookie-banner .cookie-banner-container {
    gap: 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  #cookie-banner .cookie-banner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#cookie-banner .cookie-banner-container span {
  color: white;
  font-size: 14px;
  line-height: 16.1px;
  letter-spacing: 0;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media only screen and (max-width: 1199.98px) {
  #cookie-banner .cookie-banner-container span {
    font-size: 12px;
    line-height: 13.8px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cookie-banner .cookie-banner-container span {
    font-size: 14px;
    line-height: 16.1px;
  }
}
#cookie-banner .cookie-banner-container span a {
  color: inherit;
  text-decoration: underline;
}
#cookie-banner .cookie-banner-container .button {
	max-width: 250px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    border: 1px solid #fff;
    color: #fff; 
}
#cookie-banner .cookie-banner-container .button:hover {
	background: #fff;
	color: #5556E0; 
}
@media only screen and (max-width: 575.98px) {
  #cookie-banner .cookie-banner-container .button {
    width: 100%;
    max-width: 250px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}