/* Tooltip container */
.tooltip {
    position: relative;
	display: inline-block;

}

/* Tooltip text */
.tooltip .tooltiptext {
	position: absolute;
	border: solid 1px #afafaf;
	background: #e7e0da;
	text-align: center;
	visibility: hidden;
	padding: 10px;
	width: 100px;
	font-family: Calibri;
	font-size: 10px;
	text-transform: uppercase;
	line-height: 1;
    opacity: 0;
    transition: opacity 0.3s;
left:0;
}


/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
	opacity: 1;
	z-index: 99;
}


.AwardSymbol {
    height: 50px;
    border-radius: 40%;
    margin: 0 -1px 0px 0px;
        margin-top: 0px;
        margin-left: 0px;
  	border: solid 5px #e7e0da;
	background: #d0cac3;
    padding: 5px;
    margin-left: 3px;
    margin-top: 3px;

}