.multiselect_sortable_hide{
    position : absolute;
    top      : -9999999px;
}
.multiselect_sortable_content{
    float : left;
    width : 100%;
}
.multiselect_sortable_content_selection{
    float  : left;
    width  : calc(50% - 20px);
    margin : 10px;
}
.multiselect_sortable_content_selection .selection_title{
    float         : left;
    width         : 100%;
    margin-bottom : 10px;
}
.multiselect_sortable_content_selection .selection_content{
    float         : left;
    width         : 100%;
    height        : 300px;
    border        : 2px solid #059d1f;
    border-radius : 5px;
    overflow-y    : scroll;
    overflow-x    : hidden;
    margin        : 0;
    padding       : 0;
    box-sizing    : border-box;
}
.multiselect_sortable_content_selection .selection_content li{
    float         : left;
    width         : 100%;
    padding       : 10px;
    border-bottom : 1px solid #eeeeee;
    list-style    : none;
    box-sizing    : border-box;
    cursor        : pointer;
}
.multiselect_sortable_content_selection .selection_content li.disabled{
    opacity     : 0.5;
    background  : #f7f7f7;
    cursor      : no-drop;
    user-select : none;
}
.multiselect_sortable_content_selectable{
    float  : left;
    width  : calc(50% - 20px);
    margin : 10px;
}
.multiselect_sortable_content_selectable .selectable_title{
    float         : left;
    width         : 100%;
    margin-bottom : 10px;
}
.multiselect_sortable_content_selectable .selectable_content{
    float         : left;
    width         : 100%;
    height        : 300px;
    border        : 2px solid #ff7676;
    border-radius : 5px;
    overflow-y    : scroll;
    overflow-x    : hidden;
    margin        : 0;
    padding       : 0;
    box-sizing    : border-box;
}
.multiselect_sortable_content_selectable .selectable_content li{
    float         : left;
    width         : 100%;
    padding       : 10px;
    border-bottom : 1px solid #eeeeee;
    list-style    : none;
    box-sizing    : border-box;
    cursor        : pointer;
}
.multiselect_sortable_content_selectable .selectable_content li.disabled{
    opacity     : 0.5;
    background  : #f7f7f7;
    cursor      : no-drop;
    user-select : none;
}