#drags {
    position:relative;
    top:130px;
    width:900px;
    z-index: 10;
}

#drags > span {
    font-size:1.8em;
    height:50px;
    width:150px;
    line-height:50px;
    border-radius:10px;
    border:solid 2px #0d262e;
    display:inline-block;
    background:#2cabc3;
    margin:15px;
    box-sizing:border-box;
}

#drags > span:hover {
    cursor: pointer;
}

#drops {
    background:white;
    width:1000px;
    height:150px;
    position:relative;
    top:280px;
}

#drops > div {
    width:150px;
    height:50px;
    border:dashed 2px #0d262e;
    border-radius:10px;
    display:inline-block;
    box-sizing:border-box;
    margin:10px;
    vertical-align: middle;
}

#drops > div.dropped {
    background:#8bc53f;
    line-height:50px;
}

#drops > div > span {
    vertical-align:middle;
    margin:0;
    font-size:1.8em;
    color:#FFF;
}