.cookie {
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100vw;
  z-index: 5000;
  background: rgba(255, 255, 255, 0.5);
}

.cookie__hide {
  display: none;
}

.cookie__show {
  display: block;
}

.cookie__banner {
  border: 2px solid #dfc8ae;
  bottom: 0;
  left: 0;
  outline: 5px solid #83532d;
  position: absolute;
  width: 100%;
}

.cookie__banner__wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 2rem auto;
  max-width: 160rem;
  text-align: left;
  width: 95%;
}

@media only screen and (min-width: 75em) {
  .cookie__banner__wrapper {
    flex-direction: row;
    gap: 2rem;
  }
}
.cookie__banner__wrapper > :first-child {
  flex: 2;
}

@media only screen and (min-width: 75em) {
  .cookie__banner__wrapper > :first-child {
    margin-bottom: 0;
  }
}
.cookie__banner__wrapper > :last-child {
  flex: 1;
}

.cookie__banner__copy {
  font-size: 1.3rem;
  margin-bottom: 0 !important;
  margin-right: 2vw;
}
.cookie__banner__copy a {
  color: #83532d;
  text-decoration: underline;
  transition: 0.3s all ease;
}
.cookie__banner__copy a:hover {
  color: #000;
}

.cookie__banner:after {
  background: rgb(242, 231, 189);
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.cookie__buttons {
  display: flex;
  flex: 0 0 auto !important;
  gap: 2rem;
  margin-top: 2rem;
  text-transform: uppercase;
}
.cookie__buttons .btn {
  cursor: pointer;
}

@media only screen and (min-width: 75em) {
  .cookie__buttons {
    margin-top: unset;
  }
}
.cookie__buttons .btn {
  background: linear-gradient(#fcf415 50%, #f0961b);
  border: 3px solid #83532d;
  border-radius: 3px;
  color: #83532d;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.8rem 1.8em;
  transition: 0.3s all ease;
}

.cookie__buttons .btn:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}/*# sourceMappingURL=cookie.css.map */