#player {
	align-items: center;
	background-color: #fbbc38;
	display: flex;
	flex-direction: column;
	padding: 2rem 1rem;
}

#player .botao-container {
	align-items: center;
	display: flex;
	height: 8.25rem;
	justify-content: center;
	position: relative;
	width: 8.25rem;
}

#player .botao {
	border: none;
	border-radius: 50%;
	background-color: #fff;
	height: 6rem;
	position: relative;
	width: 6rem;
	z-index: 30;
}

#player .botao::after {
	background-color: transparent;
	border-color: transparent transparent transparent #828281;
	border-radius: 0px;
	border-style: solid;
	border-width: 1.5rem 0 1.5rem 3rem;
	content: " ";
	height: 0;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-35%, -50%);
	width: 0;
	z-index: 25;
}

#player.Tocando .botao::after {
	border: none;
	border-radius: 0.5rem;
	background-color: #828281;
	height: 3rem;
	transform: translate(-50%, -50%);
	width: 3rem;
}

#player .botao-container::after,
#player .botao-container::before {
	content: "";
	animation: effect 0.75s ease infinite alternate;
	animation-delay: 0.25s;
	border-radius: 50%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	visibility: hidden;
	-webkit-animation: effect 0.75s ease infinite alternate;
}

#player.Tocando .botao-container::after,
#player.Tocando .botao-container::before {
	visibility: visible;
}

#player .botao-container::after {
	background-color: rgba(255, 255, 255, 0.5);
	height: 7rem;
	width: 7rem;
}

#player .botao-container::before {
	background-color: rgba(255, 255, 255, 0.375);
	height: 8.25rem;
	width: 8.25rem;
}

#player .player-titulo {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	margin: 1rem 0px;
	text-transform: uppercase;
}

#player .informacoes,
#player .volume {
	margin: 0px auto;
	max-width: 30rem;
	width: 100%;
}

#player .informacoes {
	background-color: #fff;
	border-radius: 1rem;
	color: #7e7e7e;
	margin-bottom: 2rem;
	padding: 1rem;
	text-align: center;
}

#player .informacoes .informacoes-subtitulo {
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
}

#player .informacoes .informacoes-titulo {
	color: #000;
	font-family: "FjallaOne";
	font-size: 1.5rem;
	margin: 0.5rem 0px;
	text-transform: uppercase;
}

#player .informacoes .informacoes-complementares > * {
	margin: 0px 0.5rem;
}

@keyframes effect {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@-webkit-keyframes effect {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}
