.manage-item {
    max-width: 955px;
}

.product h5.product-title {
    height: 45px;
    max-height: 45px;
    overflow: hidden;
}

.product h5.product-title:hover {
    overflow: visible;
}

.item-avatar {
    margin-left: 15px;
    height: 100px;
    width: 100px;
    text-align: center;
}

.item-avatar img {
    max-height: 100%;
    max-width: 100%;
}

.item-list .item-avatar {
    margin-left: 0;
    width:100%;
}

.manage-item-body {
    margin-top: 10px;
}

.featured-item {
    margin: 0;
    padding: 5px;
}

.featured-item-slot {
    width:100%;
    height: 60px;
    position: relative;
}

.ready-for-drop {
    background-color: rgba(85, 175, 252, 0.5);
}

.faded-during-drop {
    opacity: 0.5;
}

.drop-overlay {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    right: 15px;
    background-color: #55affc;
    opacity: 0.5;
}

#items-list {
    margin-top: 20px;
}

#items-list:hover .item[draggable=true]{
  filter: alpha(opacity=45);
  opacity: 0.45;
  -webkit-transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -ms-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out;
}

/*Fade out the particular DIV when user hover on that DIV*/
#manage-items-container .item[draggable=true]:hover{
  box-shadow: 3px 3px 15px #666;
  color: #fff;
  cursor: pointer;

  /*Opacity*/
  zoom: 1;
  filter: alpha(opacity=100);
  opacity: 1;
  cursor: move;
}

#save-featured-items {
    margin-right: 5px;
}

body.drag-active {
    background-color: #444 !important;
}
