.title.special,
.title.special > .menu .refs,
.title.special > .menu .filter_container,
.title.special > .menu > .refs .ref,
.title.special > .menu > .filter_container .filter_mode,
.title.special > .menu > .credits_container,
.title.special > .menu > .credits_container .credit,
.markers_container.special,
.markers_container.special > .marker {
    background-color: #EEE;
    border-color: rgba(120, 4, 4, 0.8);
}

.title.special,
.title.special > .menu > .refs .ref,
.title.special > .menu > .refs .ref .timecode.focused:before,
.title.special > .menu > .credits_container .credit .name,
.markers_container.special > .marker > .content {
    color: #000;
}

.title.special > .menu {
    transition: box-shadow 800ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 0 #CB957A;
}

.title.special > .menu.current {
    box-shadow: inset 0px 0px 30px #CB957A;
}

.title.special > .menu > .refs .ref .ref_indices .timecode.focused,
.markers_container.special > .marker.current > .content {
    color: #000;
}

.title.special > .menu > .refs .ref.current .ref_indices .timecode.focused {
    color: rgba(120, 4, 4, 0.8);
}

.title.special > .menu.visible,

.title.special > .menu > .quotes_container .ref.focused,
.title.special > .menu > .references_container .ref.focused,

.title.special > .menu > .filter_container .filter_mode:hover,
.title.special > .menu > .filter_container .filter_content.focused,

.title.special > .menu > .credits_container .credit *.focused,

.markers_container.special > .marker:hover > .content {
    background-color: #CB957A;
}

.title.special > .menu > .refs .ref.current .source,
.title.special > .menu > .refs .ref.current .quote_byline,
.title.special > .menu > .refs .ref.current .ref_indices .timecode.focused:before {
    color: #C4C4C4;
}

.title.special > .menu > .refs .ref.current,
.markers_container.special > .marker > .progress .content {
    color: #FFF;
}

.title.special > .menu > .refs .ref.current,
.markers_container.special > .marker > .progress .content {
    background-color: rgb(203, 149, 122);
}

.markers_container.special > .marker:hover > .faded .content {
    background-color: rgba(203, 149, 122, 0.7);
}

.title.special > .menu > .refs .ref .source,
.title.special > .menu > .refs .ref .quote_byline,
.title.special > .menu > .filter_container .filter_content.off .text,
.title.special > .menu > .credits_container .credit .role {
    color: #3D3D3D;
}

/* Blackboard */
.title.special .filter_content.blackboard,
.markers_container.special .blackboard > .content,
.markers_container.special .off_blackboard > .content,
.markers_container.special > .marker.blackboard > .progress .content,
.markers_container.special > .marker:hover.blackboard > .faded .content {
    background-size: 12px 12px;
    background-position: center;
}

.title.special .filter_content.blackboard,
.markers_container.special .blackboard > .content {
    background-image: linear-gradient(to right , rgba(51, 153, 255, .16) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(51, 153, 255, .16) 1px, transparent 1px);
}

.markers_container.special .off_blackboard > .content {
    background-image: linear-gradient(to right , rgba(51, 153, 255, .08) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(51, 153, 255, .08) 1px, transparent 1px);
}

.markers_container.special > .marker.blackboard > .progress .content {
    background-image: linear-gradient(to right , rgba(255, 255, 255, .16) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, .16) 1px, transparent 1px);
}

.markers_container.special > .marker:hover.blackboard > .faded .content {
    background-image: linear-gradient(to right , rgba(0, 0, 0, .16) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0, 0, 0, .16) 1px, transparent 1px);
}

/* TODO(matt):
 *
 * .markers_container.special > marker.run
 */

@keyframes special_fade_mode {
    0% { color: #FFF; }
    100% { color: #000; }
}

@keyframes special_fade_text {
    0% { color: #000; }
    100% { color: #888; }
}

@keyframes special_fade_background {
    0% { background-color: rgba(246, 178, 26, 0.8);}
    100% { background-color: #EEE; }
}

/* TODO(matt): Get this to work! */
.title.special > .menu > .filter_container .filter_mode.responsible {
    animation-name: special_fade_mode;
}

.title.special .filter_content.responsible .text {
    animation-name: special_fade_text;
}

.title.special > .menu.filter.responsible,
.title.special .filter_content.responsible,
.title.special > .menu > .filter_container .filter_mode.responsible {
    animation-name: special_fade_background;
}