* {
	box-sizing: border-box;
	font-family: "Tahoma", sans-serif;
	transition: all 250ms;
}
body {
	background: white;
}

/*Form*/
#form {
	position: absolute;
	z-index: 1000;
	background: rgba(0,0,0,0.5);
	height: 100vh;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
}
#form div {
	position: relative;
	background: white;
	padding: 20px;
	width: 500px;
	height: 300px;
	margin-top: 100px;
	border-radius: 20px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.7);
}
select, input {
	width: 100%;
	border: 1px solid grey;
	margin: 10px 0px;
	padding: 6px 2px;
}
#form div #close {
	background: darkred;
	color: white;
	position: absolute;
	z-index: 100000;
	top: 10px;
	right: 10px;
	border-radius: 10px;
	border: none;
	padding: 4px 12px;
	cursor: pointer;
}
/*Botão Upload*/
#open {
	background: forestgreen;
	color: white;
	position: absolute;
	z-index: 100000;
	top: 5px;
	right: 5px;
	border-radius: 10px;
	border: none;
	padding: 4px 12px;
	cursor: pointer;
}
/*Botão Play/Pause*/
#authbtn {
	background: #0094ff;
	color: white;
	position: absolute;
	z-index: 100000;
	top: 5px;
	left: 5px;
	border-radius: 10px;
	border: none;
	padding: 4px 12px;
	cursor: pointer;
}
/*Botão Delete*/
button#delete {
	padding: 2px 8px;
	background: darkred;
	color: whitesmoke;
	position: fixed;
	z-index: 100000;
	bottom: 5px;
	right: 5px;
	text-decoration: none;
	border-radius: 8px;
	font-size: 13px;
	cursor: pointer;
	border: none;
	box-shadow: none;
}
button#delete:hover {
	background: tomato;
}

/*Sidebar*/
div#sidebar {
	position: fixed;
	z-index: 100000;
	bottom: 0px;
	bottom: 2px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: center;
}
div#sidebar button {
	position: relative;
	text-align: left;
	background: #08c;
	color: white;
	border: 1px solid #131631;
	margin: 2px 0px;
	border-radius: 4px;
	cursor: pointer;
}
div#sidebar button span {
	display: none;
	position: absolute;
	top: 0px;
	left: 25px;
	background: rgba(0, 0, 0, 0.85);
	color: white;
	width: 300px;
	padding: 1px 8px 2px 8px;
	border-radius: 8px;
}
div#sidebar button:hover span {
	display: block;
}

/*SLIDE*/
section#slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
section#slider div.slide {
	position: relative;
	width: 100%;
	height: 99vh;
	text-align: center;
    padding: 20px 20px 20px 4px;
}
section#slider div.slide img {
	height: 100%;
	max-width: 100%;
}