/* Matches spraycyber.nl site overrides in style.css (.cc-window.cc-theme-jw) */
#spraycyber-notice {
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  font-family: "Bungee", "sans-serif";
  font-size: 15px;
  line-height: 1.2;
  overflow: hidden;
  position: fixed;
  z-index: 2147483647;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0.8em 1.8em;
  background-color: #222;
  color: #fff;
  animation: sc-notice-slideUp 0.8s ease;
  transition: none;
}

@keyframes sc-notice-slideUp {
  0% { transform: translateY(66px); }
  to { transform: translateY(0); }
}

#spraycyber-notice .sc-notice-text {
  display: block;
  flex: 1 1 auto;
  margin-right: 1em;
  max-width: 100%;
  font-family: inherit;
}

#spraycyber-notice .sc-notice-actions {
  align-content: space-between;
  align-items: center;
  display: flex;
  margin-left: auto;
}

#spraycyber-notice .sc-notice-highlight .sc-notice-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

#spraycyber-notice .sc-notice-btn {
  border-style: solid;
  border-width: 2px;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 0.9em;
  font-weight: 400;
  padding: 8px 40px;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  transition-duration: 0.2s;
  transition-property: background-color, color, border-color;
}

#spraycyber-notice .sc-notice-btn + .sc-notice-btn {
  margin-left: 0.5em;
}

#spraycyber-notice .sc-notice-decline {
  color: inherit;
  font-weight: 400;
  opacity: 0.8;
  background-color: transparent;
  border-color: transparent;
}

#spraycyber-notice .sc-notice-decline:hover,
#spraycyber-notice .sc-notice-decline:focus {
  opacity: 1;
  background-color: transparent;
  text-decoration: underline;
}

#spraycyber-notice .sc-notice-accept {
  background-color: #f3f562;
  color: #3a3b04;
  border-color: #000;
}

#spraycyber-notice .sc-notice-accept:hover,
#spraycyber-notice .sc-notice-accept:focus {
  background-color: #eff232;
  border-color: #000;
  color: #3a3b04;
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  #spraycyber-notice .sc-notice-btn {
    white-space: normal;
  }
}

@media screen and (max-width: 414px) and (orientation: portrait),
       screen and (max-width: 736px) and (orientation: landscape) {
  #spraycyber-notice {
    flex-direction: column;
    align-items: unset;
    left: 0;
    right: 0;
  }

  #spraycyber-notice .sc-notice-text {
    margin-right: 0;
    margin-bottom: 1em;
  }

  #spraycyber-notice .sc-notice-actions {
    flex: 1 1 auto;
    margin-left: 0;
  }
}

@media print {
  #spraycyber-notice {
    display: none;
  }
}
