.awNotices {
  position: relative;
  color: white;
  font: 12px Arial;
}

.awNotices a {
  padding: 8px 25px 8px 10px;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  color: inherit;
  text-decoration: none;
  visibility: hidden;
  transition: opacity .6s;
  border-radius: 0px;
  text-shadow: 0 0 3px rgba(1, 1, 1, 0.3);
  line-height: 150%;
}
.awNotices a i.fa {
  margin-left: 15px;
  padding-right: 8px;
  margin-right: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.awNotices a[notice-color="1"] {
  background-color: #1E5184;
}
.awNotices a[notice-color="2"] {
  background-color: #C39200;
}
.awNotices a[notice-color="3"] {
  background-color: #E10016;
}
.awNotices a[notice-color="4"] {
  background-color: #2A74B9;
}


.awNotices a.active {
  opacity: 1;
  visibility: visible;
}

.awNotices span.controller {
  float: right;
  position: relative;
  cursor: pointer;
  background: transparent;
  right: 0;
  padding: 8px 10px;
  line-height: 150%;
}


@media only screen and (max-width: 800px){

    .awNotices{ display: none;}
}
    
    
