
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700');
@import url('https://fonts.googleapis.com/css?family=Faustina:400,600,700');

#mesagge {
  margin: 0;
  padding: 20px 0;
  font-family: 'Titillium Web', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

#mesagge p {
  font-size: 18px;
  display: inline-block;
  vertical-align: top;
  width: 94%;
  line-height: 1.4;
}

#mesagge i {
  font-size: 40px;
  width: 5%;
  line-height: 1;
}

@media (max-width: 991px) and (min-width: 768px) {
  #mesagge i {
    width: 8%;
  }
  #mesagge p {
    width: 90%;
    vertical-align: top;
  }
}

@media (max-width: 767px) {
  #mesagge i {
    text-align: center !important;
    margin-bottom: 15px;
    display: block;
  }
  #mesagge p {
    text-align: center !important;
    width: 100%;
  }
}

/******COLORES******/

/*confirmacion - verde */
.info-confirm {
  background-color: #DFF0D8;
  color: #356635;
}
/*informacion - azul*/
.info-normal {
  background-color: #D9EDF7;
  color: #3A87AD;
}
/*advertencia - amarillo*/
.info-warning {
  background-color: #FCF8E3;
  color: #C09853;
}
/*error - rojo*/
.info-error {
  background-color: #F2DEDE;
  color: #B94A48;
}

