.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: #bebcb4;
    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;
}

sidebar ul li:not(:last-child) {
	border-bottom: 1px solid black;
}

sidebar ul li.active {
	background-color: #f4f1e1;
}

sidebar ul li:hover {
	background-color: #f4f1e1;
	cursor: pointer;
}

sidebar ul li a {
	color: black;
	display: block;
	width: 100%;
	text-decoration: none;
}

sidebar ul li.active a, sidebar ul li:hover a {
	color: black;
	cursor: pointer;
}

section {
	width: 75%;
}

section .header {
	background-color: black;
	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;
}

.alliance {
	margin-top: 20px;
}

.alliance-title {
	background-color: black;
	padding: 10px;
	border-radius: 5px 5px 0px 0px;
	text-align: center;
	position: relative;
	color: white;
}

.alliance-title:hover {
	cursor: pointer;
}

.alliance-title p {
    font-size: 20px;
    margin: 5px 0px;
}

.members-title p {
    font-size: 20px;
    margin: 5px 0px;
}


.alliance-title span {
	font-size: 12px;
	position: absolute;
	right: 10px;
	bottom: 10px;
}

table {
	width: 100%;
	border-collapse: collapse;
}

table thead tr td {
	font-size: 18px;
    background-color: #bebcb4;
    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: rgba(0, 0, 0, 16%);
}

table tbody tr:nth-of-type(even) {
	background-color: rgba(0, 0, 0, .05);
}

.days, .members {
	margin-top: 30px
}

.days-title p {
    font-size: 20px;
    margin: 5px 0px;
}

.days-title, .members-title {
	background-color: black;
	padding: 10px;
	border-radius: 5px 5px 0px 0px;
	text-align: center;
	position: relative;
	color: white;
	font-size: 22px;
}

.days-title i, .members-title i {
	margin-left: 10px;
}

.days-title:hover, .members-title:hover {
	cursor: pointer;
}

.days-filters, .alliance-filters, .members-filters {
	padding: 15px 5px;
}

.days-filters .filters, .alliance-filters .filters, .members-filters .filters {
	display: flex;
}

.days-filters .filters div, .alliance-filters .filters div, .members-filters .filters div {
	margin-right: 30px;
}

.days-filters .filters div input, .alliance-filters .filters div input, .members-filters .filters div input {
	width: 100%;
}

.days-filters .times {
	display: flex;
	flex-wrap: wrap;
}

.days-filters .times .time {
	border-radius: 5px;
	border: 1px solid black;
	margin-right: 10px;
	padding: 2px 5px;
	margin-bottom: 10px;
}

.days-filters .times .time:hover, .days-filters .times .time.active {
	background-color: #bebcb4;
	cursor: pointer;
	color: white;
}

.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: #f4f1e1;
    padding: 20px 0px;
    border-bottom: 1px solid black;
}

@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}
}