﻿
/* --------------------------------------------------- */
/*               LINKS                                 */
/* --------------------------------------------------- */

/*
A {color: #3d668c; text-decoration: none;}
A:link {color: #3d668c; text-decoration: none;border-bottom:1px dotted;border-color:#999999}
A:active {color: #3d668c; text-decoration: none;border-bottom:1px dotted;border-color:#999999}
A:visited {color: #3d668c; text-decoration: none;border-bottom:1px dotted;border-color:#999999}
A:hover {color: #3d668c; text-decoration: underline;text-decoration: underline;}

A.nav {color: #FFFFFF; text-decoration: none;border-bottom:0px;}
A.nav:link
{
	color: black;
	text-decoration: none;
	border-bottom: 0px;
}
A.nav:active {color: #FFFFFF; text-decoration: none;border-bottom:0px;}
A.nav:visited
{
	color: black;
	text-decoration: none;
	border-bottom: 0px;
}
A.nav:hover {color: #FFFFFF; text-decoration: underline; text-decoration: underline;}
*/

:root {
	--main-darkcolor: #1b4f79;
	--main-darkcolorlight: #5D82A0;
	--main-lightcolor: #E17A05;
	--main--background: white;
	--main-red: #b91c1c;
}

@font-face {
	font-family: SkywareFont;
	src: url(Lato-Regular.ttf);
}

@font-face {
	font-family: SkywareFontSemiBold;
	src: url(Lato-Bold.ttf);
}

@font-face {
	font-family: SkywareFontBold;
	src: url(Lato-Bold.ttf);
}

.support-address:before 
{
    content:"Support@SKYWareSystems.com";
}

input:disabled
{
color:Gray;
background:#dddddd;
}

input[type="checkbox"] {
	width: 13px;
	height: 13px;
	vertical-align: middle;
	margin: 0 6px 0 0;
	accent-color: #64748b; /* muted slate */
	cursor: pointer;
}

	input[type="checkbox"]:focus {
		outline: none;
		box-shadow: 0 0 0 1px rgba(100, 116, 139, 0.35);
		border-radius: 4px;
	}
	input[type="checkbox"] + label {
		font-size: 13px;
		color: #111827;
		cursor: pointer;
		user-select: none;
	}

input[type="radio"] {
	width: 13px;
	height: 13px;
	vertical-align: middle;
	margin: 0 2px 0 0; /* tighter gap */
	accent-color: #475569;
	cursor: pointer;
	position: relative; /* nudge for consistent optical centering */
	top: -1px;
}

	input[type="radio"]:focus {
		outline: none;
		box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
		border-radius: 999px;
	}

	input[type="radio"] + label {
		font-size: 12px;
		color: #111827;
		cursor: pointer;
		user-select: none;
	}

.SkyBody {
	font-family: SkywareFont;
	background-color: var(--main--background);
	margin: 0px;
}
.NewsWire {
	height: 300px;
	overflow: scroll;
	text-align: center;
}

.SkywareHeader {
	 
	background-color: white;
	height: 60px;
	background-image: url(../../StyleSheets/ModernLight/SkywareLogo.png);
	background-repeat: no-repeat;
	background-position: 10px 4px;
	background-size: 212px 56px;
}

.SkywareTitleLink {
	color: var(--main-darkcolor);
	font-family: SkywareFont;
	font-size: 8pt;
	font-weight: bold;
	cursor:pointer;
}

.SkywareTitleMenu {
	color: var(--main-darkcolor);
	font-family: SkywareFont;
	font-size: 12px;
	font-weight: bold;
}

.SkywareTitleHotel {
	color: white;
	font-family: SkywareFont;
	font-size: 9pt;
	font-weight: bold;
}

.SkywareTitleUser {
	color: var(--main-lightcolor);
	font-family: SkywareFont;
	font-size: 8pt;
	font-weight: bold;
}
.ErrorMessage {
	display: grid;
	grid-template-columns: 24px auto;
	background-color: #BB0202;
	color: #f2f2f2;
	font-family: SkywareFont;
	font-size: 13px;
	font-weight: bold;
	cursor: pointer;
	padding: 5px;
	border-radius: 5px;
	vertical-align: bottom;
}
.HotelSelect {
	font-family: SkywareFont; 
	background-color: white;
	color: var(--main-darkcolor);
	border-radius: 5px;
	font-size: 14px;
	letter-spacing: 0.1em;
}
.HotelSelect:disabled {
	color:silver;
}
.ReportTitle {
	font-size: 18px;
	font-family: SkywareFont;
	color: black;
}
.ReportCaption {
	font-size: 13px;
	font-family: SkywareFont;
	color: var(--main-darkcolor);
}
/* Shared base */
.ReportField {
	font-size: 13px;
	font-family: SkywareFont;
}
select.ReportSelectMulti {
	padding: 4px 6px;
	font-size: 12px;
	font-family: SkywareFont;
	color: #1b2b45; /* primary text */
	background-color: #ffffff; /* white surface */
	border: 1px solid #d6dde8; /* soft neutral border */
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.06);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: none; /* ensure no arrow */
}

	/* Focus */
	select.ReportSelectMulti:focus {
		outline: none;
		border-color: #2f66c5; /* Skyware blue */
		box-shadow: 0 0 0 2px rgba(47,102,197,0.20), inset 0 1px 2px rgba(0,0,0,0.06);
	}

	/* Disabled */
	select.ReportSelectMulti:disabled {
		background-color: #f2f5f9;
		color: #8a97a8;
		cursor: not-allowed;
	}

	/* Selected option highlight */
	select.ReportSelectMulti option:checked {
		background-color: #eef5ff; /* soft blue highlight */
		color: #1b2b45;
	}

/* INPUT-specific */
input.ReportField[type="text"], input.ReportField[type="password"] {
	padding: 3px 5px;
	font-size: 12px;
	color: #1f2937;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

	input.ReportField[type="text"]:focus, input.ReportField[type="password"]:focus {
		outline: none;
		border-color: #2563eb;
		box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0,0,0,0.05);
	}

	input.ReportField[type="text"]:disabled, input.ReportField[type="password"]:disabled {
		background-color: #f3f4f6;
		color: #6b7280;
		cursor: not-allowed;
	}

textarea.ReportField {
	padding: 3px 5px;
	font-size: 12px;
	color: #1f2937;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

	textarea.ReportField:focus {
		outline: none;
		border-color: #2563eb;
		box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0,0,0,0.05);
	}

	textarea.ReportField:disabled {
		background-color: #f3f4f6;
		color: #6b7280;
		cursor: not-allowed;
	}

select.ReportField {
	padding: 3px 32px 3px 5px;
	font-size: 12px;
	font-family: SkywareFont;
	color: #1f2937;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5 7l5 6 5-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px;
}

	select.ReportField:focus {
		outline: none;
		border-color: #2563eb;
		box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0,0,0,0.05);
	}

	select.ReportField:disabled {
		background-color: #f3f4f6;
		color: #6b7280;
		cursor: not-allowed;
	}

.ReportField2
{
	font-size: 12px;
	font-family: SkywareFont;
}

select.ReportField2 {
	padding: 3px 32px 3px 5px;
	font-size: 12px;
	font-family: SkywareFont;
	color: #1f2937;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5 7l5 6 5-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px;
}

	select.ReportField2:focus {
		outline: none;
		border-color: #2563eb;
		box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0,0,0,0.05);
	}

	select.ReportField2:disabled {
		background-color: #f3f4f6;
		color: #6b7280;
		cursor: not-allowed;
	}


.ReportField2Mono {
	font-size: 12px;
	font-family: SkywareFont;
}
select.ReportField2Mono {
	padding: 3px 32px 3px 5px;
	font-size: 12px;
	font-family: SkywareFont;
	color: #1f2937;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5 7l5 6 5-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px;
}

	select.ReportField2Mono:focus {
		outline: none;
		border-color: #2563eb;
		box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0,0,0,0.05);
	}

	select.ReportField2Mono:disabled {
		background-color: #f3f4f6;
		color: #6b7280;
		cursor: not-allowed;
	}


.ReportText
{
	font-size: 13px;
	font-family: SkywareFont;
}

	input.ReportText[type="text"] {
		padding: 3px 5px;
		font-size: 12px;
		font-family: SkywareFont;
		color: #1f2937;
		background-color: #ffffff;
		border: 1px solid #d1d5db;
		border-radius: 6px;
		box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
		transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
	}

		input.ReportText[type="text"]:focus {
			outline: none;
			border-color: #2563eb;
			box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0,0,0,0.05);
		}

		input.ReportText[type="text"]:disabled {
			background-color: #f3f4f6;
			color: #6b7280;
			cursor: not-allowed;
		}


select.ReportText {
	padding: 3px 32px 3px 5px;
	font-size: 12px;
	font-family: SkywareFont;
	color: #1f2937;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5 7l5 6 5-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px;
}

	select.ReportText:focus {
		outline: none;
		border-color: #2563eb;
		box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0,0,0,0.05);
	}

	select.ReportText:disabled {
		background-color: #f3f4f6;
		color: #6b7280;
		cursor: not-allowed;
	}


.ReportButtonSimple
{
	font-size: 12px;
	font-family: SkywareFont;
}

.ReportButtonSimple {
/*	height: 20px;*/
	font-family: SkywareFont;
	font-size: 8pt;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	box-shadow: inset 0 1px 1px rgba(255,255,255,0.6);
	padding-top: 2px;
	padding-bottom: 2px;
}

	.ReportButtonSimple:hover {
		background-color: #e5e7eb;
		border-color: #94a3b8;
	}

	.ReportButtonSimple:active {
		background-color: #e5e7eb;
		box-shadow: inset 0 1px 2px rgba(0,0,0,0.12);
	}


.ReportButton {
	font-size: 13px;
	font-family: SkywareFont;
	letter-spacing: 0.07em;
	border-bottom: 0 none #b3b3b3;
	display: inline-block;
	*display: inline;
	/* IE7 inline-block hack */
	*zoom: 1;
	padding: 4px 12px;
	line-height: 15px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: var(--main-darkcolorlight);
	background-repeat: repeat-x;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	*-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-left: .3em;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
	background-image: linear-gradient(to bottom, var(--main-darkcolorlight), var(--main-darkcolorlight));
	border-left-color: inherit;
	border-left-width: 0;
	border-right-style: none;
	border-right-color: inherit;
	border-right-width: 0;
	border-top-style: none;
	border-top-color: inherit;
	border-top-width: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
}

/*.ReportButtonCheckIn
{
	font-size: 12px;
	font-family: SkywareFont;
	color:Blue;
}
	*/
.ReportButtonCheckIn {
	font-size: 12px;
	font-family: SkywareFont;
	border-bottom: 0 none #b3b3b3;
	color: white;
	display: inline-block;
	*display: inline;
	/* IE7 inline-block hack */
	*zoom: 1;
	padding: 4px 12px;
	line-height: 15px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	/*text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);*/
	background-repeat: repeat-x;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	*-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-left: .3em;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
	background-image: linear-gradient(to bottom, var(--main-lightcolor), var(--main-lightcolor));
	/* Darken IE7 buttons by default so they stand out more given they won't have borders */
	/*border-left-style: none;*/
	border-left-color: inherit;
	border-left-width: 0;
	border-right-style: none;
	border-right-color: inherit;
	border-right-width: 0;
	border-top-style: none;
	border-top-color: inherit;
	border-top-width: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
}
.BannerCaption
{
	font-size: 9pt;
	font-family: SkywareFont;
	color: #00008B;
	font-style:italic;
}
.BannerText
{
	font-size: 12px;
	font-family: SkywareFont;
	/*font-weight:bold;*/
}
.BannerButton
{
	font-size: 8pt;
	font-family: SkywareFont;
	width: 90px;
	/*font-weight:bold;*/
}
.BannerLine
{
	width:100%;
	color:#44739d;
	height:1px;
	background-color:#44739d;
	border:none;
}
.HeaderCell
{
  padding-left: 5px;
  padding-top: 2px;
}

.MenuCellRight {
	width: 2px;
	height: 30px;
	background-color: var(--main-darkcolorlight);
}
.MenuCell {
	font-family: SkywareFont;
	font-style: normal;
	font-size: 12px;
	letter-spacing: 0px;
	letter-spacing: 0.07em;
	color: white;
	cursor: pointer;
	background-color: var(--main-darkcolorlight);
	height: 30px;
	padding-bottom: 0px;
	margin: 0px;
	padding-top: 0px;
	border-left: 2px solid var(--main-darkcolorlight);
}
	/*.MenuCell:after {
		content: '';
		display: block;
		margin: auto;
		height: 3px;
		width: 0px;
		background: transparent;
		transition: width .75s ease, background-color .75s ease;
	}*/
	.MenuCell:hover {
		background-color: var(--main-darkcolor);
		border-left: 2px solid var(--main-lightcolor);
	}
	/*.MenuCell:hover:after {
		width: 100%;
		background: var(--main-darkcolor);
	}*/
.MenuCellHighlight {
	font-size: 12px;
	font-family: SkywareFont;
	letter-spacing: 0.07em;
	cursor: pointer;
	height: 30px;
	margin: 0px;
	color: var(--main-darkcolor);
	background-color: var(--main-lightcolor);
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	border-left: 2px solid white;
}
.MenuCellMainMenuTitle {
	background-color: white;
	font-family: SkywareFont;
	color: var(--main-lightcolor);
	font-weight: bold;
	text-align: left;
	font-size: 14px;
	height: 20px;
	border-bottom: 1px solid #e6e6e6;
}
.MenuCellMainMenu {
	font-size: 13px;
	font-family: SkywareFont;
	letter-spacing: 0px;
	color: black;
	font-weight: normal;
	padding: 1px 1px 1px 1px;
	cursor: pointer;
	background-color: white;
	/*border-bottom: #44739d 1px solid;
	border-top: #44739d 0px solid;*/
	height: 20px;
}

.MenuCellMainMenuHighlight {
	font-size: 13px;
	font-family: SkywareFont;
	letter-spacing: 0px;
	color: #FFFFFF;
	font-weight: normal;
	/*padding: 1px 1px 1px 1px;*/
	cursor: pointer;
	background-color: var(--main-darkcolor);
	height: 20px;
}

.MenuCellMainMenuHighlightClick {
	font-size: 13px;
	font-family: SkywareFont;
	letter-spacing: 0px;
	color: white;
	font-weight: normal;
	padding: 1px 1px 1px 1px;
	cursor: pointer;
	background-color: var(--main-lightcolor);
	/*border-bottom: #44739d 1px solid;
	border-left: #44739d 1px solid;
	border-top: #44739d 0px solid;
	border-right: #44739d 0px solid;*/
	height: 20px;
}

.MenuCellDisabled {
	font-size: 13px;
	font-family: SkywareFont;
	letter-spacing: 0px;
	color: gray;
	font-weight: normal;
	/*padding: 1px 1px 1px 1px;*/
	cursor: default;
	background-color: white;
	/*border-bottom: #44739d 1px solid;
	border-top: #44739d 0px solid;*/
	height: 20px;
}
.MenuTitle {
	font-size: 13px;
	font-family: SkywareFont;
	letter-spacing: 0px;
	color: white;
	font-weight: bold;
	background-color: var(--main-darkcolorlight);
	height: 30px;
	padding-bottom: 0px;
	margin: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	border-right-style: none;
	border-top-style: none;
	border-left-style: none;
	border-bottom: white thin;
	border-left: 2px solid var(--main-darkcolorlight);
	cursor:pointer;
}
	.MenuTitle:hover {
		background-color: var(--main-darkcolor);
		border-left: 2px solid var(--main-lightcolor);
	}

.MenuTitleHighlight {
	font-size: 13px;
	font-family: SkywareFont;
	letter-spacing: 0px;
	color: white;
	font-weight: bold;
	background-color: var(--main-lightcolor);
	height: 30px;
	padding-bottom: 0px;
	margin: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	border-right-style: none;
	border-top-style: none;
	border-left-style: none;
	border-bottom: white thin;
	border-left: 2px solid white;
	cursor: pointer;
}


.ToolBarMenuTopSmall {
	height: 5px;
	background-color: var(--main-darkcolorlight);
}
.ToolBarMenuTop {
	width: 100%;
	vertical-align: top;
}
.HomeCell {
	text-align: center;
	vertical-align: middle;
	font-family: SkywareFontSemiBold;
	font-style: normal;
	font-size: 11px;
	line-height: 13px;
	align-items: center;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #1B4F79;
	cursor: pointer;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	height: 30px;
	border-bottom: 2px solid white;
}
.HomeCell:hover {
	background-color: var(--main-darkcolor);
	border-bottom: 2px solid var(--main-lightcolor);
	color: white;
	/*	width: 100%;
		background: var(--main-lightcolor); */
}
.TopMenuCell {
	text-align: center;
	vertical-align: middle;
	font-family: SkywareFontSemiBold;
	font-style: normal;
	font-size: 11px;
	line-height: 13px;
	align-items: center;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #1B4F79;
	cursor: pointer;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	height: 30px;
	border-bottom: 2px solid white;
}
	.TopMenuCell:hover {
		background-color: var(--main-darkcolor);
		border-bottom: 2px solid var(--main-lightcolor);
		color: white;
		/*	width: 100%;
		background: var(--main-lightcolor); */
	}

/* TopMenuCell:after {
	content: '';
	display: block;
	margin: auto;
	height: 3px;
	width: 0px;
	background: transparent;
	transition: width .75s ease, background-color .75s ease;
}*/

 .TopMenuCellHighlight
{
	text-align: center;
	vertical-align: middle;
	font-size: 13px;
	font-family: SkywareFont;
	letter-spacing: 0px;
	color: #FFFFFF;
	font-weight: bold;
	cursor: pointer;
	background-color: #44739d;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	height: 30px;
	border-bottom: 0px;
	border-left: 0px;
	border-top: 0px;
	border-right: 0px;
}
.TopMenuCellHighlightClick {
	text-align: center;
	vertical-align: middle;
	font-family: SkywareFontSemiBold;
	font-style: normal;
	font-size: 11px;
	line-height: 13px;
	align-items: center;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: white;
	cursor: pointer;
	background-color: var(--main-lightcolor);
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	height: 30px;
	border-bottom: 0px;
	border-left: 0px;
	border-top: 0px;
	border-right: 0px;
}
.GridMenuCell
{
	background-image: url(.);
	border-bottom-style: none;
	padding-bottom: 0px;
	border-right-style: none;
	background-color: #44739d;
	margin: 0px;
	padding-left: 0px;
	padding-right: 0px;
	border-top-style: none;
	border-left-style: none;
	padding-top: 0px;
}
.GridMenuTable {
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	border-bottom-style: none;
	border-right-style: none;
	border-top-style: none;
	border-left-style: none;
	background-color: white;
	margin: 0px;
	padding: 0px;
	border-collapse: collapse;
}
.GridMenuTableBottom
{
    vertical-align:top; 
    background-color:#f8f8ff;
}
.ModifyFolioTitle {
	font-family: SkywareFont;
	font-size: 14pt;
	font-weight: bold;
	color: var(--main-darkcolor);
}
.ModifyFolioSearch
{
  font-family: SkywareFont;
  font-size: 14px;
  color: #990000;
  cursor: pointer;
}
.ModifyGuestCellTitle
{
  font-family: SkywareFont;
  font-size: 14px;
  padding-bottom: 4px;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 4px;
  color: #990000;
  font-weight: bold;
  vertical-align: bottom;
  white-space:nowrap;
}
.ModifyFolioCellTitle
{
	font-family: SkywareFontSemiBold;
	font-size: 13px;
	padding-bottom: 4px;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 4px;
	color: var(--main-darkcolor);
	cursor: pointer;
	vertical-align: bottom;
}
.ModifyFolioCellTitleNoFinger {
	font-family: SkywareFontSemiBold;
	font-size: 13px;
	padding-bottom: 4px;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 4px;
	color: var(--main-darkcolor);
	cursor: default;
	vertical-align: bottom;
}
/*.ModifyFolioCellSearch
{
  font-family: SkywareFont;
  font-size: 14px;
  width: 100%
  
}
*/
/* INPUT-specific */
.ModifyFolioCellSearch {
	padding: 3px 6px;
	font-size: 14px;
	color: #111827;
	/* subtle contrast so it doesn't look "blank" */
	background-color: #f9fafb;
	border: 1px solid #cbd5e1; /* a touch stronger than #d1d5db */
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

	/* optional but makes it feel more "alive" */
	.ModifyFolioCellSearch:hover {
		background-color: #ffffff;
		border-color: #94a3b8;
	}

	.ModifyFolioCellSearch:focus {
		outline: none;
		background-color: #ffffff;
		border-color: #2563eb;
		box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0,0,0,0.04);
	}

	/* makes empty fields feel intentional */
	.ModifyFolioCellSearch::placeholder {
		color: #9ca3af;
	}

/* if your inputs are small, this helps vertical centering */
.ModifyFolioCellSearch {
	line-height: 1.2;
}

	/* disabled */
	.ModifyFolioCellSearch:disabled {
		background-color: #f3f4f6;
		color: #6b7280;
		cursor: not-allowed;
		border-color: #e5e7eb;
	}

.ModifyFolioCell
{
  font-family: SkywareFont;
  font-size: 13px;
  padding-bottom: 4px;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 4px;
}
.ModifyFolioRowWhite
{
  font-family: SkywareFont;
  font-size: 14px;
  cursor: pointer;
  background-color:White;
}
.ModifyFolioRowSilver
{
  font-family: SkywareFont;
  font-size: 14px;
  cursor: pointer;
  background-color:#f8f8ff;
}
.ModifyFolioRowHighlight
{
  font-family: SkywareFont;
  font-size: 14px;
  cursor: pointer;
  background-color: #44739d;
  color:White;
}
.ModifyFolioRowHighlightClick
{
  font-family: SkywareFont;
  font-size: 14px;
  cursor: pointer;
  background-color: #44739d;
  color:aqua;
}
.ModifyFolioRowNoClickHighlight
{
  font-family: SkywareFont;
  font-size: 14px;
  background:#44739d;
  color:White;
}
.ModifyFolioRowNoClickWhite
{
  font-family: SkywareFont;
  font-size: 14px;
  background:white;
}
.ModifyFolioRowNoClickSilver
{
  font-family: SkywareFont;
  font-size: 14px;
  background-color:#f8f8ff;
}
.ModifyFolioRetrieved
{
  font-family: SkywareFont;
  font-size: 14px;
  color: black;
}
.ModifyFolioNewWindow
{
	font-family: SkywareFont;
	font-size: 10px;
	color: black;
	cursor: pointer;
}
.ModifyFolioNewWindow2
{
	font-family: SkywareFont;
	font-size: 14px;
	color: black;
	cursor: pointer;
	font-weight: bold;
}
.DashBoard {
	background-color: white;
	border: 1px solid #cccccc;
}
.DashboardTitle
{
  background-color: var(--main-darkcolorlight);
  font-family: SkywareFont;
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
}
.DashboardCell {
	font-size: 13px;
	font-family: SkywareFont;
	letter-spacing: 0px;
	color: black;
	font-weight: normal;
	padding: 1px 1px 1px 1px;
	border-bottom: #44739d 1px solid;
	border-top: #44739d 0px solid;
	height: 20px;
}
.DashboardInput
{
  font-family: SkywareFont;
  font-size: 11px;
}
.SWSearchCell
{
  font-size: 12px;
  font-family: SkywareFont;
  cursor: pointer;
}
.SWSearchCellTitle
{
  font-size: 13px;
  font-family: SkywareFont;
}
.ToolBarSearch
{
  font-size: 10px;
  font-family: SkywareFont;
}
.ToolBarSearchText
{
	font-size: 11px;
	font-family: SkywareFont;
	width: 125px;
}
.PostTitle
{
	font-family: SkywareFont;
	font-size: 12pt;
	font-weight: bold;
	color: #CC6600;
}
.PostCaption
{
	font-family: SkywareFont;
	font-size: 12px;
}
.PostText
{
	font-family: SkywareFont;
	font-size: 12px;
}

input.PostText[type="text"], input.PostText[type="password"] {
	padding: 3px 5px;
	font-size: 12px;
	font-family: SkywareFont;
	color: #1f2937;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

	input.PostText[type="text"]:focus, input.PostText[type="password"]:focus {
		outline: none;
		border-color: #2563eb;
		box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0,0,0,0.05);
	}

	input.PostText[type="text"]:disabled, input.PostText[type="password"]:disabled {
		background-color: #f3f4f6;
		color: #6b7280;
		cursor: not-allowed;
	}

select.PostText {
	padding: 3px 32px 3px 5px;
	font-size: 12px;
	font-family: SkywareFont;
	color: #1f2937;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5 7l5 6 5-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px;
}

	select.PostText:focus {
		outline: none;
		border-color: #2563eb;
		box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0,0,0,0.05);
	}

	select.PostText:disabled {
		background-color: #f3f4f6;
		color: #6b7280;
		cursor: not-allowed;
	}

/*.PostButton
{
	font-family: SkywareFont;
	font-size: 12px;
}
*/
.PostButton {
	/*	height: 20px;*/
	font-family: SkywareFont;
	font-size: 12px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	box-shadow: inset 0 1px 1px rgba(255,255,255,0.6);
	padding-top: 2px;
	padding-bottom: 2px;
}

	.PostButton:hover {
		background-color: #e5e7eb;
		border-color: #94a3b8;
	}

	.PostButton:active {
		background-color: #e5e7eb;
		box-shadow: inset 0 1px 2px rgba(0,0,0,0.12);
	}


.PostGridTitle
{
  font-family: SkywareFont;
  font-size: 14px;
  padding-bottom: 4px;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 4px;
  color: #990000;
  font-weight: bold;
  cursor: pointer;
  vertical-align: bottom;
}
.PostGridRow
{
  font-family: SkywareFont;
  font-size: 14px;
}
.GeneralMessage {
	font-weight: bold;
	font-family: SkywareFont;
	font-size: 16px;
	color: var(--main-darkcolor);
}
.UpdatingMessage {
	font-weight: bold;
	font-family: SkywareFont;
	font-size: 28px;
	color: #990000;
}
.ProcessingMessage {
	font-family: SkywareFont;
	font-weight: bold;
	color: var(--main-lightcolor);
	font-size: 24px;
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	background-color: #C0C0C0;
	vertical-align: middle;
	text-align: center;
	visibility: hidden;
}
.GridMonthTitle
{
  font-family: SkywareFont;
  font-size: 14px;
  padding-left: 4px;
  color: #000000;
  vertical-align: bottom;
}
.GridHorizontalTitle
{
  font-family: SkywareFont;
  font-size: 13px;
  padding-bottom: 4px;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 4px;
  color: #000000;
  /*font-weight: bold;*/
  vertical-align: bottom;
}
.GridHorizontalTitle2
{
	font-family: SkywareFont;
	font-size: 13px;
	padding-bottom: 4px;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 4px;
	color: #990000;
	/*font-weight: bold;*/
	vertical-align: bottom;
}
.RowWhite
{
    background-color:white;
}
.RowSilver
{
    background-color:#EEF2F7;
}
.GridVerticalTitle
{
	font-family: SkywareFont;
	color: var(--main-darkcolor);
	font-size: 13px;
}
.GridCell
{
  font-family: SkywareFont;
  font-size: 13px;
	/*font-weight: bold;*/
	white-space:nowrap;
}
.GridCellNormal
{
  font-family: SkywareFont;
  font-size: 13px;
}
.SmallMessage
{
	font-family: SkywareFont;
	color: var(--main-darkcolor);
	font-size: 8pt;
}
.FastPickRow {
	font-family: SkywareFont;
	font-size: 12px;
	white-space: nowrap;
}

.GRCRowDef {
	color: #1e40af;
	font-size: 13px;
	font-family: SkywareFont;
	background-color: #f8fafc;
}
.GRCRowTent {
	color: green;
	font-size: 13px;
	font-family: SkywareFont;
	background-color: #f8fafc;
}
.GRCRowProsp {
	color: #FF9900;
	font-size: 13px;
	font-family: SkywareFont;
	background-color: #f8fafc;
}
.GRCRowWholesale {
	color: #9900CC;
	font-size: 13px;
	font-family: SkywareFont;
	background-color: #f8fafc;
}
.GRCHighlight {
	background-color: #4f6f8f;
	color: #e8eef5;
}

.GRCDay {
	border-right: 1px solid #edf0f4;
	border-bottom: 1px solid #d7dde5;
	border: 1px solid #e2e8f0;
	font-family: SkywareFont;
	font-size: 10px;
	text-align: center;
	height: 20px;
	background-color: #f1f5f9;
	color: #000000;
	white-space: nowrap;
	width: 25px;
}
.GRCCell {
	border-right: 1px solid #edf0f4;
	border-bottom: 1px solid #d7dde5;
	font-family: SkywareFont;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
}
.GRCCellTotal {
	border-right: 1px solid #edf0f4;
	border-bottom: 1px solid #d7dde5;
	font-family: SkywareFont;
	font-size: 12px;
	text-align: center;
	background: #e5e7eb;
	font-weight: 600;
}
.GRCHeaderTitle {
	border-right: 1px solid #edf0f4;
	border-bottom: 1px solid #d7dde5;
	text-align: center;
	vertical-align: middle;
	font-size: 13px;
	font-family: SkywareFont;
	letter-spacing: 0px;
	background-color: #c05621;
	white-space: nowrap;
	color: #fef3c7;
}
.GRCHeader {
	border-right: 1px solid #edf0f4;
	border-bottom: 1px solid #d7dde5;
	font-family: SkywareFont;
	font-size: 11px;
	text-align: left;
	white-space: nowrap;
	cursor: pointer;
}
.GRCHeaderTotal {
	border-right: 1px solid #edf0f4;
	border-bottom: 1px solid #d7dde5;
	font-family: SkywareFont;
	font-size: 11px;
	text-align: left;
	white-space: nowrap;
	background: #e5e7eb;
	font-weight: 600;
}
.QuickBorder
{
    /*border: 1px solid var(--main-darkcolor);*/ /*#44739d;*/
    border-collapse: collapse;
    border-spacing: 1px;
    white-space:nowrap;
}
.QuickTitle
{
  background-color: white;
  font-family: SkywareFont;
  color: var(--main-lightcolor);
  text-align: center;
  font-size: 14px;
  height:22px;
}
.QuickBar
{
white-space:nowrap; 
text-align:center; 
background-color:white;
height:22px;
vertical-align:middle;
}
.QuickTitleWiz
{
  font-family: SkywareFont;
  color: var(--main-lightcolor);
  text-align: center;
  font-size: 14px;
  height:22px;
}
.QuickBarWiz
{
white-space:nowrap; 
text-align:center; 
height:22px;
vertical-align:middle;
}
.QuickHR {
	height: 3px;
	border-bottom: 1px solid var(--main-darkcolor);
}
.GridRates
{
    padding: 4px;
    border-width: 1px;
    border-style: solid;
}
.FastPickCell {
	font-size: 8pt;
	font-family: SkywareFont;
	white-space: nowrap;
}
.BreakPointsCell
{
    border-style: solid;
    border-width: 1px;
}
.MessageBoard
{
    color: #970000;
	font-family:SkywareFont;
	font-size:12px;
}
.WizardBar
{
    background: linear-gradient(180deg, #eef4fb, #dde8f6);
    border-bottom: 1px solid #c5d6ea;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);    text-align:center; 
    height:33px;
    vertical-align:middle;
    white-space:nowrap;
}
.ShortMenuButton {
	display: block;
	font-family: SkywareFont;
	font-size: 14pt;
	cursor: pointer;
	font-weight: bold;
	cursor: pointer;
	color: var(--main-darkcolor);
	height: 60px;
	width: 100%;
	text-align: left;
	background-color: #e6e6e6;
	/*border-top: white 1px solid;*/
	vertical-align: middle;
	/*border-right-style: inset;
	box-shadow: 0px 9px 5px 1px #E9E9E9 inset;*/
}
	.ShortMenuButton:hover {
		background-color: var(--main-darkcolor);
		color: #FFFFFF;
	}

.SkyNewsDate {
	color: black;
	font-style: italic;
	font-size: 8pt;
	font-family: SkywareFont;
}
.SkyNewsLine {
	color: black;
	font-size: 12px;
	font-family: SkywareFont;
}

.divSearch {
	float: right;
	background-color: white;
	width: 200px;
	height: 22px;
	border-radius: 5px;
	display: flex;
	flex-direction: row;
	align-items: center;
	border: 1px solid gray;
}

.txtSearch {
	font-family: SkywareFont;
	all: unset;
	font: 13px system-ui;
	color: black;
	height: 100%;
	width: 100%;
	padding: 6px 10px;
	text-align:left;
}

	.txtSearch::placeholder {
		color: gray;
		opacity: 0.7;
	}

.SearchSVG {
	color: #fff;
	fill: gray;
	width: 18px;
	height: 18px;
	padding: 10px;
}

.SearchButton {
	all: unset;
	cursor: pointer;
	width: 44px;
	height: 44px;
}

.SearchSVG2 {
	color: #fff;
	fill: gray;
	width: 18px;
	height: 18px;
	padding: 3px;
}
 
.SearchButton2 {
	all: unset;
	cursor: pointer;
	background-color: white;
	border-radius: 5px;
	flex-direction: row;
	align-items: center;
	border: 1px solid gray;
}

.divMenuSearch {
	float: left;
	background-color: white;
	width: 98%;
	height: 22px;
	border-radius: 5px;
	display: flex;
	flex-direction: row;
	align-items: center;
	border: 1px solid gray;
}

.txtMenuSearch {
	font-family: SkywareFont;
	all: unset;
	font: 13px system-ui;
	color: black;
	height: 100%;
	width: 100%;
	padding: 6px 10px;
	text-align: left;
}

	.txtMenuSearch::placeholder {
		color: gray;
		opacity: 0.7;
	}

.MenuSearchSVG {
	color: #fff;
	fill: gray;
	width: 18px;
	height: 18px;
	padding: 10px;
}

.MenuSearchButton {
	all: unset;
	cursor: pointer;
	width: 44px;
	height: 44px;
}


/* Spinner is below */
/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 12; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.2); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
	background-color: #fee7cd;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 300px;
}
.modalDiv {
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100%;
	height: 400px;
}

/* Safari */
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


.loader {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	margin: -75px 0 0 -75px;
	width: 150px;
	height: 150px;
	background-image: url(../../Images/SkyGlobeMoving.gif);
	background-repeat: no-repeat;
	/*
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	*/
}

/* The Modal (background) */
.modalMenuSearch {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 12; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
}
/* Modal Content */
.modalMenuSearch-content {
	background-color: #fefefe;
	margin: auto;
	border: 1px solid #888;
	overflow: auto;
	min-width: 200px;
	max-height: 450px;
	position: absolute;
}
/* The Close Button */
.closeMenuSearch {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

	.closeMenuSearch:hover,
	.closeMenuSearch:focus {
		color: #000;
		text-decoration: none;
		cursor: pointer;
	}

/* The Modal (background) */
.modalMenu {
	display: none;
	position: fixed;
	z-index: 12;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.62);
	overflow-y: auto;
	overflow-x: hidden;
	/* Firefox scrollbar */
	scrollbar-width: thin;
	scrollbar-color: rgba(100,116,139,0.4) #f1f3f6;
}

/* Chrome / Edge */
	.modalMenu::-webkit-scrollbar {
		width: 8px;
	}

	.modalMenu::-webkit-scrollbar-track {
		background: #f1f3f6;
		border-radius: 8px;
	}

	.modalMenu::-webkit-scrollbar-thumb {
		background: rgba(100,116,139,0.4);
		border-radius: 8px;
		border: 2px solid #f1f3f6;
	}

		.modalMenu::-webkit-scrollbar-thumb:hover {
			background: rgba(100,116,139,0.6);
		}

/* Modal Content */
.modalMenu-content {
	background-color: #e6e6e6;
	margin: auto;
	padding: 18px;
	border: 1px solid rgba(148,163,184,0.22);
	border-radius: 10px;
	box-shadow: 0 16px 40px rgba(0,0,0,0.55);
	width: 900px;
	max-width: calc(100vw - 60px);
	overflow-y: auto;
	overflow-x: hidden;
	max-height: calc(100vh - 80px);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
	/* Inner surface for menu content */
	.modalMenu-content > div {
		background-color: white;
		border-radius: 8px;
		border: 1px solid rgba(148,163,184,0.16);
	}
/* The Close Button */
.closeMenu {
	color: rgba(226,232,240,0.70);
	float: right;
	font-size: 28px;
	font-weight: 700;
}

	.closeMenu:hover,
	.closeMenu:focus {
		color: #ffffff;
		text-decoration: none;
		cursor: pointer;
	}

.ActivityList {
	overflow: auto;
	height: 200px;
	width: 250px;
	color: #1e293b;
	/* Match input borders */
	border: 1px solid rgba(15,23,42,0.12);
	border-radius: 8px;
	/* Remove heavy elevation */
	box-shadow: inset 0 1px 2px rgba(15,23,42,0.05);
	padding: 5px 10px;
	/* Firefox scrollbar */
	scrollbar-width: thin;
	scrollbar-color: rgba(100,116,139,0.4) #f1f3f6;
}

	/* Chrome / Edge */
	.ActivityList::-webkit-scrollbar {
		width: 8px;
	}

	.ActivityList::-webkit-scrollbar-track {
		background: #f1f3f6;
		border-radius: 8px;
	}

	.ActivityList::-webkit-scrollbar-thumb {
		background: rgba(100,116,139,0.4);
		border-radius: 8px;
		border: 2px solid #f1f3f6;
	}

		.ActivityList::-webkit-scrollbar-thumb:hover {
			background: rgba(100,116,139,0.6);
		}

.SurveyLink {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 999px;
	background: linear-gradient(to bottom, #6f8faa, #5f7f9a);
	border: 1px solid #4f6f89;
	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
}

	.SurveyLink:hover {
		transform: translateY(-1px);
		box-shadow: 0 2px 5px rgba(0,0,0,.2);
	}

.SurveyIcon {
	font-size: 11px;
	opacity: .75;
}
.HeaderTicker {
	position: relative;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	height: 28px;
	line-height: 28px;
}

.HeaderTickerTrack {
	display: inline-block;
	white-space: nowrap;
	padding-left: 100%;
	animation: HeaderTickerScroll 14s linear infinite;
}

	.HeaderTickerTrack span {
		display: inline-block;
		color: red;
		font-size: 125%;
		font-weight: bold;
		padding-right: 100px;
	}

@keyframes HeaderTickerScroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}
/* checkboxes */
#chkUseHTML,
#chkUseHTMLDataOnly {
	margin-right: 6px;
	vertical-align: middle;
	accent-color: #5b7fa3;
	transform: scale(1.05);
}

	/* labels next to them */
	#chkUseHTML + label,
	#chkUseHTMLDataOnly + label {
		margin-right: 10px;
		font-size: 10px;
		color: #333;
		cursor: pointer;
		vertical-align: middle;
	}

		/* optional hover polish */
		#chkUseHTML + label:hover,
		#chkUseHTMLDataOnly + label:hover {
			color: #2c5d86;
		}

.BatchAuthTable {
	background-color: Lavender;
	border-color: Black;
	border-width: 1px;
	border-style: Solid;
	border-collapse: collapse;
}
.BatchAuthCell {
	width: 100%;
	border: 1px solid black;
	font-size: x-small;
	font-family: Arial;
}
.BatchAuthCheckBox {
	border-color: Black;
	border-width: 1px;
	border-style: Solid;
	width: 100%;
}

.ask-skyware-menu-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	height: 100%;
	padding: 0 6px;
	color: #003c73;
	background: transparent;
	border: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	text-transform: none;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	vertical-align: middle;
}

	.ask-skyware-menu-item:link,
	.ask-skyware-menu-item:visited {
		color: #003c73;
		text-decoration: none;
	}

	.ask-skyware-menu-item:hover {
		color: white;
		text-decoration: none;
	}

	.ask-skyware-menu-item:active {
		color: white;
		text-decoration: none;
	}

.ask-skyware-icon {
	width: 17px;
	height: 14px;
	flex: 0 0 auto;
	opacity: 1;
	vertical-align: middle;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.22));
}

.ask-skyware-text {
	color: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	text-transform: none;
}
.TextTicklerIcon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	margin-right: 5px;
	vertical-align: -3px;
	cursor: pointer;
}

	.TextTicklerIcon svg {
		width: 17px;
		height: 17px;
		display: block;
	}

.TextTicklerBubble {
	fill: #ff7a1a;
	stroke: #ff9a3d;
	stroke-width: 0.75;
}

.TextTicklerDot {
	fill: #101929;
}

.TextTicklerIcon:hover .TextTicklerBubble {
	fill: #ff9a3d;
	stroke: #ffb060;
}

.ask-skyware-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.22);
	z-index: 99999;
	display: none;
	cursor: default;
}

.ask-skyware-panel {
	width: 420px;
	max-width: calc(100vw - 32px);
	height: calc(100vh - 80px);
	position: fixed;
	right: 24px;
	top: 40px;
	background: #ffffff;
	color: #1f2933;
	border-radius: 10px;
	border: 1px solid #b8c7d6;
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
	display: flex;
	flex-direction: column;
	font-family: Arial, Helvetica, sans-serif;
	overflow: hidden;
	cursor: default;
}

.ask-skyware-header {
	min-height: 64px;
	padding: 12px 14px 12px 18px;
	background: #f7f9fc;
	color: #003c73;
	border-bottom: 3px solid #6f9fc6;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.ask-skyware-header-left {
	min-width: 0;
	flex: 1;
	padding-right: 8px;
}

.ask-skyware-title-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ask-skyware-header-icon {
	width: 24px;
	height: 18px;
	flex: 0 0 auto;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.22));
}

.ask-skyware-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
	color: #003c73;
}

.ask-skyware-subtitle {
	margin-top: 4px;
	font-size: 12px;
	font-weight: 400;
	color: #506b86;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ask-skyware-close {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border: none;
	border-radius: 50%;
	background: #e8eef5;
	color: #003c73;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	text-align: center;
	padding: 0;
	margin: 0;
	cursor: pointer;
}

	.ask-skyware-close:hover {
		background: #d7e3ef;
		color: #f58220;
	}

	.ask-skyware-close:focus {
		outline: none;
		box-shadow: 0 0 0 2px rgba(15, 79, 143, 0.22);
	}


.ask-skyware-message {
	max-width: 100%;
	margin-bottom: 14px;
	padding: 12px 14px;
	border-radius: 12px;
	line-height: 1.4;
	font-size: 14px;
}

.ask-skyware-message-ai {
	background: #ffffff;
	color: #0b1f33;
	border: 1px solid #c7d8ea;
	box-shadow: 0 2px 6px rgba(20, 50, 80, 0.08);
}

.ask-skyware-message-body {
	white-space: normal;
}

.ask-skyware-messages {
	flex: 1;
	padding: 16px;
	overflow-y: auto;
	background: #eef3f8;
	cursor: default;
	white-space: normal;
	text-transform: none;
	scrollbar-width: thin;
	scrollbar-color: #b8c7d6 #f4f7fb;
}

	/* Chrome / Edge / Safari scrollbar */
	.ask-skyware-messages::-webkit-scrollbar {
		width: 10px;
	}

	.ask-skyware-messages::-webkit-scrollbar-track {
		background: #f4f7fb;
		border-left: 1px solid #d6e0eb;
	}

	.ask-skyware-messages::-webkit-scrollbar-thumb {
		background: #b8c7d6;
		border-radius: 8px;
		border: 2px solid #f4f7fb;
	}

		.ask-skyware-messages::-webkit-scrollbar-thumb:hover {
			background: #8fa5bd;
		}

.ask-skyware-chat-row {
	display: flex;
	width: 100%;
	margin-bottom: 14px;
	white-space: normal;
	text-transform: none;
}

.ask-skyware-chat-row-user {
	justify-content: flex-end;
}

.ask-skyware-chat-row-ai {
	justify-content: flex-start;
}

.ask-skyware-chat-bubble {
	max-width: 86%;
	padding: 11px 13px;
	border-radius: 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.45;
	white-space: normal;
	text-transform: none;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: normal;
	cursor: default;
}

.ask-skyware-chat-bubble-user {
	background: #e3f0fb;
	color: #003f73;
	border: 1px solid #b7d4ee;
}

.ask-skyware-chat-bubble-ai {
	background: #ffffff;
	color: #1f2933;
	border: 1px solid #d6e0eb;
	border-bottom-left-radius: 4px;
}

.ask-skyware-ai-name {
	margin-bottom: 6px;
	color: #c89b3c;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: none;
}

.ask-skyware-answer-text {
	margin-bottom: 9px;
	color: inherit;
	font-size: 13px;
	line-height: 1.45;
	white-space: normal;
	text-transform: none;
	overflow-wrap: break-word;
	word-wrap: break-word;
	text-align: left;
}

	.ask-skyware-answer-text:last-of-type {
		margin-bottom: 0;
	}

.ask-skyware-source {
	margin-top: 10px;
	padding-top: 8px;
	border-top: 1px solid #d6e0eb;
	color: #506b86;
	font-size: 12px;
	line-height: 1.35;
	white-space: normal;
	text-transform: none;
}

.ask-skyware-suggestions {
	padding: 10px 12px;
	background: #ffffff;
	border-top: 1px solid #d6e0eb;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

	.ask-skyware-suggestions button {
		padding: 7px 10px;
		background: #eef4fa;
		color: #003c73;
		border: 1px solid #c9d8e6;
		border-radius: 16px;
		font-size: 12px;
		font-weight: 600;
		cursor: pointer;
	}

		.ask-skyware-suggestions button:hover {
			background: #dfeaf4;
			border-color: #6f9fc6;
		}

.ask-skyware-input-area {
	padding: 12px;
	background: #ffffff;
	border-top: 1px solid #d6e0eb;
	display: flex;
	align-items: flex-end;
	gap: 10px;
}

.ask-skyware-input {
	flex: 1;
	min-height: 42px;
	max-height: 120px;
	padding: 10px 12px;
	resize: vertical;
	background: #ffffff;
	color: #1f2933;
	border: 1px solid #b8c7d6;
	border-radius: 8px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.35;
	cursor: text;
}

	.ask-skyware-input::placeholder {
		color: #7d8fa3;
	}

	.ask-skyware-input:focus {
		outline: none;
		border-color: #0f4f8f;
		box-shadow: 0 0 0 2px rgba(15, 79, 143, 0.14);
	}

	.ask-skyware-input:disabled {
		background: #eef2f6;
		color: #52606d;
		border-color: #c7d1db;
		cursor: wait;
		opacity: 1;
		font-style: italic;
	}

.ask-skyware-send {
	height: 42px;
	padding: 0 16px;
	background: #0f4f8f;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

	.ask-skyware-send:hover:not(:disabled) {
		background: #1262ad;
	}

	.ask-skyware-send:disabled {
		background: #d7dde4;
		color: #7a8794;
		border: 1px solid #c4ccd5;
		cursor: not-allowed;
		opacity: 1;
	}
.ask-skyware-dots::after {
	content: '';
	animation: askSkywareDots 1.5s infinite;
}

@keyframes askSkywareDots {
	0% {
		content: '';
	}

	25% {
		content: '.';
	}

	50% {
		content: '..';
	}

	75% {
		content: '...';
	}

	100% {
		content: '';
	}
}

.ask-skyware-source-link {
	display: inline-block;
	margin-top: 10px;
	padding: 4px 12px;
	border-radius: 999px;
	border: 1px solid #7fb2e5;
	color: #005a9e;
	background: #f2f8ff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
}

	.ask-skyware-source-link:hover {
		color: #003f73;
		background: #e2f0ff;
		border-color: #4f95d8;
		text-decoration: none;
	}

.ask-skyware-input-status {
	margin-top: 6px;
	font-size: 14px;
	font-weight: 600;
}

.ask-skyware-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 6px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	vertical-align: -2px;
	animation: askSkywareSpin .8s linear infinite;
}

label.StaySearchCell {
	font-family: SkywareFont;
	font-size: 12px;
	padding-right: 10px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

	label.StaySearchCell input[type="checkbox"] {
		margin: 0;
	}


.ActivityHeader {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 8px 0 12px 0;
	padding: 6px 12px;
	border-bottom: 1px solid #c7d8e6;
	background: #f8fbfd;
}

.ActivityTitleBlock {
	min-width: 0;
	flex: 1;
}

.ActivityTitle {
	font-size: 18px;
	font-weight: 400;
	color: #111;
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ActivityToolbar {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
}

.IconButton {
	width: 22px;
	height: 22px;
	padding: 1px;
	border: 1px solid transparent;
	border-radius: 2px;
	background: transparent;
	cursor: pointer;
	opacity: .8;
}

	.IconButton:hover {
		border-color: #b8c9d8;
		background: #eef5fa;
		opacity: 1;
	}

	.IconButton img {
		width: 15px;
		height: 15px;
		display: block;
	}

/* Button row directly under the title */
.ActivityButtonBar {
	background-color: #d6d6d6;
	text-align: center;
	height: 36px;
	line-height: 36px;
	white-space: nowrap;
	margin: 0 0 10px 0;
	padding: 0 12px;
	box-sizing: border-box;
}

	/* Keep the old-style buttons from looking too cramped */
	.ActivityButtonBar input[type="button"],
	.ActivityButtonBar input[type="submit"],
	.ActivityButtonBar button,
	.ActivityButtonBar a {
		margin: 0 8px;
		vertical-align: middle;
	}

	/* If buttons are image links or anchors, keep them centered nicely */
	.ActivityButtonBar img {
		vertical-align: middle;
		border: 0;
	}