.cookie-notice {
 position: fixed;
 bottom: 12px;
 left: 12px;
 width: calc(100% - 20px);
 max-width: 320px;
 border-radius: 15px;
 backdrop-filter: blur(5px);
 background: rgba(244, 245, 242, 0.9);
 padding: 12px 15px 12px 15px;
 font-size: 10px;
 font-weight: 400;
 line-height: 13px;
 color: rgba(103, 103, 103, 1);
 z-index: 99999999999;
 box-sizing: border-box;
 transition:
  opacity 0.3s ease,
  transform 0.3s ease;
}

/* Класс для скрытия плашки */
.cookie-notice_hidden {
 opacity: 0;
 visibility: hidden;
 transform: translate(-50%, 20px);
}

.cookie-notice__container {
 display: flex;
 flex-direction: column;
 gap: 15px;
}

.cookie-notice__text {
 margin: 0;
 color: rgba(103, 103, 103, 1);
 font-size: 10px;
 font-weight: 400;
 line-height: 13px;
}

/* Ссылка на политику */
.cookie-notice__link {
 color: #0066cc;
 text-decoration: underline;
}

.cookie-notice__link:hover {
 text-decoration: none;
}

/* Блок с кнопками */
.cookie-notice__buttons {
 display: flex;
 gap: 6px;
 justify-content: flex-start;
}

/* Общие стили кнопок */
.cookie-notice__btn {
 padding: 9px 12px;
 border: none;
 border-radius: 10px;
 background: rgba(255, 255, 255, 1);
 cursor: pointer;
 transition: background-color 0.2s ease;
 color: rgba(103, 103, 103, 1);
 font-size: 15px;
 font-weight: 500;
 line-height: 18px;
}

.cookie-notice__btn_accept:hover,
.cookie-notice__btn_decline:hover {
 opacity: 0.9;
}

/* Адаптив под мобилки */
@media (max-width: 480px) {
 .cookie-notice {
  width: 100%;
  max-width: 100%;
  width: calc(100% - 33px);
  padding: 12px 15px;
  bottom: 12px;
  left: 17px;
 }
 .cookie-notice_hidden {
  transform: translateY(100%);
 }
 .cookie-notice__container {
  gap: 10px;
 }
}
@media (max-width: 360px) {
 .cookie-notice {
  width: calc(100% - 33px);
  max-width: 100%;
  padding: 9px 15px;
  bottom: 10px;
  left: 20px;
 }
 .cookie-notice__container {
  gap: 5px;
 }
 .cookie-notice__text {
  font-size: 9px;
  font-weight: 400;
  line-height: 12px;
 }
}
