.p-SortableList-container {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    display: block;
}
.p-SortableList .ui-state-default a:focus {
    color: red;
}
.p-SortableList li {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 20px;
    cursor: move;
    box-shadow: none;
    padding: 4px 8px;
    border-radius: 2px;
}
.p-SortableList li.ui-state-highlight {
    background: rgba(37, 120, 207, 0.15) !important;
    border-color: rgba(37, 120, 207, 0.35) !important;
    box-shadow: none;
    min-height: 30px;
}
.p-SortableList li:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 120, 207, 0.25);
    border-color: #2578CF;
    border-style: solid;
}
.p-SortableList li:hover {
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, .25);
    border-style: solid;
    background-color: #FFF;
}
.p-SortableList li:last-child {
    margin-bottom: 0;
}
.p-SortableList {
    border: 1px solid;
    list-style-type: none;
    margin: 0;
    padding: 8px;
    display: block;
    float: left;
    width: 50%;
}
.p-SortableList--options {
    border-color: transparent;
    padding-right: 16px;
}
.p-SortableList--options li {
    border: 1px dotted #D0D0D0;
    background-color: #F8F8F8;
    color: #606060;
}
.p-SortableList--selections {
    min-height: 120px;
}
.p-SortableList--selections:empty:before {
    content: 'Drag your selections here.';
    padding: 40px 0;
    line-height: 20px;
    font-size: 12px;
    color: #707070;
    vertical-align: middle;
    display: block;
    text-align: center;
}
.p-SortableList--selections,
.p-SortableList--singular {
    border-color: #E0E0E0;
    background-color: #F0F0F0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .05) inset;
}
.p-SortableList--selections li,
.p-SortableList--singular li {
    border: 1px solid #D0D0D0;
    background-color: #FFF;
}