﻿.tooltip {
    will-change: top, left;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    background: #FFFFFF;
    color: #0166FF;
    font-weight: bold;
    font-size: 1.125rem;
    padding: .5rem 2.5rem;
    z-index: 1;
    border-radius: 1.25rem;
    transform: translate(-50%, -140%);
    box-shadow: 0 10px 26px 3px rgb(29 118 255 / 21%);
    transition: all 0.5s ease-in-out;
    opacity: 1;
}

    .tooltip:after {
        content: "";
        border-left: 0.625rem solid transparent;
        border-right: 0.625rem solid transparent;
        border-top: 0.5rem solid #FFFFFF;
        position: absolute;
        bottom: -0.4375rem;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.5s ease-in-out;
    }

@media screen and (max-width: 767px) {
    .tooltip {
        display: none;
    }
}


body.scs-edit-mode .accordeon-row-content {
    display: inline;
}


.accordeon-row.open .accordeon-row-title div.scs-title-text {
    color: #EC0000 !important;
}
