/*!
 * jQuery UI Tooltip 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/tooltip/#theming
 */
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	
	
}



body .ui-tooltip {
	border-width: 2px;
	font-family:'Lato';
	color:#e65100;
}




.ui-tooltipno
{
    text-align: center;
    color: #fff;
    background: #111;
    position: absolute;
    z-index: 100;
    padding: 15px;
}
 
    .ui-tooltipno:after /* triangle decoration */
    {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #fff;
        content: '';
        position: absolute;
        left: 20%;
        top:-10px;
        transform: rotate(180deg);
        bottom: -10px;
        margin-left: -10px;
        -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);



    }
 
        .ui-tooltip.top:after
        {
            border-top-color: transparent;
            border-bottom: 10px solid #fff;
            top: auto;
            bottom: -20px;
        }
 
        .ui-tooltip.left:after
        {
            left: 10px;
            margin: 0;
        }
 
        .ui-tooltip.right:after
        {
            right: 10px;
            left: auto;
            margin: 0;
        }