body > .alert-wrapper {
  margin-top: 30px;
  min-height: 100px;
  width: 350px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  -webkit-transition: all 0.4s;
  -ie-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
body > .alert-wrapper.hidden {
  right: -350px;
}
body > .alert-wrapper .alert {
  -webkit-transition: all 0.4s;
  -ie-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 10px 0 0 10px;
  position: relative;
  right: 0;
  opacity: 0.75;
  min-height: 100px;
}
body > .alert-wrapper .alert:hover {
  opacity: 1;
}
body > .alert-wrapper .alert.hidden {
  right: -100%;
}
body > .alert-wrapper .alert.alert-info {
  background-color: #17a2b8;
}
body > .alert-wrapper .alert .close {
  padding: 0;
  background-color: transparent;
  border: 0;
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  color: #000;
  opacity: 0.2;
}
body > .alert-wrapper .alert .alert-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
body > .alert-wrapper .alert .alert-content .icon-wrapper {
  opacity: 0.2;
  font-size: 3em !important;
  width: 20%;
}
body > .alert-wrapper .alert .alert-content .icon-wrapper > .icon {
  color: #000000;
}
body > .alert-wrapper .alert .alert-content p {
  width: 80%;
}

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