/* PLAYMENU */
#sideBar {
	position: absolute;
	right: -125px;
	bottom: 12.5%;
	width: 25%;
	padding: 50px;
	/*border: 1px solid red;*/
	transition-duration: 0.5s;
	z-index: 10;
}
#sideBarOpener {
position: absolute;
bottom: 0;
right: 0vw;
width: 200px;
height: 75px;
padding-left: 15px;
line-height: 75px;
background-color: white;
opacity: 0.5;
color: green;
border-bottom: 1px solid #d0135f;
border-left: 1px solid #d0135f;
border-top-left-radius: 25%;
border-bottom-left-radius: 25%;
font-size: 40px;
text-align: left;
cursor: pointer;
} #sideBarOpener:hover {
color: #d0135f;
font-weight: bold;
/*opacity: 0.75;	*/
}

#player {
	position: absolute;
	bottom: 75px;
	right: 0vw;
	width: 125px;
	background-color: rgba(255, 255, 255, 0.5);
	border-top: 1px solid #d0135f;
	border-left: 1px solid #d0135f;
	border-bottom-left-radius: 25%;
	border-top-left-radius: 25%;
	padding-top: 50px;
	padding-bottom: 50px;
}
.playMenu {
	display: block;
	margin: 10px auto;
	text-align: center;
}

.playMenuBtn {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	border: 5px solid grey;
	font-size: 12.5px;
	cursor: pointer;
	outline: none;
} .playMenuBtn:hover {
	border-color: #d0135f;
	color: #d0135f;
} .playMenuBtn:active {
	border-color: darkgreen;
	color: darkgreen;
}

.playMenuBtnSmall {
	width: 45px;
	height: 45px;
} 