@import url('../fonts/fonts.css');
html, body, * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', 'Helvetica', sans-serif;
	line-height: 1.3;
}
img {
	max-width: 100%;
	height: auto;
}
body div#main.login #content {
	flex-direction: column;
}
body div#content .main-content  {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	width: 85%;
	position: relative;
	float: right;
	right: 0;
	padding: 30px;
}
body > div#main > div#content {
	justify-content: end;
	flex: 1;
}
a.main-logo {
	display: inline-block;
	margin: 0 auto;
	padding: 2vw;
	max-width: 150px;
	display: block;
}
#main-menu {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 15%;
}
#main.login {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100% !important;
}
#main.login #content {
	display: flex;
	align-items: center;
	justify-content: center;
} 

#loginform {
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 0 2vw rgba(0,0,0,0.1);
}
#loginform label {
	margin-bottom: 0.5em;
	display: block;
}
#loginform input {
	margin-bottom: 1em;
}
input[type="text"],
input[type="textarea"],
input[type="password"],
input[type="submit"],
select {
	width: 100%;
	padding: 0.5em 1em;
	border-radius: 8px;
	border: 1px solid #4b0990;
	font-size: 110%;
}
input[type="button"], button, .button, input[type="submit"] {
	background: #4b0990;
	color: #fff;
	font-weight: bold;
	display: block;
	width: auto;
	margin: 0 auto !important;
	border: none;
	border-radius: 5px;
	text-align: center;
	text-decoration: none;
	padding: 0.3em 0.7em;
	font-size: 100%;
}
div.actions {
	display: flex;
	gap: 4%;
	flex: 1;
	align-items: center;
	justify-content: center;
	font-size: 90%;
}
div.actions a, div.actions button {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.menu.actions .menu-icon {
	margin-right: 0;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.menu.actions .menu-icon svg path {
	fill: #fff;
}
div.info {
	flex: 10;
	display: flex;
	gap: 3%;
}
div.info div:first-child {
	flex: 1 1 15%;
}
div.info div {
	flex: 30;
}

div#content {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
}
div#content #main  {
	flex: 3;
	padding: 2vw 30px;
}
.menu-menu-usuario-container {
	flex: 1;
}
.menu-menu-usuario-container li a {
	padding: 0.7em 15px;
	font-weight: bold;
	text-decoration: none;
	color: #000;
	border-bottom: 1px solid #4b0990;
	line-height: 1.2;
	display: flex;
	align-items: center;
}
.menu-menu-usuario-container li a:hover {
	color: #4b0990;
}

.menu .menu-icon {
	display: inline-block;
	width: 100%;
	height: 100%;
	margin-right: 10px;
	margin-bottom: 0.3em;
	max-width: 30px;
	max-height: 20px;
	text-align: center;
}
.menu .menu-icon svg {
	width: auto;
	height: auto;
	max-width: 30px;
	max-height: 20px;
}
.menu .menu-icon svg path {
	fill: #4b0990;
}


.main-content ul li {
	display: flex;
	align-items: center;
	gap: 2%;
	padding: 20px;
	border: 1px solid #4b0990;
	border-radius: 10px;
	margin-bottom: 10px;
}

.user-profile-image {
	border-radius: 100em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 5%;
	height: auto;
	overflow: hidden;
}
div.info div.social {
	display: flex;
	flex: 1;
}
div.social a {
	display: block;
	padding: 5px;
}
div.social a i {
	display: block;
	width: 20px;
	height: 20px;
}
div.social a i svg {
	min-width: 100%;
	min-height: 100%;
}
#lista {
	width: 100%;
	padding-top: 4em;
}
#lista li {
	transition: all 0.3s ease-in-out;
}
#lista li.oculto {
	opacity: 0;
	display: none;
}
div.search input {
	padding-left: 40px;
}
.corredores {
	position: relative;
}
div.search {
	position: fixed;
	padding-bottom: 15px;
	top: 15px;
	right: 30px;
	background: #fff;
	width: calc( 85% - 60px );
}
div.search div {
	position: relative;
}
div.search i {
	position: absolute;
	top: 0;
	left: 7px;
	height: 100%;
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
}
body div#content .main-content form {
	width: 100%;
}