@charset "UTF-8";
/*———— -Libraries- ————*/
/*———— -Settings- ————*/
/*———— -Typefaces etc- ————*/
/*———— -Z-indices- ————*/
/*———— -Colors- ————*/
/*———— -Gradients- ————*/
/*———— -Shadow- ————*/
/*———— -Animación- ————*/
#c-cu-alert-bar-spacer {
  background-color: #002956;
  height: 100vh;
  transition: max-height 0.4s ease-in-out 0s;
}

.c-cu-alert-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row nowrap;
  background-color: var(--alert-bar-bg-color);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  transition: background-color 400ms ease, opacity 0.6s ease 400ms;
  z-index: 200;
  opacity: 1;
  overflow: hidden;
  transition: transform 0s linear 0.4s;
}
.c-cu-alert-bar.js-is-loaded {
  transform: translateY(0);
}
.c-cu-alert-bar.js-is-hidden {
  transform: translateY(-100%);
}
.c-cu-alert-bar__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.c-cu-alert-bar__link:hover ~ .c-cu-alert-bar__container > .c-cu-alert-bar__content, .c-cu-alert-bar__link:focus ~ .c-cu-alert-bar__container > .c-cu-alert-bar__content {
  opacity: 0.85;
}
.c-cu-alert-bar__container {
  position: relative;
}
.c-cu-alert-bar__content {
  padding: 0.875rem 0;
  margin: 0 auto;
  color: var(--alert-bar-text-color);
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: left;
  transition: all ease 400ms;
  padding-right: 2.1rem;
}
@media (min-width: 768px) {
  .c-cu-alert-bar__content {
    font-size: 1rem;
  }
}
.c-cu-alert-bar__content .underline {
  text-decoration: underline;
}
.c-cu-alert-bar__content p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .c-cu-alert-bar__content p {
    font-size: 1.45rem;
    line-height: 1.25;
  }
}
.c-cu-alert-bar__content a,
.c-cu-alert-bar__content a:not(.c-btn):not(.button):not(.ignore-link-style) {
  color: var(--alert-bar-text-color);
}
.c-cu-alert-bar__content a:hover, .c-cu-alert-bar__content a:focus,
.c-cu-alert-bar__content a:not(.c-btn):not(.button):not(.ignore-link-style):hover,
.c-cu-alert-bar__content a:not(.c-btn):not(.button):not(.ignore-link-style):focus {
  color: var(--alert-bar-text-color);
  opacity: 0.85;
}
.c-cu-alert-bar__close-btn {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
}
.c-cu-alert-bar__close-btn-bar {
  position: absolute;
  top: calc(50% - 1.5px);
  left: calc(50% - 12.5px);
  height: 3px;
  width: 25px;
  transition: all ease 400ms;
  background-color: #fff;
  transform: rotate(-45deg);
}
.c-cu-alert-bar__close-btn-bar:nth-child(2) {
  transform: rotate(45deg);
}
@media (min-width: 769px) {
  .c-cu-alert-bar__close-btn:hover {
    opacity: 0.7;
  }
}
.c-cu-alert-bar.js-is-loaded {
  transform: translateY(0);
}
.c-cu-alert-bar.js-is-ready {
  opacity: 1;
  transition: transform 0s linear 0.38s;
}
/*# sourceMappingURL=main.bundle.1.2.0.css.map */
