  html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding: 20vh;
}

.oeeo-alerts {
  background: #ecede2;
  border-top: 5px solid #c41230;
  padding: 30px;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 90;
}
.oeeo-alerts .alerts-base__container {
   max-width: none;
   position: relative;
   background: transparent;
}
.close-alert {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0%;
  padding: 10px 20px;
  transform: translate(0%, -50%);
  color: #000;
  font-size: 2.5em;
  font-weight: 700;
}
.close-alert:hover {
  background: #ccc9b8;
  outline: 1px solid #000;
}
.close-alert:focus {
  outline: 2px solid #000;
  background: #ccc9b8;
}

.hideAlert {
    display: none !important;
}

.alerts-content__inner {
    width: 80%;
    font-family: freight-text-pro, serif;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: .015625rem;
    line-height: 25px;
}
.alerts-content__inner h2 {
    font-family: proxima-nova, sans-serif;
    padding-bottom: 8px;
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
}
.alerts-content__inner a {
    text-decoration: underline;
    color: #c41230;
}
.alerts-content__inner a:hover {
    text-decoration: none;
    outline: 1px solid #c41230;
    outline-offset: 3px;
}
.alerts-content__inner a:focus {
    text-decoration: none;
    outline: 2px solid #000;
    outline-offset: 3px;
}