/* CSS Document */

.cookie-notice {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  background: #ffffff;
  color: #333333;
  border: 1px solid #d0d0d0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-notice a {
  color: #000099;
  text-decoration: underline;
}

.cookie-notice__button {
  background: #cc0000;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 15px;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .cookie-notice {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-notice__button {
    width: 100%;
  }
}