.cookie-toast-root {
  position: fixed;
  bottom: 0;
  display: flex;
  cursor: pointer;
  opacity: 1;
  z-index: 10000;

  transition: 0.2s;

  background-color: rgb(12, 36, 64);
  box-shadow: 0px 0px 0 3px rgba(255, 255, 255, 0.248);
  color: white;
  line-height: 24px;
  margin: 12px;
  padding: 20px;
  right: 0;
  width: 33%;
}
.cookie-toast-link{
  font-weight: 100;
}
@media only screen and (max-width: 600px) {
  .cookie-toast-root {
    left: 0;
    width: auto;
  }
}
