﻿/* tooltips.css */
.toolTip-picture img, .toolTip-thumbnail img {
    border:2px solid #000;
}
.toolTip-picture ,
.toolTip-thumbnail  {
}
.toolTip-caption {
    position:relative;
    margin-top:-20px;
}
.toolTip-text, .toolTip-caption {
	width:160px;
	margin-left:10px;
	font : 11px Arial, Helvetica, sans-serif;
	border:4px solid #FFF;
	box-shadow: 1px 1px 5px #C8C8C8;
	background-color: #307cc8;
	color:#FFF;
	border-radius: 10px;
	padding:6px;
	line-height:14px;
}
.toolTip-text span,
.toolTip-caption span {
    display:block;
}

.toolTip-mobile {
	display: none !important;
}

@media only screen and (max-width: 1024px) {
.toolTip {
	border-style: dashed;
	border-width: 0;
}
.toolTip-mobile {
	display: inline !important;
	left: 20% !important;
    z-index: 1;
    width: 60%;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
	font-size: 13px;
	line-height: 28px;
}
.toolTip-mobile a {
	color: inherit;
}
.toolTip-mobile span {
	line-height: normal;
    vertical-align: middle;
    display: inline-block;
}
.toolTip-text, .toolTip-caption {
	font-family: "Ubuntu", sans-serif;
	font-size : 11px;
    border: 1px solid #036;
    box-shadow: 1px 1px 5px #C8C8C8;
    background-color: #fff;
    padding: 10px 5px;
	border-radius: initial;
	color: inherit;
}
.close_toolTip {
    position: absolute;
    top: -22px;
    right: -22px;
    background-color: #003366;
    border: 2px solid #fff;
    color: #ffffff;
    width: 35px;
    line-height: 35px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    font-family: verdana;
}
}