﻿.dropZone {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 42;
}

.dropZone--right {
    left: 50%;
}

.dropZone.bo-dropzone-container.bo-drag-enter {
    font-family: "Material Icons";
    background-color: rgba(132, 132, 132, 0.3);
}

.dropZone.bo-drag-enter::before {
    position: absolute;
    font-size: 1.5em;
    line-height: 1em;
    font-family: "Material Icons";
    text-align: center;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -0.5em;
    color: #999;
}

.dropZone.bo-drag-enter::before {
    content: "\e5cb";
}

.dropZone--right.bo-drag-enter::before {
    content: "\e5cc";
}

.dropZone.bo-drag-dropzone-child {
    display: none;
}

.dropRow {
    position: relative;
    height: 5px;
    font-size: 12px;
    padding-left: 10px;
    border-radius: 3px;
    margin: 0 5px;
    color: transparent;
}

    .dropRow.bo-drag-enter {
        outline: 0;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 12px rgba(85, 85, 85, 0.8);
    }

        .dropRow.bo-drag-enter:not(.bo-drag-dropzone-child) {
            height: 40px;
            line-height: 40px;
            background-color: #ddd;
            border: 2px dashed #999;
            color: #aaa;
            margin-left: 20px;
            margin-right: 15px;
        }

    .dropRow.bo-drag-dropzone-child {
        overflow: hidden;
        color: transparent;
        background-color: transparent;
        box-shadow: none;
        pointer-events: none;
    }

.widget-wrapper.bo-dropzone-hover.bo-drag-enter {
    background-color: rgba(132, 132, 132, 0.3);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 12px rgba(85, 85, 85, 0.8);
    line-height: 40px;
    background-color: #ddd;
    border: 2px dashed #999;
    color: #aaa;
}