@charset "utf-8";
/* The Key Colors
light grey (background): #eaecef
grey (drop downs): #adb4bd
dark grey (inactive tab): #8f98a3

green (login button, input border, panel): #0079c1
light green (panel button): #c4df9c

text: #85909c

red (errors): #b22b09 rgba(178, 43, 9, 1)
*/

html {
	width: 100%;
	height: 100%;
}

/* Links */
a {
	color: #85909c;
}

a:hover, a:focus {
	color: #5f6a75;
	text-decoration: underline
}

/* Form Elements (input, select, button) */
.form-control {
	color: #85909c;
	border: 1px solid #0079c1;
}

.form-control:focus {
	border-color: #0079c1;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
	color: #909CA9;
	font-weight: 200;
	letter-spacing: 1px;
	text-transform: capitalize;
}

.form-control:-ms-input-placeholder {
	color: #909CA9;
	font-weight: 200;
	letter-spacing: 1px;
	text-transform: capitalize;
}

.form-control::-webkit-input-placeholder {
	color: #909CA9;
	font-weight: 200;
	letter-spacing: 1px;
	text-transform: capitalize;
}

.has-error .form-control {
	border-color: #b22b09;
}

.has-error .form-control:focus {
	border-color: #b22b09;
}

.has-error .help-block {
	color: #b22b09;
}

.form-group.password {
	position: relative;
}

.form-group.password .help-block {
	position: absolute;
	top: 8px;
	right: 10px;
}

html[dir=rtl] .form-group.password .help-block {
	left: 10px;
	right: auto;
}

.form-group.password .help-block a {
	color: #0079c1;
}

/** Buttons, secondary actions */
.btn {
	text-transform: uppercase;
	font-weight: 100;
	letter-spacing: 1px;
}

.btn, .btn-lg, .form-control, .nav-tabs.nav-justified > li > a {
	border-radius: 0 !important;
}

.btn-submit {
	color: #fff;
	background-color: #0079c1;
	border-color: #0069a8;
}

.btn-submit:hover, .btn-submit:focus, .btn-submit:active, .btn-submit.active, .open > .dropdown-toggle.btn-submit {
	color: #fff;
	background-color: #00598e;
	border-color: #00436a;
}

.btn-submit:focus, .btn-submit:active:focus, .btn-submit.active:focus {
	outline: 5px auto #0079c1;
}

.btn-secondary {
	color: #fff;
	background-color: #66AFE9;
	border-color: #0079c1;
}

.btn-dropdown {
	text-transform: inherit;
	color: #fff;
	background-color: #adb4bd;
	border-color: #adb4bd;
}

.btn-dropdown:hover, .btn-dropdown:focus, .btn-dropdown:active, .btn-dropdown.active, .open > .dropdown-toggle.btn-dropdown {
	color: #fff;
	background-color: #8f98a3;
	border-color: #8f98a3;
}

/* Action Links (logo - link) */
.action-link {
	display: inline-block;
	position: relative;
	padding-left: 40px;
	line-height: 34px;
	font-size: 1.2em;
	font-weight: 200;
	cursor: pointer;
}

.action-link :first-child {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 32px;
	height: 32px;
	line-height: 34px;
	font-size: 1.2em;
	text-align: center;
	border-radius: 50%;
}

.action-link img:first-child {
	padding: 4px;
}

.action-facebook :first-child {
	color: #fff;
	background-color: #3b5998;
}

.action-facebook:hover :first-child {
	background-color: #2d4373;
}

.action-thekey :first-child {
	background-color: #0079c1;
}

.action-thekey:hover :first-child {
	background-color: #00598e;
}

.action-relay :first-child {
	background-color: #00587a;
}

/* Top Navigation (tabs) */
.nav {
	background-color: #adb4bd;
}

.nav a {
	color: #fff;
	font-size: 18px;
	font-weight: 100;
	letter-spacing: 1px;
}

.nav-tabs.nav-justified > li > a {
	border: 0 solid transparent !important;
}

.nav > li > a:hover, .nav > li > a:focus {
	background-color: #8f98a3;
}

.nav-tabs.nav-justified > li.active > a {
	color: #85909c;
}

.nav-tabs {
	margin-top: -1px;
}

.nav-tabs li:last-of-type a {
	margin-right: -1px;
}

/* Primary Content (form area) */
.content-primary {
	background-color: #fff;
	padding-left: 0;
	padding-right: 0;
}

.content-header {
	text-align: center;
	color: #fff;
	width: 100%;
	display: block;
	background-color: #adb4bd;
	line-height: 1.33;
	padding: 10px 15px;
	font-size: 18px;
	font-weight: 100;
	letter-spacing: 1px;
}

.content {
	padding: 20px 20px 0;
}

.content .errors {
	text-align: center;
	background-color: #b22b09;
	color: #fff;
	padding: 5px 15px;
	font-weight: 100;
	box-shadow: 0px 5px 0px -2px rgba(0, 0, 0, 1);
}

.content p {
	font-size: 18px;
	font-weight: 200;
	color: #85909c;
}

legend {
	margin-bottom: 5px;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 200;
	letter-spacing: 1px;
	color: #85909c;
}

.content-primary li {
	color: #85909c;
}

.help-block {
	color: #85909c;
	font-weight: 200;
}

.help-block span.h5 {
	font-weight: 200;
}

/* Dropdowns */

.dropdowns {
	margin: 0;
}

.dropdown {
	padding-left: 20px;
	padding-right: 20px;
}

.dropdown .btn {
	text-align: right;
}

.dropdown .btn span:first-of-type {
	float: left;
}

.dropdown-menu {
	border: 0 solid transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	margin: 0;
	width: 100%;
}

/* Secondary Content (right side area) */
.content-secondary {
	padding: 20px;
	background-color: #0079c1;
	box-shadow: inset 15px 0 10px -10px rgba(0, 0, 0, 0.2);
	margin: 20px 0;

	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: column wrap;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

.content-secondary p a {
	color: #cccccc;
}

.content-secondary p {
	color: #fff;
	font-weight: 100;
	letter-spacing: 1px;
	font-size: 14px;
	text-align: center;
}

.content-secondary p:first-of-type {
	font-size: 18px;
	font-weight: 200;
}

img.logo-thekey {
	width: 90px;
	background: linear-gradient(145deg, #fff 20%, #adb4bd 80%);
	padding: 8px;
	border-radius: 50%;
	margin-bottom: 10px;
}

/* Media Overrides */
@media only screen and (max-width: 479px) {
	.dropdown-menu {
		position: inherit;
		background-color: #eaecef;
	}

	.dropdown + .dropdown {
		border-top: 1px solid #fff;
	}

	.dropdown-menu>li>a {
		white-space: normal;
	}
}

@media only screen and (min-width: 480px) {
	.dropdown {
		padding-left: 0;
		padding-right: 0;
	}

	.dropdown + .dropdown {
		border-left: 2px solid #fff;
	}

	#helpDropdown + .dropdown-menu {
		width: auto;
	}
}

@media only screen and (max-width: 669px) {
	img.logo-thekey {
		background: none;
		margin: 10px;
		padding: 0;
	}
}

@media (min-width: 670px) {
	body {
		background-color: #eaecef;
		padding: 50px 0;
	}

	.container-fluid {
		max-width: 600px;
	}

	.content-wrapper > .row {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-moz-align-items: stretch;
		-webkit-align-items: stretch;
		-ms-align-items: stretch;
		align-items: stretch;
	}

	.content-primary {
		padding-bottom: 46px;
	}

	.dropdowns {
		position: absolute;
		width: 100%;
		bottom: 0;
	}
}
