body {
  background: #fff;
  color: #000;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

#nav {
	background-color: #fff;
	position: fixed;
	left: 0;
	width: 250px;
	height: 100%;
	overflow: hidden;
	padding: 20px;
}

#nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	padding-left: 20px;
}

#nav a {
	color: #08C;
	font-size: 12px;
}

#examples {
	padding-left: 5px;
}

#logo {
	height: 30px;
	width: 100px;
}

#container {
	position: absolute;
	border: 0;
	left: 250px;
	width: calc(100% - 250px);
	height: 100%;
	overflow: hidden;
}

#dominent-color {
	z-index: 100;
	width: 100px;
	height: 100px;
	position: absolute;
	right: 15px;
	top: 15px;
}

/* Vimeo branding */
#logo {
	height: 30px;
}

/* Loading animation container */
.loading {
	position: absolute;
	top: 50%;
	left: calc(50% + 125px);;
	width: 28px;
	height: 28px;
	margin: -14px 0 0 -14px;
}

/* Spinning circle (inner circle) */
.loading .maskedCircle {
	width: 20px;
	height: 20px;
	border-radius: 12px;
	border: 3px solid #1ab7ea;
}

/* Spinning circle mask */
.loading .mask {
	width: 12px;
	height: 12px;
	overflow: hidden;
}

/* Spinner */
.loading .spinner {
	position: absolute;
	left: 1px;
	top: 1px;
	width: 26px;
	height: 26px;
	animation: spin 1s infinite linear;
}

.play-button {
		display: none;
    height: 40px;
    width: 65px;
    background-color: #162221;
    border-radius: 5px;
    position: absolute;
		bottom: 50%;
		left: calc(50% + 125px);
		margin: -32.5px 0 0 -20px;
}

.play-button:hover {
    background-color: rgba(0, 173, 239, 0.9);
}

.play-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 10.5px;
  left: 24px;
  margin: 0 auto;
  border-style: solid;
  border-width: 9.5px 0 9.5px 17px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 1);
}

