.wp-block-group {
    &.is-style-blur {
        &.has-white-background-color {
            backdrop-filter: blur(20px);
            background-color: rgba(255, 255, 255, 0.13) !important;
        }
    }

    &.is-style-shadowed {
        overflow: hidden;
        -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.13);
        -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.13);
        box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.13);
        border-radius: 5px;
    }

    &.is-style-offset-label {
        width: auto;
        height: 50px;
        display: inline-flex;
        margin-top: -25px !important;
        margin-bottom: -25px !important;
        z-index: 5;
        position: absolute;
        left: auto;
        top: auto;
    }

    &.is-style-full-height {
        height: 100%;
    }
}