@font-face {
    font-family: 'ProximaNova';
    src: url('fonts/proxima_nova_regular-webfont.eot');
    src: url('fonts/proxima_nova_regular-webfont.eot?#iefix') format('embedded-opentype'),
		url('fonts/proxima_nova_regular-webfont.woff') format('woff'),
		url('fonts/proxima_nova_regular-webfont.ttf') format('truetype'),
		url('fonts/proxima_nova_regular-webfont.svg#proxima_nova_rgregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('fonts/proxima_nova_bold-webfont.eot');
    src: url('fonts/proxima_nova_bold-webfont.eot?#iefix') format('embedded-opentype'),
		url('fonts/proxima_nova_bold-webfont.woff') format('woff'),
		url('fonts/proxima_nova_bold-webfont.ttf') format('truetype'),
		url('fonts/proxima_nova_bold-webfont.svg#proxima_nova_rgbold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNovaLight';
    src: url('fonts/proxima_nova_light-webfont.eot');
    src: url('fonts/proxima_nova_light-webfont.eot?#iefix') format('embedded-opentype'),
		url('fonts/proxima_nova_light-webfont.woff') format('woff'),
		url('fonts/proxima_nova_light-webfont.ttf') format('truetype'),
		url('fonts/proxima_nova_light-webfont.svg#proxima_novalight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNovaExtraBold';
    src: url('fonts/proxima_nova_extrabold-webfont.eot');
    src: url('fonts/proxima_nova_extrabold-webfont.eot?#iefix') format('embedded-opentype'),
		url('fonts/proxima_nova_extrabold-webfont.woff') format('woff'),
		url('fonts/proxima_nova_extrabold-webfont.ttf') format('truetype'),
		url('fonts/proxima_nova_extrabold-webfont.svg#proxima_novaextrabold') format('svg');
    font-weight: normal;
    font-style: normal;

}


body {
    font: 14px 'ProximaNova', Arial, Helvetica, Garuda, sans-serif;
	color: #434a54;
}


h1 {
	font-size: 26px;
}


.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: black;
	background: rgba(0,0,0,0.5);
	color: #FFF;
	font-size: 50px;
	font-weight: bold;
	padding-top: 150px;
	text-align: center;
}
#overlay img {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
#overlay-closed {
	display: none;
}
#overlay-console {
	display: none;
}


.btn {
    display: inline-block;
    padding: 11px 27px;
    background-color: #c5c5c5;
    border: 2px solid #ababab;
    border-radius: 100px;
    line-height: 1 !important;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
}
.btn.blue {
    background-color: #009bc9;
    border-color: #0084b0;
}
.btn.green {
    background-color: #69d3c4;
    border-color: #4cb7a8;
}
.btn.red {
    background-color: #ff7377;
    border-color: #e0565d;
}
.btn:hover {
    color: #fff !important;
}
.btn.blue:hover {
    background-color: #0084b0;
}
.btn.green:hover {
    background-color: #4cb7a8;
}
.btn.red:hover {
    background-color: #e0565d;
}
.btn:hover:focus {
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
}


.program-list {
    overflow: hidden;
}
.program-list li {
    width: 128px;
    float: left;
	display: block;
}
.program-list li a {
	display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 10px 10px 0;
	padding: 0 5px;
	border: 3px solid #b3b9c1;
	border-radius: 5px;
	text-align: center;
	text-decoration: none;
	color: #434a54;
	height: 55px;
	background: #f0f2f5;
	word-wrap: break-word;
}
.program-list li a:hover,
.program-list li.ac a {
    border-color: #009bc9;
    color: #fff;
	background: #00b0f3;
}
.program-list li.dis a {
	cursor: not-allowed;
}


.controls button {
	width: 32px;
	height: 32px;
	float: left;
	overflow: hidden;
	margin-right: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	text-indent: 100px;
	cursor: pointer;
}
.controls button.play {
	width: 64px;
	height: 64px;
	background-image: url('../images/icon_play.png');
}
.controls button.stop {
}
.controls button.prev {
}
.controls button.next {
	background-image: url(../images/player-controls-button.png);
	background-position: -98px 0;
	background-size: 130px;
}
.controls button.play.ac {
	background-image: url('../images/icon_pause.png');
}
.controls button.stop:hover,
.player .controls button.stop.ac {
}
.player .controls button.prev:hover,
.player .controls button.prev.ac {
}
.player .controls button.next:hover,
.player .controls button.next.ac {
}
.controls button.play[disabled] {
	opacity: 0.4;
}


.volume {
	width: 166px;
}
.volume .current {
	display: block;
	margin: 0 -1px 7px 0;
	line-height: 1 !important;
	text-align: right;
}
.volume .ui-slider {
	width: 140px;
	height: 6px;
	float: left;
	background-color: #464c55;
	border-radius: 100px;
	cursor: pointer;
}
.volume .ui-slider-range {
	height: 6px;
	position: relative;
	display: block;
	background-color: #009bc9;
	border-radius: 100px;
	cursor: pointer;
}
.volume .mute {
	width: 16px;
	height: 16px;
	float: left;
	overflow: hidden;
	margin: -6px 6px 0 0;
	padding: 0;
	background: url('../images/icon_volume.png') no-repeat;
	background-size: cover;
	border: none;
	text-indent: 100px;
	opacity: 0.5;
}



#filename {
	font-size: 80%;
}


#backup-cont {
	display: inline-block;
	position: relative;
}

#backup-cont:hover #backup-menu {
	display: block;
}

#backup-menu {
	display: none;
	position: absolute;
	bottom: 40px;
	left: -120px;
	width: 400px;
	height: 400px;
	overflow: auto;
	background-color: white;
	border: 1px solid #b3b9c1;
	padding: 20px;
	box-shadow: 4px 4px 8px #b3b9c1;
}

#backup-menu .flash-message {
	font-size: 80%;
}

#backup-menu .btn {
	display: block;
}
