/* ==========================================================================
   SPOKO — GDPR cookie consent bar
   Trimmed from the original webtoffee-style markup; only the bottom-left
   notice variant is rendered. Inline color/background styles in the markup
   override the hard-coded brand defaults below.
   ========================================================================== */

.wcc-hide {
  display: none;
}

.wcc-consent-container {
  position: fixed;
  width: 440px;
  box-sizing: border-box;
  z-index: 9999999;
  border-radius: 6px;
}

.wcc-consent-container .wcc-consent-bar {
  background: #ffffff;
  border: 1px solid;
  padding: 20px 26px;
  box-shadow: 0 -1px 10px 0 #acabab4d;
  border-radius: 6px;
}

.wcc-box-bottom-left  { bottom: 40px; left: 40px; }
.wcc-box-bottom-right { bottom: 40px; right: 40px; }
.wcc-box-top-left     { top: 40px; left: 40px; }
.wcc-box-top-right    { top: 40px; right: 40px; }

.wcc-notice .wcc-title {
  color: #212121;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 12px 0;
  font-family: inherit;
}

.wcc-notice-group {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #212121;
}

.wcc-notice-des {
  color: #212121;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.wcc-notice-des p {
  color: inherit;
  margin: 0 0 8px 0;
}

.wcc-notice-des p:last-child {
  margin-bottom: 0;
}

.wcc-notice-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.wcc-btn {
  flex: auto;
  max-width: 100%;
  font-size: 14px;
  font-family: inherit;
  line-height: 24px;
  padding: 8px;
  font-weight: 500;
  margin: 0 8px 0 0;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  min-height: 0;
  text-shadow: none;
  box-shadow: none;
  border: 2px solid;
}

.wcc-btn:hover { opacity: 0.85; }
.wcc-btn:last-child { margin-right: 0; }

.wcc-btn:focus-visible {
  outline: 2px solid #1863dc;
  outline-offset: 2px;
}

.wcc-btn:focus:not(:focus-visible) { outline: 0; }

@media (max-width: 576px) {
  .wcc-box-bottom-left, .wcc-box-bottom-right,
  .wcc-box-top-left, .wcc-box-top-right {
    bottom: 0; left: 0; top: auto; right: auto;
  }
}

@media (max-width: 440px) {
  .wcc-consent-container {
    width: 100%;
    max-width: 100%;
  }

  .wcc-consent-container .wcc-consent-bar {
    padding: 20px 0;
    border-radius: 0;
  }

  .wcc-notice .wcc-title,
  .wcc-notice-des,
  .wcc-notice-btn-wrapper {
    padding: 0 24px;
  }

  .wcc-notice-des {
    max-height: 40vh;
    overflow-y: auto;
  }

  .wcc-notice-btn-wrapper {
    flex-direction: column;
    margin-top: 0;
  }

  .wcc-btn {
    width: 100%;
    margin: 10px 0 0 0;
  }

  .wcc-notice-btn-wrapper .wcc-btn-customize { order: 2; }
  .wcc-notice-btn-wrapper .wcc-btn-reject    { order: 3; }
  .wcc-notice-btn-wrapper .wcc-btn-accept    { order: 1; margin-top: 16px; }
}

@media (max-width: 352px) {
  .wcc-notice .wcc-title { font-size: 16px; }
  .wcc-notice-des, .wcc-btn { font-size: 12px; }
}
