#cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-radius: 16px;
    padding: 20px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 99999;
    font-family: Arial, sans-serif;
}

#cookie-consent p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #111;
    max-width: 75%;
}

#cookie-consent button {
    background: #3B82F6;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 15px;
    cursor: pointer;
}

#cookie-consent button:hover {
    background: #2563EB;
}

@media (max-width: 768px) {
    #cookie-consent {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    #cookie-consent p {
        max-width: 100%;
    }
}
/* 1) Центровка текста чекбокса */
.t-form .t-input-group_cb .t-checkbox__label,
.t-form .t-checkbox__label {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
}

/* 2) Внешний вид квадрата */
.t-form .t-checkbox__indicator {
  width: 22px !important;
  height: 22px !important;
  border-radius: 4px !important;
  border: 2px solid #e74c3c !important;   /* красная рамка */
  background: transparent !important;
  position: relative !important;
}

/* 3) Синий фон при выборе */
.t-form input[type="checkbox"]:checked + .t-checkbox__indicator {
  background: #3B82F6 !important;
  border-color: #3B82F6 !important;
}

/* 4) Белая галочка */
.t-form .t-checkbox__indicator:after {
  content: "" !important;
  position: absolute !important;

  /* центрируем галочку */
  left: 50% !important;
  top: 50% !important;

  width: 5px !important;
  height: 10px !important;

  border: solid #fff !important;
  border-width: 0 2px 2px 0 !important;

  /* сдвиг + поворот */
  transform: translate(-50%, -60%) rotate(45deg) !important;

  opacity: 0 !important;
}

.t-form input[type="checkbox"]:checked + .t-checkbox__indicator:after {
  opacity: 1 !important;
}

/* 5) Ссылки */
.t-form .t-checkbox__label a {
  color: #3B82F6 !important;
  text-decoration: none !important;
}
.t-form .t-checkbox__label a:hover {
  text-decoration: underline !important;
}

/* 6) Принудительно ставим чекбокс ПОД кнопкой (если контейнер позволяет) */
.t-form__inputsbox {
  display: flex !important;
  flex-direction: column !important;
}

.t-form .t-form__submit { order: 1 !important; }
.t-form .t-input-group_cb { order: 2 !important; margin-top: 14px !important; }