﻿.tooltip {
    position: absolute;
    width: 90%;
    border: 1px solid #9b9b9b;
    left: 5%;
    font-size: x-small;
    z-index: 998;
    background-color: white;
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
    bottom: 58px;
}

.arrow {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
        
    right: 10%;
    bottom: 52px;

    border-bottom: 1px solid #9b9b9b;
    border-right: 1px solid #9b9b9b;
    background-color: white;

    z-index: 999;
       
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.hiddenTooltip {
    z-index: -10;
    opacity: 0;
}

.questionmark{
    position: absolute;
    top: 2px;
    right: 2px;
    height: 15px;
}