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

@-webkit-keyframes rotating {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotating {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes pulse /* Safari and Chrome */ {
	0% {
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);
	}
	40% {
		-webkit-transform: scale(0.7);
		   -moz-transform: scale(0.7);
		    -ms-transform: scale(0.7);
		     -o-transform: scale(0.7);
		        transform: scale(0.7);
	}
	70% {
		-webkit-transform: scale(1.2);
		   -moz-transform: scale(1.2);
		    -ms-transform: scale(1.2);
		     -o-transform: scale(1.2);
		        transform: scale(1.2);
	}
	100% {
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);
	}
}
@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);
	}
	40% {
		-webkit-transform: scale(0.7);
		   -moz-transform: scale(0.7);
		    -ms-transform: scale(0.7);
		     -o-transform: scale(0.7);
		        transform: scale(0.7);
	}
	70% {
		-webkit-transform: scale(1.2);
		   -moz-transform: scale(1.2);
		    -ms-transform: scale(1.2);
		     -o-transform: scale(1.2);
		        transform: scale(1.2);
	}
	100% {
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);
	}
}

.pulse {
	-webkit-animation: pulse 250ms linear 1;
	   -moz-animation: pulse 250ms linear 1;
	    -ms-animation: pulse 250ms linear 1;
	     -o-animation: pulse 250ms linear 1;
	        animation: pulse 250ms linear 1;
}

.hidden-cards {
	display: none;
}

.cf:before,
.cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
	zoom: 1;
}

*,
input,
textarea {
	margin: 0;
	padding: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 1rem 2%;
	font-size: 14px;
	color: #2c3e50;
	background: #ecf0f1;
	font-family: "Roboto", Arial, sans-serif;
	font-weight: 400;
	padding-top: 3rem;
}

@media all and (min-width: 1200px) {
	body {
		font-size: 16px;
	}
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar {
	width: 0.5rem;
}

body ::-webkit-scrollbar {
	width: 0.25rem;
}

::-webkit-scrollbar-thumb {
	border: 0;
	background-color: #7f8c8d;
}

::-webkit-scrollbar-thumb:hover {
	background: #2c3e50;
}
input,
select,
textarea {
	font-size: 14px;
	color: #2c3e50;
	background: #FFF;
	font-family: "Roboto", Arial, sans-serif;
	font-weight: 400;
	border: 1px solid #FFF;
	/*
	-webkit-border-radius: 5px;
	border-radius: 5px;
	*/
	padding: 0.25rem 0.5rem;
	border-color: #bdc3c7;
}

@media all and (min-width: 1200px) {
	input,
	select,
	textarea {
		font-size: 16px;
	}
}

input:focus,
select:focus,
textarea:focus {
	border-color: #1abc9c;
	-webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,0.2);
            box-shadow: 0 10px 20px 0 rgba(0,0,0,0.2);
}

select {
	-webkit-appearance: menulist;
	   -moz-appearance: menulist;
	        appearance: menulist;
}

::selection {
	background: #1abc9c;
	color: #FFF;
}
::-moz-selection {
	background: #1abc9c;
	color: #FFF;
}

h1,
h1 input {
	font-size: 3rem;
	font-weight: 100;
	padding: 1rem 0 2rem 0;
	display: inline-block;
}

h1 input {
	padding: 0.25rem;
	margin-top: -0.25rem;
}

h1 input[readonly] {
	background: transparent;
	border: 0;
}

h2 {
	font-size: 1.2rem;
	font-weight: 400;
}

.login-page h2 {
	text-align: center;
}

h3 {
	font-size: 0.9rem;
	font-weight: 400;
}

a,
a:visited {
	color: #1abc9c;
	font-weight: 700;
	text-decoration: none;
}

a:hover,
a:active,
a:focus {
	color: #16a085;
}

.header {
	z-index: 9;
	background: #2c3e50;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 0.75rem 2%;
	color: #FFF;
}

@media all and (min-width: 768px) {
	.header {
		position: fixed;
	}
}

.header img {
	vertical-align: middle;
	margin-right: 2%;
}

.btn,
.card-btn.card-save {
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background: #1abc9c;
	color: #FFF;
	padding: 0.5rem 1rem;
	display: inline-block;
	cursor: default;
	font-weight: 700;
	text-transform: uppercase;
    letter-spacing: 1px;
}

.interest-save {
	margin: 2em 0;
	width: 250px;
	text-align: center;
	display: none;
}

.btn:hover,
.card-btn.card-save:hover {
	background: #16a085;
	color: #FFF;
}

.btn.btn-small {
	text-transform: none;
	margin-top: 1rem;
	font-weight: 400;
	letter-spacing: 0;
}

.row {
	overflow: hidden;
	margin: 0 -1%;
	width: 100%;
}

.row > div {
	float: left;
	width: 100%;
	padding: 0.5rem 1%;
}

@media all and (min-width: 768px) {
	.row > div.col-12 { width: 100%; }
	.row > div.col-8  { width: 66.666666%; }
	.row > div.col-7  { width: 58.333333%; }
	.row > div.col-6  { width: 50%; }
	.row > div.col-5  { width: 41.666666%; }
	.row > div.col-4  { width: 33.333333%; }
	.row > div.col-3  { width: 25%; }
	.row > div.col-2  { width: 16.666666%; }
	.row > div.col-1  { width: 8.333333%; }
}


.row label {
	display: block;
	line-height: 1.5rem;
	padding-right: 1rem;
	color: #95a5a6;
}
.row label.active {
	color: #2c3e50;
	font-weight: 700;
}

.row input,
.row select {
	display: block;
	width: 100%;
}


.list {
	list-style: none;
	margin: 0 0 1rem 0;
	padding: 0;
}

.list li {
	margin: 0;
	padding: 1rem;
}

.list li:nth-child(odd) {
	background: #ecf0f1;
}

label {
	display: block;
}

textarea {
	width: 100%;
	height: 320px;
	line-height: 180%;
	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
}

textarea[readonly=readonly] {
	background: #FFF;
	color: #95a5a6;
	border: 1px solid #ecf0f1;
}

.tab-body textarea {
	background: #FFF;
	color: #2c3e50;
}

.tab-body textarea[readonly=readonly] {
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
}

textarea.small {
	height: 150px;
}

.main-area {
	padding-bottom: 1rem;
}

.admin .main-project-list.main-area {
	margin-top: 60px;
}

.actions-area {
	background: #FFF;
	padding: 1rem;
}

@media all and (min-width: 1000px) {
	.main-area.small {
		width: 70%;
		float: left;
		padding-bottom: 1rem;
	}

	.actions-area {
		width: 28%;
		right: 0;
		top: 0;
		padding-top: 4.5rem;
		bottom: 0;
		position: fixed;
		z-index: 1;
	}
}

.actions-area h2,
.main-area h2 {
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.actions-area h2 {
	font-size: 1rem;
	margin-top: 2rem;
}

.actions-area h2:first-child {
	margin-top: 0;
}

.main-area h2 {
	margin-bottom: 1rem;
}

.btn-ask {
	margin-top: 1rem;
}

.btn-save-project {
	float: right;
	margin-top: 1rem;
}

.list h2,
.list h3 {
	display: inline-block;
}

.list i.fa {
	float: right;
}

.cf {
	overflow: hidden;
	width: 100%;
}

.file-list {
	list-style: none;
	background: #FFF;
	padding: 1rem;
	overflow: hidden;
	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
    height: 320px;
    overflow-x: hidden;
    overflow-y: auto;
}

.file-list li {
	font-weight: 700;
	position: relative;
	padding: 0.75rem 0;
	cursor: default;
	background: #FFF;
    border-bottom: 2px solid #1abc9c;
	white-space: nowrap;
	cursor: pointer;
}

.file-list li:hover {
	background: #ecf0f1;
}

.file-list li span {
	overflow: hidden;
	text-overflow: ellipsis;
	width: 90%;
	display: inline-block;
}

.file-list li .fa {
	margin-right: 0.5rem;
	width: 10%;
}

.project-info {
	overflow: hidden;
	margin-bottom: 1rem;
	line-height: 1.5rem;
}

@media all and (min-width: 768px) {
	.project-info {
		float: right;
		text-align: right;
		margin-top: 1.25rem;
	}
}

.lnk-logoff {
	float: right;
	position: relative;
	top: 6px;
}

.file-crud {
	display: none;
	background: #2c3e50;
	color: #FFF;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 1rem;
	position: absolute;
	top: 110%;
	left: 0;
	z-index: 9;
	-webkit-box-shadow: 0 10px 10px 0 rgba(0,0,0,0.5);
	box-shadow: 0 10px 10px 0 rgba(0,0,0,0.5);
}

.file-crud:before {
	content: "";
	position: absolute;
	top: -10px;
	left: 10px;
	border: 10px solid #2c3e50;
	border-top: 0;
	border-left-color: transparent;
	border-right-color: transparent;
}

.file-crud .lnk {
	color: #FFF;
	padding: 0.25rem 0;
	cursor: default;
}
.file-crud .lnk:hover {
	color: #1abc9c;
}

.tab-container {
    margin-top: 1rem;
}

.tab-header {
    overflow: hidden;
}

.tab-title {
    display: inline-block;
    padding: 1rem;
    cursor: default;
}

.tab-title.active {
    background: #FFF;
    font-weight: 700;
}

.tab-main {
    background: #ecf0f1;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
}

.tab-body h2:first-child {
    margin-top: 0;
}

.tab-body {
    padding: 1rem;
    background: #FFF;
}

.lnk .fa {
    width: 1rem;
    text-align: center;
    color: #7f8c8d;
}

@media all and (min-width: 1000px) {
	.chat {
		overflow-y: auto;
		overflow-x: hidden;
		margin-bottom: 1rem;
		position: absolute;
		top: 8rem;
		bottom: 15rem;
		left: 1rem;
		right: 1rem;
	}
}

.chat .sent,
.chat .recieved {
	background: #3498db;
	color: #FFF;
	padding: 0.5rem;
	border-radius: 5px;
	position: relative;
    margin: 0 10px 1rem 10px;
}

.chat .recieved {
	background: #1abc9c;
}

.chat .sent:before {
	content: "";
	position: absolute;
	bottom: 5px;
	right: -8px;
	border: 8px solid #3498db;
	border-right: 0;
	border-bottom: 0;
	border-top-color: transparent;
}

.chat .recieved:before {
	content: "";
	position: absolute;
	bottom: 5px;
	left: -8px;
	border: 8px solid #1abc9c;
	border-left: 0;
	border-bottom: 0;
	border-top-color: transparent;
}

.chat .date {
	font-size: 0.7rem;
	text-align: right;
	margin-top: 0.5rem;
}

.chat > div {
	display: none;
}

.chat > div.active {
	display: block;
}

.badge {
	display: inline-block;
	background: #e74c3c;
	color: #FFF;
	font-weight: 700;
	font-size: 0.7rem;
	line-height: 1rem;
	width: 1rem;
	height: 1rem;
	text-align: center;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	position: relative;
	top: -0.25rem;
	left: 0.25rem;
}


.card-row {
	margin: 0 -2% 2rem -2%;
	overflow: hidden;
}

.card {
	position: relative;
	background: #FFF;
	padding: 1rem;
	margin: 1rem 2%;
	line-height: 1.4rem;
	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
	        box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
}

.card.me {
	border: 2px solid #1abc9c;
}

.card.not-me {
	zoom: 1;
	filter: alpha(opacity=70);
	opacity: 0.7;
}

@media all and (min-width: 768px) {
	.card {
		width: 46%;
		float: left;
		margin: 2rem 2%;
		margin-top: 0;
	}
}

.card-author {
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 0.5rem;
	padding-left: 3rem;
	line-height: 2.5rem;
}

.card-showHist {
	cursor: pointer;
	position: absolute;
	top: 1.5rem;
	right: 1rem;
	color: #1abc9c;
	font-weight: 700;
}

.card-showHist .fa {
	margin-right: 0.5rem;
}

.card-photo {
	content: "";
	position: absolute;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	    -ms-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	top: 1rem;
	left: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	background-color: #1abc9c;
	background-position: center center;
	background-repeat: no-repeat;
	color: #FFF;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.card-date {
	color: #95a5a6;
	font-size: 0.8rem;
	text-align: right;
}

.card-comentarios {
	display: none;
	background: #ecf0f1;
	padding: 1rem;
	margin: 1rem 0;
	border-radius: 5px;
}

.card-comentarios.last {
	display: block;
}

.card textarea {
	height: 10rem;
}

.card-actions {
	text-align: right;
}

.card-btn {
	display: inline-block;
	padding: 1rem 0.5rem;
	text-transform: uppercase;
	font-weight: bold;
	color: #1abc9c;
	cursor: pointer;
	margin-top: 1rem;
}

.card-btn:hover {
	color: #16a085;
}

.card-btn.active,
.card-btn.active:hover {
	color: #2c3e50;
	cursor: default;
}

.swot-title {
	font-weight: 700;
	display: block;
	border-bottom: 1px solid #ecf0f1;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
}

@media all and (min-width: 1000px) {
	#send-chat {
		position: absolute;
		bottom: 1rem;
		left: 5%;
		right: 14rem;
		width: 90%;
	}
}

.sel-mentor-chat {
	font-weight: 400;
	text-transform: uppercase;
	border: 1px solid #ecf0f1;
}

.author,
.mentors {
	font-weight: 400;
	color: #95a5a6;
}

.author b,
.mentors b {
	font-weight: 400;
	color: #2c3e50;
}

.author b.me,
.mentors b.me {
	font-weight: 700;
}

.main-row {
	padding: 1rem 0;
}

@media all and (min-width: 768px) {
	.desc {
		float: left;
		width: 66%;
	}

	.files {
		float: right;
		width: 30%;
	}
}

.logo {
	display: block;
	margin-right: 1rem;
	position: relative;
}

@media all and (min-width: 768px) {
	.logo {
		display: inline;
	}
}

.logo img {
	width: 100px;
	position: relative;
	z-index: 2;
}

.more-cards {
	font-weight: 700;
	position: relative;
	width: 8rem;
	height: 6rem;
	margin: 2rem auto;
	cursor: pointer;
}

.more-cards:before,
.more-cards:after,
.more-cards b,
.more-cards span {
	z-index: 1;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #FFF;

	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.5);
	        box-shadow: 0 5px 10px 0 rgba(0,0,0,0.5);

	-webkit-transform: rotate(5deg);
	   -moz-transform: rotate(5deg);
	    -ms-transform: rotate(5deg);
	     -o-transform: rotate(5deg);
	        transform: rotate(5deg);
}

.more-cards:after {
	-webkit-transform: rotate(10deg);
	   -moz-transform: rotate(10deg);
	    -ms-transform: rotate(10deg);
	     -o-transform: rotate(10deg);
	        transform: rotate(10deg);
}

.more-cards b {
	-webkit-transform: rotate(15deg);
	   -moz-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
         -o-transform: rotate(15deg);
            transform: rotate(15deg);
}

.more-cards span {
	
	z-index: 2;
    text-align: center;
    padding-top: 1.5rem;

    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
}

.user-info {
	position: absolute;
	top: 0;
	right: 0;
	line-height: 4rem;
	padding-right: 4rem;
}

.user-avatar {
	position: absolute;
	top: 0.75rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	color: #FFF;
	
	background-color: #1abc9c;
	background-position: center center;
	background-repeat: no-repeat;
	
	
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	    -ms-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	
	-webkit-border-radius: 100%;
	        border-radius: 100%;
}

.user-name {
	display: inline-block;
}

.lnk-logout {
	display: inline-block;
	color: #1abc9c;
	cursor: pointer;
}
.lnk-logout:before {
	content: " (";
	color: #bdc3c7;
}
.lnk-logout:after {
	content: ")";
	color: #bdc3c7;
}

.notifications {
	position: absolute;
	display: inline-block;
	margin-right: 0;
	top: -1em;
	right: 1em;
	z-index: 9;
}

.notifications .list {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: #FFF;
	width: 320px;
	-webkit-box-shadow: 0 0 50px 0 rgba(0,0,0,0.5);
	box-shadow: 0 0 50px 0 rgba(0,0,0,0.5);
}
.notifications .list:before {
	position: absolute;
	content: "";
	top: -10px;
	right: 10px;
	border: 10px solid #FFF;
	border-top: 0;
	border-left-color: transparent;
	border-right-color: transparent;
}

.project-list,
.user-list {
	background: #FFF;

	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.5);
	        box-shadow: 0 5px 10px 0 rgba(0,0,0,0.5);
}

.project-list-item,
.user-list-item {
	padding: 1rem;
	border-bottom: 1px solid #ecf0f1;
}

.project-list-item-title,
.user-list-item-title {
	width: 80%;
	font-size: 1.2rem;
	font-weight: 700;
	display: inline-block;
}

.project-list-item-title .fa,
.user-list-item-title .fa {
	display: none;
	font-size: 28px;
	margin-right: 0.5rem;
	vertical-align: middle;
}

@media all and (min-width: 768px) {
	.project-list-item-title .fa,
	.user-list-item-title .fa {
		display: inline-block;
	}
}


@media all and (min-width: 768px) {
	.project-list-item-mentors {
		white-space: nowrap;
		float: right;
		padding-top: 0.2rem;
	}
}

.project-list-item-mentor,
.project-list-item-user {
	display: inline-block;
	margin-right: 1rem;
	margin-top: 1rem;
}

@media all and (min-width: 768px) {
	.project-list-item-mentor,
	.project-list-item-user {
		margin-top: 0;
		margin-right: auto;
		margin-left: 1rem;
	}
}

.project-list-item-user {
	font-weight: bold;
}

.project-search,
.user-search { 
	display: block;
	margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
	.project-search,
	.user-search {
		float: right;
		margin-top: 2.25rem;
	}
}

.mentor-add {
	display: none;
}

.mentor-add .lnk {
	color: #1abc9c;
    font-weight: 700;
    cursor: pointer;
}

.admin .mentor-list b {
	background: #95a5a6;
	padding: 0.1rem 0.25rem;
	border-radius: 5px;
	color: #FFF;
	position: relative;
	margin: 0 0.5rem 0 0;
    cursor: pointer;
}

.admin .mentor-list b:after {
	content: "\f00d";
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    margin-left: 0.25rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	background: #FFF;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 1rem;

	width: 320px;
	height: 480px;
	margin-left: -160px;
	margin-top: -240px;

	z-index: 9;

	display: none;

	-webkit-box-shadow: 0 0 0 9999px rgba(0,0,0,0.5);
	        box-shadow: 0 0 0 9999px rgba(0,0,0,0.5);
}

.btn-del-project,
.btn-del-user {
	float: right;
	background: #e74c3c;
	margin-top: -0.25rem;
	padding: 0.25rem 0;
	opacity: 0.5;
	width: 10%;
	text-align: center;
}

.btn-del-project:hover,
.btn-del-user:hover {
	opacity: 1;
	background: #e74c3c;
}

@media all and (min-width: 768px) {
	.btn-del-project,
	.btn-del-user {
		width: auto;
		padding: 0.5rem 1rem;
		margin-left: 1rem;
	}
}

.btn-new-project,
.btn-new-user {
	margin-top: 2rem;
	float: right;
}

.btn-new-project {
	display: none;
}

.popup-mentores-list {
	height: 340px;
	margin-top: 10px;
	overflow-y: scroll;
	overflow-x: hidden;
}

.popup-mentores-list-item {
	padding: 0.25rem 0;
	cursor: pointer;
}

.popup-mentores-list-item:hover {
	background: #ecf0f1;
}

.popup-mentores-search {
	width: 100%;
	margin-top: 1rem;
}

.login-box {
	overflow: hidden;
	background: #2c3e50;
	width: 90%;
	max-width: 320px;
	padding: 1rem;
	margin: 1rem auto;
	color: #FFF;
	line-height: 2rem;
	border-radius: 5px;
}

h1.login-title {
	text-align: center;
	margin: 0 auto;
	width: 100%;
	font-size: 149%;
	line-height: 2em;
	text-transform: uppercase;
	font-weight: 400;
}

.login-box input {
	width: 100%;
	margin-bottom: 1rem;
}

.field {
	position: relative;
	overflow: hidden;
	margin: 1rem 0 0 0;
}

.field label {
	display: block;
	width: 100%;
}


.field input,
.field select {
	display: block;
	width: 100%;
}

@media all and (min-width: 768px) {
	.field label {
		float: left;
	}

	.field input,
	.field select {
		float: left;
	}
}

.btn-save-user,
.btn-del-user1 {
	margin-top: 2rem;
	margin-right: 1rem;
}

.img {
	float: left;
	display: block;
	width: 100px;
	height: 100px;
	border: 1px solid #000;
	background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.admin-area {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 63px;
	background: #34495e; 
	color: #FFF;
	padding: 1rem;
}

@media all and (min-width: 768px) {
	.admin-area {
		position: fixed;
	}
}

.input-anexo {
	display: none;
}

.add-file {
	color: #1abc9c;
	font-weight: 700;
	cursor: pointer;
}

.add-file:hover {
	color: #16a085;
}

.btn-login {
	padding: 0.25rem 1.5rem;
	margin: 1rem 0 0 0;
	float: right;
}

.lnk-forgot-pass {
	text-align: right;
	margin-top: 1.25rem;
	color: #95a5a6;
	font-size: 80%;
	cursor: pointer;
	float: left;
}

.lnk-forgot-pass:hover {
	color: #FFF;
}

.main-logo {
	margin: 5rem auto;
	display: inline-block;
}

.breadcrumb {
	display: none;
}

.btn-header-back {
	background: #34495e;
	font-weight: 700;
	padding: 0.25rem 1rem;
	margin-top: 1rem;
	display: inline-block;
}

@media all and (min-width: 768px) {
	.breadcrumb {
		display: inline-block;
	}
	.btn-header-back {
		display: none;
	}
}

.home-img {
	max-height: 320px;
	margin: 2rem 2rem 2rem 0;
	float: left;
}

.info-link {
	display: inline-block;
	margin-right: 1rem;
	cursor: pointer;
}

.popup-info {
	display: none;
}

.popup-info.active {
	display: block;
}

.popup-info-content {
	position: fixed;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
	background: #FFF;
	padding: 1rem;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 99;
}

@media all and (min-width: 1024px) {
	.popup-info-content {
		top: 20%;
		bottom: 20%;
		left: 20%;
		right: 20%;
	}
}

.popup-info-content p {
	margin: 1rem 0 0 0;
}

.popup-info-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.8);
	z-index: 98;
}

.popup-info img {
	width: 100%;
	margin-top: 2rem;
}

@media all and (min-width: 1024px) {
	.popup-info img {
		width: 50%;
		float: left;
	}
}

.logo-box {

	/*
	background: #FFF;
	padding: 1rem;
	max-width: 480px;
	*/
	text-align: center;
	margin: 0 auto;
	margin-top: 10rem; 
}

@media all and (min-width: 1024px) and (min-height: 680px) {
	.logo-box {
		height: 90px;
		position: fixed;
		bottom: 2rem;
		left: 2%;
		right: 2%;
	}
}


.logo-box img {
	width: 150px;
	max-width: 100%;
	opacity: 0.5;
}

.logo-box img:hover {
	opacity: 1;
}

.btn.btn-new-comment {
    margin-left: 2%;
}

.title-alt, .hasInterest {
	margin-top: 2rem;
}

.list {
    line-height: 1.5rem;
}

.list a {
	font-weight: 400;
	color: #2c3e50;
	padding: 0.5rem;
	border-bottom: 1px solid #ecf0f1;
	display: block;
	overflow: hidden;
}

.list a b {
	white-space: nowrap;
}

.loader {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
	z-index: 9;
}

.loader:before {
	z-index: 2;
	content: "";
	text-align: center;
	line-height: 2em;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -1em;
	margin-left: -1em;
	width: 2em;
	height: 2em;
	border: 0.25em solid #333;
	border-top-color: #fff;
	-webkit-border-radius: 2em;
	        border-radius: 2em;
	-webkit-animation: rotating 1s linear infinite;
	   -moz-animation: rotating 1s linear infinite;
	    -ms-animation: rotating 1s linear infinite;
	     -o-animation: rotating 1s linear infinite;
	        animation: rotating 1s linear infinite;
}