/* Variables */

:root {

	--light-blue-color: #e2f5ff;
	--off-white-color: #fdfcfc;
	--dark-orange-color: #d24a00;

	--base-font-stack: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, sans-serif;

}

@keyframes fade-in-animation {
	0% { opacity: 0; }
	100% { opacity: 1; }
}



/* Basics */

* {
	font-family: var(--base-font-stack);
}

html,
.cwf-body {
	overflow-x: hidden;
	background-color: var(--off-white-color);
}

img {
	user-select: none;
}

.cwf-block-container {
	width: 100% !important;
	min-height: 100% !important;
	padding: 66px 8%;
	background-color: var(--off-white-color);
}

.cwf-block-container > * {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.cwf-block-container * {
	background-color: transparent;
}

.cwf-block-header {
	margin-bottom: 46px;
	font-weight: 600;
}

.cwf-block-divider {
	width: 82%;
}

.cwf-list-status-text {
	max-width: 500px;
	font-size: 15pt;
	color: #777;
}

.cwf-info-card {
	padding: 23px;
	margin-bottom: 20px;
	border-radius: 12px;
	animation-name: fade-in-animation;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.2s;
}

.cwf-action-button {
	height: 46px;
	padding: 10px 28px;
	border-radius: 16px;
	font-weight: 500;
	background-color: #d8d8d8 !important;
	border-color: #d8d8d8 !important;
	color: #000;
}

.cwf-action-button:hover,
.cwf-action-button:focus {
	background-color: #cacaca !important;
	border-color: #cacaca !important;
}

.cwf-details-toggle {
	height: 26px;
	vertical-align: bottom;
	transition: filter 0.15s ease-in-out;
}

.cwf-details-toggle:hover {
	-webkit-filter: brightness(88%);
	filter: brightness(88%);
}

.cwf-list-group {
	margin-top: 8px;
	margin-bottom: 40px;
}

.cwf-list-group > * {
	padding-top: 22px;
	padding-bottom: 22px;
	border-bottom-color: transparent;
	text-align: left;
}

.cwf-list-group a {
	color: var(--dark-orange-color);
}

.cwf-list-group a:hover {
	text-decoration: underline;
	color: #9a3600;
}

.cwf-full-page-list-group > * {
	padding-top: 44px;
	padding-bottom: 44px;
}

.cwf-full-page-list-section-header {
	margin-bottom: 32px;
	text-align: right;
	font-size: 18.5pt;
	font-weight: 600;
}

.cwf-full-page-list-section-content > :not(:last-child) {
	margin-bottom: 24px;
}

.cwf-full-page-list-section-content > :last-child {
	margin-bottom: 4px;
}

.cwf-error-page-message {
	max-width: 400px;
	margin-top: -20px;
}



/* Navbar */

.cwf-navbar {
	background-color: var(--light-blue-color);
}

.cwf-navbar-brand {
	font-weight: 600;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.cwf-navbar-brand-logo-graphic {
	width: 32px;
	margin: -3px 10px auto auto;
}

@media (max-width: 859px) {
	.cwf-navbar-brand-logo-graphic {
		display: none;
	}
}

.cwf-navbar-item {
	font-weight: 600;
}

.cwf-navbar-item > .nav-link {
	color: #606060 !important;
}

.cwf-navbar-item.active > .nav-link {
	color: var(--dark-orange-color) !important;
}



/* Price Lists */

.cwf-price-list > * {
	margin: 0 auto;
}

.cwf-price-list-card {
	line-height: 28px;
	font-size: 13.5pt;
	font-weight: 500;
}

.cwf-price-list-to-text {
	margin: auto 7px;
	color: #777;
}

.cwf-price-list-plane-glyph {
	height: 24px;
}

.cwf-price-list-price {
	font-size: 18pt;
	color: var(--dark-orange-color);
}

.cwf-price-list-dollar-sign {
	vertical-align: top;
	margin-right: 2px;
	font-size: 13.5pt;
	font-weight: 400;
}

.cwf-price-list-details {
	line-height: normal;
	text-align: left;
	font-size: 11pt;
	font-weight: 400;
}

.cwf-price-list-disclaimer-text {
	width: 90%;
	max-width: 450px;
	margin: 48px auto 26px auto;
	font-size: 10.5pt;
}



/* Forms */

.cwf-form-card {
	height: 100% !important;
	padding: 26px 30px;
	border-radius: 12px;
}

.cwf-form-checkmark-glyph {
	width: 50px;
	margin: 5px auto 20px auto;
}

.cwf-form-header {
	margin: 2px auto 10px auto;
	font-weight: 600 !important;
}

.cwf-form-subheader {
	margin-bottom: 26px;
}

.cwf-form-input {
	margin-top: 12px !important;
	border-radius: 6px;
	color: #000 !important;
}

.cwf-form-submit-button {
	margin: auto auto 30px auto;
}



/* “About Us” Page */

.cwf-main-page-body {
	background-color: var(--light-blue-color);
}

.cwf-main-page-header-container {
	padding: 2% 0% 2% 8%;
}

.cwf-main-page-header-title {
	margin-bottom: 15px;
	font-weight: 600;
	color: #004a76;
}

.cwf-main-page-specials-button {
	margin-bottom: 20px;
}

.cwf-contact-info-container {
	min-height: 200px;
	line-height: 30px;
	font-weight: 500;
	background-color: transparent;
}

.cwf-contact-info-item,
.cwf-contact-info-item:hover,
.cwf-contact-info-item:focus {
	display: flex;
	align-items: center;
	line-height: 28px;
	font-size: 18px;
	text-decoration: none;
	color: #000;
}

.cwf-contact-info-glyph {
	width: 28px;
	height: auto;
	margin-right: 20px;
}

.cwf-contact-call-button {
	margin-left: 20px;
	padding: 10px 22px;
	border-radius: 14px;
}



/* “Book a Special or Get a Quote” Section */

.cwf-booking-info-list-group > :first-child {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.cwf-booking-info-list-group > :last-child {
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.cwf-contact-form-submit-button {
	margin-top: 30px;
}



/* “Your Billing Information” Login Form */

.cwf-billing-login-form {
	max-width: 400px;
}

.cwf-billing-login-form-submit-button {
	margin-top: 16px;
}

.cwf-card-info-form-input {
	font-family: "IBM Plex Mono", var(--base-font-stack);
}

.cwf-billing-login-form .cwf-card-number-form-input {
	padding-right: calc(1.5em + 0.75rem);
	background-repeat: no-repeat;
	background-position: right calc(0.5em + 0.1875rem) center;
	background-size: 31.5px 20px;
}

::placeholder {
	font-family: var(--base-font-stack);
	opacity: 1;
}

::-webkit-input-placeholder {
	font-family: var(--base-font-stack);
	opacity: 1;
}

::-moz-placeholder {
	font-family: var(--base-font-stack);
	opacity: 1;
}

:-moz-placeholder {
	font-family: var(--base-font-stack);
	opacity: 1;
}

:-ms-input-placeholder {
	font-family: var(--base-font-stack);
	opacity: 1;
}



/* “Your Billing Information” Editing Interface */

.cwf-billing-info-form-row:first-child > * {
	padding-top: 2px;
}

.cwf-billing-info-form-row > .col-auto:first-child {
	padding-left: 13px;
}

.cwf-billing-info-form-row .form-control-plaintext {
	padding: 0px;
	font-size: 19px;
}

.cwf-billing-info-save-button {
	margin-bottom: 12px;
	background-color: #b2ebbf !important;
	border-color: #b2ebbf !important;
}

.cwf-billing-info-save-button:hover,
.cwf-billing-info-save-button:focus {
	background-color: #93e3a5 !important;
	border-color: #93e3a5 !important;
}

.cwf-billing-info-card-glyph {
	width: 44px;
	height: auto;
	margin-bottom: -27px;
	margin-right: 7px;
}

.cwf-billing-info-card-glyph-editing {
	margin-bottom: -34px;
	margin-left: -8px;
}

.cwf-billing-info-card-expiration-guide-text {
	margin-top: 15px;
	margin-right: 6px;
	font-weight: 500;
	color: #777;
}

.cwf-billing-info-account-management-buttons-col {
	margin: 22px auto;
	text-align: center;
}

.cwf-billing-info-account-management-buttons-col .cwf-action-button:not(:last-child) {
	margin-bottom: 18px;
}

.cwf-billing-info-danger-color-button {
	background-color: #f5c1c1 !important;
	border-color: #f5c1c1 !important;
}

.cwf-billing-info-danger-color-button:hover,
.cwf-billing-info-danger-color-button:focus {
	background-color: #fdacac !important;
	border-color: #fdacac !important;
}



/* “All Customer Billing Information” Admin Interface */

.cwf-billing-admin-customer-list {
	list-style-type: none;
	padding: 0px;
}

.cwf-billing-admin-controls-row {
	margin-bottom: 44px;
	align-items: center;
}

.cwf-billing-admin-controls-row .cwf-action-button {
	margin-top: 12px;
}

.cwf-billing-admin-filter-customers-input {
	height: 44px;
}

.cwf-billing-admin-customer-info-card {
	text-align: left;
}

.cwf-billing-admin-customer-email-address {
	font-weight: 500;
	color: #777;
}

.cwf-billing-admin-card-details-row:not(:last-child) {
	margin-bottom: 16px;
}

.cwf-billing-admin-card-glyph {
	margin-top: -3px;
	width: 40px;
	height: auto;
}

.cwf-billing-admin-card-info {
	margin-left: 12px;
	font-family: "IBM Plex Mono", var(--base-font-stack);
}

.cwf-billing-admin-card-expiration-guide-text {
	margin-left: 2px;
	margin-right: -2px;
	font-size: 14px;
	font-weight: 500;
	color: #777;
}

.cwf-billing-admin-card-cvv {
	margin-left: 36px;
	padding: 6px 9px;
	border-radius: 12px;
	background-color: #f0f0f0;
}



/* Modal Dialogs */

.cwf-modal-dialog {
	border: none !important;
	border-radius: 12px;
}

.cwf-modal-dialog-header {
	border-bottom: none;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	background-color: var(--light-blue-color);
}

.cwf-modal-dialog-header * {
	font-weight: 600;
}

.cwf-modal-dialog-header,
.cwf-modal-dialog-body {
	padding-left: 22px;
	padding-right: 22px;
}

.cwf-modal-dialog-body {
	padding-bottom: 6px;
}

.cwf-modal-dialog-body a {
	color: var(--dark-orange-color);
}

.cwf-acknowledgements-modal-link {
	position: absolute;
	right: 16px;
	padding-bottom: 16px;
	font-size: 10px;
	color: #c4c4c4;
}

.cwf-acknowledgements-modal-link:hover {
	color: #a7a7a7;
	text-decoration: none;
}



/* Compact Mobile–Only Styles */

@media (max-width: 335px) {

	.cwf-navbar-brand {
		font-size: 18px;
	}

	.cwf-contact-info-item:last-child {
		font-size: 14px !important;
	}

	.cwf-card-number-edit-input.form-control-plaintext {
		width: 140px !important;
	}

	.cwf-billing-admin-card-info {
		font-size: 13.5px;
	}

	.cwf-billing-admin-card-cvv {
		margin-left: 33px;
	}

}



/* Mobile-Only Styles */

@media (max-width: 767px) {

	.cwf-full-page-list-section-header {
		text-align: center;
	}

	.cwf-navbar + .cwf-block-container {
		padding-top: 50px;
	}

	.cwf-navbar {
		padding: 16px;
	}

	.cwf-navbar-brand {
		margin-left: 3%;
	}

	.cwf-navbar-toggler {
		margin-right: 3%;
	}

	.cwf-navbar-item {
		margin-left: 3%;
		line-height: 1.8;
	}

	.cwf-navbar-item:first-child {
		margin-top: 12px;
	}

	.cwf-price-list-card {
		text-align: center;
	}

	.cwf-price-list-primary-col {
		margin-bottom: 12px;
	}

	.cwf-price-list-details-toggle {
		margin-left: 50px;
	}

	.cwf-price-list-details {
		margin-top: 20px;
		text-align: center;
	}

	.cwf-form-input {
		max-height: 800px;
	}

	.cwf-form-submit-button {
		width: 100%;
	}

	.cwf-main-page-header-container {
		text-align: right;
	}

	.cwf-main-page-header-text-container {
		margin-top: 25px;
		padding-right: 12%;
		text-align: left;
	}

	.cwf-main-page-header-mask {
		width: 75%;
		max-width: 320px;
		height: 75%;
		margin-bottom: 14px;
	}

	.cwf-contact-info-item {
		justify-content: left;
		padding-left: 30px;
		padding-right: 30px;
	}

	.cwf-contact-info-item:not(:last-child) {
		padding-right: 0px;
		margin-bottom: 36px;
	}

	.cwf-contact-info-item:last-child {
		font-size: 12pt;
	}

	.cwf-booking-info-list-group {
		padding-right: 0px;
	}

	.cwf-billing-info-list-section-content {
		margin-top: -16px;
	}

	.cwf-billing-info-action-buttons-col {
		margin-top: 36px;
	}

	.cwf-billing-info-action-buttons-col .cwf-action-button,
	.cwf-billing-info-account-management-buttons-col .cwf-action-button,
	.cwf-billing-admin-controls-row .cwf-action-button {
		width: 100%;
	}

	.cwf-card-number-edit-input.form-control-plaintext {
		width: 184px;
	}

	.cwf-card-expiration-edit-input.form-control-plaintext {
		width: 124px;
	}

	.cwf-billing-admin-customer-info-card-col:not(:last-child) {
		margin-bottom: 34px;
	}

	.cwf-billing-admin-customer-name {
		margin-bottom: 5px;
	}

}



/* Desktop-Only Styles */

@media (min-width: 768px) {

	.cwf-full-page-list-section-header {
		padding-right: 40px;
		text-align: right;
	}

	.cwf-full-page-list-section-content .form-row:first-child {
		margin-top: -12px;
	}

	.cwf-billing-info-edit-button,
	.cwf-billing-info-save-button,
	.cwf-billing-info-cancel-button {
		width: 108px;
	}

	.cwf-navbar {
		padding: 26px 40px;
	}

	.cwf-navbar-item {
		margin-left: 10px;
		padding-left: 5px;
		padding-right: 5px;
		border-radius: 16px;
		transition: background-color 0.04s ease-in-out;
	}

	.cwf-navbar-item:hover {
		background-color: rgb(0, 0, 0, 0.06);
	}

	.cwf-price-list-card {
		text-align: right;
	}

	.cwf-price-list-destination-city {
		text-align: left;
	}

	.cwf-price-list-details-toggle {
		margin-left: 40px;
		margin-right: 24px;
	}

	.cwf-price-list-details {
		margin: 20px 20px 0px 20px;
	}

	.cwf-form-input {
		max-height: 400px;
	}

	.cwf-form-submit-button {
		min-width: 114px;
	}

	.cwf-main-page-header-container {
		display: flex;
		justify-content: space-between;
		margin-top: 42px;
		padding-bottom: 100px;
	}

	.cwf-main-page-header-text-container {
		max-width: 600px;
	}

	.cwf-main-page-header-title {
		font-size: 31pt;
	}

	.cwf-main-page-header-mask {
		width: 42%;
		height: 42%;
		max-width: 420px;
		margin-top: 60px;
	}

	.cwf-contact-info-item {
		justify-content: center;
	}

	.cwf-contact-form {
		max-width: 47%;
		margin-left: auto;
	}

	.cwf-billing-info-sign-out-button {
		width: 247px;
	}

	.cwf-billing-info-delete-cancel-button,
	.cwf-billing-info-delete-confirm-button {
		min-width: 197px !important;
	}

	.cwf-billing-admin-customer-info-card-col {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

}



/* 'lg'–Only Styles */

@media (min-width: 992px) {

	.cwf-main-page-header-container {
		padding-bottom: 48px;
	}

	.cwf-main-page-header-mask {
		margin-top: 0px;
	}

}



/* Extra Wide Viewport–Only Styles */

@media (min-width: 1300px) {

	.cwf-navbar {
		padding-left: 18% !important;
		padding-right: 18% !important;
	}

	.cwf-main-page-header-container {
		padding-left: 21%;
	}

}