/* Flash Messages */
.flash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  z-index: 1000;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  text-align: center;

  &.flash_alert {
    background-color: var(--color-flash-alert-bg);
    color: var(--color-flash-alert-text);
  }

  &.flash_notice {
    background-color: var(--color-flash-notice-bg);
    color: var(--color-flash-notice-text);
  }

  .close {
    cursor: pointer;
    font-size: 1.2em;
  }
}
