#rave-alert {
  z-index: 22;
  background: #000;
}
#rave-alert .close {
  line-height: 16px;
  color: white;
  padding: 10px;
  margin-left: 14px;
  transition: all .2s ease;
  border-radius: 50%;
  margin-top: 4px;
  background: black;
  text-decoration: none !important;
  opacity: 1;
}
#rave-alert .close:hover,
#rave-alert .close:focus,
#rave-alert .close:active {
  background: #333;
  color: white;
  border-radius: 50%;
}
#rave-alert .alert {
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 80px;
  position: relative;
}
#rave-alert .alert h4 {
  color: #fff;
  margin: 0;
}
#rave-alert .alert-message {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.4rem 2rem 2rem 0;
}
#rave-alert .alert-content {
  flex: 1;
}
#rave-alert .alert-actions {
  display: flex;
  align-items: center;
}
#rave-alert .alert.alert-success,
#rave-alert .alert.alert-danger,
#rave-alert .alert.alert-error,
#rave-alert .alert.alert-info,
#rave-alert .alert.alert-warning,
#rave-alert .alert.alert-warning-utility,
#rave-alert .alert.alert-warning-test {
  background-color: transparent;
  border-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 50%;
  color: #fff;
}
#rave-alert .alert.alert-success {
  background-image: url('../rave-alert/images/alert-information.png');
}
#rave-alert .alert.alert-error {
  background-image: url('../rave-alert/images/alert-warning.png');
}
#rave-alert .alert.alert-warning {
  background-image: url('../rave-alert/images/alert-notification.png');
}
#rave-alert .alert.alert-warning-utility {
  background-image: url('../rave-alert/images/alert-utility.png');
}
#rave-alert .alert.alert-warning-test {
  background-image: url('../rave-alert/images/alert-test.png');
}
#rave-alert .alert.alert-info-weather {
  background-image: url('../rave-alert/images/alert-weather.png');
}
#rave-alert .alert .alert-details-btn {
  color: #ffffff;
  background-color: #0039a6;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  border: 1px solid #ffffff;
  border-radius: 0;
  font-size: 14px;
  text-decoration: none;
  height: 28px;
  padding: 5px 15px;
  text-transform: uppercase;
}
#rave-alert .alert .alert-details-btn:hover,
#rave-alert .alert .alert-details-btn:active,
#rave-alert .alert .alert-details-btn:focus {
  color: #0039a6;
  background-color: #ffffff;
  border: 1px solid #0039a6;
  text-decoration: none;
  transition: 0.2s;
}
#rave-alert .alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}
#rave-alert .alert-block > p,
#rave-alert .alert-block > ul {
  margin-bottom: 0;
}
#rave-alert .alert-block p + p {
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  #rave-alert .alert {
    padding-left: 0;
    background-image: none !important;
  }
  #rave-alert .alert-message {
    max-width: 100%;
    padding: 14px 20px;
  }
}
@media only screen and (max-width: 375px) {
  #rave-alert .alert {
    flex-direction: column;
    align-items: flex-start;
  }
  #rave-alert .alert .close {
    position: absolute;
    top: 0;
    right: -10px;
  }
  #rave-alert .alert-content {
    font-size: 18px;
  }
  #rave-alert .alert-content h4 {
    font-size: 20px;
  }
  #rave-alert .alert-actions {
    margin-top: 14px;
    margin-bottom: 10px;
  }
}
