﻿
.drag-drop {
    width: 100%;
    margin: 3em 0;
}
    .drag-drop caption {
        border: 2px dotted #e0e0e0;
        width: 100%;
        font-weight: bold;
        text-transform: uppercase;
        color: #e0e0e0;
        text-align: left;
        vertical-align: middle;
        padding: 1em 2em;
        margin-bottom: 10px;
        font-size: 2em;
        position: relative;
    }
.drag-drop td {

    padding: 1px 1em;

}
.drag-drop caption.over {
        color: #909090;
        border-color: #909090;
}
.drag-drop caption.drop {
        color: #FFFFFF;
        border-color: #FFFFFF;
}

.drag-drop div.progress_bar {
    width: 100%;
}
.drag-drop div.progress_bar div {
    background-color: #cccc99;
    color: #FFFFFF;
    width: 1px;
    text-align: left;
    padding: 0;
    margin: 0;
    height: 1.25em;
    vertical-align:middle;
}
.drag-drop div.progress_bar div.working {
    background-color: #cccc99;
}
.drag-drop div.progress_bar div.complete {
   background-color: #669966;
}
.drag-drop td {
    position: relative;
}

.drag-drop td i
{
    cursor: pointer;
    height: 16px;
    width: 16px;
}
.drag-drop td b 
{
    cursor: pointer;
    height: 16px;
    width: 16px;
    color: #AA0000;
}

.drag-drop td ul 
{
display: block;
position:absolute;
top:12px;
left:12px;
margin-left: -256px;
width: 256px;
height: auto;
padding: 8px;
background-color: #cccc99;
z-index: 10;
visibility:hidden;
text-align: left;
border-radius: 8px 0 8px 8px;
}

.drag-drop td ul li {
    list-style-type: none;
    padding-left: 1em;
}

.drag-drop td b + ul
{
    color: #FFFFFF;
    background-color: #AA0000;
    border: 2px solid #FFFFFF;
}

.drag-drop td i + ul
{
    color: #FFFFFF;
    background-color: #669966;
    border: 2px solid #FFFFFF;
}

.busy {
  display: inline-block;
  width: 16px;
  height: 16px;

  background-image: url('/Content/img/ajax-loader.gif');
  background-size: 16px 16px;
  background-repeat: no-repeat;

}

.drag-drop caption sup
{
    font-size: 0.65em;
    font-weight:100;
    text-transform: none;
}
.drag-drop caption sup label {
    font-weight: 100;
    cursor: pointer;
}

.drag-drop caption abbr {
    position: absolute;
    right: 0;
    top: 0.35em;
}

.drag-drop caption abbr input {
    background: none;
    right: 0;
    font-size: 0.65em;
    padding: 1.25em;
    border-left: 1px solid #e0e0e0;
    color: #e0e0e0;
}



