.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  font-size: 0.75rem;
  padding: 1rem 7rem 1rem 1rem;
  margin: 1rem;
  max-width: 35rem;
  overflow: hidden;
  border-radius: var(--bs-border-radius, 10px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: var(--bs-white, #fff);
}
.cookie-banner a:not(.btn) {
  color: var(--bs-body-color, #000);
  text-decoration: none !important;
}
.cookie-banner a:not(:hover) {
  opacity: 0.8;
}
.btn-accept-cookies {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 0.85rem;
  padding: 0.5rem;
  width: 6rem;
  border-radius: var(--bs-border-radius, 10px);
}
.cookies-learn-more {
  display: block;
  border-width: 0;
  background-color: transparent;
  padding: 0;
  margin-top: 0.5rem;
}
.cookies-learn-more::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.5rem;
  margin-left: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.006' height='8.752' viewBox='0 0 15.006 8.752'%3E%3Cpath id='Caminho_5573' data-name='Caminho 5573' d='M7.867-4.117a1.252,1.252,0,0,0,1.77,0l6.25-6.25a1.252,1.252,0,0,0,0-1.77,1.252,1.252,0,0,0-1.77,0L8.75-6.77,3.383-12.133a1.252,1.252,0,0,0-1.77,0,1.252,1.252,0,0,0,0,1.77l6.25,6.25Z' transform='translate(-1.247 12.503)'/%3E%3C/svg%3E%0A");
  background-size: 0.65rem;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.cookies-learn-more.active::after {
  transform: rotate(180deg);
}
#cookiesInfo {
  display: none;
  padding-top: 1rem;
}

@media (max-width: 767.98px) {
  .cookie-banner {
    left: 0;
    max-width: none;
    margin: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.16);
  }
  .btn-accept-cookies {
    border-bottom-right-radius: 0;
  }
}
