/* tooltip css */
span.tooltip {
    display: inline-block;
    position: relative;
    margin-left: 6px;
    background: #0068b3;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 11px;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
    font-style: normal;
    text-transform: none;
    padding: 0;
    top: -3px;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: #555555;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    line-height: 1.3em;
    position: absolute;
    z-index: 1;
}

.tooltip .tooltiptext {
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333 !important;
    color: #fff !important;
    padding: 6px 10px !important;
    border-radius: 4px !important;
    white-space: normal;
    width: 240px;
    font-size: 12px;
    z-index: 100;
    transition: 0.3s;
    font-weight: 400;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}

@media (max-width: 767px) {
    .tooltip .tooltiptext {
        left: 66%;
        transform: translateX(-42%);
    }
}

/* tooltip css */
