#formError {
    display: none;
    position: absolute;
    background-color: #B60D08;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    color: #fff;
    width: 220px;
    z-index: 3000;
  }
  #formError .triangle {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #B60D08;
    border-top: none;
    position: absolute;
    top: -11px;
    left: 40%;
}