.cookie-notification {
  display: block !important;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 20px;
  background-color: #000000ba;
  box-sizing: border-box;
  clear: both;
  transform: translateY(100%);
  opacity: 0.0;
  transition: 0.5s all ease-in;
}
.cookie-notification.active {
  opacity: 1.0;
  transform: translateY(0);
}
.cookie-notification-message {
  font-size: 10px;
  line-height: 16px;
  color: white;
}
.cookie-notification-message .cookie-notification-button {
  float: right;
  text-align: right;
}
.cookie-notification-message a {
  text-decoration: underline;
  color: white;
}
.cookie-popup-buttons .cookie-notification-button {
  text-align: center;
}
.cookie-notification-button {
  min-width: 300px;
}
.cookie-notification-button button {
  display: inline-block;
  margin: 0 11px;
  padding: 11px 14px;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s;
  cursor: pointer;
}
.cookie-notification-button button.decline {
  background-color: #A7A7A7 !important;
}
.cookie-notification-button button:hover {
  background: #404040 !important;
}
@media screen and (max-width: 660px) {
  .cookie-notification {
    padding: 12px 5px;
  }
  .cookie-notification-message {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 9px;
    line-height: 12px;
    padding-bottom: 6px;
  }
  .cookie-notification-message div {
    display: block;
    max-width: 380px;
    margin: 0 auto;
    padding-bottom: 3px;
  }
  .cookie-notification-button {
    display: block;
    width: 100%;
    text-align: center;
  }
}
