#tooltip{
display: inline-block;
position: relative; 
margin-top: 1rem; 
max-width: 300px;
}
.txt-orange{
color: #de5c26;
}
.txt-white{
color: #fff;
}
.txt-black{
color: #010101;
}
.txt-inherit{
color: inherit;
}
#tooltip img{
margin-bottom: 2px;
vertical-align: -10px;
width: 100px;
height: auto;
}
#tooltip .tiptool .tooltip-text::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #de5c26 transparent transparent transparent;
transform: translateX(-50%);
}
#tooltip .tiptool .tooltip-text{
display: inline-block;
font-family: "Open Sans", sans-serif;
font-size: 13px;
line-height: 1.25em;
visibility: hidden;
max-width: 300px;
background-color: #de5c26;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 10px;
position: absolute;
z-index: 1;
bottom: 145%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: 0.3s all ease-in-out;
transform: translate3d(0, 20px, 0);
}
#tooltip .tiptool .tooltip-text a{
color:#fff;
display: block;
}
#tooltip .tiptool:hover .tooltip-text,
#tooltip .tiptool:focus .tooltip-text {
visibility: visible;
opacity: 1;
transform: translate3d(0, 0, 0);
}
body #tooltip .relevant-link{
color:#fff;
}