/* SELECTOR (FILTER INTERFACE) */

.selector {
    display: flex;
    width:100%;
}
.selector-available{
    width:40%;

}
.selector-chooser{
    width: 20%;
    text-align: center;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.selector-chosen{
    width:40%
}
.filtered{
    width:100%;
}


.stacked .selector-add,
.stacked .selector-remove {
    background: url(/static/img/right-icon.svg) center center no-repeat;
    background-size: 12px 12px !important;
    padding: .5rem 1rem;
    border: 1px solid hsl(0 0% calc(11.4% + 67%));
    text-indent: -3000px;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: .3125rem;
    margin-bottom: 2rem;
    display: block;
    margin-left: calc(50% - 15px);
}


.stacked .selector-remove {
    background: url(/static/img/left-icon.svg) center center no-repeat;
  
}


