.psd-media-player {
    background-color:#000;
}

.psd-media-player.fullscreen {
    position:relative;
    margin:auto;
    width:100%;
    height:100%;
}

.psd-video-wrapper {
    position:relative;
}

.psd-video-wrapper.fullscreen {
    position:fixed;
    background-color:#000;
    top:0 !important;
    left:0 !important;
    width:100%;
    height:100%;
}

.psd-media-player-controls {
    height:24px;
    position:absolute;
    background-repeat:repeat-x;
    background-position:0 12px;
    background-color:#333;
    background-color:rgba(45,45,45,.75);
    bottom:5px;
    opacity:1;
    width:100%;
    -webkit-transition: opacity 0.15s linear;
    -moz-transition: opacity 0.15s linear;
}

/* this only applies to Firefox in HTML5 mode */
.psd-video-wrapper.fullscreen .psd-media-player-controls {
    bottom:0;
    top:auto;
}

.psd-media-player-button {
    position:relative;
    border:none;
    width:22px;
    height:22px;
    background-color:transparent;
    background-repeat:no-repeat;
    background-position:50% 50%;
    cursor:pointer;
    text-align:center;
    margin-left:5px;
}

.psd-media-player-button.psd-media-player-big-play-button.enabled {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-position:50% 50%;
    background-image:url(../../../../images/big-play-button.png);
    background-repeat:no-repeat;
    display:block;
}

.psd-media-player-button.psd-media-player-big-play-button {
    display:none;
}

/*
.psd-video-wrapper:hover .psd-media-player-controls, 
*/
.psd-video-wrapper:hover .psd-media-player-sidebar {
    opacity:1;
    -webkit-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
}

.psd-media-player-button.play span {
    display:block;
    border-bottom:5px solid transparent;
    border-left:10px solid #fff;
    border-top:5px solid transparent;
    height:0;
    margin:8px 0;
    width:0;
}

.psd-media-player-button.pause span {
    display:block;
    border:none solid;
    font-size:0;
    line-height:0;
    border-bottom:0;
    border-left:3px solid #fff;
    border-right:3px solid #fff;
    border-top:0;
    height:10px;
    margin:8px auto 0 auto;
    width:3px;
}

.psd-media-player-volume-control {
    position:absolute;
    display:inline-block;
    width:50px;
    height:10px;
    margin:3px 0 0 10px;
    cursor:pointer;
    right:10px;
    top:0px;
}

.psd-media-player-volume-indicator {
    position:relative;
    display:inline-block;
    width:5px;
    height:24px;
    background-color:rgba(100,100,100,.5);
    border-bottom-style:solid;
    border-bottom-color:transparent;
    margin-right:2px;
    -webkit-transition: border-bottom-color 0.1s linear;
    -moz-transition: border-bottom-color 0.1s linear;
}

.psd-media-player-volume-indicator.enabled {
    border-bottom-color:#fff;
    -webkit-transition: border-bottom-color 0.1s linear;
    -moz-transition: border-bottom-color 0.1s linear;
}

/* TODO: this doesn't work in IE */
.psd-media-player-volume-control div:nth-child(1) {
    height:16px;
    border-bottom-width:2px;
}

.psd-media-player-volume-control div:nth-child(2) {
    height:14px;
    border-bottom-width:4px;
}

.psd-media-player-volume-control div:nth-child(3) {
    height:11px;
    border-bottom-width:7px;
}

.psd-media-player-volume-control div:nth-child(4) {
    height:8px;
    border-bottom-width:10px;
}

.psd-media-player-volume-control div:nth-child(5) {
    height:4px;
    border-bottom-width:14px;
}

.psd-media-player-volume-control div:nth-child(6) {
    height:0;
    border-bottom-width:18px;
}

.psd-media-player-progress-meter {
    position:absolute;
    bottom:8px;
    left:35px;
    height:10px;
    width:200px;
    border-radius:3px;
    background-color:rgba(0,0,0,.5);
    /*overflow:hidden;*/
    -webkit-appearance:none;
    cursor:pointer;
}

.psd-media-player-progress-bar {
    position:absolute;
    height:10px;
    top:0;
    background: lightblue;
    -webkit-transition: width 0.01s linear;
    -moz-transition: width 0.1s linear;
}

.psd-media-player-buffer-bar {
    position:absolute;
    height:10px;
    top:0;
    background: #1E5799;
    top:  0px;
}

.psd-media-player-progress-text {
    position:absolute;
    color:#fff;
    font:9px verdana;
    display:inline-block;
    top:3px;
    left:245px;
    margin-left:5px;
}

.psd-media-player-seek-flag {
    position:absolute;
    background:#333;
    background-color:#eee;
    background-color:rgba(0,0,0,.5);
    border-radius:4px;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    color:#fff;
    font:10px verdana;
    width:auto;
    padding:4px;
    top:-35px;
    opacity:0;
    -webkit-transition: opacity 0.1s linear;
    -moz-transition: opacity 0.1s linear;
    -moz-box-shadow:2px 2px 4px #222;
    -webkit-box-shadow:2px 2px 4px #222;
}

.psd-media-player-seek-flag.enabled {
    opacity:1;
    -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
}

.psd-media-player-playlist {
    padding:0;
}

.psd-media-player-playlist-item {
    cursor:pointer;
    list-style-type:none;
}

.psd-media-player-playlist-item.active {
    background-color:lightblue;
}

.psd-media-player-sidebar {
    position:absolute;
    top:10px;
    right:10px;
    width:42px;
    opacity:0;
}

.psd-media-player-sidebar .psd-media-player-button {
    position:relative;
    width:28px;
    height:28px;
    background-color:#ccc;
    margin-top:4px;
}
