/*!
 * jQuery.tipsy
 * Copyright (c) 2014 CreativeDream
 * Version: 1.0 (18-11-2014)
*/
.tipsy {
    position: absolute;
    top: 0;
    left: 0;
	padding: 2px 10px 4px 10px;
    font-family: 'DIN Next LT Arabic';
    font-size: 14px;
    line-height: normal;
    border-radius: 6px;
    background-color: #F8F9FA;
    color: #737F8A;
    box-shadow: 0px 15px 30px 0px rgba(49,51,53,0.5);
    z-index: 9999;
    transition: all 0s;
}

.tipsy:before {
    position: absolute;
    bottom: -5px;
    left: 5px;
    display: inline-block;
    content: '';
    border-right: 5px solid transparent;
    border-top: 5px solid #F8F9FA;
    border-bottom: 0 solid #F8F9FA;
    border-left: 5px solid transparent;
}

.tipsy.arrow-top:before {
    bottom: auto;
    top: -5px;
    border-top-width: 0;
    border-bottom-width: 5px;
}

.tipsy.arrow-bottom:before {
    bottom: -5px;
    top: auto;
    border-top-width: 5px;
    border-bottom-width: 0;
}

.tipsy.arrow-left:before {
    left: 5px;
    right: auto;
}

.tipsy.arrow-center:before {
    left: 50%;
    right: auto;
    margin-left: -5px;
}

.tipsy.arrow-right:before {
    right: 5px;
    left: auto;
}

.tipsy.arrow-side-left:before {
    top: 50%;
    bottom: auto;
    left: 0;
    right: auto;
    margin-top: -5px;
    margin-left: -5px;
    border-right-color: #F8F9FA;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 0;
}

.tipsy.arrow-side-right:before {
    top: 50%;
    bottom: auto;
    right: 0;
    left: auto;
    margin-top: -5px;
    margin-right: -5px;
    border-left-color: #F8F9FA;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 0;
}
