.tooltip {
    position: relative;
    display: inline-block;
	letter-spacing:normal;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 100px;
    background-color: #e3000f;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 3px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -50px;
	font-size: 12px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 5px;
    border-style: solid;
    border-color: #e3000f transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}