.comment-tooltip {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-left: .35rem;
    vertical-align: middle;
    z-index: 2147483646;
    isolation: isolate;
}

.comment-tooltip-trigger {
    width: 24px !important;
    height: 24px !important;
    border: 0 !important;
    border-radius: 50%;
    background: #39bec6;
    color: var(--color11);
    cursor: help !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 26px !important;
    font-weight: 800;
    line-height: 1;
    padding: 0;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: #fff;
}

.comment-tooltip-trigger:focus-visible {
    outline: 2px solid #17364a;
    outline-offset: 4px;
}

.comment-tooltip-content {
    position: absolute;
    left: 50%;
    top: calc(100% + 0.7rem);
    z-index: 2147483647;
    width: min(20rem, 56vw);
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-50%, -0.25rem, 0);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.comment-tooltip:hover,
.comment-tooltip:focus-within {
    z-index: 2147483647;
}

.comment-tooltip-content.msg {
    padding: .85rem 1rem;
    border: 1px solid #d7e2e4;
    border-radius: .75rem;
    background: #fff;
    box-shadow: 0 .6rem 1.5rem rgba(18, 47, 64, .18);
    color: #122f40;
    font-size: .9rem;
    line-height: 1.35;
    font-weight: 400;
    text-align: left;
    white-space: normal;
}

.comment-tooltip-content::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -0.45rem;
    width: 0.8rem;
    height: 0.8rem;
    background: inherit;
    border-left: inherit;
    border-top: inherit;
    transform: translateX(-50%) rotate(45deg);
}

.comment-tooltip-content strong {
    display: block;
    margin: 0 0 .25rem;
    color: #122f40;
    font-size: .95rem;
    line-height: 1.2;
    font-weight: 600;
}

.comment-tooltip-content p {
    margin: 0;
    color: #122f40;
    font-size: .9rem;
    line-height: 1.35;
}

.comment-tooltip-content a {
    color: #122f40;
    font-weight: 700;
    text-decoration: underline;
}

.comment-tooltip:hover .comment-tooltip-content,
.comment-tooltip:focus-within .comment-tooltip-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0);
}

.productenvergelijker .hfd {
    overflow: visible;
}

.productenvergelijker .hfd p {
    overflow: visible;
}

.productenvergelijker .tooltipp,
.productenvergelijker .tt {
    display: none;
}

@media(min-width:992px){
    .comment-tooltip-trigger{
        font-size:28px !important;
        width:30px !important;
        height:30px !important;
    }
}

/* On small screens the trigger can sit anywhere in the row, so a
   trigger-centred tooltip overflows off either edge (see specs popups).
   JS (in the tooltip layout) positions the bubble below the trigger and
   clamps it to the viewport, setting inline left/width and the caret var.
   These rules just keep the transform/caret consistent with that. */
@media (max-width: 767px) {
    .comment-tooltip-content {
        right: auto;
        transform: translate3d(0, -0.25rem, 0);
        max-width: calc(100vw - 2rem);
    }

    .comment-tooltip:hover .comment-tooltip-content,
    .comment-tooltip:focus-within .comment-tooltip-content {
        transform: translate3d(0, 0, 0);
    }

    /* Caret follows the trigger via the JS-set custom property. */
    .comment-tooltip-content::before {
        left: var(--o2t-caret-left, 50%);
    }
}