/* Player controls and timer bar styles */

/* Controls section */
#controls {
    flex-shrink: 0;
}

#controls .activeItem {
    font-size: .75em;
    color: #2eace9;
}

/* Timer bar styles */
#controls .timerBar-outer {
    width: 100%;
    height: 8px;
    background-color: #909090;
    margin: 5px 0;
}

#controls .timerBar-inner {
    height: 8px;
    background-color: #2eace9;
    float: left;
}

#controls .timerBar-handle {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    background-color: #909090;
    position: relative;
    top: 4px;
    float: left;
    margin: -7px;
}

/* Time display */
.time {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

#controls .time {
    float: right;
    margin: 5px;
    font-size: .75em;
}

#controls .time .current {
    color: #2eace9;
}

.speed {
    font-weight: bold;
}

/* Playback controls */
#controls playback-controls {
    display: block;
    margin-top: 5px;
    color: #3c3a3b;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

#controls playback-controls .speed {
    display: inline-block;
    padding: 2px;
    border: 2px solid #fdb94e;
    border-radius: 5px;
    background-color: white;
    line-height: 1.5em;
    padding: 2px 7px 1px;
    font-weight: 600;
}

/* Button styles */
.button {
    display: inline-block;
    cursor: pointer;
    background-color: #fdb94e;
    border-radius: 5px;
    border-width: 0;
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    line-height: 1.5em;
    padding: 8px 36px;
}

.button.small {
    padding: 3px 10px;
    font-weight: normal;
}

.button:hover {
    background-color: #ffcc55;
    text-decoration: none;
}

/* Tab styles */
#tabs {
    flex-grow: 1;
    display: flex;
}

tabs {
    display: flex;
    flex-grow: 1;
}

.tabbedView {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.tabbedView ul.tabs {
    display: flex;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    font-size: .9em;
}

.tabbedView ul.tabs li {
    flex-grow: 1;
    list-style: none;
    background-color: #f3f4f6;
    color: #909090;
    border-top: 1px solid #909090;
    border-left: 1px solid #909090;
    border-bottom: 1px solid #fdb94e;
    text-align: center;
}

.tabbedView ul.tabs li:last-child {
    border-right: 1px solid #909090;
}

.tabbedView ul.tabs li a {
    padding: 10px;
    color: #909090;
    text-decoration: none;
    display: block;
}

.tabbedView ul.tabs li a:hover {
    text-decoration: underline;
}

.tabbedView ul.tabs li a .icon {
    margin-right: 5px;
}

.tabbedView ul.tabs li.active {
    border-color: #fdb94e;
    border-right: 1px solid #fdb94e;
    border-bottom-color: white;
    background-color: white;
    color: black;
}

/* Form item styles */
.formItem .matchIcon {
    display: inline-block;
    margin: 0 0 0 2%;
    padding: 0;
    max-width: 8%;
    font-size: 1.25em;
}

/* Utility classes */
.interstice {
    margin-top: 1em;
    margin-bottom: 1em;
}

.notransition {
    -webkit-transition: none !important;
    transition: none !important;
}

/* Overlay styles */
.overlay1 div.match {
    border: 2px solid #fdb94e;
    color: #fdb94e;
    transform: translatex(-2px) translatey(-2px);
}