.barCursor { /* Defines the color of the bar background when a bar is played */
    opacity: 0.25;
    background:#FFF200;
}

.selectionWrapper div { /* Defines the color of the selection background */
    opacity: 0.1;
    background:#4040FF;
}

.beatCursor { /* Defines the beat cursor */
    opacity: 0.75;
    background:#4040FF;
}

.atHighlight * { /* Defines the color of the music symbols when they are being played (svg) */
    fill: #0078ff;
}


/* Track selector */
#trackList li {
    padding: 5px;
}
#trackList .btn {
    background: none;
    outline: none;
}
#trackList .solo.checked {
    background: #426d9d;
    color: #FFF;
}
#trackList .mute.checked {
    background: #c9302c;
    color: #FFF;
}
#trackList .title {
    cursor: pointer;
}
#trackList .title:hover {
    color: #426d9d;
}
#trackList .btn-group {
}

#trackList .slider-handle {
    -moz-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
}
