/* =========================================
   OPRINDELIG OPSÆTNING
========================================= */

.pgp-a50a6990-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pgp-a50a6990-img-box {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid #eaeaea;
    border-radius: 4px;
    background: #fff;
}

.pgp-a50a6990-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pgp-a50a6990-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    line-height: 1;
    user-select: none;
}


/* =========================================
   TOOLTIP
========================================= */

/*
 * Tooltipen placeres fast i forhold til viewporten via JavaScript.
 * Derfor ændrer den ikke billedboksens oprindelige layout.
 */
.pgp-a50a6990-tooltip {
    position: fixed;
    z-index: 999999;

    display: none;

    max-width: 240px;
    padding: 7px 10px;

    border-radius: 5px;
    background: #222;
    color: #fff;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;

    pointer-events: none;

    transform: translate(-50%, calc(-100% - 10px));
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.pgp-a50a6990-tooltip.is-visible {
    display: block;
}

.pgp-a50a6990-tooltip::after {
    content: '';

    position: absolute;
    top: 100%;
    left: 50%;

    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #222 transparent transparent;

    transform: translateX(-50%);
}