@charset "UTF-8";
/* Letter spacing is simpler.. stolen from somewhere */
/* 
  Photoshop does not apply line height to the first row, which CSS does. This creates all kinds of havock. 
  To calculate the correct offset for the first line we need the font-size and the lineheight, i.e:
  
  @include line-height(22,30);
  
  in Photoshop points/px (but with no unit)
*/
@media print {
  a,
  a:visited {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

html {
  box-sizing: border-box;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

@-ms-viewport {
  width: device-width;
}

body {
  margin: 0;
  font-family: "texta", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.25;
  color: #726568;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: inherit;
  text-decoration: underline;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #c6c7c7;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: left;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
}

@media (min-width: 80em) {
  html {
    font-size: 20px;
  }
}

input, textarea, select {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: 'texta';
  font-weight: normal;
  font-style: normal;
  src: url("/files/fonts/texta/32C46E_1_0.eot");
  /* IE9 Compat Modes */
  src: url("/files/fonts/texta/32C46E_1_0.eot?#iefix") format("embedded-opentype"), url("/files/fonts/texta/32C46E_1_0.woff2") format("woff2"), url("/files/fonts/texta/32C46E_1_0.woff") format("woff"), url("/files/fonts/texta/32C46E_1_0.ttf") format("truetype");
}

@font-face {
  font-family: 'texta';
  font-weight: bold;
  font-style: normal;
  src: url("/files/fonts/texta/32C46E_0_0.eot");
  /* IE9 Compat Modes */
  src: url("/files/fonts/texta/32C46E_0_0.eot?#iefix") format("embedded-opentype"), url("/files/fonts/texta/32C46E_0_0.woff2") format("woff2"), url("/files/fonts/texta/32C46E_0_0.woff") format("woff"), url("/files/fonts/texta/32C46E_0_0.ttf") format("truetype");
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: inherit;
  font-family: "texta", "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 20px;
  text-decoration: none;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  text-decoration: inherit;
  color: inherit;
}

h1 {
  font-size: 34px;
}

@media (min-width: 48em) {
  h1 {
    font-size: 50px;
  }
}

@media (min-width: 80em) {
  h1 {
    font-size: 65px;
  }
}

h2 {
  font-size: 24px;
}

@media (min-width: 48em) {
  h2 {
    font-size: 32px;
  }
}

@media (min-width: 80em) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 22px;
}

@media (min-width: 48em) {
  h3 {
    font-size: 26px;
  }
}

@media (min-width: 80em) {
  h3 {
    font-size: 30px;
  }
}

h4 {
  font-size: 18px;
}

@media (min-width: 48em) {
  h4 {
    font-size: 22px;
  }
}

@media (min-width: 80em) {
  h4 {
    font-size: 26px;
  }
}

h5 {
  font-size: 16px;
}

@media (min-width: 48em) {
  h5 {
    font-size: 18px;
  }
}

@media (min-width: 80em) {
  h5 {
    font-size: 24px;
  }
}

h6 {
  font-size: 16px;
}

@media (min-width: 48em) {
  h6 {
    font-size: 18px;
  }
}

@media (min-width: 80em) {
  h6 {
    font-size: 24px;
  }
}

.h1 {
  font-size: 34px;
}

@media (min-width: 48em) {
  .h1 {
    font-size: 50px;
  }
}

@media (min-width: 80em) {
  .h1 {
    font-size: 65px;
  }
}

.h2 {
  font-size: 24px;
}

@media (min-width: 48em) {
  .h2 {
    font-size: 32px;
  }
}

@media (min-width: 80em) {
  .h2 {
    font-size: 40px;
  }
}

.h3 {
  font-size: 22px;
}

@media (min-width: 48em) {
  .h3 {
    font-size: 26px;
  }
}

@media (min-width: 80em) {
  .h3 {
    font-size: 30px;
  }
}

.h4 {
  font-size: 18px;
}

@media (min-width: 48em) {
  .h4 {
    font-size: 22px;
  }
}

@media (min-width: 80em) {
  .h4 {
    font-size: 26px;
  }
}

.h5 {
  font-size: 16px;
}

@media (min-width: 48em) {
  .h5 {
    font-size: 18px;
  }
}

@media (min-width: 80em) {
  .h5 {
    font-size: 24px;
  }
}

.h6 {
  font-size: 16px;
}

@media (min-width: 48em) {
  .h6 {
    font-size: 18px;
  }
}

@media (min-width: 80em) {
  .h6 {
    font-size: 24px;
  }
}

.display-1 {
  font-family: "texta", "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}

@media (min-width: 48em) {
  .display-1 {
    font-size: 65px;
  }
}

@media (min-width: 80em) {
  .display-1 {
    font-size: 90px;
  }
}

.display-2 {
  font-family: "texta", "Helvetica Neue", Arial, sans-serif;
  font-size: 35px;
  font-weight: bold;
  line-height: 1;
}

@media (min-width: 48em) {
  .display-2 {
    font-size: 58px;
  }
}

@media (min-width: 80em) {
  .display-2 {
    font-size: 80px;
  }
}

.lead {
  font-family: "texta", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.1;
}

@media (min-width: 48em) {
  .lead {
    font-size: 26px;
  }
}

@media (min-width: 80em) {
  .lead {
    font-size: 30px;
  }
}

.lead sup {
  font-size: 50%;
  top: -0.75em;
}

.large {
  font-size: 20px;
}

ul, ol {
  padding-left: 20px;
}

.list--unstyled {
  list-style: none;
  padding-left: 0;
}

.list--inline {
  list-style: none;
  padding-left: 0;
}

.list--inline > li {
  display: inline-block;
}

.list--inline > li:not(:last-child) {
  margin-right: 5px;
}

@media (min-width: 48em) {
  .list-horizontal {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .list-horizontal dt {
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
  }
  .list-horizontal dd {
    -ms-flex: 1 0 75%;
    flex: 1 0 75%;
  }
  .list-horizontal dd:last-child {
    margin-bottom: 0;
  }
}

.list--spaced li:not(:last-child) {
  margin-bottom: 20px;
}

.list--roundel {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 40px;
}

.list--roundel li {
  counter-increment: list-counter;
  position: relative;
}

.list--roundel li:before {
  background-color: #45b0a1;
  border-radius: 50%;
  color: #fff;
  content: counter(list-counter);
  font-size: 16px;
  height: 25px;
  position: absolute;
  top: 0;
  left: -40px;
  line-height: 25px;
  text-align: center;
  width: 25px;
}

.list--checked {
  list-style: none;
  padding-left: 40px;
}

.list--checked li {
  position: relative;
}

.list--checked li:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 20'%3E%3Cpath d='M7.95 20a2.5 2.5 0 01-1.8-.76L.71 13.62a2.5 2.5 0 013.58-3.48l3.66 3.77L20.71.76a2.5 2.5 0 013.58 3.48l-14.55 15a2.48 2.48 0 01-1.79.76z' fill='%23ea771b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  height: 25px;
  position: absolute;
  top: 0;
  left: -40px;
  width: 25px;
}

.list--checked.list--checked--c li:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 20'%3E%3Cpath d='M7.95 20a2.5 2.5 0 01-1.8-.76L.71 13.62a2.5 2.5 0 013.58-3.48l3.66 3.77L20.71.76a2.5 2.5 0 013.58 3.48l-14.55 15a2.48 2.48 0 01-1.79.76z' fill='%2345b0a1'/%3E%3C/svg%3E");
}

.br {
  display: block;
}

a {
  word-wrap: break-word;
}

.link--cta {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.link--cta .icon {
  margin-left: 10px;
}

.link--cta:focus, .link--cta:hover {
  text-decoration: underline;
}

.link--plain {
  text-decoration: none;
}

blockquote,
.blockquote {
  font-size: 1.1rem;
  font-weight: bold;
  padding-bottom: 80px;
  padding-top: 80px;
  position: relative;
}

blockquote:before, blockquote:after,
.blockquote:before,
.blockquote:after {
  display: block;
  font-size: 96px;
  height: 52px;
  left: 0;
  position: absolute;
}

blockquote:before,
.blockquote:before {
  content: "“";
  top: 0;
}

blockquote:after,
.blockquote:after {
  bottom: 0;
  content: "”";
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

blockquote > :last-child,
.blockquote > :last-child {
  margin-bottom: 0;
}

blockquote--c:before, blockquote--c:after,
.blockquote--c:before,
.blockquote--c:after {
  color: #45b0a1;
}

body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  background-color: transparent;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 auto;
  width: 100%;
}

@media print {
  .main {
    padding-top: 0;
  }
}

[class*=" mw-"],
[class^="mw-"] {
  margin: 0 auto;
}

.mw-420 {
  max-width: 420px;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.row.row--no-gutter {
  margin: 0;
}

.row.row--no-gutter > [class*=" col-"],
.row.row--no-gutter > [class^="col-"] {
  padding: 0;
}

.row.row--large-gutter {
  margin-left: -20px;
  margin-right: -20px;
}

.row.row--large-gutter [class*=" col-"],
.row.row--large-gutter [class^="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}

[class*=" col-"],
[class^="col-"] {
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

[class*=" col-"].reverse,
[class^="col-"].reverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.333333%;
}

.col-xs-offset-2 {
  margin-left: 16.666667%;
}

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

.col-xs-offset-4 {
  margin-left: 33.333333%;
}

.col-xs-offset-5 {
  margin-left: 41.666667%;
}

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

.col-xs-offset-7 {
  margin-left: 58.333333%;
}

.col-xs-offset-8 {
  margin-left: 66.666667%;
}

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

.col-xs-offset-10 {
  margin-left: 83.333333%;
}

.col-xs-offset-11 {
  margin-left: 91.666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 30em) {
  .col-sm {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 48em) {
  .col-md {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 64em) {
  .col-mdlg {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-mdlg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-mdlg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-mdlg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-mdlg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-mdlg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-mdlg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-mdlg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-mdlg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-mdlg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-mdlg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-mdlg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-mdlg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-mdlg-offset-0 {
    margin-left: 0;
  }
  .col-mdlg-offset-1 {
    margin-left: 8.333333%;
  }
  .col-mdlg-offset-2 {
    margin-left: 16.666667%;
  }
  .col-mdlg-offset-3 {
    margin-left: 25%;
  }
  .col-mdlg-offset-4 {
    margin-left: 33.333333%;
  }
  .col-mdlg-offset-5 {
    margin-left: 41.666667%;
  }
  .col-mdlg-offset-6 {
    margin-left: 50%;
  }
  .col-mdlg-offset-7 {
    margin-left: 58.333333%;
  }
  .col-mdlg-offset-8 {
    margin-left: 66.666667%;
  }
  .col-mdlg-offset-9 {
    margin-left: 75%;
  }
  .col-mdlg-offset-10 {
    margin-left: 83.333333%;
  }
  .col-mdlg-offset-11 {
    margin-left: 91.666667%;
  }
  .col-mdlg-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 80em) {
  .col-lg {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 90em) {
  .col-xl {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-xl-offset-0 {
    margin-left: 0;
  }
  .col-xl-offset-1 {
    margin-left: 8.333333%;
  }
  .col-xl-offset-2 {
    margin-left: 16.666667%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-4 {
    margin-left: 33.333333%;
  }
  .col-xl-offset-5 {
    margin-left: 41.666667%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-7 {
    margin-left: 58.333333%;
  }
  .col-xl-offset-8 {
    margin-left: 66.666667%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-10 {
    margin-left: 83.333333%;
  }
  .col-xl-offset-11 {
    margin-left: 91.666667%;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
}

hr {
  border: none;
  border-top: 1px solid #f0f3f2;
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  overflow-y: auto;
  overflow-x: hidden;
}

body.no--scroll {
  overflow: hidden;
}

/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 48em) {
  .container {
    max-width: 1400px;
  }
}

@media (min-width: 48em) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media print {
  .container {
    padding: 0;
  }
}

.container--xxs {
  max-width: 600px;
}

.container--xs {
  max-width: 780px;
}

.container--sm {
  max-width: 960px;
}

.container--md {
  max-width: 1040px;
}

.btn {
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.25;
  padding: 12px 20px;
  border-radius: 0;
}

.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:focus, .btn:hover {
  text-decoration: none;
}

.btn:active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.btn:disabled {
  opacity: .3;
  cursor: disabled;
}

.btn--light {
  background-color: #fff;
  border-color: #fff;
  color: #494b52;
}

.btn--light:hover {
  background-color: #e6e6e6;
  border-color: #e0e0e0;
  color: #494b52;
}

.btn--light:focus {
  background-color: #e6e6e6;
  border-color: #e0e0e0;
  color: #494b52;
}

.btn--light:active {
  background-color: #e6e6e6;
  background-image: none;
  border-color: #e0e0e0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  color: #494b52;
}

.btn--light:active:hover, .btn--light:active:focus {
  background-color: #d4d4d4;
  border-color: #bfbfbf;
  color: #494b52;
}

.btn--light:disabled:focus {
  background-color: #fff;
  border-color: #fff;
}

.btn--light:disabled:hover {
  background-color: #fff;
  border-color: #fff;
}

.btn--light--outline {
  color: #fff;
  background-image: none;
  background-color: transparent;
  border-color: #fff;
}

.btn--light--outline:hover {
  color: #726568;
  background-color: #fff;
  border-color: #fff;
}

.btn--light--outline:focus, .btn--light--outline.focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.btn--light--outline.disabled, .btn--light--outline:disabled {
  color: #fff;
  background-color: transparent;
}

.btn--light--outline:active, .btn--light--outline.active {
  color: #726568;
  background-color: #fff;
  border-color: #fff;
}

.btn--dark {
  background-color: #494b52;
  border-color: #494b52;
  color: #fff;
}

.btn--dark:hover {
  background-color: #313237;
  border-color: #2c2d32;
  color: #fff;
}

.btn--dark:focus {
  background-color: #313237;
  border-color: #2c2d32;
  color: #fff;
}

.btn--dark:active {
  background-color: #313237;
  background-image: none;
  border-color: #2c2d32;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  color: #fff;
}

.btn--dark:active:hover, .btn--dark:active:focus {
  background-color: #202124;
  border-color: #0d0d0f;
  color: #fff;
}

.btn--dark:disabled:focus {
  background-color: #494b52;
  border-color: #494b52;
}

.btn--dark:disabled:hover {
  background-color: #494b52;
  border-color: #494b52;
}

.btn--dark--outline {
  color: #494b52;
  background-image: none;
  background-color: transparent;
  border-color: #494b52;
}

.btn--dark--outline:hover {
  color: #fff;
  background-color: #494b52;
  border-color: #494b52;
}

.btn--dark--outline:focus, .btn--dark--outline.focus {
  box-shadow: 0 0 0 2px rgba(73, 75, 82, 0.5);
}

.btn--dark--outline.disabled, .btn--dark--outline:disabled {
  color: #494b52;
  background-color: transparent;
}

.btn--dark--outline:active, .btn--dark--outline.active {
  color: #fff;
  background-color: #494b52;
  border-color: #494b52;
}

.btn--a {
  background-color: #ea771b;
  border-color: #ea771b;
  color: #000;
}

.btn--a:hover {
  background-color: #c05f12;
  border-color: #b75b11;
  color: #000;
}

.btn--a:focus {
  background-color: #c05f12;
  border-color: #b75b11;
  color: #000;
}

.btn--a:active {
  background-color: #c05f12;
  background-image: none;
  border-color: #b75b11;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  color: #000;
}

.btn--a:active:hover, .btn--a:active:focus {
  background-color: #a04f0f;
  border-color: #7a3d0b;
  color: #000;
}

.btn--a:disabled:focus {
  background-color: #ea771b;
  border-color: #ea771b;
}

.btn--a:disabled:hover {
  background-color: #ea771b;
  border-color: #ea771b;
}

.btn--a:focus, .btn--a:hover {
  color: #fff;
}

.btn--a:active:focus, .btn--a:active:hover {
  color: #fff;
}

.btn--b {
  background-color: #726568;
  border-color: #726568;
  color: #fff;
}

.btn--b:hover {
  background-color: #574d4f;
  border-color: #52484a;
  color: #fff;
}

.btn--b:focus {
  background-color: #574d4f;
  border-color: #52484a;
  color: #fff;
}

.btn--b:active {
  background-color: #574d4f;
  background-image: none;
  border-color: #52484a;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  color: #fff;
}

.btn--b:active:hover, .btn--b:active:focus {
  background-color: #443c3e;
  border-color: #2e292a;
  color: #fff;
}

.btn--b:disabled:focus {
  background-color: #726568;
  border-color: #726568;
}

.btn--b:disabled:hover {
  background-color: #726568;
  border-color: #726568;
}

.btn--b--outline {
  color: #726568;
  background-image: none;
  background-color: transparent;
  border-color: #726568;
}

.btn--b--outline:hover {
  color: #fff;
  background-color: #726568;
  border-color: #726568;
}

.btn--b--outline:focus, .btn--b--outline.focus {
  box-shadow: 0 0 0 2px rgba(114, 101, 104, 0.5);
}

.btn--b--outline.disabled, .btn--b--outline:disabled {
  color: #726568;
  background-color: transparent;
}

.btn--b--outline:active, .btn--b--outline.active {
  color: #fff;
  background-color: #726568;
  border-color: #726568;
}

.btn--link {
  color: inherit;
  font-weight: normal;
  text-transform: none;
  text-decoration: underline;
  line-height: inherit;
  padding: 0;
}

.btn--link, .btn--link:active {
  background-color: transparent;
}

.btn--link, .btn--link:focus, .btn--link:active {
  border-color: transparent;
}

.btn--link:hover {
  border-color: transparent;
}

.btn--link:focus, .btn--link:hover {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn--block + .btn--block {
  margin-top: 20px;
}

.btn--sm {
  font-size: 16px;
  line-height: 1.25;
  padding: 10px 20px;
  border-radius: 0;
}

.icon {
  display: inline-block;
  vertical-align: text-bottom;
  fill: currentColor;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-round {
  border-radius: 50%;
}

.figure {
  margin-bottom: 40px;
}

.figure__media {
  display: block;
  position: relative;
}

.figure__media img {
  width: 100%;
}

.figure__caption {
  padding: 10px 20px;
}

.header {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

@media (max-width: 47.99em) {
  .header {
    height: 104px;
  }
}

.header.nav--open {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 3000;
}

.header__primary {
  -ms-flex-order: 2;
  order: 2;
  position: relative;
}

.header__primary > .container {
  position: static;
}

.header__secondary {
  background-color: #fff;
  font-size: 0;
  -ms-flex-order: 1;
  order: 1;
}

.header__secondary a {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
  text-decoration: none;
}

.header__secondary a .icon--arrow--right {
  margin-right: 10px;
  -ms-flex-order: 1;
  order: 1;
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

@media (max-width: 47.99em) {
  .header__secondary .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .header__secondary .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header__wpr {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 64em) {
  .header__wpr {
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

.header__logo {
  display: block;
  position: relative;
  width: 130px;
  z-index: 10;
}

@media (min-width: 64em) {
  .header__logo {
    width: 125px;
  }
}

.header__logo img {
  width: 100%;
}

@media (max-width: 73.75em) {
  .header__logo--ghost {
    display: none;
  }
}

.header__menu {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 10px 6px;
  position: absolute;
  right: 4px;
  top: 0;
  z-index: 1000;
}

.header__menu:focus, .header__menu:hover {
  outline: none;
}

@media (min-width: 48em) {
  .header__menu {
    right: 14px;
  }
}

.header__menu__icon {
  display: block;
  height: 21px;
  position: relative;
  width: 32px;
}

.header__menu__icon span {
  background-color: #726568;
  display: block;
  height: 3px;
  position: absolute;
  transition: .25s ease-in-out;
  width: 100%;
}

.header__menu__icon span:nth-child(1) {
  top: 0;
}

.header__menu__icon span:nth-child(2) {
  top: 9px;
}

.header__menu__icon span:nth-child(3) {
  top: 18px;
}

.nav--open .header__menu__icon span:nth-child(1), .nav--open .header__menu__icon span:nth-child(3) {
  top: 9px;
}

.nav--open .header__menu__icon span:nth-child(1) {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.nav--open .header__menu__icon span:nth-child(2) {
  opacity: 0;
}

.nav--open .header__menu__icon span:nth-child(3) {
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.header__search {
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
}

.header__search.is--current {
  color: #ea771b;
}

.header__search .icon--cross {
  display: none;
}

.header__search.is--active .icon--search {
  display: none;
}

.header__search.is--active .icon--cross {
  display: block;
}

.header__search .icon--search {
  height: 20px;
  width: 20px;
}

@media (max-width: 63.99em) {
  .header__search .icon--search {
    height: 26px;
    width: 26px;
  }
}

@media (max-width: 47.99em) {
  .header__search {
    right: 4px;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .header__search {
    right: 14px;
  }
}

@media (max-width: 63.99em) {
  .header__search {
    position: absolute;
    top: 0;
  }
}

@media (max-width: 63.99em) {
  .header__nav {
    background-color: #fff;
    display: none;
    height: calc(100% - 104px);
    left: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 104px;
    width: 100%;
    z-index: 900;
  }
  .nav--open .header__nav {
    display: -ms-flexbox;
    display: flex;
  }
}

.header__links {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
}

.header--minimal .header__wpr {
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 63.99em) {
  .header__nav {
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .header__nav .navigation {
    -ms-flex-order: 2;
    order: 2;
  }
}

.header__search__panel {
  padding: 20px 0;
  width: 100%;
}

.header__search__panel > .container {
  position: relative;
}

.header__search__panel button {
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  position: absolute;
  right: 20px;
  top: 0;
}

.header__search__panel input {
  border-bottom: 1px solid #f0f3f2;
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  border-top: 0;
  box-shadow: none;
  padding: 10px;
}

@media (max-width: 63.99em) {
  .header__search__panel {
    -ms-flex-order: 1;
    order: 1;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-bottom: 1px solid rgba(116, 95, 97, 0.3);
  }
}

@media (min-width: 64em) {
  .header__search__panel {
    border-top: 1px solid rgba(116, 95, 97, 0.3);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
    display: none;
    position: absolute;
    bottom: 1px;
    background-color: #fff;
    left: 0;
    width: 100%;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1000;
  }
  .header__search__panel.is--active {
    display: block;
  }
}

.footer {
  color: #fff;
  margin: auto auto 0;
  padding: 20px 0;
  position: relative;
  width: 100%;
}

@media (min-width: 48em) {
  .footer {
    padding: 40px 0;
  }
}

@media (min-width: 64em) {
  .footer {
    padding: 50px 0 0;
  }
}

@media print {
  .footer {
    display: none;
  }
}

.footer a:not(.btn--a) {
  color: #fff;
  text-decoration: none;
}

.footer a:not(.btn--a):focus, .footer a:not(.btn--a):hover {
  color: #ea771b;
}

@media (min-width: 64em) {
  .footer .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer__body {
  width: 100%;
}

@media (min-width: 64em) {
  .footer__sections {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (max-width: 29.99em) {
  .footer__section {
    font-size: 16px;
  }
}

@media (min-width: 48em) {
  .footer__section {
    font-size: 18px;
  }
}

.footer__section > button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #fff;
  display: block;
  font-size: inherit;
  margin-bottom: 20px;
  padding: 0;
  text-align: left;
  width: 100%;
}

@media (max-width: 47.99em) {
  .footer__section > button {
    border-bottom: 1px solid #a7a2a3;
    cursor: pointer;
    margin-bottom: 0;
    padding: 10px;
    position: relative;
  }
  .footer__section > button:focus, .footer__section > button:hover {
    color: #ea771b;
    outline: none;
  }
  .footer__section > button .icon {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
  }
}

.footer__section > button.is--active .icon {
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.footer__section > button.is--active + ul {
  display: block;
}

.footer__section > ul {
  display: block;
}

@media (max-width: 47.99em) {
  .footer__section > ul {
    background: rgba(114, 101, 104, 0.2);
    display: none;
    margin-bottom: 0;
  }
  .footer__section > ul li a {
    display: block;
    padding: 5px 10px;
  }
}

.footer__social a {
  display: block;
}

.footer__legal {
  color: #a7a2a3;
  font-size: 12px;
  line-height: 1.25em;
  margin-bottom: 16px;
}

@media (min-width: 48em) {
  .footer__legal {
    font-size: 14px;
  }
}

.footer__legal:first-of-type {
  margin-top: auto;
}

.footer__legal:last-child {
  margin-bottom: 0;
}

@media (min-width: 64em) {
  .footer__legal:last-child {
    padding-bottom: 30px;
  }
}

.footer__logo img {
  width: 160px;
}

.section {
  padding-bottom: 60px;
  padding-top: 60px;
}

@media (min-width: 48em) {
  .section {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}

@media (min-width: 80em) {
  .section {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}

@media print {
  .section {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

.section__header .container > :last-child,
.section__header > :last-child,
.section__block .container > :last-child,
.section__block > :last-child,
.section__footer .container > :last-child,
.section__footer > :last-child {
  margin-bottom: 0;
}

.section__header {
  padding-bottom: 40px;
}

@media (min-width: 48em) {
  .section__header {
    padding-bottom: 50px;
  }
}

@media (min-width: 80em) {
  .section__header {
    padding-bottom: 60px;
  }
}

.section__header + .section__block {
  padding-top: 0;
}

.section__footer {
  padding-top: 40px;
}

@media (min-width: 48em) {
  .section__footer {
    padding-top: 50px;
  }
}

@media (min-width: 80em) {
  .section__footer {
    padding-top: 60px;
  }
}

.section--tight .section__header {
  padding-bottom: 20px;
}

@media (min-width: 48em) {
  .section--tight .section__header {
    padding-bottom: 30px;
  }
}

@media (min-width: 80em) {
  .section--tight .section__header {
    padding-bottom: 40px;
  }
}

.section--tight .section__footer {
  padding-top: 20px;
}

@media (min-width: 48em) {
  .section--tight .section__footer {
    padding-top: 30px;
  }
}

@media (min-width: 80em) {
  .section--tight .section__footer {
    padding-top: 40px;
  }
}

.section--spaced .section__header {
  padding-bottom: 60px;
}

@media (min-width: 48em) {
  .section--spaced .section__header {
    padding-bottom: 80px;
  }
}

@media (min-width: 80em) {
  .section--spaced .section__header {
    padding-bottom: 100px;
  }
}

.section--spaced .section__footer {
  padding-top: 60px;
}

@media (min-width: 48em) {
  .section--spaced .section__footer {
    padding-top: 80px;
  }
}

@media (min-width: 80em) {
  .section--spaced .section__footer {
    padding-top: 100px;
  }
}

@media (min-width: 48em) {
  .section--resources-cta .section__header {
    padding-top: 80px;
  }
}

.section--resources-cta .section__block {
  width: 100%;
}

@media (min-width: 48em) {
  .section--resources-cta .section__block:not(.section__block--media) {
    padding-bottom: 80px;
  }
}

@media (min-width: 80em) {
  .section--resources-cta .section__block:not(.section__block--media) {
    padding-bottom: 100px;
  }
}

@media (min-width: 48em) {
  .section--resources-recipes .section__block--media {
    padding-top: 80px;
  }
}

@media (min-width: 48em) {
  .section--recipe-split {
    background: linear-gradient(90deg, #f0f3f2 50%, #45b0a1 50%);
  }
}

@media (min-width: 90em) {
  .section--recipe-split > .row {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 20px;
  }
  .section--recipe-split > .row > [class*=" col-"]:last-child img,
  .section--recipe-split > .row > [class^="col-"]:last-child img {
    left: 60px;
  }
}

.section--recipe-split .section {
  padding-bottom: 40px;
  padding-top: 40px;
}

@media (min-width: 48em) {
  .section--recipe-split .section {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}

@media (min-width: 80em) {
  .section--recipe-split .section {
    padding-top: 80px;
  }
}

@media (min-width: 48em) {
  .section--recipe-split .section .section__block {
    margin-top: -40px;
  }
}

@media (min-width: 80em) {
  .section--recipe-split .section .section__block {
    margin-top: -80px;
  }
}

.section--recipe-split .section .section__block img {
  left: 40px;
  position: relative;
}

@media (min-width: 48em) {
  .section--recipe-split .section .section__block .row > :first-child {
    padding-top: 40px;
  }
}

@media (min-width: 80em) {
  .section--recipe-split .section .section__block .row > :first-child {
    padding-top: 80px;
  }
}

@media (min-width: 90em) {
  .section--recipe-split .section .section__block .row > :first-child {
    padding-top: 100px;
  }
}

.section--error .section__header,
.section--error .section__block,
.section--error .section__footer {
  margin: 0 auto;
  max-width: 580px;
}

.card-deck {
  margin-left: -10px;
  margin-right: -10px;
}

@media (min-width: 48em) {
  .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
  }
}

.card {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.card-deck .card {
  padding: 10px;
}

@media (min-width: 48em) {
  .card-deck .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 50%;
    padding: 20px;
  }
}

@media (min-width: 64em) {
  .card-deck .card {
    -ms-flex: 1 0 33.33333%;
    flex: 1 0 33.33333%;
    max-width: 33.33333%;
  }
}

@media (min-width: 90em) {
  .card-deck--4-up .card {
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
    max-width: 25%;
  }
}

.card:not(.card--minimal):not(.card--overlay) .card__wpr {
  transform: translate3d(0, 0, 0);
}

.card:not(.card--minimal):not(.card--overlay) .card__wpr:focus, .card:not(.card--minimal):not(.card--overlay) .card__wpr:hover {
  box-shadow: 0px 0px 10px 0px #cbcbcb;
  -ms-transform: translateY(-2.5px);
  transform: translateY(-2.5px);
}

.card__wpr {
  background-color: #fff;
  box-shadow: 0px 0px 8px 0px rgba(203, 203, 203, 0.5);
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s linear, box-shadow 0.2s linear;
  width: 100%;
}

.card__header,
.card__body,
.card__footer {
  padding: 20px;
}

.card__header > :last-child,
.card__body > :last-child,
.card__footer > :last-child {
  margin-bottom: 0;
}

.card__media {
  width: 100%;
}

.card__media img {
  width: 100%;
}

.card__header {
  padding-bottom: 15px;
}

.card__footer {
  margin-top: auto;
}

.card__meta {
  margin-top: auto;
}

.card__subtitle {
  color: rgba(114, 101, 104, 0.5);
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.card__cta {
  color: #ea771b;
  font-weight: bold;
}

.card__cta:focus, .card__cta:hover {
  text-decoration: none;
}

.card--overlay .card__wpr {
  box-shadow: none;
  position: relative;
}

.card--overlay .card__body {
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.card--overlay .card__body > * {
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.card--darken .card__media {
  position: relative;
}

.card--darken .card__media:before {
  background-color: #000;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.25;
  position: absolute;
  top: 0;
  width: 100%;
}

.card--resource .card__body {
  font-size: 16px;
  padding-top: 0;
}

.card--minimal .card__wpr {
  box-shadow: none;
}

.card--minimal .card__wpr > :last-child {
  padding-bottom: 0;
}

.card--minimal .card__meta,
.card--minimal .card__body,
.card--minimal .card__footer {
  padding-left: 0;
  padding-right: 0;
}

.card--minimal .card__body + .card__footer {
  padding-top: 0;
}

.card--minimal .card__footer {
  margin-top: 0;
}

@media (max-width: 47.99em) {
  .card-deck .card--minimal:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (min-width: 64em) {
  .card-deck--2up .card {
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 50%;
  }
}

.card--news .card__body {
  -ms-flex-order: 2;
  order: 2;
}

.card--news .card__meta {
  margin-top: 0;
  -ms-flex-order: 1;
  order: 1;
}

.card--news .card__footer {
  -ms-flex-order: 3;
  order: 3;
  padding: 0;
}

.slider {
  margin-left: -20px;
  margin-right: -20px;
}

@media (min-width: 48em) {
  .slider {
    margin-left: -40px;
    margin-right: -40px;
  }
}

@media (min-width: 64em) {
  .slider {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.slider__item {
  padding: 10px;
  width: 70%;
}

.slider__item:first-child, .slider__item:last-child {
  width: calc(70% + 10px);
}

.slider__item:first-child {
  padding-left: 20px;
}

.slider__item:last-child {
  padding-right: 20px;
}

@media (min-width: 30em) {
  .slider__item {
    width: 45%;
  }
  .slider__item:first-child, .slider__item:last-child {
    width: calc(45% + 10px);
  }
  .slider__item:first-child {
    padding-left: 20px;
  }
  .slider__item:last-child {
    padding-right: 20px;
  }
}

@media (min-width: 48em) {
  .slider__item {
    padding: 20px;
  }
  .slider__item:first-child, .slider__item:last-child {
    width: calc(45% + 20px);
  }
  .slider__item:first-child {
    padding-left: 40px;
  }
  .slider__item:last-child {
    padding-right: 40px;
  }
}

@media (min-width: 64em) {
  .slider__item {
    padding: 20px;
    width: 33.33333%;
  }
  .slider__item:first-child, .slider__item:last-child {
    padding: 20px;
    width: 33.33333%;
  }
}

.carousel {
  position: relative;
}

.carousel .flickity-button {
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  display: block;
  height: 44px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.carousel .flickity-button.previous {
  left: 0;
}

.carousel .flickity-button.next {
  right: 0;
}

.carousel .flickity-button-icon {
  color: #fff;
  height: 44px;
  position: static;
  width: 44px;
}

.carousel__slide {
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  padding: 0 10px;
  width: calc(75% + 20px);
}

@media (min-width: 48em) {
  .carousel__slide {
    padding: 0 20px;
    width: calc(66.66667% + 40px);
  }
}

@media (min-width: 64em) {
  .carousel__slide {
    padding: 0 50px;
    width: calc(45.27778% + 100px);
  }
}

.carousel__controls {
  left: 50%;
  position: absolute;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 100;
}

@media (max-width: 47.99em) {
  .carousel__controls {
    display: none;
  }
}

@media (min-width: 64em) {
  .carousel__controls {
    width: calc(45.27778% + 100px);
  }
}

.carousel__control {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  height: 44px;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 44px;
}

.carousel__control .icon {
  height: 21px;
  width: 12px;
}

.carousel__control:focus {
  outline: none;
}

.carousel__control:focus:active {
  outline: none;
}

.carousel__control--next {
  right: 0;
}

@media (min-width: 64em) {
  .carousel__control--next {
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
}

.carousel__control--previous {
  left: 0;
}

@media (min-width: 64em) {
  .carousel__control--previous {
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.fact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fact__wpr {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.fact__media {
  max-height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
}

@media (min-width: 64em) {
  .fact__media {
    width: 50%;
  }
}

.fact__media img {
  height: 100%;
  opacity: 0.2;
  width: auto;
}

.fact__body {
  position: relative;
  z-index: 1;
}

.fact__body > :last-child {
  margin-bottom: 0;
}

@media (min-width: 64em) {
  .fact__body {
    width: 90%;
  }
}

.fact__title {
  font-size: 90px;
  line-height: 0.7;
}

.fact__description {
  font-size: 26px;
}

.pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination a {
  border: 1px solid transparent;
  text-decoration: none;
}

.pagination a:focus, .pagination a:hover {
  border: 1px solid #726568;
}

.pagination__item,
.pagination__next,
.pagination__previous {
  height: 44px;
  margin: 0 5px;
  width: 44px;
}

.pagination__items {
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -ms-flex-order: 2;
  order: 2;
  padding: 0;
}

.pagination__item > * {
  display: block;
  height: 100%;
  line-height: 44px;
  text-align: center;
  width: 100%;
}

.pagination__item.is--active > * {
  border: 1px solid #726568;
}

.pagination__next,
.pagination__previous {
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination__next.disabled,
.pagination__previous.disabled {
  opacity: 0.5;
}

.pagination__next {
  -ms-flex-order: 3;
  order: 3;
}

.pagination__previous {
  -ms-flex-order: 1;
  order: 1;
}

.accordion__item {
  border-bottom: 1px solid #f0f3f2;
}

.accordion__item__trigger {
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  width: 100%;
}

.accordion__item__trigger > span {
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
}

.accordion__item__trigger:focus, .accordion__item__trigger:hover {
  color: inherit;
  outline: none;
}

.is--active .accordion__item__trigger .icon--chevron--down {
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}

.accordion__item__body {
  display: none;
  overflow: hidden;
}

.is--active .accordion__item__body {
  display: block;
}

.accordion__item__body > :last-child {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.25em + 24px + 2px);
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.25;
  color: #726568;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #a7a2a3;
  border-radius: 0;
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #726568;
}

.form-control:focus {
  color: #726568;
  background-color: #fff;
  border-color: #494143;
  outline: 0;
}

.form-control:-ms-input-placeholder {
  color: #494b52;
  opacity: 1;
}

.form-control::placeholder {
  color: #494b52;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #fff;
  opacity: 1;
}

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8' width='14' height='8'%3E%3Cpath fill='%23726568' d='M1.89.32c-1-1-2.57.55-1.56 1.55l5.89 5.82a1.14 1.14 0 001.56 0l5.89-5.82c1-1-.55-2.54-1.56-1.55L7 5.32l-5.11-5'/%3E%3C/svg%3E");
  background-position: right 20px center;
  background-repeat: no-repeat;
  padding-right: 48px;
}

select.form-control:focus::-ms-value {
  color: #726568;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

label {
  color: inherit;
  font-size: inherit;
  font-weight: bold;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.25;
  color: #726568;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.25em + 20px + 2px);
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.25;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.has-danger .form-control {
  border-color: red;
}

.has-danger label,
.has-danger .form-control-feedback {
  color: red;
}

.search {
  position: relative;
}

.search .form-control {
  padding-right: 50px;
}

.search button {
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - (1px*2));
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 1px;
  top: 1px;
  width: 50px;
}

.search button:focus, .search button:hover {
  background-color: #a7a2a3;
  color: #fff;
  outline: none;
}

.search button .icon {
  height: 26px;
  width: 25px;
}

.search-result {
  padding: 20px 0;
  text-decoration: none;
}

.search-result__body {
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  padding-right: 20px;
}

@media (min-width: 30em) {
  .search-result__body {
    max-width: 75%;
  }
}

@media (min-width: 48em) {
  .search-result__body {
    padding-right: 40px;
  }
}

.search-result__body h3 {
  text-decoration: underline;
}

.search-result__body > :last-child {
  margin-bottom: 0;
}

.search-result__media {
  width: 140px;
}

@media (min-width: 48em) {
  .search-result__media {
    width: 180px;
  }
}

.meta {
  font-size: 16px;
  margin-left: -10px;
  margin-right: -10px;
}

.meta__item {
  padding: 5px 10px;
  text-decoration: none;
}

.meta__item .icon {
  margin-right: 10px;
}

.meta__item.flex-column .icon {
  margin-bottom: 10px;
  margin-right: 0;
}

.meta--recipe .meta__item {
  font-size: 14px;
}

.meta--recipe .meta__item > span {
  display: block;
}

.meta--recipe .meta__item .icon {
  margin-bottom: 10px;
  margin-right: 0;
}

.meta--recipe-card .meta__item {
  width: 75px;
}

.meta--recipe-detail .meta__item {
  padding-left: 20px;
  padding-right: 20px;
}

.modal {
  background: rgba(0, 0, 0, 0.3);
  display: -ms-flexbox;
  display: flex;
  left: 0;
  max-height: 100%;
  min-height: 100%;
  overflow-y: auto;
  padding: 20px 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3100;
}

@media (min-width: 48em) {
  .modal {
    padding: 40px 40px 0;
  }
}

.modal__content {
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  margin: auto;
  padding-bottom: 20px;
  position: relative;
  width: 100%;
}

@media (min-width: 48em) {
  .modal__content {
    padding-bottom: 40px;
  }
}

@media (min-width: 64em) {
  .modal__content {
    max-width: 960px;
  }
}

.modal__content__inner {
  background-color: #fff;
  padding: 20px;
}

@media (min-width: 48em) {
  .modal__content__inner {
    padding: 40px;
  }
}

.modal__close {
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: none;
  color: inherit;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
}

.modal__close:focus, .modal__close:hover {
  color: #494143;
  outline: none;
}

@media (min-width: 48em) {
  .modal__close {
    right: 10px;
    top: 10px;
  }
}

.loader {
  font-size: 0;
}

.loader svg {
  animation: loader-rotation 0.8s infinite linear;
  fill: currentColor;
}

@keyframes loader-rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.table {
  width: 100%;
  margin-bottom: 20px;
  color: inherit;
  background-color: transparent;
}

.table th,
.table td {
  padding: 20px;
  vertical-align: top;
  border-top: 1px solid #a7a2a3;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #a7a2a3;
}

.table tbody + tbody {
  border-top: 2px solid #a7a2a3;
}

.table-bordered {
  border: 1px solid #a7a2a3;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #a7a2a3;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

@media (max-width: 47.99em) {
  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
}

.daily-intake {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: -5px;
  margin-right: -5px;
}

@media print {
  .daily-intake {
    page-break-inside: avoid;
  }
}

.daily-intake__item {
  -ms-flex: 1 0 20%;
  flex: 1 0 20%;
  max-width: 20%;
  min-width: 80px;
  padding: 5px;
  font-size: 14px;
}

.daily-intake__item__wpr {
  padding: 10px;
}

.daily-intake__item__wpr > :last-child {
  margin-bottom: 0;
}

.daily-intake__heading {
  font-size: inherit;
  font-weight: normal;
}

.daily-intake__absolute,
.daily-intake__percentage {
  font-weight: bold;
  margin-bottom: 10px;
}

.embed {
  position: relative;
}

.embed iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.timeline {
  color: #fff;
  left: 0;
  position: fixed;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.5s;
  z-index: 200;
}

.timeline li {
  padding-left: 30px;
  position: relative;
}

.timeline li:not(:last-child) {
  margin-bottom: 10px;
}

@media (min-width: 80em) {
  .timeline li {
    padding-left: 60px;
  }
}

.timeline a {
  display: block;
  text-decoration: none;
}

.timeline[data-state="2"] {
  color: #726568;
}

.timeline[data-state="1"] ol > :nth-child(1):before {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
}

@media (min-width: 80em) {
  .timeline[data-state="1"] ol > :nth-child(1):before {
    width: 40px;
  }
}

.timeline[data-state="2"] ol > :nth-child(2):before {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
}

@media (min-width: 80em) {
  .timeline[data-state="2"] ol > :nth-child(2):before {
    width: 40px;
  }
}

.timeline[data-state="3"] ol > :nth-child(3):before {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
}

@media (min-width: 80em) {
  .timeline[data-state="3"] ol > :nth-child(3):before {
    width: 40px;
  }
}

.timeline[data-state="4"] ol > :nth-child(4):before {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
}

@media (min-width: 80em) {
  .timeline[data-state="4"] ol > :nth-child(4):before {
    width: 40px;
  }
}

.timeline[data-state="5"] ol > :nth-child(5):before {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
}

@media (min-width: 80em) {
  .timeline[data-state="5"] ol > :nth-child(5):before {
    width: 40px;
  }
}

.timeline[data-state="6"] ol > :nth-child(6):before {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
}

@media (min-width: 80em) {
  .timeline[data-state="6"] ol > :nth-child(6):before {
    width: 40px;
  }
}

.timeline[data-state="7"] ol > :nth-child(7):before {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
}

@media (min-width: 80em) {
  .timeline[data-state="7"] ol > :nth-child(7):before {
    width: 40px;
  }
}

.history {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.history > section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.history__section {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.history__section .container,
.history__section .section__header,
.history__section .section__block,
.history__section .section__footer {
  width: 100%;
}

@media (min-width: 48em) and (max-width: 79.99em) {
  .history__section {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.history__section--1 {
  background-image: url("/img/content/mycoprotein/history/1960/bg_768x576.jpg");
}

@media (min-width: 48em) {
  .history__section--1 {
    background-image: url("/img/content/mycoprotein/history/1960/bg_1024x768.jpg");
  }
}

@media (min-width: 64em) {
  .history__section--1 {
    background-image: url("/img/content/mycoprotein/history/1960/bg_1920x1280.jpg");
  }
}

.history__section--2 .history__section__media {
  width: 100%;
}

@media (min-width: 64em) {
  .history__section--2 .history__section__media {
    -ms-flex: 1 0 160%;
    flex: 1 0 160%;
    width: 160%;
  }
}

@media (min-width: 80em) {
  .history__section--2 .history__section__media {
    -ms-flex: 1 0 200%;
    flex: 1 0 200%;
    width: 200%;
  }
}

@media (min-width: 90em) {
  .history__section--2 .history__section__media {
    -ms-flex: 1 0 220%;
    flex: 1 0 220%;
    width: 220%;
  }
}

.history__section--2 .history__section__media img {
  width: 100%;
}

.history__section--3 .history__section__media {
  margin: 0 auto;
  opacity: 0.18;
  width: 60%;
}

@media (min-width: 64em) {
  .history__section--3 .history__section__media {
    -ms-flex: 1 0 200%;
    flex: 1 0 200%;
    width: 200%;
  }
}

.history__section--4 {
  background-image: url("/img/content/mycoprotein/history/1974/bg_768x576.jpg");
}

@media (min-width: 48em) {
  .history__section--4 {
    background-image: url("/img/content/mycoprotein/history/1974/bg_1024x768.jpg");
  }
}

@media (min-width: 64em) {
  .history__section--4 {
    background-image: url("/img/content/mycoprotein/history/1974/bg_1920x1280.jpg");
  }
}

.history__section--5 > .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 63.99em) {
  .history__section--5 {
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
  }
  .history__section--5 > .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    width: 100%;
  }
  .history__section--5 > .container .row {
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .history__section--5 > .container .row :nth-child(2) {
    margin-top: auto;
  }
}

.history__section--5 .history__section__media {
  width: 100%;
}

@media (max-width: 63.99em) {
  .history__section--5 .history__section__media {
    max-width: none;
    width: auto;
  }
}

@media (max-width: 47.99em) {
  .history__section--5 .history__section__media {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .history__section--5 .history__section__media {
    margin-left: -120px;
    margin-right: -120px;
  }
}

@media (min-width: 64em) {
  .history__section--5 .history__section__media {
    -ms-flex: 1 0 170%;
    flex: 1 0 170%;
    width: 170%;
  }
}

@media (min-width: 80em) {
  .history__section--5 .history__section__media {
    -ms-flex: 1 0 215%;
    flex: 1 0 215%;
    width: 215%;
  }
}

@media (min-width: 90em) {
  .history__section--5 .history__section__media {
    -ms-flex: 1 0 245%;
    flex: 1 0 245%;
    width: 245%;
  }
}

@media (min-width: 64em) {
  .history__section--6 .history__section__media {
    opacity: 0;
    -ms-transform: translateY(5%);
    transform: translateY(5%);
    transition: transform 1s, opacity 2s;
    transition-delay: 1s;
  }
}

@media (min-width: 64em) {
  .history__section--6 > .container.is--onscreen .history__section__media,
  .history__section--6 > .container.been--onscreen .history__section__media {
    opacity: 1;
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.history__section--7 > .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 63.99em) {
  .history__section--7 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 0;
  }
}

.history__section--7 .history__section__media {
  display: block;
  width: 100%;
}

@media (max-width: 63.99em) {
  .history__section--7 .history__section__media {
    max-width: 720px;
  }
}

@media (min-width: 64em) {
  .history__section--7 .history__section__media {
    bottom: 0;
    height: 60%;
    left: 60%;
    position: absolute;
    width: auto;
    z-index: 1;
  }
}

@media (min-width: 80em) {
  .history__section--7 .history__section__media {
    height: 66.66667%;
  }
}

.history__section--1,
.history__section--4 {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

.history__section--1 > *,
.history__section--4 > * {
  position: relative;
  z-index: 1;
}

.history__section--1:before,
.history__section--4:before {
  background-color: rgba(0, 0, 0, 0.77);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.history__section__media img {
  width: 100%;
}

.marquee {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee__slides {
  animation: marquee 10s linear infinite;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 auto;
  width: 600%;
}

@media (min-width: 30em) {
  .marquee__slides {
    width: 400%;
  }
}

@media (min-width: 48em) {
  .marquee__slides {
    width: 320%;
  }
}

@media (min-width: 64em) {
  .marquee__slides {
    width: 266.66667%;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee__slide {
  -ms-flex: 1 0 12.5%;
  flex: 1 0 12.5%;
  padding: 0 10px;
  width: 12.5%;
}

.marquee--onscreen .marquee__slides {
  animation-play-state: paused;
}

.is--onscreen .marquee--onscreen .marquee__slides {
  animation-play-state: running;
}

.lottie-animation {
  position: relative;
}

.lottie-animation svg {
  left: 0;
  position: absolute;
  top: 0;
}

.lottie-animation--step-1 {
  width: 100%;
  height: 0;
  padding-bottom: 74.3%;
}

.lottie-animation--step-2 {
  width: 100%;
  height: 0;
  padding-bottom: 97.7%;
}

.lottie-animation--step-3 {
  width: 100%;
  height: 0;
  padding-bottom: 87.4%;
}

.lottie-animation--step-4 {
  width: 100%;
  height: 0;
  padding-bottom: 74.4%;
}

.lottie-animation--step-5 {
  width: 100%;
  height: 0;
  padding-bottom: 86.3%;
}

.navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 63.99em) {
  .navigation {
    border-top: 1px solid rgba(116, 95, 97, 0.3);
  }
}

.navigation__primary {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media (min-width: 64em) {
  .navigation__primary {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
  }
}

.navigation__primary > .navigation__links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 63.99em) {
  .navigation--searching .navigation__primary > .navigation__links {
    display: none;
  }
}

@media (min-width: 64em) {
  .navigation__primary > .navigation__links {
    border-right: 1px solid rgba(116, 95, 97, 0.3);
    -ms-flex-direction: row;
    flex-direction: row;
    margin-right: 10px;
    padding-right: 15px;
  }
}

@media (min-width: 80em) {
  .navigation__primary > .navigation__links {
    padding-right: 10px;
  }
}

.navigation__secondary {
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 63.99em) {
  .navigation__secondary {
    margin-top: auto;
  }
  .navigation--searching .navigation__secondary {
    display: none;
  }
}

@media (min-width: 64em) {
  .navigation__secondary {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

@media (max-width: 63.99em) {
  .navigation__secondary > .container {
    padding: 0;
  }
}

@media (min-width: 64em) {
  .navigation__secondary > .container {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.navigation__social {
  background-color: #fff;
  color: #726568;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 0;
  margin-top: auto;
  overflow: hidden;
  padding-top: 4px;
  padding-bottom: 4px;
}

.navigation__social .socialicon__icon {
  color: inherit;
}

.navigation__link {
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  line-height: normal;
  padding: 10px 0;
  text-decoration: none;
}

@media (min-width: 64em) {
  .navigation__link {
    font-size: 16px;
    padding: 5px 10px;
  }
}

.navigation__link:focus, .navigation__link:hover {
  color: #ea771b;
  outline: none;
}

.navigation__link:focus:not(.is--active) .icon--chevron--down, .navigation__link:hover:not(.is--active) .icon--chevron--down {
  color: #726568;
}

.navigation__link.is--current {
  color: #ea771b;
}

.navigation__link.is--active {
  color: #ea771b;
}

.navigation__link.is--active .icon {
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}

.navigation__link.is--active + .navigation__panel,
.navigation__link.is--active + .navigation__group {
  display: block;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

@media (max-width: 63.99em) {
  .navigation__link.is--active + .navigation__panel,
  .navigation__link.is--active + .navigation__group {
    border-bottom: 1px solid rgba(116, 95, 97, 0.3);
  }
}

.navigation__link .icon--chevron--down {
  bottom: 1px;
  position: relative;
}

.navigation__secondary .navigation__link {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 63.99em) {
  .navigation__secondary .navigation__link:not(:last-child) {
    border-bottom: 1px solid rgba(116, 95, 97, 0.3);
  }
}

@media (min-width: 64em) {
  .navigation__secondary .navigation__link {
    padding-left: 0;
    padding-right: 0;
  }
  .navigation__secondary .navigation__link:not(:last-child) {
    margin-right: 20px;
  }
}

.navigation__group .navigation__link {
  padding-left: 5px;
  padding-right: 0;
}

@media (min-width: 64em) {
  .navigation__group .navigation__link {
    padding-left: 0;
  }
}

.navigation__link--primary,
.navigation__link--secondary,
.navigation__link--image {
  font-weight: bold;
  text-transform: uppercase;
}

.navigation__link--primary {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 63.99em) {
  .navigation__link--primary {
    border-bottom: 1px solid rgba(116, 95, 97, 0.3);
    font-size: 20px;
    padding: 15px 20px;
  }
  .navigation__link--primary.is--active {
    border-bottom: none;
  }
}

@media (min-width: 64em) and (max-width: 89.99em) {
  .navigation__link--primary {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.navigation__link--primary .icon--chevron--down {
  margin-left: 10px;
}

@media (max-width: 63.99em) {
  .navigation__link--primary .icon--chevron--down {
    height: 12px;
    width: 20px;
  }
}

.navigation__link--secondary {
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  font-weight: bold;
  width: 100%;
}

@media (max-width: 63.99em) {
  .navigation__link--secondary {
    border-bottom: 1px solid rgba(116, 95, 97, 0.3);
  }
  .navigation__link--secondary.is--active {
    border-bottom: none;
  }
}

@media (min-width: 64em) {
  .navigation__link--secondary {
    cursor: default;
    padding-left: 0;
    padding-right: 0;
  }
  .navigation__link--secondary:focus, .navigation__link--secondary:hover {
    color: inherit;
  }
}

.navigation__link--secondary .icon--chevron--down {
  margin-right: 10px;
}

@media (max-width: 63.99em) {
  .navigation__link--secondary .icon--chevron--down {
    height: 9px;
    width: 15px;
  }
}

.navigation__link--image {
  display: inline-block;
  font-size: 14px;
  text-align: center;
}

.navigation__link--image > * {
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

@media (max-width: 63.99em) {
  .navigation__link--image {
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 50%;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 50%;
  }
}

.navigation__link--image img {
  width: 100%;
}

.navigation__link--language {
  cursor: initial;
}

.navigation__link--language:focus, .navigation__link--language:hover {
  color: inherit;
}

.navigation__link--language img {
  margin-right: 10px;
}

.navigation__link--language > span {
  text-decoration: underline;
}

.navigation__link--language a {
  text-decoration: none;
}

.navigation__link--language a:focus, .navigation__link--language a:hover {
  color: #ea771b;
}

.navigation__link--search {
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.navigation__link--search .icon--cross {
  display: none;
  height: 16px;
  width: 16px;
}

.navigation__link--search.is--active .icon--search {
  display: none;
}

.navigation__link--search.is--active .icon--cross {
  display: block;
}

.navigation__link--search .icon--search {
  height: 20px;
  width: 20px;
}

.navigation__link__icon {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
}

@media (max-width: 63.99em) {
  .navigation__link__icon {
    border-radius: 50%;
    background-color: #726568;
    color: #fff;
    height: 21px;
    width: 21px;
  }
  .navigation__link__icon .icon--mail {
    height: 9px;
    width: 13px;
  }
  .navigation__link__icon .icon--help {
    height: 13px;
    width: 9px;
  }
  .navigation__link__icon .icon--coupon {
    height: 7px;
    width: 13px;
  }
  .navigation__link__icon .icon--basket {
    height: 11px;
    width: 13px;
  }
  .navigation__link__icon .icon--pin {
    height: 13px;
    width: 10px;
  }
}

@media (min-width: 64em) {
  .navigation__link__icon .icon {
    position: relative;
    bottom: 1px;
  }
}

.navigation__panel {
  display: none;
}

@media (max-width: 63.99em) {
  .navigation__panel {
    padding: 0 20px;
  }
}

@media (min-width: 64em) {
  .navigation__panel {
    background-color: #fff;
    border-top: 1px solid rgba(116, 95, 97, 0.3);
    bottom: 1px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
    left: 0;
    padding: 40px 0;
    position: absolute;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    width: 100%;
    z-index: 2000;
  }
}

@media (max-width: 63.99em) {
  .navigation__panel > .container {
    border-top: 1px solid rgba(116, 95, 97, 0.3);
    padding: 0;
  }
}

@media (max-width: 63.99em) {
  .navigation__panel--search {
    border-bottom: 1px solid rgba(116, 95, 97, 0.3);
    display: block;
    padding: 20px;
  }
  .navigation__panel--search .container {
    border-top: 0;
  }
}

.navigation__panel__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

@media (min-width: 64em) {
  .navigation__panel__inner {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.navigation__panel__inner > * {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 64em) {
  .navigation__panel__inner > * {
    -ms-flex: 1 0 230px;
    flex: 1 0 230px;
    max-width: 230px;
    padding: 0 15px;
  }
}

@media (max-width: 63.99em) {
  .navigation__group {
    display: none;
    font-size: 18px;
    padding-left: 20px;
    padding-bottom: 10px;
  }
}

@media (min-width: 64em) {
  .navigation__search {
    max-width: 550px;
  }
}

.navigation__search .form {
  position: relative;
}

.navigation__search .form-control {
  border-bottom: 1px solid rgba(116, 95, 97, 0.3);
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  border-top: 0;
  box-shadow: none;
  padding: 10px 50px 10px 0;
}

.navigation__search .form-control:focus {
  border-bottom-color: #ea771b;
}

.navigation__search .awesomplete ul {
  border: none;
  box-shadow: none;
  max-width: 520px;
  position: static;
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.navigation__search .awesomplete ul li {
  padding-left: 0;
  padding-right: 0;
}

.navigation__search .awesomplete ul:before {
  display: none;
}

.navigation__search__submit,
.navigation__search__dismiss {
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}

.navigation__search__submit:focus, .navigation__search__submit:hover,
.navigation__search__dismiss:focus,
.navigation__search__dismiss:hover {
  color: #ea771b;
  outline: none;
}

.navigation__search__submit {
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  position: absolute;
  right: -7px;
  top: 1px;
  width: 44px;
}

.navigation__search__submit .icon--search {
  height: 20px;
  width: 20px;
}

.navigation__search__dismiss {
  display: none;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
  margin-top: 20px;
  padding: 0;
  text-transform: uppercase;
  width: 100%;
}

.navigation__search__dismiss .icon {
  margin-right: 10px;
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (max-width: 63.99em) {
  .navigation--searching .navigation__search__dismiss {
    display: -ms-flexbox;
    display: flex;
  }
}

.badge {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  height: 24px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 24px;
}

.nutritional-info {
  border-collapse: collapse;
  width: 100%;
}

.nutritional-info tr:not(:last-of-type) {
  border-bottom: 1px solid #a7a2a3;
}

.nutritional-info th, .nutritional-info td {
  padding-bottom: 10px;
  padding-top: 10px;
}

.nutritional-info th {
  font-weight: normal;
}

.nutritional-info td {
  font-weight: bold;
  text-align: right;
}

.nutritional-info--light {
  color: #fff;
}

.nutritional-info--light tr:not(:last-of-type) {
  border-bottom-color: #fff;
}

.bda-banner {
  background-color: #00a8d7;
}

.bda-banner .h1 {
  white-space: nowrap;
}

@media (max-width: 47.99em) {
  .bda-banner .lead {
    font-size: 18px;
    line-height: 1.25;
  }
}

.bda-banner .section__footer {
  background: linear-gradient(to right bottom, transparent 50%, #fff 50%);
}

.bda-banner .section__footer img:first-of-type {
  width: 65px;
}

@media (min-width: 48em) {
  .bda-banner .section__footer img:first-of-type {
    width: 100px;
  }
}

@media (min-width: 80em) {
  .bda-banner .section__footer img:first-of-type {
    width: 160px;
  }
}

.bda-banner .section__footer img:last-of-type {
  width: 40px;
}

@media (min-width: 48em) {
  .bda-banner .section__footer img:last-of-type {
    width: 70px;
  }
}

@media (min-width: 80em) {
  .bda-banner .section__footer img:last-of-type {
    width: 105px;
  }
}

.content .container > :last-child,
.content > :last-child {
  margin-bottom: 0;
}

.gateway__actions button, .gateway__actions a {
  background-color: #fff;
  border: none;
  box-shadow: 0px 0px 8px 0px rgba(203, 203, 203, 0.5);
  color: inherit;
  padding: 20px;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s linear, box-shadow 0.2s linear;
  width: 100%;
}

.gateway__actions button:focus, .gateway__actions button:hover, .gateway__actions a:focus, .gateway__actions a:hover {
  box-shadow: 0px 0px 10px 0px #cbcbcb;
  cursor: pointer;
  -ms-transform: translateY(-2.5px);
  transform: translateY(-2.5px);
  outline: none;
}

.bg--transparent {
  background-color: transparent !important;
}

.bg--light {
  background-color: #fff !important;
}

.bg--dark {
  background-color: #000 !important;
}

.bg--grey {
  background-color: #c6c7c7 !important;
}

.bg--grey--light {
  background-color: #f0f3f2 !important;
}

.bg--grey--dark {
  background-color: #494b52 !important;
}

.bg--a {
  background-color: #ea771b !important;
}

.bg--b {
  background-color: #726568 !important;
}

.bg--b--dark {
  background-color: #4e4547 !important;
}

.bg--c {
  background-color: #45b0a1 !important;
}

.b-1 {
  border: 1px solid #f0f3f2 !important;
}

.bb-0 {
  border-bottom: 0 !important;
}

.bb-1 {
  border-bottom: 1px solid #f0f3f2 !important;
}

.bb-dashed {
  border-bottom-style: dashed !important;
}

.bt-0 {
  border-top: 0 !important;
}

.bt-1 {
  border-top: 1px solid #f0f3f2 !important;
}

.b--a {
  border-color: #ea771b !important;
}

.aspect--1-1 {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.aspect--1-2 {
  width: 100%;
  height: 0;
  padding-bottom: 200%;
}

.aspect--3-1 {
  width: 100%;
  height: 0;
  padding-bottom: 33.33333%;
}

.aspect--3-2 {
  width: 100%;
  height: 0;
  padding-bottom: 66.66667%;
}

.aspect--3-4 {
  width: 100%;
  height: 0;
  padding-bottom: 133.33333%;
}

.aspect--4-3 {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}

.aspect--2-1 {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
}

.aspect--2-3 {
  width: 100%;
  height: 0;
  padding-bottom: 150%;
}

.aspect--16-9 {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

@media (min-width: 48em) {
  .aspect-tablet--1-1 {
    height: 0;
    padding-bottom: 100% !important;
    width: 100%;
  }
}

@media (min-width: 48em) {
  .aspect-tablet--3-1 {
    height: 0;
    padding-bottom: 33.33333% !important;
    width: 100%;
  }
}

@media (min-width: 48em) {
  .aspect-tablet--3-2 {
    height: 0;
    padding-bottom: 66.66667% !important;
    width: 100%;
  }
}

@media (min-width: 48em) {
  .aspect-tablet--4-3 {
    height: 0;
    padding-bottom: 75% !important;
    width: 100%;
  }
}

@media (min-width: 48em) {
  .aspect-tablet--2-1 {
    height: 0;
    padding-bottom: 50% !important;
    width: 100%;
  }
}

@media (min-width: 48em) {
  .aspect-tablet--16-9 {
    height: 0;
    padding-bottom: 56.25% !important;
    width: 100%;
  }
}

@media (min-width: 64em) {
  .aspect-tabletlandscape--3-1 {
    height: 0;
    padding-bottom: 33.33333% !important;
    width: 100%;
  }
}

@media (min-width: 64em) {
  .aspect-tabletlandscape--3-4 {
    height: 0;
    padding-bottom: 133.33333% !important;
    width: 100%;
  }
}

.text--muted {
  color: #c6c7c7 !important;
}

.text--light {
  color: #fff !important;
}

.text--dark {
  color: #000 !important;
}

.text--grey {
  color: #c6c7c7 !important;
}

.text--grey--light {
  color: #f0f3f2 !important;
}

.text--grey--dark {
  color: #494b52 !important;
}

.text--a {
  color: #ea771b !important;
}

.text--b {
  color: #726568 !important;
}

.text--b--light {
  color: #a7a2a3 !important;
}

.text--c {
  color: #45b0a1 !important;
}

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

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

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

@media (min-width: 48em) {
  .text--left-tablet-up {
    text-align: left !important;
  }
}

@media (min-width: 80em) {
  .text--left-desktop-up {
    text-align: left !important;
  }
}

@media (min-width: 90em) {
  .text--left-wide-up {
    text-align: left !important;
  }
}

@media (min-width: 48em) {
  .text--center-tablet-up {
    text-align: center !important;
  }
}

@media (min-width: 80em) {
  .text--center-desktop-up {
    text-align: center !important;
  }
}

@media (min-width: 90em) {
  .text--center-wide-up {
    text-align: center !important;
  }
}

@media (min-width: 48em) {
  .text--right-tablet-up {
    text-align: right !important;
  }
}

@media (min-width: 80em) {
  .text--right-desktop-up {
    text-align: right !important;
  }
}

@media (min-width: 90em) {
  .text--right-wide-up {
    text-align: right !important;
  }
}

.text--lowercase {
  text-transform: lowercase !important;
}

.text--uppercase {
  text-transform: uppercase !important;
}

.text--capitalize {
  text-transform: capitalize !important;
}

.text--capitalize-first::first-letter {
  text-transform: capitalize !important;
}

.text--normal {
  font-weight: normal !important;
}

.text--bold {
  font-weight: bold !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 20px !important;
}

.m-2 {
  margin: 40px !important;
}

.m-3 {
  margin: 60px !important;
}

.m-4 {
  margin: 80px !important;
}

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

.mb-05 {
  margin-bottom: 10px !important;
}

.mb-1 {
  margin-bottom: 20px !important;
}

.mb-2 {
  margin-bottom: 40px !important;
}

.mb-3 {
  margin-bottom: 60px !important;
}

.mb-4 {
  margin-bottom: 80px !important;
}

@media (min-width: 30em) {
  .mb-0-mobilelandscape-up {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 48em) {
  .mb-0-tablet-up {
    margin-bottom: 0 !important;
  }
  .mb-1-tablet-up {
    margin-bottom: 20px !important;
  }
  .mb-2-tablet-up {
    margin-bottom: 40px !important;
  }
  .mb-4-tablet-up {
    margin-bottom: 80px !important;
  }
}

@media (min-width: 64em) {
  .mb-0-tabletlandscape-up {
    margin-bottom: 0 !important;
  }
  .mb-2-tabletlandscape-up {
    margin-bottom: 40px !important;
  }
}

@media (min-width: 80em) {
  .mb-0-desktop-up {
    margin-bottom: 0 !important;
  }
}

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

.mt-1 {
  margin-top: 20px !important;
}

.mt-2 {
  margin-top: 40px !important;
}

.mt-3 {
  margin-top: 60px !important;
}

.mt-4 {
  margin-top: 80px !important;
}

@media (min-width: 48em) {
  .mt-0-tablet-up {
    margin-top: 0 !important;
  }
  .mt-4-tablet-up {
    margin-top: 80px !important;
  }
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 20px !important;
}

.ml-2 {
  margin-left: 40px !important;
}

.ml-3 {
  margin-left: 60px !important;
}

.ml-4 {
  margin-left: 80px !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 20px !important;
}

.mr-2 {
  margin-right: 40px !important;
}

.mr-3 {
  margin-right: 60px !important;
}

.mr-4 {
  margin-right: 80px !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 20px !important;
}

.p-2 {
  padding: 40px !important;
}

.p-3 {
  padding: 60px !important;
}

.p-4 {
  padding: 80px !important;
}

@media (min-width: 48em) {
  .p-2-tablet-up {
    padding: 40px !important;
  }
}

@media (min-width: 64em) {
  .p-0-tabletlandscape-up {
    padding: 0 !important;
  }
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-05 {
  padding-bottom: 10px !important;
}

.pb-1 {
  padding-bottom: 20px !important;
}

.pb-2 {
  padding-bottom: 40px !important;
}

.pb-3 {
  padding-bottom: 60px !important;
}

.pb-4 {
  padding-bottom: 80px !important;
}

@media (min-width: 48em) {
  .pb-0-tablet-up {
    padding-bottom: 0 !important;
  }
  .pb-4-tablet-up {
    padding-bottom: 80px !important;
  }
}

@media (min-width: 64em) {
  .pb-0-tabletlandscape-up {
    padding-bottom: 0 !important;
  }
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-05 {
  padding-top: 10px !important;
}

.pt-1 {
  padding-top: 20px !important;
}

.pt-2 {
  padding-top: 40px !important;
}

.pt-3 {
  padding-top: 60px !important;
}

.pt-4 {
  padding-top: 80px !important;
}

@media (min-width: 48em) {
  .pt-0-tablet-up {
    padding-top: 0 !important;
  }
  .pt-4-tablet-up {
    padding-top: 80px !important;
  }
}

@media (min-width: 64em) {
  .pt-0-tabletlandscape-up {
    padding-top: 0 !important;
  }
}

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

.pl-1 {
  padding-left: 20px !important;
}

.pl-2 {
  padding-left: 40px !important;
}

.pl-3 {
  padding-left: 60px !important;
}

.pl-4 {
  padding-left: 80px !important;
}

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

.pr-1 {
  padding-right: 20px !important;
}

.pr-2 {
  padding-right: 40px !important;
}

.pr-3 {
  padding-right: 60px !important;
}

.pr-4 {
  padding-right: 80px !important;
}

@media (min-width: 48em) {
  .pr-1-tablet-up {
    padding-right: 20px !important;
  }
}

@media (min-width: 64em) {
  .pr-2-tabletlandscape-up {
    padding-right: 40px !important;
  }
}

@media (min-width: 80em) {
  .pr-0-desktop-up {
    padding-right: 0 !important;
  }
}

.flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.flex-basis-0 {
  -ms-flex-preferred-size: 0 !important;
  flex-basis: 0 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

@media (min-width: 22.5em) {
  .flex-mobile-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-mobile-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-mobile-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-mobile-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .justify-content-mobile-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-mobile-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-mobile-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-mobile-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-mobile-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-mobile-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-mobile-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-mobile-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-mobile-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-mobile-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
}

@media (min-width: 30em) {
  .flex-mobileLandscape-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-mobileLandscape-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-mobileLandscape-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-mobileLandscape-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .justify-content-mobileLandscape-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-mobileLandscape-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-mobileLandscape-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-mobileLandscape-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-mobileLandscape-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-mobileLandscape-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-mobileLandscape-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-mobileLandscape-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-mobileLandscape-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-mobileLandscape-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
}

@media (min-width: 48em) {
  .flex-tablet-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-tablet-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-tablet-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-tablet-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .justify-content-tablet-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-tablet-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-tablet-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-tablet-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-tablet-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-tablet-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-tablet-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-tablet-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-tablet-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-tablet-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
}

@media (min-width: 64em) {
  .flex-tabletLandscape-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-tabletLandscape-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-tabletLandscape-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-tabletLandscape-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .justify-content-tabletLandscape-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-tabletLandscape-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-tabletLandscape-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-tabletLandscape-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-tabletLandscape-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-tabletLandscape-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-tabletLandscape-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-tabletLandscape-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-tabletLandscape-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-tabletLandscape-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
}

@media (min-width: 80em) {
  .flex-desktop-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-desktop-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-desktop-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-desktop-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .justify-content-desktop-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-desktop-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-desktop-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-desktop-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-desktop-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-desktop-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-desktop-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-desktop-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-desktop-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-desktop-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
}

@media (min-width: 90em) {
  .flex-wide-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-wide-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-wide-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-wide-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .justify-content-wide-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-wide-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-wide-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-wide-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-wide-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-wide-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-wide-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-wide-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-wide-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-wide-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
}

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

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

.invisible {
  visibility: hidden !important;
}

.hidden {
  display: none !important;
}

@media print {
  .hidden-pr {
    display: none;
    height: 0px;
    overflow: hidden;
  }
}

@media (min-width: 48em) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 47.99em) {
  .tablet-only {
    display: none !important;
  }
}

@media (min-width: 80em) {
  .tablet-only {
    display: none !important;
  }
}

@media (max-width: 79.99em) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 22.5em) {
  .hidden-mobile-up {
    display: none !important;
  }
}

@media (min-width: 30em) {
  .hidden-mobilelandscape-up {
    display: none !important;
  }
}

@media (min-width: 48em) {
  .hidden-tablet-up {
    display: none !important;
  }
}

@media (min-width: 64em) {
  .hidden-tabletlandscape-up {
    display: none !important;
  }
}

@media (min-width: 80em) {
  .hidden-desktop-up {
    display: none !important;
  }
}

@media (min-width: 90em) {
  .hidden-wide-up {
    display: none !important;
  }
}

@media (max-width: 47.99em) {
  .hidden-mobile-down {
    display: none !important;
  }
}

@media (max-width: 29.99em) {
  .hidden-mobilelandscape-down {
    display: none !important;
  }
}

@media (max-width: 47.99em) {
  .hidden-tablet-down {
    display: none !important;
  }
}

@media (max-width: 63.99em) {
  .hidden-tabletlandscape-down {
    display: none !important;
  }
}

@media (max-width: 79.99em) {
  .hidden-desktop-down {
    display: none !important;
  }
}

@media (max-width: 89.99em) {
  .hidden-wide-down {
    display: none !important;
  }
}

@media (min-width: 64em) {
  .fade-in {
    opacity: 0;
    transition: opacity 1s;
  }
  .is--onscreen .fade-in,
  .been--onscreen .fade-in {
    opacity: 1;
  }
}

@media (min-width: 64em) {
  .slide-up {
    overflow: hidden;
  }
  .slide-up > * {
    display: block;
    opacity: 0;
    -ms-transform: translateY(25%);
    transform: translateY(25%);
    transition: opacity 0.5s, transform 1s;
  }
  .is--onscreen .slide-up > *,
  .been--onscreen .slide-up > * {
    opacity: 1;
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@media (min-width: 64em) {
  .slide-in-from-left {
    opacity: 0;
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: opacity 0.5s, transform 1s;
  }
  .is--onscreen .slide-in-from-left,
  .been--onscreen .slide-in-from-left {
    opacity: 1;
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@media (min-width: 64em) {
  .slide-in-from-right {
    opacity: 0;
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: opacity 0.5s, transform 1s;
  }
  .is--onscreen .slide-in-from-right,
  .been--onscreen .slide-in-from-right {
    opacity: 1;
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@media (min-width: 64em) {
  .slide-in-from-bottom-right {
    opacity: 0;
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
    transition: opacity 0.5s , transform 1s;
  }
  .is--onscreen .slide-in-from-bottom-right,
  .been--onscreen .slide-in-from-bottom-right {
    opacity: 1;
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}

.delay-0 {
  transition-delay: 0s;
  animation-delay: 0s;
}

.delay-100 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-600 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-700 {
  transition-delay: 0.7s;
  animation-delay: 0.7s;
}

.delay-800 {
  transition-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay-900 {
  transition-delay: 0.9s;
  animation-delay: 0.9s;
}

.delay-1000 {
  transition-delay: 1s;
  animation-delay: 1s;
}
