/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 02 2025 | 19:40:28 */
/* === СТИЛЬ ОБЕРТКИ ПЛАШКИ === */
.cookie-banner {
  font-family: "Tilda Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: #495057;
  text-align: center; /* весь текст и элементы по центру */

  display: flex;
  flex-direction: column;
  align-items: center; /* центровка кнопки */
  gap: 12px;

  max-width: 100%;
  padding: 16px 20px;
  background: #F8F9FA;
  border-top: 1px solid #dee2e6;
  box-sizing: border-box;
}

/* === СТИЛЬ КНОПКИ "ОК" === */
.cookie-ok-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 120px;
  height: 46px;

  padding: 0 28px;
  background-color: #2C9347;
  color: #fff;

  border: none;
  border-radius: 4px;
  cursor: pointer;

  font-family: "Tilda Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.3px;

  transition: box-shadow 0.2s ease;
  box-shadow: none; /* по умолчанию тени нет */
}

.cookie-ok-btn:hover,
.cookie-ok-btn:focus {
  background-color: #2C9347; /* цвет не меняется */
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* появляется тень */
}

.cookie-ok-btn:active {
  background-color: #2C9347;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2); /* слабее при клике */
}

/* === СТИЛЬ ССЫЛКИ В ТЕКСТЕ === */
.cookie-banner a {
  color: #204C7E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner a:hover,
.cookie-banner a:focus,
.cookie-banner a:active {
  color: #204C7E; /* цвет не меняется */
  text-decoration: underline;
}
