.cookie-banner {
  position: fixed;
  z-index: 10000;
  right: 24px;
  bottom: 24px;
  left: auto;
  width: min(420px, calc(100vw - 32px));
  margin: 0;
  padding: 16px 18px 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  font-family: inherit;
  color: #222;
}

.cookie-banner__text {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #333;
}

.cookie-banner__text a {
  color: #e34120;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: #c1361a;
}

.cookie-banner__btn {
  display: inline-block;
  min-width: 88px;
  height: 36px;
  padding: 0 20px;
  border: none;
  border-radius: 0;
  background: #e34120;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 36px;
  cursor: pointer;
}

.cookie-banner__btn:hover {
  background: #c1361a;
}

@media (max-width: 480px) {
  .cookie-banner {
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }
}
