/*!
 * jQuery UI Tooltip 1.11.4
 * 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: 1em;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    background-color: white;
    border-radius: 1em;
    border: 1px solid #ccc;
}
.arrow:after {
    background-color: white;
    border: 1px solid #ccc;
}

.arrow {
    overflow: hidden;
    position: absolute;
} 
.arrow:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.arrow.left {
    left: -8px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 30px;
}
.arrow.left:after {
    left: 5px;
    top: 0px;
}
.ui-helper-hidden-accessible {
    display:none;
}



