#entityWrapper {
    width:100vw;
    margin: 65px 10px 65px 10px;
}

    #entityWrapper p {
        padding-left: 30px;
    }

#entitiesWithoutPosition {
    list-style: none !important;
    padding: 0 0 0 30px;
    margin: 0;
    overflow: hidden;
}

#entitiesWithoutPosition li {
    line-height: 20px;
    float: left;
    padding: 0 20px;
}

#entitiesWithoutPosition:last-of-type li:not(:last-child) {
    border-right: solid 1px #000000;
}

#entityList {
    width: 90px;
    padding: 10px 0 0 10px;
    margin-right: 20px;
    float: left;
    background-color: #E9E9E9;
}

#entityList ul {
    display: inline;
    list-style-type: none;
}

#entityList ul li {
    float: left;
    margin-right: 90px;
    margin-bottom: 90px;
}

#entityList .grey {
    background-color: #878787;
}


#entityGrid {
    position: relative;
    float: left;
}

.gridlines {
    display: none;
    position: absolute;
    background-color: #ccc;
}

.drag-item, .outside-drag-item {
    position: absolute;
    background: #13588f;
    color: #fff;
    font-size: 13px;
    width: 80px;
    height: 80px;
    cursor: move;
    text-align: center;
    word-wrap: break-word;
}

.drag-item:hover, .outside-drag-item:hover {
    background: #2f84b7;
    -o-transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    /* ...and now for the proper property */
    transition: .4s;
}

.entitiesGrid {
    border: solid 1px #ccc;
    margin: 30px 0 0 30px;
}

.entitiesGrid td {
    border: solid 1px #ccc;
    /*width: 70px;
    height: 70px;*/
    width: 90px;
    height: 90px;
    position: relative;
}

.entitiesGrid td img {
    position: absolute;
    bottom: 5px;
    left: 50%;
    margin-left: -10px;
}

.entitiesGrid td img:hover {
    cursor: pointer;
}

.entitiesGrid td ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 66px;
    overflow: scroll;
    overflow-x: hidden;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 90px;
}

.entitiesGrid td ul li {
    background-image: linear-gradient(to right, #2A66A0, #709BC7);
    color: #fff;
    padding: 2px;
    margin: 5px 0;
    font-size: 13px;
    border-radius: 2px;
}

.entitiesGrid td ul li:hover {
    cursor: url("../images/icons/cross_small.png"), auto;
}


#dialog-confirm {
    display: none;
}

#lsEntities {
    list-style: none;
    padding: 0;
    margin: 0;
}

#lsEntities li {
    text-decoration: underline;
    color: #0c588f;
    margin: 8px 0;
}

#lsEntities li:hover {
    cursor: pointer;
}

#lsEntities .nohover {
    text-decoration: none;
    color: #f00;
    font-weight: bold;
}

#lsEntities .nohover:hover {
    cursor: auto;
}