.cookie {
  padding: 24px;
  z-index: 1000;
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 500px;
  background-color: rgb(29, 38, 46);
  margin: 32px;
  transition: all 0.3s;
  opacity: 1;
}
.cookie.hidden {
  opacity: 0;
}
.cookie.display-none {
  display: none;
}
@media (max-width: 600px) {
  .cookie {
    margin: 1rem;
    padding: 1.5rem;
  }
}
.cookie-text {
  font-size: 1.125rem;
  line-height: 154%;
  margin-bottom: 1rem;
  color: #C5C8CA;
  white-space: unset;
  font-family: Commissioner, sans-serif;
}
@media (max-width: 600px) {
  .cookie-text {
    font-size: 1rem;
    line-height: 140%;
  }
}
.cookie-text a {
  color: rgb(101, 113, 124);
  transition: all 0.1s;
}
.cookie-text a:hover {
  color: rgb(0, 172, 226);
}
.cookie-btn {
  outline: 2px solid transparent;
  outline-offset: 2px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 154%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 0.25rem;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  height: 3.5rem;
  transition: all 0.1s;
  border: solid 1px rgb(101, 113, 124);
  font-family: Commissioner, sans-serif;
}
@media (max-width: 600px) {
  .cookie-btn {
    width: 100%;
  }
}
.cookie-btn:hover {
  color: rgb(0, 172, 226);
}

.ripple {
  position: absolute; /* The absolute position we mentioned earlier */
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.7);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */