.op3-element[data-op3-element-type="numberblockitem"] {
    display: flex;
    flex-direction: column;
    min-width: 2em;
    min-height: 16px;
    max-width: 100%;

    // row template
    width: calc(100% / 3);

    &:only-child {
        width: 100%;
    }

    > .op3-column-content {
        margin: 0 $op-gutter;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 100%;
        position: relative;
        border-width: 0;
        transition: inherit;

        > [data-op3-element-container] > [data-op3-children] {
            display: flex;
            flex-direction: column;
        }
    }
}

.op3-element[data-op3-element-type="numberblock"] {
    > [data-op3-element-container] > [data-op3-children] {
        &[data-op3-block-arrangement="1"] [data-op3-element-type="numberblockitem"] {
            width: 100%;
        }
    }
}
