/***************************** Required styles *****************************/

/**
 * For the correct positioning of the placeholder element, the dnd-list and
 * it's children must have position: relative
 */
.advancedDemo ul[dnd-list],
.advancedDemo ul[dnd-list] > li {
    position: relative;

}

/***************************** Dropzone Styling *****************************/

/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */
.advancedDemo .dropzone ul[dnd-list] {
    overflow-x: scroll;
    overflow-y: hidden;
    height: 119px;
    max-height: 133px;
    margin: 0;
    padding: 0;
    display: flex;
    max-width: 100%;
}

/**
 * The dnd-lists's child elements currently MUST have
 * position: relative. Otherwise we can not determine
 * whether the mouse pointer is in the upper or lower
 * half of the element we are dragging over. In other
 * browsers we can use event.offsetY for this.
 */
.advancedDemo .dropzone li {
    display: block;
}

/**
 * Reduce opacity of elements during the drag operation. This allows the user
 * to see where he is dropping his element, even if the element is huge. The
 * .dndDragging class is automatically set during the drag operation.
 */
.advancedDemo .dropzone .dndDragging {
    opacity: 1000%;
}

/**
 * The dndDraggingSource class will be applied to the source element of a drag
 * operation. It makes sense to hide it to give the user the feeling that he's
 * actually moving it. Note that the source element has also .dndDragging class.
 */
.advancedDemo .dropzone .dndDraggingSource {
    display: none;
}

/**
 * An element with .dndPlaceholder class will be added as child of the dnd-list
 * while the user is dragging over it.
 */
.advancedDemo .dropzone .dndPlaceholder {
    background-color: #737373 !important;
    min-height: 42px;
    display: block;
    position: relative;
}

.advancedDemo .dropzone .dndPlaceholderFixed {
    background-color: #737373 !important;
    min-height: 42px;
    display: block;
    position: fixed;
}

/***************************** Element type specific styles *****************************/

.advancedDemo .dropzone .itemlist {
    min-height: 175px !important;
    min-width: 10px;
}

.advancedDemo .dropzone .itemlist  > li {
    background-color: #111111;
    border: none;
    border-radius: .25em;
    color: #fff;
    float: left;
    font-weight: 700;
    margin: 5px;
    padding: 3px;
    text-align: center;
    width: 100px;
    min-height: 103px;
    min-width: 150px;
    max-height: 120px;
    max-width: 150px;
}

/*.advancedDemo .dropzone .container-element {
    overflow-x : scroll;
    overflow-y :hidden;
    width: 200px;
    max-height: 200px !important; 
}*/

/*este css e a parte de cima, onde estao os itens para serem adicionados a playlist*/
.itens{

    overflow-y: scroll;
    height: 260px;
    max-height: 222px;
    margin: 0;
    padding: 0;
    display: inline-block;
    max-width: 100%;
}

.itemTemplate {
    background-color: #111111;
    border: none;
    border-radius: .25em;
    color: #fff;
    float: left;
    font-weight: 700;
    margin: 5px;
    padding: 3px;
    text-align: center;
    width: 100px;
    min-height: 103px;
    min-width: 150px;
    max-height: 120px;
    max-width: 150px;
}

.textoDoItem{
    white-space: nowrap;
    width: 122px;
    /* max-width: 134px; */
    text-overflow: ellipsis;
    font-size: 10px;
    float: left;
    margin-bottom: 0px;
    overflow: hidden;
    text-align: center;
    margin-bottom: -13px;
}

.dimensoesDaImagem{
    margin-bottom: 0px;
    max-width:120px;
    max-height: 80px;
    min-width:120px; 
    min-height: 80px;
}

.dimensoesDoVideo{
    margin-bottom: -57px;
    max-width: 100px;
    /* max-height: 81px; */
    /* min-width: 120px; */
    width: 100px;
    /* min-height: 80px; */
    margin-left: -15px;
}

.toolTipStyle{
    font-size: 10px;
    min-height: 49px;
    min-width: 110px;
    text-align: left;
    margin-right: 81px;
    margin-top: -26px;
    pointer-events: none; 
}

.inputTempoPadrao{
    size: 93px;
    font-size: 10px;
    line-height: 10px;
    color: #000;

}

.filterBox {
    margin-top: 10px;
    max-width: 100%;
    min-width: 100%;

}

