.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: none;
}
.cookie-banner .cookie-banner-inner {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  padding: 3.75rem;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  box-shadow: 0 -0.25rem 1.25rem rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  .cookie-banner .cookie-banner-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
@media (max-width: 600px) {
  .cookie-banner .cookie-banner-inner {
    padding: 1.5rem;
  }
}
.cookie-banner .cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1;
}
@media (max-width: 600px) {
  .cookie-banner .cookie-content {
    flex-direction: column;
    align-items: center;
  }
}
.cookie-banner .cookie-icon {
  width: 2.25rem;
  height: 2.25rem;
  aspect-ratio: 1/1;
}
.cookie-banner .cookie-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cookie-banner .cookie-text {
  flex: 1 0 0;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.cookie-banner .cookie-text a {
  color: #B28F23;
  text-decoration: underline;
}
.cookie-banner .cookie-text a:hover {
  text-decoration: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .cookie-banner .cookie-actions {
    gap: 0.625rem;
    align-self: stretch;
  }
}
@media (max-width: 600px) {
  .cookie-banner .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-banner .cookie-actions .cookie-btn {
    width: 100%;
  }
}
.cookie-banner .cookie-btn {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.09px;
  text-transform: uppercase;
  display: flex;
  height: 3rem;
  padding: 0.625rem 0.875rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex: 1 0 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.cookie-banner .cookie-btn.cookie-btn-primary {
  background: #B28F23;
  color: #fff;
  border: 1px solid #B28F23;
}
.cookie-banner .cookie-btn.cookie-btn-primary:hover {
  background: #C4AB5B;
  border-color: #C4AB5B;
}
.cookie-banner .cookie-btn.cookie-btn-outline {
  border: 1px solid #B5B5B5;
  background: #F9F9F9;
  color: #000;
}
.cookie-banner .cookie-btn.cookie-btn-outline:hover {
  background: #D0D2D4;
}
