.tooltip {
	display: block;
	background: #444;
	border-radius: 3px; 
	max-width: 300px;
	width: 300px;
	position: absolute;
	padding:  12px 16px; 
	font-size: 11.3px;
	font-weight: 400;
	color: white;
	line-height: 22px;
	box-sizing: border-box;
	z-index: 10000;
	text-transform: none;
	visibility: hidden;
	outline: 0;
    border-radius:8px;
    text-align:left; 
    top:-100px;  
}
.tooltip a {
    color:#fff;
    cursor:pointer;
}
.tooltip a:hover {
    color:#fff;
    text-decoration:underline;
}

.tooltip-close {
	display: block;
	float: right;
	margin: -8px -10px 0 5px;
	text-decoration: none;
	color: white;
	font-size: 12px;
}

.tooltip .icon::before {
	display: block;
	content: "";
	width: 1em;
	height: 1em;
}
.tooltip .icon.icon_cross::before {
	content: "X";
}

.tooltip-arrow {
	width: 0;
	height: 0;
	position: absolute; 
	left: 146px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #444;
	margin-top: -6px;
	margin-left: -6px;
	bottom: -5.45px;
}

.tooltip-bottom .tooltip-arrow {
	top: 0.6px;
	left: 146px;
	border-top: none;
	border-bottom: 6px solid #444;
}

.tooltip-right .tooltip-arrow {
	top: 50%;
	left: 0;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-left: none;
	border-right: 7px solid #444;
}

.tooltip-left .tooltip-arrow {
	top: 50%;
	left: auto;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-left: none;
	border-right: 7px solid #444;
}


/*********   Custom skins   **********/

/* Dark opacity */
.tooltip.dark-opacity {
	background-color: rgba(102,102,102, 0.6);
}
.tooltip.dark-opacity .tooltip-arrow {
	border-top-color: rgba(102,102,102, 0.6);
}
.tooltip-bottom.dark-opacity .tooltip-arrow {
	border-bottom-color: rgba(102,102,102, 0.6);
}
.tooltip-left.dark-opacity .tooltip-arrow {
	border-left-color: rgba(102,102,102, 0.6);
	border-top-color: transparent;
}
.tooltip-right.dark-opacity .tooltip-arrow {
	border-right-color: rgba(102,102,102, 0.6);
	border-top-color: transparent;
}

/* Error (red) skin */
.tooltip.tooltip-error {
	background-color: #E4002B;
}
.tooltip.tooltip-error .tooltip-arrow {
	border-top-color: #E4002B;
}
.tooltip.tooltip-error.tooltip-bottom .tooltip-arrow {
	border-bottom-color: #E4002B;
}
.tooltip.tooltip-error.tooltip-left .tooltip-arrow {
	border-left-color: #E4002B;
	border-top-color: transparent;
}
.tooltip.tooltip-error.tooltip-right .tooltip-arrow {
	border-right-color: #E4002B;
	border-top-color: transparent;
}