.dn {display: none}

body {
	margin: 0;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #f4f1e1;
}

main {
	display: flex;
}

sidebar {
	width: 25%;
    height: 100vh;
    position: sticky;
    top: 0px;
    background-color: #121212;
    padding: 10px 0px;
    border-right: 1px solid black;
}

sidebar ul {
	padding-left: 0px;
}

sidebar ul li {
    text-align: center;
    font-size: 20px;
    padding: 20px 0px;
	background-color: #404040;
	color: #b3b3b3;
}

sidebar ul li:not(:last-child) {
	border-bottom: 1px solid #e4e6eb;
}

sidebar ul li.active {
	background-color: #282828;
}

sidebar ul li:hover {
	background-color: #282828;
	cursor: pointer;
}

sidebar ul li a {
	color: #b3b3b3;
	display: block;
	width: 100%;
	text-decoration: none;
}

sidebar ul li.active a, sidebar ul li:hover a {
	color: black;
	cursor: pointer;
}

section {
	width: 75%;
	background-color: #181818;
}

section .header {
	background-color: #181818;
	text-align: center;
	color: white;
	font-size: 20px;
	padding: 20px 0px;
	position: sticky;
	top: 0px;
	z-index: 99999999999;
}

section .header p {
	margin: 0;
	font-size: 24px;
}

section .header span {
	float: right;
	font-size: 12px;
	margin-right: 10px;
}

section .body {
	padding: 20px 30px;
}

section .body h1 {
	color: #fff;
}

section .body label {
	color: #e4e6eb;
}

section .body .form-control {
	background-color: #b3b3b3 !important;
}

section .body .button {
	background-color: #b3b3b3;
	border-radius: 6px;
	padding: 10px 20px;
	border: none;
	text-decoration: none;
	color: black !important;
}

.logo {
	text-align: center;
    margin-bottom: 20px;
}

.logo img {
	height: 175px;
    background-color: white;
    border-radius: 200px;
    width: 180px;
    padding: 20px;
}

section .body .button:hover {
	background-color: #e4e6eb;
}

hr {
	background-color: #e4e6eb !important;
}

.mt20 {
	margin-top: 20px !important;
}

table {
	width: 100%;
	border-collapse: collapse;
}

table thead tr td {
	font-size: 18px;
    background-color: #b3b3b3;
    color: white;
    text-align: center;
    padding: 10px 0px;
}

table tbody tr td {
	padding: 5px 0px;
	font-size: 16px;
	text-align: center;
}

table tbody tr:nth-of-type(odd) {
	background-color: #404040;
}

table tbody tr:nth-of-type(even) {
	background-color: #b3b3b3
}

.login {
	justify-content: center;
    align-items: center;
    height: 100vh;	
    flex-direction: column;
}

.login form {
    height: 300px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d7d2b8;
}

.login form div {
	width: 100%;
	margin-bottom: 30px;
	font-size: 22px;
}

.enviar {
	width: 100%;
}

.error {
	color: red;
}

.gap {
	color: #4f4c4c;
}

.tar {
	text-align: right;
}

.only-mobile {display: none}

#time-end {
	text-align: center;
    color: black;
    font-size: 40px;
    background-color: #b3b3b3;
    padding: 20px 0px;
    border-bottom: 1px solid #e4e6eb;
}

@media screen and (max-width: 768px) {
	.only-mobile {display: block; text-align: right}
	.only-mobile i {background-color: white; height: 50px; width: 50px; margin-right: 20px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 18px; justify-self: flex-end;}
	ul {display: none}
	ul.active {display: block !important}
	main {flex-direction: column}
	sidebar {width: 100%; height: 100%}
	section {width: 100%; padding: 20px 0px}
}