.locked {
    pointer-events: none;
    position: relative;
    &:after {
        content: 'locked';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999999;
        background-color: $color;
        color: $color-bg;
        line-height: 100vh;
        text-align: center;
        opacity: .9;
        font-size: 100px;
    }
}