.fixed-alerts {
  position: fixed;
  top: 190px;
  right: -400px;
  z-index: 25;
  transition: 2s;
}
.alerts {
  position: relative;
  border-radius: 25px;
  right: 0px;
  width: 500px;
  height: 135px;
  padding-right: 30px;
  margin-bottom: 10px;
  background-color: #f44336;
  color: black;
  font-size: 20;
  opacity: .6;
  transition: 2s;
}
.alerts:hover {
  position: relative;
  right: 375px;
  opacity: 1;
  box-shadow: 2px 2px 3px 2px #000;
  transition: 2s;
}
.alerts.success {
  background-color: #4CAF50;
  text-align: center;
  margin-top: 10px;
}
.alerts.info {
  background-color: #2196F3;
  text-align: center;
  margin-top: 10px;
}
.alerts.warning {
  background-color: #ff9800;
  text-align: center;
  margin-top: 10px;

}
.closebtn {
  width: 100%;
  text-align: right;
  cursor: pointer;
  z-index: 2;
  position: relative;
}
.alerttext {
  color: black;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  vertical-align: middle;
  padding: 20px;
  width: auto;
  height: 135px;
  display: table-cell;
}
.alertcontent {
  vertical-align: middle;
  text-align: center;
  width: 85%;
  display: table-cell;
}
