/* dimensions */
/* breakpoints */
/* used also in common.js menu switch */
/* browser detect media queries */
/* colors */
/* shadows */
/* transitions */
/* animations */
@keyframes show {
  0% {
    display: none;
    opacity: 0;
  }
  .1% {
    display: block;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes hide {
  0% {
    display: block;
    opacity: 1;
  }
  99.9% {
    display: block;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
#important-notice {
  height: 64px;
  width: 100%;
}
#important-notice .important-notice-wrap {
  position: fixed;
  width: 100%;
  z-index: 21;
  background: #fcfad0;
  color: #7c7709;
}
#important-notice .important-notice-wrap .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
#important-notice .important-notice-wrap .container .important-notice-items {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
}
#important-notice .important-notice-wrap .container .important-notice-items .hide {
  display: none;
}
#important-notice .important-notice-wrap .container .commands button {
  height: 32px;
  background: #fcfad0;
  color: #7c7709;
}
#important-notice .important-notice-wrap .container .commands button:hover {
  background: #dad683;
}
#important-notice .important-notice-wrap sup {
  color: unset;
}
#important-notice .important-notice-wrap button.close {
  background: transparent;
  color: #7c7709;
  padding: 0;
}
#important-notice .important-notice-wrap a {
  color: #7c7709;
}
#important-notice .important-notice-wrap a:hover {
  color: #7c7709;
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  #important-notice .important-notice-wrap {
    height: 64px;
  }
}
#important-notice.single-notice {
  height: 32px;
}
@media screen and (max-width: 900px) {
  #important-notice.single-notice {
    height: 64px;
  }
}

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