.cookie-consent-popup {
  position: fixed;
  bottom: 0px;
  background: #0a5280;
  padding: 30px 20px;
  width: 100vw;
  z-index: 9;
  color: #fff;
  display: flex;
  justify-content: center;
  height: 150px;
  bottom: -151px;
  transition: transform 200ms ease-out 0s;
  will-change: transform;
}
.cookie-consent-popup.expanded {
  transform: translateY(-150px);
}
.policy-link {
  color: #fff;
  text-decoration: underline;
}
.policy-link:hover {
  color: #348bcb
}
.cookie-content {
  width: 100%;
  max-width: 450px;
}
.cookie-content p {
  font-size: 13px;
}
.cookie-actions {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}
.cookie-actions button {
  background: #123043;
  color: #fff;
  width: 160px;
  height: 45px;
  border: none;
}
.cookie-actions button:focus {
  outline: none;
}
.cookie-actions button:last-child {
  margin-top: 10px;
}

@media (max-width: 500px) {
  .cookie-consent-popup {
    flex-direction: column;
    height:200px;
    bottom: -201px;
  }
  .cookie-consent-popup.expanded {
    transform: translateY(-200px);
  }
  .cookie-content p {
    font-size: 11px;
  }
  .cookie-actions {
    flex-direction: row;
    justify-content: space-between;
    margin-left: 0px;
    padding-top:15px;
  }
  .cookie-actions button:last-child {
    margin-top: 0px;
    margin-left: 10px;
  }
}
