.PanelDragDropHeader
{
    margin-bottom:15px;
}
.PanelDragDropContainer
{
    border: dashed 1px  #456fb0;
    box-sizing: border-box;
    padding:15px;
}
.PanelDragDropBody
{
    min-height:400px;
}
.ElementoDragDrop
{
    min-height: 20px;
    background-color : #456fb0;
    padding:6px;
    margin: 10px 0;
    color:white;
    border-radius: 3px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.ElementoDragDrop div
{
    width: 95%;
    float:left;
    text-overflow: ellipsis; 
    white-space: nowrap; 
    overflow: hidden;
}
.ElementoDragDropClose
{
    width: 5%;
    margin-top: 2px;
    float:right;
    text-align:center;
}
.ElementoDragDropClose:hover
{
    cursor:pointer;
}
.ElementoDragDrop:hover
{
    cursor :move;
}
.DragDropItemSelected
{
    z-index:9999;
    background-color : #2FAC66;
}
.OnRemoveElementoDragDrop
{
    background-color :#B24747;
}
.DragDropDisabled
{
    /*background-color:#B7B8BE;*/
    background-color:#898D9F;
    z-index:0;
}
.DragDropDisabled:hover{
    cursor:default;
}