.ngparasfxfixedpicture {
    width: 100%;
    position: relative;
}
.ngparasfxfixedpicture>div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip: rect(auto,auto,auto,auto);
}

.ngparasfxfixedpicture>div img {
    position: fixed;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0px,0px,0px);
    z-index: 1;
}

.ngparasfxfixedpicture>div .ngparasfxfixedpicture-caption {
    z-index: 1;
    position: absolute;
    width: 50%;
    text-decoration: none;
}

.ngparasfxfixedpicture>div .ngparasfxfixedpicture-caption p {
    margin: 0;
    padding: 0;
}

.ngparasfxfixedpicture>div .ngparasfxfixedpicture-caption-shadow {
    text-shadow: 0 0 4px rgba(0,0,0,0.5);
}

.ngparasfxfixedpicture>div .ngparasfxfixedpicture-caption-topleft {
    text-align: left;
    top: 30px;
    left: 30px;
}

.ngparasfxfixedpicture>div .ngparasfxfixedpicture-caption-topright {
    text-align: right;
    top: 30px;
    right: 30px;
}

.ngparasfxfixedpicture>div .ngparasfxfixedpicture-caption-bottomleft {
    text-align: left;
    bottom: 30px;
    left: 30px;
}

.ngparasfxfixedpicture>div .ngparasfxfixedpicture-caption-bottomright {
    text-align: right;
    bottom: 30px;
    right: 30px;
}


.ngparasfxfixedpicturetopshadow {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.ngparasfxfixedpicturebottomshadow {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 16px;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}