.help-tip {
    position: relative;
    float: right;
    text-align: center;
    background-color: rgba(52,56,145, 1);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 20px;
    cursor: default;
}

.help-tip:before {
    content:'?';
    font-weight: bold;
    color:#fff;
}

.help-tip:hover p {
    display: flow-root;
    transform-origin: 100% 0%;
    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;

}

.help-tip p {    /* The tooltip */
    display: none;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    width: 300px;
    position: absolute;
    border-radius: 3px;
    border: 2px solid #000000;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    right: -4px;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    z-index: 1000;
}

.help-tip p:before { /* The pointer of the tooltip */
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color: #1E2021;
    right:10px;
    top:-12px;
    z-index: 1000;
}

.help-tip p:after { /* Prevents the tooltip from being hidden */
    width:100%;
    height:40px;
    content:'';
    position: relative;
    top:-40px;
    left:0;
    z-index: 10000;
}

/* CSS animation */

@-webkit-keyframes fadeIn {
    0% {
        opacity:0;
        transform: scale(0.6);
    }

    100% {
        opacity:100%;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}