.abcweb-tooltip-icon {
    cursor: pointer;
    color: hsl(44, 38%, 42%);
    color: hsl(33, 42%, 71%);
    margin-left: 1ch;
}

.abcweb-tooltip-icon svg {
    width: 1.25em;
    height: 1.25em;
}

.abcweb-tooltip-trigger {
    cursor: pointer;
}

.abcweb-tooltip-content {}

.abcweb-tooltip-group {
    position: fixed;
    top: 0;
    right: -100%;
    width: clamp(320px, 100%, 20vw);
    width: 400px;
    height: 100%;
    padding: 0rem;
    padding-bottom: 3rem;
    background: white;
    border-left: 1px solid whitesmoke;
    z-index: 99999;
    transition: right 0.5s;
}

@media (max-width: 768px) {
    .abcweb-tooltip-group {
        width: clamp(320px, 50%, 768/2);
    }
}

@media (max-width: 425px) {
    .abcweb-tooltip-group {
        width: 100%;
    }
}

.abcweb-tooltip-group.active {
    right: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.abcweb-tooltip-group-title {
    /* padding: 1rem; */
    /* font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    background: hsl(44, 38%, 62%); */
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
}
.abcweb-tooltip-group-title i {
    margin-right: 10px;
    cursor: pointer;
}

.abcweb-tooltip-group-content {
    padding: 1rem;
    padding-bottom: 0rem;
}

.abcweb-tooltips-list {}

.abcweb-tooltip-item {
    padding: 1rem;
}

.abcweb-tooltip-header {
    /* font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem; */
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.abcweb-tooltip-content {
    margin-bottom: 1rem;
}

.abcweb-tooltip-content,
.abcweb-tooltip-group-content {
    line-height: 1.5;
    font-synthesis: none;
    font-smooth: always;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.abcweb-tooltip-cta {
    display: block;
    padding: 0.25rem 1rem;
    /* background: hsl(44, 38%, 62%); */
    border: 1px solid black;
    border-radius: 15px;
    color: black;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
}
.abcweb-tooltip-cta:hover {
    background: var(--alfa-grey);
}

.abcweb-tooltip-picture {
    margin-top: 1rem;
}

.abcweb-tooltip-picture,
.abcweb-tooltip-image {
    display: block;
    width: 100%;
}

.abcweb-tooltip-separator {
    display: block;
    width: 100%;
    height: 1px;
    background: #eee;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}

.abcweb-tooltip-item:last-of-type .abcweb-tooltip-separator {
    display: none;
}

.abcweb-tooltips-on-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.abcweb-tooltip-on-page-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#content .abcweb-tooltip-on-page-section-title {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    /* padding-bottom: 0.5rem; */
    /* border-bottom: 1px solid #e5e5e5; */
}

.abcweb-tooltip-on-page-section-content {
    line-height: 1.6;
    overflow-wrap: break-word;
}

.abcweb-tooltip-on-page-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.abcweb-tooltip-on-page-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 1.5rem;
    align-items: start;
    scroll-margin-top: 6rem;
}

.abcweb-tooltip-on-page-item:not(:has(.abcweb-tooltip-on-page-picture)) {
    grid-template-columns: 1fr;
}

@media (max-width: 768px) {
    .abcweb-tooltip-on-page-item {
        grid-template-columns: 1fr;
    }
}

.abcweb-tooltip-on-page-picture,
.abcweb-tooltip-on-page-image {
    display: block;
    width: 100%;
    height: auto;
}

.abcweb-tooltip-on-page-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#content .abcweb-tooltip-on-page-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0;
}

.abcweb-tooltip-on-page-content {
    line-height: 1.6;
    overflow-wrap: break-word;
}

.abcweb-tooltip-on-page-cta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 1.25rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    text-decoration: none;
    align-self: flex-start;
}
