html, body {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}
.link-group-editor {
	
}
.link-group-editor-parameters-box {
	box-sizing: border-box;
	border: 0.1rem solid #D1D1D1;
}
.link-group-editor-parameters-box-padding {
	padding: 1rem;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
.reset applet, .reset object, .reset iframe,
h1, .reset h2, .reset h3, .reset h4, .reset h5, .reset h6, .reset p, .reset blockquote, .reset pre,
a, .reset abbr, .reset acronym, .reset address, .reset big, .reset cite, .reset code,
del, .reset dfn, .reset em, .reset img, .reset ins, .reset kbd, .reset q, .reset s, .reset samp,
small, .reset strike, .reset strong, .reset sub, .reset sup, .reset tt, .reset var,
b, .reset u, .reset i, .reset center,
dl, .reset dt, .reset dd, .reset ol, .reset ul, .reset li,
fieldset, .reset form, .reset label, .reset legend,
table, .reset caption, .reset tbody, .reset tfoot, .reset thead, .reset tr, .reset th, .reset td,
article, .reset aside, .reset canvas, .reset details, .reset embed, .reset 
figure, .reset figcaption, .reset footer, .reset header, .reset hgroup, .reset 
menu, .reset nav, .reset output, .reset ruby, .reset section, .reset summary,
time, .reset mark, .reset audio, .reset video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
.reset article, .reset aside, .reset details, .reset figcaption, .reset figure, .reset 
footer, .reset header, .reset hgroup, .reset menu, .reset nav, .reset section {
	display: block;
}
.reset ol, .reset ul {
	list-style: none;
}
.reset blockquote, .reset q {
	quotes: none;
}
.reset blockquote:before, .reset blockquote:after,
.reset q:before, .reset q:after {
	content: '';
	content: none;
}
.reset table {
	border-collapse: collapse;
	border-spacing: 0;
}
.image.background-cover {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.image.background-contain {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.image.background-center {
	background-position: center center;
	background-repeat: no-repeat;
}
.image.background-top-left {
	background-position: top left;
	background-repeat: no-repeat;
}
.image.background-contain-bottom-left {
	background-position: bottom left;
	background-repeat: no-repeat;
	background-size: contain;
}
.full-size {
	width: 100%;
	height: 100%;
}
.full-width {
	width: 100%;
}
.full-height {
	height: 100%;
}
.centered-block {
	margin: auto;
}
.absolute-container {
	position: relative;
}
.position-relative {
	position: relative;
}
.position-absolute {
	position: absolute;
}
.absolute-overlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.fixed-overlay {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.absolute-for-transform {
	position: absolute;
	left: 0;
	top: 0;
}
.absolute-right {
	position: absolute;
	right: 0;
}
.no-pointer-events {
	pointer-events: none;
}
.all-pointer-events {
	pointer-events: all;
}
.cursor-pointer {
	cursor: pointer;
}
.display-block {
	display: block;
}
.display-inline {
	display: inline;
}
.display-inline-block {
	display: inline-block;
}
.display-contents {
	display: contents;
}
.display-none {
	display: none;
}
.no-overflow {
	overflow: hidden;
}
.float-right {
	float: right;
}
.float-left {
	float: left;
}
.clear-both {
	clear: both;
}
.clear-left {
	clear: left;
}
.clear-right {
	clear: right;
}
.no-margins {
	margin: 0;
}
.no-paddings {
	padding: 0;
}
.hidden-space {
	width: 0;
	display: inline-block;
}
.layer-order-high {
	z-index: 100;
}
.overflow-visible {
	overflow: visible;
}
.overflow-hidden {
	overflow: hidden;
}
.overflow-auto {
	overflow: auto;
}
.border-box-sizing {
	box-sizing: border-box;
}
a.custom-styled-link {
	text-decoration: none;
	color: inherit;
}
.transform-origin-top-center {
	transform-origin: center top;
}
.turned-180 {
	transform: rotate(180deg);
}
.ease-out-transformations {
	transition-property: transform;
	transition: 0.3s;
	transition-timing-function: ease-out;
}
.full-size-iframe-container iframe {
	width: 100%;
	height: 100%;
}
@media print {
	.no-print, .no-print * {
		display: none !important;
	}
}
.blur-light-overlay {
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	background-color: rgba(255, 255, 255, 0.7);
}
.fit-content-min-width {
	min-width: fit-content;
}
.fit-content-width {
	width: fit-content;
}
.flex {
	display: flex;
}
.flex-row {
	display: flex;
	flex-direction: row;
}
.flex-column {
	display: flex;
	flex-direction: column;
}
.flex-row.justify-between,
.flex-column.justify-between {
	justify-content: space-between;
}
.flex-row.justify-center,
.flex-column.justify-center {
	justify-content: center;
}
.flex-row.justify-end,
.flex-column.justify-end {
	justify-content: flex-end;
}
.flex-row.align-start,
.flex-column.align-start {
  align-items: flex-start;
}
.flex-row.align-end,
.flex-column.align-end {
  align-items: flex-end;
}
.flex-row.vertically-center-items,
.flex-column.vertically-center-items {
	align-items: center;
}
.flex-row .flex-row-item:first-of-type {
	margin-left: 0;
}
.flex-row .flex-row-item:last-of-type {
	margin-right: 0;
}
.flex-row.singles > .flex-row-item {
	width: 100%;
}
.flex-row.halfs > .flex-row-item {
	width: 50%;
}
.flex-row > .flex-row-item.half {
	width: 50%;
}
.flex-row.thirds > .flex-row-item,
.flex-row-item.third {
	width: 33.33%;
}
.flex-row.quarters > .flex-row-item {
	width: 25%;
}
.flex-row > .flex-row-item.quarter {
	width: 25%;
}
.flex-column.halfs > .flex-column-item {
	height: 50%;
}
.flex-row .flex-row-item .reset-flex-row-item-size .flex-row-item {
	width: initial;
}
.flex-column.all-grow .flex-column-item {
	height: 0%;
}
.flex-column .flex-column-item:first-of-type {
	margin-top: 0;
}
.flex-column .flex-column-item:last-of-type {
	margin-bottom: 0;
}
.flex-vertical-line {
	width: 0.1rem;
	flex-grow: 0;
	flex-shrink: 0;
}
.flex-horizontal-line {
	height: 0.1rem;
	flex-grow: 0;
	flex-shrink: 0;
}
.flex-no-wrap {
	flex-wrap: nowrap;
}
.flex-no-resize {
	flex-grow: 0;
	flex-shrink: 0;
}
.flex-resize {
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row-item.width-90 {
	width: 90%;
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row-item.width-80 {
	width: 80%;
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row-item.width-70 {
	width: 70%;
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row-item.width-60 {
	width: 60%;
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row-item.width-50 {
	width: 50%;
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row-item.width-40 {
	width: 40%;
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row-item.width-30 {
	width: 30%;
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row-item.width-20 {
	width: 20%;
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row-item.width-10 {
	width: 10%;
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row.uniform-item > .flex-row-item {
	width: 1%;
	flex-grow: 1;
	flex-shrink: 1;
}
.flex-row.align-end .flex-row-item {
	align-self: flex-end;
}
.align-self-end {
	align-self: flex-end;
}
.justify-self-center{
	justify-self: center;
}
.centered-cell-holder {
	display: flex;
	justify-content: center;
	align-items: center;
}
.flex-wrap {
	flex-wrap: wrap;
}
.align-items-center {
	align-items: center;
}
.align-items-baseline {
	align-items: baseline;
}
.flex-1 {
	flex: 1;
}
.inline-list {
	
}
.inline-list .inline-list-item {
	display: inline-block;
}
.inline-list .inline-list-item:first-of-type {
	margin-left: 0;
}
.inline-list .inline-list-item:last-of-type {
	margin-right: 0;
}
.row-list {
	
}
.row-list .row-list-item {
	
}
.row-list .row-list-item:first-of-type {
	margin-top: 0;
}
.row-list .row-list-item:last-of-type {
	margin-bottom: 0;
}
.inline-list .row-list-item {
	display: inline-block;
}
.row-list .row-list-item:first-of-type {
	margin-top: 0;
}
.row-list .row-list-item:last-of-type {
	margin-bottom: 0;
}
.text-align-center {
	text-align: center;
}
.has-text-align-center {
	text-align: center;
}
.text-align-left {
	text-align: left;
}
.text-align-right {
	text-align: right;
}
.vertical-text-top {
	vertical-align: text-top;
}
.font-bold {
	font-weight: bold;
}
.font-italic {
	font-style: italic;
}
.text-uppercase {
	text-transform: uppercase;
}
.no-paragraph-margins p {
	margin: 0;
}
.no-paragraph-margins-around p:first-of-type {
	margin-top: 0;
}
.no-paragraph-margins-around p:last-of-type {
	margin-bottom: 0;
}
.break-words {
	white-space: pre-line;
	word-break: break-word;
}
.border-box {
	border-width: 0.1rem;
	border-style: solid;
	border-color: #333333;
}
.date-with-details {
	
}
.date-with-details .primary {
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 600;
	margin-right: 0.2rem;
}
.date-with-details .secondary {
	font-size: 1.2rem;
	font-weight: 600;
}
.date-with-details .details {
	font-size: 0.9rem;
	color: #7e7e7e;
}
.spacing.date-with-details-spacing {
	
}
.flex-row.date-with-details-item-spacing > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}
.flex-row.date-with-details-item-spacing > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}
.date-selection-overlay {
	box-sizing: border-box;
	border: 1px solid #073988;
	background-color: #FFFFFF;
}
.date-selection-overlay-padding {
	padding: 1rem;
}
.date-selection-button {
	box-sizing: border-box;
	border: 1px solid #073988;
	background-color: #FFFFFF;
}
.date-selection-button-padding {
	padding: 1rem;
}
.date-selection-button.invalid,
.invalid .date-selection-button {
	border-color: #880707;
}
.calendar-week:not(:first-of-type) {
	margin-top: 0.2rem;
}
.flex-row.calendar-week > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}
.flex-row.calendar-week > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}
.calendar-day {
	font-weight: bold;
	border: 1px solid rgb(7, 57, 136);
	padding: 1.3rem 0.5rem;
	text-align: center;
	cursor: pointer;
}
.calendar-day.today {
	background-color: rgb(7, 57, 136, 0.2);
}
.calendar-day.other-month {
	border: 1px solid rgb(221, 221, 221, 0.5);
	color: rgb(92, 92, 92, 0.5);
}
.calendar-day.selected {
	background-color: rgb(7, 57, 136);
	color: #FFFFFF;
}
.calendar-day.unselectable {
	pointer-events: none;
	background-color: rgb(221, 221, 221, 0.5);
	border: 1px solid rgb(221, 221, 221, 0.5);
	color: rgb(92, 92, 92, 0.5);
}
.item-list .field {
	width: 30rem;
}
.item-list .field-type-select,
.item-list .field-type-options {
	width: auto;
}
.item-list .field.field-unit.display-field {
	width: 15rem;
}
.item-list .field.field-unitSize.display-field {
	width: 8rem;
}
.standard-flag {
	background-color: #C0C0C0;
	border-radius: 0.3rem;
	box-sizing: border-box;
}
.id-flag {
	font-size: 1.2rem;
	width: 6rem;
	text-align: center;
	
	background-color: #C0C0C0;
	color: #FFFFFF;
}
.status-flag {
	font-size: 0.9rem;
	text-align: center;
	background-color: #feffce;
}
.start-at-flag {
	background-color: #cbe2bf;
}
.end-at-flag {
	background-color: #d4af96;
}
.standard-flag-padding {
	padding: 0.2rem;
}
.date-selection-number {
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 600;
	margin-right: 0.2rem;
}
.date-selection-month {
	font-size: 1.2rem;
	font-weight: 600;
}
.date-selection-weekday {
	font-size: 0.9rem;
	color: #7e7e7e;
}
.flex-row.date-selection-spacing > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}
.flex-row.date-selection-spacing > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}
.label-text-small {
	font-size: 1.2rem;
	font-weight: 600;
}
.integrated-field,
input.integrated-field,
input[type="text"].integrated-field {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	border-radius: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	transition: none;
	display: initial;
	outline: none;
}
.add-button {
	font-size: 0.9rem;
	border-radius: 9999px;
	border: 1px solid #CCCCCC;
	color: #CCCCCC;
}
.add-button-padding {
	padding: 2px 10px;
}
.edit-button {
	font-size: 0.9rem;
	border-radius: 9999px;
	border: 1px solid #CCCCCC;
	color: #CCCCCC;
}
.edit-button-padding {
	padding: 2px 10px;
}
.validation-error-popup .up-arrow:before {
	position: absolute;
	top: 0;
	left: 0.7rem;
	transform: translateY(-100%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 12px 11px 12px;
	border-color: transparent transparent var(--error-red) transparent;
}
.validation-error-popup .up-arrow:after {
	position: absolute;
	top: 0;
	left: 0.8rem;
	transform: translateY(-100%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 11px 10px 11px;
	border-color: transparent transparent #ffffff transparent;
}
.validation-error-popup .down-arrow:before {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 12px 0 12px;
	border-color: var(--error-red) transparent transparent transparent;
}
.validation-error-popup .down-arrow:after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 11px 0 11px;
	border-color: #ffffff transparent transparent transparent;
}
.validation-error-popup {
	background-color: #fff;
	text-align: center;
	position: relative;
	color: var(--error-red);
	border: 1px solid var(--error-red);
	padding: 2rem 2.6rem;
	font-size: 2rem;
	border-radius: 0.5rem;
	width: 37rem;
	margin-bottom: 11px;
}
.validation-error-popup-centered-over-position {
	left: 50%;
	transform: translate(-50%, -100%);
}
.standard-dropdown-button {
	box-sizing: border-box;
	border-radius: 0.3rem;
	border: 0.1rem solid #D1D1D1;
}
.standard-dropdown-button-padding {
	padding: 1.4rem 0.8rem;
}
.standard-dropdown-button.batch-operations-select-title {
	border-radius: 0;
	border: none;
}
.standard-dropdown-button-padding.batch-operations-select-title {
	padding: 0;
}
.custom-selection-menu {
	box-sizing: border-box;
	background-color: #FFFFFF;
}
.custom-selection-menu-padding {
	padding: 1rem;
}
.dropdown-selection-popup {
	min-width: 20rem;
}
.custom-dropdown.dropdown-from-right .dropdown-selection-popup {
	right: 0;
}
.stepped-navigation-button {
	box-sizing: border-box;
	width: 6rem;
	height: 6rem;
	background-color: #2ece6e;
	border-radius: 50%;
	transition: background-color 0.1s ease-in;
}
.stepped-navigation-button.active:hover {
	background-color: #0de061;
}
.stepped-navigation-button.inactive {
	opacity: 0.5;
}
.stepped-navigation-back-button {
	box-sizing: border-box;
	
	width: 3rem;
	height: 3rem;
	
	background-color: #FFFFFF;
	border-radius: 50%;
	border: 2px solid #CCCCCC;
	
	transition: background-color 0.1s ease-in;
}
.stepped-navigation-back-button.inactive {
	opacity: 0.5;
}
.stepped-navigation-back-button.active:hover {
	background-color: #EEEEEE;
}
.stepped-navigation-button-padding {
	padding: 1rem;
}
.stepped-navigation-back-button-padding {
	padding: 0.5rem;
}
.stepped-navigation-step-indicator {
	width: 1rem;
	height: 1rem;
	
	border-radius: 50%;
	
	background-color: #CCCCCC;
	opacity: 0.5;
}
.signed-in-name {
	font-size: 2.4rem;
	font-weight: bold;
}
.signed-in-email {
	color: #CCCCCC;
	font-size: 1.2rem;
}
.verification-code-box {
	background-color: #ffffff;
	border-radius: 0.6rem;
	box-sizing: border-box;
	border: 1px solid #153c63;
	overflow: hidden;
}
.verification-code-box-digit-field {
	width: 5.2rem;
	font-size: 4.4rem;
	font-weight: normal;
	line-height: normal;
	padding: 1.2rem 0;
	box-sizing: border-box;
	text-align: center;
	border: none;
	background-color: #153c6300;
	transition: background-color 0.1s ease-in;
}
.verification-code-box-digit-field:focus {
	background-color: #153c6311;
	outline: none;
}
.verification-code-box-digit-field:not(:last-of-type) {
	border-right: 1px solid #153c63;
}
.action-link {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: normal;
	text-decoration: underline;
}
.action-link.secondary {
	color: #CCCCCC;
}
.big-box-padding {
	padding: 2rem;
}
.checkmark-circle {
	border: 1px solid #DF0000;
	border-radius: 50%;
	width: 3rem;
	height: 3rem;
	padding: 0.4rem;
}
.checkmark-circle.active {
	background-color: #DF0000;
}
.progressbar-height {
	height: 6px;
}
.progressbar-background {
	background-color: #CCCCCC;
}
.diagonal-background-color-progress-animation {
	background-image: linear-gradient(
		-45deg,
		rgba(255, 255, 255, 0.2) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 255, 255, 0.2) 50%,
		rgba(255, 255, 255, 0.2) 75%,
		transparent 75%,
		transparent
	);
	
	background-size: 50px 50px;
	animation: diagonal-background-color-progress-animation-keyframes 2s linear infinite;
}
@keyframes diagonal-background-color-progress-animation-keyframes {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 50px 50px;
	}
}
.page-loading-progressbar-postition {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.stepped-navigation-button {
	
}
.stepped-navigation-button.active:hover {
	
}
.stepped-navigation-back-button {
	
}
.stepped-navigation-step-indicator {
	
}
.progressbar-background {
	background-color: var(--primary-color);
}
.extra-short-cell-width {
	width: 10rem;
}
.short-cell-width {
	width: 20rem;
}
.standard-cell-width {
	width: 30rem;
}
.medium-cell-width {
	width: 40rem;
}
.long-cell-width {
	width: 50rem;
}
.extra-long-cell-width {
	width: 70rem;
}
.select-id-cell-width {
	width: 10rem;
}
.amount-with-currency-cell-width {
	width: 15rem;
}
.standard-field {
	box-sizing: border-box;
	border: 1px solid #0F0F0F;
	border-radius: 3px;
}
.standard-field-padding {
	padding: 8px;
}
.autocomplete-popup {
	box-sizing: border-box;
	border: 1px solid #0F0F0F;
	background-color: #FFFFFF;
}
.standard-field.valid {
	border-color: #79bd79;
	background-color: #f6fff6
}
.standard-field.invalid {
	border-color: #FF0000;
	background-color: #ffdcdc;
}
.standard-row {
	box-sizing: border-box;
}
.standard-row-padding {
	padding: 0.5rem 1rem;
}
.standard-alternating-rows .standard-row:nth-of-type(2n + 1) {
	background-color: #fafafa;
}
.hover-row {
	background-color: rgba(52, 173, 187, 0);
	-webkit-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}
.hover-row:hover {
	background-color: rgba(52, 173, 187, 0.1);
}
.loader-spinner {
	width: 10px;
	height: 10px;
}
.standard-icon {
	width: 24px;
	height: 24px;
}
.field-icon {
	width: 16px;
	height: 16px;
}
.text-icon {
	width: 12px;
	height: 12px;
}
.image.small-loader {
	width: 16px;
	height: 16px;
}
.standard-button {
	box-sizing: border-box;
	
	background-color: #FF383C;
	color: #FFFFFF;
	border: 1px solid #FF383C;
	border-radius: 8px;
}
.inactive-button {
	box-sizing: border-box;
	
	background-color: #FF383C33;
	color: #FFFFFF;
	border: 1px solid #FF383C88;
	border-radius: 8px;
}
.secondary-button {
	box-sizing: border-box;
	border: 1px solid #FF383C;
	color: #FF383C;
	background-color: #FFFFFF;
	border-radius: 8px;
}
.standard-button:not(.inactive):not(.inactive-during-progress):not(.not-interactive),
.secondary-button:not(.inactive):not(.inactive-during-progress):not(.not-interactive) {
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
}
.standard-button.inactive {
	opacity: 0.25;
	cursor: not-allowed;
}
.standard-button.inactive-during-progress {
	cursor: progress;
}
.standard-button-padding {
	padding: 15px 60px;
}
.standard-button:not(.inactive):not(.inactive-during-progress):not(.not-interactive):hover {
	color: #FF383C;
	background-color: #001942;
	
}
.secondary-button:not(.inactive):not(.inactive-during-progress):not(.not-interactive):hover {
	color: #FF383C;
	background-color: #001942;
}
.centered-site {
    padding-left: 20px;
    padding-right: 20px;
	max-width: 1100px;
    margin: auto;
}
.centered-content-text {
    padding-left: 20px;
    padding-right: 20px;
	max-width: 800px;
    margin: auto;
}
.blue-background {
	background-color: #001942;

}
.mobile-hero-image {
	width: 100%;
	aspect-ratio: 1.6;
	overflow: hidden;
}
.hero-overlay-text-color {
	color: #FFFFFF;
}
.hero-image-overlap-position {
	margin-top: -140px;
}
.hero-image-mobile-overlap-position {
	margin-top: -100px;
}
.horizontal-line {
	height: 1px;
}
.horizontal-line.white {
	background-color: #FFFFFF;
}
.hero-logo {
	width: 300px;
	height: 300px;
}
.usps-banner {
	background-color: #FF383C;
	color: #FFFFFF;
}
.usps-banner-centering {
	max-width: 800px;
	margin: auto;
	padding: 10px;
}
@media (max-width: 600px) {
	.usps-banner {
		font-size: 12px;
	}
}
.ratio-1-1 {
    aspect-ratio: 1;
}
.ratio-4-3 {
    aspect-ratio: 1.33;
}
.ratio-16-9 {
    aspect-ratio: 1.78;
}
.ratio-3-1 {
    aspect-ratio: 3;
}
.promo-image-label {
	background-color: #FFFFFF;
	border-radius: 4px;
	padding: 8px 26px;
	font-weight: bold;
	font-size: 16px;
}
.promo-image-label-position {
	right: 10px;
	transform: translateY(-50%);
}
.main-font-setting {
    font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-size: 18px;
	color: #0d0d0d;
}
.standard-text-color {
	color: #0d0d0d;
}
.main-font-setting h1:not(.skip-default),
.main-font-setting h2:not(.skip-default),
.main-font-setting h3:not(.skip-default),
.main-font-setting h4:not(.skip-default),
.main-font-setting h5:not(.skip-default),
.main-font-setting h6:not(.skip-default) {
	line-height: 1.25;
}
.main-font-setting h1:not(.skip-default) {
	font-size: 48px;
	font-weight: bold;
}
.main-font-setting h2:not(.skip-default) {
	font-size: 26px;
}
.wp-rich-text-formatting {
	line-height: 1.6;
}
.small-text {
	font-size: 10px;
}
.small-description {
	font-size: 10px;
}
.warning-text {
	color: #FF9A12;
}
.standard-field-label {
	font-size: 12px;
	font-weight: bold;
}
.built-by-notice-link {
	font-size: 10px;
	color: #999999;
}
a:not(.skip-default):not(.custom-styled-link) {
	color: #052F5C;
}
.thin-title {
	font-size: 28px;
	font-weight: normal;
}
.thin-title.blue {
	color: #052F5C;
}
.thin-title.big {
	font-size: 38px;
}
.blue-title {
	color: #052F5C;
}
.blue-background-text-color {
	color: #FFFFFF;
}
.text-and-image-excerpt {
	font-size: 22px;
}
.blue-background-text-color .text-and-image-excerpt {
	color: #E8C662;
}
.category-intro {
	font-size: 26px;
}
.category-name {
	font-size: 26px;
}
.header-menu-link {
	color: #052F5C;
	font-weight: bold;
	font-size: 14px;
}
.hero-overlay-text {
	line-height: 1.5;
	font-size: 20px;
}
@media (min-width: 800px) {
	.main-font-setting h1.hero-overlay-title {
		font-size: 64px;
	}

	.hero-overlay-text {
		font-size: 36px;
	}
}
.spacing.double {
  height: 60px;
}
.spacing.standard {
  height: 30px;
}
.spacing.medium {
  height: 15px;
}
.spacing.small {
  height: 10px;
}
.spacing.micro {
  height: 3px;
}
.spacing.pixel {
  height: 1px;
}
.inline-list.small-item-spacing > .inline-list-item {
  margin-left: 5px;
  margin-right: 5px;
}
.inline-list.small-item-spacing > .inline-list-item:first-of-type {
  margin-left: 0;
}
.inline-list.small-item-spacing > .inline-list-item:last-of-type {
  margin-right: 0;
}
.inline-list.menu-item-spacing > .inline-list-item {
  margin-left: 20px;
  margin-right: 20px;
}
.inline-list.menu-item-spacing > .inline-list-item:first-of-type {
  margin-left: 0;
}
.inline-list.menu-item-spacing > .inline-list-item:last-of-type {
  margin-right: 0;
}
.inline-list.small-item-row-spacing > .inline-list-item {
  margin-top: 10px;
}
.flex-row.micro-item-spacing > .flex-row-item {
  margin-left: 2px;
  margin-right: 2px;
}
.flex-row.micro-item-spacing > .flex-row-item:first-of-type {
  margin-left: 0;
}
.flex-row.micro-item-spacing > .flex-row-item:last-of-type {
  margin-right: 0;
}
.flex-row.pixel-item-spacing > .flex-row-item:not(:first-of-type) {
  margin-left: 0.5px;
}
.flex-row.pixel-item-spacing > .flex-row-item:not(:last-of-type) {
  margin-right: 0.5px;
}
.flex-row.icon-text-item-spacing > .flex-row-item:not(:first-of-type) {
  margin-left: 2px;
}
.flex-row.icon-text-item-spacing > .flex-row-item:not(:last-of-type) {
  margin-right: 2px;
}
.flex-row.small-item-spacing > .flex-row-item {
  margin-left: 10px;
  margin-right: 10px;
}
.flex-row.small-item-spacing > .flex-row-item:first-of-type {
  margin-left: 0;
}
.flex-row.small-item-spacing > .flex-row-item:last-of-type {
  margin-right: 0;
}
.flex-row.medium-item-spacing > .flex-row-item {
  margin-left: 20px;
  margin-right: 20px;
}
.flex-row.medium-item-spacing > .flex-row-item:first-of-type {
  margin-left: 0;
}
.flex-row.medium-item-spacing > .flex-row-item:last-of-type {
  margin-right: 0;
}
.flex-row.big-item-spacing > .flex-row-item {
  margin-left: 30px;
  margin-right: 30px;
}
.flex-row.big-item-spacing > .flex-row-item:first-of-type {
  margin-left: 0;
}
.flex-row.big-item-spacing > .flex-row-item:last-of-type {
  margin-right: 0;
}
.horizontal-spacing-standard {
  width: 30px;
  height: 1px;
}
.header-logo {
	width: 44px;
	height: 44px;
}
.header-background {
	background-color: #FFFFFF;
}
.mobile-menu-divider {
	height: 1px;
	background-color: #DEDEDE;
}
.footer-logo {
	width: 44px;
	height: 44px;
}
.footer-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.5);
}
.footer-address {
    font-size: 12px;
    font-weight: bold;
}
.footer-copyright {
    font-size: 12px;
}
.social-media-footer-link {
    width: 32px;
    height: 32px;
    background-color: #E5E5E5;
    border-radius: 9999px;
}
