body {
	overflow: hidden;
}

@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: url(MaterialFont.woff2) format('woff2');
}

@font-face {
	font-family: "Decondor";
	src: url("Fonts/AC.otf");
}

@font-face {
	font-family: "GLITCH";
	src: url("Fonts/FTY.ttf");
}

#KodLive {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 50%;
	border-radius: 10px;
	border: none;
	
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

.material-icons-2 {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 8px;
	line-height: 11px;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

.bg {
	animation: slide 50s ease-in-out infinite alternate;
	background-image: linear-gradient(-60deg, #0033ff 50%, #00ff22 50%);
	bottom: 0;
	left: -50%;
	opacity: 0.1;
	position: absolute;
	right: -50%;
	top: 0;
	z-index: 0;
}

.bg1 {
	animation-duration: 7s;
}

.bg2 {
	animation-direction: alternate-reverse;
	animation-duration: 4s;
}

.bg3 {
	animation-duration: 5s;
}

.circles {
	position: absolute;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	animation: animate 25s linear infinite;
	bottom: -150px;
}

.circles li:nth-child(1) {
	left: 25%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}

.circles li:nth-child(2) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-duration: 12s;
}

.circles li:nth-child(3) {
	left: 70%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}

.circles li:nth-child(4) {
	left: 40%;
	width: 60px;
	height: 60px;
	animation-delay: 0s;
	animation-duration: 18s;
}

.circles li:nth-child(5) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}

.circles li:nth-child(6) {
	left: 75%;
	width: 110px;
	height: 110px;
	animation-delay: 3s;
}

.circles li:nth-child(7) {
	left: 35%;
	width: 150px;
	height: 150px;
	animation-delay: 7s;
}

.circles li:nth-child(8) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 15s;
	animation-duration: 45s;
}

.circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}

.circles li:nth-child(10) {
	left: 85%;
	width: 150px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 11s;
}

@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 0;
	}

	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}
}

@keyframes slide {
	0% {
		transform: translateX(-25%);
	}
	100% {
		transform: translateX(25%);
	}
}

#MainContainer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(#6688ff, #66ff88);
	overflow: hidden;
}

#KodBar {
	position: absolute;
	top: 0;
	left: 0;
	width: 95px;
	height: 100%;
	background-image: linear-gradient(#66ff88, #6688ff);
}

#SizeBar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background-color: rgba(100, 100, 100, 0.5);
}

.SizeAction {
	border-radius: 3px;
	position: absolute;
	top: 25%;
	width: 12%;
	height: 50%;
	background-color: rgba(200, 250, 250, 0.75);
	text-align: center;
}

.SizeAction:hover {
	color: #ffffff;
	cursor: pointer;
}

#RedClose {
	left: 5%;
}

#RedClose:hover {
	background-color: #ff0000;
}

#YellowMinimize {
	left: 24%;
}

#YellowMinimize:hover {
	background-color: #dddd50;
}

#GreenFullscreen {
	left: 43%;
}

#GreenFullscreen:hover {
	background-color: #50dd50;
}

#BlueBack {
	left: 64%;
}

#BlueBack:hover {
	background-color: #0000ff;
}

#SkyNext {
	left: 83%;
}

#SkyNext:hover {
	background-color: #00eeff;
}

#KodSearch {
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 35px;
	font-size: 30px;
	background-color: rgba(100, 100, 100, 0.5);
	line-height: 35px;
	text-align: center;
	color: rgba(200, 250, 250, 0.75);
}

#KodSearch:hover {
	color: #446688;
	cursor: pointer;
}

#AppBar {
	position: absolute;
	top: 55px;
	left: 0;
	width: 100%;
	height: calc(100% - 160px);
	background-color: rgba(10, 10, 10, 0.5);
	text-align: center;
	overflow-x: hidden;
	overflow-y: auto;
}

#AppBar::-webkit-scrollbar {
   display: none;
}

.AppBtn {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: inline-block;
	margin: 5px auto;
	background-color: rgba(100, 200, 250, 0.75);
	line-height: 40px;
	color: rgba(200, 250, 250, 0.75);
}

.Widget {
	position: relative;
	width: 85px;
	height: 40px;
	border-radius: 10px;
	display: inline-block;
	margin: 5px auto;
	background-color: rgba(100, 200, 250, 0.75);
	line-height: 40px;
	color: rgba(200, 250, 250, 0.75);
}

.sun {
	background-color: #fada0b;
	border-radius: 100%;
	width: 20px;
	height: 20px;
	top: 7px;
	left: 25px;
	position: relative;
}

.cloud-main {
	opacity: 0.9;
	background: #fff;
	width: 35px;
	height: 15px;
	border-radius: 20px;
	position: relative;
	left: 30px;
	top: -10px;
}

.cloud-bubble-one {
	opacity: 1.0;
	background: #fff;
	width: 15px;
	height: 15px;
	position: relative;
	border-radius: 100%;
	left: 10px;
	top: -7px;
}

.cloud-bubble-two {
	opacity: 1.0;
	background: #fff;
	width: 20px;
	height: 15px;
	position: relative;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 10px;
	left: 15px;
	top: -17px;
}

.AppBtn:hover {
	color: #446688;
	cursor: pointer;
}

.Widget:hover {
	color: #446688;
	cursor: pointer;
}

#TheSock {
	position: absolute;
	top: calc(100% - 105px);
	left: 0;
	width: 100%;
	height: 85px;
	background-color: rgba(150, 150, 200, 0.5);
	text-align: center;
	overflow: hidden;
}

#TheBoot {
	position: absolute;
	top: calc(100% - 20px);
	left: 0;
	width: 100%;
	height: 20px;
	background-color: rgba(150, 150, 200, 0.5);
	text-align: center;
	overflow: hidden;
}

#DateTime {
	font-family: Decondor;
	position: absolute;
	top: 22%;
	left: 0;
	width: 100%;
	height: 56%;
	font-size: 13px;
	color: rgba(0, 0, 0, 0.75);
}

#DateTime:hover {
	color: #446688;
	cursor: pointer;
}

#MainContent {
	position: absolute;
	top: 0;
	left: 95px;
	width: calc(100% - 95px);
	height: 100%;
	background-color: transparent;
}

#ContentView {
	position: absolute;
	border: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background: none;
}

#RCmenu {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	background: #fff;
	color: #555;
	font-family: sans-serif;
	font-size: 11px;
	-webkit-box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
	-moz-box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
	box-shadow: 2px 2px 2px 0px rgba(143, 144, 145, 1);
	padding: 0px;
	border: 1px solid #c6c6c6;
}

#RCmenu p {
	display: block;
	color: #555;
	text-decoration: none;
	padding: 6px 8px 6px 30px;
	margin: 0px;
	width: 150px;
	position: relative;
}

#RCmenu p:hover {
	background: blue;
	color: white;
	cursor: pointer;
}

#SearchBox {
	position: absolute;
	top: 20%;
	left: 20%;
	z-index: 9;
	background-color: rgba(150, 150, 150, 0.9);
	text-align: center;
	overflow: hidden;
	resize: both;
	height: 60%;
	width: 60%;
	border-radius: 4px;
	box-shadow: 0px 0px 10px #555555;
	display: none;
}

#SearchBox::-webkit-scrollbar {
	display: none;
}

#SearchBoxInput {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	border: none;
	background-color: rgba(100, 150, 200, 0.5);
	color: rgba(20, 20, 20, 0.75);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	outline: none;
}

#SearchBoxResults {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: calc(100% - 40px);
	background-color: rgba(100, 200, 100, 0.5);
	border: none;
}

#InfoPanel {
	position: absolute;
	display: none;
	top: 0;
	left: 95px;
	width: calc(35% - 50px);
	height: 100%;
	background-color: rgba(200, 250, 200, 0.75);
	z-index: 2;
	flex: 1 1 auto;
	overflow-y: auto;
	backdrop-filter: blur(6px);
}

#InfoPanel::-webkit-scrollbar {
	display: none;
}

#SettingsPanel {
	position: absolute;
	display: none;
	top: 0;
	left: 95px;
	width: calc(35% - 50px);
	height: 100%;
	background-color: rgba(200, 250, 200, 0.75);
	z-index: 2;
	flex: 1 1 auto;
	overflow-y: auto;
	backdrop-filter: blur(6px);
}

#SettingsPanel::-webkit-scrollbar {
	display: none;
}

div.updates {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	overflow-y: auto;
	background-color: rgba(100, 150, 200, 0.5);
	margin: 3%;
	border: none;
	width: 94%;
	flex-direction: column;
	min-height: 10vh;
}

div.updates:hover {
	background-color: rgba(100, 150, 200, 0.75);
	cursor: pointer;
}

div.setstage {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	overflow-y: auto;
	background-color: rgba(100, 150, 200, 0.5);
	margin: 3%;
	border: none;
	width: 94%;
	flex-direction: column;
	min-height: 10vh;
}

div.setstage:hover {
	background-color: rgba(100, 150, 200, 0.75);
}

div.choice {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	overflow-y: auto;
	background-color: rgba(100, 150, 200, 0.5);
	margin: 3%;
	border: none;
	width: 94%;
	flex-direction: column;
	min-height: 10vh;
}

div.choice:hover {
	background-color: rgba(100, 150, 200, 0.75);
	cursor: pointer;
}

div.updateheading {
	background-color: #ccc;
	margin: 5px;
	padding: 5px;
	flex: 1;
}

div.updatebody {
	margin: 5px;
	padding: 5px;
	flex: 1;
	overflow: hidden;
}

div.stageheading {
	background-color: #ccc;
	margin: 5px;
	padding: 5px;
	flex: 1;
}

div.stagebody {
	margin: 5px;
	padding: 5px;
	flex: 1;
	overflow: hidden;
}

.stagebody img {
	width: 50px;
	height: 50px;
	margin: 5px;
	cursor: pointer;
}