.tooltipped {
    display: inline;
    cursor: help;
    position: relative;
    z-index: 99;
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased
}

.tooltipped i.tooltip-icon {
    display: inline-block;
    height: 20px;
    width: 20px;
    background: url(https://static.essent.nl/online/img/icon-tooltip-qmark.png) bottom center no-repeat;
    font-style: normal
}

.tooltipped .tooltip {
    background: #E6E7E8;
    bottom: 100%;
    color: #000;
    display: inline-block;
    right: -150px;
    margin-bottom: 15px;
    opacity: 0;
    padding: 5px 10px;
    pointer-events: none;
    position: absolute;
    width: 300px;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, .28);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, .28);
    -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, .28);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, .28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .28)
}

.tooltipped .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 999999
}

.tooltipped .tooltip:after {
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid #E6E7E8 10px;
    bottom: -10px;
    content: " ";
    height: 0;
    left: 50%;
    margin-left: -13px;
    position: absolute;
    width: 0;
    z-index: 999999
}

i.tooltip-icon:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px)
}

.lte8 .tooltipped .tooltip {
    display: none
}

.lte8 .tooltipped:hover .tooltip {
    display: block
}