/* 
    Created on : 08/05/2017, 09:59:55
    Author     : Wilson
*/

#sortableOrigem{
    list-style: none;
    margin-left: 0;
    padding-left: 1em;
    width: 100%; 
    height: 300px;
    overflow: auto;
}

#sortableOrigem li {
    background: #3498db;
    background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
    background-image: -moz-linear-gradient(top, #3498db, #2980b9);
    background-image: -ms-linear-gradient(top, #3498db, #2980b9);
    background-image: -o-linear-gradient(top, #3498db, #2980b9);
    background-image: linear-gradient(to bottom, #3498db, #2980b9);
    text-shadow: 2px 1px 0px #000000;
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    -webkit-box-shadow: 5px 5px 3px #000000;
    -moz-box-shadow: 5px 5px 3px #000000;
    box-shadow: 5px 5px 3px #000000;
    font-family: Arial;
    color: #ffffff;
    font-size: 14px;
    padding: 5px 10px 5px 10px;
    text-decoration: none;
    margin-bottom: inherit;
}
#sortableOrigem li span{
    margin-right: 8px;
}

#sortableOrigem li i{
    margin-top: 4px;
    float: right;
}

#sortableOrigem li i:hover{
    color: black;
}

#sortableDestino{
    list-style: none;
    margin-left: 0;
    padding-left: 1em;
    width: 100%; 
    height: 300px;
    overflow: auto;
}

#sortableDestino li {
    background: red;
    text-shadow: 2px 1px 0px #000000;
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    -webkit-box-shadow: 5px 5px 3px #000000;
    -moz-box-shadow: 5px 5px 3px #000000;
    box-shadow: 5px 5px 3px #000000;
    font-family: Arial;
    color: #ffffff;
    font-size: 14px;
    padding: 5px 10px 5px 10px;
    text-decoration: none;
    margin-bottom: inherit;
}
#sortableDestino li span{
    margin-right: 8px;
}

#sortableDestino li i{
    margin-top: 4px;
    float: right;
}

#sortableDestino li i:hover{
    color: black;
}