/**
 * @file
 * EDSR : Feuille de styles dédiée au bandeau ALERTE INFO.
 */

#alerte-info {
  position: fixed;
  bottom: 0;
  padding: 1.85em 0;
  width: 100%;
  background-color: #e6772f;
  -webkit-box-shadow: 0 -15px 25px -5px rgba(100,100,100,.2);
  box-shadow: 0 -15px 25px -5px rgba(100,100,100,.2);
  font-size: 1.15em;
  color: #ffffff;
  z-index: 2000;
}
#alerte-info > .inner > div {
  position: relative;
}
#alerte-info .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background:url('../../../edsbase/images/commun/croix-fermer-blanc.svg') center center no-repeat;
}
#alerte-info .close:hover {
  cursor: pointer;
}
#alerte-info .infos {
  padding-right: 50px;
}
#alerte-info .info:not(:last-child) {
  margin-bottom: .5em;
  padding-bottom: .5em;
  border-bottom: 1px dotted #ffffff;
}
#alerte-info .infos .prefixe {
  font-family: 'soleil-bold';
}
#alerte-info .infos .texte a {
  margin-left: 10px;
  color: #ffffff;
}

/*--------- <= 1250px ---------*/

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

  #alerte-info {
    z-index: 4000;
  }
}

