.cookie-container {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  z-index: 100;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #2f3640;
  color: #f5f6fa;
  padding: 0 32px;
  box-shadow: 0 -2px 16px rgba(47, 54, 64, 0);
  /* transition: 400ms; */
  height: auto;
}
.cookie-container.active {
  bottom: 0;
}
.cookie-container a {
  color: #f5f6fa;
}
.cookie-container p {
  margin-top: 16px;
  color: #f5f6fa;
  font-size: 16px;
}
.cookie-btn {
  background: #e84118;
  border: 0;
  color: #f5f6fa;
  padding: 8px 16px;
  font-size: 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  cursor: pointer;
}
