.special-text {
    position: relative;
    cursor: pointer;
}

.tooltip * {
    color: black;
}
.tooltip {
    font-size: 14px;
    position: absolute;
    width: 235px;
    min-height: 30px;
    padding: 12px 16px;
    /*box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);*/
    filter: drop-shadow(0px 3px 11px rgba(4, 78, 129, 0.161));
    border: 1px solid #1E94FF;
    border-radius: 8px;
    /* Hide the tooltip by default */
    /* Prettify */
    text-align: left;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: initial;
    -moz-transition-delay: initial;
    transition-delay: initial;
    /* The above are Bourbon mixins equivalent to the following:
    -webkit-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
    -ms-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
    */
    display: none;
    z-index: 999;
    background: #ffffff;
    margin: -85px 0 0 -106px;

}

/* The bordered part of the triangle */
.tooltip::before,
.tooltip::after {
    content: "";
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    z-index: 999;
}

.tooltip::before {
    border-top: 10px solid #1E94FF;
    margin-top: 1px;
}

/* The white fill of the triangle */
.tooltip::after {
    border-top: 10px solid white;
    margin-top: -1px;
}

.affiliates .tooltip p
{
    margin:0;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    display: block;
    /*align-items: center;*/
    color: #353F4B;
    padding:3px;
}

.affiliates .tooltip h3
{
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    padding:3px;
    color: #353F4B;
}

.affiliates .tooltip p>strong {
    font-weight: 600;
}