[data-sitewide-alert] {
  background: #fff;
  padding: 0 !important;
}

.sitewide-alert {
  background: none !important;
  background: none;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  padding-top: 25px !important;
  padding-bottom: 25px !important;
  
  p {
    font-size: 18px;
    margin: 0;
  }

    @media (max-width: 1024px) {
      padding-top: 15px;
      padding-bottom: 6px;
    }

  &.alert-blue-text {
    border-bottom: 1px solid #232C64;
    p {
      color: #232C64;
    }
  }

  &.alert-black-text {
    border-bottom: 1px solid #000;
    p {
      color: #000;
    }
  }

}

.sitewide-alert div{
  display: flex;
  justify-content: center;
  column-gap: 65px;
  align-items: center;
  @media (max-width: 1024px) {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 24px;
    column-gap: 0;
  }
}

.sitewide-alert h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 21px;
    font-weight: 700;
    line-height: 28px;
    column-gap: 5px;
    flex-wrap: wrap;
      @media (max-width: 1024px) {
      font-size: 16px;
      margin: 0;
      }
}

.sitewide-alert a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 45px;
    text-align: center;
    color: #ffffff;
    box-sizing: border-box;
    cursor: pointer;
    border: 3px solid #ffffff;
    color: #ffffff;
    background-color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    font-family: "Open Sans", sans-serif;
    color: #232C64;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    @media (max-width: 1024px) {
      padding: 5px 15px;
      height: auto;      
    }
}

.sitewide-alert .close {
  float: right;
}

.sitewide-alert__message,
.sitewide-alert .field--name-message {
  /* Prevent the message from pushing down the close icon. */
  display: inline-block;
}

