* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	background: none;
}

body {
	overflow: hidden;
	background-color: #000;
	width: 100vw;
	height: 100vh;
}

#app {
	position: relative;
	height: 100%;
	width: 100%;
	max-width: 1920px;
	margin: auto;
	background-image: url("./assets/img/bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.container {
	position: absolute;
	bottom: 40px;
	right: 100px;
	width: 160px;
	height: 160px;
}

.container .full-size {
	position: absolute;
	height: inherit;
	width: inherit;
}

.container .fuel {
	position: absolute;
	top: 45px;
	left: 57px;
	width: 47px;
	height: 14px;
	background-color: #3e4346;
}

.container .fuel #fuel {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #db1e1e;
	transition: all .5s linear;
}

.container #speed {
	transform: rotate(-30deg);
	transition: all .5s linear;
}

.container #limiter {
	display: none;
	transform: rotate(-120deg);
	transition: all .5s linear;
}

.container #rpm {
	position: absolute;
	left: calc(50% - 25px);
	bottom: -7px;
	height: auto;
	width: 50px;
	transform: rotate(-90deg);
	transition: all .5s linear;
}

/* Preview Controls */

.controls {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	color: #fff;
	background-color: #444444;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	z-index: 999;
}

.controls * {
	display: block;
	margin: 5px 10px;
}

.controls label input {
	display: inline-block;
}