/*override bootstrap helpblock */
.help-block {
    position: absolute;
    bottom: 42px;
    right: 0px;
    /*width: 300px; */
    background-color: rgb(204, 15, 24);
    color: white;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 3px 3px 10px #3d3d3d;
    /*margin: 5px;*/
    text-align: center;
    border: 2px solid white;
    z-index: 1;
}

.help-block:after, .help-block:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  .help-block:after {
    border-color: rgba(218, 54, 42, 0);
    border-top-color: rgb(204, 15, 24);
    border-width: 10px;
    margin-left: -10px;
  }
  .help-block:before {
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #FFFFFF;
    border-width: 13px;
    margin-left: -13px;
  }
  