body {
	margin: 0;
	font-family: 'IBM Plex Sans', sans-serif !important;
	font-size: 16px;
	cursor: move; /* fallback if grab cursor is unsupported */
	cursor: grab;
	cursor: -moz-grab;
	cursor: -webkit-grab;
}

#play-btn {
	position: absolute;
	cursor: pointer;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 50;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.5s linear;
}

#play-btn.active {
	visibility: visible;
	opacity: 1;
}

/**
CONTROL BAR
 */
#actionBar, #actionBar div {
	box-sizing: border-box;
}

#actionBar button:focus {
	outline: none !important;
}

#actionBar {
	display: none;
	overflow: hidden;
	padding: 8px;
	text-align: right;
	width: 100%;
	height: 36px;
	position: absolute;
	bottom: 0;
	background-color: rgba(0,0,0,0.3);

	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 10%, rgba(0,0,0,0.54) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 10%,rgba(0,0,0,0.54) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 10%,rgba(0,0,0,0.54) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
}

#actionBar .ctrBtn {
	margin-left: 8px;
}

#actionBar button {
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: all .2s ease-in-out;

}

#actionBar button:hover * {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

#actionBar button img,
#actionBar button svg {
	width: auto;
	height: 16px;
}


/**
share-overlay
 */
#share-overlay {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 100;
}

#share-overlay #closeShare {
	color: #fff;
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 101;
	cursor: pointer;
}

#share-overlay #share-content {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	width: 80%;
}

#share-overlay #share-content #shareLink {
	font-size: 1.3rem;
	color: #fff;
	text-decoration: none !important;
	margin-top: 16px;
	display: block;
}

#share-overlay .social-links {
	margin-top: 16px;
	box-sizing: border-box;
}

#share-overlay .social-links * {
	box-sizing: border-box;
}

#share-overlay .social-links .share-link {
	display: inline-block;
	background-color: #fff;
	border-radius: 4px;
	padding: 4px;
	margin-left: 4px;
	margin-right: 4px;
	cursor: pointer;
}

#share-overlay .social-links .share-link.fb {
	background-color: #3b5998;
}

#share-overlay .social-links .share-link.twitter {
	background-color: #55acee;
}

#share-overlay .social-links .share-link.mail {
	background-color: #999;
}

#share-overlay #shareLink::-moz-selection,
#share-overlay #shareLink::selection{
	color: #fff;
	background: #0096F6;
	text-decoration: none;
}
