/*!******************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/notices/site/view.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************/
/**
 * ### Site Notices View Styling ###
 *
 * Styling specifically for the site notices container.
 * Individual notice styling is handled by the notice block itself.
 *
 * @package Umbrellas
 * @since 1.0.0
 */
/* Shared base styles for Site Notice block */
.wp-block-umbrellas-site-notice {
  display: flex;
  align-items: center;
  overflow: hidden; /* so content is clipped while collapsing */
  will-change: height, padding-top, padding-bottom;
}
.wp-block-umbrellas-site-notice__content {
  flex: 1;
  overflow-wrap: anywhere; /* prevent long URLs breaking layout */
  word-break: break-word;
  will-change: opacity;
}
.wp-block-umbrellas-site-notice__close {
  margin-inline-start: auto; /* RTL/LTR friendly */
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  will-change: opacity;
  border: none;
  background: transparent;
}
/*
Unlikely to need to, but edit site notice styles here.
 */
.wp-block-umbrellas-site-notice {
  display: block;
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: max-height 800ms ease-in-out;
}
.wp-block-umbrellas-site-notice.is-ready {
  max-height: 500px;
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-umbrellas-site-notice {
    transition: none;
    max-height: none;
  }
  .wp-block-umbrellas-site-notice.is-ready {
    max-height: none;
  }
}
.wp-block-umbrellas-site-notice__item {
  overflow: hidden;
  will-change: height, padding-top, padding-bottom, opacity;
  transition: opacity 200ms ease;
}
.wp-block-umbrellas-site-notice__item[data-umb-dismissed=true] {
  display: none !important;
}

/*# sourceMappingURL=view.css.map*/