.alertStrap {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   padding: 0 5px;
   background-color: #F7941E;
   color: white;
   z-index: 100;
}

.-purple {
  background-color: #662f8f;
}
.-blue {
  background-color: #1A96D4;
}
.-grey {
  background-color: #555555;
}
.alertStrap-text {
  font-weight: bold;
  top: 50%;
  transform: translateY(50%);
  width: 94%;
  float: left;
  text-align: center;
  color: #FFF;
}

@media screen and (min-width: 700px) {
  .alertStrap-text {
    text-indent:6%;
  }
}

.alertStrap-text a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.alertStrap-text a:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}


p.alertStrap-close {
  width: 2%;
  float: left;
  top: 50%;
  text-align:right;
  transform: translateY(50%);
}

@media screen and (min-width: 700px) {
  p.alertStrap-close {
   width: 6%; 
}
}

p.alertStrap-close a {
  color: #FFFFFF;
  padding: 5px;
  opacity: 0.5;
}

p.alertStrap-close a:hover {
  opacity: 1;
}