/** Shopify CDN: Minification failed

Line 223:22 The "+" operator only works if there is whitespace on both sides

**/
/* ==========================================================================
   Variables
   ========================================================================== */

:root {
	--color-dark: #163546;
	--color-tan: #F9F8F6;
	--color-red: #E36261;
	--color-light-blue: #A5CDD8;
	--color-white: #FFF;
}



/* ==========================================================================
   Links
   ========================================================================== */

a {
	text-decoration: underline;
	transition: all .3s ease;
}

a:hover,
a:focus {
	color: #757575;
	text-decoration: none;
}

a[href^="http"]:empty::before { content: attr(href); }



/* ==========================================================================
   Headings
   ========================================================================== */

.title span {
	display: block;
	font-size: 1em;
}

.body-text { font-family: var(--font-body-family); }

/* ==========================================================================
   General
   ========================================================================== */

html { scroll-behavior: smooth; }

@media screen and (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

p {
	margin: 0;
	padding: .8em 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

/* Clearfix */
hr:before,
hr:after {
	content: " ";
	display: table;
}

hr:after { clear: both; }

blockquote {
	padding: 25px;
	margin: 25px 0;
	border-radius: 0 30px 30px 30px;
	background: #F8F8F8;
	font-size: 1.1em;
	font-style: italic;
}

img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
	-ms-interpolation-mode: bicubic;
}

/* Change selection color */
::-moz-selection {
	background: var(--color-light-blue);
	text-shadow: none;
}

::selection {
	background: var(--color-light-blue);
	text-shadow: none;
}

/* General fixes */
.no-padding-top { padding-top: 0 !important; }
.no-padding-right { padding-right: 0 !important; }
.no-padding-bottom { padding-bottom: 0 !important; }
.no-padding-left { padding-left: 0 !important; }
.no-padding { padding: 0 !important; }

.no-margin-top { margin-top: 0 !important; }
.no-margin-right { margin-right: 0 !important; }
.no-margin-bottom {margin-bottom: 0 !important; }
.no-margin-left { margin-left: 0 !important; }
.no-margin { margin: 0 !important; }

audio,
canvas,
iframe,
img,
svg,
video { vertical-align: middle; }

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

.display-flex { display: flex; }

/* Text Alignment */
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }

@media print,
screen and (min-width: 768px) {
	.medium-text-left { text-align: left; }
	.medium-text-right { text-align: right; }
	.medium-text-center { text-align: center; }
	.medium-text-justify { text-align: justify; }
}

@media print,
screen and (min-width: 992px) {
	.large-text-left { text-align: left; }
	.large-text-right { text-align: right; }
	.large-text-center { text-align: center; }
	.large-text-justify { text-align: justify; }
}

/* Overwrite RTE styles */
.rte ul,
.rte ol {
	list-style-position: initial;
	padding-left: 40px;
	margin: 10px 0;
}

.rte ul li,
.rte ol li { padding: 5px 0; }


/* ==========================================================================
   Forms
   ========================================================================== */

input::-webkit-input-placeholder {
	color: var(--color-dark);
	opacity: 1;
}

::-moz-placeholder {
	color: var(--color-dark);
	opacity: 1;
}

::-ms-placeholder {
	color: var(--color-dark);
	opacity: 1;
}

::placeholder {
	color: var(--color-dark);
	opacity: 1;
}

/* Firefox-specific hack to override awkward fieldset styling */
.-moz- fieldset { display: table-cell; }

/* Allow only vertical resizing of textareas. */
textarea { resize: vertical; }

.form-input,
.form-input--white {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1.4rem;
	letter-spacing: .5px;
	font-family: var(--font-body-family);
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-dark);
	background-color: var(--color-white);
	background-clip: padding-box;
	border: 1px solid #FFF;
	border-radius: var(--inputs-radius);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 4.5rem;
	min-height: calc(var(--inputs-border-width)* 2);
	min-width: calc(7rem +(var(--inputs-border-width)* 2));
}

select.form-input {
	padding: .375rem 2.25rem .375rem .75rem;
	-moz-padding-start: calc(0.75rem - 3px);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230A3051' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 16px 12px;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-input:focus {
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.form-input--white {
	background-color: #FFF;
}

/* Remove number arrows in number fields */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

[type=number] { -moz-appearance: textfield; }

.help-text {
	margin-top: -.5rem;
	font-size: .8125rem;
	font-style: italic;
}

/* ===== Single Input Forms ===== */

.single-input {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
	width: 100%;
}

.single-input--white-bg {
	background: #FFF;
	color: var(--color-dark);
}

.single-input--border {
	border: 1px var(--color-dark) solid;
	padding: 2px;
}

	.single-input__label {
		margin: 0;
		min-width: 30%;
		padding-left: 10px;
		font-weight: normal;
	}

	.single-input__input,
	.single-input__select {
		border: 0;
		margin: 0;
		border-radius: 0;
		min-width: 0;
		background-color: transparent;
		box-shadow: none;
		padding: 10px 10px 10px 20px;
	}

	.single-input__select {
		font-family: var(--font-second);
		font-size: 1.3em;
	}

	.single-input__input:focus,
	.single-input__select:focus {
		box-shadow: 0 0;
		border-color: transparent;
		outline: none;
	}

	.single-input__optgroup { font-size: .7em; }

	.single-input .button {
		flex-grow: 1;
		box-shadow: 0 0;
	}

	.single-input__submit-image {
		max-width: 44px;
		/* Include padding */
		padding: 7px;
		background-color: var(--color-dark)
	}

@media (min-width: 992px) {
	.single-input { flex-wrap: nowrap; }
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.button {
	display: inline-flex;
	margin: 0;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	font-family: var(--font-body-family);
	font-size: 1.3em;
	background: var(--color-red);
	color: var(--color-white);
	border: 1px solid var(--color-red);
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	transition: all .3s ease;
	min-width: auto;
}

.button::before,
.button::after { display: none; }

.button--outline {
	background: transparent;
	color: var(--color-red);
}

.button--full-width {
	width: 100%;
	padding-left: 5px !important;
	padding-right: 5px !important;
}

.button:hover {
	background: var(--color-dark);
	color: var(--color-white);
}



/* ==========================================================================
   Rating Stars
   ========================================================================== */

div.stars {
	--percent: calc(var(--rating) / 5 * 100%);
	font-size: 32px;
	font-family: Times;
	display: block;
	padding: 10px 0;
	position: relative;
	line-height: 1
}

.stars::before {
	content: "★★★★★";
	display: inline-block;
	background: -webkit-gradient(linear, left top, right top, from(var(--star-color)), to(rgba(175, 182, 194, .3)));
	background: linear-gradient(90deg, var(--star-color) var(--percent), rgba(175, 182, 194, .3) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-top: 7px
}


/* ==========================================================================
   Footer
   ========================================================================== */

footer.footer {
	border-top: 0;
	background-color: var(--background-color);
	color: var(--font-color);
	margin-top: 0;
}

	.footer.footer--no-padding-top { padding-top: 0; }

	.footer a,
	.footer .footer-block__details-content .list-menu__item--link { color: var(--font-color); }

	.footer h3 {
		font-family: var(--font-addtl-family-1);
		margin: 0 0 10px;
		font-size: 1.3em;
	}

	.footer a:hover,
	.footer .footer-block__details-content .list-menu__item--link:hover {
		color: var(--font-color);
		text-decoration: underline;
	}

	.footer .footer-block--newsletter {
		padding: 3rem 0;
		margin-top: 0;
		background: var(--newsletter-background-color);
	}

		.footer .newsletter-inline-block { padding-top: 0; }

		.footer-block__heading { color: var(--font-color); }
		.footer-block__newsletter-form {
			display: flex;
			gap: 5px;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			margin: 0 auto;
			width: 100%;
		}

		.grecaptcha-badge { display: none !important; }

	.modal-newsletter .modal__content,
	.modal-contact .modal__content {
		width: 50%;
		height: auto;
		max-height: 50%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		right: auto;
		bottom: auto;
		padding: 20px 0;
	}

	.footer__content-top { padding-top: 5rem; }

		footer .list-social__link { padding: 5px; }

			.footer .list-social__item .svg-wrapper {
				width: auto;
				height: auto;
			}

				.footer .list-social__item svg.icon {
					width: 25px;
					height: 25px;
				}

		.footer__brand-bar {
			text-align: center;
			margin: 0 auto;
			padding: 50px 0;
		}

		.footer__logo {
			width: 75px;
			height: 75px;
		}

		h3.footer__brand-bar--heading {
			margin-top: 15px;
			color: rgba(225, 235, 238, .25);
			font-size: .85em;
		}

		.brand-bar__nav {
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
			margin: 0 auto;
			padding: 0;
			list-style: none;
		}

			.brand-bar__nav-item {
				margin: 5px 0;
				padding: 0;
			}

			.brand-bar__nav-link {
				padding: 10px;
				transition: all .3s ease;
				height: 100%;
			}

				.brand-bar__logo {
					width: 100px;
					max-height: 20px;
				}

			.brand-bar__nav-link:hover {
				opacity: .8;
				background: rgba(0, 0, 0, .1);
			}

	.footer__content-bottom.footer__legal { padding: 15px 0; }

	.footer__content-bottom-wrapper--center { align-items: center; }

		.footer__legal .footer__copyright {
			margin-top: 0;
			display: flex;
			gap: 20px;
			width: 100%;
		}

		.policies li:first-child:before { display: none; }

		.footer__content-bottom-wrapper .list-social { flex-wrap: nowrap; }

@media (min-width: 768px) {
	.footer__blocks-wrapper .footer-block.grid__item { width: var(--footer-block-width); }

	.footer-block__newsletter-form {
		flex-direction: row;
		max-width: 70%;
		width: auto;
	}

	.newsletter-inline-block .footer-block__newsletter-form { max-width: none; }

	.footer-block__brand-info,
	.footer-block__heading { text-align: var(--text-align); }

	.brand-bar__nav-item { margin: 0 5px; }

	.brand-bar__logo {
		width: 115px;
		max-height: 40px;
	}
}


/* ==========================================================================
   Helper Styles
   ========================================================================== */

.hidden,
[hidden] { display: none !important }

.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	white-space: inherit;
	width: auto
}

.invisible { visibility: hidden }

.clearfix::after,
.clearfix::before {
	content: " ";
	display: table
}

.clearfix::after { clear: both }
