﻿@import url(https://fonts.googleapis.com/css?family=Roboto:100,400);



.tooltiper {
    position: relative;  /* makes the item go behind the tooltip */
}


    .tooltiper:hover {
        -webkit-animation-play-state: paused;
    }

    .tooltiper:hover .info {
        visibility: visible;
    }


.info {
    width: 600px;
    height: 160px;
    padding: 10px;
    background: rgba(255,255,255,1);
    border-radius: 3px;
    display:inline-block;
    position: absolute;
    visibility: hidden;
    z-index: 99;
    margin: -20px 0 0 20px;
    box-shadow: 0 0 50px 0 rgba(0,0,0,.5);
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 100 ;
    font-size: 20px ;
    margin: 0 0 5px 0;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.arrow {
    position: absolute;
    margin: -45px 0 0 -20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
}
