/**
* Available classes
*====================
* .cookie-consent__content {}
* .cookie-consent__section {}
* .cookie-consent__heading {}
* .cookie-consent__footer {}
* .cookie-consent__btn {}
* .cookie-consent__btn--accept {}
* .cookie-consent__btn--reject {}
*/

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem;
  background-color: #222;
  color: #e9e9e9;
  opacity: 1;
  transition: opacity .8s ease;
}

.cookie-consent.hidden {
  opacity: 0;
}

.cookie-consent__section {
  width: 100%;
  padding: 0 1rem;
}

.cookie-consent__heading {
  font-size: 1.2rem;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.cookie-consent__footer {
  text-align: center;
  margin-top: 1rem;
}

.cookie-consent__btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid;
  border-radius: 0.25rem;
  transition: all ease-in-out .3s;
}

.cookie-consent__btn:hover {
  background: rgb(217, 119, 6);
  border-color: rgb(173, 96, 8);
  color: rgb(44, 24, 0);
}

.cookie-consent__btn:focus {
  box-shadow: 0 0 0 .1125rem rgb(217, 119, 6);
}

.cookie-consent__btn--accept {
  background: transparent;
}

.cookie-consent__btn--reject {
}

@media screen and (min-width: 768px) {
  .cookie-consent__content {
    display: flex;
    flex-direction: row;
  }

  .cookie-consent__section {
    width: 50%;
  }
}
