/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 31 2026 | 06:05:06 */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #f3f4f6;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
  padding: 14px 20px;
}

.cookie-consent-banner[hidden] {
  display: none !important;
}

.cookie-consent-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-consent-banner__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #4b5563;
}

.cookie-consent-banner__link {
  color: #0f766e;
  text-decoration: underline;
}

.cookie-consent-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-consent-banner__button {
  border: 0;
  border-radius: 10px;
  background: #0f766e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 18px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-consent-banner__button:hover {
  opacity: 0.92;
}

.cookie-consent-banner__button:active {
  transform: translateY(1px);
}

@media (max-width: 767px) {
  .cookie-consent-banner {
    padding: 14px 14px 16px;
  }

  .cookie-consent-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-consent-banner__text {
    font-size: 13px;
    line-height: 1.6;
  }

  .cookie-consent-banner__button {
    width: 100%;
  }
}