.header {
	background-color: $darkGray;
	padding: 10px 0;
	position: relative;
	.logo {
		max-width: 105px;
		padding-left: 15px;
	}
	.btn-group {
		position: absolute;
		top: 0;
		right: 0;
		.btn {
			border-radius: 0;
			padding: 10px 16px;
			transition: 250ms;
			&:focus,
			&:hover {				
				color: #fff;
				background-color: $lightBlue;
				border-color: $lightBlue;
			}
		}
		>.btn+.dropdown-toggle {
			padding: 10px 16px;
		}
		.btn-back,
		.settings-toggle {
			background-color: transparent;
			border-color: transparent;
			border-left: 1px solid $gray;
		}
		.dropdown-menu {
			left: auto;
			right: 0;
			border-radius: 0;
		}
		> a {
			.fa {
				// vertical-align: middle;
				margin-right: 5px;
			}
		}
		.view {
			&.active {
				&:after {
					content: "\f00c";
					display: inline-block;
					font: normal normal normal 14px/1 FontAwesome;
					font-size: inherit;
					text-rendering: auto;
					-webkit-font-smoothing: antialiased;
					-moz-osx-font-smoothing: grayscale;
					margin-left: 10px;
				}
			}
		}
	}
}