﻿.player {
	background-color: #424242;
	border-radius: 5px;
	max-width: 444px;
	min-height: 34px;
	overflow: hidden;
	padding: 0 140px 0 50px;
	position: relative;
	width: 100%;
}

.player.player--no-resize {
	padding: 0 188px 0 50px;
}

.player.player--spaced {
	margin: 15px 15px 15px 0;
}

.player.player--med {
    min-width: 280px;
}

.player .player__audio {
    display: none;
}

.player .player__controls {
	background-color: #424242;
	padding: 4px 4px 4px 12px;
}

.player .player__controls.player__controls--left {
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 9;
}

.player .player__controls.player__controls--right {
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 9;
}

.player .player__controls.player__controls--full {
    padding: 0 0 0 12px;
	margin-right: 24px;
}

.player .player__controls.player__controls--center {
    width: 100%;
    display: inline-block;
    padding: 0;
    position: relative;
    height: 100%;
    z-index: 3;
}

.player-button {
	background: none;
	background-color: transparent;
	border: none;
	font-size: 22px;
	line-height: 22px;
	padding: 0;
	color: #ededed;
	display: inline-block;
	vertical-align: middle;
	width: 20px;
}

.player-button:focus,
.player-button:active {
    outline: none;
}

.player-button.player-button--hidden {
    display: none;
}


.player-button.player-button--spaced {
    margin: 1px 6px 0;
}

.player-time {
	color: #ededed;
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	padding: 0 12px;
	vertical-align: middle;
}

.player-time.player-time--spaced {
    padding: 5px 0;
}

.player-volume {
    display: inline-block;
    min-width: 42px;
    position: relative;
    vertical-align: middle;
    min-height: 8px;
}

.player-volume.player-volume--sm-hide {
    display: none;
}

.player-timeline {
	background-color: #454545;
	border: 1px solid #727272;
	border-radius: 8px;
	bottom: 0;
	cursor: pointer;
	height: 10px;
	left: 3px;
	position: absolute;
	right: 0;
	top: -1px;
	width: 100%;
	z-index: 3;
}

.player-timeline.player-timeline--negative-top {
	top: -2px;
}

.player-timeline.player-timeline--progress {
    z-index: 6;
    width: 1%;
}

.player-timeline.player-timeline--full {
    z-index: 6;
    width: 100%;
}

.player-timeline.player-timeline--ghost {
	background-color: transparent;
	margin-top: 0;
	z-index: 9;
}

.player-playhead {
	-webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,1);
	box-shadow: 0px 0px 5px 1px rgba(0,0,0,1);
	border-radius: 6px;
	height: 0;
	left: 0;
	margin-left: -6px;
	margin-top: -3px;
	padding: 6px 11px;
	position: absolute;
	top: 50%;
	width: 0;
	z-index: 9;
}

.player-volume-playhead {
	-webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,1);
	box-shadow: 0px 0px 5px 1px rgba(0,0,0,1);
	border-radius: 50%;
	height: 0;
	padding: 7px;
	position: absolute;
	top: 0;
	left: 0;
	margin-left: -5px;
	margin-top: -3px;
	width: 0;
	z-index: 9;
}

.player-volume-playhead.player-volume-playhead--full {
    left: 100%;
}

.player-playhead.gradient1,
.player-volume-playhead.gradient1,
.player-timeline.player-timeline--full.gradient1,
.player-timeline.player-timeline--progress.gradient1 {
    background-image: none;
}

.player__controls.player__controls--yellow .player-playhead,
.player__controls.player__controls--yellow .player-volume-playhead,
.player__controls.player__controls--yellow .player-timeline.player-timeline--full,
.player__controls.player__controls--yellow .player-timeline.player-timeline--progress {
    background-color: #e4d332;
}

.white-skin {
	background-color: #fff;
}

@media only screen and (min-width: 480px) {
	.player {
		padding: 0 188px 0 50px;
		width: auto;
	}

    .player.player--med {
        min-width: 360px;
    }

    .player-volume.player-volume--sm-hide {
        display: inline-block;
    }
}