.tooltips {
    position: absolute;
    top: 36px;
    right: 10px;
    width: 335px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: default; 
}

.tooltips:before {
    content: '';
    position: absolute;
    top: 6px;
    right: 18px;
    width: 10px;
    height: 10px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #000; 
}

.tooltips span {
    border-radius: 5px;
    background: #000;
    display: block;
    margin-top: 10px;
    padding: 12px;
    color: #fff; 
}

.tooltips--show {
    opacity: 1;
    visibility: visible; 
}