@charset "UTF-8";
/* CSS Document */

.tooltip-item {
  background: white;
  display: inline-block;
  position: relative;
  text-align: left;
}
  .tooltip-item p {
    color: #333;
    line-height: 1.5em;
    margin: 0; }
  /*.tooltip-item:focus, .tooltip-item:hover .tooltip {
    opacity: 1;
    visibility: visible; }*/
  .tooltip-item .tooltip {
    position: absolute;
    right: 0;
    bottom: 2em;
    left: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: rgba(0,0,0,0.9);
    box-shadow: 0 2px 3px 0px rgba(0,0,0,.25);
    border-radius: 3px;
    background-image: url(../images/close-icon.svg);
    background-size: 30px;
  background-repeat: no-repeat;
  background-position: right top;
    color: #fff;
    font-size: 0.9em;
    line-height: 1.5em;
    margin: 0 auto;
    width:12em;
    max-width: 16em;
    opacity: 0;
    padding: 25px;
    text-align: left;
    visibility: hidden;
    z-index: 10; }
    .tooltip-item .tooltip p {
      margin-bottom: 0;
      font-size:0.9em;
      color: #fff; }
/*    .tooltip-item .tooltip:after {
      position: absolute;
      right: 0;
      left: 0;
      border: 8px solid transparent;
      bottom: -1.3em;
      color: white;
      content: '▼';
      font-size: 1.4em;
      margin-left: 0px;
      text-align: left;
      text-shadow: 0 2px 2px silver; }*/

    .tooltip-item .tooltip:after /* triangle decoration */
    {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #111;
        content: '';
        position: absolute;
        left: 12.5%;
        bottom: -10px;
        margin-left: -10px;
    }



 
