/* 404 error*/
#not-found > h2 {
  font-size: 3rem;
  line-height: 1.4;
}

#not-found > h2 > span {
  font-size: 1rem;
}


/* ----- alert ----- */
.alert {
  position: fixed;
  z-index: 99;
  width: 310px;
  top: 54px;
  right: 20px;
}
.alert-message {
  margin-top: 20px;
  max-width: 400px;
  width: 100%;
  min-height: 50px;
  height: auto;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.alert-message.alert-notification > button.close {
  position: absolute;
  right: 0;
  top: 0;
  width: 26px;
  height: 26px;
  color: #ffffff;
}
.alert-message.alert-notification > button.close > i {
  color: #ffffff;
}
/*.alert-message.flexed {*/
/*  max-width: 100%;*/
/*}*/

.alert-message.alert-error {
  background-color: #ff7979;
  color: #9b111c;
  font-size: .8rem;
}

.alert-message.alert-success {
  background-color: #37d379;
  color: #ffffff;
}

.alert-message > span.alert-icon {
  height: 66px;
  width: 40px;
  margin-right: 10px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.alert-message > span.alert-icon.icon-danger {
  background-color: rgba(230, 57, 70, 1);
}

.alert-message > span.alert-icon.icon-success {
  background-color: rgba(39, 174, 96, 1);
}

.alert-message > span.alert-icon > i {
  color: #ffffff;
}

.alert-message > p.alert-text {
  width: calc(100% - 40px);
  height: 100%;
  padding: 0 14px;
  background-color: rgba(216, 216, 216, 0.1);
  font-size: .8rem;
}
.alert-message > ul.errorlist {
  width: calc(100% - 40px);
  font-weight: 500;
  padding: 10px;
  height: 100%;
  background-color: rgba(216, 216, 216, 0.08);
  font-size: .8rem;
}