@charset "UTF-8";
/*
 * Sets up Foundation components and theme styles
*/
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

/**
 * Foundation for Sites by ZURB
 * Version 6.2.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.form-certificate-of-origin {
  padding-left: 1.4375rem !important;
  padding-right: 1.4375rem !important;
  max-width: 37.5rem !important;
}

/**
 * Site functions
 */
.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=71.875em&xxlarge=90em";
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: not-allowed;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
 */
/* fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
} */
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=71.875em&xxlarge=90em";
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Museo Sans", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #3a383e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  width: 100%;
  border-radius: 0;
}

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  line-height: 1;
}
[data-whatinput=mouse] button {
  outline: 0;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.row {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: row wrap;
}
.row .row {
  max-width: none;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.row.expanded {
  max-width: none;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}

.column, .columns {
  flex: 1 1 0px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  min-width: 0;
}

.column.row.row, .row.row.columns {
  float: none;
  display: block;
}
.row .column.row.row, .row .row.row.columns {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.small-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

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

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

.small-up-1 {
  flex-wrap: wrap;
}
.small-up-1 > .column, .small-up-1 > .columns {
  flex: 0 0 100%;
  max-width: 100%;
}

.small-up-2 {
  flex-wrap: wrap;
}
.small-up-2 > .column, .small-up-2 > .columns {
  flex: 0 0 50%;
  max-width: 50%;
}

.small-up-3 {
  flex-wrap: wrap;
}
.small-up-3 > .column, .small-up-3 > .columns {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.small-up-4 {
  flex-wrap: wrap;
}
.small-up-4 > .column, .small-up-4 > .columns {
  flex: 0 0 25%;
  max-width: 25%;
}

.small-up-5 {
  flex-wrap: wrap;
}
.small-up-5 > .column, .small-up-5 > .columns {
  flex: 0 0 20%;
  max-width: 20%;
}

.small-up-6 {
  flex-wrap: wrap;
}
.small-up-6 > .column, .small-up-6 > .columns {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.small-up-7 {
  flex-wrap: wrap;
}
.small-up-7 > .column, .small-up-7 > .columns {
  flex: 0 0 14.2857142857%;
  max-width: 14.2857142857%;
}

.small-up-8 {
  flex-wrap: wrap;
}
.small-up-8 > .column, .small-up-8 > .columns {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

@media screen and (min-width: 40em) {
  .medium-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
  .medium-up-1 {
    flex-wrap: wrap;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-up-2 {
    flex-wrap: wrap;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-up-3 {
    flex-wrap: wrap;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .medium-up-4 {
    flex-wrap: wrap;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-up-5 {
    flex-wrap: wrap;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .medium-up-6 {
    flex-wrap: wrap;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .medium-up-7 {
    flex-wrap: wrap;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .medium-up-8 {
    flex-wrap: wrap;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 40em) and (min-width: 40em) {
  .medium-expand {
    flex: 1 1 0px;
  }
}
.row.medium-unstack > .column, .row.medium-unstack > .columns {
  flex: 0 0 100%;
}
@media screen and (min-width: 40em) {
  .row.medium-unstack > .column, .row.medium-unstack > .columns {
    flex: 1 1 0px;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

@media screen and (min-width: 64em) {
  .large-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
  .large-up-1 {
    flex-wrap: wrap;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .large-up-2 {
    flex-wrap: wrap;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .large-up-3 {
    flex-wrap: wrap;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .large-up-4 {
    flex-wrap: wrap;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .large-up-5 {
    flex-wrap: wrap;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .large-up-6 {
    flex-wrap: wrap;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .large-up-7 {
    flex-wrap: wrap;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .large-up-8 {
    flex-wrap: wrap;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 64em) and (min-width: 64em) {
  .large-expand {
    flex: 1 1 0px;
  }
}
.row.large-unstack > .column, .row.large-unstack > .columns {
  flex: 0 0 100%;
}
@media screen and (min-width: 64em) {
  .row.large-unstack > .column, .row.large-unstack > .columns {
    flex: 1 1 0px;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

@media screen and (min-width: 71.875em) {
  .xlarge-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .xlarge-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xlarge-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xlarge-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .xlarge-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xlarge-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xlarge-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .xlarge-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xlarge-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xlarge-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .xlarge-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xlarge-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xlarge-order-1 {
    order: 1;
  }
  .xlarge-order-2 {
    order: 2;
  }
  .xlarge-order-3 {
    order: 3;
  }
  .xlarge-order-4 {
    order: 4;
  }
  .xlarge-order-5 {
    order: 5;
  }
  .xlarge-order-6 {
    order: 6;
  }
  .xlarge-up-1 {
    flex-wrap: wrap;
  }
  .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .xlarge-up-2 {
    flex-wrap: wrap;
  }
  .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .xlarge-up-3 {
    flex-wrap: wrap;
  }
  .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .xlarge-up-4 {
    flex-wrap: wrap;
  }
  .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .xlarge-up-5 {
    flex-wrap: wrap;
  }
  .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .xlarge-up-6 {
    flex-wrap: wrap;
  }
  .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .xlarge-up-7 {
    flex-wrap: wrap;
  }
  .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .xlarge-up-8 {
    flex-wrap: wrap;
  }
  .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 71.875em) and (min-width: 71.875em) {
  .xlarge-expand {
    flex: 1 1 0px;
  }
}
.row.xlarge-unstack > .column, .row.xlarge-unstack > .columns {
  flex: 0 0 100%;
}
@media screen and (min-width: 71.875em) {
  .row.xlarge-unstack > .column, .row.xlarge-unstack > .columns {
    flex: 1 1 0px;
  }
  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.shrink {
  flex: 0 0 auto;
  max-width: 100%;
}

.column.align-top, .align-top.columns {
  align-self: flex-start;
}

.column.align-bottom, .align-bottom.columns {
  align-self: flex-end;
}

.column.align-middle, .align-middle.columns {
  align-self: center;
}

.column.align-stretch, .align-stretch.columns {
  align-self: stretch;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  font-size: inherit;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Museo Sans", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: #cacaca;
  line-height: 0;
}

h1 {
  font-size: 2.875rem;
}

h2 {
  font-size: 2.375rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5625rem;
}

h5 {
  font-size: 1.3125rem;
}

h6 {
  font-size: 1.0625rem;
}

@media screen and (min-width: 40em) {
  h1 {
    font-size: 4.5rem;
  }
  h2 {
    font-size: 3.25rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.625rem;
  }
  h5 {
    font-size: 1.375rem;
  }
  h6 {
    font-size: 1.125rem;
  }
}
a {
  color: #2199e8;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer;
}
a:hover, a:focus {
  color: #1585cf;
}
a img {
  border: 0;
}

hr {
  max-width: 75rem;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
  margin: 1.25rem auto;
  clear: both;
}

ul,
ol,
dl {
  line-height: 1.6;
  margin-bottom: 1rem;
  list-style-position: outside;
}

li {
  font-size: inherit;
}

ul {
  list-style-type: disc;
  margin-left: 1.25rem;
}

ol {
  margin-left: 1.25rem;
}

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

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #8a8a8a;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a;
}
cite:before {
  content: "— ";
}

abbr {
  color: #3a383e;
  cursor: help;
  border-bottom: 1px dotted #0a0a0a;
}

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  background-color: #e6e6e6;
  border: 1px solid #cacaca;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

kbd {
  padding: 0.125rem 0.25rem 0;
  margin: 0;
  background-color: #e6e6e6;
  color: #0a0a0a;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

.no-bullet {
  margin-left: 0;
  list-style: none;
}

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

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

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

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

@media screen and (min-width: 40em) {
  .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 screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 71.875em) {
  .xlarge-text-left {
    text-align: left;
  }
  .xlarge-text-right {
    text-align: right;
  }
  .xlarge-text-center {
    text-align: center;
  }
  .xlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #0a0a0a;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  border-radius: 0;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  outline: none;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input::placeholder,
textarea::placeholder {
  color: #cacaca;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

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

input[type=search] {
  box-sizing: border-box;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a;
}

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem;
}
.input-group > :first-child {
  border-radius: 0 0 0 0;
}
.input-group > :last-child > * {
  border-radius: 0 0 0 0;
}

.input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  display: table-cell;
  vertical-align: middle;
}

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #e6e6e6;
  color: #0a0a0a;
  border: 1px solid #cacaca;
  white-space: nowrap;
  width: 1%;
  height: 100%;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  height: 2.5rem;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  height: 100%;
  width: 1%;
}
.input-group-button a,
.input-group-button input,
.input-group-button button {
  margin: 0;
}

.input-group .input-group-button {
  display: table-cell;
}

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

legend {
  margin-bottom: 0.5rem;
  max-width: 100%;
}

.fieldset {
  border: 1px solid #cacaca;
  padding: 1.25rem;
  margin: 1.125rem 0;
}
.fieldset legend {
  background: #fff;
  padding: 0 0.1875rem;
  margin: 0;
  margin-left: -0.1875rem;
}

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #0a0a0a;
  background-color: #fefefe;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-size: 9px 6px;
  background-position: right center;
  background-origin: content-box;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  background-color: rgba(236, 88, 64, 0.1);
  border-color: #ec5840;
}

.is-invalid-label {
  color: #ec5840;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ec5840;
}
.form-error.is-visible {
  display: block;
}

.button, .button-primary {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}
[data-whatinput=mouse] .button, [data-whatinput=mouse] .button-primary {
  outline: 0;
}
.button, .button-primary {
  background-color: #2199e8;
  color: #fefefe;
}
.button:hover, .button-primary:hover, .button:focus, .button-primary:focus {
  background-color: #1583cc;
  color: #fefefe;
}
.button.tiny, .tiny.button-primary {
  font-size: 0.6rem;
}
.button.small, .small.button-primary {
  font-size: 0.75rem;
}
.button.large, .large.button-primary {
  font-size: 1.25rem;
}
.button.expanded, .expanded.button-primary {
  display: block;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.button.primary, .primary.button-primary {
  background-color: #2199e8;
  color: auto;
}
.button.primary:hover, .primary.button-primary:hover, .button.primary:focus, .primary.button-primary:focus {
  background-color: auto;
  color: auto;
}
.button.secondary, .secondary.button-primary {
  background-color: #777;
  color: auto;
}
.button.secondary:hover, .secondary.button-primary:hover, .button.secondary:focus, .secondary.button-primary:focus {
  background-color: auto;
  color: auto;
}
.button.success, .success.button-primary {
  background-color: #3adb76;
  color: auto;
}
.button.success:hover, .success.button-primary:hover, .button.success:focus, .success.button-primary:focus {
  background-color: auto;
  color: auto;
}
.button.warning, .warning.button-primary {
  background-color: #ffae00;
  color: auto;
}
.button.warning:hover, .warning.button-primary:hover, .button.warning:focus, .warning.button-primary:focus {
  background-color: auto;
  color: auto;
}
.button.warning-darker, .warning-darker.button-primary {
  background-color: #f48424;
  color: auto;
}
.button.warning-darker:hover, .warning-darker.button-primary:hover, .button.warning-darker:focus, .warning-darker.button-primary:focus {
  background-color: auto;
  color: auto;
}
.button.alert, .alert.button-primary {
  background-color: #ec5840;
  color: auto;
}
.button.alert:hover, .alert.button-primary:hover, .button.alert:focus, .alert.button-primary:focus {
  background-color: auto;
  color: auto;
}
.button.hollow, .hollow.button-primary, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow, .hollow.button-primary {
  border: 1px solid #2199e8;
  color: #2199e8;
}
.button.hollow:hover, .hollow.button-primary:hover, .button.hollow:focus, .hollow.button-primary:focus {
  border-color: #0c4d78;
  color: #0c4d78;
}
.button.hollow.primary, .hollow.primary.button-primary {
  border: 1px solid #2199e8;
  color: #2199e8;
}
.button.hollow.primary:hover, .hollow.primary.button-primary:hover, .button.hollow.primary:focus, .hollow.primary.button-primary:focus {
  border-color: #0c4d78;
  color: #0c4d78;
}
.button.hollow.secondary, .hollow.secondary.button-primary {
  border: 1px solid #777;
  color: #777;
}
.button.hollow.secondary:hover, .hollow.secondary.button-primary:hover, .button.hollow.secondary:focus, .hollow.secondary.button-primary:focus {
  border-color: #3c3c3c;
  color: #3c3c3c;
}
.button.hollow.success, .hollow.success.button-primary {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .hollow.success.button-primary:hover, .button.hollow.success:focus, .hollow.success.button-primary:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning, .hollow.warning.button-primary {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .hollow.warning.button-primary:hover, .button.hollow.warning:focus, .hollow.warning.button-primary:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.warning-darker, .hollow.warning-darker.button-primary {
  border: 1px solid #f48424;
  color: #f48424;
}
.button.hollow.warning-darker:hover, .hollow.warning-darker.button-primary:hover, .button.hollow.warning-darker:focus, .hollow.warning-darker.button-primary:focus {
  border-color: #854107;
  color: #854107;
}
.button.hollow.alert, .hollow.alert.button-primary {
  border: 1px solid #ec5840;
  color: #ec5840;
}
.button.hollow.alert:hover, .hollow.alert.button-primary:hover, .button.hollow.alert:focus, .hollow.alert.button-primary:focus {
  border-color: #881f0e;
  color: #881f0e;
}
.button.disabled, .disabled.button-primary, .button[disabled], [disabled].button-primary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after, .dropdown.button-primary::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  border-color: #fff transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  position: relative;
  top: 0.4em;
  float: right;
  margin-left: 1em;
  display: inline-block;
}
.button.arrow-only::after, .arrow-only.button-primary::after {
  margin-left: 0;
  float: none;
  top: -0.1em;
}

.accordion {
  list-style-type: none;
  background: #fefefe;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  border-radius: 0;
  margin-left: 0;
}

.accordion-title {
  display: block;
  padding: 1.25rem 1rem;
  line-height: 1;
  font-size: 0.75rem;
  color: #2199e8;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #e6e6e6;
}
.accordion-title::before {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  margin-top: -0.5rem;
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  padding: 1rem;
  display: none;
  border-bottom: 1px solid #e6e6e6;
  background-color: #fefefe;
}

.is-accordion-submenu-parent > a {
  position: relative;
}
.is-accordion-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: #2199e8 transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 1rem;
}

.is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform-origin: 50% 50%;
  transform: scaleY(-1);
}

.button-group {
  margin-bottom: 1rem;
}
.button-group::before, .button-group::after {
  content: " ";
  display: table;
}
.button-group::after {
  clear: both;
}
.button-group {
  font-size: 0;
}
.button-group .button, .button-group .button-primary {
  margin: 0;
  font-size: 0.9rem;
}
.button-group .button:not(:last-child), .button-group .button-primary:not(:last-child) {
  margin-right: 1px;
}
.button-group.tiny .button, .button-group.tiny .button-primary {
  font-size: 0.6rem;
}
.button-group.small .button, .button-group.small .button-primary {
  font-size: 0.75rem;
}
.button-group.large .button, .button-group.large .button-primary {
  font-size: 1.25rem;
}
.button-group.expanded {
  margin-right: -1px;
}
.button-group.expanded::before, .button-group.expanded::after {
  display: none;
}
.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button-primary:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .button-primary:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button-primary, .button-group.expanded .button-primary:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button-primary {
  display: inline-block;
  width: calc(50% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button-primary:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .button-primary:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button-primary, .button-group.expanded .button-primary:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button-primary {
  display: inline-block;
  width: calc(33.3333333333% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button-primary:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .button-primary:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button-primary, .button-group.expanded .button-primary:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button-primary {
  display: inline-block;
  width: calc(25% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button-primary:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .button-primary:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button-primary, .button-group.expanded .button-primary:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button-primary {
  display: inline-block;
  width: calc(20% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button-primary:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .button-primary:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button-primary, .button-group.expanded .button-primary:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button-primary {
  display: inline-block;
  width: calc(16.6666666667% - 1px);
  margin-right: 1px;
}
.button-group.primary .button, .button-group.primary .button-primary {
  background-color: #2199e8;
  color: auto;
}
.button-group.primary .button:hover, .button-group.primary .button-primary:hover, .button-group.primary .button:focus, .button-group.primary .button-primary:focus {
  background-color: auto;
  color: auto;
}
.button-group.secondary .button, .button-group.secondary .button-primary {
  background-color: #777;
  color: auto;
}
.button-group.secondary .button:hover, .button-group.secondary .button-primary:hover, .button-group.secondary .button:focus, .button-group.secondary .button-primary:focus {
  background-color: auto;
  color: auto;
}
.button-group.success .button, .button-group.success .button-primary {
  background-color: #3adb76;
  color: auto;
}
.button-group.success .button:hover, .button-group.success .button-primary:hover, .button-group.success .button:focus, .button-group.success .button-primary:focus {
  background-color: auto;
  color: auto;
}
.button-group.warning .button, .button-group.warning .button-primary {
  background-color: #ffae00;
  color: auto;
}
.button-group.warning .button:hover, .button-group.warning .button-primary:hover, .button-group.warning .button:focus, .button-group.warning .button-primary:focus {
  background-color: auto;
  color: auto;
}
.button-group.warning-darker .button, .button-group.warning-darker .button-primary {
  background-color: #f48424;
  color: auto;
}
.button-group.warning-darker .button:hover, .button-group.warning-darker .button-primary:hover, .button-group.warning-darker .button:focus, .button-group.warning-darker .button-primary:focus {
  background-color: auto;
  color: auto;
}
.button-group.alert .button, .button-group.alert .button-primary {
  background-color: #ec5840;
  color: auto;
}
.button-group.alert .button:hover, .button-group.alert .button-primary:hover, .button-group.alert .button:focus, .button-group.alert .button-primary:focus {
  background-color: auto;
  color: auto;
}
.button-group.stacked .button, .button-group.stacked .button-primary, .button-group.stacked-for-small .button, .button-group.stacked-for-small .button-primary, .button-group.stacked-for-medium .button, .button-group.stacked-for-medium .button-primary {
  width: 100%;
  border-right: 1px solid transparent;
}
.button-group.stacked .button:not(:last-child), .button-group.stacked .button-primary:not(:last-child), .button-group.stacked-for-small .button:not(:last-child), .button-group.stacked-for-small .button-primary:not(:last-child), .button-group.stacked-for-medium .button:not(:last-child), .button-group.stacked-for-medium .button-primary:not(:last-child) {
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 40em) {
  .button-group.stacked-for-small .button, .button-group.stacked-for-small .button-primary {
    width: auto;
  }
  .button-group.stacked-for-small .button:not(:last-child), .button-group.stacked-for-small .button-primary:not(:last-child) {
    margin-right: 1px;
  }
}
@media screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button, .button-group.stacked-for-medium .button-primary {
    width: auto;
  }
  .button-group.stacked-for-medium .button:not(:last-child), .button-group.stacked-for-medium .button-primary:not(:last-child) {
    margin-right: 1px;
  }
}
@media screen and (max-width: 39.9375em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-small.expanded .button-primary {
    display: block;
    margin-right: 0;
  }
}

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  position: relative;
  color: #0a0a0a;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout {
  background-color: white;
}
.callout.primary {
  background-color: #def0fc;
}
.callout.secondary {
  background-color: #ebebeb;
}
.callout.success {
  background-color: #e1faea;
}
.callout.warning {
  background-color: #fff3d9;
}
.callout.warning-darker {
  background-color: #fdedde;
}
.callout.alert {
  background-color: #fce6e2;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.close-button {
  position: absolute;
  color: #8a8a8a;
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
  cursor: pointer;
}
.close-button:hover, .close-button:focus {
  color: #0a0a0a;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}

.menu {
  margin: 0;
  list-style-type: none;
}
.menu > li {
  display: table-cell;
  vertical-align: middle;
}
[data-whatinput=mouse] .menu > li {
  outline: 0;
}
.menu > li > a {
  display: block;
  padding: 0.7rem 1rem;
  line-height: 1;
}
.menu input,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu > li > a img,
.menu > li > a i {
  vertical-align: middle;
}
.menu > li > a i + span,
.menu > li > a img + span {
  vertical-align: middle;
}
.menu > li > a img,
.menu > li > a i {
  margin-right: 0.25rem;
  display: inline-block;
}
.menu > li {
  display: table-cell;
}
.menu.vertical > li {
  display: block;
}
@media screen and (min-width: 40em) {
  .menu.medium-horizontal > li {
    display: table-cell;
  }
  .menu.medium-vertical > li {
    display: block;
  }
}
@media screen and (min-width: 64em) {
  .menu.large-horizontal > li {
    display: table-cell;
  }
  .menu.large-vertical > li {
    display: block;
  }
}
@media screen and (min-width: 71.875em) {
  .menu.xlarge-horizontal > li {
    display: table-cell;
  }
  .menu.xlarge-vertical > li {
    display: block;
  }
}
.menu.simple li {
  line-height: 1;
  display: inline-block;
  margin-right: 1rem;
}
.menu.simple a {
  padding: 0;
}
.menu.align-right::before, .menu.align-right::after {
  content: " ";
  display: table;
}
.menu.align-right::after {
  clear: both;
}
.menu.align-right > li {
  float: right;
}
.menu.expanded {
  width: 100%;
  display: table;
  table-layout: fixed;
}
.menu.expanded > li:first-child:last-child {
  width: 100%;
}
.menu.icon-top > li > a {
  text-align: center;
}
.menu.icon-top > li > a img,
.menu.icon-top > li > a i {
  display: block;
  margin: 0 auto 0.25rem;
}
.menu.nested {
  margin-left: 1rem;
}
.menu .active > a {
  color: #fefefe;
  background: #2199e8;
}

.menu-text {
  font-weight: bold;
  color: inherit;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem;
}

.menu-centered {
  text-align: center;
}
.menu-centered > .menu {
  display: inline-block;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px;
}
.menu-icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #fefefe;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
}
.menu-icon:hover::after {
  background: #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px;
}
.menu-icon.dark::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 #000, 0 14px 0 #000;
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block !important;
}

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear;
}
.is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}

.is-drilldown-submenu-parent > a {
  position: relative;
}
.is-drilldown-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent transparent transparent #2199e8;
  border-left-style: solid;
  border-right-width: 0;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}

.js-drilldown-back > a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent #2199e8 transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown-pane {
  background-color: #fff;
  border: 1px solid #cacaca;
  border-radius: 0;
  display: block;
  font-size: 1rem;
  padding: 1rem;
  position: absolute;
  visibility: hidden;
  width: 300px;
  z-index: 10;
}
.dropdown-pane.is-open {
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 0;
  top: 100%;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 0;
  top: 100%;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 1.5rem;
  position: relative;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: #2199e8 transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  right: 5px;
  margin-top: -2px;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left .is-dropdown-submenu {
  left: auto;
  right: 100%;
}
.dropdown.menu.vertical > li.opens-right .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
  margin-top: -3px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #2199e8 transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #2199e8;
  border-left-style: solid;
  border-right-width: 0;
}
@media screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.medium-vertical > li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.large-vertical > li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 71.875em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  left: auto;
  right: 0;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -2px;
}
.is-dropdown-submenu-parent.opens-inner .is-dropdown-submenu {
  top: 100%;
}
.is-dropdown-submenu-parent.opens-left .is-dropdown-submenu {
  left: auto;
  right: 100%;
}

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: #fefefe;
  border: 1px solid #cacaca;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
  margin-top: -3px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #2199e8 transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #2199e8;
  border-left-style: solid;
  border-right-width: 0;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu:not(.js-dropdown-nohover) > .is-dropdown-submenu-parent:hover > .is-dropdown-submenu, .is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.flex-video {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  margin-bottom: 1rem;
  overflow: hidden;
}
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flex-video.widescreen {
  padding-bottom: 56.25%;
}
.flex-video.vimeo {
  padding-top: 0;
}

html,
body {
  height: 100%;
}

.off-canvas-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: auto;
}

.off-canvas-wrapper-inner {
  position: relative;
  width: 100%;
  transition: transform 0.5s ease;
}
.off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
  content: " ";
  display: table;
}
.off-canvas-wrapper-inner::after {
  clear: both;
}

.off-canvas-content,
.off-canvas-content {
  min-height: 100%;
  background: #fff;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  z-index: 1;
  padding-bottom: 0.1px;
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.5);
}

.js-off-canvas-exit {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(254, 254, 254, 0.25);
  cursor: pointer;
  transition: background 0.5s ease;
}

.off-canvas {
  position: absolute;
  background: #e6e6e6;
  z-index: -1;
  max-height: 100%;
  overflow-y: auto;
  transform: translateX(0);
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.position-left {
  left: -250px;
  top: 0;
  width: 250px;
}
.is-open-left {
  transform: translateX(250px);
}

.off-canvas.position-right {
  right: -250px;
  top: 0;
  width: 250px;
}
.is-open-right {
  transform: translateX(-250px);
}

@media screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
}
@media screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
}
@media screen and (min-width: 71.875em) {
  .position-left.reveal-for-xlarge {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-xlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xlarge {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-xlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
}
.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination li {
  font-size: 0.875rem;
  margin-right: 0.0625rem;
  border-radius: 0;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  color: #0a0a0a;
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
}
.pagination a:hover,
.pagination button:hover {
  background: #e6e6e6;
}
.pagination::before, .pagination::after {
  content: " ";
  display: table;
}
.pagination::after {
  clear: both;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #2199e8;
  color: #fefefe;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #cacaca;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  content: "…";
  padding: 0.1875rem 0.625rem;
  color: #0a0a0a;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  content: "«";
  display: inline-block;
  margin-right: 0.5rem;
}

.pagination-next a::after,
.pagination-next.disabled::after {
  content: "»";
  display: inline-block;
  margin-left: 0.5rem;
}

.sticky-container {
  position: relative;
}

.sticky {
  position: absolute;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: absolute;
  left: auto;
  right: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

body.is-reveal-open {
  overflow: hidden;
}

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

.reveal {
  position: relative;
  top: 100px;
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto;
}
@media screen and (min-width: 40em) {
  .reveal .reveal {
    left: auto;
    right: auto;
    margin: 0 auto;
  }
}
.reveal.collapse {
  padding: 0;
}
@media screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 75rem;
  }
}
@media screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}
@media screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 75rem;
  }
}
.reveal.full {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  max-width: none;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 39.9375em) {
  .reveal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    max-width: none;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}
.reveal {
  display: none;
  z-index: 1006;
  padding: 1rem;
  border: 1px solid #cacaca;
  background-color: #fefefe;
  border-radius: 0;
}
@media screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column,
.reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
}

caption {
  font-weight: bold;
  padding: 0.5rem 0.625rem 0.625rem;
}

thead,
tfoot {
  background: #f8f8f8;
  color: #0a0a0a;
}
thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  font-weight: bold;
  text-align: left;
}
thead th:not(.unpadded),
thead td:not(.unpadded),
tfoot th:not(.unpadded),
tfoot td:not(.unpadded) {
  padding: 0.5rem 0.625rem 0.625rem;
}

tbody tr:nth-child(even) {
  background-color: #f1f1f1;
}
tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover tr:hover {
  background-color: #f9f9f9;
}
table.hover tr:nth-of-type(even):hover {
  background-color: #ececec;
}

.table-scroll {
  overflow-x: auto;
}
.table-scroll table {
  width: auto;
}

.tabs {
  margin: 0;
  list-style-type: none;
  background: #fefefe;
  border: 1px solid #e6e6e6;
}
.tabs::before, .tabs::after {
  content: " ";
  display: table;
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  width: auto;
  float: none;
  display: block;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #2199e8;
}
.tabs.primary > li > a {
  color: #fff;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #1893e4;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  line-height: 1;
  font-size: 0.75rem;
}
.tabs-title > a:hover {
  background: #fefefe;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #e6e6e6;
}

.tabs-content {
  background: #fefefe;
  transition: all 0.5s ease;
  border: 1px solid #e6e6e6;
  border-top: 0;
}

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}

.has-tip {
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip {
  background-color: #0a0a0a;
  color: #fefefe;
  font-size: 80%;
  padding: 0.75rem;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.6495rem);
  max-width: 10rem !important;
  border-radius: 0;
}
.tooltip::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #0a0a0a;
  border-bottom-style: solid;
  border-top-width: 0;
  bottom: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: #0a0a0a transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  top: 100%;
  bottom: auto;
}
.tooltip.left::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent transparent #0a0a0a;
  border-left-style: solid;
  border-right-width: 0;
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent #0a0a0a transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 39.9375em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

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

@media screen and (min-width: 64em) and (max-width: 71.8125em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em), screen and (min-width: 71.875em) {
  .show-for-large-only {
    display: none !important;
  }
}

@media screen and (min-width: 71.875em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

@media screen and (max-width: 71.8125em) {
  .show-for-xlarge {
    display: none !important;
  }
}

@media screen and (min-width: 71.875em) and (max-width: 89.9375em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 71.8125em), screen and (min-width: 90em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.float-left, .left {
  float: left !important;
}

.float-right, .right {
  float: right !important;
}

.float-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

/**
 * Base & Typography and other general styles
 */
/* General */
img {
  transition: 0.2s color ease, 0.2s background ease, 0.2s opacity ease, 0.2s transform ease;
}

iframe {
  max-width: 100%;
  border: 0;
}

hr {
  margin: 25px auto;
}
hr.alt {
  margin: 16px 0px 20px;
}

.divider {
  background-color: #f15c2c;
  height: 4px;
  width: 5rem !important;
}

.divider-short {
  background-color: #f15c2c;
  height: 4px;
  width: 2.5rem !important;
}

table {
  width: 100%;
  line-height: 1.4;
  font-size: 13px;
}
table thead th, table thead td, table tfoot th, table tfoot td {
  padding-top: 12px;
  padding-bottom: 12px;
}
table th, table td {
  text-align: left;
  line-height: inherit;
}
table th p, table td p {
  line-height: inherit;
  margin-bottom: 12px;
}
table th p:last-child, table td p:last-child {
  margin-bottom: 0;
}
table.downloads-section__table td {
  white-space: nowrap;
}

a.noUnderline {
  text-decoration: none;
}

.orangeCol {
  color: #f15c2c;
}

.greyBackground {
  background-color: rgba(0, 0, 0, 0.05);
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-1 {
  margin-left: 0.5em !important;
}

.mr-1 {
  margin-right: 0.5em !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pt-1 {
  padding-top: 0.5em !important;
}

.pt-2 {
  padding-top: 1em !important;
}

.pl-1 {
  padding-left: 0.5em !important;
}

@media screen and (min-width: 40em) {
  .pr-m-0 {
    padding-right: 0 !important;
  }
  .pl-m-0 {
    padding-left: 0 !important;
  }
  .pr-m-2 {
    padding-right: 15px !important;
  }
  .pl-m-2 {
    padding-left: 15px !important;
  }
}
.pt-3 {
  padding-top: 1.5em;
}

.pt-4 {
  padding-top: 2em;
}

.text-nowrap {
  white-space: nowrap;
}

.row.noMargins {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.tooltip.debug {
  white-space: pre-line;
}

.has-tip.debug {
  border-bottom: none;
}

.center {
  text-align: center;
}

.wppb-warning {
  background: #ec5840 !important;
  padding: 20px;
  font-size: 1.06em;
}

p.wppb-warning,
p.wppb-warning a {
  color: #fff;
}

.feature-btn {
  display: inline-block;
  white-space: nowrap;
  padding: 0.4rem 1rem;
  background-color: #ec5840;
  height: 2.5rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}

.btn-primary {
  position: relative;
  text-decoration: none;
  background-color: #f15c2c;
  padding: 0.5rem 1.5rem;
  color: #fff;
  display: inline-block;
  width: fit-content;
  height: fit-content;
  border: 1px solid #f15c2c;
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
  background-color: transparent;
  color: #f15c2c;
}

.btn-secondary {
  position: relative;
  display: inline-block;
  margin-top: 3rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #f15c2c;
  color: #f15c2c;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.btn-secondary:hover {
  background-color: #f15c2c;
  color: #fff;
}

.linkedin {
  display: block;
  height: 30px;
  width: 30px;
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/linkedIn.svg");
  transition: all 0.3s ease-in-out;
  background-repeat: no-repeat;
}
.linkedin:hover {
  opacity: 0.7;
}

.btn-tertiary {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 3rem;
  text-decoration: none;
}
.btn-tertiary span {
  padding-right: 1rem;
  transition: all 0.3s ease-in-out;
}
.btn-tertiary:hover span:first-of-type {
  color: #000000;
  padding-right: 1.5rem;
}

.mobile-only-side-content {
  display: none;
}

@media screen and (max-width: 1025px) {
  .mobile-only-side-content {
    display: block;
  }
  .create-account {
    min-height: 65rem !important;
  }
}
.account-nav {
  min-width: 10rem;
}

.create-account {
  max-width: 60rem !important;
  min-height: 40rem;
}

body {
  min-width: 320px;
  line-height: 1.6;
}

p, ul, ol, dl {
  line-height: 1.6;
  margin-bottom: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 100;
  line-height: 1.3;
  margin-top: 30px;
  margin-bottom: 16px;
}

h1 {
  line-height: 1.1;
}

h2 {
  line-height: 1.15;
}

h3 {
  line-height: 1.2;
  font-weight: 700;
}

h4 {
  font-weight: 300;
}
h4.sub {
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 10px;
}
h4.alt {
  font-weight: 700;
}

h5 {
  font-weight: 500;
}
h5.sub {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 16px;
}

h6 {
  font-weight: 300;
  font-weight: 300;
  font-size: 0.8rem;
  margin-top: 0 !important;
}

a {
  color: #f15c2c;
  text-decoration: underline;
}
a:hover, a:focus, a:active {
  color: #f4815c;
}

b {
  font-weight: 900;
}

abbr.required {
  border-bottom: 0;
  cursor: default;
}

.collapse-top {
  margin-top: 0;
}

.collapse-bottom {
  margin-bottom: 0;
}

.clear, .list-pricing li, #pass-strength-result:after, .wppb-form-field:not(:first-child), .autocomplete-suggestion, .woocommerce-MyAccount-navigation ul, .media, .list-specifications li, .spacer, .gform_wrapper .gfield, .gform_wrapper .gform_fields, .gform_wrapper .gf_clear {
  clear: both;
}
.clear:before, .clear:after, .list-pricing li:before, .wppb-form-field:not(:first-child):before, .autocomplete-suggestion:before, .woocommerce-MyAccount-navigation ul:before, .media:before, .list-specifications li:before, .spacer:before, .gform_wrapper .gfield:before, .gform_wrapper .gform_fields:before, .gform_wrapper .gf_clear:before, .list-pricing li:after, #pass-strength-result:after, .wppb-form-field:not(:first-child):after, .autocomplete-suggestion:after, .woocommerce-MyAccount-navigation ul:after, .media:after, .list-specifications li:after, .spacer:after, .gform_wrapper .gfield:after, .gform_wrapper .gform_fields:after, .gform_wrapper .gf_clear:after {
  content: "";
  display: table;
}
.clear:after, .list-pricing li:after, #pass-strength-result:after, .wppb-form-field:not(:first-child):after, .autocomplete-suggestion:after, .woocommerce-MyAccount-navigation ul:after, .media:after, .list-specifications li:after, .spacer:after, .gform_wrapper .gfield:after, .gform_wrapper .gform_fields:after, .gform_wrapper .gf_clear:after {
  clear: both;
}

.vertical-align {
  display: table;
  width: 100%;
  height: 100%;
}
.vertical-align > .inner {
  display: table-cell;
  vertical-align: middle;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

.vertical-line-center {
  position: relative;
}
.vertical-line-center:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: #eee;
}

/* WordPress classes */
.alignleft {
  float: left;
  margin: 5px 15px 24px 0px;
}

.alignright {
  float: right;
  margin: 5px 0px 24px 15px;
}

.aligncenter {
  display: block;
  margin: 30px auto;
}

.alignnone {
  display: block;
  margin: 30px 0px;
}

.wp-caption {
  max-width: 100%;
  text-align: right;
  color: #999;
}

.wp-caption .wp-caption-text {
  margin: 5px 0px 0px;
  font-size: 14px;
}

label {
  line-height: 1.3;
  font-size: 16px;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 5px;
}
label [type=file], label [type=checkbox], label [type=radio] {
  margin-bottom: 4px;
}
label > input[type=checkbox], label > input[type=radio] {
  vertical-align: middle;
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color], textarea, select {
  height: 44px;
  padding: 10px 15px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 300;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0);
  background-color: #eee;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus, textarea:focus, select:focus {
  box-shadow: none;
  background-color: #eee;
}
[type=text].large, [type=password].large, [type=date].large, [type=datetime].large, [type=datetime-local].large, [type=month].large, [type=week].large, [type=email].large, [type=number].large, [type=search].large, [type=tel].large, [type=time].large, [type=url].large, [type=color].large, textarea.large, select.large {
  height: 52px;
  font-size: 17px;
  padding: 15px 18px;
}
table [type=text], table [type=password], table [type=date], table [type=datetime], table [type=datetime-local], table [type=month], table [type=week], table [type=email], table [type=number], table [type=search], table [type=tel], table [type=time], table [type=url], table [type=color], table textarea, table select {
  border-color: #eee;
  margin-bottom: 0;
}
[type=text]:disabled, [type=text][readonly], [type=password]:disabled, [type=password][readonly], [type=date]:disabled, [type=date][readonly], [type=datetime]:disabled, [type=datetime][readonly], [type=datetime-local]:disabled, [type=datetime-local][readonly], [type=month]:disabled, [type=month][readonly], [type=week]:disabled, [type=week][readonly], [type=email]:disabled, [type=email][readonly], [type=number]:disabled, [type=number][readonly], [type=search]:disabled, [type=search][readonly], [type=tel]:disabled, [type=tel][readonly], [type=time]:disabled, [type=time][readonly], [type=url]:disabled, [type=url][readonly], [type=color]:disabled, [type=color][readonly], textarea:disabled, textarea[readonly], select:disabled, select[readonly] {
  background-color: #fff;
  border-color: transparent;
  border-bottom: 1px dashed #ddd;
  color: #555;
  cursor: default;
  pointer-events: none;
}

input[type=number] {
  padding-right: 10px;
}

.label-checkbox {
  font-weight: 400;
  margin-top: 6px;
  margin-bottom: 17px;
  display: inline-block;
}
.label-checkbox > input[type=checkbox], .label-checkbox > input[type=radio] {
  float: left;
  margin-top: 2px;
  margin-right: 7px;
}

.form-description, #pass-strength-result, .wppb-form-error {
  display: block;
  margin-top: -10px;
  font-style: italic;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 16px;
}

input::placeholder, textarea::placeholder {
  color: #999;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
}
input::placeholder, textarea::placeholder {
  color: #999;
}
input:disabled, input[readonly], textarea:disabled, textarea[readonly] {
  border: 1px solid #eee !important;
}
input:disabled::placeholder, input[readonly]::placeholder, textarea:disabled::placeholder, textarea[readonly]::placeholder {
  color: #ccc;
}
input:disabled::-webkit-input-placeholder, input[readonly]::-webkit-input-placeholder, textarea:disabled::-webkit-input-placeholder, textarea[readonly]::-webkit-input-placeholder {
  color: #ccc;
}
input:disabled::-moz-placeholder, input[readonly]::-moz-placeholder, textarea:disabled::-moz-placeholder, textarea[readonly]::-moz-placeholder {
  color: #ccc;
}
input:disabled:-ms-input-placeholder, input[readonly]:-ms-input-placeholder, textarea:disabled:-ms-input-placeholder, textarea[readonly]:-ms-input-placeholder {
  color: #ccc;
}
input:disabled::placeholder, input[readonly]::placeholder, textarea:disabled::placeholder, textarea[readonly]::placeholder {
  color: #ccc;
}

select:disabled, select[readonly] {
  border: 1px solid #eee !important;
}

input.submitted, textarea.submitted, select.submitted {
  background-color: #f8f8f8 !important;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  height: 44px;
  padding: 10px 15px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 300;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0);
  background-color: #eee;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
  margin-top: -10px;
  border-color: #eee;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  margin-bottom: 0;
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__clear span {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #eee;
  margin-bottom: 0;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable, .select2-container--default .select2-results__option--highlighted {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable, .select2-container--classic .select2-results__option--highlighted {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 0px !important;
  padding-right: 0px;
}

.gform_wrapper {
  margin: 30px 0px;
}
.gform_wrapper form, .gform_wrapper form .gform_body {
  position: relative;
}
.gform_wrapper form {
  margin-bottom: 0;
}
.gform_wrapper .gform_fields {
  list-style: none;
  margin: 0px -10px;
}
.gform_wrapper .gfield {
  padding: 0px 10px;
  margin-bottom: 16px;
}
.gform_wrapper .gfield input[type=text],
.gform_wrapper .gfield input[type=password],
.gform_wrapper .gfield input[type=email],
.gform_wrapper .gfield input[type=number],
.gform_wrapper .gfield input[type=tel],
.gform_wrapper .gfield input[type=url],
.gform_wrapper .gfield textarea,
.gform_wrapper .gfield select {
  margin-bottom: 5px;
}
.gform_wrapper .gfield.gfield_visibility_hidden {
  display: none;
}
.gform_wrapper .gf_left_half, .gform_wrapper .gf_right_half {
  width: 50%;
  float: left;
  clear: none;
}
.gform_wrapper .gf_left_half {
  clear: left !important;
}
.gform_wrapper .gf_left_half:after {
  display: none;
}
.gform_wrapper .gfield_checkbox input, .gform_wrapper .gfield_radio input {
  margin: 5px 0px 0px;
  float: left;
}
.gform_wrapper .gfield_checkbox label, .gform_wrapper .gfield_radio label {
  margin-left: 20px;
}
.gform_wrapper .gform_validation_container {
  display: none;
}
.gform_wrapper .gfield_error input, .gform_wrapper .gfield_error select, .gform_wrapper .gfield_error textarea {
  border-color: #f15c2c !important;
}
.gform_wrapper .gfield .validation_message {
  color: #f15c2c;
  text-align: right;
  font-size: 13px;
}
.gform_wrapper .gfield_description {
  margin: 0px 0px 5px;
  line-height: 1.1;
}
.gform_wrapper .ginput_complex {
  margin: 0px -15px;
}
.gform_wrapper .ginput_complex .ginput_left, .gform_wrapper .ginput_complex .ginput_right, .gform_wrapper .ginput_complex .ginput_full, .gform_wrapper .ginput_complex .name_first, .gform_wrapper .ginput_complex .name_last {
  float: left;
  padding: 0px 15px 7px;
}
.gform_wrapper .ginput_complex .ginput_left, .gform_wrapper .ginput_complex .ginput_right, .gform_wrapper .ginput_complex .name_first, .gform_wrapper .ginput_complex .name_last {
  width: 50%;
}
.gform_wrapper .ginput_complex .ginput_full {
  width: 100%;
}
.gform_wrapper .ginput_complex input, .gform_wrapper .ginput_complex textarea, .gform_wrapper .ginput_complex select {
  margin-bottom: 3px !important;
}
.gform_wrapper .ginput_complex span label {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  margin-bottom: 1px;
}
.gform_wrapper .ginput_container_time {
  float: left;
  width: 39%;
  max-width: 120px;
  padding-right: 15px;
}
.gform_wrapper .ginput_container_time label {
  width: 32%;
  float: left;
  padding-top: 18px;
  padding-right: 8px;
  font-weight: 400;
  font-size: 12px;
  text-align: right;
}
.gform_wrapper .ginput_container_time input, .gform_wrapper .ginput_container_time select {
  float: left;
  width: 68%;
  padding-left: 10px;
  padding-right: 6px;
}
.gform_wrapper .ginput_container_time i {
  display: none;
}
.gform_wrapper .ginput_container_time.gfield_time_ampm {
  width: 22%;
  max-width: 80px;
  padding-left: 10px;
  padding-right: 0;
}
.gform_wrapper .ginput_container_time.gfield_time_ampm label {
  display: none;
}
.gform_wrapper .ginput_container_time.gfield_time_ampm select {
  padding-left: 6px;
  text-align: center;
  width: 100%;
}
.gform_wrapper .gform_footer {
  margin-top: 20px;
}
.gform_wrapper .button, .gform_wrapper .button-primary {
  margin-bottom: 0;
}
.gform_wrapper .gform_ajax_spinner {
  position: absolute;
  bottom: 10px;
  margin-left: -15px;
  padding: 2px;
  background: white;
  border-radius: 100%;
}
.gform_wrapper .validation_error {
  background: #ec5840;
  color: white;
  padding: 15px;
  margin-bottom: 25px;
  line-height: 1.3;
}
.gform_wrapper #left-col {
  float: left;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  margin-bottom: 0;
}
.gform_wrapper #left-col ul {
  width: 100%;
  list-style-type: none;
  margin: 0;
}
.gform_wrapper #left-col li {
  padding-left: 0;
  padding-right: 0;
}
.gform_wrapper li.gfield.hidden_label label {
  display: none;
}
.gform_wrapper #right-col {
  float: right;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  margin-bottom: 0;
}
.gform_wrapper #right-col ul {
  width: 100%;
  list-style-type: none;
  margin: 0;
}
.gform_wrapper #right-col li {
  padding-left: 0;
  padding-right: 0;
}
.gform_wrapper ul.blank {
  clear: both;
  display: none;
}
.gform_wrapper input[readonly] {
  border: 1px solid #eee;
}
.gform_wrapper .gf_left_half, .gform_wrapper .gf_right_half {
  width: 100%;
}
@media screen and (min-width: 64em) {
  .gform_wrapper #left-col {
    padding-right: 15px;
  }
  .gform_wrapper #right-col {
    padding-left: 15px;
  }
}

#gform_3 .gform_footer {
  position: relative;
  top: 20px;
}

#field_6_1,
#field_6_2 {
  max-width1: 30em;
}

#field_6_2,
#field_6_2 input {
  margin-bottom: 0;
}

#gform_6 .gform_footer::before,
#gform_6 .gform_footer::after {
  content: " ";
  display: table;
  clear: both;
}

#gform_submit_button_6 {
  float: right;
  padding: 12px 30px;
  font-size: 22px;
  line-height: 26px;
}

.gform_confirmation_message {
  margin: 0px 0px;
  padding: 15px;
  background: #5da423;
  color: white;
  line-height: 1.3;
  font-size: 1.1em;
}
.gform_confirmation_message.error {
  background: #ec5840 !important;
}
.gform_confirmation_message.error a {
  color: #fff !important;
}
.gform_confirmation_message.notice {
  background: #5da423 !important;
}
.gform_confirmation_message.success, .gform_confirmation_message #wppb_form_success_message {
  margin-bottom: 0;
  background: #5da423;
}

#gform_submit_button_3 {
  float: right;
  margin-left: 1em;
  padding: 12px 30px;
  font-size: 22px;
  line-height: 26px;
  clear: both;
}

#gform_submit_button_3_ro {
  float: right;
  margin-left: 1em;
  padding: 12px 30px;
  font-size: 22px;
  line-height: 26px;
  clear: both;
}

#gform_confirmation_wrapper_2 {
  clear: both;
  padding-top: 1em;
}

#gform_wrapper_7 .gfield_label {
  display: none;
}

#gform_wrapper_7 .gform_footer {
  margin-top: 0;
}

#gform_submit_button_7 {
  padding: 12px 30px;
  font-size: 22px;
  line-height: 26px;
  padding-left: 40px;
  padding-right: 40px;
}

#gform_submit_button_3_to_thanks {
  padding: 12px 30px;
  font-size: 22px;
  line-height: 26px;
}

#gform_wrapper_8 .gf_left_half,
#gform_wrapper_8 .gf_right_half {
  width: 50% !important;
}
#gform_wrapper_8 .gf_list_4col {
  width: 25%;
  float: left;
  clear: right;
}
#gform_wrapper_8 ul.gfield_radio li {
  list-style: none !important;
  display: inline-block !important;
}
#gform_wrapper_8 .gfield_checkbox label,
#gform_wrapper_8 .gfield_radio label {
  margin-top: 0 !important;
}
#gform_wrapper_8 [type=text].small,
#gform_wrapper_8 [type=password].small,
#gform_wrapper_8 [type=date].small,
#gform_wrapper_8 [type=datetime].small,
#gform_wrapper_8 [type=datetime-local].small,
#gform_wrapper_8 [type=month].small,
#gform_wrapper_8 [type=week].small,
#gform_wrapper_8 [type=email].small,
#gform_wrapper_8 [type=number].small,
#gform_wrapper_8 [type=search].small,
#gform_wrapper_8 [type=tel].small,
#gform_wrapper_8 [type=time].small,
#gform_wrapper_8 [type=url].small,
#gform_wrapper_8 [type=color].small,
#gform_wrapper_8 textarea.small,
#gform_wrapper_8 select.small {
  max-width: 120px;
  float: left;
  margin-right: 10px;
}
#gform_wrapper_8 .gfield_description {
  display: inline-block;
  padding-top: 15px;
}

.gform_wrapper .gfield.gfield_visibility_hidden {
  display: none !important;
}

.name_dictionary_search.row {
  max-width: 480px;
}

.name_directory_index.pagination {
  line-height: 1;
  padding-right: 5px;
  margin-bottom: 30px;
}
.name_directory_index.pagination li {
  float: left;
  margin: 0px -1px -1px 0px;
  border: 1px solid #eee;
  border-bottom-width: 1px;
  font-size: 13px;
  text-transform: uppercase;
  display: block;
}
.name_directory_index.pagination li:not(:last-child) {
  border-right-width: 1px;
}
.name_directory_index.pagination a {
  text-decoration: none;
  padding: 7px 8px;
  color: #999;
  background: none;
}
.name_directory_index.pagination a:hover, .name_directory_index.pagination a:focus, .name_directory_index.pagination a:active {
  background: #eee;
}

.product-name a {
  color: inherit;
  text-decoration: none;
}

.product-remove {
  text-align: right;
}
.product-remove a {
  text-decoration: none;
}

dl.variation {
  line-height: 1;
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 14px;
}
dl.variation dt, dl.variation dd {
  font-weight: 400;
  display: inline-block;
  margin: 0;
}
dl.variation dd:after {
  content: "";
  display: table;
  clear: both;
}

.cart_totals {
  max-width: 450px;
  margin-left: auto;
}
.cart_totals .button, .cart_totals .button-primary {
  float: right;
}

.woocommerce-billing-fields, .woocommerce-shipping-fields, .wc-payment-form {
  margin-left: -8px;
  margin-right: -8px;
}
.woocommerce-billing-fields .form-row, .woocommerce-shipping-fields .form-row, .wc-payment-form .form-row {
  line-height: 1;
  margin: 0;
  padding-left: 8px;
  padding-right: 8px;
  float: left;
  width: 100%;
}
.woocommerce-billing-fields .form-row > label, .woocommerce-shipping-fields .form-row > label, .wc-payment-form .form-row > label {
  font-size: 16px;
  font-weight: 400;
}
.woocommerce-billing-fields .form-row [type=text], .woocommerce-billing-fields .form-row [type=password], .woocommerce-billing-fields .form-row [type=date], .woocommerce-billing-fields .form-row [type=datetime], .woocommerce-billing-fields .form-row [type=datetime-local], .woocommerce-billing-fields .form-row [type=month], .woocommerce-billing-fields .form-row [type=week], .woocommerce-billing-fields .form-row [type=email], .woocommerce-billing-fields .form-row [type=number], .woocommerce-billing-fields .form-row [type=search], .woocommerce-billing-fields .form-row [type=tel], .woocommerce-billing-fields .form-row [type=time], .woocommerce-billing-fields .form-row [type=url], .woocommerce-billing-fields .form-row [type=color], .woocommerce-billing-fields .form-row textarea, .woocommerce-billing-fields .form-row select, .woocommerce-shipping-fields .form-row [type=text], .woocommerce-shipping-fields .form-row [type=password], .woocommerce-shipping-fields .form-row [type=date], .woocommerce-shipping-fields .form-row [type=datetime], .woocommerce-shipping-fields .form-row [type=datetime-local], .woocommerce-shipping-fields .form-row [type=month], .woocommerce-shipping-fields .form-row [type=week], .woocommerce-shipping-fields .form-row [type=email], .woocommerce-shipping-fields .form-row [type=number], .woocommerce-shipping-fields .form-row [type=search], .woocommerce-shipping-fields .form-row [type=tel], .woocommerce-shipping-fields .form-row [type=time], .woocommerce-shipping-fields .form-row [type=url], .woocommerce-shipping-fields .form-row [type=color], .woocommerce-shipping-fields .form-row textarea, .woocommerce-shipping-fields .form-row select, .wc-payment-form .form-row [type=text], .wc-payment-form .form-row [type=password], .wc-payment-form .form-row [type=date], .wc-payment-form .form-row [type=datetime], .wc-payment-form .form-row [type=datetime-local], .wc-payment-form .form-row [type=month], .wc-payment-form .form-row [type=week], .wc-payment-form .form-row [type=email], .wc-payment-form .form-row [type=number], .wc-payment-form .form-row [type=search], .wc-payment-form .form-row [type=tel], .wc-payment-form .form-row [type=time], .wc-payment-form .form-row [type=url], .wc-payment-form .form-row [type=color], .wc-payment-form .form-row textarea, .wc-payment-form .form-row select {
  margin-bottom: 8px;
}
.woocommerce-billing-fields .form-row-first, .woocommerce-billing-fields .form-row-last, .woocommerce-shipping-fields .form-row-first, .woocommerce-shipping-fields .form-row-last, .wc-payment-form .form-row-first, .wc-payment-form .form-row-last {
  width: 50%;
}

.wc-credit-card-form {
  max-width: 400px;
}

#place_order.button, #place_order.button-primary {
  padding: 12px 30px;
  font-size: 22px;
  line-height: 26px;
  font-size: 1.25rem;
}

.reset_variations {
  display: none !important;
}

.variations label[for=size] {
  display: none;
}

.woocommerce-variation-price {
  text-align: right;
  font-size: 14px;
}
.woocommerce-variation-price .price {
  margin-top: -10px;
  padding-bottom: 20px;
}

.large {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}

.spacer {
  margin-bottom: 50px;
}
.spacer--small {
  margin-bottom: 20px;
}

.focus {
  color: #f15c2c;
}

blockquote.focus {
  padding: 0;
  margin: 50px 0px;
  border: 0;
}
blockquote.focus p {
  font-weight: 100;
  font-size: 40px;
  line-height: 1.2;
  color: #f15c2c;
}
@media screen and (min-width: 40em) {
  blockquote.focus p {
    font-size: 62px;
    line-height: 1.1;
  }
}

ul.focus {
  color: #3a383e;
  list-style: none;
  margin-left: 28px;
}
ul.focus li:before {
  color: #f15c2c;
  content: "\f111";
  font: normal normal normal 12px FontAwesome;
  position: absolute;
  line-height: inherit;
  margin-top: 5px;
  margin-left: -24px;
  width: 24px;
}

.menu .active > a {
  background: none;
}
.menu.right {
  justify-content: flex-end;
}
.menu.hollow {
  margin: 0 -10px 10px;
}
.menu.hollow a {
  color: inherit;
}
.menu.hollow > li {
  padding: 0 10px 5px;
}
.menu.hollow > li > a {
  padding: 0;
}
.menu.hollow > li > a:hover {
  text-decoration: underline;
}
.menu.hollow > li > * {
  color: inherit;
  margin: 0;
}
.menu.hollow > li > label {
  font-size: inherit;
}

@media screen and (max-width: 64rem) {
  .mobile-menu {
    display: flex;
  }
}
.mobile-menu-additional-items {
  list-style: none;
}
.mobile-menu-additional-items li a {
  text-decoration: none;
  font-size: 1rem;
  line-height: 45px !important;
  height: 45px !important;
  color: #3a383e !important;
}

/**
 * Button
 */
.button, .button-primary {
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
  background: #f15c2c;
  outline: none;
  text-decoration: none;
}
.button:hover, .button-primary:hover, .button:focus, .button-primary:focus, .button:active, .button-primary:active, .button.disabled, .disabled.button-primary {
  background: #f4815c;
}
.button.secondary, .secondary.button-primary {
  background: #ccc;
  color: #333;
}
.button.secondary:hover, .secondary.button-primary:hover, .button.secondary:focus, .secondary.button-primary:focus, .button.secondary:active, .secondary.button-primary:active, .button.secondary.disabled, .secondary.disabled.button-primary {
  color: #333;
  background: #e6e6e6;
}
.button.small, .small.button-primary {
  font-size: 16px;
  line-height: 20px;
  padding: 10px 15px;
  margin-bottom: 2px;
}
.button.large, .large.button-primary {
  padding: 12px 30px;
  font-size: 22px;
  line-height: 26px;
}
.button.hollow-icon, .hollow-icon.button-primary {
  font-size: inherit;
  margin: 0;
  border: 0;
  padding: 0;
  background: none;
  color: #333;
}
.button.hollow-icon span, .hollow-icon.button-primary span {
  display: inline-block;
  vertical-align: middle;
}
.button.hollow-icon i, .hollow-icon.button-primary i {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  opacity: 0.7;
}
.button.hollow-icon i:not(:first-child), .hollow-icon.button-primary i:not(:first-child) {
  margin-left: 8px;
}
.button.hollow-icon:hover, .hollow-icon.button-primary:hover, .button.hollow-icon:focus, .hollow-icon.button-primary:focus, .button.hollow-icon:active, .hollow-icon.button-primary:active {
  color: #000;
}
.button.hollow-icon:hover i, .hollow-icon.button-primary:hover i, .button.hollow-icon:focus i, .hollow-icon.button-primary:focus i, .button.hollow-icon:active i, .hollow-icon.button-primary:active i {
  opacity: 1;
}
.button.long, .long.button-primary {
  padding-left: 40px;
  padding-right: 40px;
}
.button.full, .full.button-primary {
  width: 100%;
}
.button.collapse, .collapse.button-primary {
  margin-bottom: 1px;
}
table .button, table .button-primary {
  margin-bottom: 0;
}
.button.disabled, .disabled.button-primary {
  opacity: 0.45;
  cursor: not-allowed;
}

.accordion--faq {
  margin-top: 5px;
  padding-left: 25px;
}
.accordion--faq, .accordion--faq .accordion-title, .accordion--faq .accordion-content {
  border: 0;
  padding: 0;
}
.accordion--faq .accordion-item {
  padding-bottom: 17px;
}
.accordion--faq .accordion-title {
  border: 0;
  text-decoration: none;
  color: #3a383e;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
}
.accordion--faq .accordion-title:before {
  top: 1px;
  right: 100%;
  width: 25px;
  font-size: 26px;
  font-weight: 500;
  color: #f15c2c;
}
.accordion--faq .accordion-title:hover, .accordion--faq .accordion-title:active, .accordion--faq .accordion-title:focus {
  background: none;
  color: #f15c2c;
}
.accordion--faq .accordion-content {
  padding-top: 10px;
}

.pagination {
  font-size: 0;
}
.pagination li {
  font-size: 16px;
  margin-right: 9px;
}
.pagination li .current {
  padding: 12px 16px;
  background-color: #191F25;
}
.pagination a {
  padding: 9px 16px;
  background: #f15c2c;
  color: #fff;
  text-decoration: none;
}
.pagination a:hover, .pagination a:focus, .pagination a:active {
  background: #f7a68c;
}

/**
 * Extensions to foundation's flex grid
 * - Added block grid functionality
 */
.row {
  max-width: 480px;
}
@media screen and (min-width: 40em) {
  .row {
    max-width: 600px;
  }
  .row.thinner {
    max-width: 570px;
  }
}
@media screen and (min-width: 64em) {
  .row {
    max-width: 1020px;
  }
  .row.thin {
    max-width: 760px;
  }
}
@media screen and (min-width: 71.875em) {
  .row {
    max-width: 1140px;
  }
}

.column.spaced, .columns.spaced {
  padding-bottom: 40px;
}

.row .row.collapse {
  margin-left: 0;
  margin-right: 0;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row.collapse.nest .row {
  margin-left: 0;
  margin-right: 0;
}
.row.collapse.nest .row > .column, .row.collapse.nest .row > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row.gutter-large {
  margin-left: -25px;
  margin-right: -25px;
}
.row.gutter-large > .columns {
  padding-left: 25px;
  padding-right: 25px;
}
.row.gutter-small {
  margin-left: -8px;
  margin-right: -8px;
}
.row.gutter-small > .columns {
  padding-left: 8px;
  padding-right: 8px;
}
.row.gutter-tiny {
  margin-left: -1px;
  margin-right: -1px;
}
.row.gutter-tiny > .columns {
  padding-left: 1px;
  padding-right: 1px;
}

ul.row {
  list-style: none;
}

.block.row {
  margin: 0px -15px;
}
.block.row .column, .block.row .columns {
  padding: 0px 15px 35px;
}

.list-specifications {
  line-height: 1.4;
  list-style: none;
  margin-left: 0;
}
.list-specifications li {
  margin-bottom: 8px;
}
.list-specifications .name {
  float: left;
  padding-right: 5px;
  width: 125px;
  opacity: 0.8;
}
.list-specifications .value {
  overflow: hidden;
}

.list-filter {
  list-style: none;
  margin-left: 0;
}
.list-filter li {
  margin-bottom: 2px;
}
.list-filter a {
  background: #3a383e;
  color: #eee;
  display: block;
  padding: 6px 7px;
  padding-right: 10px;
  font-size: 15px;
  line-height: 20px;
  text-align: right;
}
.list-filter a:before {
  content: "×";
  background: #eee;
  color: #3a383e;
  font-weight: 700;
  float: left;
  margin-top: 1px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 16px;
  margin-right: 10px;
  text-align: center;
  opacity: 0.8;
  border-radius: 100%;
}
.list-filter a:hover {
  background: #535059;
  color: #fff;
}
.list-filter a:hover:before {
  background: #fff;
  opacity: 1;
}

.group-list {
  list-style: none;
  margin-left: 15px;
  color: #777;
  line-height: 1.2;
}
.group-list li {
  margin-bottom: 4px;
}
.group-list li:before {
  content: "-";
  position: absolute;
  margin-left: -15px;
}
.group-list li.active a {
  font-weight: 900;
  color: #222;
}

#error-all-restricted-courier {
  color: #f15c2c;
  margin-top: 24px;
}

#details-shipping p.errors {
  display: none;
  color: #f15c2c;
}
#details-shipping #debugForce {
  float: right;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
}
#details-shipping .use-this-address {
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
}

.list-couriers {
  margin-top: 24px;
}
.list-couriers label {
  margin-bottom: 18px;
  padding-right: 0px;
  font-weight: 400;
  line-height: 1.3;
  cursor: pointer;
}
.list-couriers .courier-name {
  font-weight: 700;
  padding-bottom: 4px;
}
.list-couriers .courier-name a {
  display: inline-block;
  padding-left: 5px;
}
.list-couriers .courier-name .fa {
  font-size: 1.2em;
}
.list-couriers .courier-estimate, .list-couriers .courier-total {
  font-size: 15px;
  font-weight: 400;
  padding: 2px 0;
}
.list-couriers .courier-field {
  order: 99;
}
.list-couriers input[type=radio], .list-couriers input[type=checkbox] {
  float: right;
  margin-top: 4px;
}
.list-couriers .has-tip {
  border-bottom: none;
}
.list-couriers input[type=text] {
  margin-bottom: 0;
}
.list-couriers .error input[type=text] {
  border-color: #dd4141 !important;
}
.list-couriers .validation_message {
  text-align: right;
  font-size: 13px;
  color: #dd4141;
  line-height: 2.1;
  display: none;
}
.list-couriers .validation_message.show {
  display: block;
}
@media screen and (min-width: 40em) {
  .list-couriers label {
    padding-right: 20px;
  }
}

.tooltip {
  background-color: #f15c2c;
  color: #fefefe;
  font-size: 80%;
  padding: 0.75rem;
  top: calc(100% + 0.6495rem);
  border-radius: 0;
}

.tooltip.top::before {
  border: inset 0.75rem;
  border-color: #f15c2c transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  top: 100%;
  bottom: auto;
}

.site-alert {
  margin: 4rem 0 15px;
  padding: 20px 20px;
}
.site-alert .button, .site-alert .button-primary {
  float: right;
  margin: -7px 0;
  margin-left: 15px;
  padding: 8px 20px;
  font-size: 16px;
}
.site-alert p {
  margin-bottom: 5px;
}
.site-alert p:last-child {
  margin-bottom: 0;
}
.site-alert.success, .site-alert #wppb_form_success_message {
  background: #bbf3d0;
}
.site-alert.success .button, .site-alert.success .button-primary, .site-alert #wppb_form_success_message .button, .site-alert #wppb_form_success_message .button-primary {
  background: #fff;
  color: #000;
}
.site-alert.error {
  background: #ec5840;
  color: #fff;
}
.site-alert.error a {
  color: #fff !important;
}
.site-alert.error .button, .site-alert.error .button-primary {
  background: #fff;
  color: #000 !important;
}
.site-alert.warning {
  background: #f48424;
  color: #2c3427;
}
.site-alert.warning a {
  color: #fff !important;
}
.site-alert.warning .button, .site-alert.warning .button-primary {
  background: #fff;
  color: #000 !important;
}
.site-alert.debug {
  background: #000;
  color: #fff;
  margin-bottom: 0;
}
.site-alert.debug a {
  color: #fff !important;
}
.site-alert.debug .button, .site-alert.debug .button-primary {
  background: #fff;
  color: #000;
}
.site-alert.debug pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

.page-template-page-downloads .site-alert {
  margin-bottom: 0;
}

.wrapper > .site-alert-row:first-child {
  margin-top: 15px;
}

.cart-table {
  border: 0;
  margin-bottom: 20px;
  font-size: 16px;
}
.cart-table thead, .cart-table tbody, .cart-table tfoot, .cart-table th, .cart-table td, .cart-table tbody tr:nth-child(even) {
  background: none;
  border: 0;
}
.cart-table tr {
  vertical-align: top;
}
.cart-table .name {
  color: #333;
  font-weight: 700;
  text-decoration: none;
}
.cart-table input {
  width: auto;
  max-width: 100px;
}
.cart-table th, .cart-table td {
  padding: 10px 5px;
  border-bottom: 1px solid #eee;
}
.cart-table th:first-child, .cart-table td:first-child {
  padding-left: 0;
}
.cart-table th:last-child, .cart-table td:last-child {
  text-align: right;
  padding-right: 0;
}
.cart-table .feedback {
  display: none;
  color: #f15c2c;
  float1: right;
}
.cart-table .linethrough {
  text-decoration: line-through;
}
.cart-table.large {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 30px;
}
.cart-table.large th:last-child, .cart-table.large td:last-child {
  text-align: left;
}
.cart-table.large tr:first-child th, .cart-table.large tr:first-child td {
  padding-top: 0;
}
.cart-table .stockAvailability.FG span.FG {
  color: #ec5840;
  font-weight: bold;
}
.cart-table .stockAvailability.PFG span.PFG {
  color: #ec5840;
  font-weight: bold;
}
.cart-table .dispatchTime.changed,
.cart-table .unitPrice.changed,
.cart-table .totalPrice.changed {
  color: #ec5840;
  font-weight: bold;
}
.cart-table .productSize.changed,
.cart-table .quantity.changed input {
  border: 2px solid #ec5840;
}
.cart-table.update thead {
  background-color: #3a383e;
  color: #FFF;
  font-size: 0.9em;
}
.cart-table.update tbody {
  font-size: 0.9em;
}
.cart-table.update .padLeft {
  padding-left: 10px !important;
}
.cart-table.update .padRight {
  padding-right: 10px !important;
}
.cart-table.update tbody tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.cart-table.update select,
.cart-table.update input {
  background-color: #FFF;
  border: 1px solid #3a383e;
  padding: 0px 10px;
  height: 34px;
}
.cart-table.update a {
  color: #f15c2c;
}

.side-nav {
  width: 100%;
  padding-right: 30px;
  padding-bottom: 30px;
}
.side-nav ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.2;
}
.side-nav ul li {
  margin-bottom: 10px;
}
.side-nav ul a {
  text-decoration: none;
  color: #3a383e;
}
.side-nav ul a.active, .side-nav ul a:hover, .side-nav ul a:active, .side-nav ul a:focus {
  color: #f15c2c;
}
@media screen and (min-width: 64em) {
  .side-nav {
    text-align: right;
  }
  .side-nav ul {
    margin-top: 75px;
  }
}
@media screen and (min-width: 71.875em) {
  .side-nav {
    padding-right: 0;
  }
}

.callout--search {
  border: 1px solid #e6e6e6;
  border-top: 7px solid #f15c2c;
  padding: 15px;
}
.callout--search a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #999;
}
.callout--search a:hover {
  color: #222;
}
.callout--search ul a {
  border-bottom-width: 0;
}
.callout.account-now-verified, .account-now-verified#wppb_form_success_message, .account-now-verified#wppb_register_pre_form_message, .account-now-verified#wppb_general_top_error_message, .account-now-verified.wppb-error {
  background-color: #f5e6ff;
}

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

.quantityWrapper .quantity {
  margin-bottom: 0;
}
.quantityWrapper .feedback {
  display: none;
  color: #f15c2c;
  float: right;
}

.single_add_to_cart_button {
  margin-top: 16px;
}

.media {
  display: block;
  color: inherit;
  font-size: 15px;
  margin: 20px 0;
  text-decoration: none;
}
.media:hover {
  color: inherit;
}
.media:hover .media__title {
  opacity: 0.7;
}
.media:hover .media__image {
  opacity: 0.8;
}
.media__image {
  width: 32px;
  flex: none;
  padding-right: 15px;
}
.media__image img {
  width: 100%;
}
.media__image i {
  background: #ddd;
  display: block;
  font-size: 24px;
  line-height: 47px;
  text-align: center;
  border-radius: 100%;
}
.media__content {
  overflow: hidden;
  width: 100%;
}
.media__content > :last-child {
  margin-bottom: 0;
}
.media__title {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
}

.dl-component {
  padding: 1rem 0 3rem;
}

.media__image {
  display: none;
}

.media__content {
  padding-right: 1.5rem;
  border-bottom: 1px solid #f15c2c;
}
.media__content p {
  display: none;
}

.page-downloads .inner-content a {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.page-downloads .inner-content a::after {
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 1rem;
  color: #f15c2c;
  font-family: "Material Symbols Outlined";
  content: "download";
  -webkit-font-feature-settings: "liga" 1;
  -moz-font-feature-settings: "liga" 1;
  font-feature-settings: "liga" 1;
}

.shop_table {
  font-size: inherit;
}
.shop_table--small {
  font-size: 13px;
}
.shop_table a {
  text-decoration: none;
}
.shop_table thead, .shop_table tbody, .shop_table tfoot {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #eee;
}
.shop_table tbody tr:nth-child(even) {
  background: transparent;
}
.shop_table th, .shop_table td {
  border-bottom: 1px solid #eee;
}
.shop_table th:first-child, .shop_table td:first-child {
  padding-left: 0;
}
.shop_table th:last-child, .shop_table td:last-child {
  padding-right: 0;
}
.shop_table .qty {
  width: 80px;
}
.shop_table .product-quantity .quantity .quantity-label {
  display: none;
}

.payment_methods {
  list-style: none;
  margin-left: 0;
  margin: 20px 0 5px;
}
.payment_methods > li {
  padding-bottom: 20px;
}
.payment_methods .input-radio {
  margin-bottom: 0;
  position: relative;
  top: -1px;
  left: 1px;
}
.payment_methods .input-radio + label {
  margin: 0;
  margin-left: 11px;
  font-weight: 700;
  font-size: 18px;
}
.payment_methods .payment_box {
  margin-left: 30px;
  padding-top: 5px;
  padding-bottom: 10px;
}
.payment_methods .payment_box p {
  margin-bottom: 0;
}

.woocommerce-MyAccount-navigation {
  width: 210px;
  padding-right: 30px;
  float: left;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin-left: 0;
  line-height: 1;
  padding: 15px 0;
  border-right: 1px solid #eee;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 15px;
  padding-left: 0;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  margin-right: -1px;
  color: #000;
}
.woocommerce-MyAccount-navigation ul li:first-child a {
  border-top: 1px solid #eee;
}
.woocommerce-MyAccount-content {
  overflow: hidden;
  padding-top: 28px;
}

.downloads-section__search {
  float: left;
  width: 200px;
  border: 1px solid #8a8a8a;
}
.downloads-section__filters {
  float: right;
  margin-top: 12px;
  display: none;
}
.downloads-section__table.currentOnly tr.archived, .downloads-section__table.currentOnly tr.coming-soon {
  display: none;
}
.downloads-section img {
  height: 30px;
}
.downloads-section img.disabled {
  opacity: 0.45;
}

@media screen and (max-width: 39.9375em) {
  .downloads-section__search {
    float: none;
    width: 100%;
  }
  .downloads-section .menu.hollow {
    float: none !important;
  }
}
.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #ccc;
  padding: 5px 0;
  border-top: 0;
  background: #fff;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 200px;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  width: auto !important;
}

.autocomplete-suggestion {
  position: relative;
  padding: 5px 25px;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
}
.autocomplete-suggestion b {
  font-weight: normal;
  color: #1f8dd6;
}
.autocomplete-suggestion.selected {
  background: #f0f0f0;
}
.autocomplete-suggestion .name {
  padding-right: 1em;
}
.autocomplete-suggestion .type {
  float: right;
  opacity: 0.4;
}

ul.breadcrumbs {
  list-style-type: none;
  margin-left: 0;
  width: 100%;
  display: flex;
  margin-bottom: 1.5em;
}
ul.breadcrumbs li {
  text-align: left;
  display1: inline-block;
  width: 25%;
  position: relative;
  background-color: #999999;
}
ul.breadcrumbs li svg {
  margin-left: 1.5em;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  height: 30px;
  color: #FFF;
  fill: #FFF;
}
ul.breadcrumbs li svg .st0 {
  stroke: #FFF;
}
ul.breadcrumbs li a, ul.breadcrumbs li form {
  text-decoration: none;
  width: 100%;
  display: block;
  height: 44px;
}
ul.breadcrumbs li span, ul.breadcrumbs li .submit {
  text-align: right;
  float: right;
  color: #fff;
  margin-right: 20px;
  font-size: 1.3em;
  line-height: 44px;
  position: relative;
  border: 0;
  width: 100%;
  background-color: transparent;
}
ul.breadcrumbs li span:after, ul.breadcrumbs li span:before, ul.breadcrumbs li .submit:after, ul.breadcrumbs li .submit:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  margin-left: 20px;
}
ul.breadcrumbs li span:after, ul.breadcrumbs li .submit:after {
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #999999;
  border-width: 22px 0 22px 14px;
  margin-top: -22px;
}
ul.breadcrumbs li span:before, ul.breadcrumbs li .submit:before {
  border-color: rgba(194, 225, 245, 0);
  border-left-color: #FFF;
  border-width: 28px 0px 28px 18px;
  margin-top: -28px;
}
ul.breadcrumbs li.first {
  z-index: 90;
}
ul.breadcrumbs li.first svg {
  margin-left: 1em;
}
ul.breadcrumbs li.second {
  z-index: 89;
}
ul.breadcrumbs li.third {
  z-index: 88;
}
ul.breadcrumbs li.last span:after, ul.breadcrumbs li.last span:before {
  content: none;
}
ul.breadcrumbs li.active {
  background-color: #f15c2c;
}
ul.breadcrumbs li.active span:after, ul.breadcrumbs li.active .submit:after {
  border-left-color: #f15c2c;
}
ul.breadcrumbs li.complete {
  background-color: #333333;
}
ul.breadcrumbs li.complete span:after, ul.breadcrumbs li.complete .submit:after {
  border-left-color: #333333;
}

@media screen and (max-width: 1023px) {
  ul.breadcrumbs li {
    width: 25%;
  }
  ul.breadcrumbs li svg {
    height: 20px;
    margin-top: -10px;
  }
  ul.breadcrumbs li span, ul.breadcrumbs li .submit {
    margin-right: 0px;
    font-size: 1em;
  }
  ul.breadcrumbs li span:after, ul.breadcrumbs li span:before, ul.breadcrumbs li .submit:after, ul.breadcrumbs li .submit:before {
    margin-left: 0;
  }
  ul.breadcrumbs li.last span, ul.breadcrumbs li.last .submit {
    padding-right: 10px;
  }
}
@media screen and (max-width: 639px) {
  ul.breadcrumbs {
    display: block;
  }
  ul.breadcrumbs li {
    width: 49%;
    display: inline-block;
  }
  ul.breadcrumbs li svg {
    margin-left: 1.5em !important;
  }
  ul.breadcrumbs li span, ul.breadcrumbs li .submit {
    margin-right: 20px;
  }
  ul.breadcrumbs li span:after, ul.breadcrumbs li span:before, ul.breadcrumbs li .submit:after, ul.breadcrumbs li .submit:before {
    margin-left: 20px;
  }
  ul.breadcrumbs li.last span:after, ul.breadcrumbs li.last span:before {
    content: " ";
  }
}
.container {
  position: relative;
  background: no-repeat center center;
  background-size: cover;
  padding: 50px 0px;
}
.container.short {
  padding-top: 40px;
  padding-bottom: 40px;
}
.container.padded {
  padding-left: 15px;
  padding-right: 15px;
}
.container.dark {
  background-color: #3a383e;
  color: #fff;
}
.container.dark a {
  color: inherit;
}
.container.dark [type=text], .container.dark [type=password], .container.dark [type=date], .container.dark [type=datetime], .container.dark [type=datetime-local], .container.dark [type=month], .container.dark [type=week], .container.dark [type=email], .container.dark [type=number], .container.dark [type=search], .container.dark [type=tel], .container.dark [type=time], .container.dark [type=url], .container.dark [type=color], .container.dark textarea, .container.dark select {
  background-color: #fff;
}
.container.gray {
  background: #e5e4e6;
}
.container.with-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
}
.container > .row, .container > .inner {
  position: relative;
}
.container.container-header {
  min-height: 240px;
  display: table;
  width: 100%;
}
.container.container-header .inner {
  display: table-cell;
  vertical-align: middle;
}
.container.container-header h1 {
  margin-bottom: 24px;
}
.container.container-header p {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 300;
}
@media screen and (min-width: 40em) {
  .container.container-header {
    min-height: 400px;
  }
}
@media screen and (min-width: 64em) {
  .container.container-header {
    min-height: 480px;
  }
}
@media screen and (min-width: 64em) {
  .container {
    padding: 70px 0px;
  }
  .container .half-bg {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: -60px;
  }
  .container .half-bg.right {
    left: auto;
    right: -60px;
  }
}

.content > :first-child {
  margin-top: 0;
}
.content > :last-child {
  margin-bottom: 0;
}

.gform_wrapper {
  margin-top: 0;
}
.gform_wrapper .gfield {
  vertical-align: top;
}
.gform_wrapper .gfield.gform_hidden {
  padding: 0;
  margin: 0;
}

#gform_confirmation_message_2 .errorMessage {
  display: block;
  padding-bottom: 5px;
}
#gform_confirmation_message_2 .errorMessage button {
  text-decoration: underline;
}
.sortable thead a {
  text-decoration: none;
  display: block;
  position: relative;
}
.sortable thead a:after {
  content: " ";
  font-size: 1rem;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}
.sortable thead .headerSort {
  color: #f15c2c;
  display: block;
  position: relative;
  cursor: pointer;
}
.sortable thead .headerSort:after {
  content: " ";
  font-size: 1rem;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}
.sortable thead th {
  outline-width: 0;
}
.sortable thead th.sorter-false .headerSort {
  cursor: default;
}
.sortable .sorted-asc a:after,
.sortable .tablesorter-headerDesc .headerSort:after {
  content: "‹";
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.sortable .sorted-desc a:after,
.sortable .tablesorter-headerAsc .headerSort:after {
  content: "‹";
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.banner-coming-soon {
  text-align: left;
  color: #f15c2c;
  align-items: center;
}
.banner-coming-soon h5 {
  margin-top: 16px;
}

.pds-coming-soon-disclaimer {
  margin-bottom: 16px;
}

.crm-similar-products {
  margin-left: 0;
  list-style: none;
}

#comments ol.comment-list li.comment {
  list-style: none;
  margin-bottom: 20px;
}
#comments ol.comment-list .comment-body {
  display: block;
  position: relative;
  padding: 6px;
  margin: 10px 0px 0px 0px;
  background: antiquewhite;
  border-radius: 4px;
}
#comments ol.comment-list .says {
  display: none;
}
#comments ol.comment-list .comment-meta.commentmetadata {
  overflow: hidden;
  padding: 5px 10px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 80%;
}
#comments ol.comment-list cite.fn::before {
  display: none;
}
#comments ol.comment-list cite.fn {
  position: absolute;
  top: 0;
  left: 92px;
  font-weight: bold;
  word-break: break-all;
}
#comments ol.comment-list .comment-text {
  margin-top: -50px;
  margin-left: 93px;
}
#comments ol.comment-list .comment-author.vcard {
  position: relative;
}
#comments ol.comment-list .reply {
  text-align: right;
  position: relative;
  right: 0;
}
#comments div#respond {
  padding: 10px;
  border: 2px solid #a5a5a5;
}
#comments div#respond #cancel-comment-reply-link {
  clear: both;
  display: block;
}
#comments div#respond #reply-title {
  font-size: 1rem;
  line-height: 2;
  margin: 0px;
  margin-bottom: 10px;
}
#comments div#respond p.logged-in-as {
  display: block;
}
#comments div#respond .required-field-message {
  display: block;
  font-style: italic;
  font-size: 0.9em;
  margin-top: 10px;
}
#comments div#respond .comment-form-cookies-consent {
  position: relative;
  margin-bottom: 30px;
}
#comments div#respond .comment-form-cookies-consent label {
  cursor: pointer;
  position: absolute;
  top: -5px;
}
#comments p.form-submit input#submit {
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
  background: #f15c2c;
  outline: none;
  text-decoration: none;
  color: #fff;
}
#comments .comment-awaiting-moderation {
  color: red;
  margin-top: 8px;
  margin-bottom: 8px;
  display: block;
}

/**
* Header
*/
.home nav.right,
.blog nav.right,
.post-template-default nav.right,
.page-template-default nav.right,
.page-template nav.right,
.page-template-page-inner-page nav.right,
.page-template-page-search nav.right {
  margin-top: -4rem !important;
}
.home .site-header .logo-icon,
.blog .site-header .logo-icon,
.post-template-default .site-header .logo-icon,
.page-template-default .site-header .logo-icon,
.page-template .site-header .logo-icon,
.page-template-page-inner-page .site-header .logo-icon,
.page-template-page-search .site-header .logo-icon {
  width: 20rem;
  margin-top: 2rem;
  z-index: 9999;
  position: relative;
}
.home .logo-full,
.blog .logo-full,
.post-template-default .logo-full,
.page-template-default .logo-full,
.page-template .logo-full,
.page-template-page-inner-page .logo-full,
.page-template-page-search .logo-full {
  margin-top: 0.5rem;
  width: 10rem;
  display: none;
  z-index: 9999;
  position: relative;
}
.home .site-header.header-scrolled .logo-full,
.blog .site-header.header-scrolled .logo-full,
.post-template-default .site-header.header-scrolled .logo-full,
.page-template-default .site-header.header-scrolled .logo-full,
.page-template .site-header.header-scrolled .logo-full,
.page-template-page-inner-page .site-header.header-scrolled .logo-full,
.page-template-page-search .site-header.header-scrolled .logo-full {
  display: block;
  margin-top: 0.5rem;
  width: 10rem;
  z-index: 9999;
  position: relative;
}
.home .site-header.header-scrolled .logo-icon,
.blog .site-header.header-scrolled .logo-icon,
.post-template-default .site-header.header-scrolled .logo-icon,
.page-template-default .site-header.header-scrolled .logo-icon,
.page-template .site-header.header-scrolled .logo-icon,
.page-template-page-inner-page .site-header.header-scrolled .logo-icon,
.page-template-page-search .site-header.header-scrolled .logo-icon {
  display: none;
  z-index: 9999;
  position: relative;
}
.home .site-header.header-scrolled nav.right,
.blog .site-header.header-scrolled nav.right,
.post-template-default .site-header.header-scrolled nav.right,
.page-template-default .site-header.header-scrolled nav.right,
.page-template .site-header.header-scrolled nav.right,
.page-template-page-inner-page .site-header.header-scrolled nav.right,
.page-template-page-search .site-header.header-scrolled nav.right {
  margin-top: -2.87rem !important;
}

.site-header {
  position: fixed;
  background-color: #fff;
  width: 100%;
  top: 0;
  height: 2rem;
  z-index: 99;
  transition: all 0.1s ease-in-out;
}
.site-header nav.right {
  margin-top: -2.6rem;
}
.site-header .logo-icon {
  width: 20rem;
}
.site-header .primary {
  height: 8rem;
}
.site-header.header-scrolled {
  transition: all 0.1s ease-in-out;
  top: -3rem;
}
.site-header.header-scrolled nav.right {
  margin-top: -3.05rem;
}
.site-header.header-scrolled .primary {
  top: 0rem;
  height: 3.5rem;
}
.site-header.header-scrolled .primary .open-dialog {
  transition: all 0.3s ease-in-out;
  padding: 0.9rem;
}
.site-header.header-scrolled .primary .logo {
  transition: all 0.3s ease-in-out;
  width: 7.5rem;
}
.site-header.header-scrolled .primary .mega-menu-wrap {
  height: 3.5rem;
}
.site-header.header-scrolled #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  height: 3.5rem;
}
.site-header.header-scrolled .feature-btn {
  height: 3.55rem;
  padding: 1rem 1rem;
}
.site-header .secondary {
  background-image: linear-gradient(to right, #191F25, #191F25, #e5e4e6, #e5e4e6);
  transition: all 0.1s ease-in-out;
  z-index: 100;
  display: none;
  height: 3rem;
}
.site-header .secondary .row {
  background: #e5e4e6;
}
.site-header .secondary .columns {
  padding-left: 0;
  padding-right: 0;
}
.site-header .secondary .columns img {
  height: 3rem;
  margin-left: -6rem;
  position: absolute;
}
.site-header .secondary .menu {
  height: 3rem;
  margin-right: -15px;
}
.site-header .secondary .menu li > a,
.site-header .secondary .menu li > span {
  font-size: 1rem;
  line-height: 20px;
  padding: 1rem 25px !important;
  color: #000;
  text-decoration: none;
}
.site-header .secondary .menu li.active a, .site-header .secondary .menu a:hover, .site-header .secondary .menu a:active, .site-header .secondary .menu a:focus {
  color: #3a383e;
  background: none;
}
.site-header .secondary .menu > li > span:before {
  content: "|";
}
.site-header .secondary .menu li.small a {
  font-size: 1rem;
}
.site-header .secondary .menu li.search-box-wrapper {
  padding-bottom: 2px;
  height: 2rem;
}
.site-header .secondary .menu li.search-box-wrapper .search-box-form {
  display: flex;
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 0;
  height: 2rem;
}
.site-header .secondary .menu li.search-box-wrapper .search-box-form input {
  height: 1.8rem;
  border: none;
  font-size: 1rem;
  background-color: transparent;
}
.site-header .secondary .menu li.search-box-wrapper .search-box-form input::placeholder {
  color: #444444;
  opacity: 1; /* Firefox */
}
.site-header .secondary .menu li.search-box-wrapper .search-box-form input::-ms-input-placeholder { /* Edge 12 -18 */
  color: #444444;
}
.site-header .secondary .menu li.search-box-wrapper .search-box-form button {
  padding: 0.2rem 1rem;
  background-color: transparent;
  height: 2rem;
}
.site-header .secondary .menu li.search-box-wrapper .search-box-form span {
  color: #191F25;
  font-size: 1.1rem;
  opacity: 0.6;
}
.site-header .primary {
  background: #fff;
  height: 8rem;
  transition: all 0.1s ease-in-out;
}
.site-header .primary .open-dialog {
  padding: 1.1rem 0.9rem;
}
.site-header .primary .logo {
  transition: all 0.3s ease-in-out;
  font-size: 0;
  position: relative;
  text-decoration: none;
  padding: 10px 0px;
  width: 10rem;
}
.site-header .primary .logo img {
  display: inline-block;
  transition: 0.4s height ease;
}
.site-header .primary .logo .mark {
  height: 44px;
  width: 50px;
}
.site-header .primary .logo .type {
  margin-left: -2px;
  height: 22px;
  width: 102px;
}
.site-header .primary .logo .type.ontransparent {
  display: none;
}
.site-header .primary .logo .logofull {
  display: none;
  width: 10rem;
}
@media screen and (min-width: 64em) {
  .site-header .primary .logo .logofull {
    display: inline-block;
  }
}
.site-header .primary .logo .logofull.ontransparent {
  display: inline;
}
@media screen and (min-width: 64em) {
  .site-header .primary .logo .logofull.ontransparent {
    display: none;
  }
}
.site-header .primary .menu {
  max-width: 865px;
  margin-right: -20px;
}
.site-header .primary .menu a {
  font-size: 20px;
  color: #3a383e;
  padding: 22px 20px;
  text-decoration: none;
}
.site-header .primary .menu li.active a, .site-header .primary .menu a:hover, .site-header .primary .menu a:active, .site-header .primary .menu a:focus {
  color: #f15c2c;
  background: none;
}
@media screen and (min-width: 71.875em) {
  .site-header .primary .menu {
    margin-right: -25px;
  }
  .site-header .primary .menu a {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.site-header .primary .primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.site-header .primary .primary-menu #mega-menu-wrap-primary {
  width: 100%;
}

.dialog-menu,
.dialog-menu[open].dialog-menu--closing {
  position: fixed;
  transition: 0.3s;
  margin: 0;
  margin-left: auto;
  min-height: 100vh;
  width: 400px;
  max-width: 80%;
  transform: translateX(100%);
}

.dialog-menu[open] {
  display: flex;
  margin: 0;
  margin-left: auto;
  flex-direction: column;
  transform: translateX(0);
  transition: 0.3s;
}

.close-dialog {
  margin-left: auto;
}

.dialog-menu {
  background-color: #fff;
  border: none;
}

.dialog-menu ul {
  padding-left: 0;
  list-style: none;
}

.dialog-menu li + li {
  border-top: 1px solid white;
}

.dialog-menu a {
  display: block;
  padding-block: 1rem;
  text-decoration: none;
  color: #191F25;
}

@media screen and (min-width: 64em) {
  .site-header-spacer {
    height: 100px;
  }
  .site-header .secondary, .site-header .primary {
    position: fixed;
    width: 100%;
  }
  .site-header .secondary {
    display: block;
  }
  .site-header .primary {
    top: 32px;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
  }
  #sticky-top, #sticky-btm {
    position: relative;
    display: block;
    top: -100px;
  }
  .sticky.is-stuck.is-at-top {
    top: 100px !important;
  }
  body.admin-bar .site-header .primary {
    top: 64px;
  }
  body.admin-bar .site-header .secondary {
    top: 32px;
  }
}
/*
* Home - transparent styling
*/
@media screen and (max-width: 63.9375em) {
  body.home .primary {
    top: 0;
    position: fixed;
    width: 100%;
    box-shadow: none;
  }
  body.home .primary .logo .type {
    display: none;
  }
  body.home .primary .logo .type.ontransparent {
    display: inline;
  }
  body.home .off-canvas-toggle span {
    background: #191F25;
  }
  body.home .off-canvas-toggle:not(.scrolled) .site-header .primary .logo {
    padding: 20px 0px;
    height: 120px;
  }
  body.home .off-canvas-toggle:not(.scrolled) .site-header .primary .logo .mark {
    height: 80px;
  }
  body.home .off-canvas-toggle:not(.scrolled) .site-header .primary .logo .type {
    height: auto;
  }
  body.home .off-canvas-toggle:not(.scrolled) .site-header .primary .menu {
    padding: 30px 0px;
  }
  body.home .off-canvas-toggle:not(.scrolled) .site-header .primary .menu a {
    color: #fff;
  }
  body.home .off-canvas-toggle:not(.scrolled) .site-header .primary .menu li.active a, body.home .off-canvas-toggle:not(.scrolled) .site-header .primary .menu a:hover, body.home .off-canvas-toggle:not(.scrolled) .site-header .primary .menu a:active, body.home .off-canvas-toggle:not(.scrolled) .site-header .primary .menu a:focus {
    color: #f15c2c;
  }
}
@media screen and (min-width: 64em) {
  body.home .site-header-spacer {
    display: none;
  }
}

@media screen and (min-width: 64em) {
  body.home.transparent-header:not(.scrolled) .site-header .primary {
    top: 0;
    position: fixed;
    width: 100%;
    box-shadow: none;
  }
  body.home.transparent-header:not(.scrolled) .site-header .primary .logo .type {
    display: none;
  }
  body.home.transparent-header:not(.scrolled) .site-header .primary .logo .type.ontransparent {
    display: inline;
  }
  body.home.transparent-header:not(.scrolled) .site-header .off-canvas-toggle span {
    background: #191F25;
  }
  body.home.transparent-header:not(.scrolled) .site-header .off-canvas-toggle:not(.scrolled) .site-header .primary .logo {
    padding: 20px 0px;
    height: 120px;
  }
  body.home.transparent-header:not(.scrolled) .site-header .off-canvas-toggle:not(.scrolled) .site-header .primary .logo .mark {
    height: 80px;
  }
  body.home.transparent-header:not(.scrolled) .site-header .off-canvas-toggle:not(.scrolled) .site-header .primary .logo .type {
    height: auto;
  }
  body.home.transparent-header:not(.scrolled) .site-header .off-canvas-toggle:not(.scrolled) .site-header .primary .menu {
    padding: 30px 0px;
  }
  body.home.transparent-header:not(.scrolled) .site-header .off-canvas-toggle:not(.scrolled) .site-header .primary .menu a {
    color: #fff;
  }
  body.home.transparent-header:not(.scrolled) .site-header .off-canvas-toggle:not(.scrolled) .site-header .primary .menu li.active a, body.home.transparent-header:not(.scrolled) .site-header .off-canvas-toggle:not(.scrolled) .site-header .primary .menu a:hover, body.home.transparent-header:not(.scrolled) .site-header .off-canvas-toggle:not(.scrolled) .site-header .primary .menu a:active, body.home.transparent-header:not(.scrolled) .site-header .off-canvas-toggle:not(.scrolled) .site-header .primary .menu a:focus {
    color: #f15c2c;
  }
  body.home.transparent-header:not(.scrolled) .site-header .primary .logo {
    padding: 20px 0px;
    height: 120px;
  }
  body.home.transparent-header:not(.scrolled) .site-header .primary .logo .mark {
    height: 80px;
  }
  body.home.transparent-header:not(.scrolled) .site-header .primary .logo .type {
    height: auto;
  }
  body.home.transparent-header:not(.scrolled) .site-header .primary .menu {
    padding: 30px 0px;
  }
  body.home.transparent-header:not(.scrolled) .site-header .primary .menu a {
    color: #fff;
  }
  body.home.transparent-header:not(.scrolled) .site-header .primary .menu li.active a, body.home.transparent-header:not(.scrolled) .site-header .primary .menu a:hover, body.home.transparent-header:not(.scrolled) .site-header .primary .menu a:active, body.home.transparent-header:not(.scrolled) .site-header .primary .menu a:focus {
    color: #f15c2c;
  }
}

div#google_language_translator {
  min-width: 172px;
  min-height: 37px;
  margin-left: 15px;
}

.main-menu {
  display: flex;
}

.mobile-menu {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  z-index: 10;
  padding-top: 10rem;
}
.mobile-menu .close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
}
.mobile-menu.active {
  display: block;
  background-color: #fff;
  height: 100%;
  width: 100%;
}
.mobile-menu.active #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
  display: block;
}

.mobile-width {
  margin: 0 auto;
  max-width: 440px;
}

@media screen and (max-width: 400px) {
  .logo-icon {
    width: 8rem !important;
  }
  .logo-full {
    margin-top: 1.15rem !important;
    width: 7rem !important;
  }
  .site-header .primary {
    height: 6rem;
  }
}
@media screen and (max-width: 1025px) {
  .site-header.header-scrolled {
    top: 0 !important;
  }
}
@media screen and (min-width: 40em) {
  .mobile-width {
    margin: 0 auto;
    max-width: 600px;
  }
}
@media screen and (min-width: 1025px) {
  .open-dialog {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  body.admin-bar #wpadminbar {
    position: fixed;
  }
  body.admin-bar .site-header .primary {
    margin-top: 50px;
  }
}
/**
 * Footer
 */
.container.subscribe {
  padding: 90px 0px;
}

.site-footer {
  background-color: #191F25;
  padding: 4rem 0 2rem;
}
.site-footer .footer-container {
  position: relative;
  flex-direction: row;
  display: flex;
  width: 100%;
}
.site-footer .footer-container .left-wrapper {
  width: 40%;
}
.site-footer .footer-container .left-wrapper p {
  padding: 1rem 0;
  opacity: 0.9;
  color: #fff;
  font-weight: 200;
  max-width: 25rem;
  margin: 0;
}
.site-footer .footer-container .left-wrapper .linkedin {
  margin-bottom: 2rem;
}
.site-footer .footer-container .left-wrapper .acreditation-wrapper {
  padding: 1rem 0 3rem;
}
.site-footer .footer-container .left-wrapper .acreditation-wrapper .acreditations {
  padding: 0 0 1rem;
  display: flex;
}
.site-footer .footer-container .left-wrapper .acreditation-wrapper .acreditations img:first-of-type {
  margin-right: 1rem;
}
.site-footer .footer-container .left-wrapper .acreditation-wrapper span {
  color: #fff;
  opacity: 0.7;
  font-size: 0.7rem;
}
.site-footer .footer-container .right-wrapper {
  width: 60%;
  display: flex;
}
.site-footer .footer-container .right-wrapper ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  padding: 0 0 2rem;
  margin: 0;
}
.site-footer .footer-container .right-wrapper ul a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 0 0 0.5rem;
}
.site-footer .footer-container .right-wrapper ul li ul {
  display: block;
}
.site-footer .footer-container .right-wrapper ul li ul li a {
  color: #fff;
  padding: 0.5rem 0;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
.site-footer .footer-container .right-wrapper ul li ul li a:hover {
  opacity: 0.7;
}
.site-footer .copyright {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  opacity: 0.7;
  border-top: 1px solid #f15c2c;
  padding: 1rem 0 0;
}
.site-footer .copyright ul {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  margin-left: -15px;
}
.site-footer .copyright ul li {
  line-height: 1.3;
  padding: 0px 15px 15px;
}
.site-footer .copyright ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.site-footer .copyright ul li a:hover, .site-footer .copyright ul li a:focus, .site-footer .copyright ul li a:active {
  color: #f15c2c;
}

@media (max-width: 1025px) {
  .footer-container {
    flex-direction: column !important;
    padding: 0rem 1rem;
  }
  .footer-container .left-wrapper, .footer-container .right-wrapper {
    width: 100% !important;
  }
  .site-footer .copyright ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .site-footer .copyright span {
    width: 100%;
    text-align: center;
    margin-left: -1rem;
  }
  .site-footer .footer-container .right-wrapper ul {
    flex-direction: column !important;
    width: 100%;
    text-align: center;
  }
}
/**
 * Off canvas
 */
.off-canvas {
  height: 100%;
}
.off-canvas .menu {
  margin-top: 20px;
}
.off-canvas .menu a {
  color: #3a383e;
  text-decoration: none;
  padding: 10px 25px;
  margin-bottom: 1px;
}
.off-canvas .menu li.active > a, .off-canvas .menu a:hover, .off-canvas .menu a:focus, .off-canvas .menu a:active {
  background: rgba(255, 255, 255, 0.3);
}
.off-canvas .menu.main a {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 20px;
}

.js-off-canvas-exit {
  z-index: 99;
}
.is-off-canvas-open .js-off-canvas-exit {
  display: block !important;
}

.container.main > .row .large-9.columns, .container.main > .row .sidebar.columns {
  margin-bottom: 30px;
}

.widget {
  margin-bottom: 30px;
  line-height: 1;
}
.widget .title {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 16px;
}
.widget .title + .textwidget > .large:first-child {
  margin-top: -6px;
}
.widget > :last-child {
  margin-bottom: 0;
}
.widget > ul, .widget div > ul {
  margin-left: 0;
}
.widget > ul, .widget > ul ul, .widget div > ul, .widget div > ul ul {
  list-style: none;
  line-height: 1.2;
  margin-bottom: 8px;
}
.widget > ul li, .widget div > ul li {
  margin-top: 6px;
}
.widget > ul li:first-child, .widget div > ul li:first-child {
  margin-top: 0;
}
.widget > ul a, .widget div > ul a {
  text-decoration: none;
}
.widget > ul a:hover, .widget > ul a:focus, .widget > ul a:active, .widget div > ul a:hover, .widget div > ul a:focus, .widget div > ul a:active {
  color: #f15c2c;
}
.widget .menu > li > a {
  display: inline;
  color: #3a383e;
  padding: 0;
}
.widget .menu > li.active > a {
  color: #f15c2c;
}
.widget h6 {
  margin-bottom: 10px;
}
.widget p {
  line-height: 1.3;
}

.news-sidebar .title {
  font-size: 31px !important;
}

/**
 * Regional Override Popup
 */
.site-logo .mark {
  height: 80px;
}
.site-logo .type {
  height: 40px;
  margin-left: -10px;
}
.site-logo {
  margin-bottom: 35px;
}

#modal-region-override .close-button {
  font-size: 16px;
}
#modal-region-override h3 {
  margin-bottom: 30px;
}
#modal-region-override .row.modal.buttons {
  padding-top: 20px;
}

.hero-banner {
  height: 70vh;
  min-height: 45rem;
  width: 100%;
  background-color: #777;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.hero-banner .row {
  position: relative;
}
.hero-banner .row .hero-graphic {
  position: absolute;
  top: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  height: 70vh;
  min-height: 45rem;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
.hero-banner .row .hero-graphic::before {
  top: 0;
  position: absolute;
  content: "";
  height: 70vh;
  min-height: 45rem;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.6);
  left: -100vw;
}
.hero-banner .row .hero-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 10;
  padding-top: 20vh;
}
.hero-banner .row .hero-content-wrapper .logo-hero {
  width: 20rem;
}
.hero-banner .row .hero-content-wrapper .logo-hero img {
  width: 100%;
  height: auto;
}
.hero-banner .row .hero-content-wrapper .accreditation {
  width: 15rem;
}
.hero-banner .row .hero-content-wrapper .accreditation img {
  width: 100%;
  height: auto;
}
.hero-banner .row .hero-content-wrapper h1 {
  font-weight: 700;
  font-size: 3.5rem;
  color: #fff;
  padding: 36px 0;
}
.hero-banner .row .hero-content-wrapper h1 strong {
  color: #fff;
}
.hero-banner .row .hero-content-wrapper p {
  font-weight: 700;
  color: #f15c2c;
}
.hero-banner .row .hero-content-wrapper ul {
  list-style-type: none;
  margin: 0;
  padding: 0.5rem 0 2rem;
}
.hero-banner .row .hero-content-wrapper ul li {
  border-top: 1px solid #fff;
  padding: 1em 0;
}
.hero-banner .row .hero-content-wrapper ul li a {
  display: flex;
  justify-content: space-evenly;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.hero-banner .row .hero-content-wrapper ul li a span.text-title {
  width: 100%;
  color: #fff;
}
.hero-banner .row .hero-content-wrapper ul li a span.material-symbols-outlined {
  color: #fff;
}
.hero-banner .row .hero-content-wrapper ul li a:hover {
  opacity: 0.5;
}
.hero-banner .row .hero-content-wrapper ul li:last-of-type {
  border-bottom: none;
}
.hero-banner .row .hero-content-wrapper i {
  font-size: 1.2rem;
  color: #f15c2c;
}

@media (max-width: 1025px) {
  .hero-banner {
    height: 40vh;
    overflow: hidden;
  }
  .hero-banner .row .hero-content-wrapper {
    padding-top: 10rem;
  }
}
@media (max-width: 639px) {
  .hero-banner {
    height: 49rem;
    background-position: top 8rem center;
    background-size: contain;
  }
  .hero-banner .row {
    position: absolute;
    bottom: 0rem;
    background-color: #EEEEEE;
    margin: 0;
    max-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .hero-banner .row .hero-content-wrapper {
    padding: 1rem 1rem 2rem;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-banner .row .hero-content-wrapper h1 {
    font-size: 2rem;
    color: #000 !important;
  }
  .hero-banner .row .hero-content-wrapper ul li {
    border-top: 1px solid #f15c2c;
  }
  .hero-banner .row .hero-content-wrapper ul li a span {
    color: #000 !important;
  }
  .hero-banner .row .hero-graphic {
    background-image: none;
  }
}
@media (max-width: 555px) {
  .hero-banner {
    height: 42rem;
    background-position: top 6rem center;
    min-height: 100%;
  }
}
.logo-banner {
  width: 100%;
  overflow-x: hidden;
}
.logo-banner .logo-container {
  display: flex;
  padding: 2rem 1rem;
  width: 100%;
  align-items: center;
  overflow-x: hidden;
}
.logo-banner .logo-container .logo-wrapper {
  position: relative;
  width: 100%;
  height: 7rem;
  overflow: hidden;
}
.logo-banner .logo-container .logo-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 5rem;
  height: 7rem;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  z-index: 10;
}
.logo-banner .logo-container .logo-wrapper::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 5rem;
  height: 7rem;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  z-index: 10;
}
.logo-banner .logo-container .logo-wrapper .logo-inner-wrapper {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  position: absolute;
}
.logo-banner .logo-container .logo-wrapper .logo-inner-wrapper img {
  padding: 1rem;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: 0.6;
  height: 5rem;
  margin-top: 1rem;
}
.logo-banner h3 {
  padding-right: 2rem;
  min-width: 13rem;
}
.logo-banner .vertical-divider {
  background-color: #f15c2c;
  width: 2px;
  height: 100%;
  margin-right: 1rem;
}

@media (max-width: 658px) {
  .logo-banner .logo-container {
    flex-direction: column;
    height: 100%;
  }
  .logo-banner .logo-container .vertical-divider {
    height: 2px;
    width: 100%;
  }
}
.video-link {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-link video {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.video-link .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.video-link .video-placeholder.hide_image {
  display: none;
}
.video-link .video-placeholder::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
}
.video-link .play-btn {
  position: absolute;
  left: calc(50% - 1rem);
  top: calc(50% - 1rem);
  height: 4rem;
  width: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/play-btn.svg");
  transition: all 0.3s ease-in-out;
}
.video-link .play-btn:hover {
  opacity: 0.7;
}
.video-link .play-btn.hide_playBtn {
  display: none;
}
.video-link .pause-btn {
  display: none;
  position: absolute;
  left: calc(50% - 1rem);
  top: calc(50% - 1rem);
  height: 4rem;
  width: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/pause-btn.svg");
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.video-link .pause-btn:hover {
  opacity: 1;
}
.video-link .pause-btn.show_pauseBtn {
  display: block;
}

@media (min-width: 1200px) {
  .video-link {
    aspect-ratio: unset;
    max-height: 45rem;
  }
}
.position-left {
  flex-direction: row;
}
.position-left div.content-wrapper {
  padding: 8rem 1rem 3rem 3rem !important;
}

.position-right {
  flex-direction: row-reverse;
}
.position-right div.content-wrapper {
  padding: 8rem 3rem 3rem 1rem !important;
}

.content-block {
  display: flex;
  height: 40rem;
}
.content-block div {
  width: 50%;
}
.content-block div.content-wrapper {
  padding: 3rem;
  max-width: 570px;
}
.content-block div.content-wrapper p {
  position: relative;
  display: block;
}
.content-block div.content-wrapper a {
  position: relative;
  display: inline-block;
  margin-top: 3rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #f15c2c;
}
.content-block div img {
  width: 100%;
}
.content-block div.image-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 1440px) {
  .content-block {
    height: 45rem;
  }
  .content-block .image-wrapper {
    height: 100%;
  }
}
@media (min-width: 1440px) {
  .content-block {
    align-items: unset;
  }
}
@media (max-width: 840px) {
  .content-block {
    height: 55rem;
  }
}
@media (max-width: 658px) {
  .content-block {
    flex-direction: column;
    height: 55rem;
  }
  .content-block div {
    width: 100%;
  }
  .position-left div.content-wrapper {
    padding: 4rem 3rem 3rem 1rem !important;
  }
  .position-right div.content-wrapper {
    padding: 4rem 3rem 3rem 1rem !important;
  }
}
.content-feature {
  display: flex;
  overflow: hidden;
  background-color: #E8E9E9;
  padding: 4rem 0;
  max-height: 50rem;
}
.content-feature div {
  width: 50%;
}
.content-feature div.content-wrapper {
  padding: 3rem;
  max-width: 570px;
}
.content-feature div.content-wrapper p {
  position: relative;
  display: block;
}
.content-feature div.content-wrapper a {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 3rem;
  text-decoration: none;
}
.content-feature div.content-wrapper a span {
  padding-right: 1rem;
  transition: all 0.3s ease-in-out;
}
.content-feature div.content-wrapper a:hover span:first-of-type {
  color: #000000;
  padding-right: 1.5rem;
}
.content-feature div.image-wrapper {
  position: relative;
}
.content-feature div.image-wrapper .svg-container {
  position: absolute;
  bottom: -15rem;
  right: -5rem;
  width: 60rem;
  height: 60rem;
}
.content-feature div.image-wrapper .bg-graphic {
  position: absolute;
  right: 6rem;
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/graphic-six.svg");
  width: 50rem;
  height: 50rem;
}

@media (max-width: 658px) {
  .content-feature {
    flex-direction: column;
    max-height: unset;
  }
  .content-feature div {
    width: 100%;
  }
  .content-feature .image-wrapper {
    height: 15rem;
  }
  .content-feature .image-wrapper .bg-graphic {
    height: 30rem !important;
    width: 30rem !important;
    top: -14rem !important;
  }
  .content-feature .image-wrapper .svg-container {
    bottom: -7rem !important;
    height: 40rem !important;
    width: 40rem !important;
  }
}
@media (min-width: 1440px) {
  .image-wrapper {
    min-height: unset !important;
  }
}
.feature-products {
  position: relative;
  background-color: #191F25;
  padding: 4rem 1rem;
  margin-bottom: 10rem;
}
.feature-products::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 40rem;
  width: 40rem;
  content: "";
  background-size: contain;
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/graphic-three.svg");
}
.feature-products .headline-wrapper {
  max-width: 25rem;
  padding-bottom: 3rem;
}
.feature-products .headline-wrapper h2 {
  font-weight: 500;
  font-size: 2.5rem;
  color: #fff;
}
.feature-products .product-wrapper {
  background-color: #F4F4F4;
  width: 100%;
  margin-bottom: -10rem;
  display: flex;
  border: 1px 1px 0 solid #D8D8D8;
}
.feature-products .product-wrapper .product-summary {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1/1;
  width: 25%;
  padding: 2rem;
  border-right: 1px solid #D8D8D8;
  background-color: #E8E9E9;
  border-bottom: 1px solid #D8D8D8;
}
.feature-products .product-wrapper h4 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.feature-products .product-wrapper a {
  position: relative;
  text-decoration: none;
  background-color: #f15c2c;
  padding: 0.5rem 1.5rem;
  color: #fff;
  display: inline-block;
  width: fit-content;
  border: 1px solid #f15c2c;
  transition: all 0.3s ease-in-out;
}
.feature-products .product-wrapper a:hover {
  background-color: transparent;
  color: #f15c2c;
}
.feature-products .product-wrapper .product-list-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 1/1;
  width: 25%;
  border-right: 1px solid #D8D8D8;
  border-bottom: 1px solid #f15c2c;
}
.feature-products .product-wrapper .product-list-item::before {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  content: "";
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/graphic-four.svg");
}
.feature-products .product-wrapper .product-list-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.feature-products .product-wrapper .product-list-item h4 {
  padding: 1rem;
}
.feature-products .product-wrapper .product-list-item .product-cat-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 20;
  background-color: white;
  border-bottom: 0 solid #f15c2c;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.feature-products .product-wrapper .product-list-item .product-cat-item-overlay:hover {
  opacity: 1;
  border-bottom: 3px solid #f15c2c;
}
.feature-products .product-wrapper .product-list-item .product-cat-item-overlay h4 {
  color: #f15c2c;
  margin: 0;
}
.feature-products .product-wrapper .product-list-item .product-cat-item-overlay p {
  padding: 0 1rem;
  font-size: 0.89rem;
}
.feature-products .product-wrapper .product-list-item .product-cat-item-overlay a {
  padding: 0;
  display: flex;
  justify-content: space-between;
  background-color: transparent;
  color: #f15c2c;
  width: 100%;
  padding: 0 1rem;
  transition: all 0.3s ease-in-out;
  border: none;
}
.feature-products .product-wrapper .product-list-item .product-cat-item-overlay a:hover {
  opacity: 0.5;
}

@media (max-width: 1025px) {
  .feature-products .product-wrapper {
    flex-wrap: wrap;
  }
  .feature-products .product-wrapper .product-summary,
  .feature-products .product-wrapper .product-list-item {
    width: 50%;
  }
}
@media (max-width: 639px) {
  .feature-products .product-wrapper {
    flex-direction: column;
    padding: 0 1rem 2rem;
    background-color: transparent;
  }
  .feature-products .product-wrapper .product-summary,
  .feature-products .product-wrapper .product-list-item {
    width: 100%;
    background-color: #fff;
  }
  .feature-products .product-wrapper .product-summary {
    justify-content: flex-start;
  }
  .feature-products .product-wrapper .product-list-item .product-cat-item-overlay:hover {
    opacity: 0;
    border-bottom: 0px solid #f15c2c;
  }
}
.latest-products {
  position: relative;
  background-color: #E8E9E9;
  padding: 4rem 0;
}
.latest-products .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 1rem;
}
.latest-products .custom-slider-navigation {
  position: relative;
  z-index: 40;
}
.latest-products .headline-wrapper h2 {
  font-weight: 500;
  font-size: 2.5rem;
  color: #1E1E1E;
  margin-bottom: 0;
}
.latest-products .bg-wrapper {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.latest-products .bg-wrapper .latest-products-bg {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/graphic-five.svg");
}
.latest-products .bg-wrapper .latest-products-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: -100vh;
  height: 100%;
  width: 100vh;
  background-color: rgba(180, 180, 180, 0.15);
}
.latest-products .product-list {
  padding: 4rem 0;
  display: flex;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.latest-products .product-list a {
  text-decoration: none;
  color: unset;
  margin-top: 0;
}
.latest-products .product-list .slick-slide {
  margin-left: 1rem;
}
.latest-products .product-list .slide-arrow {
  padding: 2rem;
}
.latest-products .product-list .slide-arrow span {
  font-size: 4rem;
  color: #f15c2c;
}
.latest-products .product-list .next-arrow {
  position: absolute;
  margin-top: 4rem;
  padding: 0 2rem;
  transition: all 0.3s ease-in-out;
}
.latest-products .product-list .next-arrow:hover {
  opacity: 0.6;
}
.latest-products .product-list .prev-arrow {
  margin-top: 4rem;
  transition: all 0.3s ease-in-out;
}
.latest-products .product-list .prev-arrow:hover {
  opacity: 0.6;
}
.latest-products .product-list .product-list-item {
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #B4B4B4;
  border-bottom: 3px solid #f15c2c;
  overflow: visible;
  min-height: 33.5rem;
}
.latest-products .product-list .product-list-item a {
  transition: all 0.3s ease-in-out;
}
.latest-products .product-list .product-list-item:hover a {
  opacity: 0.5;
}
.latest-products .product-list .product-list-item:hover a .material-symbols-outlined {
  margin-left: 3rem;
}
.latest-products .product-list .product-list-item .product-link {
  margin-top: 2rem;
  position: relative;
  color: #f15c2c;
}
.latest-products .product-list .product-list-item .product-link .material-symbols-outlined {
  transition: all 0.3s ease-in-out;
  position: absolute;
  margin-left: 2rem;
  top: 0;
}
.latest-products .product-list .product-list-item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f15c2c;
}
.latest-products .product-list .product-list-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.latest-products .product-list .product-list-item ul li {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #B4B4B4;
  padding: 0.5rem 0;
}
.latest-products .product-list .product-list-item ul li .product-label {
  font-weight: 700;
}

@media (max-width: 658px) {
  .product-list {
    padding: 2rem 2rem 2rem 2rem !important;
  }
  .slide-arrow {
    position: absolute;
    bottom: -5rem;
    padding: 0;
  }
  .slide-arrow.next-arrow {
    bottom: -3rem;
    left: 5rem;
    margin-top: 0 !important;
    padding: 0 2rem 0 !important;
  }
}
.latest-news {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.latest-news::before {
  position: absolute;
  content: "";
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/graphic-seven.svg");
  height: 100rem;
  width: 70rem;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}
.latest-news .content-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.latest-news .content-wrapper h3 {
  margin-bottom: 0;
}
.latest-news .latest-news-items {
  position: relative;
  display: flex;
  padding: 2rem 0;
  justify-content: space-evenly;
  width: 100%;
}
.latest-news .latest-news-items .news-item {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #f15c2c;
  background-color: #E8E9E9;
  height: 33rem;
  width: 100%;
  margin: 0 1rem;
  transition: all 0.3s ease-in-out;
}
.latest-news .latest-news-items .news-item:hover {
  border-bottom: 4px solid #f15c2c;
}
.latest-news .latest-news-items .news-item:first-of-type {
  margin-left: 0;
}
.latest-news .latest-news-items .news-item:last-of-type {
  margin-right: 0;
}
.latest-news .latest-news-items .news-item .news-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  height: 20rem;
}
.latest-news .latest-news-items .news-item .news-item-content h4 {
  margin-top: 0;
  font-weight: 500;
}
.latest-news .latest-news-items .news-item .news-item-content p {
  font-size: 0.9rem;
}
.latest-news .latest-news-items .news-item .news-item-content a {
  margin-top: 0;
}
.latest-news .latest-news-items .news-item .img-container {
  background-color: rgba(0, 0, 0, 0.2);
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

@media (max-width: 658px) {
  .latest-news {
    padding: 0 1rem;
  }
  .latest-news .latest-news-items .news-item .img-container {
    min-height: unset;
  }
  .latest-news .latest-news-items {
    flex-direction: column;
    justify-content: center;
  }
  .latest-news .latest-news-items .news-item {
    height: 36rem;
    width: 100%;
    margin: 0 0 2rem !important;
  }
  .latest-news .latest-news-items .news-item:first-of-type {
    margin: 0 1rem;
  }
}
@media (max-width: 440px) {
  .latest-news .latest-news-items .news-item {
    height: 32rem;
  }
}
.feature-links {
  padding: 4rem 0;
  overflow: hidden;
}
.feature-links .content-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.feature-links .content-wrapper .feature-list-item {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #f15c2c;
  background-color: #E8E9E9;
  height: 29rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.feature-links .content-wrapper .feature-list-item:first-of-type {
  margin-right: 1rem;
}
.feature-links .content-wrapper .feature-list-item:last-of-type {
  margin-left: 1rem;
}
.feature-links .content-wrapper .feature-list-item:hover {
  border-bottom: 4px solid #f15c2c;
}
.feature-links .content-wrapper .feature-list-item .feature-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  height: 10rem;
}
.feature-links .content-wrapper .feature-list-item .feature-item-content h4 {
  font-weight: 600;
  margin: 0;
}
.feature-links .content-wrapper .feature-list-item .feature-item-content a {
  font-weight: 500;
  margin-top: 0;
}
.feature-links .content-wrapper .feature-list-item .img-container {
  background-color: rgba(0, 0, 0, 0.2);
  min-height: 13rem;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

@media (max-width: 658px) {
  .feature-links .content-wrapper {
    flex-direction: column;
  }
  .feature-links .content-wrapper .feature-list-item {
    margin-bottom: 2rem !important;
    height: 24rem;
  }
  .feature-links .content-wrapper .feature-list-item .feature-item-content {
    height: 8.3rem;
  }
  .feature-links .content-wrapper .feature-list-item:first-of-type {
    margin-right: 0;
  }
  .feature-links .content-wrapper .feature-list-item:last-of-type {
    margin-left: 0;
  }
}
.newsletter-signup {
  overflow: hidden;
  background-color: #E8E9E9;
  padding: 4rem 0;
}
.newsletter-signup .row {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.newsletter-signup .row::before {
  position: absolute;
  content: "";
  background-color: #DBDCDC;
  width: 100vw;
  height: calc(100% + 8rem);
  top: -4rem;
  z-index: 5;
  left: -100vw;
}
.newsletter-signup .row::after {
  position: absolute;
  content: "";
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/graphic-eight.svg");
  height: 100rem;
  width: 100%;
  left: -10rem;
  top: -4rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.newsletter-signup .row .headline-wrapper {
  position: relative;
  z-index: 10;
  width: 40%;
  max-width: 18rem;
}
.newsletter-signup .row .headline-wrapper h2 {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
}
.newsletter-signup .row .gravity-form-wrapper {
  position: relative;
  z-index: 10;
  width: 60%;
  max-width: 35rem;
}
.newsletter-signup .row .gravity-form-wrapper .ginput_container input {
  background-color: #fff !important;
  font-size: 1rem !important;
  height: 3rem;
}
.newsletter-signup .row .gravity-form-wrapper .gform_footer #gform_submit_button_7 {
  display: flex;
  align-items: center;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
}
.newsletter-signup .row .gravity-form-wrapper .gform_footer #gform_submit_button_7 span:first-of-type {
  padding-right: 3rem;
}
.newsletter-signup .row .gravity-form-wrapper .gfield--width-half {
  width: 50%;
  display: inline-block;
}
.newsletter-signup .row .gravity-form-wrapper .gform_required_legend {
  display: none;
}

@media (max-width: 1025px) {
  .newsletter-signup {
    height: 20rem;
  }
}
@media (max-width: 658px) {
  .newsletter-signup {
    padding: 3rem 1rem;
    height: auto;
  }
  .newsletter-signup .row {
    flex-direction: column;
  }
  .newsletter-signup .row::after {
    background-image: none;
  }
  .newsletter-signup .row::before {
    background-color: transparent;
  }
  .newsletter-signup .row .headline-wrapper,
  .newsletter-signup .row .gravity-form-wrapper {
    width: 100%;
  }
}
.content-banner {
  margin-top: -0.2rem;
  position: relative;
  height: 29rem;
  overflow: hidden;
  display: flex;
}
.content-banner .image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 61vw;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.content-banner .row {
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 4rem 1rem;
  position: relative;
}
.content-banner .row .headline-wrapper {
  position: relative;
  max-width: 570px;
  z-index: 20;
}
.content-banner .row .headline-wrapper h2 {
  font-weight: 700;
  margin: 0;
}
.content-banner .row .headline-wrapper #breadcrumbs {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.content-banner .row .headline-wrapper #breadcrumbs a {
  text-decoration: none;
}
.content-banner .row .headline-wrapper #breadcrumbs span {
  color: #f15c2c;
}
.content-banner .row::after {
  position: absolute;
  content: "";
  top: 0;
  left: -20rem;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-size: cover;
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/graphic-nine.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.content-banner .row::before {
  position: absolute;
  content: "";
  top: 0;
  left: -100vw;
  height: 100%;
  width: 100vw;
  z-index: 10;
  background-color: #eee;
}
.content-banner .content-wrapper {
  position: relative;
  width: 40%;
}

@media (max-width: 1025px) {
  .content-banner {
    background-color: #eee;
  }
  .content-banner .image-wrapper {
    display: none;
  }
}
@media (max-width: 1150px) {
  .content-banner .row::after {
    height: 30rem;
    width: 115%;
    background-size: cover;
    left: -22rem;
  }
}
.inner-page-content h1, .inner-page-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
.inner-page-content h1 strong, .inner-page-content h2 strong {
  color: #f15c2c;
}
.inner-page-content h3 {
  font-size: 1.5rem;
}

.content-bullets {
  border-bottom: 1px solid rgba(135, 135, 135, 0.5);
  padding-bottom: 2rem;
}
.content-bullets h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f15c2c;
  padding-bottom: 2rem;
}
.content-bullets .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.content-bullets .content-wrapper .bullet-list-item {
  position: relative;
  padding: 0 2rem 1rem;
}
.content-bullets .content-wrapper .bullet-list-item::before {
  position: absolute;
  content: "";
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  left: -0.2rem;
  top: 0;
  height: 1.5rem;
  width: 1.5rem;
}

@media (max-width: 639px) {
  .content-bullets .content-wrapper {
    grid-template-columns: 1fr !important;
  }
}
.content-hotbox {
  position: relative;
  border-bottom: 1px solid rgba(135, 135, 135, 0.5);
  padding: 4rem 0 2rem;
}
.content-hotbox h2 {
  font-size: 2.7rem;
  font-weight: 700;
  padding-bottom: 2rem;
}
.content-hotbox .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: -2rem;
  width: calc(100% + 4rem);
}
.content-hotbox .content-wrapper .hotbox-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  aspect-ratio: 1/1;
  background: #F4F4F4;
  border-bottom: 1px solid #f15c2c;
  margin: 2rem;
  transition: all 0.3s ease-in-out;
}
.content-hotbox .content-wrapper .hotbox-list-item:hover {
  border-bottom: 4px solid #f15c2c;
}
.content-hotbox .content-wrapper .hotbox-list-item h3 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 2rem;
}

@media (max-width: 1025px) {
  .content-hotbox .content-wrapper {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .content-hotbox .content-wrapper .hotbox-list-item {
    aspect-ratio: 16/9;
    width: calc(100% - 2rem);
  }
}
:root {
  --primary: #000;
  /* Theme color */
  --theme: var(--primary);
}

.content-accordion {
  position: relative;
  padding: 4rem 0 2rem;
}
.content-accordion h2 {
  font-size: 2.7rem;
  font-weight: 700;
  padding-bottom: 2rem;
}
.content-accordion .content-wrapper {
  display: flex;
  flex-direction: column;
  /* Core styles/functionality */
  /* Visual styles */
  /* Arrow animation */
}
.content-accordion .content-wrapper [type=checkbox] + label, .content-accordion .content-wrapper [type=radio] + label {
  padding: 0;
  margin: 0;
}
.content-accordion .content-wrapper .tab {
  padding: 1rem 0;
  border-bottom: 1px solid #f15c2c;
}
.content-accordion .content-wrapper .tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.content-accordion .content-wrapper .tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.content-accordion .content-wrapper .tab input:checked ~ .tab__content {
  max-height: 100rem;
}
.content-accordion .content-wrapper .accordion {
  color: var(--theme);
  overflow: hidden;
  border: none;
  padding: 0;
}
.content-accordion .content-wrapper .tab__label,
.content-accordion .content-wrapper .tab__close {
  display: flex;
  color: #f15c2c;
  cursor: pointer;
}
.content-accordion .content-wrapper .tab__label {
  justify-content: space-between;
  padding: 1rem;
  color: #000;
  font-size: 1.2rem;
}
.content-accordion .content-wrapper .tab__label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  color: #f15c2c;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
  margin-right: -5px;
}
.content-accordion .content-wrapper .tab input:checked + .tab__label::after {
  transform: rotate(270deg);
  margin-right: 0px;
}
.content-accordion .content-wrapper .tab__content .accordion-list-item {
  margin: 0;
  padding: 1rem 0;
}
.content-accordion .content-wrapper .tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.content-accordion .content-wrapper .accordion--radio {
  --theme: var(--secondary);
}
.content-accordion .content-wrapper .tab input:not(:checked) + .tab__label:hover::after {
  animation: none !important;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(0.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-0.25rem);
  }
}
.content-accordion .content-wrapper .accordion-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  margin: 2rem;
  transition: all 0.3s ease-in-out;
}
.content-accordion .content-wrapper .accordion-list-item .accordion-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.content-accordion .content-wrapper .accordion-list-item .accordion-link:hover {
  color: #000;
}
.content-accordion .content-wrapper .accordion-list-item .accordion-link:hover::after {
  padding-left: 2rem;
}
.content-accordion .content-wrapper .accordion-list-item .accordion-link::after {
  padding-left: 1rem;
  color: #f15c2c;
  font-family: "Material Symbols Outlined";
  -webkit-font-feature-settings: "liga" 1;
  -moz-font-feature-settings: "liga" 1;
  font-feature-settings: "liga" 1;
  transition: all 0.3s ease-in-out;
}

article.post {
  margin-bottom: 50px;
}

.entry-meta {
  font-weight: 700;
  margin-top: -4px;
}
.entry-meta a {
  color: inherit;
  text-decoration: none;
}
.entry-meta span:not(:last-child):after {
  content: " - ";
  padding: 0px 3px;
  font-weight: 700;
}

.featured-image {
  display: block;
  margin-bottom: 20px;
}

.entry-summary p {
  margin-bottom: 10px;
}
.entry-summary .more {
  text-decoration: none;
  font-weight: 700;
}

.entry-title {
  margin-top: 0;
}
.entry-title a {
  text-decoration: none;
}

h1.entry-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

/**
 * Inner Page page template
 */
.page-inner {
  overflow: clip;
}
.page-inner .graphic {
  position: absolute;
  top: 0;
  right: -5rem;
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/graphic-ten.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 17rem;
  height: 2rem;
  z-index: 5;
}
.page-inner .graphic:after {
  position: absolute;
  content: "";
  background-color: #191F25;
  width: 100vw;
  height: 2rem;
  right: -100vw;
  z-index: -1;
}
.page-inner .row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}
.page-inner .row::after {
  position: absolute;
  content: "";
  background-color: #F4F4F4;
  width: 100vw;
  height: 100%;
  right: -100vw;
  z-index: -1;
}
.page-inner .row::before {
  position: absolute;
  content: "";
  right: -30rem;
  bottom: 0;
  position: absolute;
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/graphic-six.svg");
  opacity: 0.3;
  width: 50rem;
  height: 50rem;
  z-index: 1;
}
.page-inner .row .inner-content {
  width: 70%;
  padding: 3rem 6rem 3rem 1rem;
}
.page-inner .row .inner-sidebar {
  width: 30%;
  position: relative;
  background-color: #F4F4F4;
  padding: 4rem 2rem 2rem;
  overflow: visible;
}
.page-inner .row .inner-sidebar .sticky-sidebar {
  top: 8rem;
  position: sticky;
  z-index: 5;
}
.page-inner .row .inner-sidebar .sticky-sidebar h2 {
  font-weight: 700;
  font-size: 1.5rem;
}
.page-inner .row .inner-sidebar .sticky-sidebar a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}
.page-inner .row .inner-sidebar .sticky-sidebar a::after {
  display: block;
  font-family: "Material Symbols Outlined";
  content: "arrow_forward";
  -webkit-font-feature-settings: "liga" 1;
  -moz-font-feature-settings: "liga" 1;
  font-feature-settings: "liga" 1;
}
.page-inner .row .inner-sidebar .sticky-sidebar .widget_text {
  max-width: 70%;
}
.page-inner .row .inner-sidebar .sticky-sidebar .wp-block-buttons {
  display: block;
  width: 100%;
}
.page-inner .row .inner-sidebar .sticky-sidebar .wp-block-buttons .wp-block-button__link {
  border-radius: 0px !important;
  margin-bottom: 1rem;
  background-color: #f15c2c;
  width: 100%;
  border: 1px solid #f15c2c;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.page-inner .row .inner-sidebar .sticky-sidebar .wp-block-buttons .wp-block-button__link:hover {
  background-color: transparent;
  color: #f15c2c;
  border: 1px solid #f15c2c;
}
.page-inner .row .inner-sidebar .sticky-sidebar .wp-block-buttons > .wp-block-button {
  display: block;
  width: 100%;
}

@media (max-width: 1025px) {
  .inner-sidebar {
    display: none;
  }
  .row::after {
    background-color: transparent !important;
  }
  .inner-content {
    padding: 0 1rem 2rem 1rem !important;
    width: 100% !important;
  }
}
.page-template-page-downloads-new .page-inner .row .inner-content {
  width: 50%;
}
.page-template-page-downloads-new .page-inner .row .inner-sidebar {
  width: 50%;
}

.custom-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/**
 * Front page template
 */
body.home .container.main {
  background-image: url(../images/home-bg.jpg);
  padding-top: 200px;
  padding-bottom: 55px;
  text-align: center;
}
body.home .container.main > .row {
  max-width: 660px;
}
body.home .container.main h2 {
  font-size: 42px;
  margin-bottom: 45px;
  font-weight: 700;
}
body.home .container.main p {
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 25px;
}
body.home .container.main form {
  max-width: 600px;
  margin: 0 auto;
}
body.home .container.main form input, body.home .container.main form button {
  margin-bottom: 0;
}
body.home .container.main form input {
  padding-left: 25px;
}
body.home .container.main form button {
  font-size: 22px;
}
body.home .cstm-title a,
body.home .cstm-title a:link,
body.home .cstm-title a:active,
body.home .cstm-title a:visited {
  text-decoration: none;
}
body.home .cstm-title a:hover {
  text-decoration: underline;
}

.container.competency h2 {
  font-weight: 900;
  color: #f15c2c;
}
.container.competency p {
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 35px;
}

.row.highlight-grid {
  text-align: center;
  font-size: 14px;
  margin-bottom: -20px;
}
.row.highlight-grid .content {
  max-width: 200px;
  margin: 0 auto;
}
.row.highlight-grid img {
  max-height: 85px;
}
.row.highlight-grid h4 {
  color: #f15c2c;
  margin-top: 24px;
  margin-bottom: 16px;
}
.row.highlight-grid p {
  margin-bottom: 14px;
}

.container.posts {
  padding-top: 80px;
  padding-bottom: 80px;
}
.container.posts h4 {
  margin-bottom: 35px;
  color: #f15c2c;
}

.row.post-grid {
  font-size: 14px;
}
.row.post-grid h5 {
  margin-bottom: 10px;
}
.row.post-grid h5 a {
  color: inherit;
  text-decoration: none;
}
.row.post-grid h5 a:hover, .row.post-grid h5 a:active, .row.post-grid h5 a:focus {
  color: #f15c2c;
}
.row.post-grid p {
  margin-bottom: 14px;
}

.container.about h3 {
  color: #f15c2c;
}
.container.about p {
  line-height: 1.3;
}

/**
 * Flexible Page Template
 */
.page-template-page-contact .contact-content .ginput_container input, .page-template-page-contact .contact-content .ginput_container textarea {
  border: 1px solid #ccc;
  background: transparent;
}
.page-template-page-contact .contact-content .gform-field-label {
  display: none;
}

.payment-methods {
  border-top: 1px solid #ccc;
  margin-bottom: 24px;
}
.payment-methods .payment-method {
  border-bottom: 1px solid #ccc;
  opacity: 0.7;
  padding: 0 15px;
}
.payment-methods .payment-method .card-form {
  max-width: 500px;
}
.payment-methods .payment-method .details {
  display: none;
  padding-bottom: 20px;
}
.payment-methods .payment-method.active {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.05);
}
.payment-methods .payment-method.active label1 {
  color: #f15c2c;
}

.payment-method > input[type=radio] {
  display: none;
}

.payment-method > input[type=radio] + label {
  display: block;
  margin: 0;
  padding: 20px 0;
  font-size: 20px;
  line-height: 1.3;
}

.payment-method > input[type=radio] + label:after {
  display: block;
  text-align: right;
  margin-top: -24px;
  content: "+";
}

.payment-method > input[type=radio] + label:hover {
  color: #f15c2c;
}

.payment-method > input[type=radio]:checked + label {
  font-weight: 700;
  cursor: default;
  color: #f15c2c;
}

.payment-method > input[type=radio]:checked + label:after {
  content: "–";
}

.payment-method > input[type=radio]:checked ~ .details {
  display: block;
}

#gform_fields_5 .gfield_label {
  display: none;
}
#gform_fields_5 .gf_list_inline {
  display: inline-block;
  vertical-align: top;
}
#gform_fields_5 .gf_quarter {
  width: 25%;
}
#gform_fields_5 .gf_right_half {
  width: 50% !important;
  float: none !important;
}
#gform_fields_5 .gform_footer {
  display: none;
}
#gform_fields_5 .gform_wrapper {
  margin-bottom: 0;
  margin-top: 0;
}
#gform_fields_5 .gform_hidden {
  margin: 0;
  padding: 0;
}
#gform_fields_5 .ginput_counter {
  display: none;
}

#order-summary span.heading {
  font-weight: bold;
}
#order-summary .textRight {
  text-align: right;
  width: 100%;
  display: inline-block;
}
#order-summary .row.shipping {
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  #order-summary .row.headings {
    display: none;
  }
}

.StripeElement {
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.CardField-child {
  width: 100%;
}

#payment-form .progress .fa {
  font-size: 2em;
  color: #f15c2c;
  margin-top: 0.3em;
  margin-right: 0.3em;
}

#card-errors {
  color: #f15c2c;
}

.container.cart {
  font-size: 0.9em;
  padding-top: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.container.cart .header {
  background-color: #3a383e;
  color: #FFF;
}
.container.cart .header .columns {
  font-weight: bold;
}
.container.cart .row {
  margin-left: 0;
  margin-right: 0;
  align-items: baseline;
}
.container.cart .columns {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0;
  padding-bottom: 0;
}
.container.cart .data {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  position: relative;
  background: none;
}
.container.cart .data:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.05);
}
.container.cart .data a.crm {
  font-weight: 700;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
.container.cart .data .delete {
  position: absolute;
  right: 0;
  padding-top: 7px;
  cursor: pointer;
}
.container.cart .data .delete button {
  color: #f15c2c;
}
.container.cart .data select, .container.cart .data input {
  background-color: #FFF;
  border: 1px solid #3a383e;
  padding: 0px 10px;
  height: 34px;
  margin-bottom: 0;
  width: 100%;
  min-width: auto;
}
.container.cart .data select.disabled, .container.cart .data input.disabled {
  color: #a9a9a9;
}
.container.cart .data.hasChanged .unitPrice.changed,
.container.cart .data.hasChanged .totalPrice.changed,
.container.cart .data.hasChanged .dispatchTime.changed {
  color: #ec5840;
  font-weight: bold;
  text-decoration: underline;
}
.container.cart .data.hasChanged .packSize.changed select,
.container.cart .data.hasChanged .quantity.changed input {
  border: 2px solid #ec5840 !important;
}
.container.cart .data.archived .link,
.container.cart .data.archived .packSize,
.container.cart .data.archived .quantity,
.container.cart .data.archived .dispatchTime,
.container.cart .data.archived .unitPrice,
.container.cart .data.archived .totalPrice {
  text-decoration: line-through;
}
.container.cart .data.outOfStock .dispatchTime,
.container.cart .data.outOfStock .unitPrice,
.container.cart .data.outOfStock .totalPrice {
  text-decoration: line-through;
}
.container.cart .textRight {
  text-align: right;
}
.container.cart .show-for-small-only {
  padding-top: 10px;
  padding-bottom: 0;
}
.container.cart .has-tip {
  border-bottom: none;
}
.container.cart .large-9.columns {
  margin-bottom: 0 !important;
}
.container.cart .small-1 {
  flex: 0 0 3.3333333333%;
  max-width: 3.3333333333%;
}
.container.cart .small-2 {
  flex: 0 0 6.6666666667%;
  max-width: 6.6666666667%;
}
.container.cart .small-3 {
  flex: 0 0 10%;
  max-width: 10%;
}
.container.cart .small-4 {
  flex: 0 0 13.3333333333%;
  max-width: 13.3333333333%;
}
.container.cart .small-5 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.container.cart .small-6 {
  flex: 0 0 20%;
  max-width: 20%;
}
.container.cart .small-7 {
  flex: 0 0 23.3333333333%;
  max-width: 23.3333333333%;
}
.container.cart .small-8 {
  flex: 0 0 26.6666666667%;
  max-width: 26.6666666667%;
}
.container.cart .small-9 {
  flex: 0 0 30%;
  max-width: 30%;
}
.container.cart .small-10 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.container.cart .small-11 {
  flex: 0 0 36.6666666667%;
  max-width: 36.6666666667%;
}
.container.cart .small-12 {
  flex: 0 0 40%;
  max-width: 40%;
}
.container.cart .small-13 {
  flex: 0 0 43.3333333333%;
  max-width: 43.3333333333%;
}
.container.cart .small-14 {
  flex: 0 0 46.6666666667%;
  max-width: 46.6666666667%;
}
.container.cart .small-15 {
  flex: 0 0 50%;
  max-width: 50%;
}
.container.cart .small-16 {
  flex: 0 0 53.3333333333%;
  max-width: 53.3333333333%;
}
.container.cart .small-17 {
  flex: 0 0 56.6666666667%;
  max-width: 56.6666666667%;
}
.container.cart .small-18 {
  flex: 0 0 60%;
  max-width: 60%;
}
.container.cart .small-19 {
  flex: 0 0 63.3333333333%;
  max-width: 63.3333333333%;
}
.container.cart .small-20 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.container.cart .small-21 {
  flex: 0 0 70%;
  max-width: 70%;
}
.container.cart .small-22 {
  flex: 0 0 73.3333333333%;
  max-width: 73.3333333333%;
}
.container.cart .small-23 {
  flex: 0 0 76.6666666667%;
  max-width: 76.6666666667%;
}
.container.cart .small-24 {
  flex: 0 0 80%;
  max-width: 80%;
}
.container.cart .small-25 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.container.cart .small-26 {
  flex: 0 0 86.6666666667%;
  max-width: 86.6666666667%;
}
.container.cart .small-27 {
  flex: 0 0 90%;
  max-width: 90%;
}
.container.cart .small-28 {
  flex: 0 0 93.3333333333%;
  max-width: 93.3333333333%;
}
.container.cart .small-29 {
  flex: 0 0 96.6666666667%;
  max-width: 96.6666666667%;
}
.container.cart .small-30 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (min-width: 40em) {
  .container.cart .medium-1 {
    flex: 0 0 3.3333333333%;
    max-width: 3.3333333333%;
  }
  .container.cart .medium-2 {
    flex: 0 0 6.6666666667%;
    max-width: 6.6666666667%;
  }
  .container.cart .medium-3 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .container.cart .medium-4 {
    flex: 0 0 13.3333333333%;
    max-width: 13.3333333333%;
  }
  .container.cart .medium-5 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .container.cart .medium-6 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .container.cart .medium-7 {
    flex: 0 0 23.3333333333%;
    max-width: 23.3333333333%;
  }
  .container.cart .medium-8 {
    flex: 0 0 26.6666666667%;
    max-width: 26.6666666667%;
  }
  .container.cart .medium-9 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .container.cart .medium-10 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .container.cart .medium-11 {
    flex: 0 0 36.6666666667%;
    max-width: 36.6666666667%;
  }
  .container.cart .medium-12 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .container.cart .medium-13 {
    flex: 0 0 43.3333333333%;
    max-width: 43.3333333333%;
  }
  .container.cart .medium-14 {
    flex: 0 0 46.6666666667%;
    max-width: 46.6666666667%;
  }
  .container.cart .medium-15 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .container.cart .medium-16 {
    flex: 0 0 53.3333333333%;
    max-width: 53.3333333333%;
  }
  .container.cart .medium-17 {
    flex: 0 0 56.6666666667%;
    max-width: 56.6666666667%;
  }
  .container.cart .medium-18 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .container.cart .medium-19 {
    flex: 0 0 63.3333333333%;
    max-width: 63.3333333333%;
  }
  .container.cart .medium-20 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .container.cart .medium-21 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .container.cart .medium-22 {
    flex: 0 0 73.3333333333%;
    max-width: 73.3333333333%;
  }
  .container.cart .medium-23 {
    flex: 0 0 76.6666666667%;
    max-width: 76.6666666667%;
  }
  .container.cart .medium-24 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .container.cart .medium-25 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .container.cart .medium-26 {
    flex: 0 0 86.6666666667%;
    max-width: 86.6666666667%;
  }
  .container.cart .medium-27 {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .container.cart .medium-28 {
    flex: 0 0 93.3333333333%;
    max-width: 93.3333333333%;
  }
  .container.cart .medium-29 {
    flex: 0 0 96.6666666667%;
    max-width: 96.6666666667%;
  }
  .container.cart .medium-30 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .container.cart .large-1 {
    flex: 0 0 3.3333333333%;
    max-width: 3.3333333333%;
  }
  .container.cart .large-2 {
    flex: 0 0 6.6666666667%;
    max-width: 6.6666666667%;
  }
  .container.cart .large-3 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .container.cart .large-4 {
    flex: 0 0 13.3333333333%;
    max-width: 13.3333333333%;
  }
  .container.cart .large-5 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .container.cart .large-6 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .container.cart .large-7 {
    flex: 0 0 23.3333333333%;
    max-width: 23.3333333333%;
  }
  .container.cart .large-8 {
    flex: 0 0 26.6666666667%;
    max-width: 26.6666666667%;
  }
  .container.cart .large-9 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .container.cart .large-10 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .container.cart .large-11 {
    flex: 0 0 36.6666666667%;
    max-width: 36.6666666667%;
  }
  .container.cart .large-12 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .container.cart .large-13 {
    flex: 0 0 43.3333333333%;
    max-width: 43.3333333333%;
  }
  .container.cart .large-14 {
    flex: 0 0 46.6666666667%;
    max-width: 46.6666666667%;
  }
  .container.cart .large-15 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .container.cart .large-16 {
    flex: 0 0 53.3333333333%;
    max-width: 53.3333333333%;
  }
  .container.cart .large-17 {
    flex: 0 0 56.6666666667%;
    max-width: 56.6666666667%;
  }
  .container.cart .large-18 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .container.cart .large-19 {
    flex: 0 0 63.3333333333%;
    max-width: 63.3333333333%;
  }
  .container.cart .large-20 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .container.cart .large-21 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .container.cart .large-22 {
    flex: 0 0 73.3333333333%;
    max-width: 73.3333333333%;
  }
  .container.cart .large-23 {
    flex: 0 0 76.6666666667%;
    max-width: 76.6666666667%;
  }
  .container.cart .large-24 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .container.cart .large-25 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .container.cart .large-26 {
    flex: 0 0 86.6666666667%;
    max-width: 86.6666666667%;
  }
  .container.cart .large-27 {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .container.cart .large-28 {
    flex: 0 0 93.3333333333%;
    max-width: 93.3333333333%;
  }
  .container.cart .large-29 {
    flex: 0 0 96.6666666667%;
    max-width: 96.6666666667%;
  }
  .container.cart .large-30 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 71.875em) {
  .container.cart .xlarge-1 {
    flex: 0 0 3.3333333333%;
    max-width: 3.3333333333%;
  }
  .container.cart .xlarge-2 {
    flex: 0 0 6.6666666667%;
    max-width: 6.6666666667%;
  }
  .container.cart .xlarge-3 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .container.cart .xlarge-4 {
    flex: 0 0 13.3333333333%;
    max-width: 13.3333333333%;
  }
  .container.cart .xlarge-5 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .container.cart .xlarge-6 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .container.cart .xlarge-7 {
    flex: 0 0 23.3333333333%;
    max-width: 23.3333333333%;
  }
  .container.cart .xlarge-8 {
    flex: 0 0 26.6666666667%;
    max-width: 26.6666666667%;
  }
  .container.cart .xlarge-9 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .container.cart .xlarge-10 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .container.cart .xlarge-11 {
    flex: 0 0 36.6666666667%;
    max-width: 36.6666666667%;
  }
  .container.cart .xlarge-12 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .container.cart .xlarge-13 {
    flex: 0 0 43.3333333333%;
    max-width: 43.3333333333%;
  }
  .container.cart .xlarge-14 {
    flex: 0 0 46.6666666667%;
    max-width: 46.6666666667%;
  }
  .container.cart .xlarge-15 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .container.cart .xlarge-16 {
    flex: 0 0 53.3333333333%;
    max-width: 53.3333333333%;
  }
  .container.cart .xlarge-17 {
    flex: 0 0 56.6666666667%;
    max-width: 56.6666666667%;
  }
  .container.cart .xlarge-18 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .container.cart .xlarge-19 {
    flex: 0 0 63.3333333333%;
    max-width: 63.3333333333%;
  }
  .container.cart .xlarge-20 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .container.cart .xlarge-21 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .container.cart .xlarge-22 {
    flex: 0 0 73.3333333333%;
    max-width: 73.3333333333%;
  }
  .container.cart .xlarge-23 {
    flex: 0 0 76.6666666667%;
    max-width: 76.6666666667%;
  }
  .container.cart .xlarge-24 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .container.cart .xlarge-25 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .container.cart .xlarge-26 {
    flex: 0 0 86.6666666667%;
    max-width: 86.6666666667%;
  }
  .container.cart .xlarge-27 {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .container.cart .xlarge-28 {
    flex: 0 0 93.3333333333%;
    max-width: 93.3333333333%;
  }
  .container.cart .xlarge-29 {
    flex: 0 0 96.6666666667%;
    max-width: 96.6666666667%;
  }
  .container.cart .xlarge-30 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.cart-update-form {
  margin-bottom: 30px;
}
.cart-update-form input[type=number] {
  min-width: 80px;
  width: 100%;
}
.cart-update-form button[type=submit].disabled {
  opacity: 0.4;
}
.cart-update-form .quantity {
  width: 100%;
}
.cart-update-form .unitPrice, .cart-update-form .totalPrice {
  text-align: right;
}
.cart-update-form .disabled1 {
  opacity: 0.4;
}

#cart .footer {
  font-size: 1rem;
  align-items: baseline;
  margin-top: 1em;
}
#cart .footer p {
  text-align: right;
}
#cart .footer span {
  display: inline-block;
  padding-left: 1em;
  font-weight: bold;
  white-space: nowrap;
}
#cart .noShow {
  display: none;
}
#cart .orange {
  color: #f15c2c;
}
#cart .site-alert {
  font-size: 1rem;
}
#cart .site-alert .columns {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 40em) {
  .container.cart {
    font-size: 0.8em;
  }
  .container.cart .row {
    align-items: center;
  }
  .container.cart .columns {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .container.cart .data {
    border: none;
    padding-bottom: 0;
  }
  .container.cart .data a.crm {
    margin-top: 0px;
    display: none;
  }
  .container.cart .data.first a.crm {
    display: block;
  }
  .container.cart .data .delete {
    position: relative;
    right: inherit;
    padding-top: 10px;
  }
}
@media screen and (min-width: 64em) {
  .container.cart {
    font-size: 0.9em;
  }
  #cart .footer .rightCol p {
    padding-right: 1.5em;
  }
}
#saved_to_all {
  font-weight: 700;
}

#cart.no-freight #details-delivery, #cart.no-freight #details-shipping, #cart.no-freight #total-shipping {
  display: none;
}
#cart.no-freight #details-shipping.regionOverride {
  display: none;
}
#cart.no-freight .shipping_estimate_alert {
  display: none;
}
#cart.no-freight .price-shipping-total {
  display: none;
}
#cart.no-freight #details-billing {
  flex: 0 0 100%;
  max-width: 100%;
}
#cart:not(.no-freight) #custom_freight {
  display: none;
}
#cart.shipping-possible .shipping_estimate_alert {
  display: none;
}
#cart:not(.shipping-possible):not(.no-freight) #details-shipping, #cart:not(.shipping-possible):not(.no-freight) #details-totals {
  pointer-events: none;
  opacity: 0.3;
}

#details-contact.validated #details-billing,
#details-contact.validated #details-delivery {
  display: none;
}

#details-locations select {
  margin-bottom: 0;
}

#details-showHide {
  margin-top: 1em;
  align-self: flex-end;
}

#details-billing,
#details-delivery,
#certificate-of-origin {
  width: 100%;
}
#details-billing ul,
#details-delivery ul,
#certificate-of-origin ul {
  width: 100%;
  list-style-type: none;
  margin: 0;
}

#details-billing {
  float: left;
  padding-left: 0;
}
#details-billing li {
  padding-left: 0;
}

#details-delivery {
  float: right;
  padding-right: 0;
}
#details-delivery li {
  padding-right: 0;
}
#details-delivery #field_4_26 {
  float: right;
  margin-top: 30px;
}

#gform_3 #field_3_8,
#gform_3 #field_3_9 {
  width: 30%;
  display: inline-block;
}
#gform_3 #field_3_19 {
  width: 23%;
  display: inline-block;
}
#gform_3 #field_3_19 .ginput_container {
  padding-left: 1em;
}
#gform_3 #field_3_4 {
  width: 50%;
  display: inline-block;
}
#gform_3 #field_3_4 .ginput_container {
  padding-left: 1em;
}
#gform_3 #field_3_5 {
  width: 47%;
  display: inline-block;
}
#gform_3 #field_3_5 .ginput_container {
  padding-left: 1em;
}
#gform_3 #field_3_19 label,
#gform_3 #field_3_4 label,
#gform_3 #field_3_5 label {
  visibility: hidden;
}
#gform_3 .gform_wrapper .gfield {
  vertical-align: top;
}

#gform_6 .progress,
#checkoutForm .progress {
  position: relative;
  display: none;
  float: right;
  top: 10px;
  right: 5px;
  font-size: 1.5em;
}
#gform_6 .progress .fa,
#checkoutForm .progress .fa {
  font-size: 1.5em;
  color: #f15c2c;
}

#gform_4 li.gf_left_half,
#gform_4 li.gf_right_half {
  width: 50% !important;
}
#gform_4 .gfield.checkBox .gfield_label {
  display: none;
}
#gform_4 .gfield.checkBox ul li label {
  margin-top: 0;
}
#gform_4 .gfield.shippingHeading,
#gform_4 .gfield.checkBox {
  display: inline-block;
}
#gform_4 .gform_footer {
  clear: both;
}
#gform_4 .gform_footer .secondary {
  float: left;
}
#gform_4 .gform_footer input[type=submit] {
  padding: 12px 30px;
  font-size: 22px;
  line-height: 26px;
  float: right;
}
#gform_4 .progress1 {
  position: relative;
  display: none;
  top: 10px;
  right: 5px;
  font-size: 1.5em;
}
#gform_4 .progress1 .fa {
  font-size: 1.5em;
  color: #f15c2c;
}
@media screen and (max-width: 410px) {
  #gform_4 #quotation,
  #gform_4 #gform_submit_button_4 {
    float: none;
    width: 100%;
    margin-bottom: 1em;
  }
}

#cart:not(.shipping-possible):not(.no-freight) #details-shipping, #cart:not(.shipping-possible):not(.no-freight) #details-totals {
  pointer-events: all;
  opacity: 1;
}

.downloadWrapper {
  position: relative;
}

ul.downloadLinks {
  display: none;
  width: 100%;
  padding-left: 30px;
  list-style-type: none;
  margin: 0;
}
ul.downloadLinks li a {
  margin-bottom1: 0;
}

.cartSummary {
  padding: 1.5rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  margin: 3em auto;
  max-width: 600px;
}
.cartSummary h4 {
  margin-top: 0;
}
.cartSummary table {
  margin-bottom: 0;
  font-size: 1em;
}
.cartSummary table tbody {
  border: none;
  background-color: #FFF;
}
.cartSummary table tbody tr:nth-child(even) {
  background-color: #FFF;
}
.cartSummary table tbody tr {
  vertical-align: top;
}
.cartSummary table tbody td {
  padding-left: 0;
}
.cartSummary textarea {
  height: 100px;
  resize: none;
}

#details-shipping {
  clear: both;
  padding-top: 1px;
}
#details-shipping .progress .fa {
  font-size: 1em;
  color: #f15c2c;
}
#details-shipping .courier-error {
  color: #f15c2c;
}
#details-shipping h4 .validation_message {
  display: inline-block;
  float: right;
  font-size: 17px;
  color: #dd4141;
  line-height: 2.1;
  display: none;
}
#details-shipping h4 .validation_message.show {
  display: block;
}
@media screen and (max-width: 640px) {
  #details-shipping h4 .validation_message {
    line-height: 1.3;
    width: 150px;
    text-align: right;
  }
}

#shipping-footer {
  width: 100%;
}
#shipping-footer .details {
  width: 100%;
  text-align: right;
}
#shipping-footer .details .currency {
  display: inline-block;
  padding-left: 1em;
}
#shipping-footer .details .total {
  display: inline-block;
  padding-left: 1em;
}

#shipping-buttons .progress .fa {
  font-size: 2em;
  color: #f15c2c;
  margin-top: 0.3em;
  margin-right: 0.3em;
  margin-left: 0.3em;
}
#shipping-buttons .submit .progress {
  float: right;
}

.has-tip.quantity {
  cursor: auto;
}

.quantityWrapper .has-tip.quantity {
  border-bottom: none;
}

.tooltip.quantity {
  padding: 0.5rem;
  font-weight: bold;
  z-index: 90;
  border: 1px solid #eee;
}
.tooltip.quantity::before {
  border: inset 0.5rem;
  border-color: transparent transparent #f15c2c;
}
.tooltip.quantity.top::before {
  border: inset 0.5rem;
  border-color: #f15c2c transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  top: 100%;
  bottom: auto;
}
.tooltip.quantity.left::before {
  border: inset 0.5rem;
  border-color: transparent transparent transparent #f15c2c;
  border-left-style: solid;
}
.tooltip.quantity.compare {
  border: none;
}

#certificate-of-origin {
  float: left;
  padding-left: 0;
  clear: both;
}

#certificate-of-origin-field {
  padding-left: 0;
  list-style: none;
}

h2.crm_web_title {
  font-weight: 400;
  font-size: 2.5rem;
  margin-top: 0px;
}

.login-remember {
  float: right;
  margin-top: 5px;
}

#loginForm p.wppb-error {
  color: #ec5840;
  font-weight: normal;
  margin-bottom: 20px;
}

.account-nav {
  width: 100%;
  padding-right: 0px;
}
.account-nav ul {
  list-style: none;
  margin-left: 0;
  line-height: 1;
  padding: 15px 0;
  border-right: 1px solid #eee;
}
.account-nav ul li a {
  display: block;
  padding: 15px;
  padding-left: 0;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.account-nav ul li:first-child a {
  border-top: 1px solid #eee;
}
.account-nav ul li.is-active a {
  margin-right: -1px;
  color: #000;
}

.login-wrapper {
  padding: 3rem 0;
}
.login-wrapper h2 {
  font-weight: 700;
}

.login-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  top: 0;
  left: 0;
}
.login-bg::after {
  content: "";
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.my-account-logged-in {
  background-color: #fff;
  padding: 3em 1.5rem;
  max-width: 40rem;
}
.my-account-logged-in h2 {
  font-weight: 700;
}

.page-template-page-contact .page-inner .wp-block-buttons .wp-block-button__link {
  border-radius: 0px !important;
  margin-bottom: 1rem;
  background-color: #f15c2c;
  width: 100%;
  border: 1px solid #f15c2c;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.page-template-page-contact .page-inner a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.page-template-page-contact .page-inner a::after {
  display: block;
  font-family: "Material Symbols Outlined";
  content: "arrow_forward";
  -webkit-font-feature-settings: "liga" 1;
  -moz-font-feature-settings: "liga" 1;
  font-feature-settings: "liga" 1;
}

tr.noBackground {
  background-color: transparent !important;
}

td.orangeBorder {
  border-top: 2px solid #f15c2c;
}

form.reorder button {
  float: right;
}

.wppb-user-forms > ul {
  list-style: none;
  margin: 0;
}

.wppb-required {
  display: none;
}

.wppb-form-error {
  color: #ec5840;
}

#wppb_password_strength + .wppb-form-error br {
  display: none;
}

#pass-strength-result {
  float: right;
  font-style: normal;
  opacity: 0.5;
  margin-left: 20px;
}
#pass-strength-result.short, #pass-strength-result.bad, #pass-strength-result.good, #pass-strength-result.strong {
  opacity: 1;
}
#pass-strength-result.short {
  color: #ec5840;
}
#pass-strength-result.bad {
  color: #ffae00;
}
#pass-strength-result.good, #pass-strength-result.strong {
  color: #3adb76;
  font-weight: 700;
}

.orderList ul.menu.hollow {
  margin-top: -2.5em;
  margin-bottom: 0;
}
.orderList ul.menu.hollow button {
  color: #FFF;
}

h5.needNewAccountPrompt {
  font-size: 1.1em;
}

@media screen and (max-width: 1024px) {
  .account-nav {
    width: 100%;
  }
  .account-nav ul {
    padding: 0;
    padding-bottom: 2em;
    border-right: none;
  }
  .account-nav ul li {
    display: inline-block;
  }
  .account-nav ul li a {
    padding: 15px;
    padding-left: 0;
    border-bottom: 1px solid #eee;
  }
  .account-nav ul li:first-child a {
    border-top: none;
  }
}
@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.search-form {
  /*
   * Base
   */
  font-size: 14px;
  /*
   * Sidebar
   */
  /*
   * Info
   */
  /*
   * Table
   */
  /*
   * Basic view
   */
  /*
   * Compare view
   */
}
.search-form a {
  text-decoration: none;
}
.search-form p {
  line-height: 1.4;
}
.search-form h5 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #222;
}
.search-form h6 {
  font-size: 13px;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 6px;
}
.search-form h6 small {
  color: inherit;
  opacity: 0.8;
}
.search-form h6.activeFilter {
  font-size: 14px;
  font-weight: 700;
  color: #555;
}
.search-form [type=text], .search-form [type=password], .search-form [type=date], .search-form [type=datetime], .search-form [type=datetime-local], .search-form [type=month], .search-form [type=week], .search-form [type=email], .search-form [type=number], .search-form [type=search], .search-form [type=tel], .search-form [type=time], .search-form [type=url], .search-form [type=color], .search-form textarea, .search-form select {
  height: 38px;
  font-size: 14px;
  padding: 7px 12px;
}
.search-form select {
  background-color: #fff;
  border-color: #ccc;
}
.search-form .callout label, .search-form #wppb_register_pre_form_message label, .search-form #wppb_general_top_error_message label, .search-form .wppb-error label, .search-form #wppb_form_success_message label {
  margin-top: 0;
  color: #555;
  font-size: 13px;
  font-weight: 700;
}
.search-form .count {
  margin-right: 20px;
}
.search-form .menu.checkboxes {
  margin-top: 6px;
}
.search-form .menu.checkboxes input {
  float: left;
  margin-top: 2px;
  margin-right: 5px;
}
.search-form .menu.checkboxes label {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 15px;
  margin-left: 15px;
}
.search-form a.open-compare {
  opacity: 0.8;
  display: block;
  transform-origin: center;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.search-form a.open-compare.active {
  opacity: 1;
  transform: scale(1.1);
  animation-name: jello;
}
.search-form a.open-compare.active > span {
  border-bottom: 1px solid #ccc;
}
.search-form a.open-compare small {
  letter-spacing: -0.75px;
}
.search-form .table-container {
  margin-bottom: 20px;
  position: relative;
}
.search-form .table-container table {
  margin-bottom: 0;
  position: relative;
  line-height: 1.2;
  border-collapse: initial;
}
.search-form .table-container table th {
  position: relative;
}
.search-form .table-container table th a {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
.search-form .table-container table a {
  text-decoration: none;
}
.search-form .table-container table input {
  margin-bottom: 0;
}
.search-form .table-container table label {
  color: inherit;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}
.search-form .table-container table label:not(:first-child) {
  margin-top: 7px;
}
.search-form .table-container table label span {
  opacity: 0.7;
}
.search-form .table-container table p {
  line-height: inherit;
}
.search-form .table-container table p small {
  display: block;
}
.search-form .table-container table p:not(:first-child) {
  margin-top: 7px;
}
.search-form .table-container table thead {
  border: 0;
}
.search-form .table-container table tbody {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 0;
  border-bottom-width: 2px;
}
.search-form .table-container table thead {
  background: #3a383e;
  color: #fff;
}
.search-form .table-container table thead a {
  color: #fff;
}
.search-form .table-container table thead td {
  font-weight: 400;
}
.search-form .table-container table thead tr:first-child th, .search-form .table-container table thead tr:first-child td {
  padding-top: 20px;
}
.search-form .table-container table thead th, .search-form .table-container table thead td {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.search-form .table-container table thead th.current, .search-form .table-container table thead td.current {
  background: rgba(255, 255, 255, 0.1);
}
.search-form .table-container table thead th.sortCol, .search-form .table-container table thead td.sortCol {
  white-space: nowrap;
}
.search-form .table-container table thead th.arrow_asc:after, .search-form .table-container table thead td.arrow_asc:after {
  transform: translateY(-50%) scale(2) rotate(180deg);
}
.search-form .table-container table thead th.arrow_desc:after, .search-form .table-container table thead td.arrow_desc:after {
  transform: translateY(-50%) scale(2);
}
.search-form .table-container table thead th.arrow_asc:hover .sortLink:after, .search-form .table-container table thead th.arrow_asc:hover:after, .search-form .table-container table thead th.arrow_desc.current:hover:after, .search-form .table-container table thead td.arrow_asc:hover .sortLink:after, .search-form .table-container table thead td.arrow_asc:hover:after, .search-form .table-container table thead td.arrow_desc.current:hover:after {
  transform: translateY(-50%) scale(3) rotate(180deg);
}
.search-form .table-container table thead th.arrow_desc:hover .sortLink:after, .search-form .table-container table thead th.arrow_desc:hover:after, .search-form .table-container table thead th.arrow_asc.current:hover:after, .search-form .table-container table thead td.arrow_desc:hover .sortLink:after, .search-form .table-container table thead td.arrow_desc:hover:after, .search-form .table-container table thead td.arrow_asc.current:hover:after {
  transform: translateY(-50%) scale(3);
}
.search-form .table-container table thead th.arrow_desc, .search-form .table-container table thead th.arrow_asc, .search-form .table-container table thead th.arrowSort, .search-form .table-container table thead td.arrow_desc, .search-form .table-container table thead td.arrow_asc, .search-form .table-container table thead td.arrowSort {
  cursor: pointer;
}
.search-form .table-container table thead th.arrow_desc .sortLink:after,
.search-form .table-container table thead th.arrow_desc span, .search-form .table-container table thead th.arrow_asc .sortLink:after,
.search-form .table-container table thead th.arrow_asc span, .search-form .table-container table thead th.arrowSort .sortLink:after,
.search-form .table-container table thead th.arrowSort span, .search-form .table-container table thead td.arrow_desc .sortLink:after,
.search-form .table-container table thead td.arrow_desc span, .search-form .table-container table thead td.arrow_asc .sortLink:after,
.search-form .table-container table thead td.arrow_asc span, .search-form .table-container table thead td.arrowSort .sortLink:after,
.search-form .table-container table thead td.arrowSort span {
  margin-right: 5px;
}
.search-form .table-container table thead th.arrow_desc:after, .search-form .table-container table thead th.arrow_asc:after, .search-form .table-container table thead th.arrowSort:after, .search-form .table-container table thead td.arrow_desc:after, .search-form .table-container table thead td.arrow_asc:after, .search-form .table-container table thead td.arrowSort:after {
  content: "";
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 6px 5px;
  border-bottom: 0;
  border-top-color: #fff;
  display: inline;
  margin: 0;
  position: absolute;
  top: 50%;
  right: 10%;
}
.search-form .table-container table thead th.arrow_desc.current .sortLink:after, .search-form .table-container table thead th.arrow_desc.current:after, .search-form .table-container table thead th.arrow_asc.current .sortLink:after, .search-form .table-container table thead th.arrow_asc.current:after, .search-form .table-container table thead th.arrowSort.current .sortLink:after, .search-form .table-container table thead th.arrowSort.current:after, .search-form .table-container table thead td.arrow_desc.current .sortLink:after, .search-form .table-container table thead td.arrow_desc.current:after, .search-form .table-container table thead td.arrow_asc.current .sortLink:after, .search-form .table-container table thead td.arrow_asc.current:after, .search-form .table-container table thead td.arrowSort.current .sortLink:after, .search-form .table-container table thead td.arrowSort.current:after {
  border-top-color: #f15c2c;
}
.search-form .table-container table thead th.arrow_desc .sortLink, .search-form .table-container table thead th.arrow_asc .sortLink, .search-form .table-container table thead th.arrowSort .sortLink, .search-form .table-container table thead td.arrow_desc .sortLink, .search-form .table-container table thead td.arrow_asc .sortLink, .search-form .table-container table thead td.arrowSort .sortLink {
  border-bottom: none;
  margin-left: 10px;
}
.search-form .table-container table thead th.arrow_desc.noExtra:after, .search-form .table-container table thead th.arrow_asc.noExtra:after, .search-form .table-container table thead th.arrowSort.noExtra:after, .search-form .table-container table thead td.arrow_desc.noExtra:after, .search-form .table-container table thead td.arrow_asc.noExtra:after, .search-form .table-container table thead td.arrowSort.noExtra:after {
  content: none;
}
.search-form .table-container table thead th.arrow_desc a, .search-form .table-container table thead th.arrow_asc a, .search-form .table-container table thead th.arrowSort a, .search-form .table-container table thead td.arrow_desc a, .search-form .table-container table thead td.arrow_asc a, .search-form .table-container table thead td.arrowSort a {
  z-index: 100;
}
.search-form .table-container table thead th.arrow_desc:hover:not(.current) .sortLink:after, .search-form .table-container table thead th.arrow_desc:hover:not(.current) .sortLink:after, .search-form .table-container table thead th.arrow_desc:hover:not(.current):after, .search-form .table-container table thead th.arrow_desc:hover:not(.current):after, .search-form .table-container table thead th.arrow_asc:hover:not(.current) .sortLink:after, .search-form .table-container table thead th.arrow_asc:hover:not(.current) .sortLink:after, .search-form .table-container table thead th.arrow_asc:hover:not(.current):after, .search-form .table-container table thead th.arrow_asc:hover:not(.current):after, .search-form .table-container table thead th.arrowSort:hover:not(.current) .sortLink:after, .search-form .table-container table thead th.arrowSort:hover:not(.current) .sortLink:after, .search-form .table-container table thead th.arrowSort:hover:not(.current):after, .search-form .table-container table thead th.arrowSort:hover:not(.current):after, .search-form .table-container table thead td.arrow_desc:hover:not(.current) .sortLink:after, .search-form .table-container table thead td.arrow_desc:hover:not(.current) .sortLink:after, .search-form .table-container table thead td.arrow_desc:hover:not(.current):after, .search-form .table-container table thead td.arrow_desc:hover:not(.current):after, .search-form .table-container table thead td.arrow_asc:hover:not(.current) .sortLink:after, .search-form .table-container table thead td.arrow_asc:hover:not(.current) .sortLink:after, .search-form .table-container table thead td.arrow_asc:hover:not(.current):after, .search-form .table-container table thead td.arrow_asc:hover:not(.current):after, .search-form .table-container table thead td.arrowSort:hover:not(.current) .sortLink:after, .search-form .table-container table thead td.arrowSort:hover:not(.current) .sortLink:after, .search-form .table-container table thead td.arrowSort:hover:not(.current):after, .search-form .table-container table thead td.arrowSort:hover:not(.current):after {
  border-top-color: #f15c2c;
}
.search-form .table-container table tbody tr:last-child th, .search-form .table-container table tbody tr:last-child td {
  padding-bottom: 16px;
}
.search-form .table-container table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
.search-form .table-container table tbody th, .search-form .table-container table tbody td {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.search-form .table-container table tbody th.current, .search-form .table-container table tbody th.highlight, .search-form .table-container table tbody td.current, .search-form .table-container table tbody td.highlight {
  background: rgba(0, 0, 0, 0.05);
}
.search-form .table-container table th, .search-form .table-container table td {
  padding: 10px;
  vertical-align: top;
}
.search-form .table-container .colCRM {
  width: 114px;
  min-width: 114px !important;
  max-width: 114px !important;
}
.search-form .table-container .col1 {
  width: 59px;
  min-width: 59px !important;
  max-width: 59px !important;
}
.search-form .table-container .col2 {
  width: 59px;
  min-width: 59px !important;
  max-width: 59px !important;
}
.search-form .table-container .col3 {
  width: 59px;
  min-width: 59px !important;
  max-width: 59px !important;
}
.search-form .table-container .colCertified {
  width: 320px;
  min-width: 320px !important;
  max-width: 320px !important;
}
.search-form .table-container .colState {
  width: 110px;
  min-width: 110px !important;
  max-width: 110px !important;
}
.search-form .table-container .colMatix {
  width: 150px;
  min-width: 150px !important;
  max-width: 150px !important;
}
.search-form .table-container .colMineral {
  width: 190px;
  min-width: 190px !important;
  max-width: 190px !important;
}
.search-form .table-container .colWish {
  width: 75px;
  min-width: 75px !important;
  max-width: 75px !important;
  text-align: center;
}
.search-form .table-container .colCart {
  text-align: center;
  width: 75px;
  min-width: 75px !important;
  max-width: 75px !important;
}
.search-form .table-container {
  overflow: hidden;
  overflow-x: scroll;
}
.search-form .view-basic {
  padding-top: 100px;
}
.search-form .view-basic .row {
  max-width: 100%;
}
.search-form .view-basic .table-container {
  margin: 0 -15px;
}
.search-form .view-basic .table-container:before {
  content: "";
  position: absolute;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #fff 95%, #fff 100%);
  z-index: 9999;
  display: none;
  pointer-events: none;
}
.search-form .view-basic .table-container:not(.scrolling):before {
  display: block;
}
.search-form .view-basic .table-container table {
  background: #ddd;
}
.search-form .view-basic .table-container table thead tr:first-child th, .search-form .view-basic .table-container table thead tr:first-child td {
  padding-bottom: 12px;
}
.search-form .view-basic .table-container table thead tr.arrow {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.search-form .view-basic .table-container table td:first-child {
  font-weight: 900;
}
.search-form .view-basic .table-container table th:first-child, .search-form .view-basic .table-container table td:first-child {
  padding-left: 15px;
}
.search-form .view-basic .table-container table th.add-to-cart, .search-form .view-basic .table-container table td.add-to-cart {
  position: relative;
  background: rgba(58, 56, 62, 0.7);
  color: #fff;
}
.search-form .view-basic .table-container table th.add-to-cart a, .search-form .view-basic .table-container table td.add-to-cart a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 35px;
  top: 0;
  left: 0;
  font-size: 0;
  background: rgba(58, 56, 62, 0.9);
  color: #fff;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1);
}
.search-form .view-basic .table-container table th.add-to-cart a:before, .search-form .view-basic .table-container table td.add-to-cart a:before {
  content: "\f217";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  line-height: 1;
}
.search-form .view-basic .table-container table th.add-to-cart a:hover, .search-form .view-basic .table-container table td.add-to-cart a:hover {
  background: #ff6633;
}
.search-form .view-basic .table-container table th.add-to-cart span, .search-form .view-basic .table-container table td.add-to-cart span {
  color: #ccc;
}
.search-form .view-basic .table-container table tr.archived .add-to-cart a:before {
  color: #f15c2c;
}
.search-form .view-basic .table-container table tr.archived .add-to-cart a:hover:before {
  color: #FFF;
}
.search-form .view-basic .table-container table tr.comingsoon-avail .add-to-cart a:before {
  color: #FFFF33;
}
.search-form .view-basic .table-container table tr.comingsoon-avail .add-to-cart a:hover:before {
  color: #FFF;
}
.search-form .view-basic .table-container table tr.comingsoon-no-stock .add-to-cart a:before {
  color: #ffc400;
}
.search-form .view-basic .table-container table tr.comingsoon-no-stock .add-to-cart a:hover:before {
  color: #FFF;
}
.search-form .view-basic .table-container table tr.current-avail .add-to-cart a:before {
  color: #fff;
}
.search-form .view-basic .table-container table tr.current-avail .add-to-cart a:hover:before {
  color: #FFF;
}
.search-form .view-basic .table-container table tr.current-no-stock .add-to-cart a:before {
  color: #BFBEC0;
}
.search-form .view-basic .table-container table tr.current-no-stock .add-to-cart a:hover:before {
  color: #FFF;
}
.search-form .view-basic .table-container-relative {
  position: relative;
}
.search-form .view-basic #searchDiv {
  width: 100%;
}
.search-form .view-basic #searchDiv .leftMargin {
  width: 100%;
}
.search-form .view-basic #searchDiv .leftMargin li {
  width: 100%;
  display: block;
}
.search-form .view-basic #searchDiv .leftMargin li label {
  width: 100%;
}
.search-form .view-basic #searchDiv .leftMargin li label .padding {
  width1: 11%;
  float: left;
  min-width1: 120px;
}
@media screen and (min-width: 64em) {
  .search-form .view-basic {
    padding-left: 15px;
    padding-right: 15px;
  }
  .search-form .view-basic .row > .sidebar {
    flex: 0 0 300px;
    max-width: 300px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .search-form .view-basic .row > .content.columns {
    flex: 1 1 0;
    max-width: 100%;
  }
  .search-form .view-basic .table-container {
    padding-left: 30px;
    padding-right: 30px;
    margin-left: -30px;
    margin-right: -30px;
  }
  .search-form .view-basic .table-container #search-table {
    table-layout: fixed;
    min-width: 900px !important;
    width: 100%;
  }
}
@media screen and (min-width: 720px) {
  .search-form .view-basic #searchDiv .leftMargin {
    width: 40%;
  }
  .search-form .view-basic #searchDiv .leftMargin li label .padding {
    width: 30%;
    min-width: 120px;
  }
}
.search-form .view-compare {
  padding-top: 15px;
}
.search-form .view-compare p.back {
  margin: 0;
}
.search-form .view-compare p.back::before, .search-form .view-compare p.back::after {
  content: " ";
  display: table;
}
.search-form .view-compare p.back::after {
  clear: both;
}
.search-form .view-compare .open-basic {
  float: right;
  padding: 15px;
}
.search-form .view-compare .table-container {
  border-bottom: 1px solid #eee;
}
.search-form .view-compare .table-container table tbody, .search-form .view-compare .table-container table thead {
  border: 0;
}
.search-form .view-compare .table-container table thead a {
  border-bottom: 1px solid #ccc;
}
.search-form .view-compare .table-container table thead tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.15);
}
.search-form .view-compare .table-container table thead tr:last-child th, .search-form .view-compare .table-container table thead tr:last-child td {
  background: rgba(0, 0, 0, 0.3);
}
.search-form .view-compare .table-container table thead tr:last-child th.current, .search-form .view-compare .table-container table thead tr:last-child td.current {
  background: rgba(0, 0, 0, 0.1);
}
.search-form .view-compare .table-container table thead th .crm-count, .search-form .view-compare .table-container table thead th .sort-count, .search-form .view-compare .table-container table thead td .crm-count, .search-form .view-compare .table-container table thead td .sort-count {
  opacity: 0.75;
  display: inline-block;
  margin-left: 10px;
}
.search-form .view-compare .table-container table thead th .sort-count, .search-form .view-compare .table-container table thead td .sort-count {
  opacity: 1;
  margin-left: 8px;
}
.search-form .view-compare .table-container table thead th.arrow_desc, .search-form .view-compare .table-container table thead th.arrow_asc, .search-form .view-compare .table-container table thead td.arrow_desc, .search-form .view-compare .table-container table thead td.arrow_asc {
  margin: 0;
}
.search-form .view-compare .table-container table thead th:nth-child(1).arrow_desc:after, .search-form .view-compare .table-container table thead th:nth-child(1).arrow_asc:after, .search-form .view-compare .table-container table thead th:nth-child(2).arrow_desc:after, .search-form .view-compare .table-container table thead th:nth-child(2).arrow_asc:after, .search-form .view-compare .table-container table thead td:nth-child(1).arrow_desc:after, .search-form .view-compare .table-container table thead td:nth-child(1).arrow_asc:after, .search-form .view-compare .table-container table thead td:nth-child(2).arrow_desc:after, .search-form .view-compare .table-container table thead td:nth-child(2).arrow_asc:after {
  margin-left: 10px;
}
.search-form .view-compare .table-container table th, .search-form .view-compare .table-container table td {
  min-width: 140px;
}
.search-form .view-compare .table-container table th:first-child, .search-form .view-compare .table-container table td:first-child {
  min-width: 110px;
  padding-left: 30px;
}
.search-form .view-compare .table-container table th:nth-child(2), .search-form .view-compare .table-container table td:nth-child(2) {
  min-width: 175px;
}
.search-form .view-compare .table-container table th:last-child, .search-form .view-compare .table-container table td:last-child {
  padding-right: 30px;
  border-right: 0 !important;
}
.search-form .view-compare .table-container table th.add-to-cart, .search-form .view-compare .table-container table td.add-to-cart {
  position: relative;
  background: rgba(58, 56, 62, 0.7);
  color: #fff;
}
.search-form .view-compare .table-container table th.add-to-cart a, .search-form .view-compare .table-container table td.add-to-cart a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 0;
  background: rgba(58, 56, 62, 0.9);
  color: #fff;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1);
  border-bottom: none;
}
.search-form .view-compare .table-container table th.add-to-cart a:before, .search-form .view-compare .table-container table td.add-to-cart a:before {
  content: "\f217";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  line-height: 1;
}
.search-form .view-compare .table-container table th.add-to-cart a:hover, .search-form .view-compare .table-container table td.add-to-cart a:hover {
  background: #ff6633;
}
.search-form .view-compare .table-container table th.add-to-cart span, .search-form .view-compare .table-container table td.add-to-cart span {
  color: #ccc;
}

.list-pricing {
  line-height: 1.4;
  list-style: none;
  margin-left: 0;
}
.list-pricing li {
  margin-bottom: 8px;
}
.list-pricing li:first-child {
  color: black;
  font-weight: 600;
}
.list-pricing .name {
  float: left;
  padding-right: 5px;
  width: 125px;
  opacity: 0.8;
}
.list-pricing .tbd {
  opacity: 1 !important;
}
.list-pricing .price {
  float: left;
  overflow: hidden;
  width: 105px;
}
.list-pricing .stock {
  overflow: hidden;
}

#modal-cart-add .row.gutter-large {
  margin-left: 0;
  margin-right: 0;
}

#search-table .hover {
  background-color: #bbb;
  cursor: pointer;
}
#search-table .hover .colWish {
  cursor: default;
}
#search-table th span, #search-table th a {
  font-size: 14px;
}
#search-table th span.wishlistAll, #search-table th a.wishlistAll {
  font-size: 13px;
}

#compare-table thead th.no-sort {
  cursor: pointer;
}

#filters .analyte-small-heading {
  color: #f15c2c;
  font-size: 12px;
}
#filters ul {
  list-style-type: none;
  margin-left: 0.25rem;
}
#filters ul li a .fa {
  margin-right: 4px;
  font-size: 14px;
}
#filters ul .draggable-list:after {
  content: "\f0c9";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  margin: 0px 0px 0px 10px;
  text-decoration: none;
  cursor: pointer;
  float: right;
}
body.page-template-page-account-orders .main .row.fullwidth {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
body.page-template-page-account-orders .main .row.fullwidth .my-account-logged-in {
  max-width: none;
}
body.page-template-page-account-orders .main .row.fullwidth .my-account-logged-in .orderList {
  padding: 30px;
}

.container.ordersFilter {
  padding: 0 0 1em;
  line-height: 1.4;
  margin-left: 15px;
  margin-right: 15px;
}
.container.ordersFilter .header {
  background: #f8f8f8;
  color: #0a0a0a;
  border: 1px solid #f1f1f1;
  padding: 0.5rem 15px 0.625rem 15px;
  font-weight: bold;
}
.container.ordersFilter li {
  padding: 0 10px;
  display: inline-block;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .container.ordersFilter li {
    width: 49%;
    padding: 0 10px 5px;
  }
  .container.ordersFilter .filterButton {
    width: 100%;
    text-align: right;
  }
}
@media screen and (max-width: 39.9375em) {
  .container.ordersFilter li {
    width: 100%;
    padding: 0 10px 5px;
  }
  .container.ordersFilter .filterButton {
    width: 100%;
    text-align: right;
  }
}

#ordersFilter {
  width: 100%;
  font-size: 14px;
}

.container.orders {
  line-height: 1.4;
  font-size: 13px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 0;
}
.container.orders .header {
  background: #f8f8f8;
  color: #0a0a0a;
  border: 1px solid #f1f1f1;
  padding: 0.5rem 0 0.625rem 0;
  font-weight: bold;
}
.container.orders .data {
  line-height: 1.4;
  font-size: 13px;
  padding: 0.5rem 0 0.625rem 0;
}
.container.orders .data:nth-child(even) {
  background-color: #f1f1f1;
}
.container.orders .data .date span {
  white-space: nowrap;
}
.container.orders .data .show-for-small-only {
  font-weight: 700;
}
.container.orders .rightText {
  text-align: right;
}
.container.orders .ofh {
  overflow: hidden;
}

ul.page-numbers {
  list-style: none;
  text-align: right;
}
ul.page-numbers li {
  display: inline-block;
  padding: 0 5px;
}
ul.page-numbers li a {
  text-decoration: none;
}

form.reorder {
  line-height: 1.4;
  font-size: 0.9em;
}
form.reorder .header {
  background: #f8f8f8;
  color: #0a0a0a;
  border: 1px solid #f1f1f1;
}
form.reorder .header .columns {
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 700;
}
form.reorder .lineItem {
  background-color: rgba(0, 0, 0, 0.05);
}
form.reorder .lineItem:nth-child(even) {
  background-color: #fefefe;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
form.reorder .lineItem .show-for-small-only {
  font-weight: 700;
}
form.reorder .noBackground {
  background-color: #fefefe;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
form.reorder .columns {
  padding-top: 8px;
  padding-bottom: 8px;
}
form.reorder .columns.orangeLine {
  padding-top: 20px;
  border-bottom: 2px solid #f15c2c;
}
form.reorder .noMargins:last-of-type {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 39.9375em) {
  .container.orders .data:nth-child(odd) {
    border: 1px solid #f1f1f1;
  }
  .container.orders .data .pr-0 {
    padding-right: 0.9375rem !important;
  }
  form.reorder .columns.orangeLine {
    padding-top: 0;
    padding-bottom: 0;
  }
}
#thankYou .fa-check,
#thankYou .fa-times,
#guest .fa-check,
#guest .fa-times {
  font-size: 1.5em;
  padding-right: 10px;
}
#thankYou .orange,
#guest .orange {
  color: #f15c2c;
}
#thankYou .error,
#guest .error {
  color: #ec5840;
}
#thankYou .error span,
#guest .error span {
  color: #3a383e;
}
#thankYou .error button,
#guest .error button {
  text-decoration: underline;
}
#thankYou .error .progress,
#guest .error .progress {
  color: #f15c2c;
}

ul.deliveryEstimates {
  list-style-type: none;
  margin-left: 0;
}
ul.deliveryEstimates li {
  text-align: left;
  display: inline-block;
  width: 255px;
  padding-left: 1.5em;
  background-color: #999999;
  color: #FFF;
  margin-right: 1em;
  height: 80px;
}
ul.deliveryEstimates li svg {
  height: 40px;
  fill: #FFF;
  margin-top: 20px;
}
ul.deliveryEstimates li svg .st0 {
  stroke: #FFF;
}
ul.deliveryEstimates li.active {
  background-color: #f15c2c;
}
ul.deliveryEstimates li .menu {
  font-weight: 600;
}
ul.deliveryEstimates li .wrapper {
  display: inline-block;
  width: 120px;
  padding-left: 1em;
}
ul.deliveryEstimates li span {
  display: inline-block;
  width: 100%;
}

.downloadBar {
  margin: 30px 0px;
  padding: 15px;
  color: white;
  line-height: 1.3;
}
.downloadBar.blue {
  background: #277597;
}
.downloadBar.blue a {
  color: #a1d8f0;
}
.downloadBar.blue a:hover {
  color: #f15c2c;
}

#guest .feedbackWrapper {
  clear: both;
  padding-top1: 1em;
}
#guest .feedbackWrapper .message {
  margin: 30px 0px 0px;
  padding: 15px;
  background: #5da423;
  color: white;
  line-height: 1.3;
}
#guest .center {
  align-items: center;
}
#guest .validation_error {
  background: #ec5840;
}
@media screen and (max-width: 640px) {
  #guest .button.right, #guest .right.button-primary {
    float: none;
    width: 100%;
    margin-top: 0.5em;
  }
}

.page-id-36 .container.main > .row .large-9.columns, .container.main > .row .sidebar.columns {
  margin-left: 60px;
}

@media screen and (min-width: 71.875em) {
  .page-id-36 .xlarge-8 {
    -ms-flex: 0 0 69.66667%;
    flex: 0 0 69.66667%;
    max-width: 69.66667%;
  }
}
@media screen and (max-width: 1149px) {
  .page-id-36 .container.main > .row .large-9.columns, .container.main > .row .sidebar.columns {
    margin-left: auto;
    padding-right: 0;
  }
}
/* Glossary page */
.name_directory_name_box {
  padding-top: 16px;
}

.name_directory_index {
  text-align: center;
}
.name_directory_index a {
  text-decoration: none;
}
.name_directory_index form {
  padding: 1rem 0 2rem;
  display: flex;
}
.name_directory_index form #name-directory-search-input-box {
  background: transparent;
  border: 1px solid #ccc;
  border-right: 1px solid #f15c2c;
  height: 3.3rem;
}
.name_directory_index form #name-directory-search-input-button {
  border-radius: 0px !important;
  margin-bottom: 1rem;
  display: block;
  color: #fff;
  width: fit-content;
  padding: 1rem 2rem;
  background-color: #f15c2c;
  border: 1px solid #f15c2c;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.name_directory_total {
  opacity: 0.5;
  border-bottom: 1px solid #ccc;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.name_directory_name_box {
  border-bottom: 1px solid #ccc;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.latest-news {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.latest-news::before {
  position: absolute;
  content: "";
  background-image: url("/wp-content/themes/ore-press-v2/assets/images/graphic-seven.svg");
  height: 100rem;
  width: 70rem;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
}

.news-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 1rem;
}

.paginate-foot {
  width: 100%;
  padding: 3rem 0;
  margin: 0 auto;
  text-align: center;
}

.news-item {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #f15c2c;
  background-color: #E8E9E9;
  height: 28rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.news-item:hover {
  border-bottom: 4px solid #f15c2c;
}
.news-item .news-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  height: 16rem;
}
.news-item .news-item-content h4 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0 0 1rem;
  margin: 0;
}
.news-item .news-item-content p {
  font-size: 0.9rem;
  margin: 0;
  padding: 0 0 0.5rem;
}
.news-item .news-item-content a {
  margin-top: 0;
  margin: 0;
}
.news-item .img-container {
  background-color: rgba(0, 0, 0, 0.2);
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 12rem;
  width: 100%;
}

@media (max-width: 1025px) {
  .news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 755px) {
  .news-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 658px) {
  .latest-news {
    padding: 0 1rem;
  }
  .latest-news .latest-news-items .news-item .img-container {
    min-height: unset;
  }
  .latest-news .latest-news-items {
    flex-direction: column;
    justify-content: center;
  }
  .latest-news .latest-news-items .news-item {
    height: 36rem;
    width: 100%;
    margin: 0 0 2rem !important;
  }
  .latest-news .latest-news-items .news-item:first-of-type {
    margin: 0 1rem;
  }
}
@media (max-width: 440px) {
  .latest-news .latest-news-items .news-item {
    height: 32rem;
  }
}
/*
   Honestly... I am not pleased that I found this code hiding in a 'custom_css' post_type.
   Previously the code was being injected, inline, into the page HTML.

   It makes far more sense to include this code here instead.
   At some point, this code should be restructured into a structured format.
 */
/* Test draft - Home */
.page-id-3462 .container-header.container.dark.with-bg {
  display: none !important;
}

.page-id-3462 .container.main > .row.thin {
  max-width: unset;
}

.page-id-3462 .wrapper > .container.main {
  padding-top: 0;
  padding-bottom: 0;
}

.page-id-3462 .container.main > .row.thin > .columns.content {
  padding: 0;
}

body.page-id-3462 .container.main > .row {
  max-width: 660px;
}

.page-id-3462 .container.main > .row.thin > .columns.content > p {
  display: none;
}

.page-id-3462 input, .page-id-3462 button {
  margin-bottom: 0 !important;
}

body.page-id-3462 .container.main > .row.home-banner-area {
  margin: 0 auto;
  text-align: center;
}

body.page-id-3462 .row.services-panel, body.page-id-3462 .container.gray > .row, body.page-id-3462 .container.about > .row {
  max-width: 1140px;
  margin: 0 auto;
}

body.page-id-3462 .container.main h2 {
  font-size: 42px;
  margin-bottom: 45px;
  font-weight: 700;
}

/* --- */
/* ========== NEW CSS - May ========== */
/* Top strip menu */
.site-header .secondary .menu li > a, .site-header .secondary .menu li > span {
  padding: 8px 25px;
}

/* --- */
/* Menu - General */
@media (min-width: 1023px) {
  .site-header .primary .small-12.columns {
    padding: 0;
  }
}
/* --- */
/* Submenu - Home */
.home .site-header .primary ul.submenu a {
  color: #3a383e !important;
}

.home .site-header .primary ul.submenu a:hover {
  color: #f15c2c !important;
}

/* --- */
/* Logo - Home */
@media screen and (min-width: 64em) {
  body.home:not(.scrolled) .site-header .primary .logo .mark {
    height: 44px;
  }
  body.home:not(.scrolled) .site-header .primary .logo {
    padding: 10px 0px;
    height: 64px;
  }
}
/* --- */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  font-size: 1rem;
  padding: 0px 0px 0px 2rem;
}

/* Mega Menu */
nav.right {
  width: 100%;
  margin: 0 auto;
  margin-top: -65px;
}

.mega-5col {
  width: 20% !important;
}

.home.scrolled #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
  top: 64px;
}

.scrolled #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  line-height: 64px;
  height: 60px;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  text-transform: none;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

body.home:not(.scrolled) .site-header .primary .logo, .site-header .primary .logo {
  z-index: 10;
}

.home.scrolled #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  color: #3a383e;
}

.btn-qa a {
  border: 0 !important;
  background: #f15c2c !important;
  color: #fff !important;
  text-align: center !important;
}

.btn-qa a:hover {
  background: #f47f5c !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
  content: "\f347";
  color: #f15c2c;
  font-size: 16px;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
  top: -1px;
}

@media (min-width: 1023px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
    content: "\f345";
    color: #f15c2c;
  }
}
@media (max-width: 1023px) {
  nav.right {
    width: auto !important;
    position: relative;
    margin-top: 0 !important;
  }
  .mega-5col {
    width: 100% !important;
  }
  .off-canvas.position-right.is-open ul#mega-menu-primary {
    display: block !important;
  }
  #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    padding: 10px 0;
  }
  #mega-menu-wrap-primary .mega-menu-toggle {
    display: none;
  }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    line-height: 45px !important;
    height: 45px !important;
  }
  .home #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #3a383e !important;
    padding: 0 20px !important;
  }
  .home #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 5px 10px 20px 20px;
  }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    background: transparent;
  }
}
/* --- */
/* Flyout menu */
@media (min-width: 1023px) {
  /* Flyout menu - Products & Services */
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout.mega-menu-item-2739 ul.mega-sub-menu {
    left: 63px;
    right: 0;
    margin: 0 auto;
  }
  /* Flyout menu - Company */
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout.mega-menu-item-2740 ul.mega-sub-menu {
    left: 15px;
    right: 0;
    margin: 0 auto;
  }
}
@media (max-width: 1023px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
    padding-left: 20px;
  }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    padding-left: 20px;
    background: #e6e6e6;
  }
  ul.mega-sub-menu .mega-menu-item-type-post_type > a {
    font-size: 16px !important;
  }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-btn-qa > a.mega-menu-link {
    font-size: 14px !important;
  }
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
    content: "\f343";
  }
}
/* --- */
/* Header */
.blog .container.container-header .inner, .page-template-page-downloads .container.container-header .inner, .page-template-page-contact .container.container-header .inner {
  display: table-cell;
  vertical-align: middle;
}

.container.container-header .inner {
  display: table-cell;
  vertical-align: bottom;
}

span.search-note {
  text-shadow: 0 0 3px #000, 0 0 5px #000;
}

.container-header h1, .container-header p, .container-header .wpsm_counterbox i, .container-header .wpsm_counterbox span, .container-header .wpsm_counterbox h3, .container-header h2, .container-header h3 {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.container-header {
  background: no-repeat center top;
  position: relative;
  background-size: cover;
}

@media (min-width: 1023px) {
  .page-id-2691 .wpsm_counterbox {
    margin-bottom: 0 !important;
  }
  .container-header h3.wpsm_count-title {
    min-height: auto !important;
  }
}
/* --- */
/* Header Overlay */
.container.home-with-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.container.with-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}

/* --- */
/* Home - Transparent Menu */
.home.transparent-header:not(.scrolled) #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  color: #fff;
}

.home.transparent-header:not(.scrolled) nav.right {
  margin-top: -90px;
}

/* --- */
/* Home page */
body.home .container.main {
  padding-bottom: 107px;
}

.home-intro-text {
  text-align: center;
  max-width: 930px;
  margin: 0 auto;
  font-size: 18px;
}

/* --- */
/* Home - Search form */
body.home .container.main form button {
  font-size: 26px;
}

/* --- */
/* Template: Flexible Content, Global Supply */
@media screen and (min-width: 71.875em) {
  .page-template-page-flexible .xlarge-offset-1, .page-template-page-global-supply .xlarge-offset-1 {
    margin-left: 35px;
  }
  .page-template-page-flexible .xlarge-offset-4, .page-template-page-global-supply .xlarge-offset-4 {
    margin-left: 320px;
  }
  .sticky-container .side-nav.sticky {
    margin-left: 15px;
  }
  .sticky-container .side-nav.sticky.is-at-top, .sticky-container .side-nav.sticky.is-at-bottom {
    margin-left: 0;
  }
  .side-nav li a {
    font-size: 19px;
  }
}
@media (max-width: 1149px) and (min-width: 1023px) {
  .sticky-container .side-nav.sticky {
    margin-left: 15px;
  }
  .sticky-container .side-nav.sticky.is-at-top, .sticky-container .side-nav.sticky.is-at-bottom {
    margin-left: 0;
  }
  .side-nav li a {
    font-size: 19px;
  }
}
.page-template-page-flexible h5 {
  font-size: 1.375rem;
  font-weight: 700;
}

/* --- */
/* Global Supply */
@media (max-width: 1023px) {
  .page-id-2691 h1.page-title {
    margin-top: 70px;
    text-align: center;
  }
  .page-id-2691 .wpsm_counterbox {
    margin-bottom: 0 !important;
  }
}
.page-id-2691 .sticky-container {
  display: none;
}

.page-id-2691 .container.main .columns.content {
  margin: 0 auto;
}

/* --- */
/* Small Font */
.small-font {
  font-size: 14px;
}

/* --- */
/* ========== END NEW CSS - May ========== */
.hidden-label label.gfield_label {
  display: none;
}

.cstm-label {
  font-weight: 400;
  margin-bottom: -10px;
  color: #0a0a0a;
}

.Zebra_Tooltip .Zebra_Tooltip_Message {
  font-size: 12px;
  padding: 10px 20px;
}

.gf_right_half.hidden-label {
  margin-top: -15px;
}

.gf_right_half .cstm-label {
  margin-top: -30px;
}

.service-panel:hover h4 {
  text-decoration: underline;
}

.page-id-36 .accordion--faq .accordion-item p {
  padding-left: 55px;
}

.page-id-36 .accordion--faq .accordion-title {
  display: inline-flex;
}

.page-id-36 .container.main > .row .large-9.columns {
  margin-left: 60px;
}

@media screen and (min-width: 71.875em) {
  .page-id-36 .xlarge-8 {
    -ms-flex: 0 0 69.66667%;
    flex: 0 0 69.66667%;
    max-width: 69.66667%;
  }
}
@media screen and (max-width: 1149px) {
  .page-id-36 .container.main > .row .large-9.columns {
    margin-left: auto;
    padding-right: 0;
  }
}
.menu.vertical > li, .widget .menu > li {
  display: block;
}

body.wp-admin table.acf-table th.acf-th ul li {
  list-style: disc;
  margin-left: 20px;
}

.homepage-video {
  text-align: center;
  margin: auto;
}

.container.homepage-video {
  padding: 40px 0 20px;
}

.debug-only,
.debug-only td {
  background-color: #fff5e2;
}

a#oreas-ca-link {
  border: 1px solid #999999;
  border-radius: 20px;
  padding: 5px 16px 2px 16px;
  font-size: 0.8em;
  color: #999999;
  font-weight: 700;
  background: rgb(222, 243, 247);
  background: linear-gradient(0deg, #ece2f9 16%, #FFF 100%);
  margin-bottom: 2px;
  margin-left: 24px;
}

a#oreas-ca-link:hover {
  color: #FFF;
  background: rgb(231, 182, 106);
  background: linear-gradient(0deg, rgb(231, 182, 106) 0%, rgb(217, 116, 4) 50%);
}

#modal-region {
  background-image: url("../images/modal-region-background-cropped-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #37353c;
  padding: 40px;
  outline: none;
  border-radius: 3px;
  border: 3px solid #fff;
}
#modal-region button.close-button {
  color: #fff;
}
#modal-region h4 {
  color: #fff;
  font-weight: 700;
  font-size: 2.8em;
  margin: 1px 0px 10px 0px;
  text-align: center;
}
#modal-region p.region-subtitle {
  color: #fff;
  font-size: 1.9em;
  text-align: center;
}
#modal-region a {
  text-decoration: none;
}
#modal-region a .region-select {
  text-align: center;
  padding: 8px;
  border-radius: 3px;
  margin-top: 5px;
  box-sizing: border-box;
  background-color: #f2f2f2;
  margin-left: 30px;
  margin-right: 30px;
}
#modal-region a .region-select p.link {
  color: rgb(71, 71, 71);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 6px;
  margin-top: 6px;
  vertical-align: middle !important;
}
#modal-region .site-logo {
  text-align: center;
  margin-bottom: 25px;
}
#modal-region .site-logo img.mark {
  max-height: 60px;
}

h2.gform_submission_error.hide_summary {
  font-size: 18px;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  div#modal-region {
    width: 1000px;
    min-height: 500px;
  }
}

/*# sourceMappingURL=foundation.css.map */
