@import url(https://fonts.googleapis.com/css?family=Raleway:400,700);
html, body {
	font-family: 'Raleway', sans-serif;
}
body {
	margin-top: 120px;
}
body.footer-fixed {
	margin: 120px 0 60px;
}
.navbar.navbar-fixed-top, .navbar.navbar-fixed-top div.container, .navbar.navbar-fixed-top div.container > div {
	min-height: 100px;
}
.navbar.navbar-fixed-top .navbar-btn {
	float: right;
	margin-top: 36px;
}
footer div.container {
	text-align: right;
}
.navbar-trucape {
	background-color: #7AC895;
	border-color: #003C16;
}
.footer {
	background-color: #DDD;
	bottom: 0;
	height: 60px;
	padding-top: 15px;
	position: absolute;
	width: 100%;
}
.foot-fixed {
	background-color: #DDD;
	bottom: 0;
	height: 60px;
	padding-top: 15px;
	width: 100%;
}
.form-control-inline {
	display: inline-block !important;
	vertical-align: middle !important;
	width: auto !important;
}
li.bg-primary{background-color:#337ab7;}
li.bg-success{background-color:#dff0d8;}
li.bg-info{background-color:#d9edf7;}
li.bg-danger{background-color:#f2dede;}
li.bg-selected{background-color:#fc8f3e !important;}
ul.list-inline li {min-height: 215px; margin-bottom:5px}
ul.list-inline li label {font-size: small;}

.modal-xl {width:88%}
.thumbnail.col-lg-1.col-md-2.col-sm-3.col-xs-6.col-xxs-12 > img.thumbnail {
	margin-bottom: 5px !important;
	max-height: 165px;
}
.reverse-spinner {
	position: relative;
	height: 100px;
	width: 100px;
	border: 4px solid transparent;
	border-top-color: #388E3C;
	border-left-color: #66BB6A;
	border-radius: 50%;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}
.reverse-spinner::before {
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	content: "";
	border: 4px solid transparent;
	border-top-color: #66BB6A;
	border-left-color: #388E3C;
	border-radius: 50%;
	-webkit-animation: spinBack 1s linear infinite;
	animation: spinBack 1s linear infinite;
}
@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	} to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	} to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-webkit-keyframes spinBack {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	} to {
		-webkit-transform: rotate(-720deg);
		transform: rotate(-720deg);
	}
}
@keyframes spinBack {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	} to {
		-webkit-transform: rotate(-720deg);
		transform: rotate(-720deg);
	}
}