#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(50, 50, 58, 0.77);
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#cookie-notice.hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

#cookie-notice .cn-buttons-container {
  display: inline-block;
  margin-left: 10px;
}

#cookie-notice button,
#cookie-notice a.cn-more-info {
  background-color: #00a99d;
  color: #fff;
  border: none;
  padding: 8px 15px;
  margin: 3px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
}

#cookie-notice button:hover,
#cookie-notice a.cn-more-info:hover {
  background-color: #009284;
}
