﻿/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
.tip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
.tip {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
      opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:    
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:         
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
.list-icons ul li:hover>.tip {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tip:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tip {
  z-index: 1000;
  padding: 20px;
  width: 430px;
  background-color: #123160;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #fff;
  font-size: 14px;
  line-height: normal;
  font-family: 'Open Sans';
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 2px solid transparent;
  -webkit-border-image: url('../images/gold_line.jpg') 30 round; /* Safari 3.1-5 */
  -o-border-image: url('../images/gold_line.jpg') 30 round; /* Opera 11-12.1 */
  border-image: url('../images/gold_line.jpg') 30 round;
  -webkit-box-shadow: -2px 2px 6px 0px rgba(0,0,0,0.54);
  -moz-box-shadow: -2px 2px 6px 0px rgba(0,0,0,0.54);
  box-shadow: -2px 2px 6px 0px rgba(0,0,0,0.54);
}
.tip ul li {
	font-size:14px;
	line-height:normal;
}
.list-icons .tip ul li:before {
	font-size:15px;
}
.list-icons .tip ul li {
	padding-left:22px;
}
/* Directions */

/* Bottom */
.tip:before,
.tip:after {
  top: 0;
  bottom: auto;
  left: 20px;
  content:'';
  position:absolute;
}

.tip:before {
  margin-top: -13px;
  margin-left: 0;
  margin-bottom: 0;
  border-top-color: transparent;
  background: url('../images/tcyk.png') no-repeat;
  width: 21px;
  height: 9px;
}