.ws-physics[data-flickering]{
    opacity: 0;
}
.ws-physics{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.ws-physics__content-new{
    position: relative;
    z-index: 1;

    width: 100%;
    height: 100%;
}
.ws-physics canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--background-color) !important;
}
.ws-physics .ws-physics__physics-elements{
    position: absolute;
    top: 0;
    left: 0;

    align-items: flex-start;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.ws-physics .ws-physics__physics-elements *{
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    -o-user-drag: none;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;

    white-space: nowrap;
}

.ws-physics .ws-elements-list{
    display: none;
}