.site-footer {
  padding: 30px 0;
  text-align: center;
  background: #17191b;
}
.site-footer a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer a:hover {
  color: var(--orange);
  text-decoration: none;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 14px;
  width: min(450px, calc(100vw - 48px));
  box-sizing: border-box;
  padding: 30px 54px 24px 24px;
  border-radius: 12px;
  background: #e9e9e9;
  color: var(--black);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}
.cookie-banner__close {
  position: absolute;
  top: -12px;
  right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #17191b;
  color: var(--white);
  cursor: pointer;
}
.cookie-banner__icon {
  padding-top: 2px;
}
.cookie-banner__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}
.cookie-banner__content > a {
  display: inline-block;
  margin-top: 6px;
  color: var(--black);
  font-size: 14px;
  text-decoration: underline;
}
.cookie-banner__accept {
  display: block;
  margin-top: 18px;
  padding: 12px 22px;
  border: 1px solid #17191b;
  border-radius: 8px;
  background: #17191b;
  color: var(--white);
  font: 500 15px/1 var(--interFont);
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-banner__accept:hover {
  background: transparent;
  color: #17191b;
}
@media only screen and (max-width: 560px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 24px 42px 20px 18px;
  }
  .cookie-banner__close {
    top: 8px;
    right: 8px;
  }
}
