@font-face{
	font-family: "Pacifico";
	src: "../fonts/Pacifico-Regular.ttf";
}

@keyframes show {

	from{
		opacity: 0;
	}

	to {
		opacity: 100;
	}
}

@keyframes hide {

	from {
		opacity: 100;
	}

	to {
		opacity: 0;
	}
}
body{
	--background-window: rgba(0, 0, 0, .5);;
	--background-task-bar: rgba(0, 0, 0, .5);
	--color-text: #fff;
	--color-icon: #fff;
	font-family: "Pacifico";
	color: var(--color-text);
	background-image: url('../img/background.jpg');
	background-size: cover;
}
input{
	border: none;
	font-size: 54px;
	color: #000;
	outline: none;
}
#loading {
	display: none;
	position: absolute;
    left: 50%;
    top: 50%;
	width: 800px;
	height: 400px;
	border-radius: 50px;
    transform: translate(-50%,-50%);
	background-color: var(--background-window);
	text-align: center;
}
#loading > h1 {
	font-size: 108px;
	display: table-cell;
	vertical-align: middle;
}

#login {
	animation-name: show;
	animation-duration: 5s;
	display: none;
	position: absolute;
    left: 50%;
    top: 50%;
	width: 800px;
	height: 400px;
	border-radius: 50px;
    transform: translate(-50%,-50%);
	background-color: var(--background-window);
	text-align: center;
}
#login > h1 {
	font-size: 54px;
}
#login > input {
	font-size: 44px;
	width: 780px;
	height: 80px;
	padding: 0 40px;
	margin: 20px 0;
	border-radius: 50px;
}
#login > input:last-child {
	color: #fff;
	background-color: #55d931;
	transition: background-color .5s;
	margin: 0;
	height: 80px;
	width: 250px;
}
#login > input:last-child:hover {
	background-color: #9dd98d;
	transition: background-color .5s;
}
#login > input::-webkit-input-placeholder {
	color: #000;
	opacity: 1;
	transition: opacity .5s ease;
}
#login > input:focus::-webkit-input-placeholder {
	opacity: 0;
	transition: opacity .5s ease;
}
#login > input::-moz-placeholder {
	color: #000;
	opacity: 1;
	transition: opacity 50s ease;
}
#login > input:focus::-moz-placeholder {
	transition: opacity 50s ease;
	opacity: 0;

}

#desktop{
	display: none;
}

#desktop #task_bar{
	display: flex;
    justify-content: space-between;
	z-index: 100;
	position: fixed;
	width: 100%;
	height: 80px;
	background-color: var(--background-task-bar);
}

#desktop #task_bar #time{
	margin: auto;
	text-align: center;
	padding: 10px;
}

#desktop #task_bar #time > p{
	margin: 0;
}

#desktop #task_bar #menu_icon{
	font-size: 50px;
	padding: 10px;
}

#desktop #task_bar #menu_icon:hover{
	color: gray!important;
	cursor: pointer;
}

#desktop #task_bar #main_menu{
	display: none;
	position: fixed;
	z-index: 100;
	right: 0;
	top: 80px;
	width: 400px;
	height: 500px;
	background-color: var(--background-task-bar);
	border-radius: 0 0 0 50px;
}

#desktop #task_bar #main_menu > form > input{
	width: 400px;
	height: 100px;
}
#desktop #task_bar #main_menu > form > input::-webkit-input-placeholder {
	color: #000;
	opacity: 1;
	transition: opacity .5s ease;
}
#desktop #task_bar #main_menu > form > input:focus::-webkit-input-placeholder {
	opacity: 0;
	transition: opacity .5s ease;
}
#desktop #task_bar #main_menu > form > input::-moz-placeholder {
	color: #000;
	opacity: 1;
	transition: opacity .5s ease;
}
#desktop #task_bar #main_menu > form > input:focus::-moz-placeholder {
	transition: opacity .5s ease;
	opacity: 0;

}
#desktop #task_bar #main_menu > ul{
	margin: 0;
	padding: 0;
}
#desktop #task_bar #main_menu > ul > li{
	width: 400px;
	height: 100px;
	border-bottom: 2px solid #fff;
	display: block;
}
#desktop #task_bar #main_menu > ul > li:nth-child(4){
	border-bottom: none;
}
#desktop #main_panel{
	position: fixed;
	width: 100%;
	height: 100%;
}
#desktop #main_panel .folber{
	position: absolute;
	width: 128px;
    height: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
	z-index: 1;
}
#desktop #main_panel .folber:hover{
	cursor: pointer;
	background: #ffffff30;
}
#desktop #main_panel .folber.active{
	cursor: pointer;
	background: #ffffff30;
}

#desktop #context_menu{
	position: absolute;
	z-index: 100;
	background-color: var(--background-task-bar);
	width: 200px;
	min-height: 0px;
	max-height: 100%;
	border-radius: 15px;
	display:none;
}

#desktop #context_menu .list{
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: center;
}
#desktop #context_menu .list li {
	padding: 5px;
}
#desktop #context_menu .list li:last-child {
	border-radius: 0 0 15px 15px;
}
#desktop #context_menu .list li:only-child:last-child {
	border-radius: 15px;
}
#desktop #context_menu .list li:first-child {
	border-radius: 15px 15px 0 0;
}


#desktop #context_menu .list li:nth-last-child(n) #context_menu{
	height: 15px*n;
}

#desktop #context_menu .list li:hover{
	background-color: black;
	cursor: pointer;
}

#desktop .window{
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top:0;
	bottom: 0;
	margin: auto;
	width: 800px;
	height: 600px;
	background: white;
	border: 1px solid black;
	border-radius: 5%;
	z-index: 100;
}

#desktop .window .panel{
	width: 100%;
	height: 50px;
	background: black;
	border-radius: 30px 30px 0 0;
}

#desktop .window .panel .title{
	text-align: center;
	font-size: 18pt;
}

#desktop .window .panel .window-close{
	position: absolute;
	right: 10px;
	top: 5px;
	font-size: 40px;
}

#desktop .window .panel .window-close:hover{
	color: gray;
	cursor: pointer;
}

.unselectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.show {
	animation: show;
	animation-duration: 1s;
	opacity: 100;
}

.hide {
	animation: hide;
	animation-duration: 1s;
	opacity: 0;
}

@media (max-height: 300px) {
  #desktop #main_panel .folber{
	    float: left;
	}
}