/*!
 * Minimal Foundation grid/visibility shim.
 * Covers tokens found in refactor-artifacts/foundation-usage-inventory.json.
 * Breakpoints match Foundation 6: medium 40em, large 64em.
 */

:root {
	--foundation-max-width: 75rem;
	--foundation-gutter-small: 0.625rem;
	--foundation-gutter-medium: 0.9375rem;
	--foundation-breakpoint-medium: 40em;
	--foundation-breakpoint-large: 64em;
}

.grid-container {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--foundation-max-width);
	padding-left: var(--foundation-gutter-small);
	padding-right: var(--foundation-gutter-small);
	justify-content: center;
}

.grid-container.full {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

@media print, screen and (min-width: var(--foundation-breakpoint-medium)) {
	.grid-container {
		padding-left: var(--foundation-gutter-medium);
		padding-right: var(--foundation-gutter-medium);
	}
}

.grid-x {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.cell {
	flex: 0 0 auto;
	min-height: 0;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.grid-x > .small-12 {
	width: 100%;
}

@media print, screen and (min-width: 40em) {
	.grid-x > .medium-4 {
		width: 33.33333%;
	}

	.grid-x > .medium-8 {
		width: 66.66667%;
	}

	.grid-x > .medium-10 {
		width: 83.33333%;
	}

	.grid-x > .medium-offset-1 {
		margin-left: 8.33333%;
	}
}

@media screen and (min-width: 64em) {
	.grid-x > .large-2 {
		width: 16.66667%;
	}

	.grid-x > .large-3 {
		width: 25%;
	}

	.grid-x > .large-4 {
		width: 33.33333%;
	}

	.grid-x > .large-5 {
		width: 41.66667%;
	}

	.grid-x > .large-6 {
		width: 50%;
	}

	.grid-x > .large-7 {
		width: 58.33333%;
	}

	.grid-x > .large-8 {
		width: 66.66667%;
	}

	.grid-x > .large-9 {
		width: 75%;
	}

	.grid-x > .large-10 {
		width: 83.33333%;
	}

	.grid-x > .large-offset-1 {
		margin-left: 8.33333%;
	}

	.grid-x > .large-offset-2 {
		margin-left: 16.66667%;
	}

	.large-order-1 {
		order: 1;
	}

	.large-order-2 {
		order: 2;
	}
}
@media screen and (max-width: 63.99875em) {
	.show-for-large {
		display: none !important;
	}
}

@media screen and (min-width: 64em) {

	.hide-for-large {
		display: none !important;
	}
}

.footer-nav-right-box {
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}

@media only screen and (max-width: 1023px) {
	.footer-nav-right-box-m {
			display: -moz-box;
			display: -ms-flexbox;
			display: -webkit-flex;
			display: flex;
	}
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

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

.accordion-content {
	display: none;
}

.reveal-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1005;
	display: none;
	background-color: rgba(10, 10, 10, .45);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.reveal {
  z-index: 1006;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
[data-whatinput="mouse"] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}
.reveal.collapse {
  padding: 0;
}

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

button {
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	background: 0 0;
	line-height: 1;
	cursor: auto;
}

[type=button], [type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}

.close-button {
	position: absolute;
	z-index: 10;
	color: #8a8a8a;
	cursor: pointer;
}

ol ol, ol ul, ul ol, ul ul {
	margin-left: 1.25rem;
	margin-bottom: 0;
}