/**
 * Background Mask - Styles
 */

.wml-background-mask {
    position: relative;
    width: 100%;
    padding: 5rem;
    text-align: center;
    overflow: hidden;
}

.wml-background-mask .wml-magic {
    position: absolute;
    top: -100%;
    left: 50%;
    background: 50% 50% no-repeat fixed;
    background-size: cover;
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 5;
}

/* Content above the magic circle */
.wml-background-mask>*:not(.wml-magic) {
    position: relative;
    z-index: 10;
}