#addPropertyToPlaylistModal .list {
    border: 1px solid #eee;
    margin-top: 15px;
}

#addPropertyToPlaylistModal .list .item {
    padding: 10px;
}

#addPropertyToPlaylistModal .list .item.empty {
    text-align: center;
}


#addPropertyToPlaylistModal .list .item:not(.empty) {
    cursor: pointer;
}

#addPropertyToPlaylistModal .list .item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

#addPropertyToPlaylistModal .list .item:after {
    content: '';
    float: right;
    width: 18px;
    height: 18px;
    background-image: url('/img/icons/check-blue.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: 0.2s;
}

#addPropertyToPlaylistModal .list .item.selected:after {
    opacity: 1;
}