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

html {
	overflow: hidden;
}

body {
	font-family: Arial, Helvetica, sans-serif;
}

.cat-section {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.controls {
	width: 100%;
	background-color: #f68634;
	display: flex;
	flex-direction: row;
	align-items: center;
	box-shadow: 0px 2px 5px 0px #00000057;
	position: relative;
	z-index: 10;
}

.main-panel {
	display: flex;
	align-items: center;
	background-color: #f68634;
	padding: 5px 2% 5px 15px;
	position: relative;
	height: 50px;
}

.buttons {
	margin-right: 15px;
}

.button {
	background-color: white;
	border: 1px solid #7e7e7e;
	width: 80px;
	height: 30px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	color: #444;
	cursor: pointer;
	transition: background-color .25s;
}

.button:hover {
	background-color: #ededed;
}

.top-menu {
	width: 60px;
	height: 50px;
	padding: 0 !important;
	position: fixed;
	cursor: pointer;
	display: none;
	right: 0;
	top: 0;
}

.menu,
.menu::after,
.menu::before {
	content: ' ';
	position: absolute;
	right: 0;
	border-radius: 5px;
	width: 35px;
	height: 5px;
	background-color: #444;
	transition: all .2s ease-in-out;
}

.menu {
	top: 23px;
	bottom: 0;
	right: 13px;
	width: 35px;
}

.menu::before {
	top: -10px;
}

.menu::after {
	bottom: -10px;
}

.menu.open {
	width: 0%;
	right: 28px;
}

.menu.open::before {
	top: 0px;
	right: -16px;
	transform: rotate(45deg);
}

.menu.open::after {
	bottom: 0px;
	right: -16px;
	transform: rotate(-45deg);
}

.parameters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 750px;
	padding: 0px 15px;
}

.parameters>.data:not(:last-child) {
	margin-right: 3%;
}

.parameters>.data {
	padding: 10px 0;
}

.desc-undes {
	margin-right: 10px;
}

.max-undes {
	width: 65px;
	border-radius: 5px;
	border: 1px solid #878787;
	padding: 5px;
	align-self: center;
}

.max-undes:focus {
	outline: none;
}

.speed-cat {
	margin: 0 5px;
	vertical-align: middle;
}

.title-undes {
	display: flex;
}

.infinity {
	color: #303030;
	font-size: 10px;
	text-align: right;
	display: block;
}

.data {
	font-size: 16px;
	font-weight: bold;
}

.data.speed {
	width: 60px;
}

.speed-cat {
	cursor: pointer;
	width: 110px;
}

.real-speed {
	width: 18px;
	display: inline-block;
}

.day-night {
	width: 60px;
}

.time {
	vertical-align: middle;
}

.radio-time {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
}

.cat-road {
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
	background: PaleTurquoise;
	box-shadow: 0 374px 255px -67px LightCyan inset;
}

.progress-bar {
	position: absolute;
	top: -30px;
	left: 6px;
	right: 0;
	width: 230px;
	background-color: #fff;
	padding: 2px 11px;
	border-radius: 8px;
	box-shadow: 0px 0px 3px #0000008c;
	z-index: 5;
	transition: top .3s ease-in-out;
}

.progress-status {
	float: right;
	color: #444;
	font-size: 14px;
	margin-top: 1px;
}

.cat-road.night {
	-webkit-animation: sky-sunset 5s ease-in-out 1 normal forwards;
	        animation: sky-sunset 5s ease-in-out 1 normal forwards;
}

.cat-road.day {
	-webkit-animation: sky-sunrise 5s ease-in-out 1 normal forwards;
	        animation: sky-sunrise 5s ease-in-out 1 normal forwards;
}

.cloud {
	position: absolute;
	height: auto;
	left: 0;
	opacity: .9;
	transform: translate(-41vw, 0px);
	-webkit-animation: cloud linear infinite normal;
	        animation: cloud linear infinite normal;
}

.averlay,
#stars {
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 5s ease-in-out;
}

.averlay {
	background: #000;
	z-index: 3;
	opacity: 0;
	width: 100%;
	height: 100%;
}

.cat-road.night .averlay {
	opacity: .6;
}

#stars {
	opacity: 0;
}

.night #stars {
	opacity: 1;
}

.ball {
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 80px;
	height: 80px;
}

.sun {
	border-radius: 50%;
	background: radial-gradient(circle, #ffb300 26%, #ffd438 59%, #ffffff00 72%);
	transform-origin: 100% 100vh;
	transform: rotate(0deg);
}

.moon {
	background: url('moon.png') no-repeat;
	background-size: contain;
	transform-origin: 100% 100vh;
	transform: rotate(180deg);
}

.cat-road.night .sun {
	-webkit-animation: sun-sunset 5s ease-in 1 normal forwards;
	        animation: sun-sunset 5s ease-in 1 normal forwards;
}

.cat-road.day .sun {
	-webkit-animation: sun-sunrise 5s ease-out 1 normal forwards;
	        animation: sun-sunrise 5s ease-out 1 normal forwards;
}

.cat-road.night .moon {
	-webkit-animation: moon-sunset 5s ease-out 1 normal forwards;
	        animation: moon-sunset 5s ease-out 1 normal forwards;
}

.cat-road.day .moon {
	-webkit-animation: moon-sunrise 5s ease-in 1 normal forwards;
	        animation: moon-sunrise 5s ease-in 1 normal forwards;
}

.cloud-1 {
	width: 70px;
	top: 50px;
	-webkit-animation-duration: 50s;
	        animation-duration: 50s;
}

.cloud-2 {
	width: 90px;
	top: 70px;
	-webkit-animation-duration: 60s;
	        animation-duration: 60s;
	-webkit-animation-delay: 5s;
	        animation-delay: 5s;
}

.cloud-3 {
	width: 110px;
	top: 90px;
	-webkit-animation-duration: 70s;
	        animation-duration: 70s;
	-webkit-animation-delay: 15s;
	        animation-delay: 15s;
}

.cloud-4 {
	width: 130px;
	top: 110px;
	-webkit-animation-duration: 80s;
	        animation-duration: 80s;
	-webkit-animation-delay: 25s;
	        animation-delay: 25s;
}

.cat {
	position: absolute;
	bottom: 100px;
	left: 0;
	width: 160px;
	height: 160px;
	z-index: 2;
}

.cat-image {
	transition: transform .2s;
	position: relative;
	z-index: 1;
}

.cat-reverse {
	transform: scale(-1, 1);
}

.cat::before {
	content: " ";
	background: radial-gradient(#000000, #85858554);
	width: 100%;
	height: 20px;
	border-radius: 50%;
	position: absolute;
	bottom: 5px;
	left: 0;
	opacity: .7;
}

.ground {
	background: url('ground.png') repeat-x 0 100%,
		url('background.png') no-repeat 50% 100%;
	height: 100%;
	width: 100%;
	z-index: 0;
	position: relative;
}

@-webkit-keyframes sky-sunset {
	60% {
		background: Coral;
		box-shadow: 0 450px 255px -67px steelblue inset;
	}

	to {
		background: #020e24;
		box-shadow: 0 1000px 255px -67px #0f2962 inset;
	}
}

@keyframes sky-sunset {
	60% {
		background: Coral;
		box-shadow: 0 450px 255px -67px steelblue inset;
	}

	to {
		background: #020e24;
		box-shadow: 0 1000px 255px -67px #0f2962 inset;
	}
}

@-webkit-keyframes sky-sunrise {
	from {
		background: #020e24;
		box-shadow: 0 1000px 255px -67px #0f2962 inset;
	}

	60% {
		background: Coral;
		box-shadow: 0 450px 255px -67px steelblue inset;
	}

	to {
		background: PaleTurquoise;
		box-shadow: 0 600px 255px -67px LightCyan inset;
	}
}

@keyframes sky-sunrise {
	from {
		background: #020e24;
		box-shadow: 0 1000px 255px -67px #0f2962 inset;
	}

	60% {
		background: Coral;
		box-shadow: 0 450px 255px -67px steelblue inset;
	}

	to {
		background: PaleTurquoise;
		box-shadow: 0 600px 255px -67px LightCyan inset;
	}
}

@-webkit-keyframes sun-sunset {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(180deg);
	}
}

@keyframes sun-sunset {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(180deg);
	}
}

@-webkit-keyframes sun-sunrise {
	from {
		transform: rotate(180deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes sun-sunrise {
	from {
		transform: rotate(180deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes moon-sunset {
	from {
		transform: rotate(180deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes moon-sunset {
	from {
		transform: rotate(180deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes moon-sunrise {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(180deg);
	}
}

@keyframes moon-sunrise {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(180deg);
	}
}

@-webkit-keyframes cloud {
	from {
		transform: translate(-41vw, 0px);
	}

	to {
		transform: translate(100vw, 0px);
	}
}

@keyframes cloud {
	from {
		transform: translate(-41vw, 0px);
	}

	to {
		transform: translate(100vw, 0px);
	}
}