.op3-element[data-op3-element-type="popoverlay"] {
    &.op3-focus::before {
        display: none;
    }

    .op3-popoverlay-controls {
        position: absolute;
        left: 50%;
        top: -60px;
        transform: translateX(-50%);
        display: flex;
        font-family: $op-font-family;
        white-space: nowrap;

        button {
            color: $op-light-grey;
            background: $op-white;
            border: none;
            font-size: 12px;
            text-transform: uppercase;
            margin: 0;
            display: block;
            padding: 10px 20px 9px;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
            outline: none;
            font-family: inherit;

            &::after {
                content: "";
                display: block;
                width: 1px;
                height: 80%;
                position: absolute;
                top: 10%;
                left: 100%;
                right: auto;
                background: $op-grey-border;
            }
            // border-right: 1px solid $op-grey-border;
            &:first-child {
                border-radius: 10px 0 0 10px;
            }

            &:last-child {
                border-radius: 0 10px 10px 0;
                &::after { display: none; }
            }

            .op3-icon {
                color: $op-blue;
                margin-right: 8px;
                font-size: 16px;
            }

            &:hover {
                color: $op-blue;
            }

            &.active {
                background: $op-blue;
                color: $op-white;
                cursor: default;
                .op3-icon { color: $op-white; }
            }
        }
    }

    & > #op3-designer-toolbar {
        display: none;
    }

    html.op3-draganddrop-dragging &.op3-draganddrop-drop-target {
        &::before,
        &::after {
            display: none !important;
        }

        [data-op3-children]::before {
            display: block !important;
            content: "append to popoverlay";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            line-height: 1.5em;
            font-size: 12px;
            background: transparentize($op-blue, 0.2);
            color: #fff;
            border: 0 none;
            text-align: center;
            z-index: 1;
            pointer-events: none;

            top: 50%;
            bottom: auto;
            height: 1.5em;
            width: auto;
            transform: translateY(-50%);
            font-family: "IBM Plex Sans", sans-serif;
        }
    }
}
