.simple-alert {
  position: relative;
  top: 10;
  left: 0;
  width: auto;
  height: auto;
  padding: 10px;
  margin: 10px;
  line-height: 1.8;
  border-radius: 5px;
  cursor: hand;
  cursor: pointer;
  font-family: sans-serif;
  font-weight: 400;
}
.simple-alert.container {
  padding: 5px 10px;
  margin: 5px 10px;
  border-radius: 5px;
}
.simple-alert .alertCheckbox {
  display: none;
}
.simple-alert :checked + .alert {
  display: none;
}
.simple-alert .alertText {
  display: table;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
}
.simple-alert .alertClose {
  float: right;
  padding-top: 5px;
  font-size: 10px;
}
.simple-alert .clear {
  clear: both;
}
.simple-alert .info,
.simple-alert .success,
.simple-alert .notice,
.simple-alert .warning,
.simple-alert .error {
  border-radius: 5px;
  padding: 10px;
}
.simple-alert .info {
  background-color: #EEE;
  border: 1px solid #DDD;
  color: #999;
}
.simple-alert .success {
  background-color: #EFE;
  border: 1px solid #DED;
  color: #9A9;
}
.simple-alert .notice {
  background-color: #EFF;
  border: 1px solid #DEE;
  color: #9AA;
}
.simple-alert .warning {
  background-color: #FDF7DF;
  border: 1px solid #FEEC6F;
  color: #C9971C;
}
.simple-alert .error {
  background-color: #FEE;
  border: 1px solid #EDD;
  color: #A66;
}
.simple-alert a {
  font-weight: bold;
  color: inherit;
  text-decoration: none;
}
.simple-alert a:hover {
  text-decoration: underline;
}