@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600);

/* Pure CSS3 tooltips */

.tip-wrapper {
	/*background-image: url(../tool.png);*/
	background-size: contain;
	background-repeat: no-repeat;
	/*  background: #ececec;*/
	cursor: help;
	font-family: "open sans", sans-serif;
	/*  margin: 100px 75px 10px 75px;*/
/*  padding: 15px 20px;
	margin-top: 30px;*/
	font-size: 12px;
    font-weight: 600;
    text-shadow: 1px 0px 1px #43A6AF;
	line-height: 15px;
	position: relative;
	text-align: center;
	width: 21px;
	height: 21px;
	-webkit-transform: translateZ(0); /* webkit flicker fix */
	-webkit-font-smoothing: antialiased; /* webkit text rendering fix */
	position: relative;     
	/*left: 75px;
    top: -138px;*/
    z-index: 1;
}

.tip-wrapper .tip-info {
	    background: rgba(64, 192, 203, 0.93);
    /* bottom: 100%; */
    color: #fff;
    display: block;
       left: 30px;
    top: -7px;
    border-radius: 4px;
    height: auto;
    margin-bottom: 15px;
    opacity: 0;
    padding: 5px;
    pointer-events: none;
    position: absolute;
    width: 150px;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	-ms-transform: translateY(10px);
	-o-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-ms-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	/*-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	-moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	-ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	-o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);*/
}

/* This bridges the gap so you can mouse into the tip-info without it disappearing */
.tip-wrapper .tip-info:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}  

/* CSS Triangles - see Trevor's post */
.tip-wrapper .tip-info:after {
 border-left: solid rgba(255, 52, 52, 0) 8px;
    border-right: solid rgba(64, 192, 203, 0.93) 8px;
    border-top: solid rgba(25, 61, 72, 0) 8px;
    border-bottom: solid rgba(0, 0, 0, 0) 8px;
    bottom: -10px;
    content: " ";
    height: 0;
    left: -3px;
    top: 8px;
    margin-left: -13px;
    position: absolute;
    width: 0;
}
  
.tip-wrapper:hover .tip-info {
	display: block;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
     -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
       -o-transform: translateY(0px);
          transform: translateY(0px);
}

/* IE can just show/hide with no transition */
.lte8 .tip-wrapper .tip-info {
  display: none;
}

.lte8 .tip-wrapper:hover .tip-info {
  display: block;
}