.alert {
  font-size: 22px;
  color: white;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 14px;
}

.alert a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  margin: 0;
  background: #e37700;
  text-decoration: none;
  padding: 10px 17px 10px 14px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
  color: white;
  padding: 0;
  background: transparent;
  position: relative;
  font-size: 18px;
  margin-left: 15px;
  font-weight: normal;
  margin-top: 5px;
}

.alert a a {
  color: white;
}

.alert a::after {
  content: '';
  width: 5px;
  height: 5px;
  margin-left: 5px;
  display: inline-block;
  border-right: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(45deg);
  transition: border 0.3s, left 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.alert a:hover {
  color: white;
  background: #ca6a00;
}

.alert a:hover a {
  color: white;
}

.alert a::before {
  content: '';
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -2px;
  background: white;
  transition: width 0.3s;
}

.alert a:hover {
  background: transparent;
}

.alert a:hover:before {
  width: calc(100% - 12px);
}

.alert--red {
  background: #cd2026;
}

.alert--purple {
  background: #4c2c92;
}

.alert--gray {
  background: #494440;
}

.alert--blue {
  background: #205493;
}

.alert--orange {
  background: #e37700;
}

@media (min-width: 48em) {
  .alert {
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .alert a {
    margin-top: 1px;
  }
}

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