@import url('https://fonts.googleapis.com/css?family=Roboto:400,900');


body {
	background: #FFF;
	padding: 0;
	margin: 0;
	
	font-family: 'Helvetica';
	line-height: 24px;
}
h1 {
	padding: 0;
	margin: 5px 0px;
	color: #000;
	
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	
	font-size: 30px;
}

/*
a, a:visited, a:link {
	color: #ff5500;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #ff5500;
} */

/* Header */

/* Definido no brandStyle.css 
#header {
	background: #ff5500;
	height: 40px;
	padding: 20px;
}
*/

#header > .header-wrapper {
	max-width: 1200px;
	margin: auto;
}
#header .logo {
	background-size: 190px auto;
	height: 40px;
	width: 180px;
	margin-top: 5px;
	float: left;
}
#header #menu {
	float: right;
	max-width: 750px;
	margin-top: 10px;
}
#header #menu a {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;	
	text-transform: uppercase;
	
	border: 1.5px solid #FFF;
	border-radius: 500px;
	padding: 4px 15px;
	color: #FFF;
	margin-left: 20px;
	
	text-decoration: none;
}
#header #menu a:hover {
	background: #FFF;
	color: #000;
}
#header #user {
	float: right;
	width: 400px;
}



/* Homepage */

#welcome {
	display: flex;
	
	max-width: 1200px;

	margin: 40px auto 40px auto;
}
#welcome h1 {
	padding: 0;
	color: #000;
	
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	
	font-size: 25px;
}
#welcome .login {
	flex: 1;
	padding: 20px 50px 20px 50px;
	
	background: #eee;
	
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	border-top-left-radius: 10px;
}
#welcome .register {
	flex: 1;
	padding: 20px 50px 20px 50px;
	border: 1px solid #EEE;
	border-right: 3px solid #EEE;
	
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	border-bottom-right-radius: 10px;
}

#welcome .login input {
	font-size: 20px;
	
	padding: 20px;
	background: #FFF;
	
	width: 100%;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


#welcome #login {
  display: inline-block;
  border-radius: 4px;
  background-color: #333;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  padding: 15px;
  width: 120px;
  transition: all 0.5s;
  cursor: pointer;
  
  border-bottom: 1px solid #000;
}

#welcome #login span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

#welcome #login span:after {
  content: '\2192';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

#welcome #login:hover span {
  padding-right: 25px;
}

#welcome #login:hover span:after {
  opacity: 1;
  right: 0;
}



#welcome .register input {
	font-size: 20px;
	
	padding: 20px;
	background: #F9F9F9;
	
	width: 100%;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/*
#welcome #continue {
  display: inline-block;
  float: right;
  border-radius: 4px;
  background-color: #ff5500;
  border: none;
  color: #000;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  padding: 15px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  
  border-bottom: 1px solid #ff5500;
} */

#welcome #continue span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

#welcome #continue span:after {
  content: '\2192';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

#welcome #continue:hover span {
  padding-right: 25px;
}

#welcome #continue:hover span:after {
  opacity: 1;
  right: 0;
}



/* Dropdown Button */

.user {
	float: left;
	color: #000;
	width: 330px;
	
	text-align: right;
	
	margin-right: 20px;
	padding-top: 18px;
	line-height: 16px;
	font-weight: 700;
	
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}
.user > .funcao {
	font-weight: 400;
	font-size: 12px;
	font-style: italic;
}
.avatar {
	width: 60px;
	height: 60px;
	background: #FFF;
	background-size: 100% 100%;

	cursor: pointer;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Dropdown button on hover & focus */
.avatar:hover, .avatar:focus {
    background-color: #EEE !important;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: absolute;
    display: inline-block;
    
    float: right;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 99999 !important;
    
    right: 0;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}




.noflex-wrapper {
	margin: 20px auto 20px auto;
	max-width: 1200px;
}

.wrapper {
	margin: 20px auto 20px auto;
	display: flex;
	max-width: 1200px;
}
.wrapper > .left {
	flex: 0 0 250px;
	padding: 20px 20px 20px 0px;
	background: #FFF;
}
.wrapper > .right {
	flex: 3;
	padding: 20px 0px 20px 20px;
	background: #FFF;
	
	box-shadow: -8px 0px 5px -8px #CCC;
}
.clear { clear: both; }

/*
h2 {
	 
    background-color: #444;
    color: #FFF;
    padding: 8px 18px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    transition: 0.4s;
    
    text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	
	 border-radius: 5px;
	 border-left: 5px solid #ff5500;
	 margin-top: 5px !important;
}
hr {
	 border: 1px solid #ff5500;
} */


/* Inputs */

form#register > p.left {
	width: 48%;
	float: left;
	
	font-size: 10px;
	font-weight: bold;
	
	margin-top: -15px;
}
form#register > p.right {
	width: 48%;
	float: right;

	font-size: 10px;
	font-weight: bold;
	
	margin-top: -15px;

}

input:focus{
    outline: none;
}
input, select {
	margin-bottom: 15px;
	padding: 10px 0px 5px 0;
	
	border: 0;
	border-bottom: 1.5px solid #CCC;
	font-size: 14px;
}
input.valid {
	border-bottom: 1.5px solid green;
}
input.invalid {
	border-bottom: 1.5px solid red;
}

input.left, select.left {
	float: left;
	width: 48%;
}

select {
	border: 1px solid #d0d0d0;
	padding: 8px 8px;
	display: inline-block;
}
input.right, select.right {
	float: right;
	width: 48%;
}
input.full, select.full {
	float: left;
	width: 100%;
}

/*
button {
  display: inline-block;
  border-radius: 4px;
  background-color: #ff5500;
  border: none;
  color: #000;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  padding: 15px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  
  border-bottom: 1px solid #ff5500;
} */

button:disabled {
	background: #d5d5d5;
	border-bottom: 1px solid #EEE;
}

button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

button span:after {
  content: '\2192';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

button:disabled span:after {
  content: '✖';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

button:hover span {
  padding-right: 25px;
}

button:hover span:after {
  opacity: 1;
  right: 0;
}


.instituicao {
	display: none;
}

.upload {
	background: #F9F9F9;
	border: 1px solid #EEE;
	border-top: 3px solid #EEE;
}


.docs {
	display: flex;
  	align-items: center;

	padding: 0;
	margin: 5px 0;
	
	font-size: 12px;
	line-height: 15px;
	
	border-bottom: 0;
}
.docs input {
	padding: 10px;
	margin: 0;
	border-bottom: 0px;
}
.docs .name {
	padding: 10px;
	flex: 1;
	text-align: left;
	width: 120px !important;
}
.docs .input {
	padding: 10px;
	flex: 2;
	text-align: center;
}
.docs .duedate {
	padding: 10px;
	flex: 1.5;
}
.docs .duedate input {
	font-size: 20px;
	
	padding: 10px 20px;
	background: #F9F9F9;
	
	width: 100%;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}



/* Contents */

.vert-menu {
	padding: 0;
	margin: 0;
	
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.vert-menu a {
	text-decoration: none;
	color: inherit;
}
/*
.vert-menu li {
	list-style: none;
	text-decoration: none !important;
	
	margin: 8px 0px;
	
	padding: 6px 10px;
	border-left: 2px solid #ff5500;
    transition: 0.2s;

}
.vert-menu li:hover {
	background: #F9F9F9;
	border-left: 3px solid #ff5500;
} */

button.accordion {
    background-color: #f9f9f9;
    color: #444;
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}

button.accordion.active, button.accordion:hover {
    background-color: #eee;
}

/*
button.accordion:after {
    content: '\002B';
    color: #ff5500;
    font-weight: bold;
    float: right;
    margin-left: 5px;
} */

button.accordion.active:after {
    content: "\2212";
}

div.accordion-panel {
    padding: 0px 10px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.total-requests {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 5px 10px;
  height: 100px;
  width: 47%;
  transition: max-height 0.2s ease-out;
  display: inline-block;
  text-align: center;
}




/* Footer */

#footer {
	border-top: 3px solid #EEE;

	display: flex;
	max-width: 1200px;
	
	margin: 20px auto 50px auto;
	
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;

	font-size: 14px;
}
#footer > .box {
	flex: 1;
	
	padding: 10px 20px 0px 20px;
}
#footer > ul.box {
	flex: 1;
}
#footer > ul.box a {
	color: #333;	
	text-decoration: none;
}
#footer > ul.box li:hover {
	
	text-decoration: underline;
}
#footer > ul.box li {
	color: #333;
	font-weight: normal;
}
#footer > .contacts {
	flex: 1;
	background: #EEE;	
	padding: 10px 20px 10px 20px;

	-webkit-border-radius: 5px;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius: 5px;
	-moz-border-radius-topleft: 0;
	border-radius: 5px;
	border-top-left-radius: 0;
}

/* Notices */

.pending-account {
	margin: 20px auto;
	padding: 15px 20px;
	
	border-left: 4px solid #ff4d4d;
	background: #ffb0b0;
	
}
.pending-account a {
	font-weight: bold;
	color: inherit;
	
	text-decoration: none;
	
	float: right;
}


.notice {
  width: 300px;

  padding: 15px 25px 15px 55px;
  font-size: 14px;
  line-height: 20px;

  border-radius: 10px;
  position: relative;
  
  color: #4d4d4d;
  font-family: Helvetica, Arial, sans-serif;
  
  background: rgba(235,235,235,0.95);
  -webkit-box-shadow: 2px 2px 1px rgba(0,0,0,0.2);
  box-shadow: 2px 2px 1px rgba(0,0,0,0.2);
}


.notice .close {
  position: absolute;
  right: 13px;
  top: 5px;
  cursor: pointer;
  
  padding: 0;
}
.notice .close:before {
	content: "✖";
	color: #AAA;
}

.notice > .title {
  padding: 20px 0 0 0px;
  font: bold 18px Myriad, Helvetica, Arial, sans-serif;
  text-shadow: 0px 2px 1px #fff;
}
 
.notice p {
  font: bold 13px Myriad, Helvetica, Arial, sans-serif;
  text-shadow: 0px 1px 1px #fff;
}

.error {
    background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/587168-200.png");
    background-repeat: no-repeat;
	background-size: auto 30px;
	background-position: 10px center;
}
.success {
    background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/587164-200.png");
    background-repeat: no-repeat;
	background-size: auto 30px;
	background-position: 10px center;
}

.messageInTab {
    position: absolute;
    top: 15px;
    right: 15px;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.hide {
    display: none;
}



/* Documentos */

ul#documents {
	list-style: none;
	margin: 0;
	padding: 40px 5px 5px 5px;
	
	background: #FFF url('https://d30y9cdsu7xlg0.cloudfront.net/png/1120946-200.png') no-repeat;
	background-position: 10px 10px;
	background-size: 25px;
	border: 1px solid #EEE;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
ul#documents h2 {
	padding: 5px 5px 0px 35px;
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	width: 80%;
	color: #000;
	background: transparent;
	border: 0;
	
	margin-top: -32px !important;
}
ul#documents li {
	width: 130px;
	height: 110px;
	padding: 10px;
	
	position: relative;
	
	background: #EEE;
	display: inline-block;
	margin: 10px 5px !important;
    vertical-align: top;
	
	-webkit-border-radius: 0px;
	-webkit-border-bottom-right-radius: 35px;
	-moz-border-radius: 0px;
	-moz-border-radius-bottomright: 35px;
	border-radius: 0px;
	border-bottom-right-radius: 20px;
	
	font-family: 'Roboto', sans-serif;
	line-height: 20px;
	font-weight: 400;
}
ul#documents li .add {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	-webkit-border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 20px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 5px;
	transition: all 0.3s;

}
ul#documents li .add:hover {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	-webkit-border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 20px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 5px;
	
	background-color: rgba(0, 0, 0, 0.7);
	background-image: url('//turtle.adesl.pt/images/icons/add.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50px;
}
ul#documents li > .type {
	position: absolute;
	top: -20px;
	left: 11px;
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #333;
	text-transform: uppercase;
}
ul#documents li > a.view {
	position: absolute;
	top: -25px;
	right: 7px;
	z-index: 9999;
	background: transparent url('https://d30y9cdsu7xlg0.cloudfront.net/png/604101-200.png') no-repeat;
	background-size: 100% auto;
	width: 18px;
	height: 18px;
}
ul#documents li > small {
	top: 20px !important;
	font-size: 12px;
	line-height: 14px;
	color: #AAA;
}

ul#documents li.PENDENTE {
	background: #F9F9F9 url('images/icons/pending.png') no-repeat;
	background-size: 30px;
	background-position: right 7px bottom 7px;

	border-width: 30px 0px 0px 0px;	
	border-style: solid;
	border-color: #ffef82;
}
ul#documents li.APROVADO {
	background: #F9F9F9 url('images/icons/approved.png');
	background-size: 30px;
    background-repeat: no-repeat;
	background-position: right 7px bottom 7px;
	
	border-width: 30px 0px 0px 0px;	
	border-style: solid;
	border-color: #80dc98;
}
ul#documents li.REPROVADO {
	background: #F9F9F9 url('images/icons/refused.png') no-repeat;
	background-size: 30px;
	background-position: right 7px bottom 7px;

	border-width: 30px 0px 0px 0px;	
	border-style: solid;
	border-color: #ffafaf;
}
ul#documents li.FALTA {
	background: #F9F9F9 url('images/icons/missing.png') no-repeat;
	background-size: 30px;
	background-position: right 7px bottom 7px;

	border-width: 30px 0px 0px 0px;	
	border-style: solid;
	border-color: #2dc1ff;
}

.alert {
	font-size: 12px;
	margin: 10px 0px;
	color: #000;
}
.alert > a, .alert > a:hover, .alert > a:visited {
	color: inherit;
}

.president_photo {
	text-align: right;
	border-radius: 500px;
}

<style>
@import url('https://fonts.googleapis.com/css?family=Roboto:400,900');

.dashboard {
	max-width: 1200px;
	
	display: flex;
}
.dashboard > .pane {
	flex: 1;
	background: #F9F9F9;
	margin: 5px 5px 20px 5px;

	position: relative;
	padding: 15px 20px 5px 20px;
	
	font-family: 'Roboto', sans-serif;
	font-size: 40px;
	font-weight: bold;
	
	border-bottom: 2px solid #EEE;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.dashboard > .pane > .title {
	position: absolute;
	font-size: 14px;
	line-height: 12px;
	
	text-align: left;
	
	padding: 0px 0px 5px 0px;
	text-transform: uppercase;
	
	left: 0;
	right: 0;
	top: 0;
	
	background: #FFF;
	border-bottom: 2px solid #c1d34c;

}
.dashboard > .total {
	flex: 3;
	
	font-size: 60px;
	line-height: 40px;

	background: #dced6f url('https://d30y9cdsu7xlg0.cloudfront.net/png/1062390-200.png');

	border-bottom: 3px solid #c1d34c;

	background-repeat: no-repeat;
	background-position: 15px 43px;
	background-size: auto 55px;
	
}
.dashboard > .total > .value {
	margin-left: 60px;
	font-size: 55px;
}
.dashboard > .total small {
	font-size: 30px;
	font-weight: 400;
}
.dashboard > .total > .semana {
	font-size: 20px;
	font-weight: 400;
	
	border-top: 2px solid #000;
	margin-top: 10px;
}
.dashboard > .total > .semana strong {
	font-size: 1.5em;
}
.dashboard > .total > .semana i {
	font-size: 0.8em;
}

.dashboard > .lastweek {
	background: #F9F9F9 url('https://d30y9cdsu7xlg0.cloudfront.net/png/649099-200.png') no-repeat;
	background-position: right bottom;
	background-size: 40px 40px;
	background-position: bottom 5px right 5px;
	
	text-align: center;
	font-size: 50px;
	line-height: 45px;
}
.dashboard > .pending {
	background: #F9F9F9 url('https://d30y9cdsu7xlg0.cloudfront.net/png/649111-200.png') no-repeat;
	background-position: right bottom;
	background-size: 40px 40px;
	background-position: bottom 5px right 5px;
	
	
	text-align: center;
	font-size: 50px;
	line-height: 45px;
}
.dashboard > .funcao {
	text-align: center;
	font-size: 35px;
	line-height: 30px;

	
	padding: 50px 0px 20px 0px;
}
.dashboard > .funcao > .title {
	text-align: center;
}
</style>