.item-list {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.item-list > .box {
    display: inline-block;
    width: 227px;
    margin: 4px;
    box-sizing: border-box;
    border: 1px solid #e9ebee;
    border-radius: 2px;
    background: #fff;
    padding: 5px;
}

.item-list > .box > div#drop {
    cursor: move;
}

.item-list > .box > .img,
.item-list > .box > div > .img {
    width: 100%;
    height: 200px;
    background: #ccc;
    background-position: center top !important;
    background-size: cover !important;
    position: relative;
}

.item-list > .box > .active:after,
.item-list > .box > div > .active:after {
    content: 'done';
    font-family: "Material Icons";
    left: 0;
    right: 0;
    top: 50%;
    position: absolute;
    text-align: center;
    max-width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-top: -40px;
    font-size: 50px;
    background: #4CAF50;
    border-radius: 100%;
    color: #fff;
    line-height: 75px;
    border: 3px solid #FFF;
    box-sizing: border-box;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.item-list > .box > .img > span,
.item-list > .box > div > .img > span,
.item-list > .box > .img > a {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.51);
    left: 0;
    right: 0;
    padding: 5px;
    color: #fff;
    font-family: Prompt;
    font-weight: 300;
    text-decoration: none;
    margin: 0;
}

.item-list > .box > div > .img > .action {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    text-align: right;
}

.item-list > .box > .action,
.item-list > .box > div > .action {
    width: 100%;
    margin-top: 5px;
    padding: 5px;
    text-align: right;
    box-sizing: border-box;
}

.item-list > .box > div > .action > .name,
.item-list > .box > div > .action > .position {
    font-family: Prompt;
    font-weight: 300;
    text-align: center;
    font-size: 13px;
}