.cookie_notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 16px 20px 24px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.cookie_notice.cookie_notice--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie_notice__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
  padding: 22px 28px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 40px rgba(48, 50, 54, 0.14);
  box-sizing: border-box;
}

.cookie_notice__text {
  flex: 1 1 320px;
  min-width: 0;
}

.cookie_notice__title {
  margin: 0 0 6px;
  font-family: 'FuturaDemiC', FuturaBookC, Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  color: #303236;
}

.cookie_notice__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #303236;
}

.cookie_notice__desc a {
  color: #303236;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: 0.2s;
}

.cookie_notice__desc a:hover {
  text-decoration: none;
}

.cookie_notice__btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 160px;
  height: 56px;
  padding: 0 36px;
  font-size: 20px;
  margin: 0;
}

@media (max-width: 749px) {
  .cookie_notice {
    padding: 12px 12px 16px;
  }

  .cookie_notice__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 18px 18px;
    gap: 12px;
  }

  .cookie_notice__text {
    flex: 0 0 auto;
  }

  .cookie_notice__title {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .cookie_notice__desc {
    font-size: 16px;
  }

  .cookie_notice__btn.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 52px;
    font-size: 18px;
    padding: 0 20px;
    margin: 0;
  }
}
