:root {
	--color: #212121;
	--tipo-principal: 'Roboto', Arial, sans-serif;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	vertical-align: baseline;
}

img,
picture,
video,
iframe,
figure {
	max-width: 100%;
	width: 100%;
	display: block;
}

a {
	display: block;
	text-decoration: none;
	color: inherit;
	font-size: inherit;
}

p a {
	display: inline;
}

li {
	list-style-type: none;
}

html {
	scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
	font-size: 1em;
	font-weight: inherit;
	font-style: inherit;
	text-decoration: none;
	color: inherit;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

form,
input,
textarea,
select,
button,
label {
	font-family: inherit;
	font-size: inherit;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	background-color: transparent;
	color: inherit;
	display: block;
}

table,
tr,
td {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	min-height: 100vh;
	font-size: 100%;
	font-family: var(--tipo-principal);
	color: var(--color);
}

.contenedor {
	position: relative;
}
.contenedor__circle {
	border-radius: 50%;
	width: 120px;
	height: 120px;
	border: 1px solid #fff;
	margin: 50px auto;
	display: flex;
	color: #fff;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.contenedor__circle::before {
	content: '';
	border-radius: 50%;
	z-index: -1;
	position: absolute;
	width: 160px;
	height: 160px;
	left: calc(50% - 80px);
	top: calc(50% - 80px);
	background: #1d1d1d;
}
.contenedor__circle .circle__buttons {
	margin-top: 10px;
	display: inline-flex;
}
.contenedor__circle .circle__buttons .buttons__play-pause--paused {
	height: 10px;
	border-width: 5px 0 5px 10px;
	cursor: pointer;
	margin-left: 15px;
	border-color: transparent transparent transparent #fff;
	transition: all ease 0.1s;
	will-change: border-width;
	border-style: solid;
}
.contenedor__circle .circle__buttons .buttons__play-pause--play {
	height: 10px;
	border-width: 0 0 0 10px;
	cursor: pointer;
	margin-left: 15px;
	border-color: #fff;
	transition: all ease 0.1s;
	will-change: border-width;
	border-style: double;
}
.contenedor__circle .circle__buttons .buttons__stop {
	background: #fff;
	height: 10px;
	width: 10px;
	cursor: pointer;
}
.contenedor__seconds-sphere {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	left: calc(50% - 10px);
	top: calc(50% - 10px);
	-webkit-animation: rotation 60s linear infinite;
	animation: rotation 60s linear infinite;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
.contenedor__seconds-sphere.animated {
	-webkit-animation-play-state: running;
	animation-play-state: running;
}
.contenedor__seconds-sphere.stop {
	transform: rotate(-90deg) translateX(60px);
	-webkit-animation: none;
	animation: none;
}

@-webkit-keyframes rotation {
	from {
		transform: rotate(-90deg) translateX(60px);
	}
	to {
		transform: rotate(270deg) translateX(60px);
	}
}

@keyframes rotation {
	from {
		transform: rotate(-90deg) translateX(60px);
	}
	to {
		transform: rotate(270deg) translateX(60px);
	}
} /*# sourceMappingURL=styles.css.map */
