.contentpaywall.paywall {
    position: relative;
}

.paywall__content {
    position: relative;
}

/* Fade with a gradient transparent the content if it is paywall protected */
.paywall__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}