/* ### Banner CSS ### */
#bb-noticer-banner {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 40;
  width: 100%;
  background-color: var(--bb_noticer_banner_background_color);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  color: var(--bb_noticer_banner_text_color);
}
#bb-noticer-banner .noticer_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;  
  min-height: var(--bb_noticer_banner_minimum_height);
  padding: 10px 40px;
}
#bb-noticer-banner .noticer_text * {
  margin-bottom: 0;
}
#bb-noticer-banner .noticer_text > * + * {
  margin-top: 1em;
}
#bb-noticer-banner .noticer_text a {
  color: var(--bb_noticer_banner_link_color);
  text-decoration: underline;
}
#bb-noticer-banner .noticer_text a:hover {
  color: var(--bb_noticer_banner_link_color_hover);
}
#bb-noticer-banner .noticer_button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  line-height: 1;
  color: var(--bb_noticer_banner_text_color);
  cursor: pointer;
}

/* ### Popup CSS ### */
#bb-noticer-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
}
#bb-noticer-popup .noticer_popup-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.75);
}
#bb-noticer-popup .noticer_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: max-content;
  height: max-content;
  max-width: 100%;
  max-height: 80%;
  padding: 20px;
}
#bb-noticer-popup .noticer_inner .inner-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
#bb-noticer-popup .noticer_text-image {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1200px;
}
#bb-noticer-popup .noticer_text {
  max-width: 768px;
  padding: 40px;
  background-color: var(--bb_noticer_popup_background_color);
  color: var(--bb_noticer_popup_text_color);
}
#bb-noticer-popup .noticer_text * {
  margin-bottom: 0;
}
#bb-noticer-popup .noticer_text * + * {
  margin-top: 1em;
}
#bb-noticer-popup .noticer_text a {
  color: var(--bb_noticer_popup_link_color);
  text-decoration: underline;
}
#bb-noticer-popup .noticer_text a:hover {
  color: var(--bb_noticer_popup_link_color_hover);
}
#bb-noticer-popup .noticer_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
}
#bb-noticer-popup .noticer_button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  line-height: 1;
  color: var(--bb_noticer_popup_button_color);
  cursor: pointer;
}