
.info-help {
    overflow: hidden;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #78BE20;
    color: #FFFFFF;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    cursor: help;
    margin: 0px 25px 0px 5px;
    opacity: 0.7;
}

.info-help:hover {
    opacity: 1;
}

.info-title-box {
    position: absolute;
    background-color: #FFFFFF;
    border: 2px solid #78BE20;
    padding: 12px;
    max-width: 350px;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    font-weight: normal;
    color: #78BE20;
    margin-top: 15px;
    margin-left: -20px;
    z-index: 100;
}

.info-title-box:before {
    content: "";
    display: block;
    position: absolute;
    top: -8px;
    left: 20px;
    width: 17px;
    height: 17px;
    background-color: #78BE20;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.info-title-box:after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 12px;
    width: 30px;
    height: 12px;
    background-color: #FFFFFF;
}