.tooltip-test {
position: relative;
text-decoration: underline dotted;
cursor: help;
}
.tooltip-test-text {
position: absolute;
z-index: 9999;
display: none;
min-width: 400px;
bottom: -850%;
left: 50%;
border: 1px solid #565553;
background: #0E0E0F;
padding: 1em;
}
.tooltip-test:hover .tooltip-test-text {
display: inherit;
}
.tooltip-test-text:hover {
cursor: default;
}