html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.big {
	width: 100%;
	height: 100%;
	background-image: url('../img/big/nic.jpg');
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: fixed;
	background-size: cover;
}

.big .player-box {
	width: 560px;
	height: 315px;
	left: 50px;
	top: 100px;
	position: absolute;
}

.big .player-box.player-topbar {
	height: 60px;
	background: #000;
        z-index: 10;
}

.big .player-cover {
	z-index: 10;
	background-image: url('../img/img/player_cover.jpg');
	cursor: pointer;
}

.big .player-button {
	z-index: 12;
	background-image: url('../img/img/player_button_inactive.png');
	transition: background-image 0.1s ease;
	cursor: pointer;
	display: none;
}

.big .player-button:hover {
	background-image: url('../img/img/player_button.png');
}

.big .player-button-preload {
	background-image: url('../img/img/player_button.png');
	display: none;
}

.big .player {
	z-index: 8;
	-webkit-box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.55);
	-moz-box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.55);
	box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.55);
}

.spinner-overlay {
	position: relative;
	background: #000;
	opacity: 0.8;
	z-index: 12;
}

.spinner {
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  text-indent: -9999em;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  position: absolute;
  -webkit-animation: spinner-anim 1.4s infinite linear;
  animation: spinner-anim 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.spinner:before {
  width: 50%;
  height: 50%;
  background: #ffffff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.spinner:after {
  background: black;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes spinner-anim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-anim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
