/* prepend jquery.custom.css */
/* prepend fontface.css */
/* prepend variables.scss */
/* prepend font-awesome.min.css */
/* prepend select2/select2.css */
/* prepend slick.css */
/* prepend slick-theme.css */
/* append omnisearch.css */
/* append jquery.autocomplete.css */
/* append home.css */
/* append flightaware-common.css */
/* append header.css */
/* append footer.css */

/* Compatibility for older browsers */
header,
nav,
section,
article,
aside,
footer,
hgroup {
	display: block;
}

.float_right {
	float: right;
}

.float_left {
	float: left;
}

.text_align_left {
	text-align: left;
}

.text_align_right {
	text-align: right;
}

html[dir="RTL"] {
	.float_right {
		float: left;
	}

	.float_left {
		float: right;
	}

	.text_align_left {
		text-align: right;
	}

	.text_align_right {
		text-align: left;
	}
}

/* Eventual replacement for viewport meta tag */
@-webkit-viewport {
	width: device-width
}

@-moz-viewport {
	width: device-width
}

@-ms-viewport {
	width: device-width
}

@-o-viewport {
	width: device-width
}

@viewport {
	width: device-width
}


/* Flex Boxes */
.flex {
	@include flexBox;
}

.row {
	@include flexDirectionRow;
}

.space-between {
	@include flexSpaceBetween;
}

.align-center {
	@include flexAlignCenter;
}

/* Margin padding helper classes */
$spaceamounts: (
	1,
	2,
	5,
	10,
	15,
	20,
	25,
	30,
	35,
	40,
	45,
	50,
	75,
	100
); // Adjust this to include the pixel amounts you need.
$sides: (
	top,
	bottom,
	left,
	right
); // Leave this variable alone

@each $space in $spaceamounts {
	@each $side in $sides {
		.m#{str-slice($side, 0, 1)}-#{$space} {
			margin-#{$side}: #{$space}px !important;
		}

		.p#{str-slice($side, 0, 1)}-#{$space} {
			padding-#{$side}: #{$space}px !important;
		}
	}
}

@each $space in $spaceamounts {
	.ma-#{$space} {
		margin: #{$space}px !important;
	}

	.pa-#{$space} {
		padding: #{$space}px !important;
	}
}

.smAndUp {
	@media only screen and (max-width: $screen-small) {
		display: none !important;
	}
}


/* UI Elements */

.blue_button,
.orange_button {
	@include antialias();

	display: inline-block;
	font-size: 15px;
	color: white;
	line-height: 0.472;
	text-align: center;
	border: 0px;
	border-radius: $standardRadius;
	outline: 0px;
	padding: 12px 12px;
	min-width: 75px;
	cursor: pointer;
	box-sizing: border-box;


	&:focus {
		padding: 11px 11px;
	}
}

.blue_button {
	background-image: -moz-linear-gradient(90deg, rgb(0, 132, 240) 0%, rgb(18, 145, 248) 66%, rgb(36, 157, 255) 100%);
	background-image: -webkit-linear-gradient(90deg, rgb(0, 132, 240) 0%, rgb(18, 145, 248) 66%, rgb(36, 157, 255) 100%);
	background-image: -ms-linear-gradient(90deg, rgb(0, 132, 240) 0%, rgb(18, 145, 248) 66%, rgb(36, 157, 255) 100%);
	background-color: $cerulean;

	&:focus {
		border: 1px solid $cerulean;
		box-shadow: 0 0 3px $cerulean;
	}
}

.orange_button {
	background-image: -moz-linear-gradient(90deg, rgb(239, 104, 12) 0%, rgb(225, 117, 0) 66%, rgb(237, 128, 0) 100%);
	background-image: -webkit-linear-gradient(90deg, rgb(239, 104, 12) 0%, rgb(225, 117, 0) 66%, rgb(237, 128, 0) 100%);
	background-image: -ms-linear-gradient(90deg, rgb(239, 104, 12) 0%, rgb(225, 117, 0) 66%, rgb(237, 128, 0) 100%);
	background-color: $orange;

	&:focus {
		border: 1px solid white;
		box-shadow: 0 0 3px white;
	}
}



/* Disabled button state */
.disabled_button {
	@include antialias();

	display: inline-block;
	font-size: 15px;
	color: white;
	line-height: 0.472;
	text-align: center;
	border: 0px;
	border-radius: $standardRadius;
	outline: 0px;
	padding: 12px 12px;
	min-width: 75px;
	cursor: pointer;
	box-sizing: border-box;
	background: rgb(128, 194, 248);
	/* Old browsers */
	background: -moz-linear-gradient(top, rgba(128, 194, 248, 1) 0%, rgba(136, 200, 252, 1) 66%, rgba(146, 206, 255, 1) 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(128, 194, 248, 1)), color-stop(66%, rgba(136, 200, 252, 1)), color-stop(100%, rgba(146, 206, 255, 1)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(128, 194, 248, 1) 0%, rgba(136, 200, 252, 1) 66%, rgba(146, 206, 255, 1) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(128, 194, 248, 1) 0%, rgba(136, 200, 252, 1) 66%, rgba(146, 206, 255, 1) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(128, 194, 248, 1) 0%, rgba(136, 200, 252, 1) 66%, rgba(146, 206, 255, 1) 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, rgba(128, 194, 248, 1) 0%, rgba(136, 200, 252, 1) 66%, rgba(146, 206, 255, 1) 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80c2f8', endColorstr='#92ceff', GradientType=0);
	/* IE6-9 */

	&:focus {
		padding: 11px 11px;
	}
}

.actionButton {
	display: inline-block;
	font-size: 16px;
	font-family: $Lato;
	color: $cerulean;
	background: transparent;
	text-align: right;
	line-height: 1.333;
	text-decoration: none;
	padding: 5px 10px;
	border: 1px solid $cerulean;
	border-radius: $standardRadius;
	cursor: pointer;

	&::after {
		content: " ›";
	}
}

.dismissButton {
	display: inline-block;
	font-size: 16px;
	font-family: $Lato;
	color: $red;
	background: transparent;
	text-align: right;
	line-height: 1.333;
	text-decoration: none;
	padding: 5px 10px;
	border: 1px solid $red;
	border-radius: $standardRadius;
	cursor: pointer;

}

.actionButton:visited {
	color: $cerulean;
}


body {
	font-family: $Roboto;
	font-size: 12px;
	margin: 0;
	color: $mine-shaft;
	border: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
}


.pageContainer {
	@include main-content-width();

	background: white;
	margin: 2em auto 0 auto;
	font-size: 12px;

	p,
	li {
		line-height: 1.2;
	}
}

/* Header */

#topWrapper {
	background: $midnight-blue;
	background: -webkit-linear-gradient(#002F5D, #002F5D 60%, #021624);
	background: -moz-linear-gradient(#002F5D, #002F5D 60%, #021624);
	background: -ms-linear-gradient(#002F5D, #002F5D 60%, #021624);
	background: linear-gradient(#002F5D, #002F5D 60%, #021624);

	box-shadow: 0 1px 1px -1px #888;

	.topMenuList {

		i.fa,
		img.fa {
			display: none !important;
		}
	}
}

#topContent {
	@include main-content-width();

	margin: 0px auto;
	padding-top: 14px;
}

.faLogo {
	height: 46px;
	width: 123px;
}

/* html[dir="RTL"] {
	#headerClock {
		right: initial;
		left: 0;
	}
} */

// bottom 1px line at the top of the page for the account type
.accountHighlightBlue {
	border-bottom: 1px solid $cerulean !important;
}

.accountHighlightGreen {
	border-bottom: 1px solid $account-green !important;
}

.accountHighlightOrange {
	border-bottom: 1px solid $account-orange !important;
}

.accountHighlightYellow {
	border-bottom: 1px solid $account-yellow !important;
}

.accountHighlightWhite {
	border-bottom: 1px solid $account-white !important;
}

.topMenuBar {
	@include main-content-width();

	font-size: 13px;
	margin: 0px auto;

	ul {
		position: relative;
		padding: 0;
		margin: 0;

		>li {
			display: inline-block;
			list-style-type: none;
			margin-right: 10px;
			padding: 0px 5px;
			color: white;
			line-height: 1.8;

			@include antialias();

			&:hover {
				background: rgba(black, .2);
			}

			&:first-child {
				margin-left: -5px;
				padding-left: 5px;
			}

			>a {
				text-decoration: none;
				color: white;
			}
		}
	}

	.userSymbol {
		color: $orange;
	}

	.localePicker {
		@include appearanceNone;
		color: white;
		width: auto;
		border: 1px solid gray;
		border-radius: 3px;
		background: no-repeat 96% / 9% url("/images/down_arrow_white.svg") rgba(0, 47, 93, 0.2);
		padding: 2px 4px;
		margin: 1px 0;
		font-size: 0.9em;

		option {
			color: initial;
		}
	}

	.noHover:hover {
		background: rgba(0, 47, 93, 0.2);
	}
}

.topMenuList {
	@include flexBox();
	@include flexWrap();
	@include flexAlignCenter;

	.sp_menu_item {
		padding: 0px 5px;
		color: white;
		line-height: 1.8;
		word-wrap: none;

		@include antialias();

		&:hover {
			background: rgba(black, .2);
		}

		.accountUpgradeLink a {
			color: $account-white;
		}

		>a {
			text-decoration: none;
			color: white;
		}

		.lock-icon {
			background: url(/images/icon-locked-feature.svg);
			background-repeat: no-repeat;
			background-position: center;
			display: inline-block;
			height: 13px;
			width: 12px;
			margin: 0 4px 0 0;
		}

		.locked {
			opacity: 0.4;
		}

		div.premium-ftb-modal-container {
			@include flexBox();
			@include flexAlignCenter();
			@include flexCenter();
			width: 100%;
			position: absolute;
			top: 40%;

			div.premium-ftb-modal {
				background-color: $midnight-blue;
				width: 75%;
				height: auto;
				border-radius: 3px;
				z-index: 1000;
				cursor: pointer;

				span.modal-text {
					font-family: $LatoLight;
					display: inline-block;
					color: $white;
					white-space: normal;
					margin: 5px;
				}
			}
		}
	}

	.accountTypeLabel {
		margin: 0 auto;
		text-align: center;
	}

	#headerClock {
		margin-left: auto;
	}
}

.accountTypeLabel {
	font-weight: bold;
}

.accountTypeBlue {
	color: $cerulean !important;
}

.accountTypeGreen {
	color: $account-green !important;
}

.accountTypeOrange {
	color: $account-orange !important;
}

.accountTypeYellow {
	color: $account-yellow !important;
}

.accountTypeWhite {
	color: $account-white !important;
}

.accountUpgradeLink {
	text-transform: none;
	font-weight: normal;
}

.accountUpgradeLink a {
	color: $account-white;
	text-decoration: underline !important;
}

.topDropDown .accountTypeLabel {
	text-transform: none;
	color: $cerulean !important;
	font-weight: normal;

	@media (max-width: 767px) {
		padding-left: 10px;
	}
}

@media (min-width: 767px) {
	.topDropDown .accountUpgradeLink a {
		color: $cerulean !important;
	}
}

.topMenuBarWrapper {
	background: #022241;
}

.topDropDown {
	display: none;
	text-align: left;
	font-weight: normal;
	color: rgb(68, 68, 68);
	padding: 5px;
	top: 2.1em;
	margin-top: -4px;
	min-width: 250px;
	position: absolute;
	border: 1px solid rgb(221, 221, 221);
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	background: white;
	z-index: 99999;

	/* Disable anti-alias, it seems to cause rendering problems in the menu */
	@include disable-antialias();

	a:link {
		text-decoration: none;
		height: 14px;
		font-weight: normal;
		color: $cerulean;
	}

	&.hover {
		display: block;
	}

	li:hover {
		background: transparent !important;
	}

	.topUserMobileAccountLink {
		display: none;
	}
}

.topDropDownBlue {
	color: $cerulean;
}

.topDropDownListContainer {
	border-bottom: 1px solid rgb(221, 221, 221);
	padding-bottom: 5px;
}

.topDropDownList {
	display: inline;
	padding: 0px;
	padding-bottom: 10px;
	padding-right: 20px;
	list-style: none;
	background: white;
	font-size: 12px;
}

.topDropDownList>li {
	display: inline-block;
	padding: 5px;
}

.topDropDownList li a {
	color: $cerulean !important;
}

.dropDownRecent,
.dropDownPlaceholder {
	padding-bottom: 10px;
	padding-top: 10px;
	min-height: 11px;
}

.dropDownPlaceholder img {
	display: block;
	margin: auto;
}

.dropDownSubtitle {
	text-align: center;
	font-family: $Lato;
	text-transform: lowercase;
	font-variant: small-caps;
	font-size: 14px;
	letter-spacing: 1px;
	display: block;
}

.dropDownTable {
	font-size: 11px;
	width: 100%;
}

.dropDownTable tr:not(:first-child) {
	border-top: 1px rgb(221, 221, 221) solid;
}

.dropDownTable tr:hover {
	background-color: #e6f4f8;
}

.dropDownTable td {
	padding: 4px 4px;
	line-height: normal;
}

.logoLeft {
	width: 8rem;
}

.menuIcon {
	display: none;
	float: left;
	color: $white;
	padding: 1rem 3rem 0 1rem;
}

.forgot {
	@include disable-antialias();

	padding-left: 10px;
	top: 42%;
	font-size: 12px;
	font-family: $Roboto;
	font-weight: 300;
	letter-spacing: .1em;
	cursor: pointer;

	>a:link,
	>a:visited {
		text-decoration: underline;
		color: $white;
	}

	display: table-cell;
}

html[dir="RTL"] {
	.forgot {
		padding-left: 0;
		padding-right: 10px;
	}
}

.headerTrack {
	@include antialias();
	position: relative;
	white-space: nowrap;
	margin: 0 auto;
	padding-top: 10px;

	.hide {
		display: none !important;
	}
}

.trackSelect {
	position: absolute;
	top: 5.5px;
	left: 0;
	opacity: 0;

	cursor: pointer;
}

.search_in {
	@include flexBox;
	@include flexAlignCenter;

	position: relative;
	box-sizing: border-box;
	height: 31px;
	border: 1px solid $silver;
	overflow: hidden;
	color: $midnight-blue;
	font-size: 13px;
	background: $mercury;
	border: 1px solid $mercury;
	border-radius: $standardRadius 0px 0px $standardRadius;
	padding: 8px;
}

html[dir="RTL"] {
	.search_in {
		margin-right: 0;
		border-radius: 0px $standardRadius $standardRadius 0px;
	}

	.trackSubmit {
		button {
			margin-left: 5px;
			border-radius: $standardRadius 0px 0px $standardRadius;
		}
	}
}

.search_in_content {
	&::after {
		content: " ▼";
		font-size: 75%;
		color: $midnight-blue;
	}
}

.trackSubmit {
	display: inline-block;
	z-index: 1;
	box-sizing: border-box;
	width: auto;
	vertical-align: bottom;

	button {
		min-width: 33px;
		height: 31px;
		border-radius: 0 $standardRadius $standardRadius 0;

		img {
			width: 16px;
		}
	}
}

.quickTrackerContainer {
	.trackSubmit {
		button {
			min-height: 31px;
			height: auto;
			line-height: inherit;
		}
	}
}

.searchOption {
	display: inline-block;
}

.headerTrack {
	/** a few hardwired values for non-responsive backward compatibility **/
}

.searchOption {
	width: auto;
	box-sizing: border-box;
	overflow: hidden;
	border: 0;
}


.trackInput {
	position: relative;
	box-sizing: border-box;
	background: $white;

	border: 1px solid $white;

	input {
		position: relative;
		width: 100%;
		-webkit-appearance: none;
		font-size: 13px;
		padding: 6px 6px 6px 6px;
		outline: 0px;
		box-shadow: none;
		color: $black;
		background: transparent;
		height: 29px;

		border: 0;

		&:focus {
			outline: none;
		}

		&.ui-autocomplete-loading {
			background: url(/images/loading-small-gray.gif) no-repeat 95% center;
			border-right: 10px solid
		}

		&::placeholder {
			color: #999;
			font-style: italic; 
		}
	}

	&.active {
		border-color: $cerulean;
	}

}

.trackInputContainerStacked {
	display: block !important;
	padding-bottom: 5px;
}

.multiple .trackInputContainer,
.multiple[data-fa-search-type="airportSearch"] .trackInput {
	/* When there are multple inputs, we need slightly different behavior */
	display: inline-block;
	// margin-right: 10px;

	&:first-child {
		border-right: 2px solid $mercury;
	}
}

div.trackInputContainer.flightNumber {
	margin-right: 0 !important;
}

html[dir="RTL"] .multiple .trackInputContainer,
html[dir="RTL"] .multiple[data-fa-search-type="airportSearch"] .trackInput {
	margin-right: 0px;

	&:first-child {
		border-left: 2px solid $mercury;
	}
}


.header_swap {
	@include flexBox;
	@include flexCenterCenter;
	position: relative;
	height: 31px;
	background: white;
	min-width: 30px;

	img {
		padding: 3px;
		padding-bottom: 5px;
	}
}

#headerExtrasContainer {
	@include main-content-width();

	@include flexBox();
	@include flexDirectionRowReverse();
	@include flexSpaceBetween();

	margin: .5em auto;
}

#forensics {
	direction: ltr;
	font-size: 9px;
	color: #707277;
}

.homePageHeader,
.homePageHeader a {
	display: inline-block;
	font-family: $LatoLight;
	color: $orange !important;
	text-transform: uppercase;
	letter-spacing: .15em;
}

/* Login box */

.loginBox {
	max-width: 560px;
	margin: 0 auto;

	.creds {
		@include flexBox();
		@include flexSpaceBetween();

		@media screen and (max-width: $screen-small) {
			@include flexDirectionColumn();
		}

		margin-bottom: 15px;
	}

	input[type=text],
	input[type=password] {
		padding: 5px;
		border: 1px solid $silver;
		width: 47%;
		outline: 0;

		&:focus {
			border: 1px solid $cerulean;
		}

		@media screen and (max-width: $screen-small) {
			width: unset;
		}
	}

	button[type=submit] {
		float: right;
	}


	.register {
		padding-top: 2em;
		border-top: 7px solid $midnight-blue;
		margin-top: 3.5em;

		a {
			text-decoration: none;
		}
	}

	.registerButton {
		padding-top: 1em;
	}
}


#popupLogin {
	display: none;
	width: 560px;
	position: fixed;
	top: 150px;
	left: 50%;
	margin-left: -280px;
	margin-top: -90px;
	z-index: 99999;
	background: white;

	.inline_form_box {
		margin: 0;
		border: 0;
	}

	.inline_form_box_content {
		padding: 1em 2em 2em 2em;
	}

	border: 1px solid $cerulean;
	box-shadow: 0px 10px 10px rgba(black, .5);
}

#faPopupBox {
	display: none;
	width: 486px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-left: -242px;
	margin-top: -128px;
	z-index: 99999;
	background: white;
	color: $mine-shaft;
	border: 1px solid $cerulean;
	box-shadow: 0px 10px 10px rgba(black, .5);
	padding: 2em;

	.popup_content_container {
		margin: 0;
		border: 0;
	}

	p {
		font-size: 1.25em;
	}

	.popup-close {
		top: 1rem;
		right: 2rem;
		line-height: 2rem;
		position: absolute;
		cursor: pointer;
		font-size: 2.5rem;
		font-weight: 200;
	}
}

#twoFactorRecommend {
	display: none;
	width: 560px;
	position: fixed;
	top: 40%;
	left: 50%;
	margin-left: -280px;
	margin-top: -90px;
	z-index: 99999;
	background: white;

	.inline_form_box {
		margin: 0;
		border: 0;
	}

	.inline_form_box_content {
		padding: 1em 2em 2em 2em;
	}

	border: 1px solid $cerulean;
	box-shadow: 0px 10px 10px rgba(black, .5);
}

.dialogOverlay {
	display: none;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 99998;
	background: rgba(black, .5);
}






.fullWidth {
	width: 100%;
}

.centered {
	text-align: center;
}

.clear {
	clear: both;
}

.tiny {
	font-size: x-small;
	color: grey;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.dot-separator {
	color: #999;
	padding: 0 6px;
}

.strike {
	text-decoration: line-through;
}

.bold {
	font-weight: bold;
}

.money,
.money a {
	font-size: 125%;
	color: green !important;
}

.nolink {
	text-decoration: none !important;
	color: inherit !important;
}

.nounderline {
	text-decoration: none !important;
}

.overflow-ellipsis {
	color: #999;
}


span.green {
	background-color: #063;
}

span.yellow {
	background-color: #AB8B00;
}

span.orange {
	background-color: #EC7000;
}

span.red {
	background-color: #AD2D2D;
}

span.blue {
	background-color: #00C;
}

span.fa_green {
	background-color: #afbd21;
}

span.fa_orange {
	background-color: #f8981d;
}

span.fa_blue {
	background-color: #009ddc;
}


.pageContainer table {
	border-collapse: separate;
}

body a:link,
.linkBlue {
	color: $cerulean;
}

h1 {
	font-size: 24px;
	font-weight: lighter !important;
	color: $midnight-blue;
	letter-spacing: 2px;
	white-space: nowrap;
	margin: 0;
	padding: 0;
}

h1 a {
	text-decoration: none;
	color: $midnight-blue !important;
}

body a:visited {
	color: $midnight-blue;
}

a:link img,
a:visited img {
	border: 0;
}

table {
	border-collapse: collapse;
	font-size: 13px;
	border: 0;
	padding: 0;
}

/* Table styles */
table.layout-table {
	border-collapse: collapse !important;
	width: 100%;
	border-spacing: 0;
}


table.layout-table .smallrow2,
table.layout-table .smallAcitverow2 {
	background-color: $aqua-spring;
}

table.layout-table .secondaryHeader {
	font-family: inherit;
	font-size: inherit;
}

.paddedBottom {
	padding-bottom: 10px;
}

/* Pretty table styles */
table.prettyTable {
	border-collapse: collapse !important;
	border: 1px solid #b2b2b2;
}

.prettyTable thead {
	vertical-align: middle;
	background-color: $cerulean;
	background: -webkit-linear-gradient(#37BDF5, $cerulean);
	background: -moz-linear-gradient(#37BDF5, $cerulean);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#37BDF5), to($cerulean));
	background: -o-linear-gradient(#37BDF5, $cerulean);
	/* text-shadow: 0 -1px 0 #0065be; */
	color: #FFF;
	font-weight: normal;
	font-size: 14px;
}

.prettyTable thead a {
	color: #FFF !important;
}

.prettyTable th {
	padding: 6px;
	font-weight: normal;
	text-shadow: none;
}

.prettyTable thead td,
.prettyTable thead td:first-child {
	border: 0px;
}

.prettyTable td {
	border-left: 1px solid white;
	padding: 5px;
	height: 17px;

	/** TODO: Replace with foundation variable **/
	@media (max-width: 641px) {
		height: auto;
	}
}

.prettyTable td:first-child {
	border-left: 1px solid #b2b2b2;

	/** TODO: Replace with foundation variable **/
	@media (max-width: 641px) {
		border-left: none;
	}
}


tr.subtitle td {
	font-style: italic;
	padding-left: 12px;
	cursor: default;
}

tr.spacing td {
	cursor: default;
	border-left: none;
	border-right: none;
}

tr.claimed td {
	cursor: default;
}

tr.stripedrow2 {
	background-color: $aqua-spring;
}

tr.hover_yellow {
	background-color: #F3ED86;
}

td.centered {
	text-align: center;
}

.stripedColumn td:nth-child(2n+1) {
	background-color: rgba(160, 160, 160, .1);
}


.midAd {
	text-align: center;
	background-color: #FFF;
}


.account-manage table {
	width: 100%;
}

.account-manage-save {
	text-align: center;
	margin-top: 20px;
}


.nav-content-container {
	position: relative;
	background: #fff;
}

.nav-content {
	padding-top: 20px;
}

sup.numberContentItems {
	background-color: $orange;
	color: #FFF;
	font-weight: bold;
	padding: 3px 6px;
	position: relative;
	bottom: 4px;
	left: 3px;
	box-shadow: 0 0 2px #444;
	border-radius: 2px;
}

.ie_warning {
	display: none;
}

#banner {
	position: absolute;
	top: 0;
	left: 0;
	background: #FAE051;
	font-size: 13px;
	width: 100%;
	z-index: 100000;
	display: none;
}

#banner-inner {
	margin: 0 auto;
	padding: 8px 10px 12px;
}

#banner-press {
	float: right;
	font-size: 11px;
}

.ie8 #banner-press {
	display: none;
}

#banner-header {
	font-size: 10px;
}

#banner-header span {
	text-transform: lowercase;
	font-variant: small-caps;
	font-size: 14px;
	letter-spacing: 1px;
	margin: 0;
	font-weight: bold;
}

#banner-historical {
	padding-top: 10px;
	display: none;
}

#banner-historical>p {
	margin: 6px 0;
}

table.collapse {
	border-collapse: collapse !important;
}

/* Header */
.breakingNewsAlert {
	text-align: left;
	font-size: 11px;
	min-width: 110px;
}

.gmt_div {
	color: #707277;
	font-weight: normal;
	font-style: normal;
}

/* Custom modals
----------------------------------*/

.modal-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	left: 0;
	top: 0;
	z-index: 99999;
	cursor: pointer;
	display: none;
}

.modal-dialog {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	position: absolute;
	top: 100px;
	left: 10%;
	width: 80%;
	margin-bottom: 100px;
	z-index: 999999;
	display: none;
}

.modal-dialog-body {
	background: #fff;
	padding: 10px;
	border-radius: 6px;
	margin: 10px;
	text-align: left;
	word-wrap: break-word;
}


/* This is FlightAware Green  - this can be reversed in flightaware-main/framework.tcl (search for 85B54B) */
.flightStatusGood {
	color: #7AC143 !important;
}

/* This is FlightAware Red  - this can be reversed in flightaware-main/framework.tcl (search for 85B54B) */
.flightStatusBad,
.breakingNewsAlert {
	color: #ED1C24 !important;
}

.flightStatusNotGreat,
.flightStatusNotGreatAirborne {
	color: $orange !important;
}

.flightStatusNotGreatAirborne {
	font-weight: bold;
	font-style: italic;
}

.breakingNewsAlert {
	padding-right: 2px;
}


th.mainTrackHeader,
th.mainTrackHeader A {
	color: #FFF !important;
	font-weight: normal;
	text-align: left;
}

.thirdHeader,
.thirdHeader a {
	color: #FFF !important;
	/* background-color: #ACACAC; */
	padding-left: .5em;
	text-align: left;
	background-color: $cerulean;
}




/* TrackBar */
#trackBox {
	width: 170px;
	border-collapse: collapse;
	padding: 0;
}

#trackBox td h2,
#trackBox td .trackFormSubhead {
	text-transform: uppercase;
}

#trackBox td h2 {
	/*trackbox_heading_bg*/
	font-size: 13px;
	font-weight: normal;
	margin: 0;
	padding: 5px 6px;
	position: relative;
}

.trackBoxh2Gradient {
	/* chrome 10+, safari 5.1+ */
	background: -webkit-gradient(linear, left top, left bottom, from(#EEAC60), to(#D67E17)) !important;
	/* firefox */
	background: -moz-linear-gradient(top, #EEAC60, #D67E17);
	/* Opera */
	background-image: -o-linear-gradient(top, #EEAC60, #D67E17) !important;
	/* IE6-9 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EEAC60, endColorstr=#D67E17);
	/* ie10 */
	background-image: -ms-linear-gradient(#EEAC60, #D67E17);
}

#trackBox td h2.airportInfoHeader {
	position: relative;
}

.airportInfoHeaderGradient {
	/* chrome 10+, safari 5.1+ */
	background: -webkit-gradient(linear, left top, left bottom, from(#EDA552), to(#DC8118));
	/* firefox */
	background: -moz-linear-gradient(top, #EDA552, #DC8118);
	/* IE6-9 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EDA552, endColorstr=#DC8118);
	/* IE10 */
	background-image: -ms-linear-gradient(#EDA552, #DC8118);
}

/* Target Opera */
@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
	.airportInfoHeaderGradient {
		background: url(/images/track/airport_info_heading_bg.gif) 0 top repeat-x;
		background-image: -o-linear-gradient(#EDA552, #DC8118) !important;
	}
}

@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
	.trackBoxh2Gradient {
		background: url(/images/track/trackbox_heading_bg.gif) 0 top repeat-x;
		background-image: -o-linear-gradient(#EEAC60, #D67E17) !important;
	}
}

/* Target Opera */

#trackBox td .trackFormSubhead {
	margin: 4px 0;
}

.trackBoxForm {
	line-height: 18px;
	padding: 3px;
	font-size: 11.5px;
}


.defaultLabel {
	font-family: $Lato !important;
}

.trackBoxForm form {
	display: inline;
}

#trackBox td input[type=text],
#airportTrackForm input[type=text] {
	width: 89px;
}

.trackFormSubmitButton,
#trackBox td input[type=submit] {
	width: 95px;
}

#trackBox td input,
.trackFormSubmitButton {
	float: right;
}

#trackBox td label {
	float: left;
}

#trackBox TD {
	margin: 0;
	max-width: 170px;
	padding: 0;
	color: #FFF;
}

#trackBox H2,
#trackBox a:link,
#trackBox a:visited {
	color: #FFF;
	text-decoration: none;
}

#trackBox TD.trackboxComGradient {
	/*trackbox_com_wline_bg*/
	background: #F4A25A url(/images/track/trackbox_com_wline_bg.gif) 0 top repeat-x;
	padding-bottom: 5px;
}

#trackBox TD.trackboxPriGradient {
	/*trackbox_pri_bg*/
	background: -webkit-gradient(linear, left top, left bottom, from(#F0903C), to(#E67E23)) !important;
	background: -moz-linear-gradient(top, #F0903C, #E67E23) !important;
	background-image: -o-linear-gradient(top, rgb(240, 144, 60), rgb(230, 126, 35)) !important;
	background-image: -ms-linear-gradient(#F0903C, #E67E23);
}

#trackBox TD.trackboxAirportGradient {
	background: -webkit-gradient(linear, left top, left bottom, from(#F4AA6A), to(#C2600B)) !important;
	background: -moz-linear-gradient(top, #F4AA6A, #C2600B) !important;
	background-image: -o-linear-gradient(top, rgb(244, 170, 106), rgb(244, 170, 106)) !important;
	background-image: -ms-linear-gradient(#F4AA6A, #C2600B);
}

/* Target Opera */
@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
	#trackBox TD.trackboxPriGradient {
		background: #F4A25A url(/images/track/trackbox_pri_bg.gif) 0 top repeat-x;
	}
}

@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
	#trackBox TD.trackboxAirportGradient {
		background: #F4A25A url(/images/track/airport_info_body_bg.gif) 0 top repeat-x;
	}
}

/* Target Opera */
.trackFormSubmit {
	margin: 8px 0;
}

.trackFormSubmitButton {
	margin-top: 8px;
}



span.bubble {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	padding: 3px 6px 4px 6px;
	text-align: center;
	position: relative;
	bottom: 1px;
	color: #FFF;
}

span.newbubble {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
	font-size: 9px;
	line-height: 1;
	padding: 2px 4px 3px 4px;
	text-align: center;
	position: relative;
	bottom: 1px;
	color: #FFF;
	background: #01A0E2;
}



/*
 * NEW DESIGN STYLES 
 */

div.homeColumnElement {
	padding: 5px 0;
}

div.homeColumnElementRow {
	vertical-align: middle;
	padding: 8px;
	padding-top: 10px;
}

div.homeColumnElement,
div.homeColumnElementFixed,
div.homeColumnHr,
div.columnElement {
	border: 1px solid #b2b2b2;
}

div.columnElement img {
	display: block;
}

div.columnElementTextContent {
	border: 1px solid #b2b2b2;
	border-top: 0;
	padding: 5px;
}

hr.homeColumnElementHr {
	height: 1px;
	width: 100%;
	border-style: none;
	color: #7f9bb3;
	background-color: #7f9bb3;
}

div.homeColumnElementFixed {
	width: 268px;
	padding: 5px 0;
	text-align: center;
}

div.quickTracker {
	background-color: $midnight-blue;
	padding: 1rem;
	color: #FFF;

	div.columns:nth-child(2) {
		background-color: #0176b0;
	}

	div.heading {
		font-size: 16px;
		padding: 1rem 1rem 0 0;
	}

	div.trackFormRowQuick,
	div.trackFormRow {
		padding: 0.5rem 0;

		input {
			float: right;
		}
	}

	button.unifiedsearch_orange,
	button.unifiedtrack_orange {
		margin: 1rem 0;
		float: right;
		clear: both;
	}

	div.quickTrackerContainer {
		max-width: 300px;
		margin: 0 auto;
	}
}

#quickTrackerCol1 {
	padding: 4px;
	padding-top: 10px;
	padding-right: 16px;
	vertical-align: top;
	font-size: 16px !important;
	letter-spacing: 1;
}

#quickTrackerCol1Wrapper {
	width: 270px;
	margin-right: auto;
	margin-left: auto;
}

.quickTrackerFormSubmit {
	margin: 10px 0;
}

div.trackFormRowQuick {
	text-transform: uppercase;
	font-family: $Lato !important;
}

div.trackFormRowQuick {
	font-size: 12px !important;
	letter-spacing: 1px !important;
}

td#quickTrackerCol2 {
	width: 240px;
	padding: 4px 8px 8px;
	background-color: #0176b0;
	vertical-align: top;
	font-family: $LatoLight;
	font-weight: normal;
	font-size: 14px !important;
}

#quickTracker {
	background-color: $midnight-blue;
	padding: 8px;
	height: 154px;
}

#quickTracker input {
	float: right;
}

table#quickTrackerTable td {
	color: #FFF;
	font-size: 11px;
	vertical-align: top;
}

table#quickTrackerTable {
	width: 100%;
	height: 100%;
}

.quickTrackerComField,
.quickTrackerFliField {
	margin: 0;
}

.quickTrackerComField {
	width: 133px;
}

.quickTrackerFliField {
	width: 78px;
}

div.quickTrackerLabel {
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: $LatoLight;
	font-weight: normal;
}

hr.quickTrackerHr {
	height: 1px;
	width: 100%;
	border-style: none;
	color: #436b8e;
	background-color: #436b8e;
	margin-bottom: 10px;
}

span.columnSubheading {
	font-size: 10pt;
}

span.columnSubheading a:link,
span.columnSubheading a:visited {
	color: $white;
	font-weight: normal;
}

.fixedWidthPageContent {
	width: 856px;
}

.rightButtonContainer {
	width: 870px;
}

.rightButtonContainer div {
	float: right;
}

table.photoSearchFormContainer {
	background: url(/images/diagonalBrightBlueGradient.png) 0 top no-repeat;
	margin-bottom: 10px;
}

table.photoSearchFormContainer td {
	padding: 10px;
}

table.fixedWidthPageContent td {
	vertical-align: top;
}

/* START: home page links like TODAY POPULAR etc */

.homePageHeaderLinkActive,
.homePageHeaderLinkInactive {
	/* display: inline; */
	float: right;
	text-transform: uppercase;
	font-family: $LatoLight;
	letter-spacing: 1px;
	padding-left: 2px;
	padding-right: 2px;
	color: #FFF !important;
}

.homePageHeaderLinkActive,
.homePageHeaderLinkActive a {
	color: $midnight-blue !important;
}

/* END: home page links like TODAY POPULAR etc */


.faActionButton,
.faSubmitButton {
	background: #c36b09 url(/images/orange_action_button_bg.png) 0 top repeat-x;
}

.button_red_outline {
	cursor: pointer;
	color: $roof-terracotta;
	background-color: $white;
	border: 1px solid $roof-terracotta;
	padding: 0.5em 1em;
}

input.faSubmitButton {
	padding: 4px 10px;
	color: #FFF;
	font-weight: bold;
	display: inline;
	cursor: pointer;
	font-size: 11pt;
	border: 0;
	margin-right: 5px;
}

.faActionButton {
	float: left;
	margin-right: 5px;
	font-family: $Lato;
}

.faActionButton a,
.faActionButton {
	margin-top: 4px;
	height: 22px;
}

.faActionButton a,
.faActionButton span {
	padding: 0 8px 0 4px;
}

.faActionButton a,
.faActionButton a:link,
.faActionButton a:visited,
.faAction a,
.faAction a:link,
.faAction a:visited,
.faActionButton span {
	display: block;
	color: $white;
	text-decoration: none;
}

.faActionButton a,
.faActionButton a:link,
.faActionButton a:visited,
.faActionButton span {
	font-size: 10pt;
}

.faAction {
	background: $indochine url(/images/orange_action_button_bg.png) 0 top repeat-x;
}

.faActionButton span img,
.faActionButtonLighter span img {
	border: 0;
}

.smallButton {
	text-align: center;
	width: 12px;
	border-bottom: 1px solid $black;
	border-right: 1px solid $mine-shaft;
}

.faActionButtonLighter {
	background: #eda653 url(/images/csLighterOrangeBg.png) 0 top repeat-x;
	margin-top: 10px;
	margin-bottom: 5px;
}

.faActionButtonLighter,
.faActionButtonLighter a,
.faActionButtonLighter span {
	height: 28px;
}

.faActionButtonLighter a img,
.faActionButtonLighter span img {
	margin-top: 1px;
	vertical-align: text-bottom;
}

/* override padding for airport delays col. */
#homeAirportDelaysCol {
	padding: 0;
}

table#homeAirportDelays,
table#homeAirportDelaysCustom {
	width: 100%;
	padding: 13px 0;
	border-collapse: collapse;
}

table#homeAirportDelaysCustom {
	width: 100%;
	padding: 8px 0 4px;
}

table#homeAirportDelays tr.row1,
table#homeAirportDelaysCustom tr.row1 {
	background-color: #e5f5fc;
}

table#homeAirportDelays tr.row2,
table#homeAirportDelaysCustom tr.row2 {
	background-color: #FFF;
}

table#homeAirportDelays td,
table#homeAirportDelaysCustom td {
	color: $cerulean;
	padding: 2px 10px;
}

table#homeAirportDelaysCustom td {
	color: #0096f0;
	font-size: 10pt;
}

table#homeAirportDelaysCustom td a:link {
	text-decoration: none;
}

.homeColumnHeading1,
.homeColumnHeading2,
.homeColumnHeading3 {
	background-color: #97989c;
	margin: 0;
	height: 14px;
}

.homeColumnHeading1 {
	padding: 5px 8px;
}

.homeColumnHeading2 {
	padding: 6px 9px;
	background-color: $cerulean;
}

.homeColumnHeading3 {
	background-color: #0096f0;
}

img.homeColumnHeadingGraphic {
	margin-top: 1px;
}

.navMenu,
.navMenuSub {
	color: #FFFFFF;
	font-size: 14px;
	height: 14px;
}

.navMenu {
	width: 127px;
}

.navMenuSub {
	width: 200px
}

.homeColumnHeading,
h4.homeColumnHeading,
.HeaderIMGText {
	color: #FFFFFF !important;
	text-decoration: none !important;
	font-family: $LatoLight !important;
	font-weight: normal;
	margin: 0;
	white-space: nowrap !important;
}

.homeColumnHeading,
h4.homeColumnHeading {
	white-space: nowrap !important;
	font-size: 13px !important;
	text-transform: uppercase;
	letter-spacing: 1px !important;
}

#homeImageTable,
#homeCenterTracker {
	margin: 0;
	margin-bottom: 5px;
}

#homeImageTable {
	padding: 0;
}

td#homeCenterCol1 {
	margin-right: 5px;
}

.homeColumnElement table td {
	padding-bottom: 10px;
}

a.titleLink,
a.titleLink:link,
a.titleLink:visited {
	text-decoration: none !important;
	font-size: 12pt;
	font-weight: bold;
	color: #013668;
}

p.columnElementDescription {
	font-size: 8pt;
	margin: 6px 0 12px;
}

p.columnElementDescription {
	color: #013668;
}

table.weatherRow td {
	padding: 10px 0 0 7px;
}

.weatherDescription {
	font-size: 8pt;
	color: #013668;
}

td.weatherTemperature {
	font-size: 16pt;
	color: $cerulean;
}

div.columnElementBadgeDiv {
	background-color: #dfe0e2;
	text-align: left;
	padding: 4px;
	height: 30px;
}

.homeColBottom {
	height: 37px;
	background: url(data:image/png;base64,R0lGODlhAQAlAMQAAOh9CvPz8/SDCuV7CtFxCcxuCfaPIfn5+fCBCvWHEf39/erq6vaNHfaLGcRqCdVzCfWGD8ZrCc7Ozux/CvaMG/zbuM9vCcjIyNXV1dl1CfWJFd/f3994Cv///wAAAAAAACH5BAAAAAAALAAAAAABACUAAAUcYCeOXWUwVKMlkIBMwMBlD2EVkXNJ2LYEB0UnBAA7) 0 top repeat-x;
}

div.bottomShadow {
	height: 15px;
	background: url(data:image/png;base64,R0lGODlhAQAKALMAAM7OzsjIyNXV1d/f3/n5+fPz8/39/erq6v///wAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAAAAAAALAAAAAABAAoAAAQIMAAxTiEGoQgAOw==) 0 top repeat-x;
	border-left: 1px solid #FFF;
	border-right: 1px solid #FFF;
}

table.bottomShadowBackground {
	background: url(data:image/png;base64,R0lGODlhAQAKALMAAM7OzsjIyNXV1d/f3/n5+fPz8/39/erq6v///wAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAAAAAAALAAAAAABAAoAAAQIMAAxTiEGoQgAOw==) 0 bottom repeat-x;
	padding-bottom: 10px;
	background-color: #FFF;
}

table.thinGrayBorder {
	border-top: 1px solid #b2b2b2;
}

table.thinGrayBorder td.singleCol {
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
}

.homeColBottomText {
	float: left;
}

.homeColBottomIcon {
	float: right;
}

.columnHeading1,
.columnHeading2 {

	background: $cerulean url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAjCAMAAABir5CGAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEVQTFRFOb72N731LbfyEqnoGa3rHa/sPsH4KrbwJLLuQcL5J7TwMrr0PcD4CqXlFavpILHtMLnzO7/3DafnNbv1QMH5ScX5BqLk6gCoAgAAADFJREFUeNp0wocNgCAAALC6cAAOEP8/lQtMq9m9guTBoIpuo9Vhc1nMTpMi+/50AQYAOz0CBlcalxcAAAAASUVORK5CYII=) 0 top repeat-x;
	padding: 5px 0 5px 10px;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
	margin: 0;
}

.columnHeading2 {
	background-color: #CCC;
}

/*
 * (end) NEW DESIGN STYLES 
 */

label.inlineRadio {
	float: none;
}


label.defaultStyle {
	padding: 0;
	vertical-align: baseline;
	float: none;
}

p.separateLine {
	padding: 3px;
	margin-top: 6px;
	margin-bottom: 4px;
}

input.tag,
input.default {
	float: none;
	padding: 0;
	vertical-align: baseline;
}

br {
	clear: left;
}

br.softBreak {
	clear: none;
}

.Text {
	float: right;
	margin-right: 5px;
	font-size: 12px;
}

#BodyNav {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 0;
	padding-right: 0;
	margin-top: 5px;
	margin-bottom: -12px;
}

#BodyNav H2,
#BodyNav H2 A {
	color: #FFF;
	font-size: 12px;
	font-weight: normal;
	display: inline;
}

#bodyHeader h2,
#bodyHeader h2.alternateCrumbtrailWhite {
	font-size: 14px;
	padding: 6px 9px 4px;
	margin: 5px 0 0 5px;
	background: #41c2f9 url(/images/lightBlueGradient_48D_notransp.png) 0 top repeat-x;
	color: #FFF;
	text-decoration: none;
	font-weight: normal;
}

#bodyHeader h2.alternateCrumbtrailWhite {
	background-image: none;
	background-color: #FFF;
	color: $cerulean;
	float: left;
	text-decoration: none;
	font-size: 12px;
	width: 600px;
	max-width: 600px;
	min-width: 600px;
	margin-top: 10px;
}

.forceThin {
	font-weight: normal;
}

.bodyNavTitle {
	font-weight: bold;
}

#bodyHeader h2.alternateCrumbtrailWhite span.bodyNavTitle {
	font-weight: normal;
}

A.headerLink:link,
A.headerLink:visited {
	color: #FFF;
}

#bodyHeader h2.alternateCrumbtrailWhite A.headerLink:link,
#bodyHeader h2.alternateCrumbtrailWhite A.headerLink:visited {
	color: $cerulean;
	text-decoration: none;
}

#BodyHeader IMG {
	padding-right: 2px;
}

.pageContainer H2 {
	padding-top: 10px;
}

.pageContainer H3,
h3.fa_header {
	font-size: 24px;
	color: $mine-shaft;
	font-family: $Lato;
	font-weight: normal;
	margin: 18px 0;
}

.pageContainer H4,
h4.fa_header {
	font-size: 18px;
	color: $mine-shaft;
	font-family: $Lato;
	font-weight: normal;
	margin: 12px 0;
}

#List {
	float: left;
	margin: 10px;
	width: 13em;
}

.ellipsis {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

div.indent {
	margin-left: 16px;
	margin-right: 16px;

	/* Hack, since new page design does not need outer indent */
	.pageContainer>& {
		margin: 0;
	}
}

.ad-box {
	min-width: 970px;
	max-width: 2000px;
	/*background-color: #ACACAC;*/
	/*border: 1px solid #ACACAC;*/
	padding: 6px 0;
	margin: 10px auto;
	z-index: 1 !important;
	position: relative;

}

.ad-box>* {
	z-index: 1 !important;

}

/* .ad-box > iframe {
	border: 1px solid #ACACAC;
}
*/

.greyAd {
	padding: 5px 0 4px;
	text-align: center;
	background-color: #e6e6e6;
}

.mainHeader {
	text-shadow: none;
	background: -webkit-gradient(linear, left top, left bottom, from(#267BAE), to(#3A5F97));
	background: -moz-linear-gradient(top, #267BAE, #3A5F97);
	background: -o-linear-gradient(top, #267BAE, #3A5F97) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#267BAE, endColorstr=#3A5F97);
	background-image: -ms-linear-gradient(#267BAE, #3A5F97);
	font-family: $Lato;
	font-weight: normal;
	/* text-transform: uppercase; */
	letter-spacing: 1px;
	min-height: 2em;

	h1 {
		color: $white !important;
		font-size: 14px;
		letter-spacing: 1px;

	}
}

.mainHeader th {
	text-align: center;
}

.mainHeader {
	text-align: center !important;
	width: 100% !important;
	line-height: 2em !important;
}

.mainHeader pre.debugTracebackInfo {
	text-align: left !important;
	-moz-tab-size: 2;
	tab-size: 2;
	margin: 14px auto;
	width: 50%;
	overflow: scroll;
}

p.mainHeader {
	margin-bottom: 0px;
}

.mainHeader,
.greyAd {
	color: #FFF;
	background-color: #ACACAC;
	font-size: 14px;
	padding-left: 8px;
	padding-right: 8px;
}

.mainHeader h2 {
	font-size: 14px;
	padding: 0;
	margin: 0;
}

.mainHeaderSurround {
	background-color: $orange;
}

.altmainHeader a {
	color: #FFF !important;
	font-size: 12px !important;
}

.altmainHeader {
	color: #FFF;
	background-color: #0496fc;
	font-size: 14px;
	height: 1.5em;
}

.altmainHeaderSurround {
	background-color: #0496fc;
}

.tweet_avatar img {
	float: left;
	vertical-align: top;
	margin: 4px 8px 4px 4px;
}

div.airportImageLink,
.airportImageLink A {
	font-size: 12px;
	color: #FFF !important;
}

td.ident {
	white-space: nowrap;
}

.alert-success {
	font-size: 1.5em;
	background-color: $green;
	color: $white;
	width: 100%;
	padding: 1.3em 2em;

	span::before {
		font-family: FontAwesome;
		content: "\f00c"
	}
}

.alert-options {
	overflow: auto;
	color: #6D6E71;
	display: none;
	padding-left: 25px;
	padding-bottom: 16px;
}

.alert-options table {
	border: 1px solid #CCCCCC;
	padding: 8px 60px 8px 4px;
}



.alerts_summary td {
	cursor: pointer;
}

.alerts_summary {
	margin-top: 5px;
}

.alerts_summary tbody tr[class^='alert_']:hover {
	background-color: #F3ED86;
}

.status {
	margin-right: 5px;
	cursor: default;
}

.button_group img {
	margin-left: 5px;
}

.suspended {
	color: #afafaf;
}

.add_alert {
	margin: 24px 0 10px;
	border-radius: 4px;
	background-color: $aqua-spring;
	border: 1px solid #A8CFF6;
	padding: 12px;
	/* height: 28px; */
}

.add_alert span {
	margin-top: 8px;
	display: inline-block;
	float: left;
}

.add_alert_top {
	margin-bottom: 24px;
}

/** TODO: Replace with foundation variable **/
@media (max-width: 641px) {
	.add_alert a.newalertjs {
		margin-top: 1rem;
		float: left;
	}
}

/* progress bar */
div.base,
div.elapsed,
div.time,
div.totaltime {
	white-space: nowrap;
}

div.progress_container {
	border: 1px solid #ccc;
	width: 150px;
	margin: 5px 14px 4px 0;
	padding: 1px;
	float: left;
	background: white;
}

@media only screen and (max-width: $screen-small) {
	div.progress_container {
		width: 45px !important;
	}
}

div.progress_container>div {
	background-color: $cerulean;
	height: 14px
}


.blue_emphasis_box {
	border-radius: 4px;
	background-color: $aqua-spring;
	border: 1px solid #A8CFF6;
	padding: 12px;
	color: $cerulean;
	font-weight: bold;
}

.fbo_pitch {
	display: none;
	text-align: center;
	margin: 14px 0 0 0;
}

.fbo_trial_explaination {
	text-align: left;
	font-weight: normal;
}

/* Main Page */
#Falcon {
	height: 250px;
	min-height: 250px;
	max-height: 250px;
	width: 100%;
}

#BreakingNews {
	height: 32px;
	background-color: $orange;
}

#CurrentlyTracking TD,
#CurrentlyTracking TH {
	height: 36px;
	background-color: $orange;
}

#CurrentlyTracking,
#BreakingNews {
	padding: 10px;
	margin: 0;
	color: #FFF;
}

#BreakingNews TH,
#CurrentlyTracking TH {
	padding: 10px;
	font-family: $Lato;
	color: #FFF;
	font-weight: normal;
	line-height: .9;
	font-size: 24px;
}

#BreakingNews TD {
	font-size: 12px;
}

#CurrentlyTracking TD {
	font-size: 13px;
	padding-left: 10px;
}

#BreakingNews H5,
#CurrentlyTracking H5 {
	margin: 0;
	font-weight: normal;
}


/* end main page */

#airportBottom {
	background-color: $midnight-blue;
}

#airportBottom div {
	font-size: 10px;
}

/* Tipsy tooltips */
.tipsy {
	font-size: 14px;
	position: absolute;
	padding: 5px;
	z-index: 100000;
}

.tipsy-inner {
	background-color: #000;
	color: #FFF;
	max-width: 200px;
	padding: 5px 8px 4px 8px;
	text-align: center;
}

/* Rounded corners */
.tipsy-inner {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

/* Uncomment for shadow */
/*.tipsy-inner { box-shadow: 0 0 5px #000000; -webkit-box-shadow: 0 0 5px #000000; -moz-box-shadow: 0 0 5px #000000; }*/

.tipsy-arrow {
	position: absolute;
	width: 0;
	height: 0;
	line-height: 0;
	border: 5px dashed #000;
}

/* Rules to colour arrows */
.tipsy-arrow-n {
	border-bottom-color: #000;
}

.tipsy-arrow-s {
	border-top-color: #000;
}

.tipsy-arrow-e {
	border-left-color: #000;
}

.tipsy-arrow-w {
	border-right-color: #000;
}

.tipsy-n .tipsy-arrow {
	top: 0px;
	left: 50%;
	margin-left: -5px;
	border-bottom-style: solid;
	border-top: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-nw .tipsy-arrow {
	top: 0;
	left: 10px;
	border-bottom-style: solid;
	border-top: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-ne .tipsy-arrow {
	top: 0;
	right: 10px;
	border-bottom-style: solid;
	border-top: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-s .tipsy-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-sw .tipsy-arrow {
	bottom: 0;
	left: 10px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-se .tipsy-arrow {
	bottom: 0;
	right: 10px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-e .tipsy-arrow {
	right: 0;
	top: 50%;
	margin-top: -5px;
	border-left-style: solid;
	border-right: none;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

.tipsy-w .tipsy-arrow {
	left: 0;
	top: 50%;
	margin-top: -5px;
	border-right-style: solid;
	border-left: none;
	border-top-color: transparent;
	border-bottom-color: transparent;
}


/* Link to us */

.codeExample {
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: .25in;
	font-family: monospace;
	border: 1px dashed #999999;
	padding: 7px;
	background-color: #FBF9EA;

	/** TODO: Replace with foundation variable **/
	@media (max-width: 641px) {
		margin-right: 1em;
	}
}

/* nice little box */

.textBox {
	margin: 1em 0;
	border: 1px dashed #999;
	padding: 7px;
}

/* search forms */
div#LSResult {
	display: none;
	background-color: #FFF;
	position: absolute;
	margin-left: 10px;
	left: 175px;
	top: 275px;
	z-index: 5;
	border: thick solid rgb(237, 128, 0);
	padding: 2px;
	font-size: 12px;
	width: 225px;
}

div#AirportQuery {
	display: none;
	background-color: #FFF;
	color: #000;
	position: absolute;
	z-index: 5;
	border: thick solid rgb(237, 128, 0);
	padding: 2px;
	font-size: 12px;
	left: 1em;
	width: 220px;
}

div#UploadBox {
	display: none;
	background-color: #FFF;
	color: #000;
	position: absolute;
	z-index: 5;
	border: thick solid rgb(237, 128, 0);
	padding: 2px;
	font-size: 12px;
	left: 1em;
	width: 250px;
	left: 550px;
}

div#AirportQueryResult {
	display: none;
	background-color: #FFF;
	position: absolute;
	z-index: 5;
	border: thick solid rgb(237, 128, 0);
	padding: 2px;
	font-size: 12px;
	left: 175px;
	top: 300px;
	width: 30em;
}

/* lifeguard */

.lifeguard {
	color: #F00;
	text-indent: 12px;
	text-align: left;
}

td.lifeguard {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAMAAACecocUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF8AAA////sEuGxAAAAAJ0Uk5T/wDltzBKAAAAF0lEQVR42mJgQAaMjIwESWIAaeYABBgACcwAJWv5rp0AAAAASUVORK5CYII=);
	background-position: 2px;
	background-repeat: no-repeat;
}

.lifeguard A:link,
.lifeguard A:visited,
.lifeguard A:active {
	color: $red;
}

caption {
	text-align: left;
}

/*** Registration/Account Management ***/
.registration th {
	text-align: left;
	font-weight: normal;
	background-color: $pale-sky;
	color: $white;
	font-size: 12px;
	width: 20%;
}

.registration {
	width: 95%;
}

.registration td,
.registration th {
	padding: 3px;
}

.bignotice {
	margin: 36px 50px;
	padding: 1.5em;
	text-align: center;
	font-size: 14px;

	/* TODO: Replace with foundation variable */
	@media (max-width: 641px) {
		margin: 36px 0;
	}
}

.bignotice h2 {
	font-size: 18px;
	font-weight: bold;
	padding-top: 0;
	margin: 0;
}

.bignotice p {
	margin-top: 8px;
	margin-bottom: 18px;
}

.notice {
	border-radius: 4px 4px 4px 4px;
	margin: 8px 16px 16px;
	padding: 1.5em;
	text-align: center;
	font-size: 14px;
}

.notice span {
	font-size: 14px;
	padding-right: 12px;
}


div.red {
	background: #ffdfdf;
	border: 1px solid #f3afb5;
}

div.blue {
	border: 1px solid #A8CFF6;
	background: none repeat scroll 0 0 $aqua-spring;
}

div.green {
	background: none repeat scroll 0 0 #C8FFBF;
	border: 1px solid #A2EF95;
}

button.button {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
	font-size: 11px;
	font-weight: bold;
	line-height: 1;
	padding: 7px 12px 8px 12px;
	text-align: center;
	min-width: 150px;
	text-decoration: none !important;
	overflow: visible;
}

button.green {
	background: #7fbf4d;
	background: -moz-linear-gradient(top, #7fbf4d 0%, #63a62f 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#7fbf4d), to(#63a62f));
	border: 1px solid #63a62f;
	border-bottom: 1px solid #5b992b;
	-moz-box-shadow: inset 0 1px 0 0 #96ca6d;
	-webkit-box-shadow: inset 0 1px 0 0 #96ca6d;
	box-shadow: inset 0 1px 0 0 #96ca6d;
	text-shadow: 0 -1px 0 #4c9021;
	color: #fff;
}

button.blue {
	background: $cerulean;
	background: -moz-linear-gradient(top, #37BDF5 0%, $cerulean 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#37BDF5), to($cerulean));
	border: 1px solid $cerulean;
	border-bottom: 1px solid #0083d5;
	-moz-box-shadow: inset 0 1px 0 0 #A8CFF6;
	-webkit-box-shadow: inset 0 1px 0 0 #A8CFF6;
	box-shadow: inset 0 1px 0 0 #A8CFF6;
	text-shadow: 0 -1px 0 #0065be;
	color: #fff;
}

button.blue2020 {
	background: $cerulean;
	font-size: 14px;
	height: 32px;
	border: 1px solid $cerulean;
	cursor: pointer;
	color: #fff;
}

button.red {
	background: #ED1C24;
	background: -moz-linear-gradient(top, #ED1C24 0%, #b0060c 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ED1C24), to(#b0060c));
	border: 1px solid #b0060c;
	border-bottom: 1px solid #b0060c;
	-moz-box-shadow: inset 0 1px 0 0 #ED1C24;
	-webkit-box-shadow: inset 0 1px 0 0 #ED1C24;
	box-shadow: inset 0 1px 0 0 #ED1C24;
	text-shadow: 0 -1px 0 #b0060c;
	color: #fff;
}

button.orange {
	background: #eda653;
	background: -moz-linear-gradient(top, #eda653 0%, #c36b09 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eda653), to(#c36b09));
	border: 1px solid #c36b09;
	border-bottom: 1px solid #c26905;
	-moz-box-shadow: inset 0 1px 0 0 #edae63;
	-webkit-box-shadow: inset 0 1px 0 0 #edae63;
	box-shadow: inset 0 1px 0 0 #edae63;
	text-shadow: 0 -1px 0 #c26905;
	color: #fff;
}

button.grey {
	background: #eee;
	background: -moz-linear-gradient(top, #eee 0%, #ccc 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eee), to(#ccc));
	border: 1px solid #ccc;
	border-bottom: 1px solid #bbb;
	text-shadow: 0 1px 0 #eee;
	color: #333;
}

/* this is a grey button but with no hover/active changes */
button.disabled {
	background: #eee;
	background: -moz-linear-gradient(top, #eee 0%, #ccc 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eee), to(#ccc));
	border: 1px solid #ccc;
	border-bottom: 1px solid #bbb;
	text-shadow: 0 1px 0 #eee;
	color: #333;
}

button.green:hover {
	background: #76b347;
	background: -moz-linear-gradient(top, #76b347 0%, #5e9e2e 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#76b347), to(#5e9e2e));
	-moz-box-shadow: inset 0 1px 0 0 #8dbf67;
	-webkit-box-shadow: inset 0 1px 0 0 #8dbf67;
	box-shadow: inset 0 1px 0 0 #8dbf67;
	cursor: pointer;
}

button.blue:hover {
	background: #22a6ee;
	background: -moz-linear-gradient(top, #22a6ee 0%, #0083d5 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#22a6ee), to(#0083d5));
	-moz-box-shadow: inset 0 1px 0 0 #8fb9ea;
	-webkit-box-shadow: inset 0 1px 0 0 #8fb9ea;
	box-shadow: inset 0 1px 0 0 #8fb9ea;
	cursor: pointer;
}

button.red:hover {
	background: #cc0d15;
	background: -moz-linear-gradient(top, #cc0d15 0%, #b6060d 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#cc0d15), to(#b6060d));
	border: 1px solid #b6060d;
	border-bottom: 1px solid #b6060d;
	-moz-box-shadow: inset 0 1px 0 0 #cc0d15;
	-webkit-box-shadow: inset 0 1px 0 0 #cc0d15;
	box-shadow: inset 0 1px 0 0 #b6060d;
	cursor: pointer;
}

button.orange:hover {
	background: #e69c45;
	background: -moz-linear-gradient(top, #e69c45 0%, #bc6504 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#e69c45), to(#bc6504));
	border: 1px solid #bc6504;
	border-bottom: 1px solid #bc6504;
	-moz-box-shadow: inset 0 1px 0 0 #e69c45;
	-webkit-box-shadow: inset 0 1px 0 0 #e69c45;
	box-shadow: inset 0 1px 0 0 #e69c45;
	cursor: pointer;
}

button.grey:hover {
	background: #ddd;
	background: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ddd), to(#bbb));
	cursor: pointer;
}

button.green:active {
	border: 1px solid #5b992b;
	border-bottom: 1px solid #538c27;
	-moz-box-shadow: inset 0 0 8px 4px #548c29, 0 1px 0 0 #eee;
	-webkit-box-shadow: inset 0 0 8px 4px #548c29, 0 1px 0 0 #eee;
	box-shadow: inset 0 0 8px 4px #548c29, 0 1px 0 0 #eee;
}

button.blue:active {
	border: 1px solid #0083d5;
	border-bottom: 1px solid #0064ba;
	-moz-box-shadow: inset 0 0 8px 4px #0081cd, 0 1px 0 0 #eee;
	-webkit-box-shadow: inset 0 0 8px 4px #0081cd, 0 1px 0 0 #eee;
	box-shadow: inset 0 0 8px 4px #0081cd, 0 1px 0 0 #eee;
}

button.grey:active {
	border: 1px solid #aaa;
	border-bottom: 1px solid #888;
	-moz-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
	-webkit-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
	box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
}

/* this is an old global style we should remove */
th {
	padding: 3px 5px;
	font-weight: normal;
}

.registration th {
	padding-left: 6px;
}

.inlineLabel {
	float: none;
}

.registration label.error,
.commonForm label.error,
.commonFormOptional label.error,
.inlineValidation label.error {
	float: none;
	margin-left: 5px;
}


div.remark_tag {
	background-color: #fae051;
	color: #000;
	min-width: 12px;
	min-height: 12px;
	text-align: right;
	vertical-align: middle;
	font-size: 10px;
	float: right;
	padding: 0 4px;
}

a.remark_tag {
	color: #FFF;
}

p.remark_text {
	margin: 2px;
	padding: 2px 0 0 4px;
}

p.remark_attribution {
	font-size: 10px;
	color: #7f7f7f;
	margin: 0 0 16px 8px;
}

div.remark_block_full {
	border-top: 1px solid #fae051;
	padding: 0 0 8px 0;
	margin: 0;
}

div.all_remarks {
	background-color: #FFF;
	margin-top: 0;
}

a.button {
	color: #FFF !important;
	background-color: #707277;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	border-top: 1px solid #afafaf;
	border-left: 1px solid #afafaf;
	padding: 1px 8px;
	text-decoration: none;
	font-weight: bold;
}

a.blue_button {
	color: #FFF !important;
	text-decoration: none;
	white-space: nowrap;
}

a.clickPhone {
	color: $black !important;
	text-decoration: underline;
}

.ad {
	WIDTH: 800px;
	height: 90px;
}

.ad1 {
	WIDTH: 800px;
	height: 90px;
	text-align: center;
}

.adTitle {
	color: $orange;
	width: 155px;
	text-decoration: underline;
	overflow: hidden;
	font-weight: bold;
}

.adText {
	color: #000;
	font-weight: normal;
}

.adLink {
	overflow: hidden;
	width: 155px;
	color: $orange;
	font-weight: normal;
	text-decoration: none;
}

.adTitle1 {
	color: $orange;
	font-size: 14pt;
	font-weight: bold;
	overflow: hidden;
	margin-bottom: 10px;
}

.adText1 {
	color: #000;
	font-weight: normal;
	font-size: 11pt;
	margin-bottom: 10px;
}

.adLink1 {
	overflow: hidden;
	color: $orange;
	text-decoration: none;
	text-align: center;
	font-size: 10pt;
}

.adtall {
	WIDTH: 170px;
	height: 450px;
}

.ad1tall {
	WIDTH: 170px;
	height: 450px;
	text-align: center;
}

.adTitleTall {
	color: $orange;
	width: 165px;
	text-decoration: underline;
	overflow: hidden;
	font-weight: bold;
}

.adLinkTall {
	overflow: hidden;
	width: 165px;
	color: $orange;
	font-weight: normal;
	text-decoration: none;
}

.adTitle1Tall {
	color: $orange;
	font-size: 18pt;
	font-weight: bold;
	overflow: hidden;
	margin-bottom: 10px;
}

.adText1Tall {
	color: #000;
	font-weight: normal;
	font-size: 11pt;
	margin-bottom: 10px;
}

.adLink1Tall {
	overflow: hidden;
	color: $orange;
	text-decoration: none;
	text-align: center;
	font-size: 10pt;
}

div.badges_small {
	// width: 220px;
	max-height: 64px;
	overflow: hidden;
	margin-top: 8px;
	margin-left: 12px;
}

div.badges_large {
	height: 198px;
	overflow: hidden;
	margin-bottom: 4px;
	margin-top: 2px;
	text-align: left;
}

div.badges_outer {
	width: 327px;
	float: right;
	background: #EEE;
	border: 1px solid #CCC;
	padding: 2px 6px 8px 6px;
	text-align: center;

	/** TODO: Replace with foundation variable **/
	@media (max-width: 641px) {
		margin-bottom: 1rem;
		margin-top: 1rem;
		float: left;
	}
}

div.badges_large img {
	margin: 4px 0;
}

div.recent_badge {
	width: 95%;
	max-width: 457px;
	display: inline;
	float: left;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 20px;
	background: #EEE;
	border: 1px solid #CCC;
	padding: 8px 4px;
}

div.recent_badge img.floatLeft {
	margin: 20px 5px 20px 0;
}

div.recent_badge h2 {
	margin: 0 0 6px 0;
	padding-top: 0 !important;
	font-size: 1.3em;
}

div.recent_badge p {
	margin: .6em 0 1.3em 0;
}

div.recent_badge div {
	overflow: hidden;
}

div.individual_badge {
	width: 125px;
	height: 190px;
	display: inline;
	float: left;
	margin: 10px;
	padding: 4px 8px;
	background: #EEE;
	border: 1px solid #CCC;
	text-align: center;
}

div.individual_badge img {
	margin: 6px auto 8px auto;
}

div.individual_badge div {
	text-align: left;
}

tr.admin_badge_add {
	display: none;
}

table.two_col_form td {
	vertical-align: top;
	padding-bottom: 10px;
}


table.form th {
	text-align: right;
}

div.form_help {
	margin: 2px 0 0 4px;
	font-size: 10px;
	padding: 0;
	color: #7f7f7f;
}

div.dialog_box {
	padding: 10px 40px;
	text-align: center;
	font-size: 15px;
	color: $orange;
	font-family: $Lato;
	font-weight: normal;
}

.SelectedRoute {
	background-color: #F3ED86;
}

div#problems {
	color: red;
	font-weight: bold;
}

div.perf_data {
	border: 1px solid #000;
	font-size: 10px;
	padding: 0;
	color: #7f7f7f;
}

div.perf_data h1 {
	color: #FFF;
	background-color: $orange;
	margin: 0;
	text-align: center;
	font-size: 12pt;
}

div.perf_data h2 {
	color: #FFF !important;
	background-color: $midnight-blue;
	border-top: 1px solid #FFF;
	margin: 0;
	padding: 0 4px;
	text-align: left;
	font-size: 10pt;
}

div.aas_content {
	border: thin solid rgb(0, 157, 220);
	margin-bottom: 10px;
}

div.aas_content h4 {
	color: #FFF !important;
	background-color: rgb(0, 157, 220);
	font-size: 15px;
	font-family: $Lato;
	padding: 4px;
	margin: 0;

}

div.aas_content img {
	margin: 2px;
	border: 1px solid #000;
}

div.aas_content p {
	margin-left: 2px;
}


div.slider {
	width: 200px;
	height: 16px;
	background: #eee;
}

div.slider div.knob {
	background: #000;
	width: 16px;
	height: 16px;
}


div#fontSize {
	height: 50px;
}


div.advanced {
	width: 400px;
	margin: 5px 0;
	/* removed, file doesn't exist */
	/* background: url(/images/slider.png) 0 center repeat-x; */
}

div.advanced div.knob {
	background: no-repeat center center;
	cursor: pointer;
}

div.knob {
	/* removed, file doesn't exist */
	/* background-image: url(/images/slider_knob.png); */
}

div.error_box {
	margin: 8px 0;
	padding: 2px 10px;
	border: 2px solid red;
	background-color: #ffdfdf;
}

div.error_sql {
	border: 2px solid #000;
	padding: 2px 10px;
	font-family: Monaco, Courier;
	font-size: 8pt;
}

div.error_modal {
	color: red;
	padding-top: 3px;
	width: 500px;
}

#tooltip {
	position: absolute;
	z-index: 3000;
	border: 1px solid #111;
	background-color: #fff;
	padding: 10px;
	opacity: 0.90;
}

#tooltip h3,
#tooltip div {
	margin: 0;
}

.narrow-tooltip {
	width: 350px;
}

.small-button {
	float: right;
	margin-left: 2px;
	cursor: pointer;
}

.tooltip {
	cursor: pointer;
}

.small {
	font-size: 11px;
}

.gray {
	color: #666;
}

.bold {
	font-weight: bold;
}

.disabledGray {
	color: #CCC !important;
}

label.error {
	color: #F00;
}

a.debug_button {
	color: #FFF !important;
	background-color: #f00;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	border-top: 1px solid #afafaf;
	border-left: 1px solid #afafaf;
	padding: 1px 8px;
	margin: 0;
	text-decoration: none;
	font-weight: bold;
}

div.debug_block {
	background-color: #FFF;
	color: #000;
	padding: 4px;
	border: 2px dotted red;
	margin: 16px 0 0;
}

div.debug_detail {
	margin: 8px;
	display: none;
}

div.debug_code {
	font-family: Monaco, VT100, Courier New, Courier;
	font-size: 8pt;
	background-color: #cfcfcf;
	padding: 4px;
	margin: 2px 8px 16px 8px;
}


/* User profile */
.profile {
	margin: 16px 12px 18px;
}

.profile_info {
	padding: 5px 0;
	float: left;
}

.profile_info p {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.profile_label {
	float: left;
	width: 100px;
	color: gray;
}

.profile_detail {
	float: left;
}

.profile_detail_row {
	padding-top: 6px;
}

img#profilepicture {
	background: #FFF;
	border: 1px solid #BBB;
	padding: 5px;
	float: left;
	margin-right: 18px;
	margin-top: 8px;
}

h1.bodyHeading,
.profileHeading {
	color: $midnight-blue;
	font-size: 24px;
	font-family: $Lato;
}

#profileNavlist,
.fa-nav-list {
	padding: 6px 0;
	margin: 20px 0 0;
	font-size: 12px;
	white-space: nowrap;

	border-bottom: 1px solid $dark-alto;
	font-family: $Lato;
	text-transform: uppercase;
}

#profileNavlist li,
.fa-nav-list li {
	list-style: none;
	margin: 0;
	display: inline;
}

#profileNavlist li:first-child a,
.fa-nav-list li:first-child a {
	margin-left: 10px;
}


#profileNavlist li a,
.fa-nav-list li a,
#profileNavList li a:visited,
.fa-nav-list li a:visited {
	padding: 10px 6px;
	margin-left: 0px;
	border: 0px;
	border-radius: 4px;
	border-left: 2px solid #fff;
	background: $dark-alto;
	background: linear-gradient(180deg, rgb(200, 200, 200) 30%, rgb(190, 190, 190) 70%);
	background: -webkit-linear-gradient(rgb(200, 200, 200) 30%, rgb(190, 190, 190) 70%);
	background: -moz-linear-gradient(rgb(200, 200, 200) 30%, rgb(190, 190, 190) 70%);
	background: -o-linear-gradient(rgb(200, 200, 200) 30%, rgb(190, 190, 190) 70%);
	text-decoration: none;
	color: $mine-shaft;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px
}

#profileNavlist li a.current:hover,
.fa-nav-list li a.selected:hover {
	color: $midnight-blue;
}

#profileNavlist li a:link,
.fa-nav-list li a:link {
	background: $mercury;
}

#profileNavlist li a:hover,
.fa-nav-list li a:hover {
	color: #fff;
	background: linear-gradient(180deg, rgb(180, 180, 180) 30%, rgb(160, 160, 160) 70%);
	background: -webkit-linear-gradient(rgb(180, 180, 180) 30%, rgb(160, 160, 160) 70%);
	background: -moz-linear-gradient(rgb(180, 180, 180) 30%, rgb(160, 160, 160) 70%);
	background: -o-linear-gradient(rgb(180, 180, 180) 30%, rgb(160, 160, 160) 70%);
}

#profileNavlist li a.current,
.fa-nav-list li a.selected {
	background: #FFF;
	border-bottom: 2px solid #FFF;
	box-shadow: 0 0 5px #888;
	color: $cerulean;
	font-size: 14px;
	border-radius: 4px;
}

.profile_info {
	max-width: 600px;
}

.profile_info h2 {
	font-size: 24px;
}

.profileAction {
	text-align: center;
	width: 160px;
	margin-top: 3px;
}

img#profilepicture {
	height: 160px;
	width: 160px;
}

.toolbar {
	height: 24px;
	padding: 4px 0;
}

.toolbar img {
	position: relative;
	top: 2px;
	margin-right: 4px;
}

.toolbar a {
	margin-left: 10px;
}

div#selectUploadImageForm {
	display: none;
	margin: 6px 12px;
	padding: 5px 0 5px 10px;
	background: #EEE;
	border: 1px solid #CCC;
}

input.validation_error {
	border-color: red;
}

label.validation_error {
	font-weight: bold;
	color: red;
}

input.blur,
textarea.blur {
	color: #999;
	font-style: italic;
}

.springform input.blur,
.springform textarea.blur {
	font-size: 8pt;
}

input,
textarea {
	font-size: 8pt;
}

.dark_gray,
.uneditable {
	color: #888
}

table.tablesorter {
	margin: 0 0pt 15px;
	width: 100%;
}

table.tablesorter thead tr th,
table.tablesorter tfoot tr th {
	background-color: #d6DDDD;
	padding: 4px;
	color: #000;
}

table.tablesorter thead tr .header {
	background-image: url(data:image/png;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}

table.tablesorter tbody td {
	background-color: #FFF;
}

table.tablesorter tbody tr.odd td {
	background-color: #F0F0F6;
}

table.tablesorter thead tr .headerSortUp {
	background-image: url(data:image/png;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}

table.tablesorter thead tr .headerSortDown {
	background-image: url(data:image/png;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
}

table.tablesorter thead tr .headerSortDown,
table.tablesorter thead tr .headerSortUp {
	background-color: $cerulean;
	color: #FFF;
}

table.editable_table tr {
	height: 26px;
}

table.settings_with_desc {
	margin: .2em 1.5em;
	border-top: 1px #CCC solid;
}

table.settings_with_desc td.setting {
	white-space: nowrap;
	vertical-align: top;
}

table.settings_with_desc td.description {
	width: 40%;
	font-size: 11px;
	line-height: 15px;
	padding-left: 10px;
	border-left: 1px dashed gray;
	color: #8a6e00;
	background-color: #f4f1e3;

}

.alignright {
	text-align: right;
}

.alignleft {
	text-align: left;
}

.aligncenter {
	text-align: center;
}

table.dataTableSortable th {
	cursor: pointer;
}

/* Flight Tracking
----------------------------------*/
.track-panel {
	width: 400px;
}

@media (min-width:1000px) {
	.track-panel {
		min-width: 450px;
		width: auto;
	}
}



[data-click-url]:hover {
	cursor: pointer;
}

.ratingStar,
.photo_vote {
	margin-right: 2px;
}

th.nowrap,
td.nowrap,
span.nowrap {
	white-space: nowrap;
}

.ajaxMessage {
	color: $orange;
	font-style: italic;
}

div.attribution_box {
	float: right;
	max-width: 260px;
	min-height: 36px;
	padding: 6px;
	background: #EEE;
	border: 1px solid #ddd;
	-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, .1);
	-moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, .1);
	box-shadow: inset 0 0 2px rgba(0, 0, 0, .1);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;

	/** TODO: Replace with foundation variable **/
	@media (max-width: 641px) {
		max-width: auto;
		float: left;
	}
}

div.user_box {
	margin-top: 4px;
	overflow: hidden;
}

div.user_box span {
	margin-left: 12px;
}

span.user_designation {
	margin-left: 6px !important;
	color: $orange;
	font-weight: bold;
}

div.fauxListWrapper {
	width: 400px;
	z-index: 99998;
	color: #000;
	display: none;
}


/* Reviews pages
----------------------------------*/
.imghint-right {
	float: right;
}


.resourceHeading {
	font-size: 22px;
}

.fauxLink,
.pointer,
.selectArrow,
.fpSelectListElement {
	cursor: pointer;
}

.fauxLink {
	text-decoration: underline;
}

.genericSmallHeading {
	font-family: $Lato;
	font-size: 14px;
	color: $orange;
	line-height: 150%;
	margin-bottom: 5px;
}



/* JNOTIFY */

.jnotify-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100000;
}

.jnotify-container .jnotify-notification {
	position: relative;
}

.jnotify-container .jnotify-notification .jnotify-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: $orange;
	filter: alpha(opacity=90);
	-moz-opacity: 0.90;
	opacity: 0.90;
	z-index: 1;
	line-height: 24px;
}

.jnotify-container .jnotify-notification a.jnotify-close,
.jnotify-container .jnotify-notification a.jnotify-close:link,
.jnotify-container .jnotify-notification a.jnotify-close:visited,
.jnotify-container .jnotify-notification a.jnotify-close:focus,
.jnotify-container .jnotify-notification a.jnotify-close:hover {
	position: absolute;
	top: 16px;
	right: 8px;
	padding-top: 8px;
	padding-right: 10px;
	font-weight: bold;
	font-size: 0rem;
	line-height: 1em;
	color: transparent;
	text-decoration: none;
	z-index: 3;
	cursor: pointer;
	background-image: url(/images/close-large.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 24px;
	height: 24px;
	content: "";
}

.jnotify-container .jnotify-notification .jnotify-message {
	position: relative;
	z-index: 2;
	padding: 20px;
	text-align: center;
	color: $white;
	font-weight: bold;
	font-size: 1.4em;
	line-height: 1.2em;

	a {
		color: $white;
	}
}

.jnotify-container .jnotify-notification .jnotify-message * {
	font-size: 16px;
}

/* notification type == "error" */
.jnotify-container .jnotify-notification-error .jnotify-background {
	background-color: #AF1E23;
}

.jnotify-container .jnotify-notification-error .jnotify-message {
	color: $white !important;
}

/* notification type == "warning" */
.jnotify-container .jnotify-notification-warning .jnotify-background {
	background-color: $orange;
}

.jnotify-container .jnotify-notification-warning .jnotify-close,
.jnotify-container .jnotify-notification-warning .jnotify-message {
	color: #ffffff !important;
}

.alertTH {
	color: #FFF !important;
	background-color: $cerulean;
	font-size: 15px;
	text-align: center;
	font-weight: bold;
	padding-left: .5em;
}

.alert_input {
	text-align: center;
}

#email_list tr td label {
	padding-left: 24px;
}

.unifiedtrack,
.unifiedtrack_orange,
.unifiedsearch_orange {
	white-space: nowrap;
}

/*---------------------------------------------*/
/*               Blue Track                 */
.unifiedtrack {
	margin-top: 8px;
	background: -webkit-gradient(linear, left top, left bottom, from(#41b4ee), to(#0492da)) !important;
	background: -moz-linear-gradient(top, #41b4ee, #0492da) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#41b4ee, endColorstr=#0492da);
	background-image: -ms-linear-gradient(#41b4ee, #0492da);
	border-top: 1px;
	border-top-color: #FFF;
	border-top-style: solid;
	border-bottom: 0px;
	border-left: 0px;
	border-right: 0px;
	text-transform: uppercase;
	color: #ffffff !important;
	font-size: 13px;
	width: 95px;
	height: 21px;
	cursor: pointer;
	font-family: $LatoLight;
	margin-left: 67px;
}

/* Target Safari & Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.unifiedtrack {
		padding-top: 0px;
		text-indent: -3px;
	}
}

/* Target Opera */
@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
	.unifiedtrack {
		background-image: url(/images/track/blue_sidenav_submit_button.png);
	}
}

/* Target Opera */
/*---------------------------------------------*/
/*               Orange Track                 */
.unifiedtrack_orange {
	margin-top: 8px;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2a050), to(#e97c12)) !important;
	background: -moz-linear-gradient(top, #f2a050, #e97c12) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f2a050, endColorstr=#e97c12);
	background-image: -ms-linear-gradient(#f2a050, #e97c12);
	border-top: 1px;
	border-top-color: #FFF;
	border-top-style: solid;
	border-bottom: 0px;
	border-left: 0px;
	border-right: 0px;
	text-transform: uppercase;
	color: #ffffff !important;
	font-size: 13px;
	width: 139px;
	height: 21px;
	cursor: pointer;
	font-family: $LatoLight;
	margin-left: 130px;
}

/* Target Safari & Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.unifiedtrack_orange {
		padding-top: 0px;
		text-indent: -3px;
		font-weight: lighter !important;
	}
}

/* Target Opera */
@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
	.unifiedtrack_orange {
		background-image: url(/images/track/trackflight_orange_blank.png);
	}
}

/* Target Opera */
/*---------------------------------------------*/
/*               Orange Search                 */
.unifiedsearch_orange {
	margin-top: 8px;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2a050), to(#e97c12)) !important;
	background: -moz-linear-gradient(top, #f2a050, #e97c12) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f2a050, endColorstr=#e97c12);
	background-image: -ms-linear-gradient(#f2a050, #e97c12);
	border-top: 1px;
	border-top-color: #FFF;
	border-top-style: solid;
	border-bottom: 0px;
	border-left: 0px;
	border-right: 0px;
	text-transform: uppercase;
	color: #ffffff !important;
	font-size: 13px;
	width: 84px;
	height: 21px;
	cursor: pointer;
	font-family: $LatoLight;
	margin-left: 157px;
}

/* Target Safari & Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.unifiedsearch_orange {
		padding-top: 0px;
		text-indent: -3px;
		font-weight: lighter !important;
	}
}

/* Target Opera */
@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
	.unifiedsearch_orange {
		background-image: url(/images/track/search_orange_blank.png);
	}
}

/* Target Opera */

#add_sq_p {
	background-image: url(/images/add_a_squawk_notext.png);
	background-repeat: no-repeat;
	margin-top: 0px;
	padding-top: 8px;
	float: left;
	font-family: $LatoLight;
	color: #FFF;
	text-indent: 5px;
	text-transform: uppercase;
	cursor: pointer;
}

/* Target Firefox */
@-moz-document url-prefix() {
	#add_sq_p {
		padding-top: 10px;
	}
}

/* Target Firefox */

/* Target Opera */
@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
	#add_sq_p {
		padding-top: 10px;
	}
}

/* Target Opera */

#dubcarrquo {
	float: left;
	font-family: $LatoLight;
	color: #FFF;
	text-indent: 3px;
	margin-top: 7px;
	cursor: pointer;
}

/* Target Firefox */
@-moz-document url-prefix() {
	#dubcarrquo {
		padding-top: 2px;
	}
}

/* Target Firefox */

/* Target Opera */
@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
	#dubcarrquo {
		padding-top: 2px;
	}
}

/* Target Opera */

#uparrow {
	background-image: url(/images/icons/orangebgButtonArrowTop.png);
	background-repeat: no-repeat;
	background-position: 0 25%;
	text-indent: 15px;
	padding-top: 2px;
	margin-left: 2px;
}


#downarrow {
	background-image: url(/images/icons/orangebgButtonArrowBottom.png);
	background-repeat: no-repeat;
	background-position: 0 25%;
	text-indent: 15px;
	padding-top: 2px;
	margin-left: 2px;
}


#backarrow {
	background-image: url(/images/icons/orangebgButtonArrowLeft.png);
	background-repeat: no-repeat;
	background-position: 0 25%;
	text-indent: 15px;
	padding-top: 2px;
	margin-left: 2px;
}


/* Target Safari & Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	#backarrow {
		background-position: 0 10% !important;
	}

	#downarrow {
		background-position: 0 10% !important;
	}

	#uparrow {
		background-position: 0 10% !important;
	}
}

.avis,
.enterprise,
.hotelres {
	height: 18px;
	width: 198px;
	border: none;
	margin: 0px 0px -5px 0px;
	text-indent: 10px;
	padding-top: 1px;
	font-family: $Lato;
}

.avis {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMYAAAASCAMAAAA36lFWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACpQTFRF29vCys9d8fLkucEs19qamZl0XFwbZGQdiopCkpJbfX0kq7QA////b28gxD993wAAAOFJREFUeNrclkkShDAIRRNAzUDuf91mSA/LLKF/lYhUFj4/FJYrsHqbhypXv3pUtXGMIYfDaqxzjNZWUI31fxiViFBi9dwuCQBSzYOBLKoTmCwnyyp7NQ8G/WAQg6KgPDERJGoqNUAximCgJooymUuu2ZC3xrcbRmC2gHdUGgxFwO2G3a2nJn44cmDYZGw3zAwLzpEHQ749MLgbAOoDqCNofHkwdDLmng1WH6ynpFrYXUmBYQBfDNw9VazRMA2Gr+7pW3yvcR3wWnyFO8YIq/v8n6qNO66eY4yxnsA6xXgJMACyK5XwaHkMswAAAABJRU5ErkJggg==) no-repeat;
	cursor: pointer;
}

.enterprise {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMYAAAASCAMAAAA36lFWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACpQTFRF6urQ9PTq+/v34OOgj49SmZl0XFwbZGQdiopCkpJbfX0kq7QA////b28gPRJFIQAAAKpJREFUeNrcl9EOwyAIRUFmi0z//3eH0qxmLl0fYSeN4cEHTkr1FrJjCj9vArnk4pQHy+gR0yerhm52i7TRY6qdlEyn1180mJtTpJ0aeLaMcTVo7hmjaoCuRAT90Sqqho2SoXVMDYCxGHHfxtLzX2hADTxUeAwVBr435k88sMZx4L6Jev3Br2gYJIwAXWtojHTLNkfDeplwWTa/7JahFlYNabtj7v42vQQYAJoNlfIP3NFaAAAAAElFTkSuQmCC) no-repeat;
	cursor: pointer;
}

.hotelres {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMYAAAASCAMAAAA36lFWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACpQTFRF6erB/Pz61NW5ys9d9PTrmZl0XFwbZGQdiopCkpJbfX0kq7QA////b28g1AJERAAAALVJREFUeNrsl0kOwyAMRb+xkxAw979uHdKiDmmbXW2pDxAIsfCTGQQmx6y5ngTTOq1eyaXHyIqvGrbYLaXtMZoGJ/6skXNzSmlDg1W1e/CtRtQQmIYAFZBrtWmEy0bXIKo6gI3jbaqtCVUaGmLjcBq9JwmuISAl2kK3fi8hs8HYSBWDFFCDjt6KeEf8DX+N3xxxfiVp0Av3EX7SKG6Zz2vkMvtl6TGmYw2RO43SFsec/TZdBBgAoLeV6k8WysQAAAAASUVORK5CYII=) no-repeat;
	cursor: pointer;
}

.expandbluebuttons {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAdCAMAAABc3/ZbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFdQTFRFNa3sQbTuBZTbBZbdIqnuJKrtBZzrLKzuEqPtKKztDqLtP7PuPLPuO7LuFaTuBZzoBp7tObHtBZPbC6DtF6TuH6juGqXuL6zuN6/sMazsBpjhBZrkBpffNlS7RwAAADNJREFUeNoEwYUBgDAAACDsdm52/H+nIDMYTaILt1OjUyntDptZq7da1ILX41PIpV+AAQAroAGXX+VN4gAAAABJRU5ErkJggg==) repeat-x;
	border: outset;
	border-width: thin;
	border-color: #e4e4e3;
	margin: 5px;
	color: #ffffff !important;
	font-size: 13px;
	cursor: pointer;
	font-family: $LatoLight;
	white-space: nowrap;
	min-width: 100px;
}

.expandorangebuttons {
	background: #eda653 url(/images/csLighterOrangeBg.png) 0 top repeat-x;
	border: outset;
	border-width: thin;
	border-color: #e4e4e3;
	margin: 5px;
	color: #ffffff !important;
	font-size: 13px;
	cursor: pointer;
	font-family: $LatoLight;
	white-space: nowrap;
}


/* Universal Form CSS */
.form_table {
	background-color: #e5f5fd;
	border-spacing: 5px 5px;
	padding-top: 10px;
}

/* iPad specific using portrait dimensions
	increases the spacing for springforms tables
*/
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
	.form_table {
		border-spacing: 17px 5px;
	}
}

.form_table_head {
	background-color: $cerulean;
}

.form_head_1 {
	color: white !important;
	background-color: $cerulean;
	font-family: $LatoLight;
	font-weight: 300 !important;
	padding-left: .5em;
	font-size: 20px;
	background-repeat: no-repeat;
	background-position: 5px center;
	line-height: 45px;
	text-indent: 15px;
	letter-spacing: 1px;

	a:link,
	a:visited {
		color: $white;
	}
}

@media screen and (max-width: $screen-medium) {
	.form_head_1 {
		text-indent: 0px;
	}
}

.form_head_block {
	background-color: $midnight-blue !important;
	line-height: 35px !important;
	width: 35px !important;
	display: inline-block;
	text-indent: 12px;
	padding: 0px !important;
	margin: 5px 5px 5px 5px !important;
	float: left;
	font-size: 24px;
	font-weight: bold;
}

.form_sidebar {
	width: 30%;
	table-layout: fixed;
	float: right;
	vertical-align: middle;
	padding: 26px;
	height: 200px;
	margin-top: 50px;
}

.form_label {
	font-size: 14px;
	height: 18px;
	color: #6D6E71;
	padding-left: 6px
}

.form_input_text {
	text-align: center;
	height: 35px;
	font-size: 18px;
	width: 99%;
}

.form_input_text_grey {
	text-align: center;
	height: 35px;
	font-size: 18px;
	width: 99%;
	background-color: #d1d2d4;
}

.form_exmark .Incorrect,
.form_checkmark .Correct {
	display: block;
}

.form_checkmark {
	color: green;
	font-size: 18px;
	text-align: left;
	line-height: 35px;
	background: #CAE5CD;
	text-indent: 35px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAXCAMAAADJPRQhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRFw+LGesF+0unU5vPodL54zufRvuDBu96+ndKh////yuXN+v378/n0+v36qtitjMmQeyhBDQAAAK9JREFUeNqM0lkKxSAMBVATE6dq3f9uG6OlGnjw7k/BQwalDvkMup4cony5mHQiSIHZCt8EAGLOCAfQEIRTWHpNiuh83dIizQonc3ze4mFVcJniQ1Oo2ov6GDElEarED6ZEoj4AN1BhmUhl9aLk57YiTQ96zbdC8+WVjDCOAirUvEkuNAZI6YBDspsXp/vKRta6CkYGLbAii8X3hYxUvn7I9qr/yHXkE7R5/6FHgAEAJk8P8kt7rFwAAAAASUVORK5CYII=);
	background-repeat: no-repeat;
	background-position: 5px center;
}

.Incorrect,
.Correct {
	display: none;
	color: #6D6E71 !important;
}

.form_exmark {
	color: red;
	font-size: 18px;
	text-align: left;
	line-height: 35px;
	background: #f8b1aa;
	padding: 0px 5px 0px 0px;
	margin: 0px 5px 0px 0px;
	text-indent: 35px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAMAAABhEH5lAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRF7BAY8ERL/N3e/////eTh7Rgg/ODd+sLE/vb295yg+be68Vhe8EFH9X6D95ea7iUsvf5HqAAAAHpJREFUeNpk0NsSwyAIBFBqJZCb/P/fRliYNglvnhl3FdLnLPR9Tg9qddSijQdEDgEJE0yMTIL6TuwmxnQ0XFS31eXTKz4sJWkazwkpmqXMNP7e5cmMjqJIzl4QutALakbR5UZrkJ5od7Mts0b+W3f5PeK2nPcKLwEGAB06Bit58ydxAAAAAElFTkSuQmCC);
	background-repeat: no-repeat;
	background-position: 5px center;
}

.form_table_close {
	background-color: #ed8222;
}

.form_close_row {
	color: white !important;
	padding-left: .5em;
	font-size: 20px;
	line-height: 45px;
	text-indent: 15px;
	letter-spacing: 1px;
}

.form_checkbox {
	background-image: url(/images/check_clear_large.png);
	background-repeat: no-repeat;
	background-position: 5px 0px;
	padding-left: 20px;
	background-color: #E5F5FD;
	border-spacing: 10px 20px !important;
}

.form_checkbox_on {
	background-image: url(/images/check_on.png);
	background-repeat: no-repeat;
	background-position: 5px 0px;
	padding-left: 20px;
	border-spacing: 10px 20px !important;
}

.form_radio {
	background-image: url(/images/radio_clear.png);
	background-repeat: no-repeat;
	padding-left: 20px !important;
}

.form_radio_on {
	background-image: url(/images/radio_on.png);
	background-repeat: no-repeat;
	padding-left: 20px !important;
}

.form_radio_label,
.form_checkbox_label {
	font-size: 14px;
	height: 20px;
	color: #6D6E71;
	background-color: #e5f5fd;
	position: relative;
	padding-bottom: 2px;
}

.form_mobile_radio_label,
.form_mobile_checkbox_label {
	font-size: 14px;
	height: 20px;
	color: #6D6E71;
	background-color: #e5f5fd;
	position: relative;
	padding-bottom: 2px;
}

.springform_checkbox {
	position: absolute;
	margin-top: 3px;
	/* 0 opacity for IE instead of hidden to make chrome/safari/etc form validation to work */
	opacity: 0;
}

.springform_radio {
	position: absolute;
	margin-top: 1px;
}

/* Target Firefox */
@-moz-document url-prefix() {

	.form_radio,
	.form_radio_on {
		background-position: 5px 5px !important;
		padding: 2px;
	}

	.form_checkbox,
	.form_checkbox_on {
		background-position: 5px -2px !important;
	}

	.form_checkbox_fake {
		padding-left: 25px !important;
		background-position: 5px -3px !important;
	}
}

/* Target Firefox */

.form_checkbox_fake {
	background-image: url(/images/check_clear_large.png);
	background-repeat: no-repeat;
	background-color: #E5F5FD;
	border-spacing: 10px 20px !important;
	padding-left: 25px;
	background-position: 5px 0px;
	color: #6D6E71;
}

.form_radio {
	background-position: 5px 2px;
}

.form_radio_on {
	background-position: 5px 2px;
}

.button_background {
	background: url(/images/orange_search_onepx.png);
	background-repeat: repeat-x;
	width: 100%;
	height: 27px;
}

.airtaxi {
	text-indent: 9px;
	text-align: right;
}

td.airtaxi {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAMAAACecocUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAlQTFRFAAAA7dQp////iEj+owAAAAN0Uk5T//8A18oNQQAAADRJREFUeNpcjUEOACAIwzr//2gZiBp6IF0ygPUgp67LlAuj6SI7EYY34Zw+3qWP8/3dAgwAK84AokdwTwMAAAAASUVORK5CYII=);
	background-position: 2px;
	background-repeat: no-repeat;
}

/*
 * Home page
 */

#home-container.pageContainer {
	overflow: hidden;
	width: 90% !important;
	max-width: 1500px !important;
	margin: 0 auto !important;
}

.show-for-mobile {
	display: none;
}

.homeMobileAd {
	display: none;
}

#home-right-banner-ad {
	float: right;
	width: 300px;
	margin-top: 2px;
}

#home-top-banner-ad,
#below-header-banner-ad {
	position: relative;
	margin: 16px auto 0 auto;
}

#skinny-banner-ad {
	position: relative;
	padding: 16px 0;
	max-width: 970px;
	margin: 0 auto;
	background-color: transparent;
}

#home-weather {
	float: right;
	clear: right;
	width: 300px;
	margin: 0;
}

#home-main {
	@include flexBox;
	@include flexDirectionColumn;
	@include flexCenter;

	background-color: rgb(0, 21, 61);
	position: relative;
	height: auto;
	min-height: 440px;
	padding: 80px 0;

	@media (max-width: $screen-medium-large) {
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/home_main/flightaware_homepage_responsive_aircraft@2x.jpg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;

		video {
			display: none;
		}
	}

	video {
		background-size: cover;
		background-position: 50% 50%;
		position: absolute;
		margin: auto;
		width: 100%;
		height: 100%;
		right: -100%;
		left: -100%;
		bottom: -100%;
		top: -100%;
		z-index: -100;
		object-fit: cover;
		filter: brightness(70%);
		background-color: $midnight-blue;
	}

	.home-main-inner {
		max-width: 970px;
		margin: 0 auto;
	}
}

#home-photos-links {
	float: right;
	font-size: 11px;
	padding-right: 2px;
	padding-top: 4px;

	a {
		margin-left: 10px;
	}
}

#home-main-messaging {
	h1 {
		display: inline;
		color: $white;
		font-size: 60px;
		font-weight: 700 !important;
		margin-bottom: 16px;
	}

	p {
		color: $white;
		font-size: 20px;
		line-height: 24px;
	}

	.trademark {
		vertical-align: super;
		font-size: 14px;
	}
}

#home-main-search {
	@include flexBox;
	@include flexAlignCenter;
	color: $white;
	font-size: 16px;
	background-color: $white;
	opacity: 0.96;
	padding: 15px;

	.searchOption[data-fa-search-type="airlineSearch"],
	.searchOption[data-fa-search-type="routeSearch"] {
		form {
			@include flexBox;
			@include flexAlignStart;
			width: 100%;
		}
	}

	.searchOption[data-fa-search-type="omniSearch"] {
		background-color: $white;
		max-height: 32px;
		width: 180px;
		margin-top: 5px;
		border-radius: 0px;
		border: solid 1px $silver;
	}

	.fa_omnisearch_container .select2-container-multi .select2-choices {
		@include flexBox();
		@include flexAlignCenter();

		border: none;
		background: $white;

		.select2-results {
			background: $white;
		}
	}
}


div#home-main-recent {
	font-size: 16px;
	color: $black;
	padding: 0 15px 15px 15px;
	display: none;
	background-color: $white;
	opacity: 0.96;
	border-radius: 0 0 5px 5px;
	transform: translateY(-1px);
}

#home-main-search,
div#home-main-recent,
#home-main-messaging {
	position: relative;
	width: 70%;
}

#home-main-search-ident>div,
#home-main-search-flightfinder>div {
	display: inline-block;
	padding-bottom: 6px;
}

#home-main-search input {
	font-size: 14px;
	height: 32px;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.homeSearchInputLabel {
	color: $midnight-blue;
	font-size: 14px;
	font-weight: bold;
}

.home-main-search-inputwrapper {
	max-width: 35%;
	text-align: left;
}

/*
.home-main-search-inputwrapper img {
  float: right;
  display: none;
}
*/
div.home-main-search-smallinput {
	min-width: inherit;
	max-width: inherit;
	width: 65px;
}

.home-main-search-inputwrapper label {
	font-family: $Lato;
	text-transform: lowercase;
	font-variant: small-caps;
	font-size: 14px;
	padding-left: 2px;
	letter-spacing: 1px;
	display: block;
}

#home-main-recent-title {
	font-size: 14px;
	color: $midnight-blue;
	font-weight: bold;
}

.home-main-search-submit button {
	margin-left: 4px;
}

#home-main-search-flightfinder .home-main-search-submit button {
	min-width: 40px;
	padding: 7px 12px;

	&:focus {
		padding: 6px 11px;
	}
}

#home-main-search {

	.trackInput,
	.trackSubmit button {
		height: 32px;
		margin-top: 5px;
	}
}

#home-main-search-swapicon {
	padding: 0 8px;
}

#home-main-search-swap {
	border: 1px solid #DCDCDC;
	background-color: #F5F5F5;
	border-radius: 2px;
	display: inline-block;
	height: 18px;
}

#home-main-search-swap {
	position: relative;
	top: 3px;
}

#home-main-search-swap:hover {
	cursor: pointer;
	background: #DCDCDC;
}

#home-main-search-swap img {
	padding: 3px;
}

#home-main-search .trackInput {
	background: #ffffff;
	height: 32px;
	border: 1px solid $silver;

	input:not(.blur) {
		color: #000000;
	}
}

#home-main-search-seperator {
	color: $midnight-blue;
	font-size: 14px;
	font-weight: bold;
	padding: 0 10px;
	margin-top: 16px;
}

html[dir="RTL"] {
	#home-main-search-seperator {
		margin-right: none;
		margin-left: 85px;
	}
}

#home-main-search-ident {
	overflow: hidden;
	width: 100%;
}

#home-main-recent table {
	border-collapse: collapse !important;
	margin-top: 5px;
	width: 100%;
}

#home-main-recent td {
	padding: 6px 1px;
}

#home-main-recent tr:not(:first-child) {
	border-top: 1px #aaa solid;
	display: none;
}

#home-main-recent tr:hover {
	background-color: #F3ED86 !important;
	color: black;
	cursor: pointer;
}

#show-more-recent-toggle {
	color: $cerulean;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-left: 4;
	margin-top: 10px;

	i {
		display: inline-block;
		height: 8px;
		width: 13px;
		margin-right: 5px;
		background-image: url("/images/home_main/icon-accordion-show@2x.png");
		background-repeat: no-repeat;
		background-size: contain;
	}

	span.actionText:before {
		content: 'View More';
	}

	&.expanded {
		i {
			background-image: url("/images/home_main/icon-accordion-hide@2x.png");
			margin-bottom: 3px;
		}

		span.actionText:before {
			content: 'Hide Recent Searches';
		}
	}
}

.home-main-recent-identifier {
	text-align: left;
	padding-left: 4px;
}

.ff-airlinelogo img {
	height: 16px;
}

.ff-airline {
	text-align: left;
}


#home-main-search input,
#home-main-search-flightfinder input {
	font-size: 14px;
}

#home-main-caption {
	display: none;
	text-align: right;
	padding: 0 8px 5px 0;
}

#home-main-caption-title {
	font-family: $Lato;
	text-transform: lowercase;
	font-variant: small-caps;
	font-size: 12px;
	letter-spacing: 1px;
	margin-bottom: 4px;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
	color: #FFF;
	text-decoration: none;
}

#home-main-caption-title:hover {
	text-decoration: underline;
}

#home-main-photolink {
	position: absolute;
	bottom: 15px;
	right: 20px;
	text-align: right;
	color: white;
	display: none;
	/*text-shadow: 0 0 2px #000;*/
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#map-messaging {
	@media (max-width: $screen-small) {
		display: none;
	}
}

#products-messaging {
	width: 80%;
	margin-bottom: 16px;

	@media (max-width: $screen-medium-large) {
		width: 100%;
	}
}

.messaging-container {
	margin-top: 64px;
	margin-bottom: 32px;

	.messaging-container-inner {

		&.trends-container-inner {
			padding: 0 15px;
		}

		@media (max-width: $screen-medium-large) {
			width: 100%;
		}
	}

	.messaging-title {
		&.map-messaging-title h2 {
			margin-top: 0px;
			margin-bottom: 10px;
			font-size: 44px;
			line-height: 48px;
			font-weight: 700;
		}

		&.trends-messaging-title h3,
		&.products-messaging-title h3 {
			margin-top: 0px;
			margin-bottom: 8px;
			font-size: 32px;
			font-weight: bold;
			color: $mine-shaft;
		}
	}

	.messaging-subtitle {
		&.products-messaging-subtitle p {
			font-size: 16px;
			color: $mine-shaft;
		}
	}

	.messaging-content {
		&.map-messaging-content p {
			font-size: 20px;
			line-height: 20px;
			margin: 0;
			width: 60%;

			@media (max-width: $screen-medium-large) {
				width: 100%;
			}
		}

		&.trends-messaging-content,
		&.products-messaging-content {
			p {
				font-size: 20px;
				line-height: 24px;
				margin-top: 0;
				margin-bottom: 8px;
				color: $mine-shaft;
			}

			a {
				font-size: 16px;
			}
		}

		&.products-messaging-content {
			p {
				margin-bottom: 16px;
			}
		}
	}
}

#home-live-map {
	margin: 2px 305px 0 0;
	height: 600px;
	border: 1px solid $silver;
	background-color: $midnight-blue;

	div.homePageMapLoading {
		height: 100%;
		background: url(/images/loading-large-gray.gif) no-repeat center center $white;
		opacity: 0.4;
	}
}

#home-flight-stats {

	display: inline-block;
	width: 100%;

	.flight-stats-inner {
		@include flexBox();
		@include flexDirectionRow();
		@include flexCenter();

		margin: 0 auto;
		padding: 0 15px 15px 15px;

		@media (max-width: $screen-medium-large) {
			@include flexDirectionColumn();
			@include flexAlignCenter();
		}
	}

	.current-and-stats {
		@include flexBox();
		@include flexDirectionRow();
		@include flexCenter();
		@include flexStart();
		width: 75%;
		margin-right: 16px;

		@media (max-width: $screen-medium-large) {
			width: 100%;
			margin-right: 0;
			margin-bottom: 16px;
		}

		@media (max-width: $screen-small) {
			@include flexDirectionColumn();
			@include flexAlignCenter();
		}
	}

	.current-traffic-container,
	.stats-chart-container,
	.trends-container {
		border: 1px solid #c5cdd5;
		height: 100%;
	}

	div.current-traffic-container,
	div.stats-chart-container {
		@media (max-width: $screen-small) {
			width: 100%;
		}
	}

	.current-traffic-container {
		@include flexBox();
		@include flexDirectionColumn();
		padding: 16px;
		width: 33%;
		height: auto;
	}

	#current-traffic-doughnut {
		min-height: 196px;
		width: auto;
		z-index: 2000;
	}

	.current-traffic-container {
		@include flexSpaceBetween();

		#doughnut-container {
			@include flexBox();
			@include flexCenter();
			@include flexAlignCenter();
		}

		.doughnut-inner {
			@include flexBox();
			@include flexDirectionColumn();
			position: absolute;
			text-align: center;

			span.airborne-flights {
				font-size: 30px;
				line-height: 32px;
				font-weight: bold;
				color: $cerulean;
			}
		}
	}

	.doughnut-text {
		font-size: 14px;
		line-height: 16px;
	}

	.chart-title {
		@include flexBox();
		@include flexAlignCenter();

		span {
			font-size: 14px;
			font-weight: bold;
		}

		margin-bottom: 16px;
	}

	.stats-chart-container {
		@include flexBox();
		@include flexDirectionColumn();
		@include flexSpaceBetween();

		margin-left: 16px;
		width: 66%;
		height: auto;
		padding: 16px;

		@media (max-width: $screen-medium-large) {
			margin-right: 0;
			margin-left: 16px;
		}

		@media (max-width: $screen-small) {
			margin: 16px 0 0 0;
		}
	}

	.trend-section-container {
		@include flexBox();
		@include flexDirectionColumn();
		@include flexSpaceEvenly();

		height: 100%;

		@media (max-width: $screen-medium-large) {
			@include flexDirectionRow();
			@include flexSpaceBetween();
		}

		@media (max-width: $screen-small) {
			@include flexDirectionColumn();
		}
	}

	.trends-container {
		@include flexBox();
		@include flexDirectionColumn();
		@include flexSpaceBetween();
		padding: 15px;
		width: 25%;
		height: auto;

		@media (max-width: $screen-medium-large) {
			width: 100%;
		}
	}

	.trend-section {
		span {
			display: inline-block;
			font-size: 16px;
			color: $mine-shaft;
			opacity: 0.64;

			a {
				opacity: 1;
			}
		}

		.trend-data {
			img {
				height: 20px;
				margin-right: 8px;
				opacity: 0.64;
			}

			#popular_aircraft,
			#busiest_airport,
			#percent_change {
				font-size: 30px;
				font-weight: bold;
				color: $cerulean;
				opacity: 1;

				@media (max-width: $screen-medium-large) {
					margin: 0;
				}
			}

			#popular_flights,
			#busiest_flights {
				display: block;
				font-size: 14px;
				opacity: 1;
			}
		}

		&:nth-child(2) {
			margin: 24px 0;
			padding: 40px 0;
			border-top: 1px solid rgba(197, 205, 213, 0.4);
			border-bottom: 1px solid rgba(197, 205, 213, 0.4);

			@media (max-width: $screen-medium-large) {
				margin: 0;
				padding: 0;
				border: none;
			}

			@media (max-width: $screen-small) {
				margin: 24px 0;
				padding: 24px 0;
				border-top: 1px solid rgba(197, 205, 213, 0.4);
				border-bottom: 1px solid rgba(197, 205, 213, 0.4);
			}
		}
	}

	.vertical-legend {
		@include flexBox();
		@include flexDirectionColumn();
	}

	.horizontal-legend {
		@include flexBox();
		@include flexDirectionRow();

		@media (max-width: $screen-small) {
			@include flexDirectionColumn();
		}
	}

	.last-updated-container {
		margin-top: 15px;
		font-size: 12px;
		font-style: italic;
		color: $mine-shaft;
		opacity: 0.64;
	}

	.legend-row {
		@include flexBox();
		@include flexDirectionRow();
		@include flexAlignCenter();

		margin-top: 8px;
		margin-right: 15px;
		line-height: 16px;

		.legend-box {
			height: 12px;
			width: 12px;
			background-color: green;
			margin-right: 5px;
		}

		span {
			font-size: 14px;
		}

		a {
			margin-left: 5px;

			i.fa-question-circle {
				font-size: 16px;
			}
		}
	}

	.select2-container {
		transform: translateY(-1px);

		.select2-choice {
			@include boxShadowNone();
			background: $white;
			color: $cerulean;
			text-decoration: underline;
			text-transform: uppercase;
			font-size: 14px;
			padding-left: 5px;
			border: none;
			border-radius: 0;
			background-image: none;
			width: auto;

			.select2-arrow {
				border: 0px;
				border-radius: 0px;
				width: 24px;
				background: $white;

				b {
					background-image: none;

					&:before {
						font-family: FontAwesome;
						content: "\f078";
						color: $cerulean;
						font-size: 10px;
						background: $white;
						position: absolute;
						top: 0;
						width: 15px;
						height: 15px;
						padding-left: 5px;
					}
				}
			}
		}
	}

	#stats-media-attr {
		opacity: 0.5;
		font-size: 12px;
		margin-left: 15px;
	}
}

#homepage-featured-products {
	max-width: 1024px;
	margin: 0 auto;
	padding: 56px 0;

	@media (max-width: $screen-small) {
		padding-left: 16px;
		padding-right: 16px;
	}

	.featured-image-container {
		margin: 0 auto;
		max-width: 821px;
	}

	.product-list-container {
		@include flexBox();
		@include flexDirectionRow();

		@media (max-width: $screen-small) {
			@include flexDirectionColumn();
			@include flexAlignCenter();
		}
	}

	.data-product {
		width: 50%;
		padding-right: 16px;

		.product-icon {
			@include flexBox();
			height: 144px;
			margin-bottom: 24px;

			img {
				vertical-align: middle;
			}

			@media (max-width: $screen-small) {
				@include flexCenter();
			}
		}

		.product-title {
			a {
				display: inline-block;
				text-decoration: none;
			}

			h4 {
				font-size: 20px;
				color: $mine-shaft;
				margin: 0 0 8px 0;

				&:hover {
					color: $cerulean;
				}
			}
		}

		.product-subtitle {
			margin-bottom: 16px;

			span {
				font-size: 20px;
				font-style: italic;
			}
		}

		.product-content {
			font-size: 16px;
			color: $mine-shaft;

			a {
				display: inline-block;
				color: $mine-shaft;
				text-decoration: none;

				&:hover {
					color: $cerulean;
				}
			}
		}

		.product-description-list {
			ul li {
				font-size: 16px;
				line-height: 24px;
			}
		}

		.product-button {
			min-width: 0;
		}

		@media (max-width: $screen-small) {
			width: 100%;
			margin-bottom: 40px;
		}
	}
}

.timePeriodDrop {
	border: none;
	text-transform: uppercase;
	white-space: nowrap;

	.select2-highlighted {
		background: $cerulean;
	}
}

#home-photos {
	width: 100%;
	padding-top: 2em;
	overflow: hidden;
}

#home-photos-scroller {
	padding: 1em 0 0 0;
	margin-bottom: 3px;
	overflow: hidden;
	white-space: nowrap;
}

#home-photos-scroller img {
	height: 90px;
	padding-right: 6px;
}


.airline-minilogo {
	height: 18px;
	width: 18px;
	vertical-align: middle;
	margin-right: 4px;
}

html[dir="RTL"] {
	.airline-minilogo {
		margin-right: none;
		margin-left: 4px;
	}
}

/* vertical-align is slightly off, but IE botches it */
.airline-minilogo {
	position: relative;
	bottom: 2px;
}

/* WARNING: responsive classes below for some of these classes. */

#home-squawks {
	width: 100%;
	padding-top: 2em;
	padding-bottom: 1em;
	overflow: hidden;
}

#home-squawks-links {
	float: right;

	a {
		margin-left: 10px;
	}
}

.home-squawks-single-outer {
	display: inline-block;
	width: 48%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0;
	padding-top: 1em;
	margin-right: 1em;

	&.right-squawk {
		vertical-align: top;
	}
}

.home-squawks-single {
	margin-top: 5px;

	h5 {
		color: $cerulean;
		font-family: $LatoLight;
		font-size: 20px;
		letter-spacing: .05em;
		overflow: hidden;
		padding: 0;
		margin: 0;
		cursor: pointer;
		line-height: 1.3em;
		font-weight: normal;
	}
}


.home-squawks-single-description {
	font-size: 1em;
	padding: 0;
	margin: 1em 0;
	overflow: hidden;
	line-height: 1.4em;
	height: 4.2em;
	/* 3 lines */
}

.home-squawks-single-description-more {
	padding-left: 4px;
}

.home-squawks-single-footer {
	color: #999;
	font-size: 11px;
	padding: 0px 18px 0px 0px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.home-squawks-single-footer:hover {
	color: #000;
}

.home-squawks-single-footer a {
	font-weight: bold;
	text-decoration: none;
}

.home-squawks-single-footer a:hover {
	text-decoration: underline;
}

.home-squawks-single-footer-commentcount {
	float: right;
	padding-right: 20px;
}

.home-squawks-single-footer-commentcount img {
	padding-right: 2px;
}

.home-squawks-single-footer-commentcount a {
	color: #999 !important;
}

/* Responsive classes for small-width windows */

@media (max-width: 1120px) {
	.home-squawks-single-outer {
		width: inherit;
		display: block;

		&.right-squawk {
			vertical-align: inherit;
		}
	}

	.home-squawks-single-description {
		height: auto;
	}
}

#home-delays {
	float: right;
	clear: right;
	width: 300px;
	border: 1px solid #b2b2b2;
	margin: 0 0 10px 0;
}

.home-delays-list {
	padding: 5px 10px 0 10px;
}

.home-delays-list table {
	width: 100%;
	margin-bottom: 2px;
	border-collapse: collapse !important;
}

.home-delays-list tr:not(:first-child) {
	/*border-top: 1px solid #b2b2b2;*/
}

.home-delays-list td {
	padding: 3px 0;
}

.home-delays-list td img {
	vertical-align: bottom;
}

.home-delays-none {
	text-align: center;
	padding: 4px 0 10px;
}

.home-delays-more {
	text-align: center;
	font-size: 11px;
	padding-bottom: 4px;
}

/*
 * Flight Tracking
 */

.adhoc-warning {
	font-style: italic;
	text-align: center;
	margin-top: -12px;
	margin-bottom: 12px;
	padding: 5px;
	background-color: #FAE051;
	font-size: 11px;
}

.report_inaccuracy {
	text-align: center;
	font-style: italic;
	font-size: 12px;
	padding: 5px;
}


.track-main {
	margin-top: 2px;
}

.track-map {
	width: 100%;
	vertical-align: top;
	background-color: rgb(0, 51, 102);
	padding: 0;
	box-shadow: 0 0 5px #888;
}

.track-map #map {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.track-details {
	vertical-align: top;
	width: 100%;
	padding: 0;
}

.track-advertisement {
	vertical-align: top;
	min-width: 300px;
	max-width: 300px;
	width: 300px;
	min-height: 600px;
	max-height: 600px;
	height: 600px;
	padding: 0;
}

.track-panel {
	position: relative;
	outline: 0px solid #fae051;
	padding: 0;
	border-right: 1px solid $cerulean;
	border-bottom: 1px solid $cerulean;
	border-top: 1px solid $cerulean;
	box-shadow: 0 0 5px #888;
	background: #FFF;
}

.track-panel-header {
	background-color: $aqua-spring;
	padding: 8px 0 8px 8px;
}

.track-panel-header .thumbnail_nav {
	float: left;
	margin-right: 12px;
	max-height: 50px;
}

.track-panel-header-content {
	margin: 3px 0;
	padding: 0;
}

.track-panel-header-title {
	color: $midnight-blue;
	font-size: 22px;
	font-family: $Lato;
	padding-left: 8px;
}

.track-panel-header-subhead {
	font-size: 12px;
	padding-top: 3px;
	padding-left: 8px;
}

/* IE text rendering */
.ie89 .track-panel-header-subhead {
	padding-top: 0;
}

.ie89 .track-panel-header-content {
	margin-top: 0
}

div.track-panel-smalltext {
	font-size: 10px !important;
}

.faadelay {
	overflow: auto;
	padding: 10px 15px 6px;
	background: #FAE051 url(/images/track/warning.png) -15px -15px no-repeat;
}

.faadelay-notice {
	margin-bottom: 8px;
}

.faadelay-notice ul {
	margin: 2px 0 0 0;
}

.faadelay-notice li {
	margin-top: 4px;
}

.faadelay-notice-footer {
	font-size: 10px;
	border-top: 1px solid black;
	padding: 4px 6px;
	margin: 4px auto 0;
	text-align: center;
	width: 70%;
}

.airport-faadelay {
	margin-bottom: 10px;
	font-size: 13px;
}

.airport-faadelay-sidebar {
	float: right;
	font-size: 12px;
	border-left: 1px solid black;
	padding: 2px 30px 2px 20px;
}

.track-panel-body {
	margin-top: 12px;
}

.track-panel-course {
	text-align: center;
	width: 100%;
	padding: 0 5px;
	border-spacing: 0;
}

.track-panel-airport {
	margin: 0;
}

.track-panel-terminal {
	margin: 4px 0 0 0;
	font-size: 12px;
	color: #555;
}

.track-panel-actualtime {
	font-weight: bold;
	padding-top: 10px;
}

.track-panel-scheduledtime {
	padding-top: 4px;
}

.track-panel-averagetime {
	padding-top: 2px;
}

.track-panel-times {
	margin: 0 auto;
	border-collapse: collapse !important;
	border-spacing: 0;
	font-size: 12px;
	color: #555;
}

.track-panel-times th {
	text-align: left;
	font-weight: normal;
	padding: 0 4px 0 0;
}

.track-panel-times td {
	text-align: right;
}

.track-panel-data td {
	padding: 0 0.5em;
}

.track-alert {
	margin: 20px 0 15px;
}

.track-panel-other {
	margin: 5px 0 14px;
	font-size: 10px;
	text-align: center;
}

.track-panel-progress {
	width: 80%;
	margin: 8px auto 4px;
	border: 1px solid $cerulean;
}

.track-panel-progress-fill {
	background: $cerulean;
	height: 12px;
	line-height: 12px;
	font-size: 10px;
	color: #fff;
	text-align: center;
	float: left;
	overflow: hidden;
}

.track-panel-progress-empty {
	font-size: 10px;
	height: 12px;
	line-height: 12px;
	color: $cerulean;
	float: right;
	text-align: center;
	overflow: hidden;
}

.track-panel-progress-label {
	font-size: 10px;
	height: 12px;
	line-height: 12px;
	color: $cerulean;
	float: right;
	text-align: left;
	overflow: hidden;
	width: 9%;
}

.track-panel-duration {
	font-size: 12px;
	text-align: center;
}

.track-panel-date {
	font-size: 12px;
	text-align: center;
	font-weight: bold;
	margin-top: 4px;
}

.track-panel-inner {
	padding: 15px;
}

.track-panel-data {
	border: 1px solid $cerulean;
}

.track-panel-report {
	display: block;
	text-align: right;
	font-size: 10px;
	padding-top: 2px;
}

.track-panel-footer {
	background-color: $aqua-spring;
	padding: 1px 15px;
}

.track-panel-footer-successbg {
	background: $aqua-spring url(/images/live/checkmark.png) top right no-repeat;
	/*min-height: 94px;*/
}

.track-panel-footer-gearth {
	float: left;
	padding-top: 8px;
	height: 17px;
	width: 93px;
}

.track-panel-footer-gearth-alone {
	padding-top: 2px;
}

.track-panel-footer-desc {
	padding-top: 4px;
	font-size: 11px;
	float: left;
	width: 100%;
}

.track-panel-footer-advanced {
	float: right;
	font-size: 10px;
}

.track-panel-footer-alert input {
	font-size: 14px;
	/*margin-top: 6px;*/
	padding: 0;
	margin: 6px 0 0 0;
	width: 70%;
	float: left;
}

.track-panel-footer-loading,
.track-panel-footer-reg-loading {
	padding-left: 12px;
	padding-top: 7px;
	display: none;
}

.track-panel-footer-error,
.track-panel-footer-reg-error {
	color: #ED1C24;
	font-weight: bold;
	display: none;
}

.track-panel-footer-alertdesc {
	margin-top: 4px;
	display: none;
	line-height: 10px;
	float: left;
}

.track-panel-footer-alertdesc-icon {
	float: left;
	height: 100%;
}

.track-panel-footer-alertdesc-icon svg {
	position: relative;
	top: 3px;
}

.track-panel-footer-alertdesc-content {
	margin-left: 18px;
}

/* For browsers that don't support SVG */
.ie8 .track-panel-footer-alertdesc-content {
	margin-left: 0;
}

.track-panel-footer-alert form {
	padding: 0;
	margin: 0;
}

.track-panel-footer-alert button,
.track-panel-footer-success button {
	float: left;
	margin: 4px 4px 4px 15px;
	min-width: inherit !important;
	padding: 5px 10px 6px 10px !important;
}

.track-panel-footer-alert-self {
	padding-right: 10px;
	margin-right: 10px;
	float: left;
}

.track-panel-footer-separator {
	margin-bottom: 1px;
	margin-top: 1px;
	border: 1px dotted #fff;
	width: 100%;
	float: left;
}

#track-panel-footer-alert-self-btn {
	margin-bottom: 0;
}

.track-panel-footer-alert-self button {
	margin-bottom: 10px;
	margin-left: 0;
}

.track-panel-footer-hidden {
	display: none;
}

.track-panel-footer-success {
	display: none;
}

.track-panel-footer-success-header {
	font-size: 18px;
	font-weight: bold;
	padding-top: 4px;
}

.track-panel-footer-success-subhead {
	padding: 6px 0 4px;
}

.track-panel-footer-reg {
	margin-top: 6px;
	display: none;
}

.track-panel-footer-reg-email {
	margin-top: 4px;
	display: none;
}

.track-panel-footer-reg-email input {
	font-size: 14px;
}

.track-panel-footer-reg-email .floatLeft {
	margin-top: 3px;
}

.track-graph>div {
	margin: 10px auto;
}

.airport-info {
	color: #FFF;
}

.airport_delays {
	width: 100%;
	margin-top: 15px;
}

.airport_delays ul {
	margin: 5px 0;
}


.orange_find_flight,
.orange_create_alert,
.orange_create_alert_wide {
	background: url(/images/orange_search_onepx.png);
	background-repeat: repeat-x;
	float: right;
	min-width: 263px;
	height: 27px;
	border: none;
	cursor: pointer;
	color: #FFF;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: right;
}

.orange_create_alert_wide {
	min-width: 310px;
}

.grey_submit_button {
	background: url(/images/grey_search_onepx.png) !important;
	background-repeat: repeat-x !important;
	cursor: not-allowed !important;
}

/*
 * Squawks
 */
.add_squawk_icon {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAlCAMAAAAKoCvGAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGBQTFRF7Min+vr6y28M63wO9IkXxcXE876P7H8d2dnZ6OjovLGo9uTU8a5x8vLy7ZdKs2AK041P5Ic0/fHn+dm6yppv9/f376Jd/OvctJ+M/vfx3nwc7o46/f3933gK7YIi////wqkC2wAAAf1JREFUeNp8lYuygyAMRBEq+ECtpWLxgf//lzcBQbTebmccR88uMQZLtl1LBlqWZfulnASaa0lI3Qw/PRE32lrbt+BR6PnHEvClbu2uWWtOVDnceSKuZpuon1vJQ2l3OLdf8qWVrrQLnkl7K1gGSmuyJeDKq00YIS4eEqicPJwiyXaljmmyjwdj67qeccEEPCJIzukKEwX+GxdMq5eB9mVmJJqxBL+kC1cyN7Fli1FzWIA6fD3jQkhzeiejFimepON1NtcuNuFbV4/oJubpgONlpvfww6As5kzdirhP931DHGtJsuF0ceVQujIW00OXY3oibq94fCnC1tspG3Fsf3fFV9eCUzV+qhCfzvgKJ/uo8Es5Yws5FPDVwYjjcfL9ZUKdaCNFwNcEp9M+A3JM6drRtusoPXA49zjzb9WMqjbmNSre+g4gHgyIU7pXvm2vmssWdqvU7Sz8EE8OhxJOuLAcAvV8DHwYGJ9Oj3SsRcwQK8K2SKa9u8URuW66gB+8w/fE270tkI4PW5A8r3r7v56fKg8qipLkRV6938/+F174H+JwgAWq6vO59QBdRJUOdw7veT8vngQvy7IhZVCwVekyPdCRaJqBNImCC1cCD5ieVVHG2/BRJlmqYRgSE7RA5vhJjVrI8iV0OZMruBnSe+T+XwVdaGrix9frT4ABAOtmiWAXd93YAAAAAElFTkSuQmCC);
	width: 46px;
	height: 37px;
}

.share_photo_icon {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAlCAMAAAAKoCvGAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGBQTFRF7HwUzm8L+Pj4tbSz+Ne364Uo9YoY2NjYycnI5+fn87N547mT+ebV8fHx75VFuGQK7Ys0/PPrzotQz5dl993H/O3g9cab/vn0s5uGzKeE3oc58KJc/f3933gK7YIi////sgRcSQAAAh5JREFUeNp8lW27dCAUhTfqoCGZIeaU/P9/+ezd22CcZ31wJfeqVTvAHrRMmnVlWVpr9z9VVhBbo+BKGqGn/j+eDz5LR+JSmgcjz50l43ZSLokrZcSDtd/TfHDmzgrRunO0jC+PQAEcLeTx0aIh46PxsBRGXafhyrA+8IgzL6380MIunQF3dbx1oFgFP14ce5UDTfN84VAUW1DCsU+xSXf73im48sVwg5sxFEAbyTHXwXSHO+E31K970iJ6Ap7ohFOnzrjf2ZnpuE0wXHGg6LFgHg62sdMO3HaHyznXetZCs8U3mQNeHPEg58ySaNx57BB0v2hsnfCfQIPIqY2/pxqEIgzDdh59w4Q64ROHcCBw+E7CcaWEb7BtWNIp4bQ6wtXsrXw74XQ9rRRx7kefd0vW4g43ecdnucXjti/CR7/gRSpSEFMYEMycV3rECxSeUTHn4e0kpNEUDleK0a/45l82+gzEvV/G0bcYp+jD8cxE3J8n8rA518tqn+WKH843mrjEI+CjxZVimOKAD9eXB+dR6OlmE6KfRh+ueLSgh9Or4cNEQwNN07yev5y7ez3Xqkmq65bwplrXlSw3nmdVHegW6romA2nFaS7zcBq8Tmp7SM3oWYMn4b+IZ7hFvD0ouJrq/X5Fyy/S+XHfl9AflUw1eV7oeSGdn+LnFcovRRt6Hu8H0p8n1oK9lXeRpaXP70fw13/IeyjA6YfwT4ABAEEsh688aI/sAAAAAElFTkSuQmCC);
	width: 46px;
	height: 37px;
}

.tickLabel,
.legendLabel {
	white-space: nowrap;
}

.InvalidField {
	border: thin solid red;
}

/* facebook overrides */
.FBConnectButton_Text {
	white-space: nowrap;
}

.fb_share_count_top {
	display: block;
	letter-spacing: -1px;
	line-height: 22px !important;
	margin-bottom: 7px;
	font-size: 18px !important;
	border: solid 1px #b0b9ec
}

.fb_share_count_nub_top {
	display: none !important;
}

.springtxtarea {
	font-size: 18px;
}



/*
	IE9 CSS
*/
.ie9 #trackBox TD.trackboxPriGradient {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F0903C, endColorstr=#E67E23);
}

.ie9 #trackBox TD.trackboxAirportGradient {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F4AA6A, endColorstr=#C2600B);
}

.ie9 #add_sq_p {
	padding-top: 9px;
}

.ie9 #dubcarrquo {
	padding-top: 1px;
}

.ie9 .springform_checkbox {
	margin-top: 0px;
}

.ie9 .springform_radio {
	margin-top: 0px;
}

/*
	IE8 CSS
*/
.ie8 #trackBox TD.trackboxPriGradient {
	background: #F4A25A url(/images/track/trackbox_pri_bg.gif) 0 top repeat-x;
}

.ie8 #trackBox TD.trackboxAirportGradient {
	background: #F4A25A url(/images/track/airport_info_body_bg.gif) 0 top repeat-x;
}

.ie8 .springform_checkbox {
	visibility: visible !important;
}

/*
	IE8/9 CSS
*/
.ie89 #quickTrackerCol1 {
	font-weight: bold;
}

.ie89 .unifiedtrack {
	padding-top: 1px;
	text-indent: -6px;
}

.ie89 .unifiedtrack_orange,
.ie89 .unifiedsearch_orange {
	padding-top: 1px;
	text-indent: -5px;
}

.ie89 .form_input_text {
	padding-top: 10px;
	height: 25px;
}


/*
	Facebook magic
*/
div.fb-like span {
	height: 62px !important;
}

.mainHeader A {
	color: #FFF !important;
	font-size: 12px !important;
}

.altmainHeader A {
	color: #FFF !important;
	font-size: 12px !important;
}

.secondaryHeader,
.secondaryHeader A {
	color: #FFF !important;
	background-color: $cerulean;
	font-size: 12px;
	text-align: left;
	font-weight: normal;
}

.secondaryHeader {
	padding-left: .5em;
	height: 12px;
	font-family: $Lato;
	font-size: 14px;
}

.paddedCell {
	padding: 10px 0;
}

p.secondaryHeader {
	height: auto;
	margin-bottom: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.secondaryHeader th {
	text-align: inherit;
}

A.smallrow1:link,
A.smallrow2:link,
A.smallActiverow1:link,
A.smallActiverow2:link {
	color: $orange;
}

.row1,
.row2 {
	font-size: 12px;
}

.row1,
.row2,
.smallrow1,
.smallrow2,
.smallActiverow1,
.smallActiverow2 {
	color: #000;
}

.row1,
.row2,
.smallrow1,
.smallrow2 {
	text-align: left;
}

.row1,
.smallrow1,
.smallActiverow1 {
	background-color: #FFF;
}

.row2,
.smallrow2,
.smallActiverow2 {
	background-color: #f3f3f3;
}

.smallrow1,
.smallrow2,
.smallActiverow1,
.smallActiverow2 {
	font-size: 12px;
	padding-left: .25em;
	padding-right: 0;
	margin: 0;
}

.smallActiverow1:hover,
.smallActiverow2:hover,
.smallActiverow1Hover,
.smallActiverow2Hover {
	background-color: #F3ED86;
	color: #000;
	font-size: 12px;
	cursor: pointer;
}

.smallActiverow1:hover td,
.smallActiverow2:hover td,
.smallActiverow1Hover td,
.smallActiverow2Hover td {
	border-left: 1px solid #F3ED86;
}



.highlightRow {
	background-color: #FAE051;
}


/* TODO: Move to adsb-stats specific css */
.newSiteRow {
	background-color: #EBE1C5;
}


/* jQuery lightbox z-index overrides */
#lightbox-overlay {
	z-index: 999999 !important;
}

#lightbox {
	z-index: 9999999 !important;
}

/* jQuery UI z-index overrides */
.ui-widget-overlay {
	z-index: 999999 !important;
}

.ui-widget.ui-dialog {
	z-index: 9999999 !important;
}

.dwn {
	font-size: 75%;
	padding-left: .2em;
	color: $orange;
}

.userSymbol {
	line-height: 1;
}

#userImg {
	vertical-align: middle;
	padding-right: 10px;
}

#myFaDropDownTable tr:hover {
	background-color: inherit;
}


#topUserInfo {
	padding: 10px 0px;
	overflow: hidden;

	.topUserInfoSub {
		display: block;
		float: left;
	}
}

.topInfoWrapper {
	border-bottom: 1px solid rgb(221, 221, 221);
}

#topUserInfoTable {
	line-height: 1.4em;
	font-size: 12px;
}

.dropDownTable .tableData a {
	font-weight: normal !important;
}

.dropDownTable .tableData.fbo_tracking_link a {
	font-weight: bold !important;
}

.dropDownBigLink {
	text-align: center;
	padding: 10px 5px 5px 5px;
}

#headerExtras {
	float: right;
	margin-top: -12px;
	max-width: 450px;
	margin-right: 105px;
	padding-left: 5px;
	padding-right: 5px;
	background-color: rgba(255, 255, 255, .8);
}

#socialBoxes {
	position: absolute;
	float: right;
	right: 0;
	width: 91px;
	margin-top: 5px;
	margin-right: 5px;
}


/* Report upsell */
.buy_report {
	padding-top: 10px;
}

.upsell_report {
	display: none;
	margin: 14px 0 0 0;
	border-radius: 4px;
	background-color: $aqua-spring;
	border: 1px solid #A8CFF6;
	padding: 12px;
	text-align: center;
	color: $cerulean;
}


/* Report purchasing */

ol.bignum_list {
	counter-reset: li;
	margin: 0;
	padding: 0 0 0 45px;
	list-style: none;
	text-align: left;
}

ol.bignum_list>li>div {
	position: relative;
	margin-bottom: 35px;
}

ol.bignum_list>li>div::before {
	content: counter(li);
	counter-increment: li;
	position: absolute;
	top: -7px;
	left: -50px;
	margin: 0;
	background-color: $midnight-blue;
	font-size: 16px;
	display: inline-block;
	height: 34px;
	width: 34px;
	text-align: center;
	color: white;
	font-family: $LatoLight;
	font-weight: lighter !important;
	line-height: 35px;
}

ol.bignum_list>li>div>h3 {
	font-size: 19px !important;
}

ol.bignum_list .purchase button {
	font-size: 14px;
	width: 180px;
}

ol.bignum_list button.grey {
	color: gray;
}

ol.bignum_list .subscription select {
	min-width: 200px;
}

ol.bignum_list li.disabled,
ol.bignum_list li.disabled h3,
ol.bignum_list li.disabled h4,
ol.bignum_list div.disabled,
ol.bignum_list p.disabled,
ol.bignum_list a.disabled {
	color: #bbb !important;
}

ol.bignum_list>li.disabled>div::before {
	background-color: #aaa;
}

ol.bignum_list li.disabled .inline_form_box_title {
	background: #eee;
}

.bignum_sublist {
	padding-left: 0;
}

.bignum_sublist>li>h4 {
	font-size: 16px !important;
}

.error_response {
	color: red;
	margin: 20px;
	text-align: center;
}

.buy_report_table td {
	padding: 8px;
}

.buy_report_table input[type=radio] {
	margin-right: 5px;
}

.buy_report_table th {
	border: 1px solid $cerulean;
}

.help_for_report {
	// margin-left: 42px;
	border-radius: 4px;
	background-color: $aqua-spring;
	border: 1px solid #A8CFF6;
	padding: 12px;
	color: $cerulean;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
}

.help_for_report h3 {
	display: inline;
	color: $cerulean !important;
	font-size: 19px !important;
	margin-top: 0px;
	text-align: left;
}

.help_for_report h3 a {
	font-style: italic;
}

.help_for_report img {
	vertical-align: middle;
}

.disabled_periodic {
	color: gray;
}

.interval {
	font-weight: bold;
}

/* FBO Toolbox purchasing */
.inline_form_box {
	margin: 20px auto;
	border: 1px solid $light-silver;
}

.inline_form_box_title {
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background: $cerulean;
	border: 0;
	box-shadow: 0 1px 1px -1px #888;
	text-align: center;
}

.inline_form_box_title h3 {
	color: white !important;
	font-family: $LatoLight !important;
	font-weight: lighter !important;
	font-size: 20px !important;
	letter-spacing: 1px;
	margin: 0px !important;
}

.inline_form_box_content {
	padding: 0px 12px 12px 12px;
}

.inline_form_box_footer {
	background-color: #F7F5F5;
	padding: 12px;
	border-top: 1px solid $light-silver;
	text-align: left;
}

.inline_form_box_title .close {
	margin-top: 2px;
	float: right;
	font-size: 20px;
	font-weight: bold;
	line-height: 18px;
	color: black;
	text-shadow: 0 1px 0 white;
	opacity: 0.2;
	filter: alpha(opacity=20);
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	width: inherit;
}

.inline_form_box fieldset {
	border: none;
	border-top: 1px solid rgb(221, 221, 221);
	/* border-top: 1px solid #ccc; */
	padding: 0 0 5px 15px;
	margin: 10px 0 0 0;
}

.inline_form_box legend {
	color: #6D6E71;
	font-size: 15px;
	padding: 8px;
	font-family: $Lato;
}


.trial_form input[type=text] {
	font-size: 18px;
	margin-right: 5px;
}

.trial_form input[name=airport]:focus {
	text-transform: uppercase;
}


.trial_form label {
	display: none;
}

.trial_form button,
.product_buy_form button {
	font-size: 14px;
	wdith: 180px;
}

.trial_form,
.product_buy_form {
	max-width: 700px;
	text-align: center;
}

.billing_table {
	width: 820px;
	margin-top: 30px;
}

.billing_table th {
	white-space: nowrap;
	padding-right: 15px;
	text-align: left;
}

.billing_basics th,
.billing_cc th {
	width: 1%;
}

.billing_basics tr.row1>td,
.billing_basics tr.row2>td,
.billing_cc tr.row1>td,
.billing_cc tr.row2>td {
	width: 50%;
}

.billing_header {
	color: white !important;
	font-family: $LatoLight !important;
	font-weight: lighter !important;
	font-size: 16px !important;
	letter-spacing: 1px;
	margin: 0px;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background: $cerulean;
	border: 0;
	text-align: center;
}

.hidden {
	visibility: hidden;
	width: 0px !important;
}

#billing_data input.error {
	border: 2px solid red;
}

#billing_data label.error {
	font-size: 90%;
}

span.proposed_ident {
	font-weight: bold;
}

.provisioning_admins .inline_form_box_title,
.provisioning_all_aircraft .inline_form_box_title {
	background: #F0903C;
}

.provisioning_admins .inline_form_box fieldset {
	border-top: 0 none;
}

.provisioning_group ol,
.provisioning_admins ol {
	padding: 0px 3px 3px 3px;
	margin: 5px 0px 0px 0px;
}

.provisioning_title.manage {
	cursor: pointer;
}

.provisioning_edit_desc {
	display: none;
}

li.provisioning_item {
	float: left;
	list-style: none;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background-color: #e4e4e4;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
	background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	-webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
	color: #333;
	border: 1px solid #aaaaaa;
	line-height: 13px;
	padding: 5px 25px 5px 5px;
	margin: 3px 0 3px 6px;
	position: relative;
	cursor: default;
	min-width: 125px;
}

div.provisioning_item_expiration {
	position: absolute;
	-ms-transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	padding-bottom: 7px;
	left: 0;
	text-align: center;
	width: 100%;
	display: none;

	span {
		color: red !important;
	}
}

div.item_expiring {
	display: block;
}

.tail_mapping_deleted {
	color: gray !important;
}

li.global_free {
	background: white !important;
	border: 1px solid #A8CFF6;
	color: #6D6E71;
}

li.global_unverified {
	border-style: dashed;
}

li.provisioning_item .provisioning_item_contents {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

li.provisioning_item.datalink_device .provisioning_item_contents {
	width: 160px;
}

.device_container {
	padding-top: 5px;
}

li.provisioning_ident .provisioning_item_contents {
	min-width: 61px;
}

li.provisioning_ident_mode_s {
	min-width: 171px;
	line-height: 20px;
}

.mode_s_input {
	width: 101px;
}

.submit_mode_s {
	margin-right: 20px;
}

li.provisioning_user .provisioning_item_contents {
	width: 160px;
}

li.provisioning_airport .provisioning_item_contents {
	width: 259px;
}

a.provisioning_item_restore {
	display: block;
	position: absolute;
	right: 1px;
	top: 2px;
	width: 15px;
	height: 15px;
	font-size: 1px;
	background: url(/images/add_gray.png) right top no-repeat;
}

a.provisioning_item_drop {
	display: block;
	position: absolute;
	right: 3px;
	top: 4px;
	width: 12px;
	height: 13px;
	font-size: 1px;
	background: url(/images/arinc/chosen-sprite.png) right top no-repeat;
}

.provisioning_ident_mode_s .provisioning_item_drop,
.provisioning_ident_mode_s .provisioning_item_paid,
.provisioning_ident_mode_s .provisioning_item_free,
.provisioning_ident_mode_s .provisioning_item_unverified,
.provisioning_ident_mode_s .provisioning_item_verified {
	top: 8px;
}

a.provisioning_item_drop:hover {
	background-position: right -11px;
}

a.provisioning_item_add {
	display: block;
	position: absolute;
	right: 1px;
	top: 2px;
	width: 15px;
	height: 15px;
	font-size: 1px;
	background: url(/images/add_gray.png) right top no-repeat;
}

.provisioning_item a {
	text-decoration: none;
	color: rgb(51, 51, 51) !important;
}

a.provisioning_item_paid,
a.provisioning_item_free,
a.provisioning_item_unverified,
a.provisioning_item_verified,
.provisioning_item_aireon {
	display: block;
	position: absolute;
	right: 18px;
	top: 5px;
	height: 13px;
	width: 6px;
}



a.provisioning_item_paid {
	background: url(/images/dollars.png) -12px top no-repeat;
}

a.provisioning_item_paid:hover {
	background: url(/images/dollars.png) -18px top no-repeat;
}

a.provisioning_item_free {
	background: url(/images/dollars.png) 0px top no-repeat;
}

a.provisioning_item_free:hover {
	background: url(/images/dollars.png) -6px top no-repeat;
}


a.provisioning_item_verified {
	right: 30px;
	color: #44A546 !important;
}

a.provisioning_item_verified:hover {
	color: #266525 !important;
}

a.provisioning_item_unverified {
	right: 30px;
	color: #797979 !important;
}

a.provisioning_item_unverified:hover {
	color: #4C4C4C !important;
}

.provisioning_ident_mode_s .provisioning_item_verified,
.provisioning_ident_mode_s .provisioning_item_unverified {
	top: 5px;
}

.provisioning_item_aireon {
	width: 10px;
	height: 10px;
	right: 40px;
}

button.provision_add_aireon {
	margin: 8px 0 0 8px;
}

/* HACK: Hide verify / paid links for FBOs */
.fbo_account a.provisioning_item_paid,
.fbo_account a.provisioning_item_verified {
	display: none;
}

.fbo_account fieldset.provisioning_aircraft,
.fbo_account fieldset.provisioning_users,
.fbo_account fieldset.provisioning_admins {
	border-top: none;
}

.fbo_account {
	padding-bottom: 40px;
}

.fbo_account h1 {
	border-top: 1px solid $midnight-blue;
	margin-right: 18px;
	margin-top: 12px;
	padding-top: 2px;
}

.fbo_submenu {
	font-size: 16px;
	float: right;
	letter-spacing: normal;
}

.fbo_submenu a {
	color: $cerulean !important;
}

input.provisioning_item_add {
	vertical-align: top;
	padding-top: 3px;
}

.provisioning_add {
	clear: both;
	padding: 7px;
}

.myfa-tracking-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
	width: 98%;
	padding: 5px 10px;
	border: 1px solid #A8CFF6;
	border-radius: 5px;
	background-color: $aqua-spring;
}

.myfa-limit-container {
	display: flex;
	align-items: center;
}

.ident_payment_dialog {
	margin-top: 12px;
	margin-left: 2px;
	padding: 10px;
	border: 1px solid rgb(221, 221, 221);
}

.ident_payment_options {
	padding: 10px 0 10px 0;
}

.ident_payment_buttons button {
	width: 65px;
	min-width: 0;
}

.provisioning_add .confirm_dialog_container {
	display: none;
}

#addgroup {
	padding: 7px;
}

img.global_button {
	display: inline-block;
	margin: 0px;
	padding: 0px;
	float: right;
}

.provisioning_error {
	color: red;
}

.spinner {
	display: none;
}

.provisioning_group .inline_form_box_title,
.provisioning_admins .inline_form_box_title {
	text-align: left;
}

.provisioning_add input[type=text] {
	margin-right: 6px;
	margin-left: 2px;
	width: 87px;
}

.provisioning_group #add_device,
.provisioning_group #add_user,
.provisioning_admins #add_admin {
	width: 186px;
}

.provisioning_group .device_select {
	width: 160px;
}


.about_us_featured_customers {
	vertical-align: middle;
	display: table-cell;
	padding-left: 10px;
}

.commercial_global_title {
	height: 200px;
}

/* Admin history date grouping */
ul.administrative_history {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.administrative_history li ul {
	list-style-type: disc;
	margin-bottom: 5px;
}

.switched {
	color: red;
}

.pending_activation {
	color: red !important;
}

/* FBO base aircraft flight page interface */
.add-to-baseaircraft {
	display: none;
	position: absolute;
	width: 100%;
	background: white;
	/* border-bottom: 1px solid $cerulean; */
	border-bottom: 1px solid rgb(221, 221, 221);
	box-shadow: 0 0 5px #888;
}

.add-to-baseaircraft-content {
	padding: 10px;
}

.add-to-baseaircraft .header {
	background: $cerulean;
	color: white !important;
	font-family: $LatoLight !important;
	padding: 9px;
	text-align: center;
	font-size: 16px !important;
}

.add-to-baseaircraft table {
	width: 100%;
	margin: 10px auto;
	border-collapse: collapse !important;
}

.add-to-baseaircraft table td,
.add-to-baseaircraft table th {
	padding: 5px;
	border: 1px solid #A8CFF6;
	text-align: left;
}

.add-to-baseaircraft table thead th {
	border-bottom: 2px solid #a8cff6;
}


.close-add-to-baseaircraft {
	float: right;
	margin: 10px;
}


/* FBO my base aircraft page */
.my_base_aircraft {
	margin-top: 20px;
}


.global_total_table {
	padding: 20px;
	font-size: 16px;
	margin: auto;

	.row {
		margin-bottom: 1rem;
	}
}

.global_total_table td {}

.global_total_table th {
	text-align: right;
	padding-right: 10px;
}

.global_total_table .totalPrice {
	font-weight: bold;
}

.remark {
	display: inline;
	float: right;
}

.airportBoardContainer {
	box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.5);
	line-height: 20px;
}

.ie8 .airportBoardContainer {
	border: 1px solid rgb(221, 221, 221);
}

table.airportBoard {
	border-collapse: collapse !important;
	/* border-right: 1px solid #A8CFF6; */
	border: 0;
}

.airportBoard .mainHeader,
.airportTrackerTitle .mainHeader,
.airportTrackerTitleText {
	text-transform: uppercase;
}

.airportTrackerTitle {
	border-spacing: 0;
	border-collapse: collapse;
	margin-bottom: 10px;
	box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.5);
	padding: 4px;
}

.airportBoard td {
	padding: 5px;
	/* border-top: 1px solid #A8CFF6; */
	/* border-bottom: 1px solid #A8CFF6; */
	border: 0;
	height: 17px;
}

.airportBoard .tz,
.airportBoard .blocked,
.myaircraft_table .tz,
.myaircraft_table .alt_ident {
	font-size: 10px;
}

.airportBoard .showBlocked {
	font-weight: bold;
}

.airportBoard .track-panel-progress,
.myaircraft_table .track-panel-progress {
	width: 25px;
	height: 5px;
}

.airportBoard .track-panel-progress-fill,
.airportBoard .track-panel-progress-empty,
.myaircraft_table .track-panel-progress-fill,
.myaircraft_table .track-panel-progress-empty {
	height: 4px;
}


.airportBoard .infoRow {
	display: none;
}

.airportBoard .infoRowIcons {
	float: left;
	padding: 3px;
}


.airportBoard .infoRowContainer {
	padding-left: 30px;
}

.airportBoard .infoSubRow {
	padding: 3px;
}

.airportBoard .infoRowTitle {
	text-transform: uppercase;
	color: $cerulean;
	font-size: 11px;
	font-weight: bold;
}

.tafHidden,
.metarHidden {
	display: none;
}


.airportBoard .infoRow td:first-child {
	border-left: none !important;
}


/* TODO: Move */
.fboAction {
	visibility: hidden;
}

.airportBoard tr:hover .fboAction {
	visibility: visible;
}

.expandRow {
	font-size: 10px;
	text-decoration: none !important;
	color: #ACACAC !important;
}

.expanded .expandRow {
	color: $cerulean !important;
}

.shadow {
	-webkit-box-shadow: 3px 3px 3px #7C7C7C;
	box-shadow: 3px 3px 3px #7C7C7C;
}

.fieldsetdefinition {
	position: relative;
	height: 28px;
}

/* My Aircraft table */

.myaircraft_table {
	border: 1px solid #A8CFF6;
}

.myaircraft_table td {
	border-left: 0;
	border-right: 0;
}

.myaircraft_table td.type,
.myaircraft_table td.destination,
.myaircraft_table td.megaphone {
	border-right: 1px solid #b2b2b2;
}

.myaircraft_table td.origin {
	@media screen and (max-width: $screen-large) {
		border-right: 1px solid #b2b2b2;
	}
}

.myaircraft_table td.megaphone {
	min-width: 24px;
}

.myaircraft_table td.flightInfo {
	vertical-align: top;
}

.myaircraft_table div.departureArrivalLabel {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 10px;
	padding-right: 6px;
}

.myaircraft_table .aircraftAlert {
	margin: 0 auto 0 auto;
	width: 15px;
	height: 15px;
	cursor: pointer;
}

/* My Airports table */

.myairports_table {
	font-size: 12px;
}

.myfa-aircraft-button,
.myfa-airport-button {
	background-color: Transparent;
	background-repeat: no-repeat;
	border-radius: 5px;
	color: #FFF;
	cursor: pointer;
	float: right;
	font-weight: bold;
	margin-right: 6px;
	padding: 6px 12px;
	width: 120px;
}

.myfa-upgrade-button {
	background-color: $cerulean;
	background-repeat: no-repeat;
	border: 1px solid #000;
	border-radius: 5px;
	color: #FFF;
	cursor: pointer;
	font-weight: bold;
	padding: 6px 12px;
}

.launch-fpas-form-header {
	cursor: pointer;
}

.myFaFPASContainer {
	@include flexBox;
	@include flexAlignStart;

	.myFaFPASHeading {
		color: $midnight-blue;
		font-size: 175%;
		font-weight: bold;
	}

	div {
		padding: 16px;
		margin: auto 0;
	}

	@media (max-width: $screen-small) {
		@include flexDirectionColumn;

		div {
			@include flexWrap;
			margin: auto;
		}
	}
}

.myairports_table>tbody>tr:nth-child(even) {
	background-color: #f3f3f3;
}

.myairports_table>tbody>tr>td {
	border-left: 0;
	border-right: 0;
}

.myairports_table .weather,
.myairports_table .destination {
	border-right: 1px solid #b2b2b2;
}

.fa_tv_product {
	color: $cerulean;
	font-style: italic;
}


/* Commercial stuff */

#commercial-title {
	padding: 0 0 10px 0;
	margin: 0;
}

#commercial-title h2 {
	margin-top: 50px;
	font-size: 2.5em;
	font-weight: bold;
	letter-spacing: -.025em;
	margin-bottom: 6px;
}

#commercial-title p {
	font-size: 1.6em;
	letter-spacing: -.025em;
	margin: 0 0 24px 0;
}

.commercial-box-container {
	margin-top: 50px;
	margin-left: 14px;
}

.commercial-box {
	margin-bottom: 30px;
	padding: 10px 12px 0;
}

.commercial-box-content>a {
	text-decoration: none;
}

.commercial-box-content>a:hover {
	text-decoration: underline;
}

.commercial-box-title h2 {
	color: #fff;
	font-size: 1.5em;
	text-shadow: 0 0 8px #000;
	padding-top: 3rem !important;
}

.commercial-box-content h3 {
	font-size: 18px !important;
	margin-bottom: 0 !important;

	&:first-child {

		/** TODO: Replace with foundation variable **/
		@media (min-width: 641px) {
			margin-top: 0;
		}
	}
}

.commercial-box-content p {
	margin-top: .5em;
}

#commercial-services,
#commercial-data {
	background: url(/images/commercial/airport_panel.jpg) no-repeat;
	background-size: cover;
}

#commercial-fbo {
	background: url(/images/commercial/private_jet.jpg) no-repeat;
	background-size: cover;
}

#commercial-ads {
	background: url(/images/commercial/paper_plane.jpg) no-repeat;
	background-size: cover;
}


/* recent abnormalities */

.top_ab_p {
	color: white;
	font-size: 16px;
	text-align: center;
	margin-bottom: 5px;
}

.bottom_ab_p {
	color: white;
	font-size: 14px;
	text-align: center;
	margin-top: 5px;
}

.abs_blue_div {
	background-color: #4c7896;
	/* testing a change background-color:#333399; */
	border-radius: 8px;
}

.abs_orange_div {
	background-color: #db8000;
	border-radius: 8px;
}

.ab_list {
	display: inline-block;
	vertical-align: top;
	margin-right: 30px;
	margin-left: 22px;
	max-width: 400px;
}

#snap_other_option {
	margin-top: 20px;
}

.snap_list_title {
	font-size: 20px;
}

.addButton {
	min-width: 50px !important;
	float: right;
}


/* Cancellation page */


thead.tableTab tr {
	color: #FFF;
	font-family: $Lato;
	font-size: 14px;
	font-weight: lighter;
	text-shadow: 0 -1px 0 #0065be;
	letter-spacing: 1px;
	text-transform: uppercase;
	height: 2em;
	background: -webkit-gradient(linear, left top, left bottom, from(#267BAE), to(#3A5F97));
	background: -moz-linear-gradient(#267BAE, #3A5F97);
	background: -o-linear-gradient(#267BAE, #3A5F97);
	background-color: #267BAE;
}

tr.delayTableHeader {
	text-transform: capitalize;
	letter-spacing: 0px;
}

th.redHeader {
	background-color: #CC1C1C;
	background: linear-gradient(1deg, rgb(178, 5, 5) 30%, rgb(204, 28, 28) 70%);
	text-shadow: none;
}

th.orangeHeader {
	background-color: #CC7D24;
	background: linear-gradient(1deg, rgb(178, 90, 32) 30%, rgb(204, 125, 36) 70%);
	text-shadow: none;
}

th.greyHeader {
	background-color: #B4B4B4;
	background: linear-gradient(180deg, rgb(180, 180, 180) 30%, rgb(160, 160, 160) 70%);
	text-shadow: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center !important;
}

.flight_event,
.smallrow1.flight_event,
.smallrow2.flight_event {
	background: $aqua-spring;
}

.flight_event_taxi,
.smallrow1.flight_event_taxi,
.smallrow2.flight_event_taxi {
	background: #FCF2B9;
}

.flight_event_facility {
	background: $midnight-blue-20;
	text-align: left;
}

th.cancellation_board_header {
	width: 33%;
}

td.cancellation_board>div>table {
	width: 100%;
}

div.cancellation_board {
	display: none;
}

div.cancellation_spinner {
	padding-top: 1em;
	text-align: center;

	.fa-spinner {
		animation-duration: 0.7s;
	}
}

div.cancellation_board_failed_message {
	padding-top: 1em;
	font-size: 1.2em;
	text-align: center;
	width: 50%;
	margin: auto;
	display: none;
}

/*
	hide the facility row on large viewports
	this could be put into it's own CSS file along with the 2 lines above.
	but it's only these few lines and flight_tracklog doesn't currently have it's own CSS
	so I'm just including it here
*/
@media screen and (min-width: $screen-large) {
	.flight_event_facility {
		display: none;
	}
}


/* FlightAware Global Trial Signup Page */
.fa_global_trial {

	/* Form Group (step) Heading */
	ol.bignum_list>li>div>h3 {
		font-size: 26px !important;
		margin-top: 0;
	}

	ol.bignum_list>li>div::before {
		top: 0;
	}

	/* Text Input Box */
	.trial_input_box {
		margin-top: 10px;
		font-size: 16pt;
		display: block;
		padding: 5px;
	}

	/* Form Control Label */
	label {
		color: $midnight-blue;
		font-weight: 400;
		font-size: 12pt;
	}

	.disabled label {
		color: $light-silver;
	}

	p {
		margin-bottom: 25px;
		font-size: 10pt;
	}

	#addgroup {
		padding-left: 0;
	}

	.recurring_price b {
		text-decoration: line-through;
	}

}


/* FlightAware 2-factor Authentication */
.twoFactorAuthBox {

	.inline_form_box_title_caption {
		display: none;
		background: #FAE051 url("/images/track/warning.png") -15px -15px no-repeat;
		box-shadow: 0 1px 1px -1px #888;
		border-bottom: 1px solid #eee;
		text-align: center;
		padding: 9px 15px;
		border: 0;
	}

	.inline_form_box_title_caption p {
		font-family: $LatoLight !important;
		font-weight: lighter !important;
		font-size: 14px !important;
		margin: 0px !important;
		color: #333 !important;
		letter-spacing: 1px;
	}

	/* DIV containing thumbnail image */
	.inline_form_box_content_left {
		float: left;

		/* Thumbnail image */
		img {
			display: block;
			margin: 15px;
			height: 108px;
			width: 50px;
		}
	}

	/* DIV containing form content */
	.inline_form_box_content_right {
		margin-left: 100px;
	}

	/* DIV containing security code input */
	.secCodeContainer {
		@include flexBox();
		@include flexSpaceBetween();

		margin-bottom: 15px;

		/* Security code input */
		input[type=text],
		input[type=password] {
			border: 1px solid #B2B2B2;
			border-radius: $standardRadius;
			font-size: 16px;
			padding: 5px;
			width: 40%;
			outline: 0;
		}
	}

	/* DIV containing backup code input */
	.backupCodeContainer {
		@include flexBox();
		@include flexSpaceBetween();

		margin-bottom: 15px;
		display: none;

		/* Security code input */
		input[type=text] {
			border: 1px solid #B2B2B2;
			border-radius: $standardRadius;
			font-size: 16px;
			padding: 5px;
			width: 40%;
			outline: 0;
		}
	}

	.backupCodeDescription {
		display: none;
	}

	/* DIV containing phone number input */
	.phoneContainer {
		@include flexBox();
		@include flexSpaceBetween();

		margin-bottom: 15px;

		/* Phone number input */
		input[name=v_phone] {
			border: 1px solid #B2B2B2;
			border-radius: $standardRadius;
			font-size: 16px;
			padding-bottom: 7px;
			padding-right: 7px;
			padding-top: 7px;
			outline: 0;
		}
	}

	/* Form errors */
	.errors .error {
		font-weight: bold;
		color: $red;
	}

	/* Form captions/notes */
	.note {
		border-top: 1px solid #EFEFEF;
		margin-right: 10px;
		padding-right: 25px;
		padding-top: 10px;
		color: $silver;
	}

	/* "Remember me" label */
	label.lblRememberMe {
		display: block;
		margin-top: 15px;
	}

}

/* FlightAware 2-factor Authentication */
.largeBlueBox {

	.inline_form_box {
		padding-bottom: 20px;
	}

	ol.bignum_list>li>div::before {
		content: counter(li);
		counter-increment: li;
		position: absolute;
		top: -7px;
		left: -50px;
		margin: 0;
		background-color: $midnight-blue;
		font-size: 16px;
		display: inline-block;
		height: 34px;
		width: 34px;
		text-align: center;
		color: white;
		font-family: $LatoLight;
		font-weight: lighter !important;
		line-height: 35px;
	}


	.inline_form_box_title_caption {
		display: none;
		background: #FAE051 url("/images/track/warning.png") -15px -15px no-repeat;
		box-shadow: 0 1px 1px -1px #888;
		border-bottom: 1px solid #eee;
		text-align: center;
		padding: 9px 15px;
		border: 0;
	}

	.inline_form_box_title_caption p {
		font-family: $LatoLight !important;
		font-weight: lighter !important;
		font-size: 14px !important;
		margin: 0px !important;
		color: #333 !important;
		letter-spacing: 1px;
	}

	/* DIV containing thumbnail image */
	.inline_form_box_content_left {
		float: left;

		/* Thumbnail image */
		img {
			display: block;
			margin: 15px;
			height: 108px;
			width: 50px;
		}
	}

	/* DIV containing form content */
	.inline_form_box_content_right {
		margin-left: 100px;
	}

}


/* FlightAware 2-Factor Authentication := Backup Code */
.twoFactorAuthBackupCodeContainer {
	text-align: center;
	margin: 35px 0;

	input[type=text].backupCode {
		letter-spacing: 10px;
		background: #FFFFCC;
		text-align: center;
		margin: 20px auto;
		font-size: 20px;
		display: block;
		padding: 10px;
	}

}


.vertical-center-wrapper {
	width: 450px;
	height: 200px;
	display: table-cell;
	text-align: center;
	display: table-cell;
	vertical-align: middle;

	.inner {
		display: inline-block;
	}
}


/* ADS-B site geo configuration modal */
.modal-configure-geo {
	display: none;

	.modal-header {
		h3 {
			font-size: 22px;
			margin: 10px 0;
		}
	}

	.modal-body {
		max-height: none;

		@media (max-height: 800px) {
			max-height: 350px;
		}

		.errors {
			margin-bottom: 15px;
			padding: 0;

			.error {
				font-weight: bold;
				color: $red;
			}
		}

		ol.progress {
			padding: 0 20px;

			li {
				display: inline-block;
				text-align: center;
				line-height: 3em;
				width: 50%;
			}

			li.progress-complete {
				color: #333;
				border-bottom: 4px solid $cerulean;
			}

			li.progress-inactive {
				color: silver;
				border-bottom: 4px solid silver;
			}

			li.progress-active {
				color: #333;
				border-bottom: 4px solid $cerulean;
			}

			li:after {
				content: "\00a0\00a0";
			}

			li:before {
				position: relative;
				bottom: -2.5em;
				float: left;
				left: 50%;
				line-height: 1em;
			}

			li.progress-complete:before {
				content: "\2713";
				color: white;
				background-color: $cerulean;
				height: 1.2em;
				width: 1.2em;
				line-height: 1.2em;
				border: none;
				border-radius: 1.2em;
			}

			li.progress-inactive:before {
				content: "\039F";
				color: silver;
				background-color: white;
				font-size: 1.5em;
				bottom: -1.6em;
			}

			li.progress-active:before {
				content: "\039F";
				color: $cerulean;
				background-color: white;
				font-size: 1.5em;
				bottom: -1.6em;
			}
		}

		.configure-elevation,
		.configure-location {
			display: none;
			padding: 10px;
			margin: 10px;

			.map-container {
				margin-top: 10px;
				height: 325px;
			}
		}

		.configure-location-info {
			color: $cerulean;
			text-align: center;

			.muted {
				text-transform: uppercase;
				color: $silver;
			}

			.configure-location-lat,
			.configure-location-lon {
				font-weight: 500;
			}
		}

		.modal-container {
			display: block;

			.modal-container-body {
				display: none;
				padding: 0 20px;

				label {
					display: block;
					margin-left: 15px;
					margin-top: 15px;

					span {
						display: inline-block;
						width: 60px;
					}

					input[type=text] {
						margin-left: 15px;
						padding: 5px;
					}
				}

				.configure-antenna-height {
					div {
						display: block;
						width: 150px;
						float: left;

						label {
							display: block;
							margin-top: 140px;
							margin-left: 0;
						}

						input[type=text] {
							margin-right: 5px;
							margin-top: 5px;
							padding: 5px;
							width: 35px;
						}
					}

					img {
						margin-left: -10px;
						display: block;
						width: 250px;
						float: left;
					}
				}

				.configure-antenna-elevation {
					label {
						display: inline-block;
						width: 150px;
					}

					input[type=text] {
						margin-right: 5px;
						margin-top: 5px;
						padding: 5px;
						width: 35px;
					}
				}
			}
		}

		.configure-elevation {
			.modal-container-body {}
		}
	}

	.modal-footer {
		.button.grey {
			float: left;
		}

		.btn-next,
		.btn-save {
			display: none;
		}
	}
}

#airlineSearchCancel {
	display: none;
}

@media print {

	.midAd,
	.topMenu,
	.trackBoxForm,
	.airportInfoHeader,
	.trackboxComGradient,
	#trackBox {
		display: none;
	}
}

.slideout-menu {
	display: none;
	background: $white;
	color: $cerulean;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
	width: 100vw;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	height: 100%;
}

html[dir=rtl] {
	.slideout-menu {
		right: inherit;
	}

	#slideOutPanel {
		overflow: hidden;
	}
}

.slideout-panel {
	position: relative;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
	overflow: hidden;
}

.slideout-open .slideout-menu {
	display: block;
}

#signUpButton,
#contactUsButton {
	margin-top: 16px;
	float: right;

	a {
		font-size: 14px;
		background-color: $button-cta-primary;
		color: $button-cta-primary-text;
		border: 0.1rem solid $button-cta-primary-text;
		border-radius: 0.3rem;
		padding: 0.6em 1.3em;
		font-weight: bold;
		text-decoration: none;
	}
}

@media screen and (max-width: $screen-small) {
	#signUpButton {
		display: none;
	}
}

#headerSearchForm {
	margin: 0 auto;
	text-align: center;

	.select2-choices {
		@include flexBox;
		@include flexAlignCenter;
		background-color: $white;
		border: none;

		border-radius: 0px;
	}
}

html[dir="RTL"] {
	#headerSearchForm {
		margin-left: auto;
	}

	#signUpButton,
	#contactUsButton {
		float: left;
	}
}

.trackSubmit {
	.blue_button {
		padding: 0;
		margin: auto;
	}

	.blue_button_padding {
		padding: 0 5px;
	}
}

.routeSearchDescription {
	line-height: 1.2;
	padding: 10px;
}

.searchOption[data-fa-search-type="omniSearch"] {
	width: 380px;
}

.searchOption[data-fa-search-type="airlineSearch"],
.searchOption[data-fa-search-type="routeSearch"] {
	width: 100%;

	form {
		display: inline-table;
		width: 100%;
	}

	.trackInput {
		display: block;
	}

	.routeSearchHelp {
		margin: 10px 0;
	}

	/* 
	 * This is a bit of a weird positionion hack, so that the legacy js function: 
	 * 'autoCompleteAirports'  works without any change
	 */
	img.trackInputLoading {
		display: none;
		position: absolute;
		top: -15px;
		margin-left: -15px;
	}

	#home-main-search .trackInputLabel {
		font-size: 14px;
		color: $midnight-blue;
		margin-bottom: 5px;
		font-weight: bold;
		padding-left: 2px;
		letter-spacing: 1px;

		&:after {
			width: 200px;
		}
	}

	.trackInputLabel {
		margin-bottom: 5px;
		font-family: $Lato;
		text-transform: lowercase;
		font-variant: small-caps;
		font-size: 14px;
		padding-left: 2px;
		letter-spacing: 1px;
	}

	.trackSubmit {
		display: table-cell;
	}

	.route_swap {
		display: table-cell;
		text-align: center;
		vertical-align: bottom;
		margin: auto 0;
	}
}

#home-main-search .airlineSearch .flightNumber {
	width: 125px;
}

html[dir="RTL"] {
	#home-main-search .airlineSearch .flightNumber {
		padding-left: 0;
		padding-right: 20px;
	}
}

html.responsive-full {
	@media screen and (max-width: $screen-small) {
		.searchOption[data-fa-search-type="routeSearch"] {
			overflow: visible;
			width: 100%;
			display: block;

			.trackInput,
			.trackInputContainer {
				width: 100%;
				display: block;
			}

			&~.trackSubmit {
				display: block;
				min-width: 75px;

				button {
					margin: 0;
					margin-top: 10px;
				}
			}
		}

		.pageContainer {
			word-wrap: break-word;

			margin-top: 0;
			padding-top: 2em;

			div.ad-box {
				overflow: hidden;
				min-width: 0;
				width: auto;

				iframe {
					overflow: hidden;
					min-width: 0;
					width: auto;
				}
			}
		}

		.navBarMobile {
			ul.topMenuList {
				display: block;
				overflow: hidden;
				list-style: none;
				padding: 0;
				margin: 0;

				#mainDropDown {
					display: block;
					position: relative;
					padding: 0;
					border: 0;
					margin: 0;
					top: 0;

					.topDropDownListContainer,
					.dropDownPlaceholder,
					.dropDownRecent {
						display: none;
					}

					#topUserInfo {
						padding: 0.5rem 0 0.5rem 0;
						margin-bottom: 0.1rem;
						background: $cerulean;
						border: none;

						#userImg {
							border: 2px solid #fff;
							border-radius: 0.5rem;
							margin: 0 0 0 0.5rem;
							height: 5rem;
							width: 5rem;
							padding: 0;
						}

						.topDropDownBlue {
							padding: 0.5rem;
							color: $aqua-spring;
							max-width: 10rem;
							text-overflow: ellipsis;
							white-space: nowrap;
							overflow: hidden;

							.userSymbol {
								font-size: 0.8rem;
								margin-left: 0.2rem;
							}

							a,
							a:visited,
							a:link {
								font-size: 0.8rem;
								color: $white;
							}
						}

						.topUserInfoAttr {
							padding-top: 0.5rem;
							padding-bottom: 0.3rem;
						}

						.topUserInfoMemberSince {
							padding-top: 0;
							font-size: 0.7rem;
						}
					}
				}

				.topMenuWhyJoin,
				#mainDropDownLink,
				>li:not(:first-child) {
					display: none;
				}

				.sp_menu_item {
					display: block !important;
					border-top: 0.1rem solid $midnight-blue;
					border-bottom: 0.1rem solid $mine-shaft;
					border-left: 0.3rem solid $orange;
					margin-bottom: 0.1rem;
					margin-top: 0.1rem;
					background: $midnight-blue;
					font-family: $LatoLight;
					text-transform: uppercase;
					letter-spacing: .1em;
					box-sizing: border-box;
					text-align: left;
					font-size: 0.8rem;
					padding: 5%;
					padding-left: 2rem;
					float: left;
					width: 100%;

					i.fa,
					img.fa {
						position: absolute;
						margin-right: 0.5rem;
						margin-top: 0.1rem;
						color: $aqua-spring;
						width: 0.75rem;
						left: 1rem;
					}

					a,
					a:visited,
					a:link {
						text-decoration: none;
						color: $midnight-blue;

						span.dwn {
							display: none;
						}
					}
				}

				.topADLink {
					display: block !important;
					position: inherit;
					list-style-type: none;
					padding: 0.5rem;
					color: $orange;
					font-family: $LatoLight;
					font-size: 0.8rem;
					text-transform: uppercase;
					letter-spacing: .1em;
					white-space: nowrap;
					border-bottom: 1px solid #262626;

					>a {
						display: block;
						color: #fff;
						padding: 10px 0;
						text-decoration: none;
					}

					&.hover {
						background: rgba($midnight-blue, .9);

						.submenu {
							display: block;
						}
					}

					&:first-child {
						margin-left: 0;
						padding: 5%;
					}
				}

			}

			div.topMenuList {
				@include flexBox();
				flex-direction: column;

				.sp_menu_item {
					@include flexBox();
					@include flexAlignCenter();
					width: 100%;
					padding: 0px 6px;
					color: white;
					line-height: 1.8;
					border-top: 0.1rem solid $midnight-blue;
					border-bottom: 0.1rem solid #262626;
					border-left: 0.3rem solid $orange;
					margin-bottom: 0.1rem;
					margin-top: 0.1rem;
					background: $midnight-blue;
					font-family: $LatoLight;
					text-transform: uppercase;
					letter-spacing: .1em;
					box-sizing: border-box;
					text-align: left;
					font-size: 0.8rem;
					padding: 5%;
					padding-left: 2rem;
					font-weight: bold;

					i.fa,
					img.fa {
						position: absolute;
						margin-right: 0.5rem;
						margin-top: 0.1rem;
						color: $aqua-spring;
						width: 0.75rem;
						left: 1rem;
						line-height: 1.2rem;
					}

					.dwn {
						display: none;
					}

					.accountUpgradeLink a {
						color: white;
					}

					// profile name/icon/etc
					#mainDropDown {
						display: inherit;
						position: relative;
						padding: 0.5rem 0 0.5rem 0;
						margin-bottom: 0.1rem;
						background: $cerulean;
						border: none;
						color: white;
						top: 0;

						.topDropDownBlue,
						.topDropDownBlue a {
							color: white;
							text-transform: none;
						}

						.topUserMobileAccountLink {
							display: block;
						}

						.topDropDown a {
							color: white !important;
						}

						.accountTypeLabel {
							padding-left: 0;
							color: white !important;
							font-weight: normal;
							font-size: 85%;
						}

						.topUserInfoMemberSince {
							font-size: 85%;
						}

						#userImg {
							border: 2px solid #fff;
							border-radius: 0.5rem;
							margin: 0 0 0 0.5rem;
							height: 5rem;
							width: 5rem;
							padding: 0;
						}

						.topUserInfoSub {
							padding-left: 0.5rem;
							line-height: 1.3;
						}

						.topInfoWrapper {
							border: none;
						}
					}

					#mainDropDownLink,
					.topDropDownListContainer,
					.dropDownPlaceholder {
						display: none;
					}

					@include antialias();

					&:hover {
						background: rgba(black, .2);
					}

					>a {
						text-decoration: none;
						color: white;
					}
				}

				.profileMenuItem {
					padding: 0;
					margin: 0;
					border: none;
					top: 0;
				}

				// arincdirect
				.topADLink {
					padding: 0.5rem;
					color: $orange;
					font-family: $LatoLight;
					font-size: 0.8rem;
					text-transform: uppercase;
					letter-spacing: .1em;
					white-space: nowrap;
					border-bottom: 1px solid #262626;

					>a {
						display: block;
						color: #fff;
						padding: 10px 0;
						text-decoration: none;
					}

					&.hover {
						background: rgba($midnight-blue, .9);

						.submenu {
							display: block;
						}
					}

					&:first-child {
						margin-left: 0;
						padding: 5%;
					}
				}

				.accountTypeLabel {
					text-align: left;
				}

				#headerClock,
				.accountTypeTopBar {
					display: none;
				}

				#LocaleTopBoxItem {
					display: block;

					a {
						display: none;
					}

					.localePicker {
						background-image: url(/images/icon-language-change.svg), url(/images/icon-dropdown-arrow.svg);
						background-repeat: no-repeat, no-repeat;
						background-position: 4px center, 97% center;
						background-size: 18px 20px, 8px 7px;
						-webkit-appearance: none !important;
						-moz-appearance: none !important;

						&::-ms-expand {
							display: none;
						}

						border-radius: 0;
						border-style: solid;
						border-width: 1px;
						border-color: #cccccc;
						font-family: inherit;
						font-size: 0.875rem;
						line-height: normal;
						border-radius: 0;
						height: 2.3125rem;
						margin: 0 0 0 0.2rem;
						height: 100%;
						width: 94%;
						background-color: $midnight-blue;
						border: 1px solid #99ACBE;
						color: #99ACBE;
						font-size: 0.8rem;
						padding: 1rem 2.7rem;
					}

					&.logged_in {
						position: absolute;
						z-index: 99999;
						left: 6rem;
						top: 5rem;
						border: 0;
						padding: 0;
						margin: 0;
						background: none;
						width: 50%;

						.localePicker {
							background-size: 18px 20px, 8px 7px;
							background-color: $cerulean;
							border: 1px solid $aqua-spring;
							padding: 0.3rem 1.4rem;
							color: $aqua-spring;
							font-size: 0.8rem;
						}
					}
				}
			}
		}

		#headerExtrasContainer {
			height: auto;
			width: auto;
			margin: 0;

			#forensics {
				background: $aqua-spring;
				color: $midnight-blue;
				font-size: 0.6rem;
				padding: 0.5rem;
			}
		}

		#headerSearchForm .search_in,
		.topMenuBarWrapper,
		.navBar {
			display: none !important;
		}

		#headerSearchForm {
			box-sizing: border-box;
			padding-top: 1% !important;
			margin: 0 auto !important;
			padding: 0;
			height: 100%;
			width: 100%;
			clear: both;

			.searchOption.active {
				height: 100%;
				width: 100%;
			}

			.fa_omnisearch_container {
				height: 100%;

				.select2-container-multi .select2-choices {
					height: 100% !important;
				}

				.select2-search-field {
					font-size: 0.8rem;
					padding: 0.3rem;
				}

				.select2-search-field input {
					min-height: 1.5rem;
					padding: 0;
					margin: 0;
				}

				#omnisearch_form {
					height: 100%;
					width: 100%;
				}

				.select2-container {
					vertical-align: inherit !important;
					height: 100%;
				}

				.select2-container-multi .select2-choices .select2-search-choice {
					font-size: 0.8rem;
					padding: 0.5rem;
					margin: 0.5rem;
				}
			}

			.searchOption[data-fa-search-type="airlineSearch"] & {
				height: 100%;
				vertical-align: inherit !important;
				margin-bottom: 5px;

				.airlineSearch {
					padding-bottom: 5px;
				}

				#airlineSearchCancel {
					font-size: 1.2rem;
					color: white;
					padding-left: 0.4rem;
					display: inline;
				}

				.trackInput {
					font-size: 1rem;
					padding: 0.3rem 0.5rem;
					width: 45% !important;
				}

				.trackInput input {
					position: relative;
				}

				.trackAirlineName,
				.trackAirlineNumber {
					min-height: 1.5rem;
					padding: 0;
					margin: 0;
					font-size: 1rem;
				}
			}

			.forgot {
				display: none !important;
			}

			.trackSubmit {
				display: none;
				height: 100%;

				.blue_button {
					font-size: 250%;
					width: 100%;
					padding: 25%;
					line-height: normal;
					margin-left: auto;
				}
			}
		}

		.omnisearch_dropdown {
			font-size: 0.8rem;
			padding-bottom: 0.3rem;
			padding-left: 0.3rem;
			padding-right: 0.3rem;

			.select2-results .select2-result-label {
				padding-top: 0.3rem;
				padding-bottom: 0.3rem;
			}
		}

		.logoLeft {
			.faLogo {
				height: 2.5rem;
				width: auto;
			}
		}

		#topWrapper {
			background-size: cover;
		}

		#topContent {
			padding-top: 0.5rem !important;
			padding-bottom: 0.2rem !important;
			height: 100%;
		}

		.menuIcon {
			display: block !important;
			padding-left: 0.2rem;
			padding-bottom: 0.3rem;
			padding-right: 1rem;
			padding-top: 0.8rem;
			font-size: 1.5rem;
		}
	}

	/* handle ipad width screens */
	@media screen and (max-width: $screen-large) {
		.accountTypeTopBar {
			display: none;
		}
	}

}

html.responsive-full[dir="RTL"] {
	@media screen and (max-width: $screen-small) {
		.searchOption[data-fa-search-type="routeSearch"] {
			/* Put the origin/destination swapping button on the right */
			padding-left: 0px;

		}
	}
}

/* Accounting in progress div located @ /account/manage/invoices */
.accountingInProgress {
	background-color: $green;
	margin-bottom: 15px;
	font-size: 14px;
	display: block;
	padding: 12px;
	color: #fff;
}

/* Center a table on the page */
.centerTable {
	margin-left: auto;
	margin-right: auto;
}

/* clearfix classes. */
.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

.clearfix {
	display: block;
}

.largeBlueBox h3 {
	color: #000;
}

#daterange {
	display: none;
}

#monthcount {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	border-radius: 4px;
	background-color: $aqua-spring;
	border: 1px solid #A8CFF6;
	padding: 12px;
	color: $cerulean;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
}

#monthcount h3 {
	display: inline;
	color: $cerulean !important;
	font-size: 19px !important;
	margin-top: 0px;
	text-align: left;
}


/* tinynav styles */
/* styles for desktop */
.tinynav {
	display: none;
}

.navigation_in_content {
	display: none;
}



/* styles for mobile */
@media screen and (max-width: $screen-small) {
	html.responsive-full {
		.headerTrack {
			max-width: none;
			width: 100%;
			margin: 0 auto;
			box-sizing: border-box;
		}

		#headerSearchForm.flightSearchForm {
			max-width: none;
		}
	}
}

@media screen and (max-width: $screen-medium) {
	html.responsive-full {
		.tinynav {
			display: block;
		}

		.tinynav {
			position: absolute;
			top: 5.5px;
			left: 0;
			opacity: 0;
			cursor: pointer;
		}

		#navcontainer,
		.navcontainer {
			display: inline-block;
			position: relative;
			box-sizing: border-box;
			height: 31px;
			margin-left: 10px;
			border: 1px solid $silver;
			overflow: hidden;
			color: $cerulean;
			text-transform: uppercase;
			font-size: 15px;
			border: 1px solid $silver;
			border-radius: $standardRadius;
			background: white;
			padding: 8px;
			margin-right: 10px;
		}

		.navigation_in_content {
			@include flexBox();
			@include flexAlignCenter();

			&::after {
				content: " ▼";
				font-size: 75%;
				margin-left: 5px;
				color: $cerulean;
			}
		}

		#profileNavlist,
		.fa-nav-list {
			display: none
		}

		#topWrapper {
			div.headerTrack {
				div.forgot {
					display: none;
				}
			}
		}
	}
}

html:not(.responsive-full) {

	/*
 * This section is needed to have the header search form work properly in 
 * non-responsive pages.  
 * In the event that all pages become responsive...this could go away.
 */
	.flightSearchForm {
		display: inline-table;
		vertical-align: bottom;
	}

	#headerSearchForm .flightSearchForm {
		display: inline-table;
		padding-left: 25px;
		vertical-align: middle;
	}

	.searchToggle,
	.trackSubmit,
	searchOption {
		display: table-cell;
		vertical-align: inherit;
	}

	.searchOption[data-fa-search-type="omniSearch"] {
		// You'd think that display: table-cell would be o.k. BUT DON'T DO IT!
		// See comments below...
		display: inline-block;
		vertical-align: middle;
	}
}

@media screen and (min-width: $screen-small-plus1 ) {

	/* 
 * Manage the header search form when in non-mobile views
 */
	#headerSearchForm {
		@include inlineFlex;
		@include flexSpaceAround;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	.flightSearchForm {
		@include flexBox;
		@include flexAlignCenter;
	}

	#headerSearchForm .flightSearchForm {
		@include flexBox;
		@include flexAlignCenter;
	}
}

#navcontainer,
.navcontainer {
	overflow-y: hidden;
	overflow-x: auto;
}

#iecountdown {
	display: none;
}

#discussions-notice {
	width: 100%;
	text-align: center;
	font-weight: bold;
	background: url(/images/ie_warning.png) 0 top repeat-x;
	font-size: 110%;
	padding: 3px 0px;
}

.ie6,
.ie7,
.ie8,
.ie9,
.ie10,
.ie11 {
	#iecountdown {
		display: block !important;
		clear: both;
		width: 100%;
		padding: 0;
		position: relative;
	}
}


.show-for-medium-up-table,
.show-for-large-up-table {
	display: none;
}

@media only screen and (min-width: 40.0625em) {
	.show-for-medium-up-table {
		display: table-cell;
	}
}

@media only screen and (min-width: 64.0625em) {
	.show-for-large-up-table {
		display: table-cell;
	}
}

@media only screen and (max-width: 40.0625em) {
	.no-padding-ad {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
}

@media only screen and (min-width: 767px) {
	.fixed-width {
		position: absolute;
		right: 15px;
		width: 320px;
		float: right !important;
	}

	.fixed-width-right {
		padding-right: 330px;
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.fixed-width {
		position: relative;
		padding-bottom: 10px;
	}

	.fixed-width-right {
		padding-left: 0.9375rem;
		padding-right: 0.9375rem;
	}
}

.row-floating-ad {
	position: relative;
}

/* /live page styles */

div.livePageContent {
	display: flex;
	margin: 2px;
}

div.livePageMap {
	margin: inherit;
	border: 1px solid $silver;
	background-color: $midnight-blue;
}

div.livePageMapLoading {
	height: 100%;
	background: url(/images/loading-large-gray.gif) no-repeat center center $white;
	opacity: 0.4;
}

div.livePageAd {
	margin: inherit;
}

@media only screen and (min-width: $screen-small-plus1) {
	div.livePageContent {
		flex-direction: row;
	}

	div.livePageMap {
		flex: 1 1 auto;
		height: 600px;
		max-height: 600px;
	}

	div.livePageAd {
		flex: 0 0 300px;
		height: 600px;
	}
}

@media only screen and (max-width: $screen-small) {
	div.livePageContent {
		flex-direction: column;
	}

	div.livePageMap {
		flex: 1 1 300px;
		max-height: 300px;
		order: 2;
	}

	div.livePageAd {
		flex: 0 0 50px;
		align-self: center;
		order: 1;
	}
}

/* My FlightAware page styles*/

div.myFaMapContainer {
	display: flex;
	flex-direction: row;
}

div.myFaMap {
	flex: 1 1 auto;
	height: 250px;
	max-height: 250px;
	margin: inherit;
}

div.myFaArincMap {
	flex: 1 1 auto;
	height: 500px;
	max-height: 500px;
	margin: inherit;
}

div.myFaTopAd {
	flex: 0 0 300px;
	height: 250px;
	align-self: center;
	margin: inherit;
}

div.myFaManage {
	margin: 2px 0 10px;
}

.add_myflightaware {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 12px 0 12px 0;
	border-radius: 4px;
	background-color: $aqua-spring;
	border: 1px solid #A8CFF6;
	padding: 12px;
	height: 28px;
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;

	span.tracking_container {
		display: flex;
		align-items: center;
	}
}

div.myFaGlobalUpsell {
	padding: 16px;
	margin: 10px 0;
	position: relative;

	font-size: 16px;
	color: #002F5D;

	// Add fancy Global logo thing on >mobile viewports
	@media (min-width: ($screen-small + 1)) {
		background-image: url(/images/global-upsell/image-flightaware-global-wide.svg);
		background-position: 15px 15px;
		background-repeat: no-repeat;
		// these dimensions are based on the size of the background image
		padding-left: 320px; // width + right pad
		min-height: 144px; // height + vertical padding
	}

	p,
	li {
		line-height: 24px;
	}

	p {
		margin: 8px 0;
	}

	p.heading {
		font-size: 20px;
		font-weight: bold;
		margin-top: 0;
	}

	a#myFaGlobalUpsellCollapsibleControl {
		display: block;
		font-weight: bold;
		text-decoration: none;
		color: inherit;

		i {
			display: inline-block;
			height: 8px;
			width: 13px;
			margin-right: 5px;
			// See /webroot/images/global-upsell/icon-accordion-expand.svg
			background-image: url("data:image/svg+xml,%3Csvg height='8' viewBox='0 0 13 8' width='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m279.949147 402 1.050853 1.113361-6.5 6.886639-6.5-6.886639 1.050853-1.113361 5.449147 5.773z' fill='%23002f5d' transform='translate(-268 -402)'/%3E%3C/svg%3E");
			background-repeat: no-repeat;
		}

		span.actionText:before {
			content: 'Show ';
		}

		&.expanded {
			i {
				// See /webroot/images/global-upsell/icon-accordion-collapse.svg
				background-image: url("data:image/svg+xml,%3Csvg height='8' viewBox='0 0 13 8' width='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m280.949147 402 1.050853 1.113361-6.5 6.886639-6.5-6.886639 1.050853-1.113361 5.449147 5.773z' fill='%23002f5d' transform='matrix(1 0 0 -1 -269 410)'/%3E%3C/svg%3E");
				margin-bottom: 3px;
			}

			span.actionText:before {
				content: 'Hide ';
			}
		}
	}

	div#myFaGlobalUpsellCollapsibleContent {
		display: none;
	}

	a.discover {
		height: auto;
		text-align: center;
		margin-bottom: 8px;
	}

	a.dismiss.text {
		text-decoration: underline;
	}

	a.dismiss.icon {
		height: 12px;
		width: 12px;
		// See /webroot/images/global-upsell/icon-close.svg
		background-image: url("data:image/svg+xml,%3Csvg height='12' viewBox='0 0 12 12' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m768.790273 296 1.209727 1.209727-4.791 4.790273 4.791 4.790273-1.209727 1.209727-4.790273-4.791-4.790273 4.791-1.209727-1.209727 4.79-4.790273-4.79-4.790273 1.209727-1.209727 4.790273 4.79z' fill='%23002f5d' opacity='.4' transform='translate(-758 -296)'/%3E%3C/svg%3E");
		background-repeat: no-repeat;

		position: absolute;
		top: 8px;
		right: 8px;
	}

}

@media only screen and (max-width: $screen-small - 1) {
	div.myFaMapContainer {
		flex-direction: column;
	}

	div.myFaMap {
		flex: 1 1 250px;
		max-height: 250px;
		order: 2;
	}

	div.myFaTopAd {
		flex: 0 0 50px;
		align-self: center;
		order: 1;
	}

	.add_myflightaware {
		font-size: 15px;
	}
}

#myFaAircraftContainer,
#myFaAirportsContainer {
	outline: 0px solid #fae051;

	td.dataTables_empty {
		display: none;
	}
}

.myaircraft_table_small,
.myairports_table_small {
	font-size: 15px;
}

.myaircraft_table_small .mainHeader,
.myairports_table_small .mainHeader {
	font-size: 16px;
}

.myaircraft_table_small .secondaryHeader,
.myairports_table_small .secondaryHeader {
	font-size: 16px;
}

.myaircraft_table_small td,
.myairports_table_small td {
	border-left: 0;
	border-right: 0;
}

.myaircraft_table_small>tbody>tr:nth-child(even),
.myairports_table_small>tbody>tr:nth-child(even) {
	background-color: #e5e5e5;
}

.myaircraft_table_small>tbody>tr,
.myairports_table_small>tbody>tr {
	border-bottom: 1px solid #b2b2b2;
}

.myairports_table_small>tbody>tr>td {
	padding-bottom: 10px
}

.myaircraft_table_small td.aircraftInfo {
	border-right: 1px solid #b2b2b2;
	text-align: center;
}

.myaircraft_table_small td.flightInfo {
	vertical-align: top;
}

.myaircraft_table_small .aircraftType {
	margin-top: 10px;
}

.myaircraft_table_small .aircraftAlert {
	margin: 10px auto 0 auto;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.myaircraft_table_small div.recentScheduledSubheader,
.myairports_table_small div.arrivalDepartureSubheader {
	width: 100%;
	color: #7c7c7c;
	font-weight: bold;
	margin: 10px 0 2px 0;
	padding: 0 0 2px 0;
	border-bottom: 1px dotted #b2b2b2;
}

.myaircraft_table_small div.recentScheduledSubheader:first-child,
.myairports_table_small div.arrivalDepartureSubheader:first-child {
	margin-top: 0 !important;
}

.myaircraft_table_small .departureArrivalLabel {
	display: inline-block;
	min-width: 26px;
	margin-right: 4px;
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
}

.myaircraft_table_small .flightTime {
	display: inline-block;
	margin-right: 4px;
}

.myaircraft_table_small .originDestination {
	display: inline-block;
}

.myairports_table_small .aircraftType {
	margin-right: 10px;
}

.myaircraft_table_small .alt_ident,
.myaircraft_table_small .tz,
.myairports_table_small .tz {
	font-size: 12px;
}

.myaircraft_table_small div.altIdentInfo {
	margin-top: 2px;
}

.myaircraft_table_small .altIdentInfoHeader {
	display: inline-block;
	min-width: 54px;
	margin-right: 4px;
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
}

.myairports_table_small .airport,
.myairports_table_small .weather {
	text-align: center;
	border-right: 1px solid #b2b2b2;
}

.myairports_table_small .originDestination {
	margin-top: 3px;
}

.myaircraft_table_small .sortByColumnSelector {
	padding-left: 10px;
	width: 60%;
}

.myaircraft_table_small .select2-chosen,
.myaircraft_table_small_dropdown {
	font-size: 16px;
	font-family: $Lato;
	color: black !important;
}

.myaircraft_table_small .sortByDirectionButton {
	display: inline-block;
	cursor: pointer;
	font-family: "FontAwesome";
	margin-left: 5px;
}

.myaircraft_table_small .sortAscending:before {
	content: "\f077";
}

.myaircraft_table_small .sortDescending:before {
	content: "\f078";
}

.myaircraft_small_blockedIdents {
	width: 100%;
	padding: 5px;
	border: 1px solid #b2b2b2;
}

.fa_loading_spinner {
	text-align: center;
	padding: 25px;
	line-height: 2;

	.fa_loading_icon {
		padding-top: 10px;
	}
}


/* Scroller controls */
.slick-prev,
.slick-next {
	background: #ffffff;
	filter: alpha(opacity=50);
	opacity: 0.5;
	height: 100%;
	width: 2rem;
	z-index: 99;
}

.slick-prev {
	left: 0;
}

.slick-next {
	right: 0;
}

/* FontAwesome arrows */
.slick-prev:before,
.slick-next:before {
	font-family: 'FontAwesome';
	font-size: 3rem;
	color: $cerulean;
}

.slick-prev:before {
	content: '\f0d9';
}

.slick-next:before {
	content: '\f0da';
}

[dir='rtl'] {
	& .slick-prev {
		left: auto;
		right: 0;
	}

	& .slick-next {
		right: auto;
		left: 0;
	}

	& .slick-next:before {
		content: '\f0d9';
	}

	& .slick-prev:before {
		content: '\f0da';
	}
}

/* Foundation Tabs */
ul.tabs {
	padding: 0;

	li.tab-title {
		>a {
			background: #efefef;
			border-bottom: 1px solid #AABDCD;
			color: #768FA9;
			font-weight: normal;
			outline: none;
			text-decoration: none;
			text-align: center;
		}

		&.active {
			>a {
				background: #ffffff;
				border-top: 1px solid #AABDCD;
				border-left: 1px solid #AABDCD;
				border-right: 1px solid #AABDCD;
				border-bottom: none;
				color: #002F5D;
				text-decoration: none;
			}
		}
	}
}

#blockerDisclaimerContainer {
	background: $midnight-blue;
	bottom: 0px;
	color: #FFF;
	display: none;
	font-size: 150%;
	height: 150px;
	opacity: 0.9;
	position: fixed;
	width: 100%;
	z-index: 999999;

	align-items: center;
	justify-content: center;
	vertical-align: middle;

	@media (max-width: 1240px) {
		font-size: 125%;
	}

	@media (max-width: 1023px) {
		font-size: 100%;
	}

	@media (max-width: 767px) {
		height: 200px;
	}

	div.disclaimer-body {
		align-items: center;
		display: flex;
		padding: 0 10%;
	}

	div.disclaimer-text {
		display: inline-block;
		margin-bottom: 10px;
		padding-right: 5%;
		width: 100%;

		&.header {
			font-weight: bold;
		}

		a {
			color: $cerulean;
		}
	}

	div.disclaimer-button-container {
		display: inline-block;
		cursor: pointer;
		font-size: 100%;
		color: #FFF;
		text-align: center;
	}

	div.blocker-disclaimer-button {
		background-color: $orange;
		border-radius: 5px;
		padding: 10px 20px;
		font-weight: bold;
		width: 100%;

		span.blocker-disclaimer-button-text {
			cursor: pointer;
			display: inline-block;
		}

		@media (max-width: 768px) {
			display: block;
			margin-left: 10px;
			margin-right: 10px;
			padding: 10px 0px;
		}
	}
}

.fade-in {
	display: none;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease 0s;

	&.fade-in-keep-space {
		display: block;
	}

	&.fade-in-show {
		display: block;
		visibility: visible;
		opacity: 1;
	}
}

.slide-in {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.2s ease 0s;

	&.slide-in-show {
		// ridiculously high so height can take over
		max-height: 200vh;
	}
}

.confirm-dialog {
	border: 4px solid $midnight-blue;
	border-radius: 8px;
	background-color: $white;
	color: $mine-shaft;
	font-family: $Lato;
	position: fixed;
	left: 50%;
	top: 35%;
	transform: translate(-50%, -50%);
	display: none;
	width: 500px;
	height: 200px;
	padding: 16px;
	z-index: 9999;

	@media (max-width: $screen-small) {
		width: 90%;
	}

	&.modal-visible {
		@include flexBox;
		@include flexDirectionColumn;
		@include flexSpaceBetween;
	}

	.confirm-dialog-question {
		font-size: 2em;
	}

	.confirm-dialog-button-group {
		@include flexBox;
		@include flexEnd;

		a {
			margin-left: 16px;
		}
	}
}

.confirm-dialog-mask {
	height: 100vh;
	width: 100vw;
	background-color: $loblolly;
	opacity: .6;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
	display: none;

	&.modal-visible {
		display: block;
	}
}


section#global_slider>div>div>.button {
	color: #3F97DF;
	font-size: 18px;
	cursor: pointer;
}


section#global_slider>div>div>div>div>h2 {
	font-family: Roboto;
	font-style: normal;
	font-weight: 300;
	font-size: 28px;
	line-height: 35px;
}

section#global_slider>div>div>div>div>p {
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
}

div.tracking-promo {
	color: #fff;
	background-color: #00153D;
	margin-bottom: 15px;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;

	.section {
		display: flex;
		flex-direction: row;
		align-items: center;
	}

	.headline {
		font-size: 24px;
		margin: 10px;
	}

	.bottom {
		font-style: italic;
		font-size: 14px;
	}

	.pill {
		position: relative;
		bottom: 4px;
		background-color: #fff;
		color: #00153D;
		text-transform: uppercase;
		font-weight: 700;
		font-size: 11px;
		line-height: 17px;
		height: 16px;
		border-radius: 3px;
		padding: 0 4px;
		display: inline-block;
	}

	a:link {
		text-decoration: none;
	}

	a:visited {
		text-decoration: none;
	}

	a:hover {
		text-decoration: none;
	}

	a:active {
		text-decoration: none;
	}

	a.cta-link {
		font-size: 14px;
		line-height: 20px;
		margin: 10px;
		padding: 10px;
		background-color: #0070E0;
		color: white;
		border-radius: 5px;
		white-space: nowrap;
	}
}

div.tracking-promo.fleet-promo {
	margin-left: 4px;
	margin-right: 4px;
}

/* Make a button look like a link */
.link-button {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	color: $cerulean;
	text-decoration: underline;
	cursor: pointer;
	text-align: left;
}