.tool-tip-panel {
	position: absolute;
	display: none;
    line-height: 20px;
    word-break: break-all;
}
.tool-tip-animation {
    z-index: 1040;
    -webkit-animation-name: 'uptop'; 
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}
.tool-tip-text {
	/* max-width: 200px;
	padding: 4px 8px;
	color: #fff;
	text-align: left;
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.9);
    border-radius: 4px; */
    max-width: 220px;
    padding: 5px 8px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 4px;
    font-size: 13px;
}
.tool-tip-arrow,
.tool-tip-arrow-outter {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
/* top */
.tool-tip-panel.top .tool-tip-arrow.big {
    bottom: -13px;
    margin-left: -7px;
    border-width: 13px 7px 0;
}
.tool-tip-panel.top .tool-tip-arrow {
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: rgba(0, 0, 0, 0.9);
}
.tool-tip-panel.top .tool-tip-arrow-outter.big {
    bottom: -13px;
    margin-left: -7px;
    border-width: 13px 7px 0;
}
.tool-tip-panel.top .tool-tip-arrow-outter {
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: rgba(0, 0, 0, 0.9);
}
/* left */
.tool-tip-panel.left .tool-tip-arrow {
	top: 50%;
    right: -5px;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: rgba(0, 0, 0, 0.9);
}
.tool-tip-panel.left .tool-tip-arrow.big {
	top: 50%;
    right: -13px;
    margin-top: -7px;
    border-width: 7px 0 7px 13px;
    border-left-color: rgba(0, 0, 0, 0.9);
}
.tool-tip-panel.left .tool-tip-arrow-outter {
    top: 50%;
    right: -5px;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: rgba(0, 0, 0, 0.9);
}
.tool-tip-panel.left .tool-tip-arrow-outter.big {
    top: 50%;
    right: -13px;
    margin-top: -7px;
    border-width: 7px 0 7px 13px;
    border-left-color: rgba(0, 0, 0, 0.9);
}
/* right */
.tool-tip-panel.right .tool-tip-arrow {
	top: 50%;
	left: -5px;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-right-color: rgba(0, 0, 0, 0.9);
}
.tool-tip-panel.right .tool-tip-arrow.big {
    top: 50%;
    left: -13px;
    margin-top: -7px;
    border-width: 7px 13px 7px 0;
    border-right-color: rgba(0, 0, 0, 0.9);
}
.tool-tip-panel.right .tool-tip-arrow-outter {
    top: 50%;
    left: -5px;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: rgba(0, 0, 0, 0.9);
}
.tool-tip-panel.right .tool-tip-arrow-outter.big {
    top: 50%;
    left: -13px;
    margin-top: -7px;
    border-width: 7px 13px 7px 0;
    border-right-color: rgba(0, 0, 0, 0.9);
}
/* bottom */
.tool-tip-panel.bottom .tool-tip-arrow {
	top: -5px;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: rgba(0, 0, 0, 0.9);
}
.tool-tip-panel.bottom .tool-tip-arrow-outter {
    top: -5px;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: rgba(0, 0, 0, 0.9);
}

@-webkit-keyframes uptop {
	0% {
		margin-top: 0px;
	}
    25% {
       	margin-top: 5px;
    }
    50% {
      	margin-top: 0px;
    }
    75% {
      	margin-top: -5px;
    }
    100% {
    	margin-top: 0;
    }
}
.tool-tip-panel.max-none > .tool-tip-text {
    max-width: none;
}
.tool-tip-panel.error-tip > .tool-tip-text {
    background: #fdd;
    border: 1px solid #E67070;
    color: #b94a48;
    font-size: 14px;
    border-radius: 3px;
    padding: 6px 23px 6px 10px;
}
.tool-tip-panel.error-tip .tool-tip-arrow {
    border-right-color: #fdd;
    top: 50%;
    left: -8px;
    margin-top: -8px;
    border-width: 8px 9px 8px 0;
}
.tool-tip-arrow-outter {
    display: none;
}
.tool-tip-panel.error-tip .tool-tip-arrow-outter {
    display: block;
    border-right-color: #E67070;
    top: 50%;
    left: -9px;
    margin-top: -9px;
    border-width: 9px 9px 9px 0;
}


.tool-tip-panel.error-tip.left .tool-tip-arrow {
    border-left-color: #fdd;
    right: -8px;
    border-width: 8px 0px 8px 9px;
    left: auto;
}
.tool-tip-panel.error-tip.left .tool-tip-arrow-outter {
    border-left-color: #E67070;
    right: -9px;
    left: auto;
    border-width: 9px 0px 9px 9px;
}